Extract usage information into a separate file.
[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 int mknod_main(int argc, char **argv)
32 {
33         char *thisarg;
34         mode_t mode = 0;
35         mode_t perm = 0666;
36         dev_t dev = 0;
37
38         argc--;
39         argv++;
40
41         /* Parse any options */
42         while (argc > 1) {
43                 if (**argv != '-')
44                         break;
45                 thisarg = *argv;
46                 thisarg++;
47                 switch (*thisarg) {
48                 case 'm':
49                         argc--;
50                         argv++;
51                         parse_mode(*argv, &perm);
52                         umask(0);
53                         break;
54                 default:
55                         usage(mknod_usage);
56                 }
57                 argc--;
58                 argv++;
59         }
60         if (argc != 4 && argc != 2) {
61                 usage(mknod_usage);
62         }
63         switch (argv[1][0]) {
64         case 'c':
65         case 'u':
66                 mode = S_IFCHR;
67                 break;
68         case 'b':
69                 mode = S_IFBLK;
70                 break;
71         case 'p':
72                 mode = S_IFIFO;
73                 if (argc!=2) {
74                         usage(mknod_usage);
75                 }
76                 break;
77         default:
78                 usage(mknod_usage);
79         }
80
81         if (mode == S_IFCHR || mode == S_IFBLK) {
82                 dev = (atoi(argv[2]) << 8) | atoi(argv[3]);
83         }
84
85         mode |= perm;
86
87         if (mknod(argv[0], mode, dev) != 0)
88                 fatalError("%s: %s\n", argv[0], strerror(errno));
89         return (TRUE);
90 }
91