s/non-zero/nonzero/g
[platform/upstream/coreutils.git] / src / mkdir.c
1 /* mkdir -- make directories
2    Copyright (C) 1990, 1995 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
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 /* Options:
19    -p, --parent         Ensure that the given path(s) exist:
20                         Make any missing parent directories for each argument.
21                         Parent dirs default to umask modified by `u+wx'.
22                         Do not consider an argument directory that already
23                         exists to be an error.
24    -m, --mode=mode      Set the mode of created directories to `mode', which is
25                         symbolic as in chmod and uses the umask as a point of
26                         departure.
27
28    David MacKenzie <djm@ai.mit.edu>  */
29
30 #include <config.h>
31 #include <stdio.h>
32 #include <getopt.h>
33 #include <sys/types.h>
34
35 #include "system.h"
36 #include "modechange.h"
37 #include "makepath.h"
38 #include "version.h"
39 #include "error.h"
40
41 /* The name this program was run with. */
42 char *program_name;
43
44 /* If nonzero, ensure that all parents of the specified directory exist.  */
45 static int path_mode;
46
47 /* If nonzero, display usage information and exit.  */
48 static int show_help;
49
50 /* If nonzero, print the version on standard output and exit.  */
51 static int show_version;
52
53 static struct option const longopts[] =
54 {
55   {"mode", required_argument, NULL, 'm'},
56   {"path", no_argument, &path_mode, 1},
57   {"parents", no_argument, &path_mode, 1},
58   {"help", no_argument, &show_help, 1},
59   {"version", no_argument, &show_version, 1},
60   {NULL, 0, NULL, 0}
61 };
62
63 static void
64 usage (int status)
65 {
66   if (status != 0)
67     fprintf (stderr, "Try `%s --help' for more information.\n",
68              program_name);
69   else
70     {
71       printf ("Usage: %s [OPTION] DIRECTORY...\n", program_name);
72       printf ("\
73 Create the DIRECTORY(ies), if they do not already exist.\n\
74 \n\
75   -p, --parents     no error if existing, make parent directories as needed\n\
76   -m, --mode=MODE   set permission mode (as in chmod), not rwxrwxrwx - umask\n\
77       --help        display this help and exit\n\
78       --version     output version information and exit\n");
79     }
80   exit (status);
81 }
82
83
84 void
85 main (int argc, char **argv)
86 {
87   unsigned int newmode;
88   unsigned int parent_mode;
89   char *symbolic_mode = NULL;
90   int errors = 0;
91   int optc;
92
93   program_name = argv[0];
94   path_mode = 0;
95
96   while ((optc = getopt_long (argc, argv, "pm:", longopts, (int *) 0)) != EOF)
97     {
98       switch (optc)
99         {
100         case 0:                 /* Long option. */
101           break;
102         case 'p':
103           path_mode = 1;
104           break;
105         case 'm':
106           symbolic_mode = optarg;
107           break;
108         default:
109           usage (1);
110         }
111     }
112
113   if (show_version)
114     {
115       printf ("mkdir - %s\n", version_string);
116       exit (0);
117     }
118
119   if (show_help)
120     usage (0);
121
122   if (optind == argc)
123     {
124       error (0, 0, "too few arguments");
125       usage (1);
126     }
127
128   newmode = 0777 & ~umask (0);
129   parent_mode = newmode | 0300; /* u+wx */
130   if (symbolic_mode)
131     {
132       struct mode_change *change = mode_compile (symbolic_mode, 0);
133       if (change == MODE_INVALID)
134         error (1, 0, "invalid mode `%s'", symbolic_mode);
135       else if (change == MODE_MEMORY_EXHAUSTED)
136         error (1, 0, "virtual memory exhausted");
137       newmode = mode_adjust (newmode, change);
138     }
139
140   for (; optind < argc; ++optind)
141     {
142       if (path_mode)
143         {
144           errors |= make_path (argv[optind], newmode, parent_mode,
145                                -1, -1, 1, NULL);
146         }
147       else if (mkdir (argv[optind], newmode))
148         {
149           error (0, errno, "cannot make directory `%s'", argv[optind]);
150           errors = 1;
151         }
152     }
153
154   exit (errors);
155 }