update copyrights for 1997
[platform/upstream/coreutils.git] / src / mkdir.c
1 /* mkdir -- make directories
2    Copyright (C) 90, 95, 96, 1997 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 "modechange.h"
27 #include "makepath.h"
28 #include "error.h"
29
30 /* The name this program was run with. */
31 char *program_name;
32
33 /* If nonzero, ensure that all parents of the specified directory exist.  */
34 static int path_mode;
35
36 /* If nonzero, display usage information and exit.  */
37 static int show_help;
38
39 /* If nonzero, print the version on standard output and exit.  */
40 static int show_version;
41
42 static struct option const longopts[] =
43 {
44   {"mode", required_argument, NULL, 'm'},
45   {"parents", no_argument, &path_mode, 1},
46   {"help", no_argument, &show_help, 1},
47   {"verbose", no_argument, NULL, 2},
48   {"version", no_argument, &show_version, 1},
49   {NULL, 0, NULL, 0}
50 };
51
52 static void
53 usage (int status)
54 {
55   if (status != 0)
56     fprintf (stderr, _("Try `%s --help' for more information.\n"),
57              program_name);
58   else
59     {
60       printf (_("Usage: %s [OPTION] DIRECTORY...\n"), program_name);
61       printf (_("\
62 Create the DIRECTORY(ies), if they do not already exist.\n\
63 \n\
64   -m, --mode=MODE   set permission mode (as in chmod), not rwxrwxrwx - umask\n\
65   -p, --parents     no error if existing, make parent directories as needed\n\
66       --verbose     print a message for each created directory\n\
67       --help        display this help and exit\n\
68       --version     output version information and exit\n\
69 "));
70       puts (_("\nReport bugs to <fileutils-bugs@gnu.ai.mit.edu>."));
71     }
72   exit (status);
73 }
74
75 int
76 main (int argc, char **argv)
77 {
78   unsigned int newmode;
79   unsigned int parent_mode;
80   char *symbolic_mode = NULL;
81   const char *verbose_fmt_string = NULL;
82   int errors = 0;
83   int optc;
84
85   program_name = argv[0];
86   setlocale (LC_ALL, "");
87   bindtextdomain (PACKAGE, LOCALEDIR);
88   textdomain (PACKAGE);
89
90   path_mode = 0;
91
92   while ((optc = getopt_long (argc, argv, "pm:", longopts, NULL)) != -1)
93     {
94       switch (optc)
95         {
96         case 0:                 /* Long option. */
97           break;
98         case 'p':
99           path_mode = 1;
100           break;
101         case 'm':
102           symbolic_mode = optarg;
103           break;
104         case 2: /* --verbose  */
105           verbose_fmt_string = _("created directory `%s'");
106           break;
107         default:
108           usage (1);
109         }
110     }
111
112   if (show_version)
113     {
114       printf ("mkdir (%s) %s\n", GNU_PACKAGE, VERSION);
115       exit (0);
116     }
117
118   if (show_help)
119     usage (0);
120
121   if (optind == argc)
122     {
123       error (0, 0, _("too few arguments"));
124       usage (1);
125     }
126
127   newmode = 0777 & ~umask (0);
128   parent_mode = newmode | 0300; /* u+wx */
129   if (symbolic_mode)
130     {
131       struct mode_change *change = mode_compile (symbolic_mode, 0);
132       if (change == MODE_INVALID)
133         error (1, 0, _("invalid mode `%s'"), symbolic_mode);
134       else if (change == MODE_MEMORY_EXHAUSTED)
135         error (1, 0, _("virtual memory exhausted"));
136       newmode = mode_adjust (newmode, change);
137     }
138
139   for (; optind < argc; ++optind)
140     {
141       if (path_mode)
142         {
143           errors |= make_path (argv[optind], newmode, parent_mode,
144                                -1, -1, 1, verbose_fmt_string);
145         }
146       else if (mkdir (argv[optind], newmode))
147         {
148           error (0, errno, _("cannot make directory `%s'"), argv[optind]);
149           errors = 1;
150         }
151       else if (verbose_fmt_string)
152         {
153           error (0, 0, verbose_fmt_string, argv[optind]);
154         }
155     }
156
157   exit (errors);
158 }