]> git.cworth.org Git - tar/blob - lib/unlinkdir.c
Imported Upstream version 1.20
[tar] / lib / unlinkdir.c
1 /* unlinkdir.c - determine (and maybe change) whether we can unlink directories
2
3    Copyright (C) 2005, 2006 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Paul Eggert and Jim Meyering.  */
19
20 #include <config.h>
21
22 #include "unlinkdir.h"
23
24 #if HAVE_PRIV_H
25 # include <priv.h>
26 #endif
27 #include <unistd.h>
28
29 #if ! UNLINK_CANNOT_UNLINK_DIR
30
31 /* Return true if we cannot unlink directories, false if we might be
32    able to unlink directories.  If possible, tell the kernel we don't
33    want to be able to unlink directories, so that we can return true.  */
34
35 bool
36 cannot_unlink_dir (void)
37 {
38   static bool initialized;
39   static bool cannot;
40
41   if (! initialized)
42     {
43 # if defined PRIV_EFFECTIVE && defined PRIV_SYS_LINKDIR
44       /* We might be able to unlink directories if we cannot
45          determine our privileges, or if we have the
46          PRIV_SYS_LINKDIR privilege and cannot delete it.  */
47       priv_set_t *pset = priv_allocset ();
48       if (pset)
49         {
50           cannot =
51             (getppriv (PRIV_EFFECTIVE, pset) == 0
52              && (! priv_ismember (pset, PRIV_SYS_LINKDIR)
53                  || (priv_delset (pset, PRIV_SYS_LINKDIR) == 0
54                      && setppriv (PRIV_SET, PRIV_EFFECTIVE, pset) == 0)));
55           priv_freeset (pset);
56         }
57 # else
58       /* In traditional Unix, only root can unlink directories.  */
59       cannot = (geteuid () != 0);
60 # endif
61       initialized = true;
62     }
63
64   return cannot;
65 }
66
67 #endif