blob: 5822cd3adb120daf0117c9d56b4ce37c30e8aec0 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001/*
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
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include "internal.h"
Eric Andersenb0e9a701999-10-18 22:28:26 +000023#include <stdio.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000024#include <errno.h>
25#include <sys/types.h>
26#include <sys/stat.h>
27#include <fcntl.h>
28#include <unistd.h>
29
Erik Andersen812d4662000-01-07 18:30:40 +000030static const char mknod_usage[] = "mknod NAME TYPE MAJOR MINOR\n\n"
Eric Andersend73dc5b1999-11-10 23:13:02 +000031"Make block or character special files.\n\n"
Erik Andersen812d4662000-01-07 18:30:40 +000032"TYPEs include:\n"
Eric Andersencc8ed391999-10-05 16:24:54 +000033"\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
37int
Eric Andersenb0e9a701999-10-18 22:28:26 +000038mknod_main(int argc, char** argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000039{
40 mode_t mode = 0;
41 dev_t dev = 0;
42
Erik Andersen812d4662000-01-07 18:30:40 +000043 if ( argc != 5 || **(argv+1) == '-' ) {
44 usage (mknod_usage);
45 }
Eric Andersencc8ed391999-10-05 16:24:54 +000046 switch(argv[2][0]) {
47 case 'c':
48 case 'u':
49 mode = S_IFCHR;
50 break;
51 case 'b':
52 mode = S_IFBLK;
53 break;
54 case 'p':
55 mode = S_IFIFO;
56 break;
57 default:
Eric Andersenb0e9a701999-10-18 22:28:26 +000058 usage (mknod_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +000059 }
60
61 if ( mode == S_IFCHR || mode == S_IFBLK ) {
62 dev = (atoi(argv[3]) << 8) | atoi(argv[4]);
63 if ( argc != 5 ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000064 usage (mknod_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +000065 }
66 }
67
68 mode |= 0666;
69
70 if ( mknod(argv[1], mode, dev) != 0 ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000071 perror(argv[1]);
72 return( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000073 }
Eric Andersenb0e9a701999-10-18 22:28:26 +000074 return( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000075}