7394d50acce33b67a4b6351552d79ba7c799370e
[debian/gzip] / lib / save-cwd.c
1 /* save-cwd.c -- Save and restore current working directory.
2
3    Copyright (C) 1995, 1997-1998, 2003-2006, 2009-2010 Free Software
4    Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* Written by Jim Meyering.  */
20
21 #include <config.h>
22
23 #include "save-cwd.h"
24
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <stdbool.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30
31 #include "chdir-long.h"
32 #include "unistd--.h"
33 #include "xgetcwd.h"
34
35 #if GNULIB_FCNTL_SAFER
36 # include "fcntl--.h"
37 #else
38 # define GNULIB_FCNTL_SAFER 0
39 #endif
40
41 /* On systems without the fchdir function (WOE), pretend that open
42    always returns -1 so that save_cwd resorts to using xgetcwd.
43    Since chdir_long requires fchdir, use chdir instead.  */
44 #if !HAVE_FCHDIR
45 # undef open
46 # define open(File, Flags) (-1)
47 # undef fchdir
48 # define fchdir(Fd) (abort (), -1)
49 # undef chdir_long
50 # define chdir_long(Dir) chdir (Dir)
51 #endif
52
53 /* Record the location of the current working directory in CWD so that
54    the program may change to other directories and later use restore_cwd
55    to return to the recorded location.  This function may allocate
56    space using malloc (via xgetcwd) or leave a file descriptor open;
57    use free_cwd to perform the necessary free or close.  Upon failure,
58    no memory is allocated, any locally opened file descriptors are
59    closed;  return non-zero -- in that case, free_cwd need not be
60    called, but doing so is ok.  Otherwise, return zero.
61
62    The `raison d'etre' for this interface is that the working directory
63    is sometimes inaccessible, and getcwd is not robust or as efficient.
64    So, we prefer to use the open/fchdir approach, but fall back on
65    getcwd if necessary.
66
67    Some systems lack fchdir altogether: e.g., OS/2, pre-2001 Cygwin,
68    SCO Xenix.  Also, SunOS 4 and Irix 5.3 provide the function, yet it
69    doesn't work for partitions on which auditing is enabled.  If
70    you're still using an obsolete system with these problems, please
71    send email to the maintainer of this code.  */
72
73 int
74 save_cwd (struct saved_cwd *cwd)
75 {
76   cwd->name = NULL;
77
78   cwd->desc = open (".", O_RDONLY);
79   if (!GNULIB_FCNTL_SAFER)
80     cwd->desc = fd_safer (cwd->desc);
81   if (cwd->desc < 0)
82     {
83       cwd->name = xgetcwd ();
84       return cwd->name ? 0 : -1;
85     }
86
87   return 0;
88 }
89
90 /* Change to recorded location, CWD, in directory hierarchy.
91    Upon failure, return -1 (errno is set by chdir or fchdir).
92    Upon success, return zero.  */
93
94 int
95 restore_cwd (const struct saved_cwd *cwd)
96 {
97   if (0 <= cwd->desc)
98     return fchdir (cwd->desc);
99   else
100     return chdir_long (cwd->name);
101 }
102
103 void
104 free_cwd (struct saved_cwd *cwd)
105 {
106   if (cwd->desc >= 0)
107     close (cwd->desc);
108   free (cwd->name);
109 }