Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 2 | /* |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 3 | * mknod implementation for busybox |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 9 | //config:config MKNOD |
| 10 | //config: bool "mknod" |
| 11 | //config: default y |
| 12 | //config: help |
| 13 | //config: mknod is used to create FIFOs or block/character special |
| 14 | //config: files with the specified names. |
| 15 | |
| 16 | //applet:IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod)) |
| 17 | |
| 18 | //kbuild:lib-$(CONFIG_MKNOD) += mknod.o |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 19 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 20 | /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ |
| 21 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 22 | //usage:#define mknod_trivial_usage |
| 23 | //usage: "[-m MODE] " IF_SELINUX("[-Z] ") "NAME TYPE MAJOR MINOR" |
| 24 | //usage:#define mknod_full_usage "\n\n" |
| 25 | //usage: "Create a special file (block, character, or pipe)\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 26 | //usage: "\n -m MODE Creation mode (default a=rw)" |
| 27 | //usage: IF_SELINUX( |
| 28 | //usage: "\n -Z Set security context" |
| 29 | //usage: ) |
| 30 | //usage: "\nTYPE:" |
| 31 | //usage: "\n b Block device" |
| 32 | //usage: "\n c or u Character device" |
| 33 | //usage: "\n p Named pipe (MAJOR and MINOR are ignored)" |
| 34 | //usage: |
| 35 | //usage:#define mknod_example_usage |
| 36 | //usage: "$ mknod /dev/fd0 b 2 0\n" |
| 37 | //usage: "$ mknod -m 644 /tmp/pipe p\n" |
| 38 | |
Rob Landley | cebea72 | 2006-03-22 00:46:36 +0000 | [diff] [blame] | 39 | #include <sys/sysmacros.h> // For makedev |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 40 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 41 | #include "libbb.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 42 | #include "libcoreutils/coreutils.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 43 | |
Dan Fandrich | 2d1a78b | 2010-09-30 14:31:12 -0700 | [diff] [blame] | 44 | /* This is a NOEXEC applet. Be very careful! */ |
| 45 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 46 | static const char modes_chars[] ALIGN1 = { 'p', 'c', 'u', 'b', 0, 1, 1, 2 }; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 47 | static const mode_t modes_cubp[] = { S_IFIFO, S_IFCHR, S_IFBLK }; |
| 48 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 49 | int mknod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 50 | int mknod_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 52 | mode_t mode; |
| 53 | dev_t dev; |
| 54 | const char *name; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 55 | |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 56 | mode = getopt_mk_fifo_nod(argv); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 57 | argv += optind; |
| 58 | argc -= optind; |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 59 | |
Denis Vlasenko | 6bef3d1 | 2007-11-06 03:05:54 +0000 | [diff] [blame] | 60 | if (argc >= 2) { |
| 61 | name = strchr(modes_chars, argv[1][0]); |
| 62 | if (name != NULL) { |
| 63 | mode |= modes_cubp[(int)(name[4])]; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 64 | |
Denis Vlasenko | 6bef3d1 | 2007-11-06 03:05:54 +0000 | [diff] [blame] | 65 | dev = 0; |
| 66 | if (*name != 'p') { |
| 67 | argc -= 2; |
| 68 | if (argc == 2) { |
| 69 | /* Autodetect what the system supports; these macros should |
| 70 | * optimize out to two constants. */ |
| 71 | dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)), |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 72 | xatoul_range(argv[3], 0, minor(UINT_MAX))); |
Denis Vlasenko | 6bef3d1 | 2007-11-06 03:05:54 +0000 | [diff] [blame] | 73 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 74 | } |
Denis Vlasenko | 6bef3d1 | 2007-11-06 03:05:54 +0000 | [diff] [blame] | 75 | |
| 76 | if (argc == 2) { |
| 77 | name = *argv; |
| 78 | if (mknod(name, mode, dev) == 0) { |
| 79 | return EXIT_SUCCESS; |
| 80 | } |
| 81 | bb_simple_perror_msg_and_die(name); |
| 82 | } |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 83 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 84 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 85 | bb_show_usage(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 86 | } |