sctp: reset owner sk for data chunks on out queues when migrating a sock
[linux-2.6/btrfs-unstable.git] / fs / ocfs2 / acl.c
blob40b5cc97f7b0f709154402bfdbdbd0cc26004c24
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * acl.c
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
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>
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.
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.
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/string.h>
27 #include <cluster/masklog.h>
29 #include "ocfs2.h"
30 #include "alloc.h"
31 #include "dlmglue.h"
32 #include "file.h"
33 #include "inode.h"
34 #include "journal.h"
35 #include "ocfs2_fs.h"
37 #include "xattr.h"
38 #include "acl.h"
41 * Convert from xattr value to acl struct.
43 static struct posix_acl *ocfs2_acl_from_xattr(const void *value, size_t size)
45 int n, count;
46 struct posix_acl *acl;
48 if (!value)
49 return NULL;
50 if (size < sizeof(struct posix_acl_entry))
51 return ERR_PTR(-EINVAL);
53 count = size / sizeof(struct posix_acl_entry);
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;
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);
64 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;
78 value += sizeof(struct posix_acl_entry);
81 return acl;
85 * Convert acl struct to xattr value.
87 static void *ocfs2_acl_to_xattr(const struct posix_acl *acl, size_t *size)
89 struct ocfs2_acl_entry *entry = NULL;
90 char *ocfs2_acl;
91 size_t n;
93 *size = acl->a_count * sizeof(struct posix_acl_entry);
95 ocfs2_acl = kmalloc(*size, GFP_NOFS);
96 if (!ocfs2_acl)
97 return ERR_PTR(-ENOMEM);
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);
103 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;
119 return ocfs2_acl;
122 static struct posix_acl *ocfs2_get_acl_nolock(struct inode *inode,
123 int type,
124 struct buffer_head *di_bh)
126 int name_index;
127 char *value = NULL;
128 struct posix_acl *acl;
129 int retval;
131 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);
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);
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);
158 kfree(value);
160 return acl;
164 * 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.
168 static int ocfs2_acl_set_mode(struct inode *inode, struct buffer_head *di_bh,
169 handle_t *handle, umode_t new_mode)
171 int ret, commit_handle = 0;
172 struct ocfs2_dinode *di;
174 if (di_bh == NULL) {
175 ret = ocfs2_read_inode_block(inode, &di_bh);
176 if (ret) {
177 mlog_errno(ret);
178 goto out;
180 } else
181 get_bh(di_bh);
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;
192 commit_handle = 1;
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;
203 inode->i_mode = new_mode;
204 inode->i_ctime = current_time(inode);
205 di->i_mode = cpu_to_le16(inode->i_mode);
206 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
207 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
208 ocfs2_update_inode_fsync_trans(handle, inode, 0);
210 ocfs2_journal_dirty(handle, di_bh);
212 out_commit:
213 if (commit_handle)
214 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
215 out_brelse:
216 brelse(di_bh);
217 out:
218 return ret;
222 * Set the access or default ACL of an inode.
224 static int ocfs2_set_acl(handle_t *handle,
225 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)
232 int name_index;
233 void *value = NULL;
234 size_t size = 0;
235 int ret;
237 if (S_ISLNK(inode->i_mode))
238 return -EOPNOTSUPP;
240 switch (type) {
241 case ACL_TYPE_ACCESS:
242 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS;
243 break;
244 case ACL_TYPE_DEFAULT:
245 name_index = OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
246 if (!S_ISDIR(inode->i_mode))
247 return acl ? -EACCES : 0;
248 break;
249 default:
250 return -EINVAL;
253 if (acl) {
254 value = ocfs2_acl_to_xattr(acl, &size);
255 if (IS_ERR(value))
256 return (int)PTR_ERR(value);
259 if (handle)
260 ret = ocfs2_xattr_set_handle(handle, inode, di_bh, name_index,
261 "", value, size, 0,
262 meta_ac, data_ac);
263 else
264 ret = ocfs2_xattr_set(inode, name_index, "", value, size, 0);
266 kfree(value);
268 return ret;
271 int ocfs2_iop_set_acl(struct inode *inode, struct posix_acl *acl, int type)
273 struct buffer_head *bh = NULL;
274 int status, had_lock;
275 struct ocfs2_lock_holder oh;
277 had_lock = ocfs2_inode_lock_tracker(inode, &bh, 1, &oh);
278 if (had_lock < 0)
279 return had_lock;
280 if (type == ACL_TYPE_ACCESS && acl) {
281 umode_t mode;
283 status = posix_acl_update_mode(inode, &mode, &acl);
284 if (status)
285 goto unlock;
287 status = ocfs2_acl_set_mode(inode, bh, NULL, mode);
288 if (status)
289 goto unlock;
291 status = ocfs2_set_acl(NULL, inode, bh, type, acl, NULL, NULL);
292 unlock:
293 ocfs2_inode_unlock_tracker(inode, 1, &oh, had_lock);
294 brelse(bh);
295 return status;
298 struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type)
300 struct ocfs2_super *osb;
301 struct buffer_head *di_bh = NULL;
302 struct posix_acl *acl;
303 int had_lock;
304 struct ocfs2_lock_holder oh;
306 osb = OCFS2_SB(inode->i_sb);
307 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
308 return NULL;
310 had_lock = ocfs2_inode_lock_tracker(inode, &di_bh, 0, &oh);
311 if (had_lock < 0)
312 return ERR_PTR(had_lock);
314 acl = ocfs2_get_acl_nolock(inode, type, di_bh);
316 ocfs2_inode_unlock_tracker(inode, 0, &oh, had_lock);
317 brelse(di_bh);
318 return acl;
321 int ocfs2_acl_chmod(struct inode *inode, struct buffer_head *bh)
323 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
324 struct posix_acl *acl;
325 int ret;
327 if (S_ISLNK(inode->i_mode))
328 return -EOPNOTSUPP;
330 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
331 return 0;
333 acl = ocfs2_get_acl_nolock(inode, ACL_TYPE_ACCESS, bh);
334 if (IS_ERR(acl) || !acl)
335 return PTR_ERR(acl);
336 ret = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
337 if (ret)
338 return ret;
339 ret = ocfs2_set_acl(NULL, inode, NULL, ACL_TYPE_ACCESS,
340 acl, NULL, NULL);
341 posix_acl_release(acl);
342 return ret;
346 * Initialize the ACLs of a new inode. If parent directory has default ACL,
347 * then clone to new inode. Called from ocfs2_mknod.
349 int ocfs2_init_acl(handle_t *handle,
350 struct inode *inode,
351 struct inode *dir,
352 struct buffer_head *di_bh,
353 struct buffer_head *dir_bh,
354 struct ocfs2_alloc_context *meta_ac,
355 struct ocfs2_alloc_context *data_ac)
357 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
358 struct posix_acl *acl = NULL;
359 int ret = 0, ret2;
360 umode_t mode;
362 if (!S_ISLNK(inode->i_mode)) {
363 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
364 acl = ocfs2_get_acl_nolock(dir, ACL_TYPE_DEFAULT,
365 dir_bh);
366 if (IS_ERR(acl))
367 return PTR_ERR(acl);
369 if (!acl) {
370 mode = inode->i_mode & ~current_umask();
371 ret = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
372 if (ret) {
373 mlog_errno(ret);
374 goto cleanup;
378 if ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) && acl) {
379 if (S_ISDIR(inode->i_mode)) {
380 ret = ocfs2_set_acl(handle, inode, di_bh,
381 ACL_TYPE_DEFAULT, acl,
382 meta_ac, data_ac);
383 if (ret)
384 goto cleanup;
386 mode = inode->i_mode;
387 ret = __posix_acl_create(&acl, GFP_NOFS, &mode);
388 if (ret < 0)
389 return ret;
391 ret2 = ocfs2_acl_set_mode(inode, di_bh, handle, mode);
392 if (ret2) {
393 mlog_errno(ret2);
394 ret = ret2;
395 goto cleanup;
397 if (ret > 0) {
398 ret = ocfs2_set_acl(handle, inode,
399 di_bh, ACL_TYPE_ACCESS,
400 acl, meta_ac, data_ac);
403 cleanup:
404 posix_acl_release(acl);
405 return ret;