id: don't call getcon unnecessarily
[coreutils.git] / src / mkfifo.c
blobe5c871d144f31392009d1a1b90b1baa1de06e5fc
1 /* mkfifo -- make fifo's (named pipes)
2 Copyright (C) 1990-2012 Free Software Foundation, Inc.
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 3 of the License, or
7 (at your option) any later version.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* David MacKenzie <djm@ai.mit.edu> */
19 #include <config.h>
20 #include <stdio.h>
21 #include <getopt.h>
22 #include <sys/types.h>
23 #include <selinux/selinux.h>
25 #include "system.h"
26 #include "error.h"
27 #include "modechange.h"
28 #include "quote.h"
30 /* The official name of this program (e.g., no 'g' prefix). */
31 #define PROGRAM_NAME "mkfifo"
33 #define AUTHORS proper_name ("David MacKenzie")
35 static struct option const longopts[] =
37 {GETOPT_SELINUX_CONTEXT_OPTION_DECL},
38 {"mode", required_argument, NULL, 'm'},
39 {GETOPT_HELP_OPTION_DECL},
40 {GETOPT_VERSION_OPTION_DECL},
41 {NULL, 0, NULL, 0}
44 void
45 usage (int status)
47 if (status != EXIT_SUCCESS)
48 emit_try_help ();
49 else
51 printf (_("Usage: %s [OPTION]... NAME...\n"), program_name);
52 fputs (_("\
53 Create named pipes (FIFOs) with the given NAMEs.\n\
54 \n\
55 "), stdout);
56 fputs (_("\
57 Mandatory arguments to long options are mandatory for short options too.\n\
58 "), stdout);
59 fputs (_("\
60 -m, --mode=MODE set file permission bits to MODE, not a=rw - umask\n\
61 "), stdout);
62 fputs (_("\
63 -Z, --context=CTX set the SELinux security context of each NAME to CTX\n\
64 "), stdout);
65 fputs (HELP_OPTION_DESCRIPTION, stdout);
66 fputs (VERSION_OPTION_DESCRIPTION, stdout);
67 emit_ancillary_info ();
69 exit (status);
72 int
73 main (int argc, char **argv)
75 mode_t newmode;
76 char const *specified_mode = NULL;
77 int exit_status = EXIT_SUCCESS;
78 int optc;
79 security_context_t scontext = NULL;
81 initialize_main (&argc, &argv);
82 set_program_name (argv[0]);
83 setlocale (LC_ALL, "");
84 bindtextdomain (PACKAGE, LOCALEDIR);
85 textdomain (PACKAGE);
87 atexit (close_stdout);
89 while ((optc = getopt_long (argc, argv, "m:Z:", longopts, NULL)) != -1)
91 switch (optc)
93 case 'm':
94 specified_mode = optarg;
95 break;
96 case 'Z':
97 scontext = optarg;
98 break;
99 case_GETOPT_HELP_CHAR;
100 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
101 default:
102 usage (EXIT_FAILURE);
106 if (optind == argc)
108 error (0, 0, _("missing operand"));
109 usage (EXIT_FAILURE);
112 if (scontext && setfscreatecon (scontext) < 0)
113 error (EXIT_FAILURE, errno,
114 _("failed to set default file creation context to %s"),
115 quote (scontext));
117 newmode = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
118 if (specified_mode)
120 struct mode_change *change = mode_compile (specified_mode);
121 if (!change)
122 error (EXIT_FAILURE, 0, _("invalid mode"));
123 newmode = mode_adjust (newmode, false, umask (0), change, NULL);
124 free (change);
125 if (newmode & ~S_IRWXUGO)
126 error (EXIT_FAILURE, 0,
127 _("mode must specify only file permission bits"));
130 for (; optind < argc; ++optind)
131 if (mkfifo (argv[optind], newmode) != 0)
133 error (0, errno, _("cannot create fifo %s"), quote (argv[optind]));
134 exit_status = EXIT_FAILURE;
137 exit (exit_status);