1 /* mknod -- make special files
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 /* Written by David MacKenzie <djm@ai.mit.edu> */
22 #include <sys/types.h>
23 #include <selinux/selinux.h>
27 #include "modechange.h"
31 /* The official name of this program (e.g., no 'g' prefix). */
32 #define PROGRAM_NAME "mknod"
34 #define AUTHORS proper_name ("David MacKenzie")
36 static struct option
const longopts
[] =
38 {GETOPT_SELINUX_CONTEXT_OPTION_DECL
},
39 {"mode", required_argument
, NULL
, 'm'},
40 {GETOPT_HELP_OPTION_DECL
},
41 {GETOPT_VERSION_OPTION_DECL
},
48 if (status
!= EXIT_SUCCESS
)
52 printf (_("Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n"),
55 Create the special file NAME of the given TYPE.\n\
59 Mandatory arguments to long options are mandatory for short options too.\n\
62 -m, --mode=MODE set file permission bits to MODE, not a=rw - umask\n\
65 -Z, --context=CTX set the SELinux security context of NAME to CTX\n\
67 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
68 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
71 Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they\n\
72 must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X,\n\
73 it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;\n\
74 otherwise, as decimal. TYPE may be:\n\
78 b create a block (buffered) special file\n\
79 c, u create a character (unbuffered) special file\n\
82 printf (USAGE_BUILTIN_WARNING
, PROGRAM_NAME
);
83 emit_ancillary_info ();
89 main (int argc
, char **argv
)
92 char const *specified_mode
= NULL
;
94 int expected_operands
;
96 security_context_t scontext
= NULL
;
98 initialize_main (&argc
, &argv
);
99 set_program_name (argv
[0]);
100 setlocale (LC_ALL
, "");
101 bindtextdomain (PACKAGE
, LOCALEDIR
);
102 textdomain (PACKAGE
);
104 atexit (close_stdout
);
106 while ((optc
= getopt_long (argc
, argv
, "m:Z:", longopts
, NULL
)) != -1)
111 specified_mode
= optarg
;
116 case_GETOPT_HELP_CHAR
;
117 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
119 usage (EXIT_FAILURE
);
123 newmode
= MODE_RW_UGO
;
126 struct mode_change
*change
= mode_compile (specified_mode
);
128 error (EXIT_FAILURE
, 0, _("invalid mode"));
129 newmode
= mode_adjust (newmode
, false, umask (0), change
, NULL
);
131 if (newmode
& ~S_IRWXUGO
)
132 error (EXIT_FAILURE
, 0,
133 _("mode must specify only file permission bits"));
136 /* If the number of arguments is 0 or 1,
137 or (if it's 2 or more and the second one starts with 'p'), then there
138 must be exactly two operands. Otherwise, there must be four. */
139 expected_operands
= (argc
<= optind
140 || (optind
+ 1 < argc
&& argv
[optind
+ 1][0] == 'p')
143 if (argc
- optind
< expected_operands
)
146 error (0, 0, _("missing operand"));
148 error (0, 0, _("missing operand after %s"), quote (argv
[argc
- 1]));
149 if (expected_operands
== 4 && argc
- optind
== 2)
150 fprintf (stderr
, "%s\n",
151 _("Special files require major and minor device numbers."));
152 usage (EXIT_FAILURE
);
155 if (expected_operands
< argc
- optind
)
157 error (0, 0, _("extra operand %s"),
158 quote (argv
[optind
+ expected_operands
]));
159 if (expected_operands
== 2 && argc
- optind
== 4)
160 fprintf (stderr
, "%s\n",
161 _("Fifos do not have major and minor device numbers."));
162 usage (EXIT_FAILURE
);
165 if (scontext
&& setfscreatecon (scontext
) < 0)
166 error (EXIT_FAILURE
, errno
,
167 _("failed to set default file creation context to %s"),
170 /* Only check the first character, to allow mnemonic usage like
171 'mknod /dev/rst0 character 18 0'. */
173 switch (argv
[optind
+ 1][0])
175 case 'b': /* 'block' or 'buffered' */
177 error (EXIT_FAILURE
, 0, _("block special files not supported"));
181 goto block_or_character
;
183 case 'c': /* 'character' */
184 case 'u': /* 'unbuffered' */
186 error (EXIT_FAILURE
, 0, _("character special files not supported"));
190 goto block_or_character
;
194 char const *s_major
= argv
[optind
+ 2];
195 char const *s_minor
= argv
[optind
+ 3];
196 uintmax_t i_major
, i_minor
;
199 if (xstrtoumax (s_major
, NULL
, 0, &i_major
, NULL
) != LONGINT_OK
200 || i_major
!= (major_t
) i_major
)
201 error (EXIT_FAILURE
, 0,
202 _("invalid major device number %s"), quote (s_major
));
204 if (xstrtoumax (s_minor
, NULL
, 0, &i_minor
, NULL
) != LONGINT_OK
205 || i_minor
!= (minor_t
) i_minor
)
206 error (EXIT_FAILURE
, 0,
207 _("invalid minor device number %s"), quote (s_minor
));
209 device
= makedev (i_major
, i_minor
);
212 error (EXIT_FAILURE
, 0, _("invalid device %s %s"), s_major
, s_minor
);
215 if (mknod (argv
[optind
], newmode
| node_type
, device
) != 0)
216 error (EXIT_FAILURE
, errno
, "%s", quote (argv
[optind
]));
220 case 'p': /* 'pipe' */
221 if (mkfifo (argv
[optind
], newmode
) != 0)
222 error (EXIT_FAILURE
, errno
, "%s", quote (argv
[optind
]));
226 error (0, 0, _("invalid device type %s"), quote (argv
[optind
+ 1]));
227 usage (EXIT_FAILURE
);