mknod.c revision 17347
11558Srgrimes/*
21558Srgrimes * Copyright (c) 1989, 1993
31558Srgrimes *	The Regents of the University of California.  All rights reserved.
41558Srgrimes *
51558Srgrimes * This code is derived from software contributed to Berkeley by
61558Srgrimes * Kevin Fall.
71558Srgrimes *
81558Srgrimes * Redistribution and use in source and binary forms, with or without
91558Srgrimes * modification, are permitted provided that the following conditions
101558Srgrimes * are met:
111558Srgrimes * 1. Redistributions of source code must retain the above copyright
121558Srgrimes *    notice, this list of conditions and the following disclaimer.
131558Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
141558Srgrimes *    notice, this list of conditions and the following disclaimer in the
151558Srgrimes *    documentation and/or other materials provided with the distribution.
161558Srgrimes * 3. All advertising materials mentioning features or use of this software
171558Srgrimes *    must display the following acknowledgement:
181558Srgrimes *	This product includes software developed by the University of
191558Srgrimes *	California, Berkeley and its contributors.
201558Srgrimes * 4. Neither the name of the University nor the names of its contributors
211558Srgrimes *    may be used to endorse or promote products derived from this software
221558Srgrimes *    without specific prior written permission.
231558Srgrimes *
241558Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
251558Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
261558Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
271558Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
281558Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
291558Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
301558Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
311558Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
321558Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
331558Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
341558Srgrimes * SUCH DAMAGE.
351558Srgrimes */
361558Srgrimes
371558Srgrimes#ifndef lint
3817347Sbdestatic const char copyright[] =
391558Srgrimes"@(#) Copyright (c) 1989, 1993\n\
401558Srgrimes	The Regents of the University of California.  All rights reserved.\n";
411558Srgrimes#endif /* not lint */
421558Srgrimes
431558Srgrimes#ifndef lint
4417347Sbde#if 0
451558Srgrimesstatic char sccsid[] = "@(#)mknod.c	8.1 (Berkeley) 6/5/93";
4617347Sbde#else
4717347Sbdestatic const char rcsid[] =
4817347Sbde    "$Id$";
4917347Sbde#endif
501558Srgrimes#endif /* not lint */
511558Srgrimes
521558Srgrimes#include <sys/types.h>
531558Srgrimes#include <sys/stat.h>
5417347Sbde
5517347Sbde#include <errno.h>
561558Srgrimes#include <stdio.h>
5717347Sbde#include <stdlib.h>
5817347Sbde#include <string.h>
5917347Sbde#include <unistd.h>
601558Srgrimes
6117347Sbdeint
621558Srgrimesmain(argc, argv)
631558Srgrimes	int argc;
641558Srgrimes	char **argv;
651558Srgrimes{
6617347Sbde	dev_t dev;
6717302Sjoerg	char *endp;
6817347Sbde	long major, minor;
6917347Sbde	mode_t mode;
7017347Sbde	int range_error;
711558Srgrimes
721558Srgrimes	if (argc != 5) {
731558Srgrimes		(void)fprintf(stderr,
741558Srgrimes		    "usage: mknod name [b | c] major minor\n");
751558Srgrimes		exit(1);
761558Srgrimes	}
771558Srgrimes
781558Srgrimes	mode = 0666;
791558Srgrimes	if (argv[2][0] == 'c')
801558Srgrimes		mode |= S_IFCHR;
811558Srgrimes	else if (argv[2][0] == 'b')
821558Srgrimes		mode |= S_IFBLK;
831558Srgrimes	else {
841558Srgrimes		(void)fprintf(stderr,
8517347Sbde		    "mknod: node must be type 'b' or 'c'\n");
861558Srgrimes		exit(1);
871558Srgrimes	}
881558Srgrimes
8917347Sbde	errno = 0;
9017347Sbde	major = (long)strtoul(argv[3], &endp, 0);
9117347Sbde	if (endp == argv[3] || *endp != '\0') {
921558Srgrimes		(void)fprintf(stderr,
9317347Sbde		    "mknod: %s: non-numeric major number\n", argv[3]);
9417302Sjoerg		exit(1);
9517302Sjoerg	}
9617347Sbde	range_error = errno;
9717347Sbde	errno = 0;
9817347Sbde	minor = (long)strtoul(argv[4], &endp, 0);
9917347Sbde	if (endp == argv[3] || *endp != '\0') {
10017302Sjoerg		(void)fprintf(stderr,
10117347Sbde		    "mknod: %s: non-numeric minor number\n", argv[4]);
10217302Sjoerg		exit(1);
10317302Sjoerg	}
10417347Sbde	range_error |= errno;
10517347Sbde	dev = makedev(major, minor);
10617347Sbde	if (range_error || major(dev) != major || minor(dev) != minor) {
10717347Sbde		(void)fprintf(stderr,
10817347Sbde		    "mknod: major or minor number too large\n");
10917347Sbde		exit(1);
11017347Sbde	}
11117302Sjoerg
11217347Sbde	if (mknod(argv[1], mode, dev) != 0) {
11317302Sjoerg		(void)fprintf(stderr,
1141558Srgrimes		    "mknod: %s: %s\n", argv[1], strerror(errno));
1151558Srgrimes		exit(1);
1161558Srgrimes	}
1171558Srgrimes	exit(0);
1181558Srgrimes}
119