Most .c files (AUTHORS): Revert the WRITTEN_BY/AUTHORS change
[platform/upstream/coreutils.git] / src / mkdir.c
1 /* mkdir -- make directories
2    Copyright (C) 90, 1995-2002 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       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;
86   const char *specified_mode = NULL;
87   const char *verbose_fmt_string = NULL;
88   int errors = 0;
89   int optc;
90
91   initialize_main (&argc, &argv);
92   program_name = argv[0];
93   setlocale (LC_ALL, "");
94   bindtextdomain (PACKAGE, LOCALEDIR);
95   textdomain (PACKAGE);
96
97   atexit (close_stdout);
98
99   create_parents = 0;
100
101   while ((optc = getopt_long (argc, argv, "pm:v", longopts, NULL)) != -1)
102     {
103       switch (optc)
104         {
105         case 0:                 /* Long option. */
106           break;
107         case 'p':
108           create_parents = 1;
109           break;
110         case 'm':
111           specified_mode = optarg;
112           break;
113         case 'v': /* --verbose  */
114           verbose_fmt_string = _("created directory %s");
115           break;
116         case_GETOPT_HELP_CHAR;
117         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
118         default:
119           usage (EXIT_FAILURE);
120         }
121     }
122
123   if (optind == argc)
124     {
125       error (0, 0, _("too few arguments"));
126       usage (EXIT_FAILURE);
127     }
128
129   newmode = S_IRWXUGO;
130   {
131     mode_t umask_value = umask (0);
132     umask (umask_value);                /* Restore the old value. */
133     parent_mode = (newmode & (~ umask_value)) | S_IWUSR | S_IXUSR;
134   }
135
136   if (specified_mode)
137     {
138       struct mode_change *change = mode_compile (specified_mode, 0);
139       newmode &= ~ umask (0);
140       if (change == MODE_INVALID)
141         error (EXIT_FAILURE, 0, _("invalid mode %s"), quote (specified_mode));
142       else if (change == MODE_MEMORY_EXHAUSTED)
143         xalloc_die ();
144       newmode = mode_adjust (newmode, change);
145     }
146
147   for (; optind < argc; ++optind)
148     {
149       int fail = 0;
150
151       if (create_parents)
152         {
153           char *dir = argv[optind];
154           fail = make_path (dir, newmode, parent_mode,
155                             -1, -1, 1, verbose_fmt_string);
156         }
157       else
158         {
159           const char *dir = argv[optind];
160           int dir_created;
161           fail = make_dir (dir, dir, newmode, &dir_created);
162           if (fail)
163             {
164               /* make_dir already gave a diagnostic.  */
165             }
166           else if (!create_parents && !dir_created)
167             {
168               /* make_dir `succeeds' when DIR already exists.
169                  In that case, mkdir must fail, unless --parents (-p)
170                  was specified.  */
171               error (0, EEXIST, _("cannot create directory %s"),
172                      quote (dir));
173               fail = 1;
174             }
175           else if (verbose_fmt_string)
176             error (0, 0, verbose_fmt_string, quote (dir));
177
178           /* mkdir(2) is required to honor only the file permission bits.
179              In particular, it needn't do anything about `special' bits,
180              so if any were set in newmode, apply them with chmod.
181              This extra step is necessary in some cases when the containing
182              directory has a default ACL.  */
183
184           /* Set the permissions only if this directory has just
185              been created.  */
186
187           if (fail == 0 && specified_mode && dir_created)
188             {
189               fail = chmod (dir, newmode);
190               if (fail)
191                 error (0, errno, _("cannot set permissions of directory %s"),
192                        quote (dir));
193             }
194         }
195
196       if (fail)
197         errors = 1;
198     }
199
200   exit (errors);
201 }