Updates to usage, and made tar work.
[oweals/busybox.git] / coreutils / mknod.c
1 /*
2  * Mini mknod implementation for busybox
3  *
4  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  */
21
22 #include "internal.h"
23 #include <stdio.h>
24 #include <errno.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29
30 static const char mknod_usage[] = "mknod [OPTION]... NAME TYPE MAJOR MINOR\n\n"
31 "Make block or character special files.\n\n"
32 "Options:\n"
33 "\tb:\tMake a block (buffered) device.\n"
34 "\tc or u:\tMake a character (un-buffered) device.\n"
35 "\tp:\tMake a named pipe. Major and minor are ignored for named pipes.\n";
36
37 int
38 mknod_main(int argc, char** argv)
39 {
40         mode_t  mode = 0;
41         dev_t   dev = 0;
42
43         switch(argv[2][0]) {
44         case 'c':
45         case 'u':
46                 mode = S_IFCHR;
47                 break;
48         case 'b':
49                 mode = S_IFBLK;
50                 break;
51         case 'p':
52                 mode = S_IFIFO;
53                 break;
54         default:
55                 usage (mknod_usage);
56         }
57
58         if ( mode == S_IFCHR || mode == S_IFBLK ) {
59                 dev = (atoi(argv[3]) << 8) | atoi(argv[4]);
60                 if ( argc != 5 ) {
61                     usage (mknod_usage);
62                 }
63         }
64
65         mode |= 0666;
66
67         if ( mknod(argv[1], mode, dev) != 0 ) {
68                 perror(argv[1]);
69                 return( FALSE);
70         }
71         return( TRUE);
72 }