dev_mkdb.c revision 1.1.1.2 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 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 static char sccsid[] = "@(#)dev_mkdb.c 8.1 (Berkeley) 6/6/93";
42 #endif /* not lint */
43
44 #include <sys/param.h>
45 #include <sys/stat.h>
46
47 #include <fcntl.h>
48 #undef DIRBLKSIZ
49 #include <dirent.h>
50 #include <nlist.h>
51 #include <kvm.h>
52 #include <db.h>
53 #include <errno.h>
54 #include <unistd.h>
55 #include <stdio.h>
56 #include <paths.h>
57 #include <stdlib.h>
58 #include <string.h>
59
60 void err __P((const char *, ...));
61 void usage __P((void));
62
63 int
64 main(argc, argv)
65 int argc;
66 char *argv[];
67 {
68 register DIR *dirp;
69 register struct dirent *dp;
70 struct stat sb;
71 struct {
72 mode_t type;
73 dev_t dev;
74 } bkey;
75 DB *db;
76 DBT data, key;
77 int ch;
78 u_char buf[MAXNAMLEN + 1];
79 char dbtmp[MAXPATHLEN + 1], dbname[MAXPATHLEN + 1];
80
81 while ((ch = getopt(argc, argv, "")) != EOF)
82 switch((char)ch) {
83 case '?':
84 default:
85 usage();
86 }
87 argc -= optind;
88 argv += optind;
89
90 if (argc > 0)
91 usage();
92
93 if (chdir(_PATH_DEV))
94 err("%s: %s", _PATH_DEV, strerror(errno));
95
96 dirp = opendir(".");
97
98 (void)snprintf(dbtmp, sizeof(dbtmp), "%sdev.tmp", _PATH_VARRUN);
99 (void)snprintf(dbname, sizeof(dbtmp), "%sdev.db", _PATH_VARRUN);
100 db = dbopen(dbtmp, O_CREAT|O_EXLOCK|O_RDWR|O_TRUNC,
101 S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH, DB_HASH, NULL);
102 if (db == NULL)
103 err("%s: %s", dbtmp, strerror(errno));
104
105 /*
106 * Keys are a mode_t followed by a dev_t. The former is the type of
107 * the file (mode & S_IFMT), the latter is the st_rdev field. Note
108 * that the structure may contain padding, so we have to clear it
109 * out here.
110 */
111 bzero(&bkey, sizeof(bkey));
112 key.data = &bkey;
113 key.size = sizeof(bkey);
114 data.data = buf;
115 while (dp = readdir(dirp)) {
116 if (lstat(dp->d_name, &sb)) {
117 (void)fprintf(stderr,
118 "dev_mkdb: %s: %s\n", dp->d_name, strerror(errno));
119 continue;
120 }
121
122 /* Create the key. */
123 if (S_ISCHR(sb.st_mode))
124 bkey.type = S_IFCHR;
125 else if (S_ISBLK(sb.st_mode))
126 bkey.type = S_IFBLK;
127 else
128 continue;
129 bkey.dev = sb.st_rdev;
130
131 /*
132 * Create the data; nul terminate the name so caller doesn't
133 * have to.
134 */
135 bcopy(dp->d_name, buf, dp->d_namlen);
136 buf[dp->d_namlen] = '\0';
137 data.size = dp->d_namlen + 1;
138 if ((db->put)(db, &key, &data, 0))
139 err("dbput %s: %s\n", dbtmp, strerror(errno));
140 }
141 (void)(db->close)(db);
142 if (rename(dbtmp, dbname))
143 err("rename %s to %s: %s", dbtmp, dbname, strerror(errno));
144 exit(0);
145 }
146
147 void
148 usage()
149 {
150 (void)fprintf(stderr, "usage: dev_mkdb\n");
151 exit(1);
152 }
153
154 #if __STDC__
155 #include <stdarg.h>
156 #else
157 #include <varargs.h>
158 #endif
159
160 void
161 #if __STDC__
162 err(const char *fmt, ...)
163 #else
164 err(fmt, va_alist)
165 char *fmt;
166 va_dcl
167 #endif
168 {
169 va_list ap;
170 #if __STDC__
171 va_start(ap, fmt);
172 #else
173 va_start(ap);
174 #endif
175 (void)fprintf(stderr, "dev_mkdb: ");
176 (void)vfprintf(stderr, fmt, ap);
177 va_end(ap);
178 (void)fprintf(stderr, "\n");
179 exit(1);
180 /* NOTREACHED */
181 }
182