blob: b10fe4fc3c2eaac3eb9089ebf708ebb145a53d36 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
Manuel Novoa III cad53642003-03-19 09:13:01 +00003 * mknod implementation for busybox
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
Manuel Novoa III cad53642003-03-19 09:13:01 +00005 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenc4996011999-10-20 22:08:37 +00008 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +01009//config:config MKNOD
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "mknod (4.5 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: mknod is used to create FIFOs or block/character special
14//config: files with the specified names.
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010015
16//applet:IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod))
17
18//kbuild:lib-$(CONFIG_MKNOD) += mknod.o
Eric Andersenc4996011999-10-20 22:08:37 +000019
Manuel Novoa III cad53642003-03-19 09:13:01 +000020/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
21
Pere Orga34425382011-03-31 14:43:25 +020022//usage:#define mknod_trivial_usage
Denys Vlasenko2f554042018-01-08 11:22:37 +010023//usage: "[-m MODE] " IF_SELINUX("[-Z] ") "NAME TYPE [MAJOR MINOR]"
Pere Orga34425382011-03-31 14:43:25 +020024//usage:#define mknod_full_usage "\n\n"
25//usage: "Create a special file (block, character, or pipe)\n"
Pere Orga34425382011-03-31 14:43:25 +020026//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"
Denys Vlasenko2f554042018-01-08 11:22:37 +010033//usage: "\n p Named pipe (MAJOR MINOR must be omitted)"
Pere Orga34425382011-03-31 14:43:25 +020034//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
Alex Samorukov28759d02021-01-04 01:25:48 +010039#ifdef __linux__
40# include <sys/sysmacros.h> // For makedev
41#endif
Denis Vlasenko13858992006-10-08 12:49:22 +000042
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000043#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000044#include "libcoreutils/coreutils.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000045
Dan Fandrich2d1a78b2010-09-30 14:31:12 -070046/* This is a NOEXEC applet. Be very careful! */
47
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000048static const char modes_chars[] ALIGN1 = { 'p', 'c', 'u', 'b', 0, 1, 1, 2 };
Manuel Novoa III cad53642003-03-19 09:13:01 +000049static const mode_t modes_cubp[] = { S_IFIFO, S_IFCHR, S_IFBLK };
50
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000051int mknod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2f554042018-01-08 11:22:37 +010052int mknod_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000053{
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 mode_t mode;
55 dev_t dev;
Denys Vlasenko2f554042018-01-08 11:22:37 +010056 const char *type, *arg;
Eric Andersencc8ed391999-10-05 16:24:54 +000057
Denis Vlasenko68404f12008-03-17 09:00:54 +000058 mode = getopt_mk_fifo_nod(argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +000059 argv += optind;
Denys Vlasenko2f554042018-01-08 11:22:37 +010060 //argc -= optind;
Erik Andersen5e1189e2000-04-15 16:34:54 +000061
Denys Vlasenko2f554042018-01-08 11:22:37 +010062 if (!argv[0] || !argv[1])
63 bb_show_usage();
64 type = strchr(modes_chars, argv[1][0]);
65 if (!type)
66 bb_show_usage();
Manuel Novoa III cad53642003-03-19 09:13:01 +000067
Denys Vlasenko2f554042018-01-08 11:22:37 +010068 mode |= modes_cubp[(int)(type[4])];
Denis Vlasenko6bef3d12007-11-06 03:05:54 +000069
Denys Vlasenko2f554042018-01-08 11:22:37 +010070 dev = 0;
71 arg = argv[2];
72 if (*type != 'p') {
73 if (!argv[2] || !argv[3])
74 bb_show_usage();
75 /* Autodetect what the system supports; these macros should
76 * optimize out to two constants. */
77 dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)),
78 xatoul_range(argv[3], 0, minor(UINT_MAX)));
79 arg = argv[4];
Eric Andersencc8ed391999-10-05 16:24:54 +000080 }
Denys Vlasenko2f554042018-01-08 11:22:37 +010081 if (arg)
82 bb_show_usage();
83
84 if (mknod(argv[0], mode, dev) != 0) {
85 bb_simple_perror_msg_and_die(argv[0]);
86 }
87 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +000088}