exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / unlinkdir.c
blobbb71cb88b2a3d7b2e5270afaf708cd381d2ecbaf
1 /* unlinkdir.c - determine whether we can unlink directories
3 Copyright (C) 2005-2006, 2009-2024 Free Software Foundation, Inc.
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.
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.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Paul Eggert, Jim Meyering, and David Bartley. */
20 #include <config.h>
22 #include "unlinkdir.h"
23 #include "priv-set.h"
24 #include "root-uid.h"
25 #include <unistd.h>
27 #if ! UNLINK_CANNOT_UNLINK_DIR
29 /* Return true if we cannot unlink directories, false if we might be
30 able to unlink directories. */
32 bool
33 cannot_unlink_dir (void)
35 static bool initialized;
36 static bool cannot;
38 if (! initialized)
40 # if defined PRIV_SYS_LINKDIR
41 /* We might be able to unlink directories if we cannot
42 determine our privileges, or if we have the
43 PRIV_SYS_LINKDIR privilege. */
44 cannot = (priv_set_ismember (PRIV_SYS_LINKDIR) == 0);
45 # else
46 /* In traditional Unix, only root can unlink directories. */
47 cannot = (geteuid () != ROOT_UID);
48 # endif
49 initialized = true;
52 return cannot;
55 #endif