]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/libarchive/archive_write_disk_acl.c
MFC r304075,r304989:
[FreeBSD/stable/10.git] / contrib / libarchive / libarchive / archive_write_disk_acl.c
1 /*-
2  * Copyright (c) 2003-2010 Tim Kientzle
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer
10  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "archive_platform.h"
28 __FBSDID("$FreeBSD: head/lib/libarchive/archive_write_disk.c 201159 2009-12-29 05:35:40Z kientzle $");
29
30 #ifdef HAVE_SYS_TYPES_H
31 #include <sys/types.h>
32 #endif
33 #ifdef HAVE_SYS_ACL_H
34 #define _ACL_PRIVATE /* For debugging */
35 #include <sys/acl.h>
36 #endif
37 #ifdef HAVE_ERRNO_H
38 #include <errno.h>
39 #endif
40
41 #include "archive.h"
42 #include "archive_entry.h"
43 #include "archive_acl_private.h"
44 #include "archive_write_disk_private.h"
45
46 #ifndef HAVE_POSIX_ACL
47 /* Default empty function body to satisfy mainline code. */
48 int
49 archive_write_disk_set_acls(struct archive *a, int fd, const char *name,
50          struct archive_acl *abstract_acl)
51 {
52         (void)a; /* UNUSED */
53         (void)fd; /* UNUSED */
54         (void)name; /* UNUSED */
55         (void)abstract_acl; /* UNUSED */
56         return (ARCHIVE_OK);
57 }
58
59 #else
60
61 static int      set_acl(struct archive *, int fd, const char *,
62                         struct archive_acl *,
63                         acl_type_t, int archive_entry_acl_type, const char *tn);
64
65 /*
66  * XXX TODO: What about ACL types other than ACCESS and DEFAULT?
67  */
68 int
69 archive_write_disk_set_acls(struct archive *a, int fd, const char *name,
70          struct archive_acl *abstract_acl)
71 {
72         int              ret;
73
74         if (archive_acl_count(abstract_acl, ARCHIVE_ENTRY_ACL_TYPE_POSIX1E) > 0) {
75                 ret = set_acl(a, fd, name, abstract_acl, ACL_TYPE_ACCESS,
76                     ARCHIVE_ENTRY_ACL_TYPE_ACCESS, "access");
77                 if (ret != ARCHIVE_OK)
78                         return (ret);
79                 ret = set_acl(a, fd, name, abstract_acl, ACL_TYPE_DEFAULT,
80                     ARCHIVE_ENTRY_ACL_TYPE_DEFAULT, "default");
81                 return (ret);
82 #ifdef ACL_TYPE_NFS4
83         } else if (archive_acl_count(abstract_acl, ARCHIVE_ENTRY_ACL_TYPE_NFS4) > 0) {
84                 ret = set_acl(a, fd, name, abstract_acl, ACL_TYPE_NFS4,
85                     ARCHIVE_ENTRY_ACL_TYPE_NFS4, "nfs4");
86                 return (ret);
87 #endif
88         } else
89                 return ARCHIVE_OK;
90 }
91
92 static struct {
93         int archive_perm;
94         int platform_perm;
95 } acl_perm_map[] = {
96         {ARCHIVE_ENTRY_ACL_EXECUTE, ACL_EXECUTE},
97         {ARCHIVE_ENTRY_ACL_WRITE, ACL_WRITE},
98         {ARCHIVE_ENTRY_ACL_READ, ACL_READ},
99 #ifdef ACL_TYPE_NFS4
100         {ARCHIVE_ENTRY_ACL_READ_DATA, ACL_READ_DATA},
101         {ARCHIVE_ENTRY_ACL_LIST_DIRECTORY, ACL_LIST_DIRECTORY},
102         {ARCHIVE_ENTRY_ACL_WRITE_DATA, ACL_WRITE_DATA},
103         {ARCHIVE_ENTRY_ACL_ADD_FILE, ACL_ADD_FILE},
104         {ARCHIVE_ENTRY_ACL_APPEND_DATA, ACL_APPEND_DATA},
105         {ARCHIVE_ENTRY_ACL_ADD_SUBDIRECTORY, ACL_ADD_SUBDIRECTORY},
106         {ARCHIVE_ENTRY_ACL_READ_NAMED_ATTRS, ACL_READ_NAMED_ATTRS},
107         {ARCHIVE_ENTRY_ACL_WRITE_NAMED_ATTRS, ACL_WRITE_NAMED_ATTRS},
108         {ARCHIVE_ENTRY_ACL_DELETE_CHILD, ACL_DELETE_CHILD},
109         {ARCHIVE_ENTRY_ACL_READ_ATTRIBUTES, ACL_READ_ATTRIBUTES},
110         {ARCHIVE_ENTRY_ACL_WRITE_ATTRIBUTES, ACL_WRITE_ATTRIBUTES},
111         {ARCHIVE_ENTRY_ACL_DELETE, ACL_DELETE},
112         {ARCHIVE_ENTRY_ACL_READ_ACL, ACL_READ_ACL},
113         {ARCHIVE_ENTRY_ACL_WRITE_ACL, ACL_WRITE_ACL},
114         {ARCHIVE_ENTRY_ACL_WRITE_OWNER, ACL_WRITE_OWNER},
115         {ARCHIVE_ENTRY_ACL_SYNCHRONIZE, ACL_SYNCHRONIZE}
116 #endif
117 };
118
119 #ifdef ACL_TYPE_NFS4
120 static struct {
121         int archive_inherit;
122         int platform_inherit;
123 } acl_inherit_map[] = {
124         {ARCHIVE_ENTRY_ACL_ENTRY_FILE_INHERIT, ACL_ENTRY_FILE_INHERIT},
125         {ARCHIVE_ENTRY_ACL_ENTRY_DIRECTORY_INHERIT, ACL_ENTRY_DIRECTORY_INHERIT},
126         {ARCHIVE_ENTRY_ACL_ENTRY_NO_PROPAGATE_INHERIT, ACL_ENTRY_NO_PROPAGATE_INHERIT},
127         {ARCHIVE_ENTRY_ACL_ENTRY_INHERIT_ONLY, ACL_ENTRY_INHERIT_ONLY}
128 };
129 #endif
130
131 static int
132 set_acl(struct archive *a, int fd, const char *name,
133     struct archive_acl *abstract_acl,
134     acl_type_t acl_type, int ae_requested_type, const char *tname)
135 {
136         acl_t            acl;
137         acl_entry_t      acl_entry;
138         acl_permset_t    acl_permset;
139 #ifdef ACL_TYPE_NFS4
140         acl_flagset_t    acl_flagset;
141         int              r;
142 #endif
143         int              ret;
144         int              ae_type, ae_permset, ae_tag, ae_id;
145         uid_t            ae_uid;
146         gid_t            ae_gid;
147         const char      *ae_name;
148         int              entries;
149         int              i;
150
151         ret = ARCHIVE_OK;
152         entries = archive_acl_reset(abstract_acl, ae_requested_type);
153         if (entries == 0)
154                 return (ARCHIVE_OK);
155         acl = acl_init(entries);
156         while (archive_acl_next(a, abstract_acl, ae_requested_type, &ae_type,
157                    &ae_permset, &ae_tag, &ae_id, &ae_name) == ARCHIVE_OK) {
158                 acl_create_entry(&acl, &acl_entry);
159
160                 switch (ae_tag) {
161                 case ARCHIVE_ENTRY_ACL_USER:
162                         acl_set_tag_type(acl_entry, ACL_USER);
163                         ae_uid = archive_write_disk_uid(a, ae_name, ae_id);
164                         acl_set_qualifier(acl_entry, &ae_uid);
165                         break;
166                 case ARCHIVE_ENTRY_ACL_GROUP:
167                         acl_set_tag_type(acl_entry, ACL_GROUP);
168                         ae_gid = archive_write_disk_gid(a, ae_name, ae_id);
169                         acl_set_qualifier(acl_entry, &ae_gid);
170                         break;
171                 case ARCHIVE_ENTRY_ACL_USER_OBJ:
172                         acl_set_tag_type(acl_entry, ACL_USER_OBJ);
173                         break;
174                 case ARCHIVE_ENTRY_ACL_GROUP_OBJ:
175                         acl_set_tag_type(acl_entry, ACL_GROUP_OBJ);
176                         break;
177                 case ARCHIVE_ENTRY_ACL_MASK:
178                         acl_set_tag_type(acl_entry, ACL_MASK);
179                         break;
180                 case ARCHIVE_ENTRY_ACL_OTHER:
181                         acl_set_tag_type(acl_entry, ACL_OTHER);
182                         break;
183 #ifdef ACL_TYPE_NFS4
184                 case ARCHIVE_ENTRY_ACL_EVERYONE:
185                         acl_set_tag_type(acl_entry, ACL_EVERYONE);
186                         break;
187 #endif
188                 default:
189                         /* XXX */
190                         break;
191                 }
192
193 #ifdef ACL_TYPE_NFS4
194                 switch (ae_type) {
195                 case ARCHIVE_ENTRY_ACL_TYPE_ALLOW:
196                         acl_set_entry_type_np(acl_entry, ACL_ENTRY_TYPE_ALLOW);
197                         break;
198                 case ARCHIVE_ENTRY_ACL_TYPE_DENY:
199                         acl_set_entry_type_np(acl_entry, ACL_ENTRY_TYPE_DENY);
200                         break;
201                 case ARCHIVE_ENTRY_ACL_TYPE_AUDIT:
202                         acl_set_entry_type_np(acl_entry, ACL_ENTRY_TYPE_AUDIT);
203                         break;
204                 case ARCHIVE_ENTRY_ACL_TYPE_ALARM:
205                         acl_set_entry_type_np(acl_entry, ACL_ENTRY_TYPE_ALARM);
206                         break;
207                 case ARCHIVE_ENTRY_ACL_TYPE_ACCESS:
208                 case ARCHIVE_ENTRY_ACL_TYPE_DEFAULT:
209                         // These don't translate directly into the system ACL.
210                         break;
211                 default:
212                         // XXX error handling here.
213                         break;
214                 }
215 #endif
216
217                 acl_get_permset(acl_entry, &acl_permset);
218                 acl_clear_perms(acl_permset);
219
220                 for (i = 0; i < (int)(sizeof(acl_perm_map) / sizeof(acl_perm_map[0])); ++i) {
221                         if (ae_permset & acl_perm_map[i].archive_perm)
222                                 acl_add_perm(acl_permset,
223                                              acl_perm_map[i].platform_perm);
224                 }
225
226 #ifdef ACL_TYPE_NFS4
227                 // XXX acl_get_flagset_np on FreeBSD returns EINVAL for
228                 // non-NFSv4 ACLs
229                 r = acl_get_flagset_np(acl_entry, &acl_flagset);
230                 if (r == 0) {
231                         acl_clear_flags_np(acl_flagset);
232                         for (i = 0; i < (int)(sizeof(acl_inherit_map) / sizeof(acl_inherit_map[0])); ++i) {
233                                 if (ae_permset & acl_inherit_map[i].archive_inherit)
234                                         acl_add_flag_np(acl_flagset,
235                                                         acl_inherit_map[i].platform_inherit);
236                         }
237                 }
238 #endif
239         }
240
241         /* Try restoring the ACL through 'fd' if we can. */
242 #if HAVE_ACL_SET_FD
243         if (fd >= 0 && acl_type == ACL_TYPE_ACCESS && acl_set_fd(fd, acl) == 0)
244                 ret = ARCHIVE_OK;
245         else
246 #else
247 #if HAVE_ACL_SET_FD_NP
248         if (fd >= 0 && acl_set_fd_np(fd, acl, acl_type) == 0)
249                 ret = ARCHIVE_OK;
250         else
251 #endif
252 #endif
253 #if HAVE_ACL_SET_LINK_NP
254           if (acl_set_link_np(name, acl_type, acl) != 0) {
255                 archive_set_error(a, errno, "Failed to set %s acl", tname);
256                 ret = ARCHIVE_WARN;
257           }
258 #else
259         /* TODO: Skip this if 'name' is a symlink. */
260         if (acl_set_file(name, acl_type, acl) != 0) {
261                 archive_set_error(a, errno, "Failed to set %s acl", tname);
262                 ret = ARCHIVE_WARN;
263         }
264 #endif
265         acl_free(acl);
266         return (ret);
267 }
268 #endif