blob: 6dc714a56c37ab0b855887e1ee680e3e73ffb260 [file] [log] [blame]
Tiger Yang929fb012008-11-14 11:17:04 +08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * acl.c
5 *
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
7 *
8 * CREDITS:
9 * Lots of code in this file is copy from linux/fs/ext3/acl.c.
10 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public
14 * License version 2 as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 */
21
22#include <linux/init.h>
23#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Tiger Yang929fb012008-11-14 11:17:04 +080025#include <linux/string.h>
26
Tiger Yang929fb012008-11-14 11:17:04 +080027#include <cluster/masklog.h>
28
29#include "ocfs2.h"
30#include "alloc.h"
31#include "dlmglue.h"
32#include "file.h"
Mark Fashehfcefd252010-03-15 15:39:00 -070033#include "inode.h"
34#include "journal.h"
Tiger Yang929fb012008-11-14 11:17:04 +080035#include "ocfs2_fs.h"
36
37#include "xattr.h"
38#include "acl.h"
39
40/*
41 * Convert from xattr value to acl struct.
42 */
43static struct posix_acl *ocfs2_acl_from_xattr(const void *value, size_t size)
44{
45 int n, count;
46 struct posix_acl *acl;
47
48 if (!value)
49 return NULL;
50 if (size < sizeof(struct posix_acl_entry))
51 return ERR_PTR(-EINVAL);
52
53 count = size / sizeof(struct posix_acl_entry);
Tiger Yang929fb012008-11-14 11:17:04 +080054
55 acl = posix_acl_alloc(count, GFP_NOFS);
56 if (!acl)
57 return ERR_PTR(-ENOMEM);
58 for (n = 0; n < count; n++) {
59 struct ocfs2_acl_entry *entry =
60 (struct ocfs2_acl_entry *)value;
61
62 acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag);
63 acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
Eric W. Biederman95227512013-01-31 04:49:40 -080064 switch(acl->a_entries[n].e_tag) {
65 case ACL_USER:
66 acl->a_entries[n].e_uid =
67 make_kuid(&init_user_ns,
68 le32_to_cpu(entry->e_id));
69 break;
70 case ACL_GROUP:
71 acl->a_entries[n].e_gid =
72 make_kgid(&init_user_ns,
73 le32_to_cpu(entry->e_id));
74 break;
75 default:
76 break;
77 }
Tiger Yang929fb012008-11-14 11:17:04 +080078 value += sizeof(struct posix_acl_entry);
79
80 }
81 return acl;
82}
83
84/*
85 * Convert acl struct to xattr value.
86 */
87static void *ocfs2_acl_to_xattr(const struct posix_acl *acl, size_t *size)
88{
89 struct ocfs2_acl_entry *entry = NULL;
90 char *ocfs2_acl;
91 size_t n;
92
93 *size = acl->a_count * sizeof(struct posix_acl_entry);
94
95 ocfs2_acl = kmalloc(*size, GFP_NOFS);
96 if (!ocfs2_acl)
97 return ERR_PTR(-ENOMEM);
98
99 entry = (struct ocfs2_acl_entry *)ocfs2_acl;
100 for (n = 0; n < acl->a_count; n++, entry++) {
101 entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag);
102 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
Eric W. Biederman95227512013-01-31 04:49:40 -0800103 switch(acl->a_entries[n].e_tag) {
104 case ACL_USER:
105 entry->e_id = cpu_to_le32(
106 from_kuid(&init_user_ns,
107 acl->a_entries[n].e_uid));
108 break;
109 case ACL_GROUP:
110 entry->e_id = cpu_to_le32(
111 from_kgid(&init_user_ns,
112 acl->a_entries[n].e_gid));
113 break;
114 default:
115 entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID);
116 break;
117 }
Tiger Yang929fb012008-11-14 11:17:04 +0800118 }
119 return ocfs2_acl;
120}
121
122static struct posix_acl *ocfs2_get_acl_nolock(struct inode *inode,
123 int type,
124 struct buffer_head *di_bh)
125{
Tiger Yang929fb012008-11-14 11:17:04 +0800126 int name_index;
127 char *value = NULL;
128 struct posix_acl *acl;
129 int retval;
130
Tiger Yang929fb012008-11-14 11:17:04 +0800131 switch (type) {
132 case ACL_TYPE_ACCESS:
133 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
134 break;
135 case ACL_TYPE_DEFAULT:
136 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
137 break;
138 default:
139 return ERR_PTR(-EINVAL);
140 }
141
142 retval = ocfs2_xattr_get_nolock(inode, di_bh, name_index, "", NULL, 0);
143 if (retval > 0) {
144 value = kmalloc(retval, GFP_NOFS);
145 if (!value)
146 return ERR_PTR(-ENOMEM);
147 retval = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
148 "", value, retval);
149 }
150
151 if (retval > 0)
152 acl = ocfs2_acl_from_xattr(value, retval);
153 else if (retval == -ENODATA || retval == 0)
154 acl = NULL;
155 else
156 acl = ERR_PTR(retval);
157
158 kfree(value);
159
160 return acl;
161}
162
Tiger Yang929fb012008-11-14 11:17:04 +0800163/*
Mark Fashehfcefd252010-03-15 15:39:00 -0700164 * Helper function to set i_mode in memory and disk. Some call paths
165 * will not have di_bh or a journal handle to pass, in which case it
166 * will create it's own.
167 */
168static int ocfs2_acl_set_mode(struct inode *inode, struct buffer_head *di_bh,
169 handle_t *handle, umode_t new_mode)
170{
171 int ret, commit_handle = 0;
172 struct ocfs2_dinode *di;
173
174 if (di_bh == NULL) {
175 ret = ocfs2_read_inode_block(inode, &di_bh);
176 if (ret) {
177 mlog_errno(ret);
178 goto out;
179 }
180 } else
181 get_bh(di_bh);
182
183 if (handle == NULL) {
184 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
185 OCFS2_INODE_UPDATE_CREDITS);
186 if (IS_ERR(handle)) {
187 ret = PTR_ERR(handle);
188 mlog_errno(ret);
189 goto out_brelse;
190 }
191
192 commit_handle = 1;
193 }
194
195 di = (struct ocfs2_dinode *)di_bh->b_data;
196 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
197 OCFS2_JOURNAL_ACCESS_WRITE);
198 if (ret) {
199 mlog_errno(ret);
200 goto out_commit;
201 }
202
203 inode->i_mode = new_mode;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700204 inode->i_ctime = current_time(inode);
Mark Fashehfcefd252010-03-15 15:39:00 -0700205 di->i_mode = cpu_to_le16(inode->i_mode);
Tao Ma12828062010-09-13 14:00:23 +0800206 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
207 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
Darrick J. Wong6fdb7022014-04-03 14:47:08 -0700208 ocfs2_update_inode_fsync_trans(handle, inode, 0);
Mark Fashehfcefd252010-03-15 15:39:00 -0700209
210 ocfs2_journal_dirty(handle, di_bh);
211
212out_commit:
213 if (commit_handle)
214 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
215out_brelse:
216 brelse(di_bh);
217out:
218 return ret;
219}
220
221/*
Tiger Yang929fb012008-11-14 11:17:04 +0800222 * Set the access or default ACL of an inode.
223 */
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800224int ocfs2_set_acl(handle_t *handle,
Tiger Yang929fb012008-11-14 11:17:04 +0800225 struct inode *inode,
226 struct buffer_head *di_bh,
227 int type,
228 struct posix_acl *acl,
229 struct ocfs2_alloc_context *meta_ac,
230 struct ocfs2_alloc_context *data_ac)
231{
232 int name_index;
233 void *value = NULL;
234 size_t size = 0;
235 int ret;
236
237 if (S_ISLNK(inode->i_mode))
238 return -EOPNOTSUPP;
239
240 switch (type) {
241 case ACL_TYPE_ACCESS:
242 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
243 if (acl) {
Jan Kara07393102016-09-19 17:39:09 +0200244 umode_t mode;
Mark Fashehfcefd252010-03-15 15:39:00 -0700245
Jan Kara07393102016-09-19 17:39:09 +0200246 ret = posix_acl_update_mode(inode, &mode, &acl);
247 if (ret)
248 return ret;
Mark Fashehfcefd252010-03-15 15:39:00 -0700249
Fabian Fredericke6e74612015-02-10 14:08:43 -0800250 ret = ocfs2_acl_set_mode(inode, di_bh,
251 handle, mode);
252 if (ret)
253 return ret;
Tiger Yang929fb012008-11-14 11:17:04 +0800254 }
255 break;
256 case ACL_TYPE_DEFAULT:
257 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
258 if (!S_ISDIR(inode->i_mode))
259 return acl ? -EACCES : 0;
260 break;
261 default:
262 return -EINVAL;
263 }
264
265 if (acl) {
266 value = ocfs2_acl_to_xattr(acl, &size);
267 if (IS_ERR(value))
268 return (int)PTR_ERR(value);
269 }
270
271 if (handle)
272 ret = ocfs2_xattr_set_handle(handle, inode, di_bh, name_index,
273 "", value, size, 0,
274 meta_ac, data_ac);
275 else
276 ret = ocfs2_xattr_set(inode, name_index, "", value, size, 0);
277
278 kfree(value);
279
280 return ret;
281}
282
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800283int ocfs2_iop_set_acl(struct inode *inode, struct posix_acl *acl, int type)
284{
Tariq Saeed743b5f12015-09-04 15:44:34 -0700285 struct buffer_head *bh = NULL;
286 int status = 0;
287
288 status = ocfs2_inode_lock(inode, &bh, 1);
289 if (status < 0) {
290 if (status != -ENOENT)
291 mlog_errno(status);
292 return status;
293 }
294 status = ocfs2_set_acl(NULL, inode, bh, type, acl, NULL, NULL);
295 ocfs2_inode_unlock(inode, 1);
296 brelse(bh);
297 return status;
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800298}
299
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200300struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type)
Tiger Yang23fc2702008-11-14 11:17:18 +0800301{
Nick Pigginb74c79e2011-01-07 17:49:58 +1100302 struct ocfs2_super *osb;
Jiaju Zhang845b6cf2010-07-28 13:21:06 +0800303 struct buffer_head *di_bh = NULL;
304 struct posix_acl *acl;
Tariq Saeed743b5f12015-09-04 15:44:34 -0700305 int ret;
Tiger Yang23fc2702008-11-14 11:17:18 +0800306
Nick Pigginb74c79e2011-01-07 17:49:58 +1100307 osb = OCFS2_SB(inode->i_sb);
Jiaju Zhang845b6cf2010-07-28 13:21:06 +0800308 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200309 return NULL;
Tariq Saeed743b5f12015-09-04 15:44:34 -0700310 ret = ocfs2_inode_lock(inode, &di_bh, 0);
311 if (ret < 0) {
312 if (ret != -ENOENT)
313 mlog_errno(ret);
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200314 return ERR_PTR(ret);
Tariq Saeed743b5f12015-09-04 15:44:34 -0700315 }
Jiaju Zhang845b6cf2010-07-28 13:21:06 +0800316
piaojun1d5fdc12018-01-31 16:14:59 -0800317 down_read(&OCFS2_I(inode)->ip_xattr_sem);
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200318 acl = ocfs2_get_acl_nolock(inode, type, di_bh);
piaojun1d5fdc12018-01-31 16:14:59 -0800319 up_read(&OCFS2_I(inode)->ip_xattr_sem);
Jiaju Zhang845b6cf2010-07-28 13:21:06 +0800320
Tariq Saeed743b5f12015-09-04 15:44:34 -0700321 ocfs2_inode_unlock(inode, 0);
Jiaju Zhang845b6cf2010-07-28 13:21:06 +0800322 brelse(di_bh);
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200323 return acl;
Tiger Yang23fc2702008-11-14 11:17:18 +0800324}
Junxiao Bi5ee0fbd2016-05-12 15:42:15 -0700325
326int ocfs2_acl_chmod(struct inode *inode, struct buffer_head *bh)
327{
328 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
329 struct posix_acl *acl;
330 int ret;
331
332 if (S_ISLNK(inode->i_mode))
333 return -EOPNOTSUPP;
334
335 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
336 return 0;
337
piaojun1d5fdc12018-01-31 16:14:59 -0800338 down_read(&OCFS2_I(inode)->ip_xattr_sem);
Junxiao Bi5ee0fbd2016-05-12 15:42:15 -0700339 acl = ocfs2_get_acl_nolock(inode, ACL_TYPE_ACCESS, bh);
piaojun1d5fdc12018-01-31 16:14:59 -0800340 up_read(&OCFS2_I(inode)->ip_xattr_sem);
Ding Xiang8da06d32019-11-30 17:49:12 -0800341 if (IS_ERR_OR_NULL(acl))
342 return PTR_ERR_OR_ZERO(acl);
Junxiao Bi5ee0fbd2016-05-12 15:42:15 -0700343 ret = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
344 if (ret)
345 return ret;
346 ret = ocfs2_set_acl(NULL, inode, NULL, ACL_TYPE_ACCESS,
347 acl, NULL, NULL);
348 posix_acl_release(acl);
349 return ret;
350}
Junxiao Bic25a1e02016-05-12 15:42:18 -0700351
352/*
353 * Initialize the ACLs of a new inode. If parent directory has default ACL,
354 * then clone to new inode. Called from ocfs2_mknod.
355 */
356int ocfs2_init_acl(handle_t *handle,
357 struct inode *inode,
358 struct inode *dir,
359 struct buffer_head *di_bh,
360 struct buffer_head *dir_bh,
361 struct ocfs2_alloc_context *meta_ac,
362 struct ocfs2_alloc_context *data_ac)
363{
364 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
365 struct posix_acl *acl = NULL;
366 int ret = 0, ret2;
367 umode_t mode;
368
369 if (!S_ISLNK(inode->i_mode)) {
370 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
piaojun1d5fdc12018-01-31 16:14:59 -0800371 down_read(&OCFS2_I(dir)->ip_xattr_sem);
Junxiao Bic25a1e02016-05-12 15:42:18 -0700372 acl = ocfs2_get_acl_nolock(dir, ACL_TYPE_DEFAULT,
373 dir_bh);
piaojun1d5fdc12018-01-31 16:14:59 -0800374 up_read(&OCFS2_I(dir)->ip_xattr_sem);
Junxiao Bic25a1e02016-05-12 15:42:18 -0700375 if (IS_ERR(acl))
376 return PTR_ERR(acl);
377 }
378 if (!acl) {
379 mode = inode->i_mode & ~current_umask();
380 ret = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
381 if (ret) {
382 mlog_errno(ret);
383 goto cleanup;
384 }
385 }
386 }
387 if ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) && acl) {
388 if (S_ISDIR(inode->i_mode)) {
389 ret = ocfs2_set_acl(handle, inode, di_bh,
390 ACL_TYPE_DEFAULT, acl,
391 meta_ac, data_ac);
392 if (ret)
393 goto cleanup;
394 }
395 mode = inode->i_mode;
396 ret = __posix_acl_create(&acl, GFP_NOFS, &mode);
397 if (ret < 0)
398 return ret;
399
400 ret2 = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
401 if (ret2) {
402 mlog_errno(ret2);
403 ret = ret2;
404 goto cleanup;
405 }
406 if (ret > 0) {
407 ret = ocfs2_set_acl(handle, inode,
408 di_bh, ACL_TYPE_ACCESS,
409 acl, meta_ac, data_ac);
410 }
411 }
412cleanup:
413 posix_acl_release(acl);
414 return ret;
415}