1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00
Files
coreutils/src/mkdir.c

170 lines
4.4 KiB
C
Raw Normal View History

1992-10-31 20:42:48 +00:00
/* mkdir -- make directories
1999-02-16 04:14:17 +00:00
Copyright (C) 90, 1995-1999 Free Software Foundation, Inc.
1992-10-31 20:42:48 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
1996-03-24 18:47:09 +00:00
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1992-10-31 20:42:48 +00:00
/* David MacKenzie <djm@ai.mit.edu> */
1992-10-31 20:42:48 +00:00
1993-10-06 16:44:26 +00:00
#include <config.h>
1992-10-31 20:42:48 +00:00
#include <stdio.h>
#include <getopt.h>
#include <sys/types.h>
1992-10-31 20:42:48 +00:00
#include "system.h"
#include "error.h"
#include "makepath.h"
#include "modechange.h"
#ifndef S_IRWXUGO
# define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
#endif
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "mkdir"
#define AUTHORS "David MacKenzie"
1993-04-02 04:26:26 +00:00
/* The name this program was run with. */
char *program_name;
1993-08-05 02:20:48 +00:00
/* If nonzero, ensure that all parents of the specified directory exist. */
static int path_mode;
1992-10-31 20:42:48 +00:00
static struct option const longopts[] =
1992-10-31 20:42:48 +00:00
{
{"mode", required_argument, NULL, 'm'},
{"parents", no_argument, NULL, 'p'},
{"verbose", no_argument, NULL, 2},
{GETOPT_HELP_OPTION_DECL},
{GETOPT_VERSION_OPTION_DECL},
1992-10-31 20:42:48 +00:00
{NULL, 0, NULL, 0}
};
void
usage (int status)
{
if (status != 0)
fprintf (stderr, _("Try `%s --help' for more information.\n"),
program_name);
else
{
printf (_("Usage: %s [OPTION] DIRECTORY...\n"), program_name);
printf (_("\
Create the DIRECTORY(ies), if they do not already exist.\n\
\n\
-m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - umask\n\
-p, --parents no error if existing, make parent directories as needed\n\
--verbose print a message for each created directory\n\
--help display this help and exit\n\
1996-08-29 05:05:57 +00:00
--version output version information and exit\n\
"));
1998-09-19 17:17:58 +00:00
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
close_stdout ();
}
exit (status);
}
int
1995-11-09 17:02:23 +00:00
main (int argc, char **argv)
1992-10-31 20:42:48 +00:00
{
mode_t newmode;
mode_t parent_mode;
const char *symbolic_mode = NULL;
const char *verbose_fmt_string = NULL;
1992-10-31 20:42:48 +00:00
int errors = 0;
int optc;
program_name = argv[0];
setlocale (LC_ALL, "");
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
1992-10-31 20:42:48 +00:00
path_mode = 0;
while ((optc = getopt_long (argc, argv, "pm:", longopts, NULL)) != -1)
1992-10-31 20:42:48 +00:00
{
switch (optc)
{
case 0: /* Long option. */
break;
case 'p':
path_mode = 1;
break;
case 'm':
symbolic_mode = optarg;
break;
case 2: /* --verbose */
verbose_fmt_string = _("created directory `%s'");
break;
case_GETOPT_HELP_CHAR;
case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
1992-10-31 20:42:48 +00:00
default:
1993-10-08 00:51:10 +00:00
usage (1);
1992-10-31 20:42:48 +00:00
}
}
if (optind == argc)
1994-10-08 00:34:54 +00:00
{
error (0, 0, _("too few arguments"));
1994-10-08 00:34:54 +00:00
usage (1);
}
newmode = S_IRWXUGO & ~ umask (0);
parent_mode = S_IWUSR | S_IXUSR | newmode;
1992-10-31 20:42:48 +00:00
if (symbolic_mode)
{
struct mode_change *change = mode_compile (symbolic_mode, 0);
if (change == MODE_INVALID)
error (1, 0, _("invalid mode `%s'"), symbolic_mode);
1992-10-31 20:42:48 +00:00
else if (change == MODE_MEMORY_EXHAUSTED)
error (1, 0, _("virtual memory exhausted"));
1992-10-31 20:42:48 +00:00
newmode = mode_adjust (newmode, change);
}
for (; optind < argc; ++optind)
{
int fail = 0;
1992-10-31 20:42:48 +00:00
if (path_mode)
1994-11-04 06:00:41 +00:00
{
fail = make_path (argv[optind], newmode, parent_mode,
-1, -1, 1, verbose_fmt_string);
1994-11-04 06:00:41 +00:00
}
else
1992-10-31 20:42:48 +00:00
{
fail = mkdir (argv[optind], newmode);
if (fail)
error (0, errno, _("cannot create directory `%s'"), argv[optind]);
else if (verbose_fmt_string)
error (0, 0, verbose_fmt_string, argv[optind]);
1992-10-31 20:42:48 +00:00
}
/* FIXME: move this functionality into make_path. */
/* mkdir(2) is required to honor only the file permission bits.
In particular, it needn't do anything about `special' bits,
so if any were set in newmode, apply them with chmod. */
if (fail == 0 && (newmode & ~S_IRWXUGO))
{
fail = chmod (argv[optind], newmode);
if (fail)
error (0, errno, _("cannot set permissions of directory `%s'"),
argv[optind]);
}
errors |= fail;
1992-10-31 20:42:48 +00:00
}
exit (errors);
}