3
0

mknod.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
  10. #include <sys/sysmacros.h> // For makedev
  11. #include "busybox.h"
  12. #include "libcoreutils/coreutils.h"
  13. static const char modes_chars[] = { 'p', 'c', 'u', 'b', 0, 1, 1, 2 };
  14. static const mode_t modes_cubp[] = { S_IFIFO, S_IFCHR, S_IFBLK };
  15. int mknod_main(int argc, char **argv)
  16. {
  17. mode_t mode;
  18. dev_t dev;
  19. const char *name;
  20. mode = getopt_mk_fifo_nod(argc, argv);
  21. argv += optind;
  22. argc -= optind;
  23. if ((argc >= 2) && ((name = strchr(modes_chars, argv[1][0])) != NULL)) {
  24. mode |= modes_cubp[(int)(name[4])];
  25. dev = 0;
  26. if ((*name != 'p') && ((argc -= 2) == 2)) {
  27. /* Autodetect what the system supports; these macros should
  28. * optimize out to two constants. */
  29. dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)),
  30. xatoul_range(argv[3], 0, minor(UINT_MAX)));
  31. }
  32. if (argc == 2) {
  33. name = *argv;
  34. if (mknod(name, mode, dev) == 0) {
  35. return EXIT_SUCCESS;
  36. }
  37. bb_perror_msg_and_die("%s", name);
  38. }
  39. }
  40. bb_show_usage();
  41. }