Add one-line GPL boilerplate to numerous (but not all yet) source files.
[oweals/busybox.git] / coreutils / mknod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * mknod implementation for busybox
4  *
5  * Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
11
12 #include <stdlib.h>
13 #include <string.h>
14 #include <sys/stat.h>
15 #include <sys/sysmacros.h>  // For makedev
16 #include <unistd.h>
17 #include "busybox.h"
18 #include "libcoreutils/coreutils.h"
19
20 static const char modes_chars[] = { 'p', 'c', 'u', 'b', 0, 1, 1, 2 };
21 static const mode_t modes_cubp[] = { S_IFIFO, S_IFCHR, S_IFBLK };
22
23 int mknod_main(int argc, char **argv)
24 {
25         mode_t mode;
26         dev_t dev;
27         const char *name;
28
29         mode = getopt_mk_fifo_nod(argc, argv);
30         argv += optind;
31         argc -= optind;
32
33         if ((argc >= 2) && ((name = strchr(modes_chars, argv[1][0])) != NULL)) {
34                 mode |= modes_cubp[(int)(name[4])];
35
36                 dev = 0;
37                 if ((*name != 'p') && ((argc -= 2) == 2)) {
38                         /* Autodetect what the system supports; thexe macros should
39                          * optimize out to two constants. */
40                         dev = makedev(bb_xgetularg10_bnd(argv[2], 0, major(UINT_MAX)),
41                                                   bb_xgetularg10_bnd(argv[3], 0, minor(UINT_MAX)));
42                 }
43
44                 if (argc == 2) {
45                         name = *argv;
46                         if (mknod(name, mode, dev) == 0) {
47                                 return EXIT_SUCCESS;
48                         }
49                         bb_perror_msg_and_die("%s", name);
50                 }
51         }
52         bb_show_usage();
53 }