]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - fs/xfs/linux-2.6/xfs_iops.c
xfs: remove SYNC_BDFLUSH
[mirror_ubuntu-focal-kernel.git] / fs / xfs / linux-2.6 / xfs_iops.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4 17 */
1da177e4
LT
18#include "xfs.h"
19#include "xfs_fs.h"
a844f451 20#include "xfs_bit.h"
1da177e4 21#include "xfs_log.h"
a844f451 22#include "xfs_inum.h"
1da177e4
LT
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
1da177e4
LT
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"
1da177e4 31#include "xfs_bmap_btree.h"
a844f451 32#include "xfs_alloc_btree.h"
1da177e4 33#include "xfs_ialloc_btree.h"
1da177e4 34#include "xfs_dir2_sf.h"
a844f451 35#include "xfs_attr_sf.h"
1da177e4
LT
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_bmap.h"
a844f451
NS
39#include "xfs_btree.h"
40#include "xfs_ialloc.h"
1da177e4
LT
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"
1da177e4
LT
46#include "xfs_attr.h"
47#include "xfs_buf_item.h"
48#include "xfs_utils.h"
739bfb2a 49#include "xfs_vnodeops.h"
1da177e4 50
16f7e0fe 51#include <linux/capability.h>
1da177e4
LT
52#include <linux/xattr.h>
53#include <linux/namei.h>
446ada4a 54#include <linux/security.h>
3ed65264 55#include <linux/falloc.h>
f35642e2 56#include <linux/fiemap.h>
1da177e4 57
42fe2b1f
CH
58/*
59 * Bring the atime in the XFS inode uptodate.
60 * Used before logging the inode to disk or when the Linux inode goes away.
61 */
62void
63xfs_synchronize_atime(
64 xfs_inode_t *ip)
65{
01651646 66 struct inode *inode = VFS_I(ip);
42fe2b1f 67
bf904248 68 if (!(inode->i_state & I_CLEAR)) {
af048193
CH
69 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
70 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
42fe2b1f
CH
71 }
72}
73
5d51eff4 74/*
bf904248 75 * If the linux inode is valid, mark it dirty.
5d51eff4
DC
76 * Used when commiting a dirty inode into a transaction so that
77 * the inode will get written back by the linux code
78 */
79void
80xfs_mark_inode_dirty_sync(
81 xfs_inode_t *ip)
82{
01651646 83 struct inode *inode = VFS_I(ip);
5d51eff4 84
bf904248 85 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
af048193 86 mark_inode_dirty_sync(inode);
5d51eff4
DC
87}
88
4aeb664c
NS
89/*
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.
4aeb664c
NS
93 */
94void
95xfs_ichgtime(
96 xfs_inode_t *ip,
97 int flags)
98{
e4f75291 99 struct inode *inode = VFS_I(ip);
4aeb664c 100 timespec_t tv;
8e5975c8 101 int sync_it = 0;
4aeb664c 102
8e5975c8
CH
103 tv = current_fs_time(inode->i_sb);
104
105 if ((flags & XFS_ICHGTIME_MOD) &&
106 !timespec_equal(&inode->i_mtime, &tv)) {
4aeb664c
NS
107 inode->i_mtime = tv;
108 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
109 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
8e5975c8 110 sync_it = 1;
4aeb664c 111 }
8e5975c8
CH
112 if ((flags & XFS_ICHGTIME_CHG) &&
113 !timespec_equal(&inode->i_ctime, &tv)) {
4aeb664c
NS
114 inode->i_ctime = tv;
115 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
116 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
8e5975c8 117 sync_it = 1;
4aeb664c
NS
118 }
119
120 /*
121 * We update the i_update_core field _after_ changing
122 * the timestamps in order to coordinate properly with
123 * xfs_iflush() so that we don't lose timestamp updates.
124 * This keeps us from having to hold the inode lock
125 * while doing this. We use the SYNCHRONIZE macro to
126 * ensure that the compiler does not reorder the update
127 * of i_update_core above the timestamp updates above.
128 */
8e5975c8
CH
129 if (sync_it) {
130 SYNCHRONIZE();
131 ip->i_update_core = 1;
94b97e39 132 xfs_mark_inode_dirty_sync(ip);
8e5975c8 133 }
4aeb664c
NS
134}
135
446ada4a
NS
136/*
137 * Hook in SELinux. This is not quite correct yet, what we really need
138 * here (as we do for default ACLs) is a mechanism by which creation of
139 * these attrs can be journalled at inode creation time (along with the
140 * inode, of course, such that log replay can't cause these to be lost).
141 */
142STATIC int
416c6d5b 143xfs_init_security(
af048193 144 struct inode *inode,
446ada4a
NS
145 struct inode *dir)
146{
af048193 147 struct xfs_inode *ip = XFS_I(inode);
446ada4a
NS
148 size_t length;
149 void *value;
150 char *name;
151 int error;
152
af048193
CH
153 error = security_inode_init_security(inode, dir, &name,
154 &value, &length);
446ada4a
NS
155 if (error) {
156 if (error == -EOPNOTSUPP)
157 return 0;
158 return -error;
159 }
160
af048193 161 error = xfs_attr_set(ip, name, value, length, ATTR_SECURE);
446ada4a
NS
162
163 kfree(name);
164 kfree(value);
165 return error;
166}
167
556b8b16
BN
168static void
169xfs_dentry_to_name(
170 struct xfs_name *namep,
171 struct dentry *dentry)
172{
173 namep->name = dentry->d_name.name;
174 namep->len = dentry->d_name.len;
175}
176
7989cb8e 177STATIC void
416c6d5b 178xfs_cleanup_inode(
739bfb2a 179 struct inode *dir,
af048193 180 struct inode *inode,
8f112e3b 181 struct dentry *dentry)
3a69c7dc 182{
556b8b16 183 struct xfs_name teardown;
3a69c7dc
YL
184
185 /* Oh, the horror.
220b5284 186 * If we can't add the ACL or we fail in
416c6d5b 187 * xfs_init_security we must back out.
3a69c7dc
YL
188 * ENOSPC can hit here, among other things.
189 */
556b8b16 190 xfs_dentry_to_name(&teardown, dentry);
3a69c7dc 191
8f112e3b 192 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
af048193 193 iput(inode);
3a69c7dc
YL
194}
195
1da177e4 196STATIC int
416c6d5b 197xfs_vn_mknod(
1da177e4
LT
198 struct inode *dir,
199 struct dentry *dentry,
200 int mode,
201 dev_t rdev)
202{
db0bb7ba 203 struct inode *inode;
979ebab1 204 struct xfs_inode *ip = NULL;
1da177e4 205 xfs_acl_t *default_acl = NULL;
556b8b16 206 struct xfs_name name;
0ec58516 207 int (*test_default_acl)(struct inode *) = _ACL_DEFAULT_EXISTS;
1da177e4
LT
208 int error;
209
210 /*
211 * Irix uses Missed'em'V split, but doesn't want to see
212 * the upper 5 bits of (14bit) major.
213 */
517b5e8c
CH
214 if (S_ISCHR(mode) || S_ISBLK(mode)) {
215 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
216 return -EINVAL;
217 rdev = sysv_encode_dev(rdev);
218 } else {
219 rdev = 0;
220 }
1da177e4 221
979ebab1 222 if (test_default_acl && test_default_acl(dir)) {
220b5284 223 if (!_ACL_ALLOC(default_acl)) {
1da177e4 224 return -ENOMEM;
220b5284 225 }
979ebab1 226 if (!_ACL_GET_DEFAULT(dir, default_acl)) {
1da177e4
LT
227 _ACL_FREE(default_acl);
228 default_acl = NULL;
229 }
230 }
231
db0bb7ba 232 if (IS_POSIXACL(dir) && !default_acl)
1da177e4
LT
233 mode &= ~current->fs->umask;
234
517b5e8c
CH
235 xfs_dentry_to_name(&name, dentry);
236 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL);
db0bb7ba
CH
237 if (unlikely(error))
238 goto out_free_acl;
446ada4a 239
01651646 240 inode = VFS_I(ip);
979ebab1
CH
241
242 error = xfs_init_security(inode, dir);
db0bb7ba
CH
243 if (unlikely(error))
244 goto out_cleanup_inode;
245
246 if (default_acl) {
979ebab1 247 error = _ACL_INHERIT(inode, mode, default_acl);
db0bb7ba
CH
248 if (unlikely(error))
249 goto out_cleanup_inode;
1da177e4
LT
250 _ACL_FREE(default_acl);
251 }
252
1da177e4 253
db0bb7ba 254 d_instantiate(dentry, inode);
db0bb7ba
CH
255 return -error;
256
257 out_cleanup_inode:
8f112e3b 258 xfs_cleanup_inode(dir, inode, dentry);
db0bb7ba
CH
259 out_free_acl:
260 if (default_acl)
261 _ACL_FREE(default_acl);
1da177e4
LT
262 return -error;
263}
264
265STATIC int
416c6d5b 266xfs_vn_create(
1da177e4
LT
267 struct inode *dir,
268 struct dentry *dentry,
269 int mode,
270 struct nameidata *nd)
271{
416c6d5b 272 return xfs_vn_mknod(dir, dentry, mode, 0);
1da177e4
LT
273}
274
275STATIC int
416c6d5b 276xfs_vn_mkdir(
1da177e4
LT
277 struct inode *dir,
278 struct dentry *dentry,
279 int mode)
280{
416c6d5b 281 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
1da177e4
LT
282}
283
284STATIC struct dentry *
416c6d5b 285xfs_vn_lookup(
1da177e4
LT
286 struct inode *dir,
287 struct dentry *dentry,
288 struct nameidata *nd)
289{
ef1f5e7a 290 struct xfs_inode *cip;
556b8b16 291 struct xfs_name name;
1da177e4
LT
292 int error;
293
294 if (dentry->d_name.len >= MAXNAMELEN)
295 return ERR_PTR(-ENAMETOOLONG);
296
556b8b16 297 xfs_dentry_to_name(&name, dentry);
384f3ced 298 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
67fcaa73 299 if (unlikely(error)) {
1da177e4
LT
300 if (unlikely(error != ENOENT))
301 return ERR_PTR(-error);
302 d_add(dentry, NULL);
303 return NULL;
304 }
305
01651646 306 return d_splice_alias(VFS_I(cip), dentry);
1da177e4
LT
307}
308
384f3ced
BN
309STATIC struct dentry *
310xfs_vn_ci_lookup(
311 struct inode *dir,
312 struct dentry *dentry,
313 struct nameidata *nd)
314{
315 struct xfs_inode *ip;
316 struct xfs_name xname;
317 struct xfs_name ci_name;
318 struct qstr dname;
319 int error;
320
321 if (dentry->d_name.len >= MAXNAMELEN)
322 return ERR_PTR(-ENAMETOOLONG);
323
324 xfs_dentry_to_name(&xname, dentry);
325 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
326 if (unlikely(error)) {
327 if (unlikely(error != ENOENT))
328 return ERR_PTR(-error);
866d5dc9
BN
329 /*
330 * call d_add(dentry, NULL) here when d_drop_negative_children
331 * is called in xfs_vn_mknod (ie. allow negative dentries
332 * with CI filesystems).
333 */
384f3ced
BN
334 return NULL;
335 }
336
337 /* if exact match, just splice and exit */
338 if (!ci_name.name)
01651646 339 return d_splice_alias(VFS_I(ip), dentry);
384f3ced
BN
340
341 /* else case-insensitive match... */
342 dname.name = ci_name.name;
343 dname.len = ci_name.len;
e45b590b 344 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
384f3ced
BN
345 kmem_free(ci_name.name);
346 return dentry;
347}
348
1da177e4 349STATIC int
416c6d5b 350xfs_vn_link(
1da177e4
LT
351 struct dentry *old_dentry,
352 struct inode *dir,
353 struct dentry *dentry)
354{
d9424b3c 355 struct inode *inode = old_dentry->d_inode;
556b8b16 356 struct xfs_name name;
1da177e4
LT
357 int error;
358
556b8b16 359 xfs_dentry_to_name(&name, dentry);
1da177e4 360
556b8b16 361 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
d9424b3c 362 if (unlikely(error))
a3da7896 363 return -error;
a3da7896 364
d9424b3c 365 atomic_inc(&inode->i_count);
a3da7896
CH
366 d_instantiate(dentry, inode);
367 return 0;
1da177e4
LT
368}
369
370STATIC int
416c6d5b 371xfs_vn_unlink(
1da177e4
LT
372 struct inode *dir,
373 struct dentry *dentry)
374{
556b8b16 375 struct xfs_name name;
1da177e4
LT
376 int error;
377
556b8b16 378 xfs_dentry_to_name(&name, dentry);
1da177e4 379
e5700704
CH
380 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
381 if (error)
382 return error;
383
384 /*
385 * With unlink, the VFS makes the dentry "negative": no inode,
386 * but still hashed. This is incompatible with case-insensitive
387 * mode, so invalidate (unhash) the dentry in CI-mode.
388 */
389 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
390 d_invalidate(dentry);
391 return 0;
1da177e4
LT
392}
393
394STATIC int
416c6d5b 395xfs_vn_symlink(
1da177e4
LT
396 struct inode *dir,
397 struct dentry *dentry,
398 const char *symname)
399{
3937be5b
CH
400 struct inode *inode;
401 struct xfs_inode *cip = NULL;
556b8b16 402 struct xfs_name name;
1da177e4 403 int error;
3e5daf05 404 mode_t mode;
1da177e4 405
3e5daf05 406 mode = S_IFLNK |
0432dab2 407 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
556b8b16 408 xfs_dentry_to_name(&name, dentry);
1da177e4 409
556b8b16 410 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip, NULL);
3937be5b
CH
411 if (unlikely(error))
412 goto out;
413
01651646 414 inode = VFS_I(cip);
3937be5b
CH
415
416 error = xfs_init_security(inode, dir);
417 if (unlikely(error))
418 goto out_cleanup_inode;
419
420 d_instantiate(dentry, inode);
3937be5b
CH
421 return 0;
422
423 out_cleanup_inode:
8f112e3b 424 xfs_cleanup_inode(dir, inode, dentry);
3937be5b 425 out:
1da177e4
LT
426 return -error;
427}
428
1da177e4 429STATIC int
416c6d5b 430xfs_vn_rename(
1da177e4
LT
431 struct inode *odir,
432 struct dentry *odentry,
433 struct inode *ndir,
434 struct dentry *ndentry)
435{
436 struct inode *new_inode = ndentry->d_inode;
556b8b16
BN
437 struct xfs_name oname;
438 struct xfs_name nname;
1da177e4 439
556b8b16
BN
440 xfs_dentry_to_name(&oname, odentry);
441 xfs_dentry_to_name(&nname, ndentry);
442
e5700704 443 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
cfa853e4
CH
444 XFS_I(ndir), &nname, new_inode ?
445 XFS_I(new_inode) : NULL);
1da177e4
LT
446}
447
448/*
449 * careful here - this function can get called recursively, so
450 * we need to be very careful about how much stack we use.
451 * uio is kmalloced for this reason...
452 */
008b150a 453STATIC void *
416c6d5b 454xfs_vn_follow_link(
1da177e4
LT
455 struct dentry *dentry,
456 struct nameidata *nd)
457{
1da177e4 458 char *link;
804c83c3 459 int error = -ENOMEM;
1da177e4 460
f52720ca 461 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
804c83c3
CH
462 if (!link)
463 goto out_err;
1da177e4 464
739bfb2a 465 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
804c83c3
CH
466 if (unlikely(error))
467 goto out_kfree;
1da177e4
LT
468
469 nd_set_link(nd, link);
008b150a 470 return NULL;
804c83c3
CH
471
472 out_kfree:
473 kfree(link);
474 out_err:
475 nd_set_link(nd, ERR_PTR(error));
476 return NULL;
1da177e4
LT
477}
478
cde410a9 479STATIC void
416c6d5b 480xfs_vn_put_link(
cde410a9
NS
481 struct dentry *dentry,
482 struct nameidata *nd,
483 void *p)
1da177e4 484{
cde410a9
NS
485 char *s = nd_get_link(nd);
486
1da177e4
LT
487 if (!IS_ERR(s))
488 kfree(s);
489}
490
491#ifdef CONFIG_XFS_POSIX_ACL
4576758d
CH
492STATIC int
493xfs_check_acl(
494 struct inode *inode,
495 int mask)
496{
497 struct xfs_inode *ip = XFS_I(inode);
498 int error;
499
500 xfs_itrace_entry(ip);
501
502 if (XFS_IFORK_Q(ip)) {
503 error = xfs_acl_iaccess(ip, mask, NULL);
504 if (error != -1)
505 return -error;
506 }
507
508 return -EAGAIN;
509}
510
1da177e4 511STATIC int
416c6d5b 512xfs_vn_permission(
4576758d 513 struct inode *inode,
e6305c43 514 int mask)
1da177e4 515{
4576758d 516 return generic_permission(inode, mask, xfs_check_acl);
1da177e4
LT
517}
518#else
416c6d5b 519#define xfs_vn_permission NULL
1da177e4
LT
520#endif
521
522STATIC int
416c6d5b 523xfs_vn_getattr(
c43f4087
CH
524 struct vfsmount *mnt,
525 struct dentry *dentry,
526 struct kstat *stat)
1da177e4 527{
c43f4087
CH
528 struct inode *inode = dentry->d_inode;
529 struct xfs_inode *ip = XFS_I(inode);
530 struct xfs_mount *mp = ip->i_mount;
531
532 xfs_itrace_entry(ip);
533
534 if (XFS_FORCED_SHUTDOWN(mp))
535 return XFS_ERROR(EIO);
536
537 stat->size = XFS_ISIZE(ip);
538 stat->dev = inode->i_sb->s_dev;
539 stat->mode = ip->i_d.di_mode;
540 stat->nlink = ip->i_d.di_nlink;
541 stat->uid = ip->i_d.di_uid;
542 stat->gid = ip->i_d.di_gid;
543 stat->ino = ip->i_ino;
c43f4087
CH
544 stat->atime = inode->i_atime;
545 stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec;
546 stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
547 stat->ctime.tv_sec = ip->i_d.di_ctime.t_sec;
548 stat->ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
549 stat->blocks =
550 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
551
552
553 switch (inode->i_mode & S_IFMT) {
554 case S_IFBLK:
555 case S_IFCHR:
556 stat->blksize = BLKDEV_IOSIZE;
557 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
558 sysv_minor(ip->i_df.if_u2.if_rdev));
559 break;
560 default:
71ddabb9 561 if (XFS_IS_REALTIME_INODE(ip)) {
c43f4087
CH
562 /*
563 * If the file blocks are being allocated from a
564 * realtime volume, then return the inode's realtime
565 * extent size or the realtime volume's extent size.
566 */
567 stat->blksize =
568 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
569 } else
570 stat->blksize = xfs_preferred_iosize(mp);
571 stat->rdev = 0;
572 break;
69e23b9a 573 }
c43f4087
CH
574
575 return 0;
1da177e4
LT
576}
577
578STATIC int
416c6d5b 579xfs_vn_setattr(
1da177e4 580 struct dentry *dentry,
0f285c8a 581 struct iattr *iattr)
1da177e4 582{
ea5a3dc8 583 return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0);
1da177e4
LT
584}
585
d87dd636
DC
586/*
587 * block_truncate_page can return an error, but we can't propagate it
588 * at all here. Leave a complaint + stack trace in the syslog because
589 * this could be bad. If it is bad, we need to propagate the error further.
590 */
1da177e4 591STATIC void
416c6d5b 592xfs_vn_truncate(
1da177e4
LT
593 struct inode *inode)
594{
d87dd636
DC
595 int error;
596 error = block_truncate_page(inode->i_mapping, inode->i_size,
597 xfs_get_blocks);
598 WARN_ON(error);
1da177e4
LT
599}
600
3ed65264
DC
601STATIC long
602xfs_vn_fallocate(
603 struct inode *inode,
604 int mode,
605 loff_t offset,
606 loff_t len)
607{
608 long error;
609 loff_t new_size = 0;
610 xfs_flock64_t bf;
611 xfs_inode_t *ip = XFS_I(inode);
612
613 /* preallocation on directories not yet supported */
614 error = -ENODEV;
615 if (S_ISDIR(inode->i_mode))
616 goto out_error;
617
618 bf.l_whence = 0;
619 bf.l_start = offset;
620 bf.l_len = len;
621
622 xfs_ilock(ip, XFS_IOLOCK_EXCL);
623 error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
ea5a3dc8 624 0, XFS_ATTR_NOLOCK);
3ed65264
DC
625 if (!error && !(mode & FALLOC_FL_KEEP_SIZE) &&
626 offset + len > i_size_read(inode))
627 new_size = offset + len;
628
629 /* Change file size if needed */
630 if (new_size) {
0f285c8a 631 struct iattr iattr;
3ed65264 632
0f285c8a
CH
633 iattr.ia_valid = ATTR_SIZE;
634 iattr.ia_size = new_size;
ea5a3dc8 635 error = xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
3ed65264
DC
636 }
637
638 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
639out_error:
640 return error;
641}
1da177e4 642
f35642e2
ES
643#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
644
645/*
646 * Call fiemap helper to fill in user data.
647 * Returns positive errors to xfs_getbmap.
648 */
649STATIC int
650xfs_fiemap_format(
651 void **arg,
652 struct getbmapx *bmv,
653 int *full)
654{
655 int error;
656 struct fiemap_extent_info *fieinfo = *arg;
657 u32 fiemap_flags = 0;
658 u64 logical, physical, length;
659
660 /* Do nothing for a hole */
661 if (bmv->bmv_block == -1LL)
662 return 0;
663
664 logical = BBTOB(bmv->bmv_offset);
665 physical = BBTOB(bmv->bmv_block);
666 length = BBTOB(bmv->bmv_length);
667
668 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
669 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
670 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
671 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
672 physical = 0; /* no block yet */
673 }
674 if (bmv->bmv_oflags & BMV_OF_LAST)
675 fiemap_flags |= FIEMAP_EXTENT_LAST;
676
677 error = fiemap_fill_next_extent(fieinfo, logical, physical,
678 length, fiemap_flags);
679 if (error > 0) {
680 error = 0;
681 *full = 1; /* user array now full */
682 }
683
684 return -error;
685}
686
687STATIC int
688xfs_vn_fiemap(
689 struct inode *inode,
690 struct fiemap_extent_info *fieinfo,
691 u64 start,
692 u64 length)
693{
694 xfs_inode_t *ip = XFS_I(inode);
695 struct getbmapx bm;
696 int error;
697
698 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
699 if (error)
700 return error;
701
702 /* Set up bmap header for xfs internal routine */
703 bm.bmv_offset = BTOBB(start);
704 /* Special case for whole file */
705 if (length == FIEMAP_MAX_OFFSET)
706 bm.bmv_length = -1LL;
707 else
708 bm.bmv_length = BTOBB(length);
709
710 /* our formatter will tell xfs_getbmap when to stop. */
711 bm.bmv_count = MAXEXTNUM;
712 bm.bmv_iflags = BMV_IF_PREALLOC;
713 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
714 bm.bmv_iflags |= BMV_IF_ATTRFORK;
715 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
716 bm.bmv_iflags |= BMV_IF_DELALLOC;
717
718 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
719 if (error)
720 return -error;
721
722 return 0;
723}
724
41be8bed 725static const struct inode_operations xfs_inode_operations = {
416c6d5b
NS
726 .permission = xfs_vn_permission,
727 .truncate = xfs_vn_truncate,
728 .getattr = xfs_vn_getattr,
729 .setattr = xfs_vn_setattr,
0ec58516
LM
730 .setxattr = generic_setxattr,
731 .getxattr = generic_getxattr,
732 .removexattr = generic_removexattr,
416c6d5b 733 .listxattr = xfs_vn_listxattr,
3ed65264 734 .fallocate = xfs_vn_fallocate,
f35642e2 735 .fiemap = xfs_vn_fiemap,
1da177e4
LT
736};
737
41be8bed 738static const struct inode_operations xfs_dir_inode_operations = {
416c6d5b
NS
739 .create = xfs_vn_create,
740 .lookup = xfs_vn_lookup,
741 .link = xfs_vn_link,
742 .unlink = xfs_vn_unlink,
743 .symlink = xfs_vn_symlink,
744 .mkdir = xfs_vn_mkdir,
8f112e3b
CH
745 /*
746 * Yes, XFS uses the same method for rmdir and unlink.
747 *
748 * There are some subtile differences deeper in the code,
749 * but we use S_ISDIR to check for those.
750 */
751 .rmdir = xfs_vn_unlink,
416c6d5b
NS
752 .mknod = xfs_vn_mknod,
753 .rename = xfs_vn_rename,
754 .permission = xfs_vn_permission,
755 .getattr = xfs_vn_getattr,
756 .setattr = xfs_vn_setattr,
0ec58516
LM
757 .setxattr = generic_setxattr,
758 .getxattr = generic_getxattr,
759 .removexattr = generic_removexattr,
416c6d5b 760 .listxattr = xfs_vn_listxattr,
1da177e4
LT
761};
762
41be8bed 763static const struct inode_operations xfs_dir_ci_inode_operations = {
384f3ced
BN
764 .create = xfs_vn_create,
765 .lookup = xfs_vn_ci_lookup,
766 .link = xfs_vn_link,
767 .unlink = xfs_vn_unlink,
768 .symlink = xfs_vn_symlink,
769 .mkdir = xfs_vn_mkdir,
8f112e3b
CH
770 /*
771 * Yes, XFS uses the same method for rmdir and unlink.
772 *
773 * There are some subtile differences deeper in the code,
774 * but we use S_ISDIR to check for those.
775 */
776 .rmdir = xfs_vn_unlink,
384f3ced
BN
777 .mknod = xfs_vn_mknod,
778 .rename = xfs_vn_rename,
779 .permission = xfs_vn_permission,
780 .getattr = xfs_vn_getattr,
781 .setattr = xfs_vn_setattr,
0ec58516
LM
782 .setxattr = generic_setxattr,
783 .getxattr = generic_getxattr,
784 .removexattr = generic_removexattr,
384f3ced 785 .listxattr = xfs_vn_listxattr,
384f3ced
BN
786};
787
41be8bed 788static const struct inode_operations xfs_symlink_inode_operations = {
1da177e4 789 .readlink = generic_readlink,
416c6d5b
NS
790 .follow_link = xfs_vn_follow_link,
791 .put_link = xfs_vn_put_link,
792 .permission = xfs_vn_permission,
793 .getattr = xfs_vn_getattr,
794 .setattr = xfs_vn_setattr,
0ec58516
LM
795 .setxattr = generic_setxattr,
796 .getxattr = generic_getxattr,
797 .removexattr = generic_removexattr,
416c6d5b 798 .listxattr = xfs_vn_listxattr,
1da177e4 799};
41be8bed
CH
800
801STATIC void
802xfs_diflags_to_iflags(
803 struct inode *inode,
804 struct xfs_inode *ip)
805{
806 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
807 inode->i_flags |= S_IMMUTABLE;
808 else
809 inode->i_flags &= ~S_IMMUTABLE;
810 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
811 inode->i_flags |= S_APPEND;
812 else
813 inode->i_flags &= ~S_APPEND;
814 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
815 inode->i_flags |= S_SYNC;
816 else
817 inode->i_flags &= ~S_SYNC;
818 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
819 inode->i_flags |= S_NOATIME;
820 else
821 inode->i_flags &= ~S_NOATIME;
822}
823
824/*
825 * Initialize the Linux inode, set up the operation vectors and
826 * unlock the inode.
827 *
828 * When reading existing inodes from disk this is called directly
829 * from xfs_iget, when creating a new inode it is called from
830 * xfs_ialloc after setting up the inode.
bf904248
DC
831 *
832 * We are always called with an uninitialised linux inode here.
833 * We need to initialise the necessary fields and take a reference
834 * on it.
41be8bed
CH
835 */
836void
837xfs_setup_inode(
838 struct xfs_inode *ip)
839{
bf904248
DC
840 struct inode *inode = &ip->i_vnode;
841
842 inode->i_ino = ip->i_ino;
843 inode->i_state = I_NEW|I_LOCK;
844 inode_add_to_lists(ip->i_mount->m_super, inode);
41be8bed
CH
845
846 inode->i_mode = ip->i_d.di_mode;
847 inode->i_nlink = ip->i_d.di_nlink;
848 inode->i_uid = ip->i_d.di_uid;
849 inode->i_gid = ip->i_d.di_gid;
850
851 switch (inode->i_mode & S_IFMT) {
852 case S_IFBLK:
853 case S_IFCHR:
854 inode->i_rdev =
855 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
856 sysv_minor(ip->i_df.if_u2.if_rdev));
857 break;
858 default:
859 inode->i_rdev = 0;
860 break;
861 }
862
863 inode->i_generation = ip->i_d.di_gen;
864 i_size_write(inode, ip->i_d.di_size);
865 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
866 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
867 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
868 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
869 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
870 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
871 xfs_diflags_to_iflags(inode, ip);
41be8bed
CH
872
873 switch (inode->i_mode & S_IFMT) {
874 case S_IFREG:
875 inode->i_op = &xfs_inode_operations;
876 inode->i_fop = &xfs_file_operations;
877 inode->i_mapping->a_ops = &xfs_address_space_operations;
878 break;
879 case S_IFDIR:
880 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
881 inode->i_op = &xfs_dir_ci_inode_operations;
882 else
883 inode->i_op = &xfs_dir_inode_operations;
884 inode->i_fop = &xfs_dir_file_operations;
885 break;
886 case S_IFLNK:
887 inode->i_op = &xfs_symlink_inode_operations;
888 if (!(ip->i_df.if_flags & XFS_IFINLINE))
889 inode->i_mapping->a_ops = &xfs_address_space_operations;
890 break;
891 default:
892 inode->i_op = &xfs_inode_operations;
893 init_special_inode(inode, inode->i_mode, inode->i_rdev);
894 break;
895 }
896
897 xfs_iflags_clear(ip, XFS_INEW);
898 barrier();
899
900 unlock_new_inode(inode);
901}