chown: detect Solaris and FreeBSD bug
[gnulib.git] / lib / chown.c
1 /* provide consistent interface to chown for systems that don't interpret
2    an ID of -1 as meaning `don't change the corresponding ID'.
3
4    Copyright (C) 1997, 2004-2007, 2009 Free Software 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 /* Specification.  */
24 #include <unistd.h>
25
26 #include <errno.h>
27 #include <fcntl.h>
28 #include <stdbool.h>
29 #include <string.h>
30 #include <sys/stat.h>
31
32 #if !HAVE_CHOWN
33
34 /* Simple stub that always fails with ENOSYS, for mingw.  */
35 int
36 chown (const char *file _UNUSED_PARAMETER_, uid_t uid _UNUSED_PARAMETER_,
37        gid_t gid _UNUSED_PARAMETER_)
38 {
39   errno = ENOSYS;
40   return -1;
41 }
42
43 #else /* HAVE_CHOWN */
44
45 /* Below we refer to the system's chown().  */
46 # undef chown
47
48 /* The results of open() in this file are not used with fchdir,
49    therefore save some unnecessary work in fchdir.c.  */
50 # undef open
51 # undef close
52
53 /* Provide a more-closely POSIX-conforming version of chown on
54    systems with one or both of the following problems:
55    - chown doesn't treat an ID of -1 as meaning
56    `don't change the corresponding ID'.
57    - chown doesn't dereference symlinks.  */
58
59 int
60 rpl_chown (const char *file, uid_t uid, gid_t gid)
61 {
62 # if CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE
63   if (gid == (gid_t) -1 || uid == (uid_t) -1)
64     {
65       struct stat file_stats;
66
67       /* Stat file to get id(s) that should remain unchanged.  */
68       if (stat (file, &file_stats))
69         return -1;
70
71       if (gid == (gid_t) -1)
72         gid = file_stats.st_gid;
73
74       if (uid == (uid_t) -1)
75         uid = file_stats.st_uid;
76     }
77 # endif
78
79 # if CHOWN_MODIFIES_SYMLINK
80   {
81     /* Handle the case in which the system-supplied chown function
82        does *not* follow symlinks.  Instead, it changes permissions
83        on the symlink itself.  To work around that, we open the
84        file (but this can fail due to lack of read or write permission) and
85        use fchown on the resulting descriptor.  */
86     int open_flags = O_NONBLOCK | O_NOCTTY;
87     int fd = open (file, O_RDONLY | open_flags);
88     if (0 <= fd
89         || (errno == EACCES
90             && 0 <= (fd = open (file, O_WRONLY | open_flags))))
91       {
92         int result = fchown (fd, uid, gid);
93         int saved_errno = errno;
94
95         /* POSIX says fchown can fail with errno == EINVAL on sockets,
96            so fall back on chown in that case.  */
97         struct stat sb;
98         bool fchown_socket_failure =
99           (result != 0 && saved_errno == EINVAL
100            && fstat (fd, &sb) == 0 && S_ISFIFO (sb.st_mode));
101
102         close (fd);
103
104         if (! fchown_socket_failure)
105           {
106             errno = saved_errno;
107             return result;
108           }
109       }
110     else if (errno != EACCES)
111       return -1;
112   }
113 # endif
114
115 # if CHOWN_TRAILING_SLASH_BUG
116   {
117     size_t len = strlen (file);
118     struct stat st;
119     if (len && file[len - 1] == '/' && stat (file, &st))
120       return -1;
121   }
122 # endif
123
124   return chown (file, uid, gid);
125 }
126
127 #endif /* HAVE_CHOWN */