]> git.cworth.org Git - tar/blob - gnu/unlinkat.c
upstream: Fix extraction of device nodes.
[tar] / gnu / unlinkat.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Work around unlinkat bugs on Solaris 9.
4
5    Copyright (C) 2009-2010 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* Written by Eric Blake.  */
21
22 #include <config.h>
23
24 #include <unistd.h>
25
26 #include <errno.h>
27 #include <fcntl.h>
28 #include <string.h>
29 #include <sys/stat.h>
30
31 #include "openat.h"
32
33 #if HAVE_UNLINKAT
34
35 # undef unlinkat
36
37 /* unlinkat without AT_REMOVEDIR does not honor trailing / on Solaris
38    9.  Solve it in a similar manner to unlink.  */
39
40 int
41 rpl_unlinkat (int fd, char const *name, int flag)
42 {
43   size_t len;
44   int result = 0;
45   /* rmdir behavior has no problems with trailing slash.  */
46   if (flag & AT_REMOVEDIR)
47     return unlinkat (fd, name, flag);
48
49   len = strlen (name);
50   if (len && ISSLASH (name[len - 1]))
51     {
52       /* See the lengthy comment in unlink.c why we disobey the POSIX
53          rule of letting unlink("link-to-dir/") attempt to unlink a
54          directory.  */
55       struct stat st;
56       result = lstatat (fd, name, &st);
57       if (result == 0)
58         {
59           /* Trailing NUL will overwrite the trailing slash.  */
60           char *short_name = malloc (len);
61           if (!short_name)
62             {
63               errno = EPERM;
64               return -1;
65             }
66           memcpy (short_name, name, len);
67           while (len && ISSLASH (short_name[len - 1]))
68             short_name[--len] = '\0';
69           if (len && (lstatat (fd, short_name, &st) || S_ISLNK (st.st_mode)))
70             {
71               free (short_name);
72               errno = EPERM;
73               return -1;
74             }
75           free (short_name);
76         }
77     }
78   if (!result)
79     result = unlinkat (fd, name, flag);
80   return result;
81 }
82
83 #else /* !HAVE_UNLINKAT */
84
85 /* Replacement for Solaris' function by the same name.
86    <http://www.google.com/search?q=unlinkat+site:docs.sun.com>
87    First, try to simulate it via (unlink|rmdir) ("/proc/self/fd/FD/FILE").
88    Failing that, simulate it via save_cwd/fchdir/(unlink|rmdir)/restore_cwd.
89    If either the save_cwd or the restore_cwd fails (relatively unlikely),
90    then give a diagnostic and exit nonzero.
91    Otherwise, this function works just like Solaris' unlinkat.  */
92
93 # define AT_FUNC_NAME unlinkat
94 # define AT_FUNC_F1 rmdir
95 # define AT_FUNC_F2 unlink
96 # define AT_FUNC_USE_F1_COND AT_REMOVEDIR
97 # define AT_FUNC_POST_FILE_PARAM_DECLS , int flag
98 # define AT_FUNC_POST_FILE_ARGS        /* empty */
99 # include "at-func.c"
100 # undef AT_FUNC_NAME
101 # undef AT_FUNC_F1
102 # undef AT_FUNC_F2
103 # undef AT_FUNC_USE_F1_COND
104 # undef AT_FUNC_POST_FILE_PARAM_DECLS
105 # undef AT_FUNC_POST_FILE_ARGS
106
107 #endif /* !HAVE_UNLINKAT */