blob: 264b1e7dacf7a1605e837745283b880ff4817cd8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19#include "xfs_fs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_bmap.h"
Nathan Scotta844f452005-11-02 14:38:42 +110039#include "xfs_btree.h"
40#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_rtalloc.h"
42#include "xfs_error.h"
43#include "xfs_itable.h"
44#include "xfs_rw.h"
45#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_attr.h"
47#include "xfs_buf_item.h"
48#include "xfs_utils.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100049#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080051#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/xattr.h>
53#include <linux/namei.h>
Nathan Scott446ada42006-01-11 15:35:44 +110054#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Nathan Scott4aeb6642005-11-02 11:43:58 +110056/*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110057 * Bring the atime in the XFS inode uptodate.
58 * Used before logging the inode to disk or when the Linux inode goes away.
59 */
60void
61xfs_synchronize_atime(
62 xfs_inode_t *ip)
63{
Nathan Scott67fcaa72006-06-09 17:00:52 +100064 bhv_vnode_t *vp;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110065
66 vp = XFS_ITOV_NULL(ip);
67 if (vp) {
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100068 ip->i_d.di_atime.t_sec = (__int32_t)vp->i_atime.tv_sec;
69 ip->i_d.di_atime.t_nsec = (__int32_t)vp->i_atime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110070 }
71}
72
73/*
David Chinner5d51eff2007-11-23 16:29:18 +110074 * If the linux inode exists, mark it dirty.
75 * Used when commiting a dirty inode into a transaction so that
76 * the inode will get written back by the linux code
77 */
78void
79xfs_mark_inode_dirty_sync(
80 xfs_inode_t *ip)
81{
82 bhv_vnode_t *vp;
83
84 vp = XFS_ITOV_NULL(ip);
85 if (vp)
86 mark_inode_dirty_sync(vn_to_inode(vp));
87}
88
89/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110090 * 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.
93 *
94 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
95 * with XFS_ICHGTIME_ACC to be sure that access time
96 * update will take. Calling first with XFS_ICHGTIME_ACC
97 * and then XFS_ICHGTIME_MOD may fail to modify the access
98 * timestamp if the filesystem is mounted noacctm.
99 */
100void
101xfs_ichgtime(
102 xfs_inode_t *ip,
103 int flags)
104{
Nathan Scottec86dc02006-03-17 17:25:36 +1100105 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
Nathan Scott4aeb6642005-11-02 11:43:58 +1100106 timespec_t tv;
107
Nathan Scott4aeb6642005-11-02 11:43:58 +1100108 nanotime(&tv);
109 if (flags & XFS_ICHGTIME_MOD) {
110 inode->i_mtime = tv;
111 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
112 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
113 }
114 if (flags & XFS_ICHGTIME_ACC) {
115 inode->i_atime = tv;
116 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
117 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
118 }
119 if (flags & XFS_ICHGTIME_CHG) {
120 inode->i_ctime = tv;
121 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
122 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
123 }
124
125 /*
126 * We update the i_update_core field _after_ changing
127 * the timestamps in order to coordinate properly with
128 * xfs_iflush() so that we don't lose timestamp updates.
129 * This keeps us from having to hold the inode lock
130 * while doing this. We use the SYNCHRONIZE macro to
131 * ensure that the compiler does not reorder the update
132 * of i_update_core above the timestamp updates above.
133 */
134 SYNCHRONIZE();
135 ip->i_update_core = 1;
David Chinnercf10e822007-12-07 14:09:11 +1100136 if (!(inode->i_state & I_NEW))
Nathan Scott4aeb6642005-11-02 11:43:58 +1100137 mark_inode_dirty_sync(inode);
138}
139
140/*
141 * Variant on the above which avoids querying the system clock
142 * in situations where we know the Linux inode timestamps have
143 * just been updated (and so we can update our inode cheaply).
Nathan Scott4aeb6642005-11-02 11:43:58 +1100144 */
145void
146xfs_ichgtime_fast(
147 xfs_inode_t *ip,
148 struct inode *inode,
149 int flags)
150{
151 timespec_t *tvp;
152
153 /*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +1100154 * Atime updates for read() & friends are handled lazily now, and
155 * explicit updates must go through xfs_ichgtime()
156 */
157 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
158
159 /*
Nathan Scott4aeb6642005-11-02 11:43:58 +1100160 * We're not supposed to change timestamps in readonly-mounted
161 * filesystems. Throw it away if anyone asks us.
162 */
163 if (unlikely(IS_RDONLY(inode)))
164 return;
165
Nathan Scott4aeb6642005-11-02 11:43:58 +1100166 if (flags & XFS_ICHGTIME_MOD) {
167 tvp = &inode->i_mtime;
168 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
169 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
170 }
Nathan Scott4aeb6642005-11-02 11:43:58 +1100171 if (flags & XFS_ICHGTIME_CHG) {
172 tvp = &inode->i_ctime;
173 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
174 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
175 }
176
177 /*
178 * We update the i_update_core field _after_ changing
179 * the timestamps in order to coordinate properly with
180 * xfs_iflush() so that we don't lose timestamp updates.
181 * This keeps us from having to hold the inode lock
182 * while doing this. We use the SYNCHRONIZE macro to
183 * ensure that the compiler does not reorder the update
184 * of i_update_core above the timestamp updates above.
185 */
186 SYNCHRONIZE();
187 ip->i_update_core = 1;
David Chinnercf10e822007-12-07 14:09:11 +1100188 if (!(inode->i_state & I_NEW))
Nathan Scott4aeb6642005-11-02 11:43:58 +1100189 mark_inode_dirty_sync(inode);
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193/*
194 * Pull the link count and size up from the xfs inode to the linux inode
195 */
196STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100197xfs_validate_fields(
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000198 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000200 struct xfs_inode *ip = XFS_I(inode);
201 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000203 inode->i_nlink = ip->i_d.di_nlink;
204 inode->i_blocks =
205 XFS_FSB_TO_BB(ip->i_mount, ip->i_d.di_nblocks +
206 ip->i_delayed_blks);
207 /* we're under i_sem so i_size can't change under us */
208 size = XFS_ISIZE(ip);
209 if (i_size_read(inode) != size)
210 i_size_write(inode, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213/*
Nathan Scott446ada42006-01-11 15:35:44 +1100214 * Hook in SELinux. This is not quite correct yet, what we really need
215 * here (as we do for default ACLs) is a mechanism by which creation of
216 * these attrs can be journalled at inode creation time (along with the
217 * inode, of course, such that log replay can't cause these to be lost).
218 */
219STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100220xfs_init_security(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000221 bhv_vnode_t *vp,
Nathan Scott446ada42006-01-11 15:35:44 +1100222 struct inode *dir)
223{
Nathan Scottec86dc02006-03-17 17:25:36 +1100224 struct inode *ip = vn_to_inode(vp);
Nathan Scott446ada42006-01-11 15:35:44 +1100225 size_t length;
226 void *value;
227 char *name;
228 int error;
229
230 error = security_inode_init_security(ip, dir, &name, &value, &length);
231 if (error) {
232 if (error == -EOPNOTSUPP)
233 return 0;
234 return -error;
235 }
236
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000237 error = xfs_attr_set(XFS_I(ip), name, value,
238 length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100239 if (!error)
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000240 xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED);
Nathan Scott446ada42006-01-11 15:35:44 +1100241
242 kfree(name);
243 kfree(value);
244 return error;
245}
246
247/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * Determine whether a process has a valid fs_struct (kernel daemons
249 * like knfsd don't have an fs_struct).
250 *
251 * XXX(hch): nfsd is broken, better fix it instead.
252 */
David Chinner7989cb82007-02-10 18:34:56 +1100253STATIC_INLINE int
Nathan Scott416c6d52006-03-14 14:00:51 +1100254xfs_has_fs_struct(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 return (task->fs != init_task.fs);
257}
258
David Chinner7989cb82007-02-10 18:34:56 +1100259STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100260xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000261 struct inode *dir,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000262 bhv_vnode_t *vp,
Nathan Scott220b5282006-03-14 13:33:36 +1100263 struct dentry *dentry,
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100264 int mode)
265{
266 struct dentry teardown = {};
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100267
268 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100269 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100270 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100271 * ENOSPC can hit here, among other things.
272 */
Nathan Scottec86dc02006-03-17 17:25:36 +1100273 teardown.d_inode = vn_to_inode(vp);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100274 teardown.d_name = dentry->d_name;
275
276 if (S_ISDIR(mode))
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000277 xfs_rmdir(XFS_I(dir), &teardown);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100278 else
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000279 xfs_remove(XFS_I(dir), &teardown);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100280 VN_RELE(vp);
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100284xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct inode *dir,
286 struct dentry *dentry,
287 int mode,
288 dev_t rdev)
289{
290 struct inode *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000291 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 xfs_acl_t *default_acl = NULL;
293 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
294 int error;
295
296 /*
297 * Irix uses Missed'em'V split, but doesn't want to see
298 * the upper 5 bits of (14bit) major.
299 */
Nathan Scott220b5282006-03-14 13:33:36 +1100300 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -EINVAL;
302
Nathan Scott220b5282006-03-14 13:33:36 +1100303 if (unlikely(test_default_acl && test_default_acl(dvp))) {
304 if (!_ACL_ALLOC(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return -ENOMEM;
Nathan Scott220b5282006-03-14 13:33:36 +1100306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
308 _ACL_FREE(default_acl);
309 default_acl = NULL;
310 }
311 }
312
Nathan Scott416c6d52006-03-14 14:00:51 +1100313 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 mode &= ~current->fs->umask;
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 switch (mode & S_IFMT) {
317 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000318 rdev = sysv_encode_dev(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 case S_IFREG:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000320 error = xfs_create(XFS_I(dir), dentry, mode, rdev, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 case S_IFDIR:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000323 error = xfs_mkdir(XFS_I(dir), dentry, mode, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 break;
325 default:
326 error = EINVAL;
327 break;
328 }
329
Nathan Scott220b5282006-03-14 13:33:36 +1100330 if (unlikely(!error)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100331 error = xfs_init_security(vp, dir);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100332 if (error)
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000333 xfs_cleanup_inode(dir, vp, dentry, mode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100334 }
Nathan Scott446ada42006-01-11 15:35:44 +1100335
Nathan Scott220b5282006-03-14 13:33:36 +1100336 if (unlikely(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (!error) {
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000338 error = _ACL_INHERIT(vp, mode, default_acl);
Nathan Scott220b5282006-03-14 13:33:36 +1100339 if (!error)
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000340 xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100341 else
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000342 xfs_cleanup_inode(dir, vp, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344 _ACL_FREE(default_acl);
345 }
346
Nathan Scott220b5282006-03-14 13:33:36 +1100347 if (likely(!error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 ASSERT(vp);
Nathan Scottec86dc02006-03-17 17:25:36 +1100349 ip = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Christoph Hellwigbad60fd2007-12-21 10:58:56 +1100351 if (S_ISDIR(mode))
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000352 xfs_validate_fields(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 d_instantiate(dentry, ip);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000354 xfs_validate_fields(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356 return -error;
357}
358
359STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100360xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct inode *dir,
362 struct dentry *dentry,
363 int mode,
364 struct nameidata *nd)
365{
Nathan Scott416c6d52006-03-14 14:00:51 +1100366 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100370xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct inode *dir,
372 struct dentry *dentry,
373 int mode)
374{
Nathan Scott416c6d52006-03-14 14:00:51 +1100375 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100379xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct inode *dir,
381 struct dentry *dentry,
382 struct nameidata *nd)
383{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000384 bhv_vnode_t *cvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int error;
386
387 if (dentry->d_name.len >= MAXNAMELEN)
388 return ERR_PTR(-ENAMETOOLONG);
389
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000390 error = xfs_lookup(XFS_I(dir), dentry, &cvp);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000391 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (unlikely(error != ENOENT))
393 return ERR_PTR(-error);
394 d_add(dentry, NULL);
395 return NULL;
396 }
397
Nathan Scottec86dc02006-03-17 17:25:36 +1100398 return d_splice_alias(vn_to_inode(cvp), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100402xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct dentry *old_dentry,
404 struct inode *dir,
405 struct dentry *dentry)
406{
407 struct inode *ip; /* inode of guy being linked to */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000408 bhv_vnode_t *vp; /* vp of name being linked */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 int error;
410
411 ip = old_dentry->d_inode; /* inode being linked to */
Nathan Scottec86dc02006-03-17 17:25:36 +1100412 vp = vn_from_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Nathan Scott97dfd702006-06-27 16:13:46 +1000414 VN_HOLD(vp);
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000415 error = xfs_link(XFS_I(dir), vp, dentry);
Nathan Scott97dfd702006-06-27 16:13:46 +1000416 if (unlikely(error)) {
417 VN_RELE(vp);
418 } else {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000419 xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000420 xfs_validate_fields(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 d_instantiate(dentry, ip);
422 }
423 return -error;
424}
425
426STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100427xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct inode *dir,
429 struct dentry *dentry)
430{
431 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 int error;
433
434 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000436 error = xfs_remove(XFS_I(dir), dentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100437 if (likely(!error)) {
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000438 xfs_validate_fields(dir); /* size needs update */
439 xfs_validate_fields(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -error;
442}
443
444STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100445xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct inode *dir,
447 struct dentry *dentry,
448 const char *symname)
449{
450 struct inode *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000451 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000453 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 cvp = NULL;
456
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000457 mode = S_IFLNK |
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000458 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000460 error = xfs_symlink(XFS_I(dir), dentry, (char *)symname, mode,
461 &cvp, NULL);
Nathan Scott54245702006-01-16 15:54:05 +1100462 if (likely(!error && cvp)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100463 error = xfs_init_security(cvp, dir);
Nathan Scott54245702006-01-16 15:54:05 +1100464 if (likely(!error)) {
Nathan Scottec86dc02006-03-17 17:25:36 +1100465 ip = vn_to_inode(cvp);
Nathan Scott54245702006-01-16 15:54:05 +1100466 d_instantiate(dentry, ip);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000467 xfs_validate_fields(dir);
468 xfs_validate_fields(ip);
Nathan Scottce9d37c2006-03-17 17:26:34 +1100469 } else {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000470 xfs_cleanup_inode(dir, cvp, dentry, 0);
Nathan Scott54245702006-01-16 15:54:05 +1100471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473 return -error;
474}
475
476STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100477xfs_vn_rmdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct inode *dir,
479 struct dentry *dentry)
480{
481 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int error;
483
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000484 error = xfs_rmdir(XFS_I(dir), dentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100485 if (likely(!error)) {
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000486 xfs_validate_fields(inode);
487 xfs_validate_fields(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489 return -error;
490}
491
492STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100493xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct inode *odir,
495 struct dentry *odentry,
496 struct inode *ndir,
497 struct dentry *ndentry)
498{
499 struct inode *new_inode = ndentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000500 bhv_vnode_t *tvp; /* target directory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int error;
502
Nathan Scottec86dc02006-03-17 17:25:36 +1100503 tvp = vn_from_inode(ndir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000505 error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100506 if (likely(!error)) {
507 if (new_inode)
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000508 xfs_validate_fields(new_inode);
509 xfs_validate_fields(odir);
Nathan Scott220b5282006-03-14 13:33:36 +1100510 if (ndir != odir)
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000511 xfs_validate_fields(ndir);
Nathan Scott220b5282006-03-14 13:33:36 +1100512 }
Nathan Scott220b5282006-03-14 13:33:36 +1100513 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516/*
517 * careful here - this function can get called recursively, so
518 * we need to be very careful about how much stack we use.
519 * uio is kmalloced for this reason...
520 */
Al Viro008b1502005-08-20 00:17:39 +0100521STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100522xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct dentry *dentry,
524 struct nameidata *nd)
525{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000527 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700529 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000530 if (!link)
531 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000533 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000534 if (unlikely(error))
535 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100538 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000539
540 out_kfree:
541 kfree(link);
542 out_err:
543 nd_set_link(nd, ERR_PTR(error));
544 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Nathan Scottcde410a2005-09-05 11:47:01 +1000547STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100548xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000549 struct dentry *dentry,
550 struct nameidata *nd,
551 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Nathan Scottcde410a2005-09-05 11:47:01 +1000553 char *s = nd_get_link(nd);
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (!IS_ERR(s))
556 kfree(s);
557}
558
559#ifdef CONFIG_XFS_POSIX_ACL
560STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100561xfs_vn_permission(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct inode *inode,
563 int mode,
564 struct nameidata *nd)
565{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000566 return -xfs_access(XFS_I(inode), mode << 6, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568#else
Nathan Scott416c6d52006-03-14 14:00:51 +1100569#define xfs_vn_permission NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#endif
571
572STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100573xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000574 struct vfsmount *mnt,
575 struct dentry *dentry,
576 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000578 struct inode *inode = dentry->d_inode;
579 struct xfs_inode *ip = XFS_I(inode);
580 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000582 xfs_itrace_entry(ip);
583
584 if (XFS_FORCED_SHUTDOWN(mp))
585 return XFS_ERROR(EIO);
586
587 stat->size = XFS_ISIZE(ip);
588 stat->dev = inode->i_sb->s_dev;
589 stat->mode = ip->i_d.di_mode;
590 stat->nlink = ip->i_d.di_nlink;
591 stat->uid = ip->i_d.di_uid;
592 stat->gid = ip->i_d.di_gid;
593 stat->ino = ip->i_ino;
594#if XFS_BIG_INUMS
595 stat->ino += mp->m_inoadd;
596#endif
597 stat->atime = inode->i_atime;
598 stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec;
599 stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
600 stat->ctime.tv_sec = ip->i_d.di_ctime.t_sec;
601 stat->ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
602 stat->blocks =
603 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
604
605
606 switch (inode->i_mode & S_IFMT) {
607 case S_IFBLK:
608 case S_IFCHR:
609 stat->blksize = BLKDEV_IOSIZE;
610 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
611 sysv_minor(ip->i_df.if_u2.if_rdev));
612 break;
613 default:
614 if (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) {
615 /*
616 * If the file blocks are being allocated from a
617 * realtime volume, then return the inode's realtime
618 * extent size or the realtime volume's extent size.
619 */
620 stat->blksize =
621 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
622 } else
623 stat->blksize = xfs_preferred_iosize(mp);
624 stat->rdev = 0;
625 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000626 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000627
628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100632xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct dentry *dentry,
634 struct iattr *attr)
635{
636 struct inode *inode = dentry->d_inode;
637 unsigned int ia_valid = attr->ia_valid;
Nathan Scott8285fb52006-06-09 17:07:12 +1000638 bhv_vattr_t vattr = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 int flags = 0;
640 int error;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (ia_valid & ATTR_UID) {
643 vattr.va_mask |= XFS_AT_UID;
644 vattr.va_uid = attr->ia_uid;
645 }
646 if (ia_valid & ATTR_GID) {
647 vattr.va_mask |= XFS_AT_GID;
648 vattr.va_gid = attr->ia_gid;
649 }
650 if (ia_valid & ATTR_SIZE) {
651 vattr.va_mask |= XFS_AT_SIZE;
652 vattr.va_size = attr->ia_size;
653 }
654 if (ia_valid & ATTR_ATIME) {
655 vattr.va_mask |= XFS_AT_ATIME;
656 vattr.va_atime = attr->ia_atime;
Nathan Scott8c0b5112006-04-11 15:12:45 +1000657 inode->i_atime = attr->ia_atime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 if (ia_valid & ATTR_MTIME) {
660 vattr.va_mask |= XFS_AT_MTIME;
661 vattr.va_mtime = attr->ia_mtime;
662 }
663 if (ia_valid & ATTR_CTIME) {
664 vattr.va_mask |= XFS_AT_CTIME;
665 vattr.va_ctime = attr->ia_ctime;
666 }
667 if (ia_valid & ATTR_MODE) {
668 vattr.va_mask |= XFS_AT_MODE;
669 vattr.va_mode = attr->ia_mode;
670 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
671 inode->i_mode &= ~S_ISGID;
672 }
673
674 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
675 flags |= ATTR_UTIME;
676#ifdef ATTR_NO_BLOCK
677 if ((ia_valid & ATTR_NO_BLOCK))
678 flags |= ATTR_NONBLOCK;
679#endif
680
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000681 error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100682 if (likely(!error))
Christoph Hellwig21a62542007-09-19 15:27:49 +1000683 vn_revalidate(vn_from_inode(inode));
Nathan Scott220b5282006-03-14 13:33:36 +1100684 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100688xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct inode *inode)
690{
Nathan Scottc2536662006-03-29 10:44:40 +1000691 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100695xfs_vn_setxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct dentry *dentry,
697 const char *name,
698 const void *data,
699 size_t size,
700 int flags)
701{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000702 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 char *attr = (char *)name;
704 attrnames_t *namesp;
705 int xflags = 0;
706 int error;
707
708 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
709 if (!namesp)
710 return -EOPNOTSUPP;
711 attr += namesp->attr_namelen;
712 error = namesp->attr_capable(vp, NULL);
713 if (error)
714 return error;
715
716 /* Convert Linux syscall to XFS internal ATTR flags */
717 if (flags & XATTR_CREATE)
718 xflags |= ATTR_CREATE;
719 if (flags & XATTR_REPLACE)
720 xflags |= ATTR_REPLACE;
721 xflags |= namesp->attr_flag;
722 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
723}
724
725STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100726xfs_vn_getxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct dentry *dentry,
728 const char *name,
729 void *data,
730 size_t size)
731{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000732 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 char *attr = (char *)name;
734 attrnames_t *namesp;
735 int xflags = 0;
736 ssize_t error;
737
738 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
739 if (!namesp)
740 return -EOPNOTSUPP;
741 attr += namesp->attr_namelen;
742 error = namesp->attr_capable(vp, NULL);
743 if (error)
744 return error;
745
746 /* Convert Linux syscall to XFS internal ATTR flags */
747 if (!size) {
748 xflags |= ATTR_KERNOVAL;
749 data = NULL;
750 }
751 xflags |= namesp->attr_flag;
752 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
753}
754
755STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100756xfs_vn_listxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct dentry *dentry,
758 char *data,
759 size_t size)
760{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000761 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 int error, xflags = ATTR_KERNAMELS;
763 ssize_t result;
764
765 if (!size)
766 xflags |= ATTR_KERNOVAL;
767 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
768
769 error = attr_generic_list(vp, data, size, xflags, &result);
770 if (error < 0)
771 return error;
772 return result;
773}
774
775STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100776xfs_vn_removexattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct dentry *dentry,
778 const char *name)
779{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000780 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 char *attr = (char *)name;
782 attrnames_t *namesp;
783 int xflags = 0;
784 int error;
785
786 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
787 if (!namesp)
788 return -EOPNOTSUPP;
789 attr += namesp->attr_namelen;
790 error = namesp->attr_capable(vp, NULL);
791 if (error)
792 return error;
793 xflags |= namesp->attr_flag;
794 return namesp->attr_remove(vp, attr, xflags);
795}
796
797
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800798const struct inode_operations xfs_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100799 .permission = xfs_vn_permission,
800 .truncate = xfs_vn_truncate,
801 .getattr = xfs_vn_getattr,
802 .setattr = xfs_vn_setattr,
803 .setxattr = xfs_vn_setxattr,
804 .getxattr = xfs_vn_getxattr,
805 .listxattr = xfs_vn_listxattr,
806 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807};
808
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800809const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100810 .create = xfs_vn_create,
811 .lookup = xfs_vn_lookup,
812 .link = xfs_vn_link,
813 .unlink = xfs_vn_unlink,
814 .symlink = xfs_vn_symlink,
815 .mkdir = xfs_vn_mkdir,
816 .rmdir = xfs_vn_rmdir,
817 .mknod = xfs_vn_mknod,
818 .rename = xfs_vn_rename,
819 .permission = xfs_vn_permission,
820 .getattr = xfs_vn_getattr,
821 .setattr = xfs_vn_setattr,
822 .setxattr = xfs_vn_setxattr,
823 .getxattr = xfs_vn_getxattr,
824 .listxattr = xfs_vn_listxattr,
825 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826};
827
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800828const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100830 .follow_link = xfs_vn_follow_link,
831 .put_link = xfs_vn_put_link,
832 .permission = xfs_vn_permission,
833 .getattr = xfs_vn_getattr,
834 .setattr = xfs_vn_setattr,
835 .setxattr = xfs_vn_setxattr,
836 .getxattr = xfs_vn_getxattr,
837 .listxattr = xfs_vn_listxattr,
838 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839};