Some formatting updates (ran the code through indent)
[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 NAME TYPE MAJOR MINOR\n\n"
32         "Make block or character special files.\n\n"
33         "TYPEs include:\n"
34         "\tb:\tMake a block (buffered) device.\n"
35
36         "\tc or u:\tMake a character (un-buffered) device.\n"
37         "\tp:\tMake a named pipe. Major and minor are ignored for named pipes.\n";
38
39 int mknod_main(int argc, char **argv)
40 {
41         mode_t mode = 0;
42         dev_t dev = 0;
43
44         if (argc != 5 || **(argv + 1) == '-') {
45                 usage(mknod_usage);
46         }
47         switch (argv[2][0]) {
48         case 'c':
49         case 'u':
50                 mode = S_IFCHR;
51                 break;
52         case 'b':
53                 mode = S_IFBLK;
54                 break;
55         case 'p':
56                 mode = S_IFIFO;
57                 break;
58         default:
59                 usage(mknod_usage);
60         }
61
62         if (mode == S_IFCHR || mode == S_IFBLK) {
63                 dev = (atoi(argv[3]) << 8) | atoi(argv[4]);
64                 if (argc != 5) {
65                         usage(mknod_usage);
66                 }
67         }
68
69         mode |= 0666;
70
71         if (mknod(argv[1], mode, dev) != 0) {
72                 perror(argv[1]);
73                 return (FALSE);
74         }
75         return (TRUE);
76 }