dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / devfsadm / fssnap_link.c
blob1628bce11f1d0e113e6badb64579b9e885ff3c71
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright (c) 2000-2001 by Sun Microsystems, Inc.
24 * All rights reserved.
27 #include <regex.h>
28 #include <devfsadm.h>
29 #include <stdio.h>
30 #include <strings.h>
31 #include <stdlib.h>
32 #include <limits.h>
33 #include <sys/fssnap_if.h>
34 #include <sys/mkdev.h>
37 static int fssnap(di_minor_t minor, di_node_t node);
39 static devfsadm_create_t fssnap_cbt[] = {
40 { "pseudo", "ddi_pseudo", SNAP_NAME,
41 TYPE_EXACT | DRV_EXACT, ILEVEL_0, fssnap,
45 DEVFSADM_CREATE_INIT_V0(fssnap_cbt);
48 * For the master device:
49 * /dev/fssnapctl -> /devices/pseudo/fssnap@0:ctl
50 * For each other device
51 * /dev/fssnap/1 -> /devices/pseudo/fssnap@0:1
52 * /dev/rfssnap/1 -> /devices/pseudo/fssnap@0:1,raw
54 static int
55 fssnap(di_minor_t minor, di_node_t node)
57 dev_t dev;
58 char mn[MAXNAMELEN + 1];
59 char blkname[MAXNAMELEN + 1];
60 char rawname[MAXNAMELEN + 1];
61 char path[PATH_MAX + 1];
63 (void) strcpy(mn, di_minor_name(minor));
65 if (strcmp(mn, "ctl") == 0) {
66 (void) devfsadm_mklink(SNAP_CTL_NAME, node, minor, 0);
67 } else {
68 dev = di_minor_devt(minor);
69 (void) snprintf(blkname, sizeof (blkname), "%d",
70 (int)minor(dev));
71 (void) snprintf(rawname, sizeof (rawname), "%d,raw",
72 (int)minor(dev));
74 if (strcmp(mn, blkname) == 0) {
75 (void) snprintf(path, sizeof (path), "%s/%s",
76 SNAP_BLOCK_NAME, blkname);
77 } else if (strcmp(mn, rawname) == 0) {
78 (void) snprintf(path, sizeof (path), "%s/%s",
79 SNAP_CHAR_NAME, blkname);
80 } else {
81 return (DEVFSADM_CONTINUE);
84 (void) devfsadm_mklink(path, node, minor, 0);
86 return (DEVFSADM_CONTINUE);