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> */
22 #include <sys/types.h>
23 #include <selinux/selinux.h>
27 #include "modechange.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
},
47 if (status
!= EXIT_SUCCESS
)
51 printf (_("Usage: %s [OPTION]... NAME...\n"), program_name
);
53 Create named pipes (FIFOs) with the given NAMEs.\n\
57 Mandatory arguments to long options are mandatory for short options too.\n\
60 -m, --mode=MODE set file permission bits to MODE, not a=rw - umask\n\
63 -Z, --context=CTX set the SELinux security context of each NAME to CTX\n\
65 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
66 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
67 emit_ancillary_info ();
73 main (int argc
, char **argv
)
76 char const *specified_mode
= NULL
;
77 int exit_status
= EXIT_SUCCESS
;
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
);
87 atexit (close_stdout
);
89 while ((optc
= getopt_long (argc
, argv
, "m:Z:", longopts
, NULL
)) != -1)
94 specified_mode
= optarg
;
99 case_GETOPT_HELP_CHAR
;
100 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
102 usage (EXIT_FAILURE
);
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"),
117 newmode
= MODE_RW_UGO
;
120 struct mode_change
*change
= mode_compile (specified_mode
);
122 error (EXIT_FAILURE
, 0, _("invalid mode"));
123 newmode
= mode_adjust (newmode
, false, umask (0), change
, NULL
);
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
;