92d158c63bca6bc4f49abe273c7cfa692472bad5
[platform/upstream/coreutils.git] / src / mkdir.c
1 /* mkdir -- make directories
2    Copyright (C) 90, 1995-2000 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* David MacKenzie <djm@ai.mit.edu>  */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <getopt.h>
23 #include <sys/types.h>
24
25 #include "system.h"
26 #include "dirname.h"
27 #include "error.h"
28 #include "makepath.h"
29 #include "modechange.h"
30 #include "quote.h"
31
32 /* The official name of this program (e.g., no `g' prefix).  */
33 #define PROGRAM_NAME "mkdir"
34
35 #define AUTHORS "David MacKenzie"
36
37 /* The name this program was run with. */
38 char *program_name;
39
40 /* If nonzero, ensure that all parents of the specified directory exist.  */
41 static int create_parents;
42
43 static struct option const longopts[] =
44 {
45   {"mode", required_argument, NULL, 'm'},
46   {"parents", no_argument, NULL, 'p'},
47   {"verbose", no_argument, NULL, 'v'},
48   {GETOPT_HELP_OPTION_DECL},
49   {GETOPT_VERSION_OPTION_DECL},
50   {NULL, 0, NULL, 0}
51 };
52
53 void
54 usage (int status)
55 {
56   if (status != 0)
57     fprintf (stderr, _("Try `%s --help' for more information.\n"),
58              program_name);
59   else
60     {
61       printf (_("Usage: %s [OPTION] DIRECTORY...\n"), program_name);
62       printf (_("\
63 Create the DIRECTORY(ies), if they do not already exist.\n\
64 \n\
65   -m, --mode=MODE   set permission mode (as in chmod), not rwxrwxrwx - umask\n\
66   -p, --parents     no error if existing, make parent directories as needed\n\
67   -v, --verbose     print a message for each created directory\n\
68       --help        display this help and exit\n\
69       --version     output version information and exit\n\
70 "));
71       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
72     }
73   exit (status);
74 }
75
76 int
77 main (int argc, char **argv)
78 {
79   mode_t newmode;
80   mode_t parent_mode;
81   const char *specified_mode = NULL;
82   const char *verbose_fmt_string = NULL;
83   int errors = 0;
84   int optc;
85
86   program_name = argv[0];
87   setlocale (LC_ALL, "");
88   bindtextdomain (PACKAGE, LOCALEDIR);
89   textdomain (PACKAGE);
90
91   atexit (close_stdout);
92
93   create_parents = 0;
94
95   while ((optc = getopt_long (argc, argv, "pm:v", longopts, NULL)) != -1)
96     {
97       switch (optc)
98         {
99         case 0:                 /* Long option. */
100           break;
101         case 'p':
102           create_parents = 1;
103           break;
104         case 'm':
105           specified_mode = optarg;
106           break;
107         case 'v': /* --verbose  */
108           verbose_fmt_string = _("created directory %s");
109           break;
110         case_GETOPT_HELP_CHAR;
111         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
112         default:
113           usage (1);
114         }
115     }
116
117   if (optind == argc)
118     {
119       error (0, 0, _("too few arguments"));
120       usage (1);
121     }
122
123   newmode = S_IRWXUGO;
124   {
125     mode_t umask_value = umask (0);
126     umask (umask_value);                /* Restore the old value. */
127     parent_mode = (newmode & (~ umask_value)) | S_IWUSR | S_IXUSR;
128   }
129
130   if (specified_mode)
131     {
132       struct mode_change *change = mode_compile (specified_mode, 0);
133       newmode &= ~ umask (0);
134       if (change == MODE_INVALID)
135         error (1, 0, _("invalid mode %s"), quote (specified_mode));
136       else if (change == MODE_MEMORY_EXHAUSTED)
137         xalloc_die ();
138       newmode = mode_adjust (newmode, change);
139     }
140
141   for (; optind < argc; ++optind)
142     {
143       int fail = 0;
144       if (create_parents)
145         {
146           const char *parents = dir_name (argv[optind]);
147           fail = make_path (parents, parent_mode, parent_mode,
148                             -1, -1, 1, verbose_fmt_string);
149           free (dir_name);
150         }
151
152       if (fail == 0)
153         {
154           fail = mkdir (argv[optind], newmode);
155           if (fail)
156             error (0, errno, _("cannot create directory %s"),
157                    quote (argv[optind]));
158           else if (verbose_fmt_string)
159             error (0, 0, verbose_fmt_string, quote (argv[optind]));
160
161           /* mkdir(2) is required to honor only the file permission bits.
162              In particular, it needn't do anything about `special' bits,
163              so if any were set in newmode, apply them with chmod.
164              This extra step is necessary in some cases when the containing
165              directory has a default ACL.  */
166
167           if (fail == 0 && specified_mode)
168             {
169               fail = chmod (argv[optind], newmode);
170               if (fail)
171                 error (0, errno, _("cannot set permissions of directory %s"),
172                        quote (argv[optind]));
173             }
174         }
175
176       if (fail)
177         errors = 1;
178     }
179
180   exit (errors);
181 }