Updates to a number of apps to remove warnings/compile errors under libc5.
[oweals/busybox.git] / coreutils / mknod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mknod implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23 #include "internal.h"
24 #include <stdio.h>
25 #include <errno.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30
31 static const char mknod_usage[] = "mknod [OPTIONS] NAME TYPE MAJOR MINOR\n"
32 #ifndef BB_FEATURE_TRIVIAL_HELP
33         "\nCreate a special file (block, character, or pipe).\n\n"
34         "Options:\n"
35         "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n"
36         "TYPEs include:\n"
37         "\tb:\tMake a block (buffered) device.\n"
38         "\tc or u:\tMake a character (un-buffered) device.\n"
39         "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n"
40 #endif
41         ;
42
43 int mknod_main(int argc, char **argv)
44 {
45         char *thisarg;
46         mode_t mode = 0;
47         mode_t perm = 0666;
48         dev_t dev = 0;
49
50         argc--;
51         argv++;
52
53         /* Parse any options */
54         while (argc > 1) {
55                 if (**argv != '-')
56                         break;
57                 thisarg = *argv;
58                 thisarg++;
59                 switch (*thisarg) {
60                 case 'm':
61                         argc--;
62                         argv++;
63                         parse_mode(*argv, &perm);
64                         umask(0);
65                         break;
66                 default:
67                         usage(mknod_usage);
68                 }
69                 argc--;
70                 argv++;
71         }
72         if (argc != 4 && argc != 2) {
73                 usage(mknod_usage);
74         }
75         switch (argv[1][0]) {
76         case 'c':
77         case 'u':
78                 mode = S_IFCHR;
79                 break;
80         case 'b':
81                 mode = S_IFBLK;
82                 break;
83         case 'p':
84                 mode = S_IFIFO;
85                 if (argc!=2) {
86                         usage(mknod_usage);
87                 }
88                 break;
89         default:
90                 usage(mknod_usage);
91         }
92
93         if (mode == S_IFCHR || mode == S_IFBLK) {
94                 dev = (atoi(argv[2]) << 8) | atoi(argv[3]);
95         }
96
97         mode |= perm;
98
99         if (mknod(argv[0], mode, dev) != 0)
100                 fatalError("%s: %s\n", argv[0], strerror(errno));
101         return (TRUE);
102 }
103