mknod.c 2.0 KB

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