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