1 /* makepath.c -- Ensure that a directory path exists.
2 Copyright (C) 1990, 1997, 1998, 1999, 2000 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)
54 # define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
79 # define S_ISUID 04000
82 # define S_ISGID 02000
85 # define S_ISVTX 01000
98 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
101 #define WX_USR (S_IWUSR | S_IXUSR)
103 /* Include this before libintl.h so we get our definition of PARAMS. */
104 #include "makepath.h"
111 # include <libintl.h>
112 # define _(Text) gettext (Text)
114 # define _(Text) Text
117 #include "save-cwd.h"
121 void strip_trailing_slashes ();
123 #define CLEANUP_CWD \
126 /* We're done operating on basename_dir. \
127 Restore working directory. */ \
130 int _fail = restore_cwd (&cwd, NULL, NULL); \
146 /* Attempt to create directory DIR (aka DIRPATH) with the specified MODE.
147 If CREATED_DIR_P is non-NULL, set *CREATED_DIR_P to non-zero if this
148 function creates DIR and to zero otherwise. Give a diagnostic and
149 return non-zero if DIR cannot be created or cannot be determined to
150 exist already. Use DIRPATH in any diagnostic, not DIR.
151 Note that if DIR already exists, this function returns zero
152 (indicating success) and sets *CREATED_DIR_P to zero. */
155 make_dir (const char *dir
, const char *dirpath
, mode_t mode
, int *created_dir_p
)
160 created_dir
= (mkdir (dir
, mode
) == 0);
165 int saved_errno
= errno
;
167 /* The mkdir and stat calls below may appear to be reversed.
168 They are not. It is important to call mkdir first and then to
169 call stat (to distinguish the three cases) only if mkdir fails.
170 The alternative to this approach is to `stat' each directory,
171 then to call mkdir if it doesn't exist. But if some other process
172 were to create the directory between the stat & mkdir, the mkdir
173 would fail with EEXIST. */
175 if (stat (dir
, &stats
))
177 error (0, saved_errno
, _("cannot create directory %s"),
181 else if (!S_ISDIR (stats
.st_mode
))
183 error (0, 0, _("%s exists but is not a directory"), quote (dirpath
));
188 /* DIR (aka DIRPATH) already exists and is a directory. */
193 *created_dir_p
= created_dir
;
198 /* Ensure that the directory ARGPATH exists.
199 Remove any trailing slashes from ARGPATH before calling this function.
201 Create any leading directories that don't already exist, with
202 permissions PARENT_MODE.
203 If the last element of ARGPATH does not exist, create it as
204 a new directory with permissions MODE.
205 If OWNER and GROUP are non-negative, use them to set the UID and GID of
206 any created directories.
207 If VERBOSE_FMT_STRING is nonzero, use it as a printf format
208 string for printing a message after successfully making a directory,
209 with the name of the directory that was just made as an argument.
210 If PRESERVE_EXISTING is non-zero and ARGPATH is an existing directory,
211 then do not attempt to set its permissions and ownership.
213 Return 0 if ARGPATH exists as a directory with the proper
214 ownership and permissions when done, otherwise 1. */
217 make_path (const char *argpath
,
222 int preserve_existing
,
223 const char *verbose_fmt_string
)
228 if (stat (argpath
, &stats
))
231 int tmp_mode
; /* Initial perms for leading dirs. */
232 int re_protect
; /* Should leading dirs be unwritable? */
236 struct ptr_list
*next
;
238 struct ptr_list
*p
, *leading_dirs
= NULL
;
239 int do_chdir
; /* Whether to chdir before each mkdir. */
240 struct saved_cwd cwd
;
244 /* Temporarily relax umask in case it's overly restrictive. */
245 mode_t oldmask
= umask (0);
247 /* Make a copy of ARGPATH that we can scribble NULs on. */
248 dirpath
= (char *) alloca (strlen (argpath
) + 1);
249 strcpy (dirpath
, argpath
);
250 strip_trailing_slashes (dirpath
);
252 /* If leading directories shouldn't be writable or executable,
253 or should have set[ug]id or sticky bits set and we are setting
254 their owners, we need to fix their permissions after making them. */
255 if (((parent_mode
& WX_USR
) != WX_USR
)
256 || ((owner
!= (uid_t
) -1 || group
!= (gid_t
) -1)
257 && (parent_mode
& (S_ISUID
| S_ISGID
| S_ISVTX
)) != 0))
264 tmp_mode
= parent_mode
;
268 /* If we can record the current working directory, we may be able
269 to do the chdir optimization. */
270 do_chdir
= !save_cwd (&cwd
);
272 /* If we've saved the cwd and DIRPATH is an absolute pathname,
273 we must chdir to `/' in order to enable the chdir optimization.
274 So if chdir ("/") fails, turn off the optimization. */
275 if (do_chdir
&& *dirpath
== '/' && chdir ("/") < 0)
280 /* Skip over leading slashes. */
281 while (*slash
== '/')
286 int newly_created_dir
;
289 /* slash points to the leftmost unprocessed component of dirpath. */
290 basename_dir
= slash
;
292 slash
= strchr (slash
, '/');
296 /* If we're *not* doing chdir before each mkdir, then we have to refer
297 to the target using the full (multi-component) directory name. */
299 basename_dir
= dirpath
;
302 fail
= make_dir (basename_dir
, dirpath
, tmp_mode
, &newly_created_dir
);
309 if (newly_created_dir
)
311 if (verbose_fmt_string
)
312 error (0, 0, verbose_fmt_string
, quote (dirpath
));
314 if ((owner
!= (uid_t
) -1 || group
!= (gid_t
) -1)
315 && chown (basename_dir
, owner
, group
)
316 #if defined(AFS) && defined (EPERM)
321 error (0, errno
, _("cannot change owner and/or group of %s"),
329 struct ptr_list
*new = (struct ptr_list
*)
330 alloca (sizeof (struct ptr_list
));
331 new->dirname_end
= slash
;
332 new->next
= leading_dirs
;
337 /* If we were able to save the initial working directory,
338 then we can use chdir to change into each directory before
339 creating an entry in that directory. This avoids making
340 stat and mkdir process O(n^2) file name components. */
341 if (do_chdir
&& chdir (basename_dir
) < 0)
343 error (0, errno
, _("cannot chdir to directory, %s"),
351 /* Avoid unnecessary calls to `stat' when given
352 pathnames containing multiple adjacent slashes. */
353 while (*slash
== '/')
358 basename_dir
= dirpath
;
360 /* We're done making leading directories.
361 Create the final component of the path. */
363 if (make_dir (basename_dir
, dirpath
, mode
, NULL
))
369 /* Done creating directories. Restore original umask. */
372 if (verbose_fmt_string
!= NULL
)
373 error (0, 0, verbose_fmt_string
, quote (dirpath
));
375 if (owner
!= (uid_t
) -1 || group
!= (gid_t
) -1)
377 if (chown (basename_dir
, owner
, group
)
383 error (0, errno
, _("cannot change owner and/or group of %s"),
389 /* The above chown may have turned off some permission bits in MODE.
390 Another reason we may have to use chmod here is that mkdir(2) is
391 required to honor only the file permission bits. In particular,
392 it need not honor the `special' bits, so if MODE includes any
393 special bits, set them here. */
394 if ((mode
& ~S_IRWXUGO
)
395 && chmod (basename_dir
, mode
))
397 error (0, errno
, _("cannot change permissions of %s"), quote (dirpath
));
403 /* If the mode for leading directories didn't include owner "wx"
404 privileges, we have to reset their protections to the correct
406 for (p
= leading_dirs
; p
!= NULL
; p
= p
->next
)
408 *(p
->dirname_end
) = '\0';
409 if (chmod (dirpath
, parent_mode
))
411 error (0, errno
, "cannot change permissions of %s",
419 /* We get here if the entire path already exists. */
421 const char *dirpath
= argpath
;
423 if (!S_ISDIR (stats
.st_mode
))
425 error (0, 0, _("%s exists but is not a directory"), quote (dirpath
));
429 if (!preserve_existing
)
431 /* chown must precede chmod because on some systems,
432 chown clears the set[ug]id bits for non-superusers,
433 resulting in incorrect permissions.
434 On System V, users can give away files with chown and then not
435 be able to chmod them. So don't give files away. */
437 if ((owner
!= (uid_t
) -1 || group
!= (gid_t
) -1)
438 && chown (dirpath
, owner
, group
)
444 error (0, errno
, _("cannot change owner and/or group of %s"),
448 if (chmod (dirpath
, mode
))
450 error (0, errno
, _("cannot change permissions of %s"),