blob: d3ce274366056267d48004b1d70a78b4225fbc95 [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.
Jeff Mahoneyd9845612009-03-30 14:02:35 -040030 *
31 * Locking works like so:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -040032 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
33 * The xattrs themselves are protected by the xattr_sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
36#include <linux/reiserfs_fs.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080037#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/dcache.h>
39#include <linux/namei.h>
40#include <linux/errno.h>
41#include <linux/fs.h>
42#include <linux/file.h>
43#include <linux/pagemap.h>
44#include <linux/xattr.h>
45#include <linux/reiserfs_xattr.h>
46#include <linux/reiserfs_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/uaccess.h>
Al Viro3277c392006-11-14 21:13:53 -080048#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/smp_lock.h>
50#include <linux/stat.h>
Jeff Mahoney6c176752009-03-30 14:02:34 -040051#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define PRIVROOT_NAME ".reiserfs_priv"
54#define XAROOT_NAME "xattrs"
55
Jeff Mahoney8b6dd722009-03-30 14:02:36 -040056
Jeff Mahoney6c176752009-03-30 14:02:34 -040057/* Helpers for inode ops. We do this so that we don't have all the VFS
58 * overhead and also for proper i_mutex annotation.
59 * dir->i_mutex must be held for all of them. */
60static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Jeff Mahoney6c176752009-03-30 14:02:34 -040062 BUG_ON(!mutex_is_locked(&dir->i_mutex));
63 DQUOT_INIT(dir);
64 return dir->i_op->create(dir, dentry, mode, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
Jeff Mahoney6c176752009-03-30 14:02:34 -040067static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
68{
69 BUG_ON(!mutex_is_locked(&dir->i_mutex));
70 DQUOT_INIT(dir);
71 return dir->i_op->mkdir(dir, dentry, mode);
72}
73
74/* We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
75 * mutation ops aren't called during rename or splace, which are the
76 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
77 * better than allocating another subclass just for this code. */
78static int xattr_unlink(struct inode *dir, struct dentry *dentry)
79{
80 int error;
81 BUG_ON(!mutex_is_locked(&dir->i_mutex));
82 DQUOT_INIT(dir);
83
84 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
85 error = dir->i_op->unlink(dir, dentry);
86 mutex_unlock(&dentry->d_inode->i_mutex);
87
88 if (!error)
89 d_delete(dentry);
90 return error;
91}
92
93static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
94{
95 int error;
96 BUG_ON(!mutex_is_locked(&dir->i_mutex));
97 DQUOT_INIT(dir);
98
99 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
100 dentry_unhash(dentry);
101 error = dir->i_op->rmdir(dir, dentry);
102 if (!error)
103 dentry->d_inode->i_flags |= S_DEAD;
104 mutex_unlock(&dentry->d_inode->i_mutex);
105 if (!error)
106 d_delete(dentry);
107 dput(dentry);
108
109 return error;
110}
111
Jeff Mahoney6c176752009-03-30 14:02:34 -0400112#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
113
114/* Returns and possibly creates the xattr dir. */
115static struct dentry *lookup_or_create_dir(struct dentry *parent,
116 const char *name, int flags)
117{
118 struct dentry *dentry;
119 BUG_ON(!parent);
120
121 dentry = lookup_one_len(name, parent, strlen(name));
122 if (IS_ERR(dentry))
123 return dentry;
124 else if (!dentry->d_inode) {
125 int err = -ENODATA;
126
127 if (xattr_may_create(flags)) {
128 mutex_lock_nested(&parent->d_inode->i_mutex,
129 I_MUTEX_XATTR);
130 err = xattr_mkdir(parent->d_inode, dentry, 0700);
131 mutex_unlock(&parent->d_inode->i_mutex);
132 }
133
134 if (err) {
135 dput(dentry);
136 dentry = ERR_PTR(err);
137 }
138 }
139
140 return dentry;
141}
142
143static struct dentry *open_xa_root(struct super_block *sb, int flags)
144{
145 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
146 if (!privroot)
147 return ERR_PTR(-ENODATA);
148 return lookup_or_create_dir(privroot, XAROOT_NAME, flags);
149}
150
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700151static struct dentry *open_xa_dir(const struct inode *inode, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700153 struct dentry *xaroot, *xadir;
154 char namebuf[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Jeff Mahoney6c176752009-03-30 14:02:34 -0400156 xaroot = open_xa_root(inode->i_sb, flags);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700157 if (IS_ERR(xaroot))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700158 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700160 snprintf(namebuf, sizeof(namebuf), "%X.%X",
161 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
162 inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jeff Mahoney6c176752009-03-30 14:02:34 -0400164 xadir = lookup_or_create_dir(xaroot, namebuf, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700165 dput(xaroot);
166 return xadir;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * this is very similar to fs/reiserfs/dir.c:reiserfs_readdir, but
172 * we need to drop the path before calling the filldir struct. That
173 * would be a big performance hit to the non-xattr case, so I've copied
174 * the whole thing for now. --clm
175 *
176 * the big difference is that I go backwards through the directory,
177 * and don't mess with f->f_pos, but the idea is the same. Do some
178 * action on each and every entry in the directory.
179 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800180 * we're called with i_mutex held, so there are no worries about the directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * changing underneath us.
182 */
Jeff Mahoney3227e142008-02-15 14:37:22 -0800183static int __xattr_readdir(struct inode *inode, void *dirent, filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700185 struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */
186 INITIALIZE_PATH(path_to_entry);
187 struct buffer_head *bh;
188 int entry_num;
189 struct item_head *ih, tmp_ih;
190 int search_res;
191 char *local_buf;
192 loff_t next_pos;
193 char small_buf[32]; /* avoid kmalloc if we can */
194 struct reiserfs_de_head *deh;
195 int d_reclen;
196 char *d_name;
197 off_t d_off;
198 ino_t d_ino;
199 struct reiserfs_dir_entry de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700201 /* form key for search the next directory entry using f_pos field of
202 file structure */
203 next_pos = max_reiserfs_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700205 while (1) {
206 research:
207 if (next_pos <= DOT_DOT_OFFSET)
208 break;
209 make_cpu_key(&pos_key, inode, next_pos, TYPE_DIRENTRY, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700211 search_res =
212 search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry,
213 &de);
214 if (search_res == IO_ERROR) {
215 // FIXME: we could just skip part of directory which could
216 // not be read
217 pathrelse(&path_to_entry);
218 return -EIO;
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700221 if (search_res == NAME_NOT_FOUND)
222 de.de_entry_num--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700224 set_de_name_and_namelen(&de);
225 entry_num = de.de_entry_num;
226 deh = &(de.de_deh[entry_num]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700228 bh = de.de_bh;
229 ih = de.de_ih;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700231 if (!is_direntry_le_ih(ih)) {
Jeff Mahoney0030b642009-03-30 14:02:28 -0400232 reiserfs_error(inode->i_sb, "jdm-20000",
233 "not direntry %h", ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700234 break;
235 }
236 copy_item_head(&tmp_ih, ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700238 /* we must have found item, that is item of this directory, */
239 RFALSE(COMP_SHORT_KEYS(&(ih->ih_key), &pos_key),
240 "vs-9000: found item %h does not match to dir we readdir %K",
241 ih, &pos_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700243 if (deh_offset(deh) <= DOT_DOT_OFFSET) {
244 break;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700247 /* look for the previous entry in the directory */
248 next_pos = deh_offset(deh) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700250 if (!de_visible(deh))
251 /* it is hidden entry */
252 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700254 d_reclen = entry_length(bh, ih, entry_num);
255 d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh);
256 d_off = deh_offset(deh);
257 d_ino = deh_objectid(deh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700259 if (!d_name[d_reclen - 1])
260 d_reclen = strlen(d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700262 if (d_reclen > REISERFS_MAX_NAME(inode->i_sb->s_blocksize)) {
263 /* too big to send back to VFS */
264 continue;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700267 /* Ignore the .reiserfs_priv entry */
268 if (reiserfs_xattrs(inode->i_sb) &&
269 !old_format_only(inode->i_sb) &&
270 deh_objectid(deh) ==
271 le32_to_cpu(INODE_PKEY
272 (REISERFS_SB(inode->i_sb)->priv_root->d_inode)->
273 k_objectid))
274 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700276 if (d_reclen <= 32) {
277 local_buf = small_buf;
278 } else {
Pekka Enbergd739b422006-02-01 03:06:43 -0800279 local_buf = kmalloc(d_reclen, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700280 if (!local_buf) {
281 pathrelse(&path_to_entry);
282 return -ENOMEM;
283 }
284 if (item_moved(&tmp_ih, &path_to_entry)) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800285 kfree(local_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700287 /* sigh, must retry. Do this same offset again */
288 next_pos = d_off;
289 goto research;
290 }
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700293 // Note, that we copy name to user space via temporary
294 // buffer (local_buf) because filldir will block if
295 // user space buffer is swapped out. At that time
296 // entry can move to somewhere else
297 memcpy(local_buf, d_name, d_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700299 /* the filldir function might need to start transactions,
300 * or do who knows what. Release the path now that we've
301 * copied all the important stuff out of the deh
302 */
303 pathrelse(&path_to_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700305 if (filldir(dirent, local_buf, d_reclen, d_off, d_ino,
306 DT_UNKNOWN) < 0) {
307 if (local_buf != small_buf) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800308 kfree(local_buf);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700309 }
310 goto end;
311 }
312 if (local_buf != small_buf) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800313 kfree(local_buf);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700314 }
315 } /* while */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700317 end:
318 pathrelse(&path_to_entry);
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322/*
323 * this could be done with dedicated readdir ops for the xattr files,
324 * but I want to get something working asap
325 * this is stolen from vfs_readdir
326 *
327 */
328static
Jeff Mahoney3227e142008-02-15 14:37:22 -0800329int xattr_readdir(struct inode *inode, filldir_t filler, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Jeff Mahoney3227e142008-02-15 14:37:22 -0800331 int res = -ENOENT;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700332 if (!IS_DEADDIR(inode)) {
333 lock_kernel();
Jeff Mahoney3227e142008-02-15 14:37:22 -0800334 res = __xattr_readdir(inode, buf, filler);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700335 unlock_kernel();
336 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700337 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400340/* The following are side effects of other operations that aren't explicitly
341 * modifying extended attributes. This includes operations such as permissions
342 * or ownership changes, object deletions, etc. */
343
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400344static int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400345reiserfs_delete_xattrs_filler(void *buf, const char *name, int namelen,
346 loff_t offset, u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400347{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400348 struct dentry *xadir = (struct dentry *)buf;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400349 struct dentry *dentry;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400350 int err = 0;
351
352 dentry = lookup_one_len(name, xadir, namelen);
353 if (IS_ERR(dentry)) {
354 err = PTR_ERR(dentry);
355 goto out;
356 } else if (!dentry->d_inode) {
357 err = -ENODATA;
358 goto out_file;
359 }
360
361 /* Skip directories.. */
362 if (S_ISDIR(dentry->d_inode->i_mode))
363 goto out_file;
364
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400365 err = xattr_unlink(xadir->d_inode, dentry);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400366
367out_file:
368 dput(dentry);
369
370out:
371 return err;
372}
373
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400374/* This is called w/ inode->i_mutex downed */
375int reiserfs_delete_xattrs(struct inode *inode)
376{
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400377 int err = -ENODATA;
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400378 struct dentry *dir, *root;
379 struct reiserfs_transaction_handle th;
380 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
381 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400382
383 /* Skip out, an xattr has no xattrs associated with it */
384 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
385 return 0;
386
Jeff Mahoney6c176752009-03-30 14:02:34 -0400387 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400388 if (IS_ERR(dir)) {
389 err = PTR_ERR(dir);
390 goto out;
391 } else if (!dir->d_inode) {
392 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400393 goto out;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400394 }
395
Jeff Mahoney6c176752009-03-30 14:02:34 -0400396 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400397 err = xattr_readdir(dir->d_inode, reiserfs_delete_xattrs_filler, dir);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400398 mutex_unlock(&dir->d_inode->i_mutex);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400399 if (err) {
400 dput(dir);
401 goto out;
402 }
403
404 root = dget(dir->d_parent);
405 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400406
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400407 /* We start a transaction here to avoid a ABBA situation
408 * between the xattr root's i_mutex and the journal lock.
409 * Inode creation will inherit an ACL, which requires a
410 * lookup. The lookup locks the xattr root i_mutex with a
411 * transaction open. Inode deletion takes teh xattr root
412 * i_mutex to delete the directory and then starts a
413 * transaction inside it. Boom. This doesn't incur much
414 * additional overhead since the reiserfs_rmdir transaction
415 * will just nest inside the outer transaction. */
416 err = journal_begin(&th, inode->i_sb, blocks);
417 if (!err) {
418 int jerror;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400419 mutex_lock_nested(&root->d_inode->i_mutex, I_MUTEX_XATTR);
420 err = xattr_rmdir(root->d_inode, dir);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400421 jerror = journal_end(&th, inode->i_sb, blocks);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400422 mutex_unlock(&root->d_inode->i_mutex);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400423 err = jerror ?: err;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400424 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400425
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400426 dput(root);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400427out:
Jeff Mahoney8ecbe552009-03-30 14:02:37 -0400428 if (err)
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400429 reiserfs_warning(inode->i_sb, "jdm-20004",
430 "Couldn't remove all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400431 return err;
432}
433
434struct reiserfs_chown_buf {
435 struct inode *inode;
436 struct dentry *xadir;
437 struct iattr *attrs;
438};
439
440/* XXX: If there is a better way to do this, I'd love to hear about it */
441static int
442reiserfs_chown_xattrs_filler(void *buf, const char *name, int namelen,
443 loff_t offset, u64 ino, unsigned int d_type)
444{
445 struct reiserfs_chown_buf *chown_buf = (struct reiserfs_chown_buf *)buf;
446 struct dentry *xafile, *xadir = chown_buf->xadir;
447 struct iattr *attrs = chown_buf->attrs;
448 int err = 0;
449
450 xafile = lookup_one_len(name, xadir, namelen);
451 if (IS_ERR(xafile))
452 return PTR_ERR(xafile);
453 else if (!xafile->d_inode) {
454 dput(xafile);
455 return -ENODATA;
456 }
457
Jeff Mahoney6c176752009-03-30 14:02:34 -0400458 if (!S_ISDIR(xafile->d_inode->i_mode)) {
459 mutex_lock_nested(&xafile->d_inode->i_mutex, I_MUTEX_CHILD);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400460 err = reiserfs_setattr(xafile, attrs);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400461 mutex_unlock(&xafile->d_inode->i_mutex);
462 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400463 dput(xafile);
464
465 return err;
466}
467
468int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
469{
470 struct dentry *dir;
471 int err = 0;
472 struct reiserfs_chown_buf buf;
473 unsigned int ia_valid = attrs->ia_valid;
474
475 /* Skip out, an xattr has no xattrs associated with it */
476 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
477 return 0;
478
Jeff Mahoney6c176752009-03-30 14:02:34 -0400479 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400480 if (IS_ERR(dir)) {
481 if (PTR_ERR(dir) != -ENODATA)
482 err = PTR_ERR(dir);
483 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400484 } else if (!dir->d_inode)
485 goto out_dir;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400486
487 attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME);
488 buf.xadir = dir;
489 buf.attrs = attrs;
490 buf.inode = inode;
491
Jeff Mahoney6c176752009-03-30 14:02:34 -0400492 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400493 err = xattr_readdir(dir->d_inode, reiserfs_chown_xattrs_filler, &buf);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400494
Jeff Mahoney6c176752009-03-30 14:02:34 -0400495 if (!err)
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400496 err = reiserfs_setattr(dir, attrs);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400497 mutex_unlock(&dir->d_inode->i_mutex);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400498
Jeff Mahoney6c176752009-03-30 14:02:34 -0400499 attrs->ia_valid = ia_valid;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400500out_dir:
501 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400502out:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400503 if (err)
504 reiserfs_warning(inode->i_sb, "jdm-20007",
505 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400506 return err;
507}
508
509#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400510/* Returns a dentry corresponding to a specific extended attribute file
511 * for the inode. If flags allow, the file is created. Otherwise, a
512 * valid or negative dentry, or an error is returned. */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400513static struct dentry *xattr_lookup(struct inode *inode, const char *name,
514 int flags)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400515{
516 struct dentry *xadir, *xafile;
517 int err = 0;
518
519 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400520 if (IS_ERR(xadir))
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400521 return ERR_CAST(xadir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400522
523 xafile = lookup_one_len(name, xadir, strlen(name));
524 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400525 err = PTR_ERR(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400526 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400527 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400528
Jeff Mahoney6c176752009-03-30 14:02:34 -0400529 if (xafile->d_inode && (flags & XATTR_CREATE))
530 err = -EEXIST;
531
532 if (!xafile->d_inode) {
533 err = -ENODATA;
534 if (xattr_may_create(flags)) {
535 mutex_lock_nested(&xadir->d_inode->i_mutex,
536 I_MUTEX_XATTR);
537 err = xattr_create(xadir->d_inode, xafile,
538 0700|S_IFREG);
539 mutex_unlock(&xadir->d_inode->i_mutex);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400540 }
541 }
542
Jeff Mahoney6c176752009-03-30 14:02:34 -0400543 if (err)
544 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400545out:
546 dput(xadir);
547 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400548 return ERR_PTR(err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400549 return xafile;
550}
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700553static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700555 kunmap(page);
556 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400559static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700561 struct address_space *mapping = dir->i_mapping;
562 struct page *page;
563 /* We can deadlock if we try to free dentries,
564 and an unlink/rmdir has just occured - GFP_NOFS avoids this */
Al Viroc4cdd032005-10-21 03:22:39 -0400565 mapping_set_gfp_mask(mapping, GFP_NOFS);
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400566 page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700567 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700568 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700569 if (PageError(page))
570 goto fail;
571 }
572 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700574 fail:
575 reiserfs_put_page(page);
576 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700579static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700581 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700584int reiserfs_commit_write(struct file *f, struct page *page,
585 unsigned from, unsigned to);
586int reiserfs_prepare_write(struct file *f, struct page *page,
587 unsigned from, unsigned to);
588
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400589static void update_ctime(struct inode *inode)
590{
591 struct timespec now = current_fs_time(inode->i_sb);
592 if (hlist_unhashed(&inode->i_hash) || !inode->i_nlink ||
593 timespec_equal(&inode->i_ctime, &now))
594 return;
595
596 inode->i_ctime = CURRENT_TIME_SEC;
597 mark_inode_dirty(inode);
598}
599
600static int lookup_and_delete_xattr(struct inode *inode, const char *name)
601{
602 int err = 0;
603 struct dentry *dentry, *xadir;
604
605 xadir = open_xa_dir(inode, XATTR_REPLACE);
606 if (IS_ERR(xadir))
607 return PTR_ERR(xadir);
608
609 dentry = lookup_one_len(name, xadir, strlen(name));
610 if (IS_ERR(dentry)) {
611 err = PTR_ERR(dentry);
612 goto out_dput;
613 }
614
615 if (dentry->d_inode) {
616 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
617 err = xattr_unlink(xadir->d_inode, dentry);
618 mutex_unlock(&xadir->d_inode->i_mutex);
619 update_ctime(inode);
620 }
621
622 dput(dentry);
623out_dput:
624 dput(xadir);
625 return err;
626}
627
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/* Generic extended attribute operations that can be used by xa plugins */
630
631/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800632 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 */
634int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400635__reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer,
636 size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700638 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800639 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700640 struct page *page;
641 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700642 size_t file_pos = 0;
643 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400644 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700645 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700647 if (get_inode_sd_version(inode) == STAT_DATA_V1)
648 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400650 if (!buffer)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400651 return lookup_and_delete_xattr(inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400653 dentry = xattr_lookup(inode, name, flags);
654 if (IS_ERR(dentry))
655 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400657 down_write(&REISERFS_I(inode)->i_xattr_sem);
658
659 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700660 while (buffer_pos < buffer_size || buffer_pos == 0) {
661 size_t chunk;
662 size_t skip = 0;
663 size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1));
664 if (buffer_size - buffer_pos > PAGE_CACHE_SIZE)
665 chunk = PAGE_CACHE_SIZE;
666 else
667 chunk = buffer_size - buffer_pos;
668
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400669 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700670 if (IS_ERR(page)) {
671 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400672 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700673 }
674
675 lock_page(page);
676 data = page_address(page);
677
678 if (file_pos == 0) {
679 struct reiserfs_xattr_header *rxh;
680 skip = file_pos = sizeof(struct reiserfs_xattr_header);
681 if (chunk + skip > PAGE_CACHE_SIZE)
682 chunk = PAGE_CACHE_SIZE - skip;
683 rxh = (struct reiserfs_xattr_header *)data;
684 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
685 rxh->h_hash = cpu_to_le32(xahash);
686 }
687
Jeff Mahoney3227e142008-02-15 14:37:22 -0800688 err = reiserfs_prepare_write(NULL, page, page_offset,
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700689 page_offset + chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700690 if (!err) {
691 if (buffer)
692 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800693 err = reiserfs_commit_write(NULL, page, page_offset,
694 page_offset + chunk +
695 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700696 }
697 unlock_page(page);
698 reiserfs_put_page(page);
699 buffer_pos += chunk;
700 file_pos += chunk;
701 skip = 0;
702 if (err || buffer_size == 0 || !buffer)
703 break;
704 }
705
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400706 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
707 if (!err && new_size < i_size_read(dentry->d_inode)) {
708 struct iattr newattrs = {
709 .ia_ctime = current_fs_time(inode->i_sb),
710 .ia_size = buffer_size,
711 .ia_valid = ATTR_SIZE | ATTR_CTIME,
712 };
713 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_XATTR);
714 down_write(&dentry->d_inode->i_alloc_sem);
715 err = reiserfs_setattr(dentry, &newattrs);
716 up_write(&dentry->d_inode->i_alloc_sem);
717 mutex_unlock(&dentry->d_inode->i_mutex);
718 } else
719 update_ctime(inode);
720out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400721 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800722 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400723 return err;
724}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700725
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400726int
727reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer,
728 size_t buffer_size, int flags)
729{
730 int err = __reiserfs_xattr_set(inode, name, buffer, buffer_size, flags);
731 if (err == -ENODATA)
732 err = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700733 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800737 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
739int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400740reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700741 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700743 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800744 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700745 size_t isize;
746 size_t file_pos = 0;
747 size_t buffer_pos = 0;
748 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700749 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700751 if (name == NULL)
752 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700754 /* We can't have xattrs attached to v1 items since they don't have
755 * generation numbers */
756 if (get_inode_sd_version(inode) == STAT_DATA_V1)
757 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400759 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800760 if (IS_ERR(dentry)) {
761 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700762 goto out;
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400765 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400766
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400767 isize = i_size_read(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700769 /* Just return the size needed */
770 if (buffer == NULL) {
771 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400772 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700775 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
776 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400777 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700780 while (file_pos < isize) {
781 size_t chunk;
782 char *data;
783 size_t skip = 0;
784 if (isize - file_pos > PAGE_CACHE_SIZE)
785 chunk = PAGE_CACHE_SIZE;
786 else
787 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400789 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700790 if (IS_ERR(page)) {
791 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400792 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700795 lock_page(page);
796 data = page_address(page);
797 if (file_pos == 0) {
798 struct reiserfs_xattr_header *rxh =
799 (struct reiserfs_xattr_header *)data;
800 skip = file_pos = sizeof(struct reiserfs_xattr_header);
801 chunk -= skip;
802 /* Magic doesn't match up.. */
803 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
804 unlock_page(page);
805 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400806 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700807 "Invalid magic for xattr (%s) "
808 "associated with %k", name,
809 INODE_PKEY(inode));
810 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400811 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700812 }
813 hash = le32_to_cpu(rxh->h_hash);
814 }
815 memcpy(buffer + buffer_pos, data + skip, chunk);
816 unlock_page(page);
817 reiserfs_put_page(page);
818 file_pos += chunk;
819 buffer_pos += chunk;
820 skip = 0;
821 }
822 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700824 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
825 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400826 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700827 "Invalid hash for xattr (%s) associated "
828 "with %k", name, INODE_PKEY(inode));
829 err = -EIO;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400832out_unlock:
833 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800834 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400836out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700837 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400840/* Actual operations that are exported to VFS-land */
841struct xattr_handler *reiserfs_xattr_handlers[] = {
842 &reiserfs_xattr_user_handler,
843 &reiserfs_xattr_trusted_handler,
844#ifdef CONFIG_REISERFS_FS_SECURITY
845 &reiserfs_xattr_security_handler,
846#endif
847#ifdef CONFIG_REISERFS_FS_POSIX_ACL
848 &reiserfs_posix_acl_access_handler,
849 &reiserfs_posix_acl_default_handler,
850#endif
851 NULL
852};
853
854/*
855 * In order to implement different sets of xattr operations for each xattr
856 * prefix with the generic xattr API, a filesystem should create a
857 * null-terminated array of struct xattr_handler (one for each prefix) and
858 * hang a pointer to it off of the s_xattr field of the superblock.
859 *
860 * The generic_fooxattr() functions will use this list to dispatch xattr
861 * operations to the correct xattr_handler.
862 */
863#define for_each_xattr_handler(handlers, handler) \
864 for ((handler) = *(handlers)++; \
865 (handler) != NULL; \
866 (handler) = *(handlers)++)
867
868/* This is the implementation for the xattr plugin infrastructure */
869static inline struct xattr_handler *
870find_xattr_handler_prefix(struct xattr_handler **handlers,
871 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400873 struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400875 if (!handlers)
876 return NULL;
877
878 for_each_xattr_handler(handlers, xah) {
879 if (strncmp(xah->prefix, name, strlen(xah->prefix)) == 0)
880 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400883 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/*
888 * Inode operation getxattr()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
890ssize_t
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700891reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer,
892 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400894 struct inode *inode = dentry->d_inode;
895 struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400897 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
898
899 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700900 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400902 return handler->get(inode, name, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/*
906 * Inode operation setxattr()
907 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800908 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 */
910int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700911reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value,
912 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400914 struct inode *inode = dentry->d_inode;
915 struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400917 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
918
919 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700920 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400922 return handler->set(inode, name, value, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
925/*
926 * Inode operation removexattr()
927 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800928 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700930int reiserfs_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400932 struct inode *inode = dentry->d_inode;
933 struct xattr_handler *handler;
934 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400936 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700937 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400939 return handler->set(inode, name, NULL, 0, XATTR_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400942struct listxattr_buf {
943 size_t size;
944 size_t pos;
945 char *buf;
946 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947};
948
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400949static int listxattr_filler(void *buf, const char *name, int namelen,
950 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400952 struct listxattr_buf *b = (struct listxattr_buf *)buf;
953 size_t size;
954 if (name[0] != '.' ||
955 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
956 struct xattr_handler *handler;
957 handler = find_xattr_handler_prefix(b->inode->i_sb->s_xattr,
958 name);
959 if (!handler) /* Unsupported xattr name */
960 return 0;
961 if (b->buf) {
962 size = handler->list(b->inode, b->buf + b->pos,
963 b->size, name, namelen);
964 if (size > b->size)
965 return -ERANGE;
966 } else {
967 size = handler->list(b->inode, NULL, 0, name, namelen);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400970 b->pos += size;
971 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975/*
976 * Inode operation listxattr()
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400977 *
978 * We totally ignore the generic listxattr here because it would be stupid
979 * not to. Since the xattrs are organized in a directory, we can just
980 * readdir to find them.
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;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400986 struct listxattr_buf buf = {
987 .inode = dentry->d_inode,
988 .buf = buffer,
989 .size = buffer ? size : 0,
990 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700992 if (!dentry->d_inode)
993 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700995 if (!reiserfs_xattrs(dentry->d_sb) ||
996 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
997 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Jeff Mahoney6c176752009-03-30 14:02:34 -0400999 dir = open_xa_dir(dentry->d_inode, XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001000 if (IS_ERR(dir)) {
1001 err = PTR_ERR(dir);
1002 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001003 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001004 goto out;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Jeff Mahoney6c176752009-03-30 14:02:34 -04001007 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001008 err = xattr_readdir(dir->d_inode, listxattr_filler, &buf);
Jeff Mahoney6c176752009-03-30 14:02:34 -04001009 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001011 if (!err)
1012 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Jeff Mahoney3227e142008-02-15 14:37:22 -08001014 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -04001015out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001016 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Christoph Hellwigec191572006-02-01 03:06:46 -08001019static int reiserfs_check_acl(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Christoph Hellwigec191572006-02-01 03:06:46 -08001021 struct posix_acl *acl;
1022 int error = -EAGAIN; /* do regular unix permission checks by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Christoph Hellwigec191572006-02-01 03:06:46 -08001024 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
1025
Christoph Hellwigec191572006-02-01 03:06:46 -08001026 if (acl) {
1027 if (!IS_ERR(acl)) {
1028 error = posix_acl_permission(inode, acl, mask);
1029 posix_acl_release(acl);
1030 } else if (PTR_ERR(acl) != -ENODATA)
1031 error = PTR_ERR(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033
Christoph Hellwigec191572006-02-01 03:06:46 -08001034 return error;
1035}
1036
Al Viroe6305c42008-07-15 21:03:57 -04001037int reiserfs_permission(struct inode *inode, int mask)
Christoph Hellwigec191572006-02-01 03:06:46 -08001038{
1039 /*
1040 * We don't do permission checks on the internal objects.
1041 * Permissions are determined by the "owning" object.
1042 */
Jeff Mahoney6dfede62009-03-30 14:02:32 -04001043 if (IS_PRIVATE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /*
Christoph Hellwigec191572006-02-01 03:06:46 -08001046 * Stat data v1 doesn't support ACLs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 */
Christoph Hellwigec191572006-02-01 03:06:46 -08001048 if (get_inode_sd_version(inode) == STAT_DATA_V1)
1049 return generic_permission(inode, mask, NULL);
1050 else
1051 return generic_permission(inode, mask, reiserfs_check_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001053
1054static int create_privroot(struct dentry *dentry)
1055{
1056 int err;
1057 struct inode *inode = dentry->d_parent->d_inode;
1058 mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoney6c176752009-03-30 14:02:34 -04001059 err = xattr_mkdir(inode, dentry, 0700);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001060 mutex_unlock(&inode->i_mutex);
1061 if (err) {
1062 dput(dentry);
1063 dentry = NULL;
1064 }
1065
1066 if (dentry && dentry->d_inode)
1067 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
1068 "storage.\n", PRIVROOT_NAME);
1069
1070 return err;
1071}
1072
1073static int xattr_mount_check(struct super_block *s)
1074{
1075 /* We need generation numbers to ensure that the oid mapping is correct
1076 * v3.5 filesystems don't have them. */
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001077 if (old_format_only(s)) {
1078 if (reiserfs_xattrs_optional(s)) {
1079 /* Old format filesystem, but optional xattrs have
1080 * been enabled. Error out. */
1081 reiserfs_warning(s, "jdm-2005",
1082 "xattrs/ACLs not supported "
1083 "on pre-v3.6 format filesystems. "
1084 "Failing mount.");
1085 return -EOPNOTSUPP;
1086 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001087 }
1088
1089 return 0;
1090}
1091
1092#else
1093int __init reiserfs_xattr_register_handlers(void) { return 0; }
1094void reiserfs_xattr_unregister_handlers(void) {}
1095#endif
1096
1097/* This will catch lookups from the fs root to .reiserfs_priv */
1098static int
1099xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
1100{
1101 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
1102 if (name->len == priv_root->d_name.len &&
1103 name->hash == priv_root->d_name.hash &&
1104 !memcmp(name->name, priv_root->d_name.name, name->len)) {
1105 return -ENOENT;
1106 } else if (q1->len == name->len &&
1107 !memcmp(q1->name, name->name, name->len))
1108 return 0;
1109 return 1;
1110}
1111
1112static struct dentry_operations xattr_lookup_poison_ops = {
1113 .d_compare = xattr_lookup_poison,
1114};
1115
1116/* We need to take a copy of the mount flags since things like
1117 * MS_RDONLY don't get set until *after* we're called.
1118 * mount_flags != mount_options */
1119int reiserfs_xattr_init(struct super_block *s, int mount_flags)
1120{
1121 int err = 0;
1122
1123#ifdef CONFIG_REISERFS_FS_XATTR
1124 err = xattr_mount_check(s);
1125 if (err)
1126 goto error;
1127#endif
1128
1129 /* If we don't have the privroot located yet - go find it */
1130 if (!REISERFS_SB(s)->priv_root) {
1131 struct dentry *dentry;
1132 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
1133 strlen(PRIVROOT_NAME));
1134 if (!IS_ERR(dentry)) {
1135#ifdef CONFIG_REISERFS_FS_XATTR
1136 if (!(mount_flags & MS_RDONLY) && !dentry->d_inode)
1137 err = create_privroot(dentry);
1138#endif
1139 if (!dentry->d_inode) {
1140 dput(dentry);
1141 dentry = NULL;
1142 }
1143 } else
1144 err = PTR_ERR(dentry);
1145
1146 if (!err && dentry) {
1147 s->s_root->d_op = &xattr_lookup_poison_ops;
1148 dentry->d_inode->i_flags |= S_PRIVATE;
1149 REISERFS_SB(s)->priv_root = dentry;
1150#ifdef CONFIG_REISERFS_FS_XATTR
1151 /* xattrs are unavailable */
1152 } else if (!(mount_flags & MS_RDONLY)) {
1153 /* If we're read-only it just means that the dir
1154 * hasn't been created. Not an error -- just no
1155 * xattrs on the fs. We'll check again if we
1156 * go read-write */
1157 reiserfs_warning(s, "jdm-20006",
1158 "xattrs/ACLs enabled and couldn't "
1159 "find/create .reiserfs_priv. "
1160 "Failing mount.");
1161 err = -EOPNOTSUPP;
1162#endif
1163 }
1164 }
1165
1166#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001167 if (!err)
1168 s->s_xattr = reiserfs_xattr_handlers;
1169
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001170error:
1171 if (err) {
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001172 clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1173 clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1174 }
1175#endif
1176
1177 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
1178 s->s_flags = s->s_flags & ~MS_POSIXACL;
1179#ifdef CONFIG_REISERFS_FS_POSIX_ACL
1180 if (reiserfs_posixacl(s))
1181 s->s_flags |= MS_POSIXACL;
1182#endif
1183
1184 return err;
1185}