.
[pspp] / lib / mkdir.c
1 /* mkdir.c -- BSD compatible make directory function for System V
2    Copyright (C) 1988, 1990 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 #ifdef HAVE_CONFIG_H
19 #if defined (CONFIG_BROKETS)
20 /* We use <config.h> instead of "config.h" so that a compilation
21    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
22    (which it would do because it found this file in $srcdir).  */
23 #include <config.h>
24 #else
25 #include "config.h"
26 #endif
27 #endif
28
29 #include <sys/types.h>
30 #include <sys/stat.h>
31
32 #include <errno.h>
33 #ifndef errno
34 extern int errno;
35 #endif
36
37 #ifdef STAT_MACROS_BROKEN
38 #undef S_ISDIR
39 #endif
40
41 #if !defined(S_ISDIR) && defined(S_IFDIR)
42 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
43 #endif
44
45 #include "safe-stat.h"
46
47 /* mkdir adapted from GNU tar.  */
48
49 /* Make directory DPATH, with permission mode DMODE.
50
51    Written by Robert Rother, Mariah Corporation, August 1985
52    (sdcsvax!rmr or rmr@uscd).  If you want it, it's yours.
53
54    Severely hacked over by John Gilmore to make a 4.2BSD compatible
55    subroutine.  11Mar86; hoptoad!gnu
56
57    Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
58    subroutine didn't return EEXIST.  It does now.  */
59
60 int
61 mkdir (dpath, dmode)
62      char *dpath;
63      int dmode;
64 {
65   int cpid, status;
66   struct stat statbuf;
67
68   if (SAFE_STAT (dpath, &statbuf) == 0)
69     {
70       errno = EEXIST;           /* stat worked, it already exists */
71       return -1;
72     }
73
74   /* If stat fails for a reason other than non-existence, return error.  */
75   if (errno != ENOENT)
76     return -1;
77
78   cpid = fork ();
79   switch (cpid)
80     {
81     case -1:                    /* cannot fork */
82       return -1;                /* errno already set */
83
84     case 0:                     /* child process */
85
86       /* Cheap hack to set mode of new directory.  Since this child
87          process is going away anyway, we zap its umask.  This won't
88          suffice to set SUID, SGID, etc. on this directory, so the parent
89          process calls chmod afterward.  */
90
91       status = umask (0);
92       umask (status | (0777 & ~dmode));
93       execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
94       _exit (1);
95
96     default:                    /* parent process */
97
98       /* Wait for kid to finish.  */
99
100       while (wait (&status) != cpid)
101         /* Do nothing.  */ ;
102
103       if (status & 0xFFFF)
104         {
105
106           /* /bin/mkdir failed.  */
107
108           errno = EIO;
109           return -1;
110         }
111       return chmod (dpath, dmode);
112     }
113 }