Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / fs / xfs / linux-2.6 / xfs_iops.c
blobcc4abd3daa49b62aa8a6a822015e33c69e099ea9
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"
49 #include "xfs_vnodeops.h"
51 #include <linux/capability.h>
52 #include <linux/xattr.h>
53 #include <linux/namei.h>
54 #include <linux/security.h>
55 #include <linux/falloc.h>
58 * Bring the atime in the XFS inode uptodate.
59 * Used before logging the inode to disk or when the Linux inode goes away.
61 void
62 xfs_synchronize_atime(
63 xfs_inode_t *ip)
65 bhv_vnode_t *vp;
67 vp = XFS_ITOV_NULL(ip);
68 if (vp) {
69 ip->i_d.di_atime.t_sec = (__int32_t)vp->i_atime.tv_sec;
70 ip->i_d.di_atime.t_nsec = (__int32_t)vp->i_atime.tv_nsec;
75 * If the linux inode exists, mark it dirty.
76 * Used when commiting a dirty inode into a transaction so that
77 * the inode will get written back by the linux code
79 void
80 xfs_mark_inode_dirty_sync(
81 xfs_inode_t *ip)
83 bhv_vnode_t *vp;
85 vp = XFS_ITOV_NULL(ip);
86 if (vp)
87 mark_inode_dirty_sync(vn_to_inode(vp));
91 * Change the requested timestamp in the given inode.
92 * We don't lock across timestamp updates, and we don't log them but
93 * we do record the fact that there is dirty information in core.
95 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
96 * with XFS_ICHGTIME_ACC to be sure that access time
97 * update will take. Calling first with XFS_ICHGTIME_ACC
98 * and then XFS_ICHGTIME_MOD may fail to modify the access
99 * timestamp if the filesystem is mounted noacctm.
101 void
102 xfs_ichgtime(
103 xfs_inode_t *ip,
104 int flags)
106 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
107 timespec_t tv;
109 nanotime(&tv);
110 if (flags & XFS_ICHGTIME_MOD) {
111 inode->i_mtime = tv;
112 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
113 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
115 if (flags & XFS_ICHGTIME_ACC) {
116 inode->i_atime = tv;
117 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
118 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
120 if (flags & XFS_ICHGTIME_CHG) {
121 inode->i_ctime = tv;
122 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
123 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
127 * We update the i_update_core field _after_ changing
128 * the timestamps in order to coordinate properly with
129 * xfs_iflush() so that we don't lose timestamp updates.
130 * This keeps us from having to hold the inode lock
131 * while doing this. We use the SYNCHRONIZE macro to
132 * ensure that the compiler does not reorder the update
133 * of i_update_core above the timestamp updates above.
135 SYNCHRONIZE();
136 ip->i_update_core = 1;
137 if (!(inode->i_state & I_NEW))
138 mark_inode_dirty_sync(inode);
142 * Variant on the above which avoids querying the system clock
143 * in situations where we know the Linux inode timestamps have
144 * just been updated (and so we can update our inode cheaply).
146 void
147 xfs_ichgtime_fast(
148 xfs_inode_t *ip,
149 struct inode *inode,
150 int flags)
152 timespec_t *tvp;
155 * Atime updates for read() & friends are handled lazily now, and
156 * explicit updates must go through xfs_ichgtime()
158 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
161 * We're not supposed to change timestamps in readonly-mounted
162 * filesystems. Throw it away if anyone asks us.
164 if (unlikely(IS_RDONLY(inode)))
165 return;
167 if (flags & XFS_ICHGTIME_MOD) {
168 tvp = &inode->i_mtime;
169 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
170 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
172 if (flags & XFS_ICHGTIME_CHG) {
173 tvp = &inode->i_ctime;
174 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
175 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
179 * We update the i_update_core field _after_ changing
180 * the timestamps in order to coordinate properly with
181 * xfs_iflush() so that we don't lose timestamp updates.
182 * This keeps us from having to hold the inode lock
183 * while doing this. We use the SYNCHRONIZE macro to
184 * ensure that the compiler does not reorder the update
185 * of i_update_core above the timestamp updates above.
187 SYNCHRONIZE();
188 ip->i_update_core = 1;
189 if (!(inode->i_state & I_NEW))
190 mark_inode_dirty_sync(inode);
195 * Pull the link count and size up from the xfs inode to the linux inode
197 STATIC void
198 xfs_validate_fields(
199 struct inode *inode)
201 struct xfs_inode *ip = XFS_I(inode);
202 loff_t size;
204 /* we're under i_sem so i_size can't change under us */
205 size = XFS_ISIZE(ip);
206 if (i_size_read(inode) != size)
207 i_size_write(inode, size);
211 * Hook in SELinux. This is not quite correct yet, what we really need
212 * here (as we do for default ACLs) is a mechanism by which creation of
213 * these attrs can be journalled at inode creation time (along with the
214 * inode, of course, such that log replay can't cause these to be lost).
216 STATIC int
217 xfs_init_security(
218 bhv_vnode_t *vp,
219 struct inode *dir)
221 struct inode *ip = vn_to_inode(vp);
222 size_t length;
223 void *value;
224 char *name;
225 int error;
227 error = security_inode_init_security(ip, dir, &name, &value, &length);
228 if (error) {
229 if (error == -EOPNOTSUPP)
230 return 0;
231 return -error;
234 error = xfs_attr_set(XFS_I(ip), name, value,
235 length, ATTR_SECURE);
236 if (!error)
237 xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED);
239 kfree(name);
240 kfree(value);
241 return error;
245 * Determine whether a process has a valid fs_struct (kernel daemons
246 * like knfsd don't have an fs_struct).
248 * XXX(hch): nfsd is broken, better fix it instead.
250 STATIC_INLINE int
251 xfs_has_fs_struct(struct task_struct *task)
253 return (task->fs != init_task.fs);
256 STATIC void
257 xfs_cleanup_inode(
258 struct inode *dir,
259 bhv_vnode_t *vp,
260 struct dentry *dentry,
261 int mode)
263 struct dentry teardown = {};
265 /* Oh, the horror.
266 * If we can't add the ACL or we fail in
267 * xfs_init_security we must back out.
268 * ENOSPC can hit here, among other things.
270 teardown.d_inode = vn_to_inode(vp);
271 teardown.d_name = dentry->d_name;
273 if (S_ISDIR(mode))
274 xfs_rmdir(XFS_I(dir), &teardown);
275 else
276 xfs_remove(XFS_I(dir), &teardown);
277 VN_RELE(vp);
280 STATIC int
281 xfs_vn_mknod(
282 struct inode *dir,
283 struct dentry *dentry,
284 int mode,
285 dev_t rdev)
287 struct inode *ip;
288 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
289 xfs_acl_t *default_acl = NULL;
290 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
291 int error;
294 * Irix uses Missed'em'V split, but doesn't want to see
295 * the upper 5 bits of (14bit) major.
297 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
298 return -EINVAL;
300 if (unlikely(test_default_acl && test_default_acl(dvp))) {
301 if (!_ACL_ALLOC(default_acl)) {
302 return -ENOMEM;
304 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
305 _ACL_FREE(default_acl);
306 default_acl = NULL;
310 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
311 mode &= ~current->fs->umask;
313 switch (mode & S_IFMT) {
314 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
315 rdev = sysv_encode_dev(rdev);
316 case S_IFREG:
317 error = xfs_create(XFS_I(dir), dentry, mode, rdev, &vp, NULL);
318 break;
319 case S_IFDIR:
320 error = xfs_mkdir(XFS_I(dir), dentry, mode, &vp, NULL);
321 break;
322 default:
323 error = EINVAL;
324 break;
327 if (unlikely(!error)) {
328 error = xfs_init_security(vp, dir);
329 if (error)
330 xfs_cleanup_inode(dir, vp, dentry, mode);
333 if (unlikely(default_acl)) {
334 if (!error) {
335 error = _ACL_INHERIT(vp, mode, default_acl);
336 if (!error)
337 xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED);
338 else
339 xfs_cleanup_inode(dir, vp, dentry, mode);
341 _ACL_FREE(default_acl);
344 if (likely(!error)) {
345 ASSERT(vp);
346 ip = vn_to_inode(vp);
348 if (S_ISDIR(mode))
349 xfs_validate_fields(ip);
350 d_instantiate(dentry, ip);
351 xfs_validate_fields(dir);
353 return -error;
356 STATIC int
357 xfs_vn_create(
358 struct inode *dir,
359 struct dentry *dentry,
360 int mode,
361 struct nameidata *nd)
363 return xfs_vn_mknod(dir, dentry, mode, 0);
366 STATIC int
367 xfs_vn_mkdir(
368 struct inode *dir,
369 struct dentry *dentry,
370 int mode)
372 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
375 STATIC struct dentry *
376 xfs_vn_lookup(
377 struct inode *dir,
378 struct dentry *dentry,
379 struct nameidata *nd)
381 bhv_vnode_t *cvp;
382 int error;
384 if (dentry->d_name.len >= MAXNAMELEN)
385 return ERR_PTR(-ENAMETOOLONG);
387 error = xfs_lookup(XFS_I(dir), dentry, &cvp);
388 if (unlikely(error)) {
389 if (unlikely(error != ENOENT))
390 return ERR_PTR(-error);
391 d_add(dentry, NULL);
392 return NULL;
395 return d_splice_alias(vn_to_inode(cvp), dentry);
398 STATIC int
399 xfs_vn_link(
400 struct dentry *old_dentry,
401 struct inode *dir,
402 struct dentry *dentry)
404 struct inode *ip; /* inode of guy being linked to */
405 bhv_vnode_t *vp; /* vp of name being linked */
406 int error;
408 ip = old_dentry->d_inode; /* inode being linked to */
409 vp = vn_from_inode(ip);
411 VN_HOLD(vp);
412 error = xfs_link(XFS_I(dir), vp, dentry);
413 if (unlikely(error)) {
414 VN_RELE(vp);
415 } else {
416 xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED);
417 xfs_validate_fields(ip);
418 d_instantiate(dentry, ip);
420 return -error;
423 STATIC int
424 xfs_vn_unlink(
425 struct inode *dir,
426 struct dentry *dentry)
428 struct inode *inode;
429 int error;
431 inode = dentry->d_inode;
433 error = xfs_remove(XFS_I(dir), dentry);
434 if (likely(!error)) {
435 xfs_validate_fields(dir); /* size needs update */
436 xfs_validate_fields(inode);
438 return -error;
441 STATIC int
442 xfs_vn_symlink(
443 struct inode *dir,
444 struct dentry *dentry,
445 const char *symname)
447 struct inode *ip;
448 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
449 int error;
450 mode_t mode;
452 cvp = NULL;
454 mode = S_IFLNK |
455 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
457 error = xfs_symlink(XFS_I(dir), dentry, (char *)symname, mode,
458 &cvp, NULL);
459 if (likely(!error && cvp)) {
460 error = xfs_init_security(cvp, dir);
461 if (likely(!error)) {
462 ip = vn_to_inode(cvp);
463 d_instantiate(dentry, ip);
464 xfs_validate_fields(dir);
465 xfs_validate_fields(ip);
466 } else {
467 xfs_cleanup_inode(dir, cvp, dentry, 0);
470 return -error;
473 STATIC int
474 xfs_vn_rmdir(
475 struct inode *dir,
476 struct dentry *dentry)
478 struct inode *inode = dentry->d_inode;
479 int error;
481 error = xfs_rmdir(XFS_I(dir), dentry);
482 if (likely(!error)) {
483 xfs_validate_fields(inode);
484 xfs_validate_fields(dir);
486 return -error;
489 STATIC int
490 xfs_vn_rename(
491 struct inode *odir,
492 struct dentry *odentry,
493 struct inode *ndir,
494 struct dentry *ndentry)
496 struct inode *new_inode = ndentry->d_inode;
497 bhv_vnode_t *tvp; /* target directory */
498 int error;
500 tvp = vn_from_inode(ndir);
502 error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry);
503 if (likely(!error)) {
504 if (new_inode)
505 xfs_validate_fields(new_inode);
506 xfs_validate_fields(odir);
507 if (ndir != odir)
508 xfs_validate_fields(ndir);
510 return -error;
514 * careful here - this function can get called recursively, so
515 * we need to be very careful about how much stack we use.
516 * uio is kmalloced for this reason...
518 STATIC void *
519 xfs_vn_follow_link(
520 struct dentry *dentry,
521 struct nameidata *nd)
523 char *link;
524 int error = -ENOMEM;
526 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
527 if (!link)
528 goto out_err;
530 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
531 if (unlikely(error))
532 goto out_kfree;
534 nd_set_link(nd, link);
535 return NULL;
537 out_kfree:
538 kfree(link);
539 out_err:
540 nd_set_link(nd, ERR_PTR(error));
541 return NULL;
544 STATIC void
545 xfs_vn_put_link(
546 struct dentry *dentry,
547 struct nameidata *nd,
548 void *p)
550 char *s = nd_get_link(nd);
552 if (!IS_ERR(s))
553 kfree(s);
556 #ifdef CONFIG_XFS_POSIX_ACL
557 STATIC int
558 xfs_check_acl(
559 struct inode *inode,
560 int mask)
562 struct xfs_inode *ip = XFS_I(inode);
563 int error;
565 xfs_itrace_entry(ip);
567 if (XFS_IFORK_Q(ip)) {
568 error = xfs_acl_iaccess(ip, mask, NULL);
569 if (error != -1)
570 return -error;
573 return -EAGAIN;
576 STATIC int
577 xfs_vn_permission(
578 struct inode *inode,
579 int mask,
580 struct nameidata *nd)
582 return generic_permission(inode, mask, xfs_check_acl);
584 #else
585 #define xfs_vn_permission NULL
586 #endif
588 STATIC int
589 xfs_vn_getattr(
590 struct vfsmount *mnt,
591 struct dentry *dentry,
592 struct kstat *stat)
594 struct inode *inode = dentry->d_inode;
595 struct xfs_inode *ip = XFS_I(inode);
596 struct xfs_mount *mp = ip->i_mount;
598 xfs_itrace_entry(ip);
600 if (XFS_FORCED_SHUTDOWN(mp))
601 return XFS_ERROR(EIO);
603 stat->size = XFS_ISIZE(ip);
604 stat->dev = inode->i_sb->s_dev;
605 stat->mode = ip->i_d.di_mode;
606 stat->nlink = ip->i_d.di_nlink;
607 stat->uid = ip->i_d.di_uid;
608 stat->gid = ip->i_d.di_gid;
609 stat->ino = ip->i_ino;
610 #if XFS_BIG_INUMS
611 stat->ino += mp->m_inoadd;
612 #endif
613 stat->atime = inode->i_atime;
614 stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec;
615 stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
616 stat->ctime.tv_sec = ip->i_d.di_ctime.t_sec;
617 stat->ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
618 stat->blocks =
619 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
622 switch (inode->i_mode & S_IFMT) {
623 case S_IFBLK:
624 case S_IFCHR:
625 stat->blksize = BLKDEV_IOSIZE;
626 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
627 sysv_minor(ip->i_df.if_u2.if_rdev));
628 break;
629 default:
630 if (XFS_IS_REALTIME_INODE(ip)) {
632 * If the file blocks are being allocated from a
633 * realtime volume, then return the inode's realtime
634 * extent size or the realtime volume's extent size.
636 stat->blksize =
637 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
638 } else
639 stat->blksize = xfs_preferred_iosize(mp);
640 stat->rdev = 0;
641 break;
644 return 0;
647 STATIC int
648 xfs_vn_setattr(
649 struct dentry *dentry,
650 struct iattr *attr)
652 struct inode *inode = dentry->d_inode;
653 unsigned int ia_valid = attr->ia_valid;
654 bhv_vattr_t vattr = { 0 };
655 int flags = 0;
656 int error;
658 if (ia_valid & ATTR_UID) {
659 vattr.va_mask |= XFS_AT_UID;
660 vattr.va_uid = attr->ia_uid;
662 if (ia_valid & ATTR_GID) {
663 vattr.va_mask |= XFS_AT_GID;
664 vattr.va_gid = attr->ia_gid;
666 if (ia_valid & ATTR_SIZE) {
667 vattr.va_mask |= XFS_AT_SIZE;
668 vattr.va_size = attr->ia_size;
670 if (ia_valid & ATTR_ATIME) {
671 vattr.va_mask |= XFS_AT_ATIME;
672 vattr.va_atime = attr->ia_atime;
673 inode->i_atime = attr->ia_atime;
675 if (ia_valid & ATTR_MTIME) {
676 vattr.va_mask |= XFS_AT_MTIME;
677 vattr.va_mtime = attr->ia_mtime;
679 if (ia_valid & ATTR_CTIME) {
680 vattr.va_mask |= XFS_AT_CTIME;
681 vattr.va_ctime = attr->ia_ctime;
683 if (ia_valid & ATTR_MODE) {
684 vattr.va_mask |= XFS_AT_MODE;
685 vattr.va_mode = attr->ia_mode;
686 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
687 inode->i_mode &= ~S_ISGID;
690 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
691 flags |= ATTR_UTIME;
692 #ifdef ATTR_NO_BLOCK
693 if ((ia_valid & ATTR_NO_BLOCK))
694 flags |= ATTR_NONBLOCK;
695 #endif
697 error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL);
698 if (likely(!error))
699 vn_revalidate(vn_from_inode(inode));
700 return -error;
703 STATIC void
704 xfs_vn_truncate(
705 struct inode *inode)
707 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
710 STATIC int
711 xfs_vn_setxattr(
712 struct dentry *dentry,
713 const char *name,
714 const void *data,
715 size_t size,
716 int flags)
718 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
719 char *attr = (char *)name;
720 attrnames_t *namesp;
721 int xflags = 0;
722 int error;
724 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
725 if (!namesp)
726 return -EOPNOTSUPP;
727 attr += namesp->attr_namelen;
728 error = namesp->attr_capable(vp, NULL);
729 if (error)
730 return error;
732 /* Convert Linux syscall to XFS internal ATTR flags */
733 if (flags & XATTR_CREATE)
734 xflags |= ATTR_CREATE;
735 if (flags & XATTR_REPLACE)
736 xflags |= ATTR_REPLACE;
737 xflags |= namesp->attr_flag;
738 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
741 STATIC ssize_t
742 xfs_vn_getxattr(
743 struct dentry *dentry,
744 const char *name,
745 void *data,
746 size_t size)
748 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
749 char *attr = (char *)name;
750 attrnames_t *namesp;
751 int xflags = 0;
752 ssize_t error;
754 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
755 if (!namesp)
756 return -EOPNOTSUPP;
757 attr += namesp->attr_namelen;
758 error = namesp->attr_capable(vp, NULL);
759 if (error)
760 return error;
762 /* Convert Linux syscall to XFS internal ATTR flags */
763 if (!size) {
764 xflags |= ATTR_KERNOVAL;
765 data = NULL;
767 xflags |= namesp->attr_flag;
768 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
771 STATIC ssize_t
772 xfs_vn_listxattr(
773 struct dentry *dentry,
774 char *data,
775 size_t size)
777 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
778 int error, xflags = ATTR_KERNAMELS;
779 ssize_t result;
781 if (!size)
782 xflags |= ATTR_KERNOVAL;
783 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
785 error = attr_generic_list(vp, data, size, xflags, &result);
786 if (error < 0)
787 return error;
788 return result;
791 STATIC int
792 xfs_vn_removexattr(
793 struct dentry *dentry,
794 const char *name)
796 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
797 char *attr = (char *)name;
798 attrnames_t *namesp;
799 int xflags = 0;
800 int error;
802 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
803 if (!namesp)
804 return -EOPNOTSUPP;
805 attr += namesp->attr_namelen;
806 error = namesp->attr_capable(vp, NULL);
807 if (error)
808 return error;
809 xflags |= namesp->attr_flag;
810 return namesp->attr_remove(vp, attr, xflags);
813 STATIC long
814 xfs_vn_fallocate(
815 struct inode *inode,
816 int mode,
817 loff_t offset,
818 loff_t len)
820 long error;
821 loff_t new_size = 0;
822 xfs_flock64_t bf;
823 xfs_inode_t *ip = XFS_I(inode);
825 /* preallocation on directories not yet supported */
826 error = -ENODEV;
827 if (S_ISDIR(inode->i_mode))
828 goto out_error;
830 bf.l_whence = 0;
831 bf.l_start = offset;
832 bf.l_len = len;
834 xfs_ilock(ip, XFS_IOLOCK_EXCL);
835 error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
836 0, NULL, ATTR_NOLOCK);
837 if (!error && !(mode & FALLOC_FL_KEEP_SIZE) &&
838 offset + len > i_size_read(inode))
839 new_size = offset + len;
841 /* Change file size if needed */
842 if (new_size) {
843 bhv_vattr_t va;
845 va.va_mask = XFS_AT_SIZE;
846 va.va_size = new_size;
847 error = xfs_setattr(ip, &va, ATTR_NOLOCK, NULL);
850 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
851 out_error:
852 return error;
855 const struct inode_operations xfs_inode_operations = {
856 .permission = xfs_vn_permission,
857 .truncate = xfs_vn_truncate,
858 .getattr = xfs_vn_getattr,
859 .setattr = xfs_vn_setattr,
860 .setxattr = xfs_vn_setxattr,
861 .getxattr = xfs_vn_getxattr,
862 .listxattr = xfs_vn_listxattr,
863 .removexattr = xfs_vn_removexattr,
864 .fallocate = xfs_vn_fallocate,
867 const struct inode_operations xfs_dir_inode_operations = {
868 .create = xfs_vn_create,
869 .lookup = xfs_vn_lookup,
870 .link = xfs_vn_link,
871 .unlink = xfs_vn_unlink,
872 .symlink = xfs_vn_symlink,
873 .mkdir = xfs_vn_mkdir,
874 .rmdir = xfs_vn_rmdir,
875 .mknod = xfs_vn_mknod,
876 .rename = xfs_vn_rename,
877 .permission = xfs_vn_permission,
878 .getattr = xfs_vn_getattr,
879 .setattr = xfs_vn_setattr,
880 .setxattr = xfs_vn_setxattr,
881 .getxattr = xfs_vn_getxattr,
882 .listxattr = xfs_vn_listxattr,
883 .removexattr = xfs_vn_removexattr,
886 const struct inode_operations xfs_symlink_inode_operations = {
887 .readlink = generic_readlink,
888 .follow_link = xfs_vn_follow_link,
889 .put_link = xfs_vn_put_link,
890 .permission = xfs_vn_permission,
891 .getattr = xfs_vn_getattr,
892 .setattr = xfs_vn_setattr,
893 .setxattr = xfs_vn_setxattr,
894 .getxattr = xfs_vn_getxattr,
895 .listxattr = xfs_vn_listxattr,
896 .removexattr = xfs_vn_removexattr,