(main): When make_dir_parents changes the current working
[platform/upstream/coreutils.git] / src / mkdir.c
1 /* mkdir -- make directories
2    Copyright (C) 90, 1995-2002, 2004, 2005 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 "mkdir-p.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 true, ensure that all parents of the specified directory exist.  */
41 static bool 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 != EXIT_SUCCESS)
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       fputs (_("\
63 Create the DIRECTORY(ies), if they do not already exist.\n\
64 \n\
65 "), stdout);
66       fputs (_("\
67 Mandatory arguments to long options are mandatory for short options too.\n\
68 "), stdout);
69       fputs (_("\
70   -m, --mode=MODE   set permission mode (as in chmod), not rwxrwxrwx - umask\n\
71   -p, --parents     no error if existing, make parent directories as needed\n\
72   -v, --verbose     print a message for each created directory\n\
73 "), stdout);
74       fputs (HELP_OPTION_DESCRIPTION, stdout);
75       fputs (VERSION_OPTION_DESCRIPTION, stdout);
76       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
77     }
78   exit (status);
79 }
80
81 int
82 main (int argc, char **argv)
83 {
84   mode_t newmode;
85   mode_t parent_mode IF_LINT (= 0);
86   const char *specified_mode = NULL;
87   const char *verbose_fmt_string = NULL;
88   int exit_status = EXIT_SUCCESS;
89   int optc;
90   bool cwd_not_restored;
91
92   initialize_main (&argc, &argv);
93   program_name = argv[0];
94   setlocale (LC_ALL, "");
95   bindtextdomain (PACKAGE, LOCALEDIR);
96   textdomain (PACKAGE);
97
98   atexit (close_stdout);
99
100   create_parents = false;
101
102   while ((optc = getopt_long (argc, argv, "pm:v", longopts, NULL)) != -1)
103     {
104       switch (optc)
105         {
106         case 'p':
107           create_parents = true;
108           break;
109         case 'm':
110           specified_mode = optarg;
111           break;
112         case 'v': /* --verbose  */
113           verbose_fmt_string = _("created directory %s");
114           break;
115         case_GETOPT_HELP_CHAR;
116         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
117         default:
118           usage (EXIT_FAILURE);
119         }
120     }
121
122   if (optind == argc)
123     {
124       error (0, 0, _("missing operand"));
125       usage (EXIT_FAILURE);
126     }
127
128   newmode = S_IRWXUGO;
129
130   if (specified_mode || create_parents)
131     {
132       mode_t umask_value = umask (0);
133
134       parent_mode = (S_IRWXUGO & ~umask_value) | (S_IWUSR | S_IXUSR);
135
136       if (specified_mode)
137         {
138           struct mode_change *change = mode_compile (specified_mode);
139           if (!change)
140             error (EXIT_FAILURE, 0, _("invalid mode %s"),
141                    quote (specified_mode));
142           newmode = mode_adjust (S_IRWXUGO, change, umask_value);
143           free (change);
144         }
145       else
146         umask (umask_value);
147     }
148
149   /* FIXME: when we assume C99, declare this here.  */
150   cwd_not_restored = false;
151   for (; optind < argc; ++optind)
152     {
153       bool ok;
154
155       if (cwd_not_restored && IS_RELATIVE_FILE_NAME (argv[optind]))
156         {
157           error (0, 0, _("unable to create relative-named directory, %s,"
158                          " due to prior failure to restore working directory"),
159                  quote (argv[optind]));
160           exit_status = EXIT_FAILURE;
161           continue;
162         }
163
164       if (create_parents)
165         {
166           bool different_cwd;
167           char *dir = argv[optind];
168           ok = make_dir_parents (dir, newmode, parent_mode,
169                                  -1, -1, true, verbose_fmt_string,
170                                  &different_cwd);
171           cwd_not_restored |= different_cwd;
172         }
173       else
174         {
175           const char *dir = argv[optind];
176           bool dir_created;
177           ok = make_dir (dir, dir, newmode, &dir_created);
178           if (! ok)
179             {
180               /* make_dir already gave a diagnostic.  */
181             }
182           else if (!create_parents && !dir_created)
183             {
184               /* make_dir `succeeds' when DIR already exists.
185                  In that case, mkdir must fail, unless --parents (-p)
186                  was specified.  */
187               error (0, EEXIST, _("cannot create directory %s"),
188                      quote (dir));
189               ok = false;
190             }
191           else if (verbose_fmt_string)
192             error (0, 0, verbose_fmt_string, quote (dir));
193
194           /* mkdir(2) is required to honor only the file permission bits.
195              In particular, it needn't do anything about `special' bits,
196              so if any were set in newmode, apply them with chmod.
197              This extra step is necessary in some cases when the containing
198              directory has a default ACL.  */
199
200           /* Set the permissions only if this directory has just
201              been created.  */
202
203           if (ok && specified_mode && dir_created
204               && chmod (dir, newmode) != 0)
205             {
206               error (0, errno, _("cannot set permissions of directory %s"),
207                      quote (dir));
208               ok = false;
209             }
210         }
211
212       if (! ok)
213         exit_status = EXIT_FAILURE;
214     }
215
216   exit (exit_status);
217 }