Run through indent, specify cast
[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  * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <stdio.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <unistd.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include "busybox.h"
33
34 int mknod_main(int argc, char **argv)
35 {
36         char *thisarg;
37         mode_t mode = 0;
38         mode_t perm = 0666;
39         dev_t dev = (dev_t) 0;
40
41         argc--;
42         argv++;
43
44         /* Parse any options */
45         while (argc > 1) {
46                 if (**argv != '-')
47                         break;
48                 thisarg = *argv;
49                 thisarg++;
50                 switch (*thisarg) {
51                 case 'm':
52                         argc--;
53                         argv++;
54                         parse_mode(*argv, &perm);
55                         umask(0);
56                         break;
57                 default:
58                         show_usage();
59                 }
60                 argc--;
61                 argv++;
62         }
63         if (argc != 4 && argc != 2) {
64                 show_usage();
65         }
66         switch (argv[1][0]) {
67         case 'c':
68         case 'u':
69                 mode = S_IFCHR;
70                 break;
71         case 'b':
72                 mode = S_IFBLK;
73                 break;
74         case 'p':
75                 mode = S_IFIFO;
76                 if (argc != 2) {
77                         show_usage();
78                 }
79                 break;
80         default:
81                 show_usage();
82         }
83
84         if (mode == S_IFCHR || mode == S_IFBLK) {
85                 dev = (dev_t) ((atoi(argv[2]) << 8) | atoi(argv[3]));
86         }
87
88         mode |= perm;
89
90         if (mknod(argv[0], mode, dev) != 0)
91                 perror_msg_and_die("%s", argv[0]);
92         return EXIT_SUCCESS;
93 }