[XFS] Cleanup in XFS after recent get_block_t interface tweaks.
[linux-2.6.git] / fs / xfs / linux-2.6 / xfs_iops.c
blob149237304fb6b59e457037e06ae2325ee17193ba
1 /*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_bit.h"
21 #include "xfs_log.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_dir.h"
27 #include "xfs_dir2.h"
28 #include "xfs_alloc.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_quota.h"
31 #include "xfs_mount.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir_sf.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_attr_sf.h"
38 #include "xfs_dinode.h"
39 #include "xfs_inode.h"
40 #include "xfs_bmap.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_rtalloc.h"
44 #include "xfs_error.h"
45 #include "xfs_itable.h"
46 #include "xfs_rw.h"
47 #include "xfs_acl.h"
48 #include "xfs_cap.h"
49 #include "xfs_mac.h"
50 #include "xfs_attr.h"
51 #include "xfs_buf_item.h"
52 #include "xfs_utils.h"
54 #include <linux/capability.h>
55 #include <linux/xattr.h>
56 #include <linux/namei.h>
57 #include <linux/security.h>
60 * Get a XFS inode from a given vnode.
62 xfs_inode_t *
63 xfs_vtoi(
64 struct vnode *vp)
66 bhv_desc_t *bdp;
68 bdp = bhv_lookup_range(VN_BHV_HEAD(vp),
69 VNODE_POSITION_XFS, VNODE_POSITION_XFS);
70 if (unlikely(bdp == NULL))
71 return NULL;
72 return XFS_BHVTOI(bdp);
76 * Bring the atime in the XFS inode uptodate.
77 * Used before logging the inode to disk or when the Linux inode goes away.
79 void
80 xfs_synchronize_atime(
81 xfs_inode_t *ip)
83 vnode_t *vp;
85 vp = XFS_ITOV_NULL(ip);
86 if (vp) {
87 struct inode *inode = &vp->v_inode;
88 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
89 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
94 * Change the requested timestamp in the given inode.
95 * We don't lock across timestamp updates, and we don't log them but
96 * we do record the fact that there is dirty information in core.
98 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
99 * with XFS_ICHGTIME_ACC to be sure that access time
100 * update will take. Calling first with XFS_ICHGTIME_ACC
101 * and then XFS_ICHGTIME_MOD may fail to modify the access
102 * timestamp if the filesystem is mounted noacctm.
104 void
105 xfs_ichgtime(
106 xfs_inode_t *ip,
107 int flags)
109 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
110 timespec_t tv;
112 nanotime(&tv);
113 if (flags & XFS_ICHGTIME_MOD) {
114 inode->i_mtime = tv;
115 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
116 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
118 if (flags & XFS_ICHGTIME_ACC) {
119 inode->i_atime = tv;
120 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
121 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
123 if (flags & XFS_ICHGTIME_CHG) {
124 inode->i_ctime = tv;
125 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
126 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
130 * We update the i_update_core field _after_ changing
131 * the timestamps in order to coordinate properly with
132 * xfs_iflush() so that we don't lose timestamp updates.
133 * This keeps us from having to hold the inode lock
134 * while doing this. We use the SYNCHRONIZE macro to
135 * ensure that the compiler does not reorder the update
136 * of i_update_core above the timestamp updates above.
138 SYNCHRONIZE();
139 ip->i_update_core = 1;
140 if (!(inode->i_state & I_LOCK))
141 mark_inode_dirty_sync(inode);
145 * Variant on the above which avoids querying the system clock
146 * in situations where we know the Linux inode timestamps have
147 * just been updated (and so we can update our inode cheaply).
149 void
150 xfs_ichgtime_fast(
151 xfs_inode_t *ip,
152 struct inode *inode,
153 int flags)
155 timespec_t *tvp;
158 * Atime updates for read() & friends are handled lazily now, and
159 * explicit updates must go through xfs_ichgtime()
161 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
164 * We're not supposed to change timestamps in readonly-mounted
165 * filesystems. Throw it away if anyone asks us.
167 if (unlikely(IS_RDONLY(inode)))
168 return;
170 if (flags & XFS_ICHGTIME_MOD) {
171 tvp = &inode->i_mtime;
172 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
173 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
175 if (flags & XFS_ICHGTIME_CHG) {
176 tvp = &inode->i_ctime;
177 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
178 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
182 * We update the i_update_core field _after_ changing
183 * the timestamps in order to coordinate properly with
184 * xfs_iflush() so that we don't lose timestamp updates.
185 * This keeps us from having to hold the inode lock
186 * while doing this. We use the SYNCHRONIZE macro to
187 * ensure that the compiler does not reorder the update
188 * of i_update_core above the timestamp updates above.
190 SYNCHRONIZE();
191 ip->i_update_core = 1;
192 if (!(inode->i_state & I_LOCK))
193 mark_inode_dirty_sync(inode);
198 * Pull the link count and size up from the xfs inode to the linux inode
200 STATIC void
201 xfs_validate_fields(
202 struct inode *ip,
203 struct vattr *vattr)
205 vnode_t *vp = vn_from_inode(ip);
206 int error;
208 vattr->va_mask = XFS_AT_NLINK|XFS_AT_SIZE|XFS_AT_NBLOCKS;
209 VOP_GETATTR(vp, vattr, ATTR_LAZY, NULL, error);
210 if (likely(!error)) {
211 ip->i_nlink = vattr->va_nlink;
212 ip->i_blocks = vattr->va_nblocks;
214 /* we're under i_sem so i_size can't change under us */
215 if (i_size_read(ip) != vattr->va_size)
216 i_size_write(ip, vattr->va_size);
221 * Hook in SELinux. This is not quite correct yet, what we really need
222 * here (as we do for default ACLs) is a mechanism by which creation of
223 * these attrs can be journalled at inode creation time (along with the
224 * inode, of course, such that log replay can't cause these to be lost).
226 STATIC int
227 xfs_init_security(
228 struct vnode *vp,
229 struct inode *dir)
231 struct inode *ip = vn_to_inode(vp);
232 size_t length;
233 void *value;
234 char *name;
235 int error;
237 error = security_inode_init_security(ip, dir, &name, &value, &length);
238 if (error) {
239 if (error == -EOPNOTSUPP)
240 return 0;
241 return -error;
244 VOP_ATTR_SET(vp, name, value, length, ATTR_SECURE, NULL, error);
245 if (!error)
246 VMODIFY(vp);
248 kfree(name);
249 kfree(value);
250 return error;
254 * Determine whether a process has a valid fs_struct (kernel daemons
255 * like knfsd don't have an fs_struct).
257 * XXX(hch): nfsd is broken, better fix it instead.
259 STATIC inline int
260 xfs_has_fs_struct(struct task_struct *task)
262 return (task->fs != init_task.fs);
265 STATIC inline void
266 xfs_cleanup_inode(
267 vnode_t *dvp,
268 vnode_t *vp,
269 struct dentry *dentry,
270 int mode)
272 struct dentry teardown = {};
273 int error;
275 /* Oh, the horror.
276 * If we can't add the ACL or we fail in
277 * xfs_init_security we must back out.
278 * ENOSPC can hit here, among other things.
280 teardown.d_inode = vn_to_inode(vp);
281 teardown.d_name = dentry->d_name;
283 if (S_ISDIR(mode))
284 VOP_RMDIR(dvp, &teardown, NULL, error);
285 else
286 VOP_REMOVE(dvp, &teardown, NULL, error);
287 VN_RELE(vp);
290 STATIC int
291 xfs_vn_mknod(
292 struct inode *dir,
293 struct dentry *dentry,
294 int mode,
295 dev_t rdev)
297 struct inode *ip;
298 vattr_t vattr = { 0 };
299 vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
300 xfs_acl_t *default_acl = NULL;
301 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
302 int error;
305 * Irix uses Missed'em'V split, but doesn't want to see
306 * the upper 5 bits of (14bit) major.
308 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
309 return -EINVAL;
311 if (unlikely(test_default_acl && test_default_acl(dvp))) {
312 if (!_ACL_ALLOC(default_acl)) {
313 return -ENOMEM;
315 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
316 _ACL_FREE(default_acl);
317 default_acl = NULL;
321 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
322 mode &= ~current->fs->umask;
324 vattr.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
325 vattr.va_mode = mode;
327 switch (mode & S_IFMT) {
328 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
329 vattr.va_rdev = sysv_encode_dev(rdev);
330 vattr.va_mask |= XFS_AT_RDEV;
331 /*FALLTHROUGH*/
332 case S_IFREG:
333 VOP_CREATE(dvp, dentry, &vattr, &vp, NULL, error);
334 break;
335 case S_IFDIR:
336 VOP_MKDIR(dvp, dentry, &vattr, &vp, NULL, error);
337 break;
338 default:
339 error = EINVAL;
340 break;
343 if (unlikely(!error)) {
344 error = xfs_init_security(vp, dir);
345 if (error)
346 xfs_cleanup_inode(dvp, vp, dentry, mode);
349 if (unlikely(default_acl)) {
350 if (!error) {
351 error = _ACL_INHERIT(vp, &vattr, default_acl);
352 if (!error)
353 VMODIFY(vp);
354 else
355 xfs_cleanup_inode(dvp, vp, dentry, mode);
357 _ACL_FREE(default_acl);
360 if (likely(!error)) {
361 ASSERT(vp);
362 ip = vn_to_inode(vp);
364 if (S_ISCHR(mode) || S_ISBLK(mode))
365 ip->i_rdev = rdev;
366 else if (S_ISDIR(mode))
367 xfs_validate_fields(ip, &vattr);
368 d_instantiate(dentry, ip);
369 xfs_validate_fields(dir, &vattr);
371 return -error;
374 STATIC int
375 xfs_vn_create(
376 struct inode *dir,
377 struct dentry *dentry,
378 int mode,
379 struct nameidata *nd)
381 return xfs_vn_mknod(dir, dentry, mode, 0);
384 STATIC int
385 xfs_vn_mkdir(
386 struct inode *dir,
387 struct dentry *dentry,
388 int mode)
390 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
393 STATIC struct dentry *
394 xfs_vn_lookup(
395 struct inode *dir,
396 struct dentry *dentry,
397 struct nameidata *nd)
399 struct vnode *vp = vn_from_inode(dir), *cvp;
400 int error;
402 if (dentry->d_name.len >= MAXNAMELEN)
403 return ERR_PTR(-ENAMETOOLONG);
405 VOP_LOOKUP(vp, dentry, &cvp, 0, NULL, NULL, error);
406 if (error) {
407 if (unlikely(error != ENOENT))
408 return ERR_PTR(-error);
409 d_add(dentry, NULL);
410 return NULL;
413 return d_splice_alias(vn_to_inode(cvp), dentry);
416 STATIC int
417 xfs_vn_link(
418 struct dentry *old_dentry,
419 struct inode *dir,
420 struct dentry *dentry)
422 struct inode *ip; /* inode of guy being linked to */
423 vnode_t *tdvp; /* target directory for new name/link */
424 vnode_t *vp; /* vp of name being linked */
425 vattr_t vattr;
426 int error;
428 ip = old_dentry->d_inode; /* inode being linked to */
429 if (S_ISDIR(ip->i_mode))
430 return -EPERM;
432 tdvp = vn_from_inode(dir);
433 vp = vn_from_inode(ip);
435 VOP_LINK(tdvp, vp, dentry, NULL, error);
436 if (likely(!error)) {
437 VMODIFY(tdvp);
438 VN_HOLD(vp);
439 xfs_validate_fields(ip, &vattr);
440 d_instantiate(dentry, ip);
442 return -error;
445 STATIC int
446 xfs_vn_unlink(
447 struct inode *dir,
448 struct dentry *dentry)
450 struct inode *inode;
451 vnode_t *dvp; /* directory containing name to remove */
452 vattr_t vattr;
453 int error;
455 inode = dentry->d_inode;
456 dvp = vn_from_inode(dir);
458 VOP_REMOVE(dvp, dentry, NULL, error);
459 if (likely(!error)) {
460 xfs_validate_fields(dir, &vattr); /* size needs update */
461 xfs_validate_fields(inode, &vattr);
463 return -error;
466 STATIC int
467 xfs_vn_symlink(
468 struct inode *dir,
469 struct dentry *dentry,
470 const char *symname)
472 struct inode *ip;
473 vattr_t vattr = { 0 };
474 vnode_t *dvp; /* directory containing name of symlink */
475 vnode_t *cvp; /* used to lookup symlink to put in dentry */
476 int error;
478 dvp = vn_from_inode(dir);
479 cvp = NULL;
481 vattr.va_mode = S_IFLNK |
482 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
483 vattr.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
485 error = 0;
486 VOP_SYMLINK(dvp, dentry, &vattr, (char *)symname, &cvp, NULL, error);
487 if (likely(!error && cvp)) {
488 error = xfs_init_security(cvp, dir);
489 if (likely(!error)) {
490 ip = vn_to_inode(cvp);
491 d_instantiate(dentry, ip);
492 xfs_validate_fields(dir, &vattr);
493 xfs_validate_fields(ip, &vattr);
494 } else {
495 xfs_cleanup_inode(dvp, cvp, dentry, 0);
498 return -error;
501 STATIC int
502 xfs_vn_rmdir(
503 struct inode *dir,
504 struct dentry *dentry)
506 struct inode *inode = dentry->d_inode;
507 vnode_t *dvp = vn_from_inode(dir);
508 vattr_t vattr;
509 int error;
511 VOP_RMDIR(dvp, dentry, NULL, error);
512 if (likely(!error)) {
513 xfs_validate_fields(inode, &vattr);
514 xfs_validate_fields(dir, &vattr);
516 return -error;
519 STATIC int
520 xfs_vn_rename(
521 struct inode *odir,
522 struct dentry *odentry,
523 struct inode *ndir,
524 struct dentry *ndentry)
526 struct inode *new_inode = ndentry->d_inode;
527 vnode_t *fvp; /* from directory */
528 vnode_t *tvp; /* target directory */
529 vattr_t vattr;
530 int error;
532 fvp = vn_from_inode(odir);
533 tvp = vn_from_inode(ndir);
535 VOP_RENAME(fvp, odentry, tvp, ndentry, NULL, error);
536 if (likely(!error)) {
537 if (new_inode)
538 xfs_validate_fields(new_inode, &vattr);
539 xfs_validate_fields(odir, &vattr);
540 if (ndir != odir)
541 xfs_validate_fields(ndir, &vattr);
543 return -error;
547 * careful here - this function can get called recursively, so
548 * we need to be very careful about how much stack we use.
549 * uio is kmalloced for this reason...
551 STATIC void *
552 xfs_vn_follow_link(
553 struct dentry *dentry,
554 struct nameidata *nd)
556 vnode_t *vp;
557 uio_t *uio;
558 iovec_t iov;
559 int error;
560 char *link;
562 ASSERT(dentry);
563 ASSERT(nd);
565 link = (char *)kmalloc(MAXPATHLEN+1, GFP_KERNEL);
566 if (!link) {
567 nd_set_link(nd, ERR_PTR(-ENOMEM));
568 return NULL;
571 uio = (uio_t *)kmalloc(sizeof(uio_t), GFP_KERNEL);
572 if (!uio) {
573 kfree(link);
574 nd_set_link(nd, ERR_PTR(-ENOMEM));
575 return NULL;
578 vp = vn_from_inode(dentry->d_inode);
580 iov.iov_base = link;
581 iov.iov_len = MAXPATHLEN;
583 uio->uio_iov = &iov;
584 uio->uio_offset = 0;
585 uio->uio_segflg = UIO_SYSSPACE;
586 uio->uio_resid = MAXPATHLEN;
587 uio->uio_iovcnt = 1;
589 VOP_READLINK(vp, uio, 0, NULL, error);
590 if (error) {
591 kfree(link);
592 link = ERR_PTR(-error);
593 } else {
594 link[MAXPATHLEN - uio->uio_resid] = '\0';
596 kfree(uio);
598 nd_set_link(nd, link);
599 return NULL;
602 STATIC void
603 xfs_vn_put_link(
604 struct dentry *dentry,
605 struct nameidata *nd,
606 void *p)
608 char *s = nd_get_link(nd);
610 if (!IS_ERR(s))
611 kfree(s);
614 #ifdef CONFIG_XFS_POSIX_ACL
615 STATIC int
616 xfs_vn_permission(
617 struct inode *inode,
618 int mode,
619 struct nameidata *nd)
621 vnode_t *vp = vn_from_inode(inode);
622 int error;
624 mode <<= 6; /* convert from linux to vnode access bits */
625 VOP_ACCESS(vp, mode, NULL, error);
626 return -error;
628 #else
629 #define xfs_vn_permission NULL
630 #endif
632 STATIC int
633 xfs_vn_getattr(
634 struct vfsmount *mnt,
635 struct dentry *dentry,
636 struct kstat *stat)
638 struct inode *inode = dentry->d_inode;
639 vnode_t *vp = vn_from_inode(inode);
640 int error = 0;
642 if (unlikely(vp->v_flag & VMODIFIED))
643 error = vn_revalidate(vp);
644 if (!error)
645 generic_fillattr(inode, stat);
646 return 0;
649 STATIC int
650 xfs_vn_setattr(
651 struct dentry *dentry,
652 struct iattr *attr)
654 struct inode *inode = dentry->d_inode;
655 unsigned int ia_valid = attr->ia_valid;
656 vnode_t *vp = vn_from_inode(inode);
657 vattr_t vattr = { 0 };
658 int flags = 0;
659 int error;
661 if (ia_valid & ATTR_UID) {
662 vattr.va_mask |= XFS_AT_UID;
663 vattr.va_uid = attr->ia_uid;
665 if (ia_valid & ATTR_GID) {
666 vattr.va_mask |= XFS_AT_GID;
667 vattr.va_gid = attr->ia_gid;
669 if (ia_valid & ATTR_SIZE) {
670 vattr.va_mask |= XFS_AT_SIZE;
671 vattr.va_size = attr->ia_size;
673 if (ia_valid & ATTR_ATIME) {
674 vattr.va_mask |= XFS_AT_ATIME;
675 vattr.va_atime = attr->ia_atime;
676 if (ia_valid & ATTR_ATIME_SET)
677 inode->i_atime = attr->ia_atime;
679 if (ia_valid & ATTR_MTIME) {
680 vattr.va_mask |= XFS_AT_MTIME;
681 vattr.va_mtime = attr->ia_mtime;
683 if (ia_valid & ATTR_CTIME) {
684 vattr.va_mask |= XFS_AT_CTIME;
685 vattr.va_ctime = attr->ia_ctime;
687 if (ia_valid & ATTR_MODE) {
688 vattr.va_mask |= XFS_AT_MODE;
689 vattr.va_mode = attr->ia_mode;
690 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
691 inode->i_mode &= ~S_ISGID;
694 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
695 flags |= ATTR_UTIME;
696 #ifdef ATTR_NO_BLOCK
697 if ((ia_valid & ATTR_NO_BLOCK))
698 flags |= ATTR_NONBLOCK;
699 #endif
701 VOP_SETATTR(vp, &vattr, flags, NULL, error);
702 if (likely(!error))
703 __vn_revalidate(vp, &vattr);
704 return -error;
707 STATIC void
708 xfs_vn_truncate(
709 struct inode *inode)
711 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
714 STATIC int
715 xfs_vn_setxattr(
716 struct dentry *dentry,
717 const char *name,
718 const void *data,
719 size_t size,
720 int flags)
722 vnode_t *vp = vn_from_inode(dentry->d_inode);
723 char *attr = (char *)name;
724 attrnames_t *namesp;
725 int xflags = 0;
726 int error;
728 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
729 if (!namesp)
730 return -EOPNOTSUPP;
731 attr += namesp->attr_namelen;
732 error = namesp->attr_capable(vp, NULL);
733 if (error)
734 return error;
736 /* Convert Linux syscall to XFS internal ATTR flags */
737 if (flags & XATTR_CREATE)
738 xflags |= ATTR_CREATE;
739 if (flags & XATTR_REPLACE)
740 xflags |= ATTR_REPLACE;
741 xflags |= namesp->attr_flag;
742 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
745 STATIC ssize_t
746 xfs_vn_getxattr(
747 struct dentry *dentry,
748 const char *name,
749 void *data,
750 size_t size)
752 vnode_t *vp = vn_from_inode(dentry->d_inode);
753 char *attr = (char *)name;
754 attrnames_t *namesp;
755 int xflags = 0;
756 ssize_t error;
758 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
759 if (!namesp)
760 return -EOPNOTSUPP;
761 attr += namesp->attr_namelen;
762 error = namesp->attr_capable(vp, NULL);
763 if (error)
764 return error;
766 /* Convert Linux syscall to XFS internal ATTR flags */
767 if (!size) {
768 xflags |= ATTR_KERNOVAL;
769 data = NULL;
771 xflags |= namesp->attr_flag;
772 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
775 STATIC ssize_t
776 xfs_vn_listxattr(
777 struct dentry *dentry,
778 char *data,
779 size_t size)
781 vnode_t *vp = vn_from_inode(dentry->d_inode);
782 int error, xflags = ATTR_KERNAMELS;
783 ssize_t result;
785 if (!size)
786 xflags |= ATTR_KERNOVAL;
787 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
789 error = attr_generic_list(vp, data, size, xflags, &result);
790 if (error < 0)
791 return error;
792 return result;
795 STATIC int
796 xfs_vn_removexattr(
797 struct dentry *dentry,
798 const char *name)
800 vnode_t *vp = vn_from_inode(dentry->d_inode);
801 char *attr = (char *)name;
802 attrnames_t *namesp;
803 int xflags = 0;
804 int error;
806 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
807 if (!namesp)
808 return -EOPNOTSUPP;
809 attr += namesp->attr_namelen;
810 error = namesp->attr_capable(vp, NULL);
811 if (error)
812 return error;
813 xflags |= namesp->attr_flag;
814 return namesp->attr_remove(vp, attr, xflags);
818 struct inode_operations xfs_inode_operations = {
819 .permission = xfs_vn_permission,
820 .truncate = xfs_vn_truncate,
821 .getattr = xfs_vn_getattr,
822 .setattr = xfs_vn_setattr,
823 .setxattr = xfs_vn_setxattr,
824 .getxattr = xfs_vn_getxattr,
825 .listxattr = xfs_vn_listxattr,
826 .removexattr = xfs_vn_removexattr,
829 struct inode_operations xfs_dir_inode_operations = {
830 .create = xfs_vn_create,
831 .lookup = xfs_vn_lookup,
832 .link = xfs_vn_link,
833 .unlink = xfs_vn_unlink,
834 .symlink = xfs_vn_symlink,
835 .mkdir = xfs_vn_mkdir,
836 .rmdir = xfs_vn_rmdir,
837 .mknod = xfs_vn_mknod,
838 .rename = xfs_vn_rename,
839 .permission = xfs_vn_permission,
840 .getattr = xfs_vn_getattr,
841 .setattr = xfs_vn_setattr,
842 .setxattr = xfs_vn_setxattr,
843 .getxattr = xfs_vn_getxattr,
844 .listxattr = xfs_vn_listxattr,
845 .removexattr = xfs_vn_removexattr,
848 struct inode_operations xfs_symlink_inode_operations = {
849 .readlink = generic_readlink,
850 .follow_link = xfs_vn_follow_link,
851 .put_link = xfs_vn_put_link,
852 .permission = xfs_vn_permission,
853 .getattr = xfs_vn_getattr,
854 .setattr = xfs_vn_setattr,
855 .setxattr = xfs_vn_setxattr,
856 .getxattr = xfs_vn_getxattr,
857 .listxattr = xfs_vn_listxattr,
858 .removexattr = xfs_vn_removexattr,