allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / fs / xfs / linux-2.6 / xfs_iops.c
blob0b5fa124bef2a8d53b88af18169020df11f0a68c
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_dir2.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_bmap.h"
39 #include "xfs_btree.h"
40 #include "xfs_ialloc.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_itable.h"
44 #include "xfs_rw.h"
45 #include "xfs_acl.h"
46 #include "xfs_attr.h"
47 #include "xfs_buf_item.h"
48 #include "xfs_utils.h"
50 #include <linux/capability.h>
51 #include <linux/xattr.h>
52 #include <linux/namei.h>
53 #include <linux/security.h>
56 * Get a XFS inode from a given vnode.
58 xfs_inode_t *
59 xfs_vtoi(
60 bhv_vnode_t *vp)
62 bhv_desc_t *bdp;
64 bdp = bhv_lookup_range(VN_BHV_HEAD(vp),
65 VNODE_POSITION_XFS, VNODE_POSITION_XFS);
66 if (unlikely(bdp == NULL))
67 return NULL;
68 return XFS_BHVTOI(bdp);
72 * Bring the atime in the XFS inode uptodate.
73 * Used before logging the inode to disk or when the Linux inode goes away.
75 void
76 xfs_synchronize_atime(
77 xfs_inode_t *ip)
79 bhv_vnode_t *vp;
81 vp = XFS_ITOV_NULL(ip);
82 if (vp) {
83 struct inode *inode = &vp->v_inode;
84 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
85 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
90 * Change the requested timestamp in the given inode.
91 * We don't lock across timestamp updates, and we don't log them but
92 * we do record the fact that there is dirty information in core.
94 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
95 * with XFS_ICHGTIME_ACC to be sure that access time
96 * update will take. Calling first with XFS_ICHGTIME_ACC
97 * and then XFS_ICHGTIME_MOD may fail to modify the access
98 * timestamp if the filesystem is mounted noacctm.
100 void
101 xfs_ichgtime(
102 xfs_inode_t *ip,
103 int flags)
105 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
106 timespec_t tv;
108 nanotime(&tv);
109 if (flags & XFS_ICHGTIME_MOD) {
110 inode->i_mtime = tv;
111 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
112 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
114 if (flags & XFS_ICHGTIME_ACC) {
115 inode->i_atime = tv;
116 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
117 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
119 if (flags & XFS_ICHGTIME_CHG) {
120 inode->i_ctime = tv;
121 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
122 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
126 * We update the i_update_core field _after_ changing
127 * the timestamps in order to coordinate properly with
128 * xfs_iflush() so that we don't lose timestamp updates.
129 * This keeps us from having to hold the inode lock
130 * while doing this. We use the SYNCHRONIZE macro to
131 * ensure that the compiler does not reorder the update
132 * of i_update_core above the timestamp updates above.
134 SYNCHRONIZE();
135 ip->i_update_core = 1;
136 if (!(inode->i_state & I_LOCK))
137 mark_inode_dirty_sync(inode);
141 * Variant on the above which avoids querying the system clock
142 * in situations where we know the Linux inode timestamps have
143 * just been updated (and so we can update our inode cheaply).
145 void
146 xfs_ichgtime_fast(
147 xfs_inode_t *ip,
148 struct inode *inode,
149 int flags)
151 timespec_t *tvp;
154 * Atime updates for read() & friends are handled lazily now, and
155 * explicit updates must go through xfs_ichgtime()
157 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
160 * We're not supposed to change timestamps in readonly-mounted
161 * filesystems. Throw it away if anyone asks us.
163 if (unlikely(IS_RDONLY(inode)))
164 return;
166 if (flags & XFS_ICHGTIME_MOD) {
167 tvp = &inode->i_mtime;
168 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
169 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
171 if (flags & XFS_ICHGTIME_CHG) {
172 tvp = &inode->i_ctime;
173 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
174 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
178 * We update the i_update_core field _after_ changing
179 * the timestamps in order to coordinate properly with
180 * xfs_iflush() so that we don't lose timestamp updates.
181 * This keeps us from having to hold the inode lock
182 * while doing this. We use the SYNCHRONIZE macro to
183 * ensure that the compiler does not reorder the update
184 * of i_update_core above the timestamp updates above.
186 SYNCHRONIZE();
187 ip->i_update_core = 1;
188 if (!(inode->i_state & I_LOCK))
189 mark_inode_dirty_sync(inode);
194 * Pull the link count and size up from the xfs inode to the linux inode
196 STATIC void
197 xfs_validate_fields(
198 struct inode *ip,
199 bhv_vattr_t *vattr)
201 vattr->va_mask = XFS_AT_NLINK|XFS_AT_SIZE|XFS_AT_NBLOCKS;
202 if (!bhv_vop_getattr(vn_from_inode(ip), vattr, ATTR_LAZY, NULL)) {
203 ip->i_nlink = vattr->va_nlink;
204 ip->i_blocks = vattr->va_nblocks;
206 /* we're under i_sem so i_size can't change under us */
207 if (i_size_read(ip) != vattr->va_size)
208 i_size_write(ip, vattr->va_size);
213 * Hook in SELinux. This is not quite correct yet, what we really need
214 * here (as we do for default ACLs) is a mechanism by which creation of
215 * these attrs can be journalled at inode creation time (along with the
216 * inode, of course, such that log replay can't cause these to be lost).
218 STATIC int
219 xfs_init_security(
220 bhv_vnode_t *vp,
221 struct inode *dir)
223 struct inode *ip = vn_to_inode(vp);
224 size_t length;
225 void *value;
226 char *name;
227 int error;
229 error = security_inode_init_security(ip, dir, &name, &value, &length);
230 if (error) {
231 if (error == -EOPNOTSUPP)
232 return 0;
233 return -error;
236 error = bhv_vop_attr_set(vp, name, value, length, ATTR_SECURE, NULL);
237 if (!error)
238 VMODIFY(vp);
240 kfree(name);
241 kfree(value);
242 return error;
246 * Determine whether a process has a valid fs_struct (kernel daemons
247 * like knfsd don't have an fs_struct).
249 * XXX(hch): nfsd is broken, better fix it instead.
251 STATIC_INLINE int
252 xfs_has_fs_struct(struct task_struct *task)
254 return (task->fs != init_task.fs);
257 STATIC void
258 xfs_cleanup_inode(
259 bhv_vnode_t *dvp,
260 bhv_vnode_t *vp,
261 struct dentry *dentry,
262 int mode)
264 struct dentry teardown = {};
266 /* Oh, the horror.
267 * If we can't add the ACL or we fail in
268 * xfs_init_security we must back out.
269 * ENOSPC can hit here, among other things.
271 teardown.d_inode = vn_to_inode(vp);
272 teardown.d_name = dentry->d_name;
274 if (S_ISDIR(mode))
275 bhv_vop_rmdir(dvp, &teardown, NULL);
276 else
277 bhv_vop_remove(dvp, &teardown, NULL);
278 VN_RELE(vp);
281 STATIC int
282 xfs_vn_mknod(
283 struct inode *dir,
284 struct dentry *dentry,
285 int mode,
286 dev_t rdev)
288 struct inode *ip;
289 bhv_vattr_t vattr = { 0 };
290 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
291 xfs_acl_t *default_acl = NULL;
292 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
293 int error;
296 * Irix uses Missed'em'V split, but doesn't want to see
297 * the upper 5 bits of (14bit) major.
299 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
300 return -EINVAL;
302 if (unlikely(test_default_acl && test_default_acl(dvp))) {
303 if (!_ACL_ALLOC(default_acl)) {
304 return -ENOMEM;
306 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
307 _ACL_FREE(default_acl);
308 default_acl = NULL;
312 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
313 mode &= ~current->fs->umask;
315 vattr.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
316 vattr.va_mode = mode;
318 switch (mode & S_IFMT) {
319 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
320 vattr.va_rdev = sysv_encode_dev(rdev);
321 vattr.va_mask |= XFS_AT_RDEV;
322 /*FALLTHROUGH*/
323 case S_IFREG:
324 error = bhv_vop_create(dvp, dentry, &vattr, &vp, NULL);
325 break;
326 case S_IFDIR:
327 error = bhv_vop_mkdir(dvp, dentry, &vattr, &vp, NULL);
328 break;
329 default:
330 error = EINVAL;
331 break;
334 if (unlikely(!error)) {
335 error = xfs_init_security(vp, dir);
336 if (error)
337 xfs_cleanup_inode(dvp, vp, dentry, mode);
340 if (unlikely(default_acl)) {
341 if (!error) {
342 error = _ACL_INHERIT(vp, &vattr, default_acl);
343 if (!error)
344 VMODIFY(vp);
345 else
346 xfs_cleanup_inode(dvp, vp, dentry, mode);
348 _ACL_FREE(default_acl);
351 if (likely(!error)) {
352 ASSERT(vp);
353 ip = vn_to_inode(vp);
355 if (S_ISCHR(mode) || S_ISBLK(mode))
356 ip->i_rdev = rdev;
357 else if (S_ISDIR(mode))
358 xfs_validate_fields(ip, &vattr);
359 d_instantiate(dentry, ip);
360 xfs_validate_fields(dir, &vattr);
362 return -error;
365 STATIC int
366 xfs_vn_create(
367 struct inode *dir,
368 struct dentry *dentry,
369 int mode,
370 struct nameidata *nd)
372 return xfs_vn_mknod(dir, dentry, mode, 0);
375 STATIC int
376 xfs_vn_mkdir(
377 struct inode *dir,
378 struct dentry *dentry,
379 int mode)
381 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
384 STATIC struct dentry *
385 xfs_vn_lookup(
386 struct inode *dir,
387 struct dentry *dentry,
388 struct nameidata *nd)
390 bhv_vnode_t *vp = vn_from_inode(dir), *cvp;
391 int error;
393 if (dentry->d_name.len >= MAXNAMELEN)
394 return ERR_PTR(-ENAMETOOLONG);
396 error = bhv_vop_lookup(vp, dentry, &cvp, 0, NULL, NULL);
397 if (unlikely(error)) {
398 if (unlikely(error != ENOENT))
399 return ERR_PTR(-error);
400 d_add(dentry, NULL);
401 return NULL;
404 return d_splice_alias(vn_to_inode(cvp), dentry);
407 STATIC int
408 xfs_vn_link(
409 struct dentry *old_dentry,
410 struct inode *dir,
411 struct dentry *dentry)
413 struct inode *ip; /* inode of guy being linked to */
414 bhv_vnode_t *tdvp; /* target directory for new name/link */
415 bhv_vnode_t *vp; /* vp of name being linked */
416 bhv_vattr_t vattr;
417 int error;
419 ip = old_dentry->d_inode; /* inode being linked to */
420 tdvp = vn_from_inode(dir);
421 vp = vn_from_inode(ip);
423 VN_HOLD(vp);
424 error = bhv_vop_link(tdvp, vp, dentry, NULL);
425 if (unlikely(error)) {
426 VN_RELE(vp);
427 } else {
428 VMODIFY(tdvp);
429 xfs_validate_fields(ip, &vattr);
430 d_instantiate(dentry, ip);
432 return -error;
435 STATIC int
436 xfs_vn_unlink(
437 struct inode *dir,
438 struct dentry *dentry)
440 struct inode *inode;
441 bhv_vnode_t *dvp; /* directory containing name to remove */
442 bhv_vattr_t vattr;
443 int error;
445 inode = dentry->d_inode;
446 dvp = vn_from_inode(dir);
448 error = bhv_vop_remove(dvp, dentry, NULL);
449 if (likely(!error)) {
450 xfs_validate_fields(dir, &vattr); /* size needs update */
451 xfs_validate_fields(inode, &vattr);
453 return -error;
456 STATIC int
457 xfs_vn_symlink(
458 struct inode *dir,
459 struct dentry *dentry,
460 const char *symname)
462 struct inode *ip;
463 bhv_vattr_t va = { 0 };
464 bhv_vnode_t *dvp; /* directory containing name of symlink */
465 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
466 int error;
468 dvp = vn_from_inode(dir);
469 cvp = NULL;
471 va.va_mode = S_IFLNK |
472 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
473 va.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
475 error = bhv_vop_symlink(dvp, dentry, &va, (char *)symname, &cvp, NULL);
476 if (likely(!error && cvp)) {
477 error = xfs_init_security(cvp, dir);
478 if (likely(!error)) {
479 ip = vn_to_inode(cvp);
480 d_instantiate(dentry, ip);
481 xfs_validate_fields(dir, &va);
482 xfs_validate_fields(ip, &va);
483 } else {
484 xfs_cleanup_inode(dvp, cvp, dentry, 0);
487 return -error;
490 STATIC int
491 xfs_vn_rmdir(
492 struct inode *dir,
493 struct dentry *dentry)
495 struct inode *inode = dentry->d_inode;
496 bhv_vnode_t *dvp = vn_from_inode(dir);
497 bhv_vattr_t vattr;
498 int error;
500 error = bhv_vop_rmdir(dvp, dentry, NULL);
501 if (likely(!error)) {
502 xfs_validate_fields(inode, &vattr);
503 xfs_validate_fields(dir, &vattr);
505 return -error;
508 STATIC int
509 xfs_vn_rename(
510 struct inode *odir,
511 struct dentry *odentry,
512 struct inode *ndir,
513 struct dentry *ndentry)
515 struct inode *new_inode = ndentry->d_inode;
516 bhv_vnode_t *fvp; /* from directory */
517 bhv_vnode_t *tvp; /* target directory */
518 bhv_vattr_t vattr;
519 int error;
521 fvp = vn_from_inode(odir);
522 tvp = vn_from_inode(ndir);
524 error = bhv_vop_rename(fvp, odentry, tvp, ndentry, NULL);
525 if (likely(!error)) {
526 if (new_inode)
527 xfs_validate_fields(new_inode, &vattr);
528 xfs_validate_fields(odir, &vattr);
529 if (ndir != odir)
530 xfs_validate_fields(ndir, &vattr);
532 return -error;
536 * careful here - this function can get called recursively, so
537 * we need to be very careful about how much stack we use.
538 * uio is kmalloced for this reason...
540 STATIC void *
541 xfs_vn_follow_link(
542 struct dentry *dentry,
543 struct nameidata *nd)
545 bhv_vnode_t *vp;
546 uio_t *uio;
547 iovec_t iov;
548 int error;
549 char *link;
551 ASSERT(dentry);
552 ASSERT(nd);
554 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
555 if (!link) {
556 nd_set_link(nd, ERR_PTR(-ENOMEM));
557 return NULL;
560 uio = kmalloc(sizeof(uio_t), GFP_KERNEL);
561 if (!uio) {
562 kfree(link);
563 nd_set_link(nd, ERR_PTR(-ENOMEM));
564 return NULL;
567 vp = vn_from_inode(dentry->d_inode);
569 iov.iov_base = link;
570 iov.iov_len = MAXPATHLEN;
572 uio->uio_iov = &iov;
573 uio->uio_offset = 0;
574 uio->uio_segflg = UIO_SYSSPACE;
575 uio->uio_resid = MAXPATHLEN;
576 uio->uio_iovcnt = 1;
578 error = bhv_vop_readlink(vp, uio, 0, NULL);
579 if (unlikely(error)) {
580 kfree(link);
581 link = ERR_PTR(-error);
582 } else {
583 link[MAXPATHLEN - uio->uio_resid] = '\0';
585 kfree(uio);
587 nd_set_link(nd, link);
588 return NULL;
591 STATIC void
592 xfs_vn_put_link(
593 struct dentry *dentry,
594 struct nameidata *nd,
595 void *p)
597 char *s = nd_get_link(nd);
599 if (!IS_ERR(s))
600 kfree(s);
603 #ifdef CONFIG_XFS_POSIX_ACL
604 STATIC int
605 xfs_vn_permission(
606 struct inode *inode,
607 int mode,
608 struct nameidata *nd)
610 return -bhv_vop_access(vn_from_inode(inode), mode << 6, NULL);
612 #else
613 #define xfs_vn_permission NULL
614 #endif
616 STATIC int
617 xfs_vn_getattr(
618 struct vfsmount *mnt,
619 struct dentry *dentry,
620 struct kstat *stat)
622 struct inode *inode = dentry->d_inode;
623 bhv_vnode_t *vp = vn_from_inode(inode);
624 bhv_vattr_t vattr = { .va_mask = XFS_AT_STAT };
625 int error;
627 error = bhv_vop_getattr(vp, &vattr, ATTR_LAZY, NULL);
628 if (likely(!error)) {
629 stat->size = i_size_read(inode);
630 stat->dev = inode->i_sb->s_dev;
631 stat->rdev = (vattr.va_rdev == 0) ? 0 :
632 MKDEV(sysv_major(vattr.va_rdev) & 0x1ff,
633 sysv_minor(vattr.va_rdev));
634 stat->mode = vattr.va_mode;
635 stat->nlink = vattr.va_nlink;
636 stat->uid = vattr.va_uid;
637 stat->gid = vattr.va_gid;
638 stat->ino = vattr.va_nodeid;
639 stat->atime = vattr.va_atime;
640 stat->mtime = vattr.va_mtime;
641 stat->ctime = vattr.va_ctime;
642 stat->blocks = vattr.va_nblocks;
643 stat->blksize = vattr.va_blocksize;
645 return -error;
648 STATIC int
649 xfs_vn_setattr(
650 struct dentry *dentry,
651 struct iattr *attr)
653 struct inode *inode = dentry->d_inode;
654 unsigned int ia_valid = attr->ia_valid;
655 bhv_vnode_t *vp = vn_from_inode(inode);
656 bhv_vattr_t vattr = { 0 };
657 int flags = 0;
658 int error;
660 if (ia_valid & ATTR_UID) {
661 vattr.va_mask |= XFS_AT_UID;
662 vattr.va_uid = attr->ia_uid;
664 if (ia_valid & ATTR_GID) {
665 vattr.va_mask |= XFS_AT_GID;
666 vattr.va_gid = attr->ia_gid;
668 if (ia_valid & ATTR_SIZE) {
669 vattr.va_mask |= XFS_AT_SIZE;
670 vattr.va_size = attr->ia_size;
672 if (ia_valid & ATTR_ATIME) {
673 vattr.va_mask |= XFS_AT_ATIME;
674 vattr.va_atime = attr->ia_atime;
675 inode->i_atime = attr->ia_atime;
677 if (ia_valid & ATTR_MTIME) {
678 vattr.va_mask |= XFS_AT_MTIME;
679 vattr.va_mtime = attr->ia_mtime;
681 if (ia_valid & ATTR_CTIME) {
682 vattr.va_mask |= XFS_AT_CTIME;
683 vattr.va_ctime = attr->ia_ctime;
685 if (ia_valid & ATTR_MODE) {
686 vattr.va_mask |= XFS_AT_MODE;
687 vattr.va_mode = attr->ia_mode;
688 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
689 inode->i_mode &= ~S_ISGID;
692 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
693 flags |= ATTR_UTIME;
694 #ifdef ATTR_NO_BLOCK
695 if ((ia_valid & ATTR_NO_BLOCK))
696 flags |= ATTR_NONBLOCK;
697 #endif
699 error = bhv_vop_setattr(vp, &vattr, flags, NULL);
700 if (likely(!error))
701 __vn_revalidate(vp, &vattr);
702 return -error;
705 STATIC void
706 xfs_vn_truncate(
707 struct inode *inode)
709 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
712 STATIC int
713 xfs_vn_setxattr(
714 struct dentry *dentry,
715 const char *name,
716 const void *data,
717 size_t size,
718 int flags)
720 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
721 char *attr = (char *)name;
722 attrnames_t *namesp;
723 int xflags = 0;
724 int error;
726 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
727 if (!namesp)
728 return -EOPNOTSUPP;
729 attr += namesp->attr_namelen;
730 error = namesp->attr_capable(vp, NULL);
731 if (error)
732 return error;
734 /* Convert Linux syscall to XFS internal ATTR flags */
735 if (flags & XATTR_CREATE)
736 xflags |= ATTR_CREATE;
737 if (flags & XATTR_REPLACE)
738 xflags |= ATTR_REPLACE;
739 xflags |= namesp->attr_flag;
740 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
743 STATIC ssize_t
744 xfs_vn_getxattr(
745 struct dentry *dentry,
746 const char *name,
747 void *data,
748 size_t size)
750 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
751 char *attr = (char *)name;
752 attrnames_t *namesp;
753 int xflags = 0;
754 ssize_t error;
756 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
757 if (!namesp)
758 return -EOPNOTSUPP;
759 attr += namesp->attr_namelen;
760 error = namesp->attr_capable(vp, NULL);
761 if (error)
762 return error;
764 /* Convert Linux syscall to XFS internal ATTR flags */
765 if (!size) {
766 xflags |= ATTR_KERNOVAL;
767 data = NULL;
769 xflags |= namesp->attr_flag;
770 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
773 STATIC ssize_t
774 xfs_vn_listxattr(
775 struct dentry *dentry,
776 char *data,
777 size_t size)
779 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
780 int error, xflags = ATTR_KERNAMELS;
781 ssize_t result;
783 if (!size)
784 xflags |= ATTR_KERNOVAL;
785 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
787 error = attr_generic_list(vp, data, size, xflags, &result);
788 if (error < 0)
789 return error;
790 return result;
793 STATIC int
794 xfs_vn_removexattr(
795 struct dentry *dentry,
796 const char *name)
798 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
799 char *attr = (char *)name;
800 attrnames_t *namesp;
801 int xflags = 0;
802 int error;
804 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
805 if (!namesp)
806 return -EOPNOTSUPP;
807 attr += namesp->attr_namelen;
808 error = namesp->attr_capable(vp, NULL);
809 if (error)
810 return error;
811 xflags |= namesp->attr_flag;
812 return namesp->attr_remove(vp, attr, xflags);
816 const struct inode_operations xfs_inode_operations = {
817 .permission = xfs_vn_permission,
818 .truncate = xfs_vn_truncate,
819 .getattr = xfs_vn_getattr,
820 .setattr = xfs_vn_setattr,
821 .setxattr = xfs_vn_setxattr,
822 .getxattr = xfs_vn_getxattr,
823 .listxattr = xfs_vn_listxattr,
824 .removexattr = xfs_vn_removexattr,
827 const struct inode_operations xfs_dir_inode_operations = {
828 .create = xfs_vn_create,
829 .lookup = xfs_vn_lookup,
830 .link = xfs_vn_link,
831 .unlink = xfs_vn_unlink,
832 .symlink = xfs_vn_symlink,
833 .mkdir = xfs_vn_mkdir,
834 .rmdir = xfs_vn_rmdir,
835 .mknod = xfs_vn_mknod,
836 .rename = xfs_vn_rename,
837 .permission = xfs_vn_permission,
838 .getattr = xfs_vn_getattr,
839 .setattr = xfs_vn_setattr,
840 .setxattr = xfs_vn_setxattr,
841 .getxattr = xfs_vn_getxattr,
842 .listxattr = xfs_vn_listxattr,
843 .removexattr = xfs_vn_removexattr,
846 const struct inode_operations xfs_symlink_inode_operations = {
847 .readlink = generic_readlink,
848 .follow_link = xfs_vn_follow_link,
849 .put_link = xfs_vn_put_link,
850 .permission = xfs_vn_permission,
851 .getattr = xfs_vn_getattr,
852 .setattr = xfs_vn_setattr,
853 .setxattr = xfs_vn_setxattr,
854 .getxattr = xfs_vn_getxattr,
855 .listxattr = xfs_vn_listxattr,
856 .removexattr = xfs_vn_removexattr,