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