]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/dev_mkdb/dev_mkdb.c
This commit was generated by cvs2svn to compensate for changes in r105770,
[FreeBSD/FreeBSD.git] / usr.sbin / dev_mkdb / dev_mkdb.c
1 /*-
2  * Copyright (c) 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1990, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)dev_mkdb.c  8.1 (Berkeley) 6/6/93";
43 #endif
44 static const char rcsid[] =
45   "$FreeBSD$";
46 #endif /* not lint */
47
48 #include <sys/param.h>
49 #include <sys/stat.h>
50
51 #include <db.h>
52 #include <dirent.h>
53 #include <err.h>
54 #include <fcntl.h>
55 #include <kvm.h>
56 #include <nlist.h>
57 #include <paths.h>
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include <unistd.h>
62
63 static void     usage(void);
64 int             main(int argc, char *argv[]);
65
66 int
67 main(int argc, char *argv[])
68 {
69         DIR *dirp;
70         struct dirent *dp;
71         struct stat sb;
72         struct {
73                 mode_t type;
74                 dev_t dev;
75         } bkey;
76         DB *db;
77         DBT data, key;
78         int ch, fflag;
79         u_char buf[MAXNAMLEN + 1];
80         char dbtmp[MAXPATHLEN], dbname[MAXPATHLEN];
81         const char *dirname;
82
83         fflag = 0;
84         while ((ch = getopt(argc, argv, "f:")) != -1)
85                 switch((char)ch) {
86                 case 'f':
87                         strlcpy(dbname, optarg, sizeof(dbname));
88                         fflag = 1;
89                         break;
90                 case '?':
91                 default:
92                         usage();
93                 }
94         argc -= optind;
95         argv += optind;
96
97         if (argc > 1)
98                 usage();
99         if (argc == 1)
100                 dirname = argv[0];
101         else
102                 dirname = _PATH_DEV;
103
104         if (!fflag) {
105                 (void)snprintf(dbname, sizeof(dbtmp), "%sdev.db", _PATH_VARRUN);
106                 (void)snprintf(dbtmp, sizeof(dbtmp), "%sdev.tmp", _PATH_VARRUN);
107         } else
108                 (void)snprintf(dbtmp, sizeof(dbtmp), "%s.tmp", dbname);
109
110         if (chdir(dirname))
111                 err(1, "%s", dirname);
112
113         dirp = opendir(".");
114
115         db = dbopen(dbtmp, O_CREAT|O_EXLOCK|O_RDWR|O_TRUNC,
116             S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH, DB_HASH, NULL);
117         if (db == NULL)
118                 err(1, "dbopen %s", dbtmp);
119
120         /*
121          * Keys are a mode_t followed by a dev_t.  The former is the type of
122          * the file (mode & S_IFMT), the latter is the st_rdev field.  Note
123          * that the structure may contain padding, so we have to clear it
124          * out here.
125          */
126         bzero(&bkey, sizeof(bkey));
127         key.data = &bkey;
128         key.size = sizeof(bkey);
129         data.data = buf;
130         while ((dp = readdir(dirp))) {
131                 if (lstat(dp->d_name, &sb)) {
132                         warn("%s", dp->d_name);
133                         continue;
134                 }
135
136                 /* Create the key. */
137                 if (S_ISCHR(sb.st_mode))
138                         bkey.type = S_IFCHR;
139                 else if (S_ISBLK(sb.st_mode))
140                         bkey.type = S_IFBLK;
141                 else
142                         continue;
143                 bkey.dev = sb.st_rdev;
144
145                 /*
146                  * Create the data; nul terminate the name so caller doesn't
147                  * have to.
148                  */
149                 bcopy(dp->d_name, buf, dp->d_namlen);
150                 buf[dp->d_namlen] = '\0';
151                 data.size = dp->d_namlen + 1;
152                 if ((db->put)(db, &key, &data, 0))
153                         err(1, "dbput %s", dbtmp);
154         }
155         (void)(db->close)(db);
156         if (rename(dbtmp, dbname))
157                 err(1, "rename %s to %s", dbtmp, dbname);
158         exit(0);
159 }
160
161 static void
162 usage(void)
163 {
164         (void)fprintf(stderr, "usage: dev_mkdb [-f file] [directory]\n");
165         exit(1);
166 }