blob: 132d901da08f94f3b91c15ed34a6969b66269b18 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/reiserfs/xattr.c
3 *
4 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
5 *
6 */
7
8/*
9 * In order to implement EA/ACLs in a clean, backwards compatible manner,
10 * they are implemented as files in a "private" directory.
11 * Each EA is in it's own file, with the directory layout like so (/ is assumed
12 * to be relative to fs root). Inside the /.reiserfs_priv/xattrs directory,
13 * directories named using the capital-hex form of the objectid and
14 * generation number are used. Inside each directory are individual files
15 * named with the name of the extended attribute.
16 *
17 * So, for objectid 12648430, we could have:
18 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_access
19 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_default
20 * /.reiserfs_priv/xattrs/C0FFEE.0/user.Content-Type
21 * .. or similar.
22 *
23 * The file contents are the text of the EA. The size is known based on the
24 * stat data describing the file.
25 *
26 * In the case of system.posix_acl_access and system.posix_acl_default, since
27 * these are special cases for filesystem ACLs, they are interpreted by the
28 * kernel, in addition, they are negatively and positively cached and attached
29 * to the inode so that unnecessary lookups are avoided.
30 */
31
32#include <linux/reiserfs_fs.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080033#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/dcache.h>
35#include <linux/namei.h>
36#include <linux/errno.h>
37#include <linux/fs.h>
38#include <linux/file.h>
39#include <linux/pagemap.h>
40#include <linux/xattr.h>
41#include <linux/reiserfs_xattr.h>
42#include <linux/reiserfs_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
Al Viro3277c392006-11-14 21:13:53 -080044#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/smp_lock.h>
46#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define FL_READONLY 128
49#define FL_DIR_SEM_HELD 256
50#define PRIVROOT_NAME ".reiserfs_priv"
51#define XAROOT_NAME "xattrs"
52
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070053static struct reiserfs_xattr_handler *find_xattr_handler_prefix(const char
54 *prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070056/* Returns the dentry referring to the root of the extended attribute
57 * directory tree. If it has already been retrieved, it is used. If it
58 * hasn't been created and the flags indicate creation is allowed, we
59 * attempt to create it. On error, we return a pointer-encoded error.
60 */
61static struct dentry *get_xa_root(struct super_block *sb, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070063 struct dentry *privroot = dget(REISERFS_SB(sb)->priv_root);
64 struct dentry *xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070066 /* This needs to be created at mount-time */
67 if (!privroot)
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070068 return ERR_PTR(-ENODATA);
69
Jeff Mahoney1173a722007-04-30 15:09:50 -070070 mutex_lock_nested(&privroot->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070071 if (REISERFS_SB(sb)->xattr_root) {
72 xaroot = dget(REISERFS_SB(sb)->xattr_root);
73 goto out;
74 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070076 xaroot = lookup_one_len(XAROOT_NAME, privroot, strlen(XAROOT_NAME));
77 if (IS_ERR(xaroot)) {
78 goto out;
79 } else if (!xaroot->d_inode) {
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070080 int err = -ENODATA;
81 if (flags == 0 || flags & XATTR_CREATE)
82 err = privroot->d_inode->i_op->mkdir(privroot->d_inode,
83 xaroot, 0700);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070084 if (err) {
85 dput(xaroot);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070086 xaroot = ERR_PTR(err);
87 goto out;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070088 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070089 }
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070090 REISERFS_SB(sb)->xattr_root = dget(xaroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070092 out:
Jeff Mahoney9b7f3752007-04-23 14:41:17 -070093 mutex_unlock(&privroot->d_inode->i_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070094 dput(privroot);
95 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* Opens the directory corresponding to the inode's extended attribute store.
99 * If flags allow, the tree to the directory may be created. If creation is
100 * prohibited, -ENODATA is returned. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700101static struct dentry *open_xa_dir(const struct inode *inode, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700103 struct dentry *xaroot, *xadir;
104 char namebuf[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700106 xaroot = get_xa_root(inode->i_sb, flags);
107 if (IS_ERR(xaroot))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700108 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700110 /* ok, we have xaroot open */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700111 snprintf(namebuf, sizeof(namebuf), "%X.%X",
112 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
113 inode->i_generation);
114 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
115 if (IS_ERR(xadir)) {
116 dput(xaroot);
117 return xadir;
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700120 if (!xadir->d_inode) {
121 int err;
122 if (flags == 0 || flags & XATTR_CREATE) {
123 /* Although there is nothing else trying to create this directory,
124 * another directory with the same hash may be created, so we need
125 * to protect against that */
126 err =
127 xaroot->d_inode->i_op->mkdir(xaroot->d_inode, xadir,
128 0700);
129 if (err) {
130 dput(xaroot);
131 dput(xadir);
132 return ERR_PTR(err);
133 }
134 }
135 if (!xadir->d_inode) {
136 dput(xaroot);
137 dput(xadir);
138 return ERR_PTR(-ENODATA);
139 }
140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700142 dput(xaroot);
143 return xadir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/* Returns a dentry corresponding to a specific extended attribute file
147 * for the inode. If flags allow, the file is created. Otherwise, a
148 * valid or negative dentry, or an error is returned. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700149static struct dentry *get_xa_file_dentry(const struct inode *inode,
150 const char *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700152 struct dentry *xadir, *xafile;
153 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 xadir = open_xa_dir(inode, flags);
156 if (IS_ERR(xadir)) {
David Howellse231c2e2008-02-07 00:15:26 -0800157 return ERR_CAST(xadir);
Julien Brunel67b172c2008-10-15 22:04:12 -0700158 } else if (!xadir->d_inode) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700159 dput(xadir);
160 return ERR_PTR(-ENODATA);
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700163 xafile = lookup_one_len(name, xadir, strlen(name));
164 if (IS_ERR(xafile)) {
165 dput(xadir);
David Howellse231c2e2008-02-07 00:15:26 -0800166 return ERR_CAST(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700169 if (xafile->d_inode) { /* file exists */
170 if (flags & XATTR_CREATE) {
171 err = -EEXIST;
172 dput(xafile);
173 goto out;
174 }
175 } else if (flags & XATTR_REPLACE || flags & FL_READONLY) {
176 goto out;
177 } else {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800178 /* inode->i_mutex is down, so nothing else can try to create
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700179 * the same xattr */
180 err = xadir->d_inode->i_op->create(xadir->d_inode, xafile,
181 0700 | S_IFREG, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700183 if (err) {
184 dput(xafile);
185 goto out;
186 }
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700189 out:
190 dput(xadir);
191 if (err)
192 xafile = ERR_PTR(err);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700193 else if (!xafile->d_inode) {
194 dput(xafile);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800195 xafile = ERR_PTR(-ENODATA);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700196 }
Jeff Mahoney3227e142008-02-15 14:37:22 -0800197 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*
201 * this is very similar to fs/reiserfs/dir.c:reiserfs_readdir, but
202 * we need to drop the path before calling the filldir struct. That
203 * would be a big performance hit to the non-xattr case, so I've copied
204 * the whole thing for now. --clm
205 *
206 * the big difference is that I go backwards through the directory,
207 * and don't mess with f->f_pos, but the idea is the same. Do some
208 * action on each and every entry in the directory.
209 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800210 * we're called with i_mutex held, so there are no worries about the directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * changing underneath us.
212 */
Jeff Mahoney3227e142008-02-15 14:37:22 -0800213static int __xattr_readdir(struct inode *inode, void *dirent, filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700215 struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */
216 INITIALIZE_PATH(path_to_entry);
217 struct buffer_head *bh;
218 int entry_num;
219 struct item_head *ih, tmp_ih;
220 int search_res;
221 char *local_buf;
222 loff_t next_pos;
223 char small_buf[32]; /* avoid kmalloc if we can */
224 struct reiserfs_de_head *deh;
225 int d_reclen;
226 char *d_name;
227 off_t d_off;
228 ino_t d_ino;
229 struct reiserfs_dir_entry de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700231 /* form key for search the next directory entry using f_pos field of
232 file structure */
233 next_pos = max_reiserfs_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700235 while (1) {
236 research:
237 if (next_pos <= DOT_DOT_OFFSET)
238 break;
239 make_cpu_key(&pos_key, inode, next_pos, TYPE_DIRENTRY, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700241 search_res =
242 search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry,
243 &de);
244 if (search_res == IO_ERROR) {
245 // FIXME: we could just skip part of directory which could
246 // not be read
247 pathrelse(&path_to_entry);
248 return -EIO;
249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700251 if (search_res == NAME_NOT_FOUND)
252 de.de_entry_num--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700254 set_de_name_and_namelen(&de);
255 entry_num = de.de_entry_num;
256 deh = &(de.de_deh[entry_num]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700258 bh = de.de_bh;
259 ih = de.de_ih;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700261 if (!is_direntry_le_ih(ih)) {
Jeff Mahoney0030b642009-03-30 14:02:28 -0400262 reiserfs_error(inode->i_sb, "jdm-20000",
263 "not direntry %h", ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700264 break;
265 }
266 copy_item_head(&tmp_ih, ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700268 /* we must have found item, that is item of this directory, */
269 RFALSE(COMP_SHORT_KEYS(&(ih->ih_key), &pos_key),
270 "vs-9000: found item %h does not match to dir we readdir %K",
271 ih, &pos_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700273 if (deh_offset(deh) <= DOT_DOT_OFFSET) {
274 break;
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700277 /* look for the previous entry in the directory */
278 next_pos = deh_offset(deh) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700280 if (!de_visible(deh))
281 /* it is hidden entry */
282 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700284 d_reclen = entry_length(bh, ih, entry_num);
285 d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh);
286 d_off = deh_offset(deh);
287 d_ino = deh_objectid(deh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700289 if (!d_name[d_reclen - 1])
290 d_reclen = strlen(d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700292 if (d_reclen > REISERFS_MAX_NAME(inode->i_sb->s_blocksize)) {
293 /* too big to send back to VFS */
294 continue;
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700297 /* Ignore the .reiserfs_priv entry */
298 if (reiserfs_xattrs(inode->i_sb) &&
299 !old_format_only(inode->i_sb) &&
300 deh_objectid(deh) ==
301 le32_to_cpu(INODE_PKEY
302 (REISERFS_SB(inode->i_sb)->priv_root->d_inode)->
303 k_objectid))
304 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700306 if (d_reclen <= 32) {
307 local_buf = small_buf;
308 } else {
Pekka Enbergd739b422006-02-01 03:06:43 -0800309 local_buf = kmalloc(d_reclen, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700310 if (!local_buf) {
311 pathrelse(&path_to_entry);
312 return -ENOMEM;
313 }
314 if (item_moved(&tmp_ih, &path_to_entry)) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800315 kfree(local_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700317 /* sigh, must retry. Do this same offset again */
318 next_pos = d_off;
319 goto research;
320 }
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700323 // Note, that we copy name to user space via temporary
324 // buffer (local_buf) because filldir will block if
325 // user space buffer is swapped out. At that time
326 // entry can move to somewhere else
327 memcpy(local_buf, d_name, d_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700329 /* the filldir function might need to start transactions,
330 * or do who knows what. Release the path now that we've
331 * copied all the important stuff out of the deh
332 */
333 pathrelse(&path_to_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700335 if (filldir(dirent, local_buf, d_reclen, d_off, d_ino,
336 DT_UNKNOWN) < 0) {
337 if (local_buf != small_buf) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800338 kfree(local_buf);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700339 }
340 goto end;
341 }
342 if (local_buf != small_buf) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800343 kfree(local_buf);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700344 }
345 } /* while */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700347 end:
348 pathrelse(&path_to_entry);
349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352/*
353 * this could be done with dedicated readdir ops for the xattr files,
354 * but I want to get something working asap
355 * this is stolen from vfs_readdir
356 *
357 */
358static
Jeff Mahoney3227e142008-02-15 14:37:22 -0800359int xattr_readdir(struct inode *inode, filldir_t filler, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Jeff Mahoney3227e142008-02-15 14:37:22 -0800361 int res = -ENOENT;
Ingo Molnar4df46242006-08-27 01:23:56 -0700362 mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700363 if (!IS_DEADDIR(inode)) {
364 lock_kernel();
Jeff Mahoney3227e142008-02-15 14:37:22 -0800365 res = __xattr_readdir(inode, buf, filler);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700366 unlock_kernel();
367 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800368 mutex_unlock(&inode->i_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700369 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700373static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700375 kunmap(page);
376 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400379static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700381 struct address_space *mapping = dir->i_mapping;
382 struct page *page;
383 /* We can deadlock if we try to free dentries,
384 and an unlink/rmdir has just occured - GFP_NOFS avoids this */
Al Viroc4cdd032005-10-21 03:22:39 -0400385 mapping_set_gfp_mask(mapping, GFP_NOFS);
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400386 page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700387 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700388 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700389 if (PageError(page))
390 goto fail;
391 }
392 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700394 fail:
395 reiserfs_put_page(page);
396 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700399static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700401 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700404int reiserfs_commit_write(struct file *f, struct page *page,
405 unsigned from, unsigned to);
406int reiserfs_prepare_write(struct file *f, struct page *page,
407 unsigned from, unsigned to);
408
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/* Generic extended attribute operations that can be used by xa plugins */
411
412/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800413 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 */
415int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700416reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer,
417 size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700419 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800420 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700421 struct page *page;
422 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700423 size_t file_pos = 0;
424 size_t buffer_pos = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700425 struct iattr newattrs;
426 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700428 if (get_inode_sd_version(inode) == STAT_DATA_V1)
429 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700431 /* Empty xattrs are ok, they're just empty files, no hash */
432 if (buffer && buffer_size)
433 xahash = xattr_hash(buffer, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700435 open_file:
Jeff Mahoney3227e142008-02-15 14:37:22 -0800436 dentry = get_xa_file_dentry(inode, name, flags);
437 if (IS_ERR(dentry)) {
438 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700439 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700442 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700444 /* we need to copy it off.. */
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400445 if (dentry->d_inode->i_nlink > 1) {
Jeff Mahoney3227e142008-02-15 14:37:22 -0800446 dput(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700447 err = reiserfs_xattr_del(inode, name);
448 if (err < 0)
449 goto out;
450 /* We just killed the old one, we're not replacing anymore */
451 if (flags & XATTR_REPLACE)
452 flags &= ~XATTR_REPLACE;
453 goto open_file;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700456 /* Resize it so we're ok to write there */
457 newattrs.ia_size = buffer_size;
458 newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400459 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800460 err = notify_change(dentry, &newattrs);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700461 if (err)
462 goto out_filp;
463
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700464 while (buffer_pos < buffer_size || buffer_pos == 0) {
465 size_t chunk;
466 size_t skip = 0;
467 size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1));
468 if (buffer_size - buffer_pos > PAGE_CACHE_SIZE)
469 chunk = PAGE_CACHE_SIZE;
470 else
471 chunk = buffer_size - buffer_pos;
472
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400473 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700474 if (IS_ERR(page)) {
475 err = PTR_ERR(page);
476 goto out_filp;
477 }
478
479 lock_page(page);
480 data = page_address(page);
481
482 if (file_pos == 0) {
483 struct reiserfs_xattr_header *rxh;
484 skip = file_pos = sizeof(struct reiserfs_xattr_header);
485 if (chunk + skip > PAGE_CACHE_SIZE)
486 chunk = PAGE_CACHE_SIZE - skip;
487 rxh = (struct reiserfs_xattr_header *)data;
488 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
489 rxh->h_hash = cpu_to_le32(xahash);
490 }
491
Jeff Mahoney3227e142008-02-15 14:37:22 -0800492 err = reiserfs_prepare_write(NULL, page, page_offset,
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700493 page_offset + chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700494 if (!err) {
495 if (buffer)
496 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800497 err = reiserfs_commit_write(NULL, page, page_offset,
498 page_offset + chunk +
499 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700500 }
501 unlock_page(page);
502 reiserfs_put_page(page);
503 buffer_pos += chunk;
504 file_pos += chunk;
505 skip = 0;
506 if (err || buffer_size == 0 || !buffer)
507 break;
508 }
509
510 /* We can't mark the inode dirty if it's not hashed. This is the case
511 * when we're inheriting the default ACL. If we dirty it, the inode
512 * gets marked dirty, but won't (ever) make it onto the dirty list until
513 * it's synced explicitly to clear I_DIRTY. This is bad. */
514 if (!hlist_unhashed(&inode->i_hash)) {
515 inode->i_ctime = CURRENT_TIME_SEC;
516 mark_inode_dirty(inode);
517 }
518
519 out_filp:
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400520 mutex_unlock(&dentry->d_inode->i_mutex);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800521 dput(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700522
523 out:
524 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800528 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 */
530int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700531reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer,
532 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700534 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800535 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700536 size_t isize;
537 size_t file_pos = 0;
538 size_t buffer_pos = 0;
539 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700540 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700542 if (name == NULL)
543 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700545 /* We can't have xattrs attached to v1 items since they don't have
546 * generation numbers */
547 if (get_inode_sd_version(inode) == STAT_DATA_V1)
548 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Jeff Mahoney3227e142008-02-15 14:37:22 -0800550 dentry = get_xa_file_dentry(inode, name, FL_READONLY);
551 if (IS_ERR(dentry)) {
552 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700553 goto out;
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400556 isize = i_size_read(dentry->d_inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700557 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700559 /* Just return the size needed */
560 if (buffer == NULL) {
561 err = isize - sizeof(struct reiserfs_xattr_header);
562 goto out_dput;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700565 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
566 err = -ERANGE;
567 goto out_dput;
568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700570 while (file_pos < isize) {
571 size_t chunk;
572 char *data;
573 size_t skip = 0;
574 if (isize - file_pos > PAGE_CACHE_SIZE)
575 chunk = PAGE_CACHE_SIZE;
576 else
577 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400579 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700580 if (IS_ERR(page)) {
581 err = PTR_ERR(page);
582 goto out_dput;
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700585 lock_page(page);
586 data = page_address(page);
587 if (file_pos == 0) {
588 struct reiserfs_xattr_header *rxh =
589 (struct reiserfs_xattr_header *)data;
590 skip = file_pos = sizeof(struct reiserfs_xattr_header);
591 chunk -= skip;
592 /* Magic doesn't match up.. */
593 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
594 unlock_page(page);
595 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400596 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700597 "Invalid magic for xattr (%s) "
598 "associated with %k", name,
599 INODE_PKEY(inode));
600 err = -EIO;
601 goto out_dput;
602 }
603 hash = le32_to_cpu(rxh->h_hash);
604 }
605 memcpy(buffer + buffer_pos, data + skip, chunk);
606 unlock_page(page);
607 reiserfs_put_page(page);
608 file_pos += chunk;
609 buffer_pos += chunk;
610 skip = 0;
611 }
612 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700614 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
615 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400616 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700617 "Invalid hash for xattr (%s) associated "
618 "with %k", name, INODE_PKEY(inode));
619 err = -EIO;
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700622 out_dput:
Jeff Mahoney3227e142008-02-15 14:37:22 -0800623 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700625 out:
626 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629static int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700630__reiserfs_xattr_del(struct dentry *xadir, const char *name, int namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700632 struct dentry *dentry;
633 struct inode *dir = xadir->d_inode;
634 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700636 dentry = lookup_one_len(name, xadir, namelen);
637 if (IS_ERR(dentry)) {
638 err = PTR_ERR(dentry);
639 goto out;
640 } else if (!dentry->d_inode) {
641 err = -ENODATA;
642 goto out_file;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700645 /* Skip directories.. */
646 if (S_ISDIR(dentry->d_inode->i_mode))
647 goto out_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700649 if (!is_reiserfs_priv_object(dentry->d_inode)) {
Jeff Mahoney0030b642009-03-30 14:02:28 -0400650 reiserfs_error(dir->i_sb, "jdm-20003",
651 "OID %08x [%.*s/%.*s] doesn't have "
652 "priv flag set [parent is %sset].",
653 le32_to_cpu(INODE_PKEY(dentry->d_inode)->
654 k_objectid), xadir->d_name.len,
655 xadir->d_name.name, namelen, name,
656 is_reiserfs_priv_object(xadir->d_inode) ? "" :
657 "not ");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700658 dput(dentry);
659 return -EIO;
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700662 err = dir->i_op->unlink(dir, dentry);
663 if (!err)
664 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700666 out_file:
667 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700669 out:
670 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700673int reiserfs_xattr_del(struct inode *inode, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700675 struct dentry *dir;
676 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700678 dir = open_xa_dir(inode, FL_READONLY);
679 if (IS_ERR(dir)) {
680 err = PTR_ERR(dir);
681 goto out;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700684 err = __reiserfs_xattr_del(dir, name, strlen(name));
685 dput(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700687 if (!err) {
688 inode->i_ctime = CURRENT_TIME_SEC;
689 mark_inode_dirty(inode);
690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700692 out:
693 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696/* The following are side effects of other operations that aren't explicitly
697 * modifying extended attributes. This includes operations such as permissions
698 * or ownership changes, object deletions, etc. */
699
700static int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700701reiserfs_delete_xattrs_filler(void *buf, const char *name, int namelen,
David Howellsafefdbb2006-10-03 01:13:46 -0700702 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700704 struct dentry *xadir = (struct dentry *)buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700706 return __reiserfs_xattr_del(xadir, name, namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708}
709
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800710/* This is called w/ inode->i_mutex downed */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700711int reiserfs_delete_xattrs(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700713 struct dentry *dir, *root;
714 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700716 /* Skip out, an xattr has no xattrs associated with it */
717 if (is_reiserfs_priv_object(inode) ||
718 get_inode_sd_version(inode) == STAT_DATA_V1 ||
719 !reiserfs_xattrs(inode->i_sb)) {
720 return 0;
721 }
722 reiserfs_read_lock_xattrs(inode->i_sb);
723 dir = open_xa_dir(inode, FL_READONLY);
724 reiserfs_read_unlock_xattrs(inode->i_sb);
725 if (IS_ERR(dir)) {
726 err = PTR_ERR(dir);
727 goto out;
728 } else if (!dir->d_inode) {
729 dput(dir);
730 return 0;
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700733 lock_kernel();
Jeff Mahoney3227e142008-02-15 14:37:22 -0800734 err = xattr_readdir(dir->d_inode, reiserfs_delete_xattrs_filler, dir);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700735 if (err) {
736 unlock_kernel();
737 goto out_dir;
738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700740 /* Leftovers besides . and .. -- that's not good. */
741 if (dir->d_inode->i_nlink <= 2) {
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700742 root = get_xa_root(inode->i_sb, XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700743 reiserfs_write_lock_xattrs(inode->i_sb);
744 err = vfs_rmdir(root->d_inode, dir);
745 reiserfs_write_unlock_xattrs(inode->i_sb);
746 dput(root);
747 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400748 reiserfs_warning(inode->i_sb, "jdm-20006",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700749 "Couldn't remove all entries in directory");
750 }
751 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700753 out_dir:
Jeff Mahoney3227e142008-02-15 14:37:22 -0800754 dput(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700756 out:
757 if (!err)
758 REISERFS_I(inode)->i_flags =
759 REISERFS_I(inode)->i_flags & ~i_has_xattr_dir;
760 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763struct reiserfs_chown_buf {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700764 struct inode *inode;
765 struct dentry *xadir;
766 struct iattr *attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767};
768
769/* XXX: If there is a better way to do this, I'd love to hear about it */
770static int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700771reiserfs_chown_xattrs_filler(void *buf, const char *name, int namelen,
David Howellsafefdbb2006-10-03 01:13:46 -0700772 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700774 struct reiserfs_chown_buf *chown_buf = (struct reiserfs_chown_buf *)buf;
775 struct dentry *xafile, *xadir = chown_buf->xadir;
776 struct iattr *attrs = chown_buf->attrs;
777 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700779 xafile = lookup_one_len(name, xadir, namelen);
780 if (IS_ERR(xafile))
781 return PTR_ERR(xafile);
782 else if (!xafile->d_inode) {
783 dput(xafile);
784 return -ENODATA;
785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700787 if (!S_ISDIR(xafile->d_inode->i_mode))
788 err = notify_change(xafile, attrs);
789 dput(xafile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700791 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700794int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700796 struct dentry *dir;
797 int err = 0;
798 struct reiserfs_chown_buf buf;
799 unsigned int ia_valid = attrs->ia_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700801 /* Skip out, an xattr has no xattrs associated with it */
802 if (is_reiserfs_priv_object(inode) ||
803 get_inode_sd_version(inode) == STAT_DATA_V1 ||
804 !reiserfs_xattrs(inode->i_sb)) {
805 return 0;
806 }
807 reiserfs_read_lock_xattrs(inode->i_sb);
808 dir = open_xa_dir(inode, FL_READONLY);
809 reiserfs_read_unlock_xattrs(inode->i_sb);
810 if (IS_ERR(dir)) {
811 if (PTR_ERR(dir) != -ENODATA)
812 err = PTR_ERR(dir);
813 goto out;
814 } else if (!dir->d_inode) {
815 dput(dir);
816 goto out;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700819 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700821 attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME);
822 buf.xadir = dir;
823 buf.attrs = attrs;
824 buf.inode = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Jeff Mahoney3227e142008-02-15 14:37:22 -0800826 err = xattr_readdir(dir->d_inode, reiserfs_chown_xattrs_filler, &buf);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700827 if (err) {
828 unlock_kernel();
829 goto out_dir;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700832 err = notify_change(dir, attrs);
833 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700835 out_dir:
Jeff Mahoney3227e142008-02-15 14:37:22 -0800836 dput(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700838 out:
839 attrs->ia_valid = ia_valid;
840 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843/* Actual operations that are exported to VFS-land */
844
845/*
846 * Inode operation getxattr()
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800847 * Preliminary locking: we down dentry->d_inode->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
849ssize_t
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700850reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer,
851 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700853 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix(name);
854 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700856 if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
857 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
858 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700860 reiserfs_read_lock_xattr_i(dentry->d_inode);
861 reiserfs_read_lock_xattrs(dentry->d_sb);
862 err = xah->get(dentry->d_inode, name, buffer, size);
863 reiserfs_read_unlock_xattrs(dentry->d_sb);
864 reiserfs_read_unlock_xattr_i(dentry->d_inode);
865 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868/*
869 * Inode operation setxattr()
870 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800871 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
873int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700874reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value,
875 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700877 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix(name);
878 int err;
879 int lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700881 if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
882 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
883 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700885 reiserfs_write_lock_xattr_i(dentry->d_inode);
886 lock = !has_xattr_dir(dentry->d_inode);
887 if (lock)
888 reiserfs_write_lock_xattrs(dentry->d_sb);
889 else
890 reiserfs_read_lock_xattrs(dentry->d_sb);
891 err = xah->set(dentry->d_inode, name, value, size, flags);
892 if (lock)
893 reiserfs_write_unlock_xattrs(dentry->d_sb);
894 else
895 reiserfs_read_unlock_xattrs(dentry->d_sb);
896 reiserfs_write_unlock_xattr_i(dentry->d_inode);
897 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
900/*
901 * Inode operation removexattr()
902 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800903 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700905int reiserfs_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700907 int err;
908 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700910 if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
911 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
912 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700914 reiserfs_write_lock_xattr_i(dentry->d_inode);
915 reiserfs_read_lock_xattrs(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700917 /* Deletion pre-operation */
918 if (xah->del) {
919 err = xah->del(dentry->d_inode, name);
920 if (err)
921 goto out;
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700924 err = reiserfs_xattr_del(dentry->d_inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700926 dentry->d_inode->i_ctime = CURRENT_TIME_SEC;
927 mark_inode_dirty(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700929 out:
930 reiserfs_read_unlock_xattrs(dentry->d_sb);
931 reiserfs_write_unlock_xattr_i(dentry->d_inode);
932 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/* This is what filldir will use:
936 * r_pos will always contain the amount of space required for the entire
937 * list. If r_pos becomes larger than r_size, we need more space and we
938 * return an error indicating this. If r_pos is less than r_size, then we've
939 * filled the buffer successfully and we return success */
940struct reiserfs_listxattr_buf {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700941 int r_pos;
942 int r_size;
943 char *r_buf;
944 struct inode *r_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945};
946
947static int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700948reiserfs_listxattr_filler(void *buf, const char *name, int namelen,
David Howellsafefdbb2006-10-03 01:13:46 -0700949 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700951 struct reiserfs_listxattr_buf *b = (struct reiserfs_listxattr_buf *)buf;
952 int len = 0;
953 if (name[0] != '.'
954 || (namelen != 1 && (name[1] != '.' || namelen != 2))) {
955 struct reiserfs_xattr_handler *xah =
956 find_xattr_handler_prefix(name);
957 if (!xah)
958 return 0; /* Unsupported xattr name, skip it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700960 /* We call ->list() twice because the operation isn't required to just
961 * return the name back - we want to make sure we have enough space */
962 len += xah->list(b->r_inode, name, namelen, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700964 if (len) {
965 if (b->r_pos + len + 1 <= b->r_size) {
966 char *p = b->r_buf + b->r_pos;
967 p += xah->list(b->r_inode, name, namelen, p);
968 *p++ = '\0';
969 }
970 b->r_pos += len + 1;
971 }
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/*
978 * Inode operation listxattr()
979 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800980 * Preliminary locking: we down dentry->d_inode->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700982ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700984 struct dentry *dir;
985 int err = 0;
986 struct reiserfs_listxattr_buf buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700988 if (!dentry->d_inode)
989 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700991 if (!reiserfs_xattrs(dentry->d_sb) ||
992 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
993 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700995 reiserfs_read_lock_xattr_i(dentry->d_inode);
996 reiserfs_read_lock_xattrs(dentry->d_sb);
997 dir = open_xa_dir(dentry->d_inode, FL_READONLY);
998 reiserfs_read_unlock_xattrs(dentry->d_sb);
999 if (IS_ERR(dir)) {
1000 err = PTR_ERR(dir);
1001 if (err == -ENODATA)
1002 err = 0; /* Not an error if there aren't any xattrs */
1003 goto out;
1004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001006 buf.r_buf = buffer;
1007 buf.r_size = buffer ? size : 0;
1008 buf.r_pos = 0;
1009 buf.r_inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001011 REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Jeff Mahoney3227e142008-02-15 14:37:22 -08001013 err = xattr_readdir(dir->d_inode, reiserfs_listxattr_filler, &buf);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001014 if (err)
1015 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001017 if (buf.r_pos > buf.r_size && buffer != NULL)
1018 err = -ERANGE;
1019 else
1020 err = buf.r_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001022 out_dir:
Jeff Mahoney3227e142008-02-15 14:37:22 -08001023 dput(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001025 out:
1026 reiserfs_read_unlock_xattr_i(dentry->d_inode);
1027 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030/* This is the implementation for the xattr plugin infrastructure */
Denis Chengbcf11cb2008-02-06 01:37:40 -08001031static LIST_HEAD(xattr_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static DEFINE_RWLOCK(handler_lock);
1033
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001034static struct reiserfs_xattr_handler *find_xattr_handler_prefix(const char
1035 *prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001037 struct reiserfs_xattr_handler *xah = NULL;
1038 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001040 read_lock(&handler_lock);
1041 list_for_each(p, &xattr_handlers) {
1042 xah = list_entry(p, struct reiserfs_xattr_handler, handlers);
1043 if (strncmp(xah->prefix, prefix, strlen(xah->prefix)) == 0)
1044 break;
1045 xah = NULL;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001048 read_unlock(&handler_lock);
1049 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001052static void __unregister_handlers(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001054 struct reiserfs_xattr_handler *xah;
1055 struct list_head *p, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001057 list_for_each_safe(p, tmp, &xattr_handlers) {
1058 xah = list_entry(p, struct reiserfs_xattr_handler, handlers);
1059 if (xah->exit)
1060 xah->exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001062 list_del_init(p);
1063 }
1064 INIT_LIST_HEAD(&xattr_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001067int __init reiserfs_xattr_register_handlers(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001069 int err = 0;
1070 struct reiserfs_xattr_handler *xah;
1071 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001073 write_lock(&handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001075 /* If we're already initialized, nothing to do */
1076 if (!list_empty(&xattr_handlers)) {
1077 write_unlock(&handler_lock);
1078 return 0;
1079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001081 /* Add the handlers */
1082 list_add_tail(&user_handler.handlers, &xattr_handlers);
1083 list_add_tail(&trusted_handler.handlers, &xattr_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084#ifdef CONFIG_REISERFS_FS_SECURITY
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001085 list_add_tail(&security_handler.handlers, &xattr_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#endif
1087#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001088 list_add_tail(&posix_acl_access_handler.handlers, &xattr_handlers);
1089 list_add_tail(&posix_acl_default_handler.handlers, &xattr_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090#endif
1091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001092 /* Run initializers, if available */
1093 list_for_each(p, &xattr_handlers) {
1094 xah = list_entry(p, struct reiserfs_xattr_handler, handlers);
1095 if (xah->init) {
1096 err = xah->init();
1097 if (err) {
1098 list_del_init(p);
1099 break;
1100 }
1101 }
1102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001104 /* Clean up other handlers, if any failed */
1105 if (err)
1106 __unregister_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001108 write_unlock(&handler_lock);
1109 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001112void reiserfs_xattr_unregister_handlers(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001114 write_lock(&handler_lock);
1115 __unregister_handlers();
1116 write_unlock(&handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119/* This will catch lookups from the fs root to .reiserfs_priv */
1120static int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001121xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001123 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
1124 if (name->len == priv_root->d_name.len &&
1125 name->hash == priv_root->d_name.hash &&
1126 !memcmp(name->name, priv_root->d_name.name, name->len)) {
1127 return -ENOENT;
1128 } else if (q1->len == name->len &&
1129 !memcmp(q1->name, name->name, name->len))
1130 return 0;
1131 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134static struct dentry_operations xattr_lookup_poison_ops = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001135 .d_compare = xattr_lookup_poison,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136};
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138/* We need to take a copy of the mount flags since things like
1139 * MS_RDONLY don't get set until *after* we're called.
1140 * mount_flags != mount_options */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001141int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001143 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001145 /* We need generation numbers to ensure that the oid mapping is correct
1146 * v3.5 filesystems don't have them. */
1147 if (!old_format_only(s)) {
1148 set_bit(REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1149 } else if (reiserfs_xattrs_optional(s)) {
1150 /* Old format filesystem, but optional xattrs have been enabled
1151 * at mount time. Error out. */
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001152 reiserfs_warning(s, "jdm-20005",
1153 "xattrs/ACLs not supported on pre v3.6 "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001154 "format filesystem. Failing mount.");
1155 err = -EOPNOTSUPP;
1156 goto error;
1157 } else {
1158 /* Old format filesystem, but no optional xattrs have been enabled. This
1159 * means we silently disable xattrs on the filesystem. */
1160 clear_bit(REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001163 /* If we don't have the privroot located yet - go find it */
1164 if (reiserfs_xattrs(s) && !REISERFS_SB(s)->priv_root) {
1165 struct dentry *dentry;
1166 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
1167 strlen(PRIVROOT_NAME));
1168 if (!IS_ERR(dentry)) {
1169 if (!(mount_flags & MS_RDONLY) && !dentry->d_inode) {
1170 struct inode *inode = dentry->d_parent->d_inode;
Jeff Mahoney75983922007-10-18 23:39:23 -07001171 mutex_lock_nested(&inode->i_mutex,
1172 I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001173 err = inode->i_op->mkdir(inode, dentry, 0700);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001174 mutex_unlock(&inode->i_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001175 if (err) {
1176 dput(dentry);
1177 dentry = NULL;
1178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001180 if (dentry && dentry->d_inode)
Jeff Mahoney1d889d92009-03-30 14:02:20 -04001181 reiserfs_info(s, "Created %s - "
1182 "reserved for xattr "
1183 "storage.\n",
1184 PRIVROOT_NAME);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001185 } else if (!dentry->d_inode) {
1186 dput(dentry);
1187 dentry = NULL;
1188 }
1189 } else
1190 err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001192 if (!err && dentry) {
1193 s->s_root->d_op = &xattr_lookup_poison_ops;
1194 reiserfs_mark_inode_private(dentry->d_inode);
1195 REISERFS_SB(s)->priv_root = dentry;
1196 } else if (!(mount_flags & MS_RDONLY)) { /* xattrs are unavailable */
1197 /* If we're read-only it just means that the dir hasn't been
1198 * created. Not an error -- just no xattrs on the fs. We'll
1199 * check again if we go read-write */
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001200 reiserfs_warning(s, "jdm-20006",
1201 "xattrs/ACLs enabled and couldn't "
1202 "find/create .reiserfs_priv. "
1203 "Failing mount.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001204 err = -EOPNOTSUPP;
1205 }
1206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001208 error:
1209 /* This is only nonzero if there was an error initializing the xattr
1210 * directory or if there is a condition where we don't support them. */
1211 if (err) {
1212 clear_bit(REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1213 clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1214 clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001217 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
1218 s->s_flags = s->s_flags & ~MS_POSIXACL;
1219 if (reiserfs_posixacl(s))
1220 s->s_flags |= MS_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001222 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Christoph Hellwigec191572006-02-01 03:06:46 -08001225static int reiserfs_check_acl(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Christoph Hellwigec191572006-02-01 03:06:46 -08001227 struct posix_acl *acl;
1228 int error = -EAGAIN; /* do regular unix permission checks by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Christoph Hellwigec191572006-02-01 03:06:46 -08001230 reiserfs_read_lock_xattr_i(inode);
1231 reiserfs_read_lock_xattrs(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Christoph Hellwigec191572006-02-01 03:06:46 -08001233 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
1234
1235 reiserfs_read_unlock_xattrs(inode->i_sb);
1236 reiserfs_read_unlock_xattr_i(inode);
1237
1238 if (acl) {
1239 if (!IS_ERR(acl)) {
1240 error = posix_acl_permission(inode, acl, mask);
1241 posix_acl_release(acl);
1242 } else if (PTR_ERR(acl) != -ENODATA)
1243 error = PTR_ERR(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245
Christoph Hellwigec191572006-02-01 03:06:46 -08001246 return error;
1247}
1248
Al Viroe6305c42008-07-15 21:03:57 -04001249int reiserfs_permission(struct inode *inode, int mask)
Christoph Hellwigec191572006-02-01 03:06:46 -08001250{
1251 /*
1252 * We don't do permission checks on the internal objects.
1253 * Permissions are determined by the "owning" object.
1254 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001255 if (is_reiserfs_priv_object(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return 0;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /*
Christoph Hellwigec191572006-02-01 03:06:46 -08001259 * Stat data v1 doesn't support ACLs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
Christoph Hellwigec191572006-02-01 03:06:46 -08001261 if (get_inode_sd_version(inode) == STAT_DATA_V1)
1262 return generic_permission(inode, mask, NULL);
1263 else
1264 return generic_permission(inode, mask, reiserfs_check_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}