(main): Add a literal format string to suppress
[platform/upstream/coreutils.git] / src / mknod.c
1 /* mknod -- make special files
2    Copyright (C) 90, 91, 1995-2001 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Usage: mknod [-m mode] [--mode=mode] path {bcu} major minor
19                 make a block or character device node
20           mknod [-m mode] [--mode=mode] path p
21                 make a FIFO (named pipe)
22
23    Options:
24    -m, --mode=mode      Set the mode of created nodes to MODE, which is
25                         symbolic as in chmod and uses the umask as a point of
26                         departure.
27
28    David MacKenzie <djm@ai.mit.edu>  */
29
30 #include <config.h>
31 #include <stdio.h>
32 #include <getopt.h>
33 #include <sys/types.h>
34
35 #include "system.h"
36 #include "error.h"
37 #include "modechange.h"
38 #include "quote.h"
39 #include "xstrtol.h"
40
41 /* The official name of this program (e.g., no `g' prefix).  */
42 #define PROGRAM_NAME "mknod"
43
44 #define AUTHORS "David MacKenzie"
45
46 /* The name this program was run with. */
47 char *program_name;
48
49 static struct option const longopts[] =
50 {
51   {"mode", required_argument, NULL, 'm'},
52   {GETOPT_HELP_OPTION_DECL},
53   {GETOPT_VERSION_OPTION_DECL},
54   {NULL, 0, NULL, 0}
55 };
56
57 void
58 usage (int status)
59 {
60   if (status != 0)
61     fprintf (stderr, _("Try `%s --help' for more information.\n"),
62              program_name);
63   else
64     {
65       printf (_("Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]\n"), program_name);
66       printf (_("\
67 Create the special file NAME of the given TYPE.\n\
68 \n\
69   -m, --mode=MODE   set permission mode (as in chmod), not a=rw - umask\n\
70       --help        display this help and exit\n\
71       --version     output version information and exit\n\
72 \n\
73 MAJOR MINOR are forbidden for TYPE p, mandatory otherwise.  TYPE may be:\n\
74 \n\
75   b      create a block (buffered) special file\n\
76   c, u   create a character (unbuffered) special file\n\
77   p      create a FIFO\n\
78 "));
79       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
80     }
81   exit (status);
82 }
83
84 int
85 main (int argc, char **argv)
86 {
87   mode_t newmode;
88   struct mode_change *change;
89   const char *specified_mode;
90   int optc;
91   mode_t node_type;
92
93   program_name = argv[0];
94   setlocale (LC_ALL, "");
95   bindtextdomain (PACKAGE, LOCALEDIR);
96   textdomain (PACKAGE);
97
98   atexit (close_stdout);
99
100   specified_mode = NULL;
101
102   while ((optc = getopt_long (argc, argv, "m:", longopts, NULL)) != -1)
103     {
104       switch (optc)
105         {
106         case 0:
107           break;
108         case 'm':
109           specified_mode = optarg;
110           break;
111         case_GETOPT_HELP_CHAR;
112         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
113         default:
114           usage (1);
115         }
116     }
117
118   newmode = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
119   if (specified_mode)
120     {
121       newmode &= ~ umask (0);
122       change = mode_compile (specified_mode, 0);
123       if (change == MODE_INVALID)
124         error (1, 0, _("invalid mode"));
125       else if (change == MODE_MEMORY_EXHAUSTED)
126         xalloc_die ();
127       newmode = mode_adjust (newmode, change);
128     }
129
130   if (argc - optind != 2 && argc - optind != 4)
131     {
132       const char *msg;
133       if (argc - optind < 2)
134         msg = _("too few arguments");
135       else if (argc - optind > 4)
136         msg = _("too many arguments");
137       else
138         msg = _("wrong number of arguments");
139       error (0, 0, "%s", msg);
140       usage (1);
141     }
142
143   /* Only check the first character, to allow mnemonic usage like
144      `mknod /dev/rst0 character 18 0'. */
145
146   switch (argv[optind + 1][0])
147     {
148     case 'b':                   /* `block' or `buffered' */
149 #ifndef S_IFBLK
150       error (4, 0, _("block special files not supported"));
151 #else
152       node_type = S_IFBLK;
153 #endif
154       goto block_or_character;
155
156     case 'c':                   /* `character' */
157     case 'u':                   /* `unbuffered' */
158 #ifndef S_IFCHR
159       error (4, 0, _("character special files not supported"));
160 #else
161       node_type = S_IFCHR;
162 #endif
163       goto block_or_character;
164
165     block_or_character:
166       if (argc - optind != 4)
167         {
168           error (0, 0, _("\
169 when creating special files, major and minor device\n\
170 numbers must be specified"));
171           usage (1);
172         }
173
174       {
175         char const *s_major = argv[optind + 2];
176         char const *s_minor = argv[optind + 3];
177         uintmax_t i_major, i_minor;
178         dev_t device;
179
180         if (xstrtoumax (s_major, NULL, 0, &i_major, NULL) != LONGINT_OK
181             || i_major != (major_t) i_major)
182           error (1, 0, _("invalid major device number %s"), quote (s_major));
183
184         if (xstrtoumax (s_minor, NULL, 0, &i_minor, NULL) != LONGINT_OK
185             || i_minor != (minor_t) i_minor)
186           error (1, 0, _("invalid minor device number %s"), quote (s_minor));
187
188         device = makedev (i_major, i_minor);
189 #ifdef NODEV
190         if (device == NODEV)
191           error (1, 0, _("invalid device %s %s"), s_major, s_minor);
192 #endif
193
194         if (mknod (argv[optind], newmode | node_type, device) != 0)
195           error (1, errno, "%s", quote (argv[optind]));
196       }
197       break;
198
199     case 'p':                   /* `pipe' */
200 #ifndef S_ISFIFO
201       error (4, 0, _("fifo files not supported"));
202 #else
203       if (argc - optind != 2)
204         {
205           error (0, 0, _("\
206 major and minor device numbers may not be specified for fifo files"));
207           usage (1);
208         }
209       if (mkfifo (argv[optind], newmode))
210         error (1, errno, "%s", quote (argv[optind]));
211 #endif
212       break;
213
214     default:
215       error (0, 0, "invalid device type %s", quote (argv[optind + 1]));
216       usage (1);
217     }
218
219   /* Perform an explicit chmod to ensure the file mode permission bits
220      are set as specified.  This extra step is necessary in some cases
221      when the containing directory has a default ACL.  */
222
223   if (specified_mode)
224     {
225       if (chmod (argv[optind], newmode))
226         error (0, errno, _("cannot set permissions of %s"),
227                quote (argv[optind]));
228     }
229
230   exit (0);
231 }