*** empty log message ***
[platform/upstream/coreutils.git] / src / mkfifo.c
1 /* mkfifo -- make fifo's (named pipes)
2    Copyright (C) 90, 91, 1995-2006 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 "error.h"
27 #include "modechange.h"
28 #include "quote.h"
29
30 /* The official name of this program (e.g., no `g' prefix).  */
31 #define PROGRAM_NAME "mkfifo"
32
33 #define AUTHORS "David MacKenzie"
34
35 /* The name this program was run with. */
36 char *program_name;
37
38 static struct option const longopts[] =
39 {
40   {"mode", required_argument, NULL, 'm'},
41   {GETOPT_HELP_OPTION_DECL},
42   {GETOPT_VERSION_OPTION_DECL},
43   {NULL, 0, NULL, 0}
44 };
45
46 #ifdef S_ISFIFO
47 void
48 usage (int status)
49 {
50   if (status != EXIT_SUCCESS)
51     fprintf (stderr, _("Try `%s --help' for more information.\n"),
52              program_name);
53   else
54     {
55       printf (_("Usage: %s [OPTION] NAME...\n"), program_name);
56       fputs (_("\
57 Create named pipes (FIFOs) with the given NAMEs.\n\
58 \n\
59 "), stdout);
60       fputs (_("\
61 Mandatory arguments to long options are mandatory for short options too.\n\
62 "), stdout);
63       fputs (_("\
64   -m, --mode=MODE   set file permission bits to MODE, not a=rw - umask\n\
65 "), stdout);
66       fputs (HELP_OPTION_DESCRIPTION, stdout);
67       fputs (VERSION_OPTION_DESCRIPTION, stdout);
68       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
69     }
70   exit (status);
71 }
72 #endif
73
74 int
75 main (int argc, char **argv)
76 {
77   mode_t newmode;
78   char const *specified_mode = NULL;
79   int exit_status = EXIT_SUCCESS;
80   int optc;
81
82   initialize_main (&argc, &argv);
83   program_name = argv[0];
84   setlocale (LC_ALL, "");
85   bindtextdomain (PACKAGE, LOCALEDIR);
86   textdomain (PACKAGE);
87
88   atexit (close_stdout);
89
90 #ifndef S_ISFIFO
91   error (EXIT_FAILURE, 0, _("fifo files not supported"));
92 #else
93   while ((optc = getopt_long (argc, argv, "m:", longopts, NULL)) != -1)
94     {
95       switch (optc)
96         {
97         case 'm':
98           specified_mode = optarg;
99           break;
100         case_GETOPT_HELP_CHAR;
101         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
102         default:
103           usage (EXIT_FAILURE);
104         }
105     }
106
107   if (optind == argc)
108     {
109       error (0, 0, _("missing operand"));
110       usage (EXIT_FAILURE);
111     }
112
113   newmode = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
114   if (specified_mode)
115     {
116       struct mode_change *change = mode_compile (specified_mode);
117       if (!change)
118         error (EXIT_FAILURE, 0, _("invalid mode"));
119       newmode = mode_adjust (newmode, change, umask (0));
120       free (change);
121       if (newmode & ~S_IRWXUGO)
122         error (EXIT_FAILURE, 0,
123                _("mode must specify only file permission bits"));
124     }
125
126   for (; optind < argc; ++optind)
127     if (mkfifo (argv[optind], newmode) != 0)
128       {
129         error (0, errno, _("cannot create fifo %s"), quote (argv[optind]));
130         exit_status = EXIT_FAILURE;
131       }
132
133   exit (exit_status);
134 #endif
135 }