blob: ca217fa236d2d4919a9559ade6491950c7155543 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen19db07b1999-12-11 08:41:28 +00002/*
3 * Mini mkfifo implementation for busybox
4 *
5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Eric Andersen19db07b1999-12-11 08:41:28 +000023#include <stdio.h>
24#include <sys/types.h>
Eric Andersen19db07b1999-12-11 08:41:28 +000025#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000027#include "busybox.h"
Eric Andersen19db07b1999-12-11 08:41:28 +000028
Eric Andersen19db07b1999-12-11 08:41:28 +000029extern int mkfifo_main(int argc, char **argv)
30{
Erik Andersene49d5ec2000-02-08 19:58:47 +000031 char *thisarg;
32 mode_t mode = 0666;
Eric Andersen19db07b1999-12-11 08:41:28 +000033
Erik Andersene49d5ec2000-02-08 19:58:47 +000034 argc--;
35 argv++;
36
37 /* Parse any options */
38 while (argc > 1) {
39 if (**argv != '-')
Eric Andersen67991cf2001-02-14 21:23:06 +000040 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000041 thisarg = *argv;
42 thisarg++;
43 switch (*thisarg) {
44 case 'm':
45 argc--;
46 argv++;
47 parse_mode(*argv, &mode);
48 break;
49 default:
Eric Andersen67991cf2001-02-14 21:23:06 +000050 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000051 }
52 argc--;
53 argv++;
54 }
Eric Andersen46a38db2000-06-04 05:17:35 +000055 if (argc < 1 || *argv[0] == '-')
Eric Andersen67991cf2001-02-14 21:23:06 +000056 show_usage();
Matt Kraaia9819b22000-12-22 01:48:07 +000057 if (mkfifo(*argv, mode) < 0)
58 perror_msg_and_die("mkfifo");
Matt Kraai3e856ce2000-12-01 02:55:13 +000059 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +000060}