mm/memunmap: don't access uninitialized memmap in memunmap_pages()
[linux-2.6-block.git] / fs / reiserfs / xattr.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * linux/fs/reiserfs/xattr.c
4 *
5 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
6 *
7 */
8
9/*
10 * In order to implement EA/ACLs in a clean, backwards compatible manner,
11 * they are implemented as files in a "private" directory.
12 * Each EA is in it's own file, with the directory layout like so (/ is assumed
13 * to be relative to fs root). Inside the /.reiserfs_priv/xattrs directory,
14 * directories named using the capital-hex form of the objectid and
15 * generation number are used. Inside each directory are individual files
16 * named with the name of the extended attribute.
17 *
18 * So, for objectid 12648430, we could have:
19 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_access
20 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_default
21 * /.reiserfs_priv/xattrs/C0FFEE.0/user.Content-Type
22 * .. or similar.
23 *
24 * The file contents are the text of the EA. The size is known based on the
25 * stat data describing the file.
26 *
27 * In the case of system.posix_acl_access and system.posix_acl_default, since
28 * these are special cases for filesystem ACLs, they are interpreted by the
29 * kernel, in addition, they are negatively and positively cached and attached
30 * to the inode so that unnecessary lookups are avoided.
d984561b
JM
31 *
32 * Locking works like so:
8b6dd72a
JM
33 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
34 * The xattrs themselves are protected by the xattr_sem.
1da177e4
LT
35 */
36
f466c6fd 37#include "reiserfs.h"
16f7e0fe 38#include <linux/capability.h>
1da177e4
LT
39#include <linux/dcache.h>
40#include <linux/namei.h>
41#include <linux/errno.h>
5a0e3ad6 42#include <linux/gfp.h>
1da177e4
LT
43#include <linux/fs.h>
44#include <linux/file.h>
45#include <linux/pagemap.h>
46#include <linux/xattr.h>
c45ac888 47#include "xattr.h"
a3063ab8 48#include "acl.h"
17093991 49#include <linux/uaccess.h>
3277c39f 50#include <net/checksum.h>
1da177e4 51#include <linux/stat.h>
6c17675e 52#include <linux/quotaops.h>
431547b3 53#include <linux/security.h>
47f70d08 54#include <linux/posix_acl_xattr.h>
1da177e4 55
1da177e4
LT
56#define PRIVROOT_NAME ".reiserfs_priv"
57#define XAROOT_NAME "xattrs"
58
1da177e4 59
098297b2
JM
60/*
61 * Helpers for inode ops. We do this so that we don't have all the VFS
6c17675e 62 * overhead and also for proper i_mutex annotation.
098297b2
JM
63 * dir->i_mutex must be held for all of them.
64 */
3a355cc6 65#ifdef CONFIG_REISERFS_FS_XATTR
6c17675e 66static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
1da177e4 67{
5955102c 68 BUG_ON(!inode_is_locked(dir));
ebfc3b49 69 return dir->i_op->create(dir, dentry, mode, true);
6c17675e 70}
3a355cc6 71#endif
bd4c625c 72
18bb1db3 73static int xattr_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
6c17675e 74{
5955102c 75 BUG_ON(!inode_is_locked(dir));
6c17675e
JM
76 return dir->i_op->mkdir(dir, dentry, mode);
77}
bd4c625c 78
098297b2
JM
79/*
80 * We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
6c17675e
JM
81 * mutation ops aren't called during rename or splace, which are the
82 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
098297b2
JM
83 * better than allocating another subclass just for this code.
84 */
6c17675e
JM
85static int xattr_unlink(struct inode *dir, struct dentry *dentry)
86{
87 int error;
f3fb9e27 88
5955102c 89 BUG_ON(!inode_is_locked(dir));
bd4c625c 90
5955102c 91 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
6c17675e 92 error = dir->i_op->unlink(dir, dentry);
5955102c 93 inode_unlock(d_inode(dentry));
6c17675e
JM
94
95 if (!error)
96 d_delete(dentry);
97 return error;
98}
99
100static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
101{
102 int error;
f3fb9e27 103
5955102c 104 BUG_ON(!inode_is_locked(dir));
6c17675e 105
5955102c 106 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
6c17675e
JM
107 error = dir->i_op->rmdir(dir, dentry);
108 if (!error)
2b0143b5 109 d_inode(dentry)->i_flags |= S_DEAD;
5955102c 110 inode_unlock(d_inode(dentry));
6c17675e
JM
111 if (!error)
112 d_delete(dentry);
6c17675e
JM
113
114 return error;
115}
116
6c17675e
JM
117#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
118
ab17c4f0 119static struct dentry *open_xa_root(struct super_block *sb, int flags)
6c17675e 120{
ab17c4f0
JM
121 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
122 struct dentry *xaroot;
f3fb9e27 123
2b0143b5 124 if (d_really_is_negative(privroot))
ab17c4f0 125 return ERR_PTR(-ENODATA);
6c17675e 126
5955102c 127 inode_lock_nested(d_inode(privroot), I_MUTEX_XATTR);
6c17675e 128
ab17c4f0 129 xaroot = dget(REISERFS_SB(sb)->xattr_root);
ceb5edc4
JM
130 if (!xaroot)
131 xaroot = ERR_PTR(-ENODATA);
2b0143b5 132 else if (d_really_is_negative(xaroot)) {
ab17c4f0 133 int err = -ENODATA;
f3fb9e27 134
5a6059c3 135 if (xattr_may_create(flags))
2b0143b5 136 err = xattr_mkdir(d_inode(privroot), xaroot, 0700);
9b7f3755 137 if (err) {
ab17c4f0
JM
138 dput(xaroot);
139 xaroot = ERR_PTR(err);
9b7f3755 140 }
bd4c625c 141 }
6c17675e 142
5955102c 143 inode_unlock(d_inode(privroot));
ab17c4f0 144 return xaroot;
1da177e4
LT
145}
146
bd4c625c 147static struct dentry *open_xa_dir(const struct inode *inode, int flags)
1da177e4 148{
bd4c625c
LT
149 struct dentry *xaroot, *xadir;
150 char namebuf[17];
151
6c17675e 152 xaroot = open_xa_root(inode->i_sb, flags);
9b7f3755 153 if (IS_ERR(xaroot))
bd4c625c 154 return xaroot;
bd4c625c 155
bd4c625c
LT
156 snprintf(namebuf, sizeof(namebuf), "%X.%X",
157 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
158 inode->i_generation);
bd4c625c 159
5955102c 160 inode_lock_nested(d_inode(xaroot), I_MUTEX_XATTR);
ab17c4f0
JM
161
162 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
2b0143b5 163 if (!IS_ERR(xadir) && d_really_is_negative(xadir)) {
ab17c4f0 164 int err = -ENODATA;
f3fb9e27 165
ab17c4f0 166 if (xattr_may_create(flags))
2b0143b5 167 err = xattr_mkdir(d_inode(xaroot), xadir, 0700);
ab17c4f0
JM
168 if (err) {
169 dput(xadir);
170 xadir = ERR_PTR(err);
171 }
172 }
173
5955102c 174 inode_unlock(d_inode(xaroot));
bd4c625c
LT
175 dput(xaroot);
176 return xadir;
1da177e4
LT
177}
178
098297b2
JM
179/*
180 * The following are side effects of other operations that aren't explicitly
48b32a35 181 * modifying extended attributes. This includes operations such as permissions
098297b2
JM
182 * or ownership changes, object deletions, etc.
183 */
a41f1a47 184struct reiserfs_dentry_buf {
4acf381e 185 struct dir_context ctx;
a41f1a47
JM
186 struct dentry *xadir;
187 int count;
b10298d5 188 int err;
a41f1a47
JM
189 struct dentry *dentries[8];
190};
bd4c625c 191
a72bdb1c 192static int
ac7576f4
MS
193fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
194 loff_t offset, u64 ino, unsigned int d_type)
a72bdb1c 195{
ac7576f4
MS
196 struct reiserfs_dentry_buf *dbuf =
197 container_of(ctx, struct reiserfs_dentry_buf, ctx);
a72bdb1c 198 struct dentry *dentry;
f3fb9e27 199
5955102c 200 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf->xadir)));
bd4c625c 201
a41f1a47
JM
202 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
203 return -ENOSPC;
bd4c625c 204
35e5cbc0
JK
205 if (name[0] == '.' && (namelen < 2 ||
206 (namelen == 2 && name[1] == '.')))
a41f1a47 207 return 0;
bd4c625c 208
a41f1a47 209 dentry = lookup_one_len(name, dbuf->xadir, namelen);
a72bdb1c 210 if (IS_ERR(dentry)) {
b10298d5 211 dbuf->err = PTR_ERR(dentry);
a41f1a47 212 return PTR_ERR(dentry);
2b0143b5 213 } else if (d_really_is_negative(dentry)) {
a41f1a47
JM
214 /* A directory entry exists, but no file? */
215 reiserfs_error(dentry->d_sb, "xattr-20003",
a455589f
AV
216 "Corrupted directory: xattr %pd listed but "
217 "not found for file %pd.\n",
218 dentry, dbuf->xadir);
a41f1a47 219 dput(dentry);
b10298d5 220 dbuf->err = -EIO;
a41f1a47 221 return -EIO;
bd4c625c 222 }
1da177e4 223
a41f1a47
JM
224 dbuf->dentries[dbuf->count++] = dentry;
225 return 0;
1da177e4
LT
226}
227
a41f1a47
JM
228static void
229cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
1da177e4 230{
a41f1a47 231 int i;
f3fb9e27 232
a41f1a47
JM
233 for (i = 0; i < buf->count; i++)
234 if (buf->dentries[i])
235 dput(buf->dentries[i]);
a72bdb1c
JM
236}
237
a41f1a47
JM
238static int reiserfs_for_each_xattr(struct inode *inode,
239 int (*action)(struct dentry *, void *),
240 void *data)
a72bdb1c 241{
a41f1a47
JM
242 struct dentry *dir;
243 int i, err = 0;
a41f1a47 244 struct reiserfs_dentry_buf buf = {
4acf381e 245 .ctx.actor = fill_with_dentries,
a41f1a47 246 };
1da177e4 247
a72bdb1c
JM
248 /* Skip out, an xattr has no xattrs associated with it */
249 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
250 return 0;
1da177e4 251
6c17675e 252 dir = open_xa_dir(inode, XATTR_REPLACE);
a72bdb1c
JM
253 if (IS_ERR(dir)) {
254 err = PTR_ERR(dir);
255 goto out;
2b0143b5 256 } else if (d_really_is_negative(dir)) {
a41f1a47
JM
257 err = 0;
258 goto out_dir;
a72bdb1c 259 }
1da177e4 260
5955102c 261 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
27026a05 262
a41f1a47 263 buf.xadir = dir;
cd62cdae 264 while (1) {
2b0143b5 265 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
cd62cdae
AV
266 if (err)
267 break;
b10298d5
JH
268 if (buf.err) {
269 err = buf.err;
270 break;
271 }
cd62cdae
AV
272 if (!buf.count)
273 break;
274 for (i = 0; !err && i < buf.count && buf.dentries[i]; i++) {
a41f1a47 275 struct dentry *dentry = buf.dentries[i];
1da177e4 276
e36cb0b8 277 if (!d_is_dir(dentry))
cd62cdae 278 err = action(dentry, data);
1da177e4 279
a41f1a47
JM
280 dput(dentry);
281 buf.dentries[i] = NULL;
bd4c625c 282 }
cd62cdae
AV
283 if (err)
284 break;
a41f1a47 285 buf.count = 0;
8b6dd72a 286 }
5955102c 287 inode_unlock(d_inode(dir));
1da177e4 288
a41f1a47 289 cleanup_dentry_buf(&buf);
1da177e4 290
d984561b 291 if (!err) {
098297b2
JM
292 /*
293 * We start a transaction here to avoid a ABBA situation
a41f1a47
JM
294 * between the xattr root's i_mutex and the journal lock.
295 * This doesn't incur much additional overhead since the
296 * new transaction will just nest inside the
098297b2
JM
297 * outer transaction.
298 */
a41f1a47
JM
299 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
300 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
301 struct reiserfs_transaction_handle th;
f3fb9e27 302
4c05141d 303 reiserfs_write_lock(inode->i_sb);
a41f1a47 304 err = journal_begin(&th, inode->i_sb, blocks);
4c05141d 305 reiserfs_write_unlock(inode->i_sb);
a41f1a47
JM
306 if (!err) {
307 int jerror;
f3fb9e27 308
5955102c 309 inode_lock_nested(d_inode(dir->d_parent),
4c05141d 310 I_MUTEX_XATTR);
a41f1a47 311 err = action(dir, data);
4c05141d 312 reiserfs_write_lock(inode->i_sb);
58d85426 313 jerror = journal_end(&th);
4c05141d 314 reiserfs_write_unlock(inode->i_sb);
5955102c 315 inode_unlock(d_inode(dir->d_parent));
a41f1a47
JM
316 err = jerror ?: err;
317 }
a72bdb1c 318 }
a41f1a47
JM
319out_dir:
320 dput(dir);
a72bdb1c 321out:
a41f1a47
JM
322 /* -ENODATA isn't an error */
323 if (err == -ENODATA)
324 err = 0;
a72bdb1c
JM
325 return err;
326}
1da177e4 327
a41f1a47 328static int delete_one_xattr(struct dentry *dentry, void *data)
a72bdb1c 329{
2b0143b5 330 struct inode *dir = d_inode(dentry->d_parent);
1da177e4 331
a41f1a47 332 /* This is the xattr dir, handle specially. */
e36cb0b8 333 if (d_is_dir(dentry))
a41f1a47 334 return xattr_rmdir(dir, dentry);
1da177e4 335
a41f1a47
JM
336 return xattr_unlink(dir, dentry);
337}
bd4c625c 338
a41f1a47
JM
339static int chown_one_xattr(struct dentry *dentry, void *data)
340{
341 struct iattr *attrs = data;
4a857011
JM
342 int ia_valid = attrs->ia_valid;
343 int err;
344
345 /*
346 * We only want the ownership bits. Otherwise, we'll do
347 * things like change a directory to a regular file if
348 * ATTR_MODE is set.
349 */
350 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
351 err = reiserfs_setattr(dentry, attrs);
352 attrs->ia_valid = ia_valid;
353
354 return err;
a41f1a47 355}
1da177e4 356
a41f1a47
JM
357/* No i_mutex, but the inode is unconnected. */
358int reiserfs_delete_xattrs(struct inode *inode)
359{
360 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
f3fb9e27 361
a41f1a47
JM
362 if (err)
363 reiserfs_warning(inode->i_sb, "jdm-20004",
364 "Couldn't delete all xattrs (%d)\n", err);
a72bdb1c
JM
365 return err;
366}
1da177e4 367
a41f1a47 368/* inode->i_mutex: down */
a72bdb1c
JM
369int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
370{
a41f1a47 371 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
f3fb9e27 372
8b6dd72a
JM
373 if (err)
374 reiserfs_warning(inode->i_sb, "jdm-20007",
375 "Couldn't chown all xattrs (%d)\n", err);
a72bdb1c 376 return err;
1da177e4
LT
377}
378
a72bdb1c 379#ifdef CONFIG_REISERFS_FS_XATTR
098297b2
JM
380/*
381 * Returns a dentry corresponding to a specific extended attribute file
a72bdb1c 382 * for the inode. If flags allow, the file is created. Otherwise, a
098297b2
JM
383 * valid or negative dentry, or an error is returned.
384 */
48b32a35
JM
385static struct dentry *xattr_lookup(struct inode *inode, const char *name,
386 int flags)
1da177e4 387{
a72bdb1c
JM
388 struct dentry *xadir, *xafile;
389 int err = 0;
390
391 xadir = open_xa_dir(inode, flags);
6c17675e 392 if (IS_ERR(xadir))
a72bdb1c 393 return ERR_CAST(xadir);
a72bdb1c 394
5955102c 395 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
a72bdb1c
JM
396 xafile = lookup_one_len(name, xadir, strlen(name));
397 if (IS_ERR(xafile)) {
6c17675e
JM
398 err = PTR_ERR(xafile);
399 goto out;
bd4c625c 400 }
a72bdb1c 401
2b0143b5 402 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
6c17675e 403 err = -EEXIST;
a72bdb1c 404
2b0143b5 405 if (d_really_is_negative(xafile)) {
6c17675e 406 err = -ENODATA;
5a6059c3 407 if (xattr_may_create(flags))
2b0143b5 408 err = xattr_create(d_inode(xadir), xafile,
6c17675e 409 0700|S_IFREG);
a72bdb1c
JM
410 }
411
6c17675e
JM
412 if (err)
413 dput(xafile);
a72bdb1c 414out:
5955102c 415 inode_unlock(d_inode(xadir));
a72bdb1c
JM
416 dput(xadir);
417 if (err)
6c17675e 418 return ERR_PTR(err);
a72bdb1c 419 return xafile;
1da177e4
LT
420}
421
1da177e4 422/* Internal operations on file data */
bd4c625c 423static inline void reiserfs_put_page(struct page *page)
1da177e4 424{
bd4c625c 425 kunmap(page);
09cbfeaf 426 put_page(page);
1da177e4
LT
427}
428
ec6ea56b 429static struct page *reiserfs_get_page(struct inode *dir, size_t n)
1da177e4 430{
bd4c625c
LT
431 struct address_space *mapping = dir->i_mapping;
432 struct page *page;
098297b2
JM
433 /*
434 * We can deadlock if we try to free dentries,
435 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
436 */
c4cdd038 437 mapping_set_gfp_mask(mapping, GFP_NOFS);
09cbfeaf 438 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
bd4c625c 439 if (!IS_ERR(page)) {
bd4c625c 440 kmap(page);
bd4c625c
LT
441 if (PageError(page))
442 goto fail;
443 }
444 return page;
445
cf776a7a 446fail:
bd4c625c
LT
447 reiserfs_put_page(page);
448 return ERR_PTR(-EIO);
1da177e4
LT
449}
450
bd4c625c 451static inline __u32 xattr_hash(const char *msg, int len)
1da177e4 452{
672cdd56
BV
453 /*
454 * csum_partial() gives different results for little-endian and
455 * big endian hosts. Images created on little-endian hosts and
456 * mounted on big-endian hosts(and vice versa) will see csum mismatches
457 * when trying to fetch xattrs. Treating the hash as __wsum_t would
458 * lower the frequency of mismatch. This is an endianness bug in
459 * reiserfs. The return statement would result in a sparse warning. Do
460 * not fix the sparse warning so as to not hide a reminder of the bug.
461 */
bd4c625c 462 return csum_partial(msg, len, 0);
1da177e4
LT
463}
464
ba9d8cec
VS
465int reiserfs_commit_write(struct file *f, struct page *page,
466 unsigned from, unsigned to);
ba9d8cec 467
48b32a35
JM
468static void update_ctime(struct inode *inode)
469{
95582b00 470 struct timespec64 now = current_time(inode);
f3fb9e27 471
1d3382cb 472 if (inode_unhashed(inode) || !inode->i_nlink ||
95582b00 473 timespec64_equal(&inode->i_ctime, &now))
48b32a35
JM
474 return;
475
02027d42 476 inode->i_ctime = current_time(inode);
48b32a35
JM
477 mark_inode_dirty(inode);
478}
479
480static int lookup_and_delete_xattr(struct inode *inode, const char *name)
481{
482 int err = 0;
483 struct dentry *dentry, *xadir;
484
485 xadir = open_xa_dir(inode, XATTR_REPLACE);
486 if (IS_ERR(xadir))
487 return PTR_ERR(xadir);
488
5955102c 489 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
48b32a35
JM
490 dentry = lookup_one_len(name, xadir, strlen(name));
491 if (IS_ERR(dentry)) {
492 err = PTR_ERR(dentry);
493 goto out_dput;
494 }
495
2b0143b5
DH
496 if (d_really_is_positive(dentry)) {
497 err = xattr_unlink(d_inode(xadir), dentry);
48b32a35
JM
498 update_ctime(inode);
499 }
500
501 dput(dentry);
502out_dput:
5955102c 503 inode_unlock(d_inode(xadir));
48b32a35
JM
504 dput(xadir);
505 return err;
506}
507
ba9d8cec 508
1da177e4
LT
509/* Generic extended attribute operations that can be used by xa plugins */
510
511/*
1b1dcc1b 512 * inode->i_mutex: down
1da177e4
LT
513 */
514int
0ab2621e
JM
515reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
516 struct inode *inode, const char *name,
517 const void *buffer, size_t buffer_size, int flags)
1da177e4 518{
bd4c625c 519 int err = 0;
3227e14c 520 struct dentry *dentry;
bd4c625c
LT
521 struct page *page;
522 char *data;
bd4c625c
LT
523 size_t file_pos = 0;
524 size_t buffer_pos = 0;
48b32a35 525 size_t new_size;
bd4c625c
LT
526 __u32 xahash = 0;
527
bd4c625c
LT
528 if (get_inode_sd_version(inode) == STAT_DATA_V1)
529 return -EOPNOTSUPP;
530
4f3be1b5
FW
531 if (!buffer) {
532 err = lookup_and_delete_xattr(inode, name);
4f3be1b5
FW
533 return err;
534 }
535
48b32a35 536 dentry = xattr_lookup(inode, name, flags);
4c05141d 537 if (IS_ERR(dentry))
48b32a35 538 return PTR_ERR(dentry);
3f14fea6 539
f3e22f48 540 down_write(&REISERFS_I(inode)->i_xattr_sem);
bd4c625c 541
8b6dd72a 542 xahash = xattr_hash(buffer, buffer_size);
bd4c625c
LT
543 while (buffer_pos < buffer_size || buffer_pos == 0) {
544 size_t chunk;
545 size_t skip = 0;
09cbfeaf 546 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
f3fb9e27 547
09cbfeaf
KS
548 if (buffer_size - buffer_pos > PAGE_SIZE)
549 chunk = PAGE_SIZE;
bd4c625c
LT
550 else
551 chunk = buffer_size - buffer_pos;
552
2b0143b5 553 page = reiserfs_get_page(d_inode(dentry), file_pos);
bd4c625c
LT
554 if (IS_ERR(page)) {
555 err = PTR_ERR(page);
48b32a35 556 goto out_unlock;
bd4c625c
LT
557 }
558
559 lock_page(page);
560 data = page_address(page);
561
562 if (file_pos == 0) {
563 struct reiserfs_xattr_header *rxh;
f3fb9e27 564
bd4c625c 565 skip = file_pos = sizeof(struct reiserfs_xattr_header);
09cbfeaf
KS
566 if (chunk + skip > PAGE_SIZE)
567 chunk = PAGE_SIZE - skip;
bd4c625c
LT
568 rxh = (struct reiserfs_xattr_header *)data;
569 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
570 rxh->h_hash = cpu_to_le32(xahash);
571 }
572
4c05141d 573 reiserfs_write_lock(inode->i_sb);
ebdec241 574 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
bd4c625c
LT
575 if (!err) {
576 if (buffer)
577 memcpy(data + skip, buffer + buffer_pos, chunk);
3227e14c
JM
578 err = reiserfs_commit_write(NULL, page, page_offset,
579 page_offset + chunk +
580 skip);
bd4c625c 581 }
4c05141d 582 reiserfs_write_unlock(inode->i_sb);
bd4c625c
LT
583 unlock_page(page);
584 reiserfs_put_page(page);
585 buffer_pos += chunk;
586 file_pos += chunk;
587 skip = 0;
588 if (err || buffer_size == 0 || !buffer)
589 break;
590 }
591
48b32a35 592 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
2b0143b5 593 if (!err && new_size < i_size_read(d_inode(dentry))) {
48b32a35 594 struct iattr newattrs = {
02027d42 595 .ia_ctime = current_time(inode),
fb2162df 596 .ia_size = new_size,
48b32a35
JM
597 .ia_valid = ATTR_SIZE | ATTR_CTIME,
598 };
31370f62 599
5955102c 600 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
2b0143b5 601 inode_dio_wait(d_inode(dentry));
31370f62 602
48b32a35 603 err = reiserfs_setattr(dentry, &newattrs);
5955102c 604 inode_unlock(d_inode(dentry));
48b32a35
JM
605 } else
606 update_ctime(inode);
607out_unlock:
8b6dd72a 608 up_write(&REISERFS_I(inode)->i_xattr_sem);
3227e14c 609 dput(dentry);
48b32a35
JM
610 return err;
611}
bd4c625c 612
0ab2621e
JM
613/* We need to start a transaction to maintain lock ordering */
614int reiserfs_xattr_set(struct inode *inode, const char *name,
615 const void *buffer, size_t buffer_size, int flags)
48b32a35 616{
0ab2621e
JM
617
618 struct reiserfs_transaction_handle th;
619 int error, error2;
620 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
621
622 if (!(flags & XATTR_REPLACE))
623 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
624
625 reiserfs_write_lock(inode->i_sb);
626 error = journal_begin(&th, inode->i_sb, jbegin_count);
4c05141d 627 reiserfs_write_unlock(inode->i_sb);
0ab2621e 628 if (error) {
0ab2621e 629 return error;
1da177e4 630 }
bd4c625c 631
0ab2621e
JM
632 error = reiserfs_xattr_set_handle(&th, inode, name,
633 buffer, buffer_size, flags);
bd4c625c 634
4c05141d 635 reiserfs_write_lock(inode->i_sb);
58d85426 636 error2 = journal_end(&th);
4c05141d 637 reiserfs_write_unlock(inode->i_sb);
0ab2621e
JM
638 if (error == 0)
639 error = error2;
0ab2621e
JM
640
641 return error;
1da177e4
LT
642}
643
644/*
1b1dcc1b 645 * inode->i_mutex: down
1da177e4
LT
646 */
647int
48b32a35 648reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
bd4c625c 649 size_t buffer_size)
1da177e4 650{
bd4c625c 651 ssize_t err = 0;
3227e14c 652 struct dentry *dentry;
bd4c625c
LT
653 size_t isize;
654 size_t file_pos = 0;
655 size_t buffer_pos = 0;
656 struct page *page;
bd4c625c
LT
657 __u32 hash = 0;
658
659 if (name == NULL)
660 return -EINVAL;
661
098297b2
JM
662 /*
663 * We can't have xattrs attached to v1 items since they don't have
664 * generation numbers
665 */
bd4c625c
LT
666 if (get_inode_sd_version(inode) == STAT_DATA_V1)
667 return -EOPNOTSUPP;
668
48b32a35 669 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
3227e14c
JM
670 if (IS_ERR(dentry)) {
671 err = PTR_ERR(dentry);
bd4c625c
LT
672 goto out;
673 }
674
8b6dd72a 675 down_read(&REISERFS_I(inode)->i_xattr_sem);
d984561b 676
2b0143b5 677 isize = i_size_read(d_inode(dentry));
bd4c625c
LT
678
679 /* Just return the size needed */
680 if (buffer == NULL) {
681 err = isize - sizeof(struct reiserfs_xattr_header);
8b6dd72a 682 goto out_unlock;
bd4c625c
LT
683 }
684
685 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
686 err = -ERANGE;
8b6dd72a 687 goto out_unlock;
bd4c625c
LT
688 }
689
690 while (file_pos < isize) {
691 size_t chunk;
692 char *data;
693 size_t skip = 0;
f3fb9e27 694
09cbfeaf
KS
695 if (isize - file_pos > PAGE_SIZE)
696 chunk = PAGE_SIZE;
bd4c625c
LT
697 else
698 chunk = isize - file_pos;
699
2b0143b5 700 page = reiserfs_get_page(d_inode(dentry), file_pos);
bd4c625c
LT
701 if (IS_ERR(page)) {
702 err = PTR_ERR(page);
8b6dd72a 703 goto out_unlock;
bd4c625c
LT
704 }
705
706 lock_page(page);
707 data = page_address(page);
708 if (file_pos == 0) {
709 struct reiserfs_xattr_header *rxh =
710 (struct reiserfs_xattr_header *)data;
711 skip = file_pos = sizeof(struct reiserfs_xattr_header);
712 chunk -= skip;
713 /* Magic doesn't match up.. */
714 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
715 unlock_page(page);
716 reiserfs_put_page(page);
a72bdb1c 717 reiserfs_warning(inode->i_sb, "jdm-20001",
bd4c625c
LT
718 "Invalid magic for xattr (%s) "
719 "associated with %k", name,
720 INODE_PKEY(inode));
721 err = -EIO;
8b6dd72a 722 goto out_unlock;
bd4c625c
LT
723 }
724 hash = le32_to_cpu(rxh->h_hash);
725 }
726 memcpy(buffer + buffer_pos, data + skip, chunk);
727 unlock_page(page);
728 reiserfs_put_page(page);
729 file_pos += chunk;
730 buffer_pos += chunk;
731 skip = 0;
732 }
733 err = isize - sizeof(struct reiserfs_xattr_header);
734
735 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
736 hash) {
a72bdb1c 737 reiserfs_warning(inode->i_sb, "jdm-20002",
bd4c625c
LT
738 "Invalid hash for xattr (%s) associated "
739 "with %k", name, INODE_PKEY(inode));
740 err = -EIO;
741 }
742
8b6dd72a
JM
743out_unlock:
744 up_read(&REISERFS_I(inode)->i_xattr_sem);
3227e14c 745 dput(dentry);
bd4c625c 746
a72bdb1c 747out:
bd4c625c 748 return err;
1da177e4
LT
749}
750
48b32a35
JM
751/*
752 * In order to implement different sets of xattr operations for each xattr
753 * prefix with the generic xattr API, a filesystem should create a
754 * null-terminated array of struct xattr_handler (one for each prefix) and
755 * hang a pointer to it off of the s_xattr field of the superblock.
756 *
757 * The generic_fooxattr() functions will use this list to dispatch xattr
758 * operations to the correct xattr_handler.
759 */
760#define for_each_xattr_handler(handlers, handler) \
761 for ((handler) = *(handlers)++; \
762 (handler) != NULL; \
763 (handler) = *(handlers)++)
1da177e4 764
48b32a35 765/* This is the implementation for the xattr plugin infrastructure */
94d09a98
SH
766static inline const struct xattr_handler *
767find_xattr_handler_prefix(const struct xattr_handler **handlers,
48b32a35 768 const char *name)
1da177e4 769{
94d09a98 770 const struct xattr_handler *xah;
bd4c625c 771
48b32a35
JM
772 if (!handlers)
773 return NULL;
bd4c625c 774
48b32a35 775 for_each_xattr_handler(handlers, xah) {
98e9cb57
AG
776 const char *prefix = xattr_prefix(xah);
777 if (strncmp(prefix, name, strlen(prefix)) == 0)
48b32a35 778 break;
bd4c625c
LT
779 }
780
48b32a35 781 return xah;
bd4c625c 782}
1da177e4 783
48b32a35 784struct listxattr_buf {
4acf381e 785 struct dir_context ctx;
48b32a35
JM
786 size_t size;
787 size_t pos;
788 char *buf;
431547b3 789 struct dentry *dentry;
1da177e4
LT
790};
791
ac7576f4
MS
792static int listxattr_filler(struct dir_context *ctx, const char *name,
793 int namelen, loff_t offset, u64 ino,
794 unsigned int d_type)
1da177e4 795{
ac7576f4
MS
796 struct listxattr_buf *b =
797 container_of(ctx, struct listxattr_buf, ctx);
48b32a35 798 size_t size;
f3fb9e27 799
48b32a35
JM
800 if (name[0] != '.' ||
801 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
94d09a98 802 const struct xattr_handler *handler;
f3fb9e27 803
431547b3 804 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
48b32a35 805 name);
764a5c6b
AG
806 if (!handler /* Unsupported xattr name */ ||
807 (handler->list && !handler->list(b->dentry)))
48b32a35 808 return 0;
764a5c6b 809 size = namelen + 1;
48b32a35 810 if (b->buf) {
a13f085d
JH
811 if (b->pos + size > b->size) {
812 b->pos = -ERANGE;
48b32a35 813 return -ERANGE;
a13f085d 814 }
764a5c6b
AG
815 memcpy(b->buf + b->pos, name, namelen);
816 b->buf[b->pos + namelen] = 0;
bd4c625c 817 }
48b32a35
JM
818 b->pos += size;
819 }
bd4c625c 820 return 0;
1da177e4 821}
bd4c625c 822
1da177e4
LT
823/*
824 * Inode operation listxattr()
825 *
48b32a35
JM
826 * We totally ignore the generic listxattr here because it would be stupid
827 * not to. Since the xattrs are organized in a directory, we can just
828 * readdir to find them.
1da177e4 829 */
bd4c625c 830ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
1da177e4 831{
bd4c625c
LT
832 struct dentry *dir;
833 int err = 0;
48b32a35 834 struct listxattr_buf buf = {
4acf381e 835 .ctx.actor = listxattr_filler,
431547b3 836 .dentry = dentry,
48b32a35
JM
837 .buf = buffer,
838 .size = buffer ? size : 0,
839 };
bd4c625c 840
2b0143b5 841 if (d_really_is_negative(dentry))
bd4c625c
LT
842 return -EINVAL;
843
677c9b2e 844 if (!dentry->d_sb->s_xattr ||
2b0143b5 845 get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
bd4c625c
LT
846 return -EOPNOTSUPP;
847
2b0143b5 848 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
bd4c625c
LT
849 if (IS_ERR(dir)) {
850 err = PTR_ERR(dir);
851 if (err == -ENODATA)
48b32a35 852 err = 0; /* Not an error if there aren't any xattrs */
bd4c625c
LT
853 goto out;
854 }
855
5955102c 856 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
2b0143b5 857 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
5955102c 858 inode_unlock(d_inode(dir));
bd4c625c 859
48b32a35
JM
860 if (!err)
861 err = buf.pos;
bd4c625c 862
3227e14c 863 dput(dir);
8b6dd72a 864out:
bd4c625c 865 return err;
1da177e4
LT
866}
867
a72bdb1c 868static int create_privroot(struct dentry *dentry)
1da177e4 869{
a72bdb1c 870 int err;
2b0143b5 871 struct inode *inode = d_inode(dentry->d_parent);
f3fb9e27 872
5955102c 873 WARN_ON_ONCE(!inode_is_locked(inode));
5a6059c3 874
6c17675e 875 err = xattr_mkdir(inode, dentry, 0700);
2b0143b5 876 if (err || d_really_is_negative(dentry)) {
edcc37a0
AV
877 reiserfs_warning(dentry->d_sb, "jdm-20006",
878 "xattrs/ACLs enabled and couldn't "
879 "find/create .reiserfs_priv. "
880 "Failing mount.");
881 return -EOPNOTSUPP;
bd4c625c
LT
882 }
883
2b0143b5 884 d_inode(dentry)->i_flags |= S_PRIVATE;
edcc37a0
AV
885 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
886 "storage.\n", PRIVROOT_NAME);
bd4c625c 887
edcc37a0 888 return 0;
1da177e4
LT
889}
890
12abb35a
JM
891#else
892int __init reiserfs_xattr_register_handlers(void) { return 0; }
893void reiserfs_xattr_unregister_handlers(void) {}
894static int create_privroot(struct dentry *dentry) { return 0; }
895#endif
896
897/* Actual operations that are exported to VFS-land */
da02eb72 898static const struct xattr_handler *reiserfs_xattr_handlers[] = {
12abb35a
JM
899#ifdef CONFIG_REISERFS_FS_XATTR
900 &reiserfs_xattr_user_handler,
901 &reiserfs_xattr_trusted_handler,
902#endif
903#ifdef CONFIG_REISERFS_FS_SECURITY
904 &reiserfs_xattr_security_handler,
905#endif
906#ifdef CONFIG_REISERFS_FS_POSIX_ACL
47f70d08
CH
907 &posix_acl_access_xattr_handler,
908 &posix_acl_default_xattr_handler,
12abb35a
JM
909#endif
910 NULL
911};
912
a72bdb1c 913static int xattr_mount_check(struct super_block *s)
1da177e4 914{
098297b2
JM
915 /*
916 * We need generation numbers to ensure that the oid mapping is correct
917 * v3.5 filesystems don't have them.
918 */
48b32a35
JM
919 if (old_format_only(s)) {
920 if (reiserfs_xattrs_optional(s)) {
098297b2
JM
921 /*
922 * Old format filesystem, but optional xattrs have
923 * been enabled. Error out.
924 */
48b32a35
JM
925 reiserfs_warning(s, "jdm-2005",
926 "xattrs/ACLs not supported "
927 "on pre-v3.6 format filesystems. "
928 "Failing mount.");
929 return -EOPNOTSUPP;
930 }
a72bdb1c
JM
931 }
932
933 return 0;
1da177e4
LT
934}
935
10556cb2 936int reiserfs_permission(struct inode *inode, int mask)
b83674c0
JM
937{
938 /*
939 * We don't do permission checks on the internal objects.
940 * Permissions are determined by the "owning" object.
941 */
942 if (IS_PRIVATE(inode))
943 return 0;
944
2830ba7f 945 return generic_permission(inode, mask);
b83674c0
JM
946}
947
0b728e19 948static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
1da177e4 949{
cac36f70 950 return -EPERM;
1da177e4
LT
951}
952
e16404ed 953static const struct dentry_operations xattr_lookup_poison_ops = {
cac36f70 954 .d_revalidate = xattr_hide_revalidate,
1da177e4
LT
955};
956
edcc37a0
AV
957int reiserfs_lookup_privroot(struct super_block *s)
958{
959 struct dentry *dentry;
960 int err = 0;
961
962 /* If we don't have the privroot located yet - go find it */
5955102c 963 inode_lock(d_inode(s->s_root));
edcc37a0
AV
964 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
965 strlen(PRIVROOT_NAME));
966 if (!IS_ERR(dentry)) {
967 REISERFS_SB(s)->priv_root = dentry;
fb045adb 968 d_set_d_op(dentry, &xattr_lookup_poison_ops);
2b0143b5
DH
969 if (d_really_is_positive(dentry))
970 d_inode(dentry)->i_flags |= S_PRIVATE;
edcc37a0
AV
971 } else
972 err = PTR_ERR(dentry);
5955102c 973 inode_unlock(d_inode(s->s_root));
edcc37a0
AV
974
975 return err;
976}
977
098297b2
JM
978/*
979 * We need to take a copy of the mount flags since things like
1751e8a6 980 * SB_RDONLY don't get set until *after* we're called.
098297b2
JM
981 * mount_flags != mount_options
982 */
bd4c625c 983int reiserfs_xattr_init(struct super_block *s, int mount_flags)
1da177e4 984{
bd4c625c 985 int err = 0;
ab17c4f0 986 struct dentry *privroot = REISERFS_SB(s)->priv_root;
bd4c625c 987
a72bdb1c
JM
988 err = xattr_mount_check(s);
989 if (err)
bd4c625c 990 goto error;
bd4c625c 991
1751e8a6 992 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
5955102c 993 inode_lock(d_inode(s->s_root));
edcc37a0 994 err = create_privroot(REISERFS_SB(s)->priv_root);
5955102c 995 inode_unlock(d_inode(s->s_root));
bd4c625c 996 }
ab17c4f0 997
2b0143b5 998 if (d_really_is_positive(privroot)) {
48b32a35 999 s->s_xattr = reiserfs_xattr_handlers;
5955102c 1000 inode_lock(d_inode(privroot));
ab17c4f0
JM
1001 if (!REISERFS_SB(s)->xattr_root) {
1002 struct dentry *dentry;
f3fb9e27 1003
ab17c4f0
JM
1004 dentry = lookup_one_len(XAROOT_NAME, privroot,
1005 strlen(XAROOT_NAME));
1006 if (!IS_ERR(dentry))
1007 REISERFS_SB(s)->xattr_root = dentry;
1008 else
1009 err = PTR_ERR(dentry);
1010 }
5955102c 1011 inode_unlock(d_inode(privroot));
ab17c4f0 1012 }
48b32a35 1013
a72bdb1c 1014error:
bd4c625c 1015 if (err) {
a228bf8f
JM
1016 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1017 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
bd4c625c
LT
1018 }
1019
1751e8a6 1020 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
bd4c625c 1021 if (reiserfs_posixacl(s))
1751e8a6 1022 s->s_flags |= SB_POSIXACL;
ab17c4f0 1023 else
1751e8a6 1024 s->s_flags &= ~SB_POSIXACL;
bd4c625c
LT
1025
1026 return err;
1da177e4 1027}