blob: c3389cc710c767d2ed6adf1e65de857ce98071a8 [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
Eric Andersend73dc5b1999-11-10 23:13:02 +000030static const char mknod_usage[] = "mknod [OPTION]... NAME TYPE MAJOR MINOR\n\n"
31"Make block or character special files.\n\n"
32"Options:\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
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:
Eric Andersenb0e9a701999-10-18 22:28:26 +000055 usage (mknod_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +000056 }
57
58 if ( mode == S_IFCHR || mode == S_IFBLK ) {
59 dev = (atoi(argv[3]) << 8) | atoi(argv[4]);
60 if ( argc != 5 ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000061 usage (mknod_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +000062 }
63 }
64
65 mode |= 0666;
66
67 if ( mknod(argv[1], mode, dev) != 0 ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000068 perror(argv[1]);
69 return( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000070 }
Eric Andersenb0e9a701999-10-18 22:28:26 +000071 return( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000072}