(main): When failing to create a directory, give only
[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 void strip_trailing_slashes ();
38
39 /* The name this program was run with. */
40 char *program_name;
41
42 /* If nonzero, ensure that all parents of the specified directory exist.  */
43 static int create_parents;
44
45 static struct option const longopts[] =
46 {
47   {"mode", required_argument, NULL, 'm'},
48   {"parents", no_argument, NULL, 'p'},
49   {"verbose", no_argument, NULL, 'v'},
50   {GETOPT_HELP_OPTION_DECL},
51   {GETOPT_VERSION_OPTION_DECL},
52   {NULL, 0, NULL, 0}
53 };
54
55 void
56 usage (int status)
57 {
58   if (status != 0)
59     fprintf (stderr, _("Try `%s --help' for more information.\n"),
60              program_name);
61   else
62     {
63       printf (_("Usage: %s [OPTION] DIRECTORY...\n"), program_name);
64       printf (_("\
65 Create the DIRECTORY(ies), if they do not already exist.\n\
66 \n\
67   -m, --mode=MODE   set permission mode (as in chmod), not rwxrwxrwx - umask\n\
68   -p, --parents     no error if existing, make parent directories as needed\n\
69   -v, --verbose     print a message for each created directory\n\
70       --help        display this help and exit\n\
71       --version     output version information and exit\n\
72 "));
73       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
74     }
75   exit (status);
76 }
77
78 int
79 main (int argc, char **argv)
80 {
81   mode_t newmode;
82   mode_t parent_mode;
83   const char *specified_mode = NULL;
84   const char *verbose_fmt_string = NULL;
85   int errors = 0;
86   int optc;
87
88   program_name = argv[0];
89   setlocale (LC_ALL, "");
90   bindtextdomain (PACKAGE, LOCALEDIR);
91   textdomain (PACKAGE);
92
93   atexit (close_stdout);
94
95   create_parents = 0;
96
97   while ((optc = getopt_long (argc, argv, "pm:v", longopts, NULL)) != -1)
98     {
99       switch (optc)
100         {
101         case 0:                 /* Long option. */
102           break;
103         case 'p':
104           create_parents = 1;
105           break;
106         case 'm':
107           specified_mode = optarg;
108           break;
109         case 'v': /* --verbose  */
110           verbose_fmt_string = _("created directory %s");
111           break;
112         case_GETOPT_HELP_CHAR;
113         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
114         default:
115           usage (1);
116         }
117     }
118
119   if (optind == argc)
120     {
121       error (0, 0, _("too few arguments"));
122       usage (1);
123     }
124
125   newmode = S_IRWXUGO;
126   {
127     mode_t umask_value = umask (0);
128     umask (umask_value);                /* Restore the old value. */
129     parent_mode = (newmode & (~ umask_value)) | S_IWUSR | S_IXUSR;
130   }
131
132   if (specified_mode)
133     {
134       struct mode_change *change = mode_compile (specified_mode, 0);
135       newmode &= ~ umask (0);
136       if (change == MODE_INVALID)
137         error (1, 0, _("invalid mode %s"), quote (specified_mode));
138       else if (change == MODE_MEMORY_EXHAUSTED)
139         xalloc_die ();
140       newmode = mode_adjust (newmode, change);
141     }
142
143   for (; optind < argc; ++optind)
144     {
145       int fail = 0;
146       if (create_parents)
147         {
148           char *parents = dir_name (argv[optind]);
149           fail = make_path (parents, parent_mode, parent_mode,
150                             -1, -1, 1, verbose_fmt_string);
151           free (parents);
152
153           /* If we're creating parent directories, then it's ok to remove
154              trailing slashes.  In fact, *not* removing them would lead
155              to calling `mkdir ("dir/", mode)' for the command `mkdir -p dir/',
156              and such a call fails on NetBSD systems if `dir' doesn't already
157              exist.  */
158           /* An alternate approach would be to change make_path to interpret
159              an argument with a trailing slash as if it also had a trailing
160              `.'.  In fact, that would be more consistent with POSIX, so
161              FIXME: some day.  */
162           strip_trailing_slashes (argv[optind]);
163         }
164
165       if (fail == 0)
166         {
167           const char *dir = argv[optind];
168           int dir_created;
169           int t_errno;
170           fail = make_dir (dir, dir, newmode, &dir_created);
171           t_errno = errno;
172           if (fail)
173             {
174               /* make_dir already gave a diagnostic.  */
175             }
176           else if (!create_parents && !dir_created && (t_errno = EEXIST))
177             {
178               /* make_dir `succeeds' when DIR already exists.
179                  In that case, mkdir must fail, unless --parents (-p)
180                  was specified.  */
181               error (0, t_errno, _("cannot create directory %s"),
182                      quote (dir));
183               fail = 1;
184             }
185           else if (verbose_fmt_string)
186             error (0, 0, verbose_fmt_string, quote (dir));
187
188           /* mkdir(2) is required to honor only the file permission bits.
189              In particular, it needn't do anything about `special' bits,
190              so if any were set in newmode, apply them with chmod.
191              This extra step is necessary in some cases when the containing
192              directory has a default ACL.  */
193
194           /* Set the permissions only if this directory has just
195              been created.  */
196
197           if (fail == 0 && specified_mode && dir_created)
198             {
199               fail = chmod (dir, newmode);
200               if (fail)
201                 error (0, errno, _("cannot set permissions of directory %s"),
202                        quote (dir));
203             }
204         }
205
206       if (fail)
207         errors = 1;
208     }
209
210   exit (errors);
211 }