exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / set-acl.c
blobdd3b596805c74278817f638797498af9f78c505d
1 /* set-acl.c - set access control list equivalent to a mode
3 Copyright (C) 2002-2003, 2005-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 and Andreas Gruenbacher, and Bruno Haible. */
20 #include <config.h>
22 #include "acl.h"
24 #include <errno.h>
26 #include "quote.h"
27 #include <error.h>
28 #include "gettext.h"
29 #define _(msgid) gettext (msgid)
31 /* Set the access control lists of a file to match *exactly* MODE (this might
32 remove inherited ACLs). Note chmod() tends to honor inherited/default
33 ACLs. If DESC is a valid file descriptor, use file descriptor operations
34 where available, else use filename based operations on NAME. If access
35 control lists are not available, fchmod the target file to MODE. Also
36 sets the non-permission bits of the destination file
37 (S_ISUID, S_ISGID, S_ISVTX) to those from MODE if any are set.
38 Return 0 if successful. On failure, output a diagnostic, set errno and
39 return -1. */
41 int
42 set_acl (char const *name, int desc, mode_t mode)
44 int ret = qset_acl (name, desc, mode);
45 if (ret != 0)
46 error (0, errno, _("setting permissions for %s"), quote (name));
47 return ret;