Move messages.c to libbb. Make each string in messages.c be its own .o file.
[oweals/busybox.git] / coreutils / mkdir.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mkdir implementation for busybox
4  *
5  * Copyright (C) 1999,2000,2001 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <stdio.h>
25 #include <errno.h>
26 #include <string.h>
27 #include <stdlib.h>
28 #include "busybox.h"
29
30
31 static int parentFlag = FALSE;
32 static mode_t mode = 0777;
33
34
35 extern int mkdir_main(int argc, char **argv)
36 {
37         int i = FALSE;
38
39         argc--;
40         argv++;
41
42         /* Parse any options */
43         while (argc > 0 && **argv == '-') {
44                 while (i == FALSE && *++(*argv)) {
45                         switch (**argv) {
46                         case 'm':
47                                 if (--argc == 0)
48                                         show_usage();
49                                 /* Find the specified modes */
50                                 mode = 0;
51                                 if (parse_mode(*(++argv), &mode) == FALSE) {
52                                         error_msg_and_die("Unknown mode: %s", *argv);
53                                 }
54                                 /* Set the umask for this process so it doesn't 
55                                  * screw up whatever the user just entered. */
56                                 umask(0);
57                                 i = TRUE;
58                                 break;
59                         case 'p':
60                                 parentFlag = TRUE;
61                                 break;
62                         default:
63                                 show_usage();
64                         }
65                 }
66                 argc--;
67                 argv++;
68         }
69
70         if (argc < 1) {
71                 show_usage();
72         }
73
74         while (argc > 0) {
75                 int status;
76                 struct stat statBuf;
77                 char buf[BUFSIZ + 1];
78
79                 if (strlen(*argv) > BUFSIZ - 1) {
80                         error_msg_and_die(name_too_long);
81                 }
82                 strcpy(buf, *argv);
83                 status = stat(buf, &statBuf);
84                 if (parentFlag == FALSE && status != -1 && errno != ENOENT) {
85                         error_msg_and_die("%s: File exists", buf);
86                 }
87                 if (parentFlag == TRUE) {
88                         strcat(buf, "/");
89                         create_path(buf, mode);
90                 } else {
91                         if (mkdir(buf, mode) != 0 && parentFlag == FALSE) {
92                                 perror_msg_and_die(buf);
93                         }
94                 }
95                 argc--;
96                 argv++;
97         }
98         return EXIT_SUCCESS;
99 }