mknod.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 source tree.
  8. */
  9. //config:config MKNOD
  10. //config: bool "mknod (4.5 kb)"
  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. //applet:IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod))
  16. //kbuild:lib-$(CONFIG_MKNOD) += mknod.o
  17. /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
  18. //usage:#define mknod_trivial_usage
  19. //usage: "[-m MODE] " IF_SELINUX("[-Z] ") "NAME TYPE [MAJOR MINOR]"
  20. //usage:#define mknod_full_usage "\n\n"
  21. //usage: "Create a special file (block, character, or pipe)\n"
  22. //usage: "\n -m MODE Creation mode (default a=rw)"
  23. //usage: IF_SELINUX(
  24. //usage: "\n -Z Set security context"
  25. //usage: )
  26. //usage: "\nTYPE:"
  27. //usage: "\n b Block device"
  28. //usage: "\n c or u Character device"
  29. //usage: "\n p Named pipe (MAJOR MINOR must be omitted)"
  30. //usage:
  31. //usage:#define mknod_example_usage
  32. //usage: "$ mknod /dev/fd0 b 2 0\n"
  33. //usage: "$ mknod -m 644 /tmp/pipe p\n"
  34. #include <sys/sysmacros.h> // For makedev
  35. #include "libbb.h"
  36. #include "libcoreutils/coreutils.h"
  37. /* This is a NOEXEC applet. Be very careful! */
  38. static const char modes_chars[] ALIGN1 = { 'p', 'c', 'u', 'b', 0, 1, 1, 2 };
  39. static const mode_t modes_cubp[] = { S_IFIFO, S_IFCHR, S_IFBLK };
  40. int mknod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  41. int mknod_main(int argc UNUSED_PARAM, char **argv)
  42. {
  43. mode_t mode;
  44. dev_t dev;
  45. const char *type, *arg;
  46. mode = getopt_mk_fifo_nod(argv);
  47. argv += optind;
  48. //argc -= optind;
  49. if (!argv[0] || !argv[1])
  50. bb_show_usage();
  51. type = strchr(modes_chars, argv[1][0]);
  52. if (!type)
  53. bb_show_usage();
  54. mode |= modes_cubp[(int)(type[4])];
  55. dev = 0;
  56. arg = argv[2];
  57. if (*type != 'p') {
  58. if (!argv[2] || !argv[3])
  59. bb_show_usage();
  60. /* Autodetect what the system supports; these macros should
  61. * optimize out to two constants. */
  62. dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)),
  63. xatoul_range(argv[3], 0, minor(UINT_MAX)));
  64. arg = argv[4];
  65. }
  66. if (arg)
  67. bb_show_usage();
  68. if (mknod(argv[0], mode, dev) != 0) {
  69. bb_simple_perror_msg_and_die(argv[0]);
  70. }
  71. return EXIT_SUCCESS;
  72. }