Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 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 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 22 | #include "internal.h" |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 23 | #include <stdio.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 24 | #include <errno.h> |
| 25 | #include <sys/types.h> |
| 26 | #include <sys/stat.h> |
| 27 | #include <fcntl.h> |
| 28 | #include <unistd.h> |
| 29 | |
Erik Andersen | 812d466 | 2000-01-07 18:30:40 +0000 | [diff] [blame] | 30 | static const char mknod_usage[] = "mknod NAME TYPE MAJOR MINOR\n\n" |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 31 | "Make block or character special files.\n\n" |
Erik Andersen | 812d466 | 2000-01-07 18:30:40 +0000 | [diff] [blame] | 32 | "TYPEs include:\n" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 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 |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 38 | mknod_main(int argc, char** argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 39 | { |
| 40 | mode_t mode = 0; |
| 41 | dev_t dev = 0; |
| 42 | |
Erik Andersen | 812d466 | 2000-01-07 18:30:40 +0000 | [diff] [blame] | 43 | if ( argc != 5 || **(argv+1) == '-' ) { |
| 44 | usage (mknod_usage); |
| 45 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 46 | 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 Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 58 | usage (mknod_usage); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | if ( mode == S_IFCHR || mode == S_IFBLK ) { |
| 62 | dev = (atoi(argv[3]) << 8) | atoi(argv[4]); |
| 63 | if ( argc != 5 ) { |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 64 | usage (mknod_usage); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 65 | } |
| 66 | } |
| 67 | |
| 68 | mode |= 0666; |
| 69 | |
| 70 | if ( mknod(argv[1], mode, dev) != 0 ) { |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 71 | perror(argv[1]); |
| 72 | return( FALSE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 73 | } |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 74 | return( TRUE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 75 | } |