mkdir.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini mkdir implementation for busybox
  4. *
  5. * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. /* BB_AUDIT SUSv3 compliant */
  23. /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */
  24. /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
  25. *
  26. * Fixed broken permission setting when -p was used; especially in
  27. * conjunction with -m.
  28. */
  29. #include <stdlib.h>
  30. #include <unistd.h>
  31. #include <getopt.h>
  32. #include "busybox.h"
  33. static const struct option mkdir_long_options[] = {
  34. { "mode", 1, NULL, 'm' },
  35. { "parents", 0, NULL, 'p' },
  36. { 0, 0, 0, 0 }
  37. };
  38. extern int mkdir_main (int argc, char **argv)
  39. {
  40. mode_t mode = (mode_t)(-1);
  41. int status = EXIT_SUCCESS;
  42. int flags = 0;
  43. unsigned long opt;
  44. char *smode;
  45. bb_applet_long_options = mkdir_long_options;
  46. opt = bb_getopt_ulflags(argc, argv, "m:p", &smode);
  47. if(opt & 1) {
  48. mode = 0777;
  49. if (!bb_parse_mode (smode, &mode)) {
  50. bb_error_msg_and_die ("invalid mode `%s'", smode);
  51. }
  52. }
  53. if(opt & 2)
  54. flags |= FILEUTILS_RECUR;
  55. if (optind == argc) {
  56. bb_show_usage();
  57. }
  58. argv += optind;
  59. do {
  60. if (bb_make_directory(*argv, mode, flags)) {
  61. status = EXIT_FAILURE;
  62. }
  63. } while (*++argv);
  64. return status;
  65. }