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