1 /* makepath.c -- Ensure that a directory path exists.
2 Copyright (C) 1990 Free Software Foundation, Inc.
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)
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.
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 Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu> and Jim Meyering. */
25 # define alloca __builtin_alloca
39 #include <sys/types.h>
45 #if STAT_MACROS_BROKEN
49 #if !defined(S_ISDIR) && defined(S_IFDIR)
50 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
83 /* Ensure that the directory ARGPATH exists.
84 Remove any trailing slashes from ARGPATH before calling this function.
86 Create any leading directories that don't already exist, with
87 permissions PARENT_MODE.
88 If the last element of ARGPATH does not exist, create it as
89 a new directory with permissions MODE.
90 If OWNER and GROUP are non-negative, use them to set the UID and GID of
91 any created directories.
92 If VERBOSE_FMT_STRING is nonzero, use it as a printf format
93 string for printing a message after successfully making a directory,
94 with the name of the directory that was just made as an argument.
95 If PRESERVE_EXISTING is non-zero and ARGPATH is an existing directory,
96 then do not attempt to set its permissions and ownership.
98 Return 0 if ARGPATH exists as a directory with the proper
99 ownership and permissions when done, otherwise 1. */
103 make_path (const char *argpath
,
108 int preserve_existing
,
109 const char *verbose_fmt_string
)
112 make_path (argpath
, mode
, parent_mode
, owner
, group
, preserve_existing
,
119 int preserve_existing
;
120 const char *verbose_fmt_string
;
123 char *dirpath
; /* A copy we can scribble NULs on. */
126 int oldmask
= umask (0);
128 /* FIXME: move this alloca and strcpy into the if-block.
129 Set dirpath to argpath in the else-block. */
130 dirpath
= (char *) alloca (strlen (argpath
) + 1);
131 strcpy (dirpath
, argpath
);
133 if (stat (dirpath
, &stats
))
136 int tmp_mode
; /* Initial perms for leading dirs. */
137 int re_protect
; /* Should leading dirs be unwritable? */
141 struct ptr_list
*next
;
143 struct ptr_list
*p
, *leading_dirs
= NULL
;
145 /* If leading directories shouldn't be writable or executable,
146 or should have set[ug]id or sticky bits set and we are setting
147 their owners, we need to fix their permissions after making them. */
148 if (((parent_mode
& 0300) != 0300)
149 || (owner
!= (uid_t
) -1 && group
!= (gid_t
) -1
150 && (parent_mode
& 07000) != 0))
157 tmp_mode
= parent_mode
;
162 while (*slash
== '/')
164 while ((slash
= strchr (slash
, '/')))
167 if (stat (dirpath
, &stats
))
169 if (mkdir (dirpath
, tmp_mode
))
171 error (0, errno
, "cannot create directory `%s'", dirpath
);
177 if (verbose_fmt_string
!= NULL
)
178 error (0, 0, verbose_fmt_string
, dirpath
);
180 if (owner
!= (uid_t
) -1 && group
!= (gid_t
) -1
181 && chown (dirpath
, owner
, group
)
182 #if defined(AFS) && defined (EPERM)
187 error (0, errno
, "%s", dirpath
);
192 struct ptr_list
*new = (struct ptr_list
*)
193 alloca (sizeof (struct ptr_list
));
194 new->dirname_end
= slash
;
195 new->next
= leading_dirs
;
200 else if (!S_ISDIR (stats
.st_mode
))
202 error (0, 0, "`%s' exists but is not a directory", dirpath
);
209 /* Avoid unnecessary calls to `stat' when given
210 pathnames containing multiple adjacent slashes. */
211 while (*slash
== '/')
215 /* We're done making leading directories.
216 Create the final component of the path. */
218 /* The path could end in "/." or contain "/..", so test
219 if we really have to create the directory. */
221 if (stat (dirpath
, &stats
) && mkdir (dirpath
, mode
))
223 error (0, errno
, "cannot create directory `%s'", dirpath
);
227 if (verbose_fmt_string
!= NULL
)
228 error (0, 0, verbose_fmt_string
, dirpath
);
230 if (owner
!= (uid_t
) -1 && group
!= (gid_t
) -1)
232 if (chown (dirpath
, owner
, group
)
238 error (0, errno
, "%s", dirpath
);
241 /* chown may have turned off some permission bits we wanted. */
242 if ((mode
& 07000) != 0 && chmod (dirpath
, mode
))
244 error (0, errno
, "%s", dirpath
);
249 /* If the mode for leading directories didn't include owner "wx"
250 privileges, we have to reset their protections to the correct
252 for (p
= leading_dirs
; p
!= NULL
; p
= p
->next
)
254 *(p
->dirname_end
) = '\0';
255 if (chmod (dirpath
, parent_mode
))
257 error (0, errno
, "%s", dirpath
);
264 /* We get here if the entire path already exists. */
266 if (!S_ISDIR (stats
.st_mode
))
268 error (0, 0, "`%s' exists but is not a directory", dirpath
);
273 if (!preserve_existing
)
275 /* chown must precede chmod because on some systems,
276 chown clears the set[ug]id bits for non-superusers,
277 resulting in incorrect permissions.
278 On System V, users can give away files with chown and then not
279 be able to chmod them. So don't give files away. */
281 if (owner
!= (uid_t
) -1 && group
!= (gid_t
) -1
282 && chown (dirpath
, owner
, group
)
288 error (0, errno
, "%s", dirpath
);
291 if (chmod (dirpath
, mode
))
293 error (0, errno
, "%s", dirpath
);