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