blob: ac50f8a37582acac8089ccbd7bbf382815b8e81d [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/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110074 * Change the requested timestamp in the given inode.
75 * We don't lock across timestamp updates, and we don't log them but
76 * we do record the fact that there is dirty information in core.
77 *
78 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
79 * with XFS_ICHGTIME_ACC to be sure that access time
80 * update will take. Calling first with XFS_ICHGTIME_ACC
81 * and then XFS_ICHGTIME_MOD may fail to modify the access
82 * timestamp if the filesystem is mounted noacctm.
83 */
84void
85xfs_ichgtime(
86 xfs_inode_t *ip,
87 int flags)
88{
Nathan Scottec86dc02006-03-17 17:25:36 +110089 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
Nathan Scott4aeb6642005-11-02 11:43:58 +110090 timespec_t tv;
91
Nathan Scott4aeb6642005-11-02 11:43:58 +110092 nanotime(&tv);
93 if (flags & XFS_ICHGTIME_MOD) {
94 inode->i_mtime = tv;
95 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
96 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
97 }
98 if (flags & XFS_ICHGTIME_ACC) {
99 inode->i_atime = tv;
100 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
101 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
102 }
103 if (flags & XFS_ICHGTIME_CHG) {
104 inode->i_ctime = tv;
105 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
106 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
107 }
108
109 /*
110 * We update the i_update_core field _after_ changing
111 * the timestamps in order to coordinate properly with
112 * xfs_iflush() so that we don't lose timestamp updates.
113 * This keeps us from having to hold the inode lock
114 * while doing this. We use the SYNCHRONIZE macro to
115 * ensure that the compiler does not reorder the update
116 * of i_update_core above the timestamp updates above.
117 */
118 SYNCHRONIZE();
119 ip->i_update_core = 1;
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700120 if (!(inode->i_state & I_SYNC))
Nathan Scott4aeb6642005-11-02 11:43:58 +1100121 mark_inode_dirty_sync(inode);
122}
123
124/*
125 * Variant on the above which avoids querying the system clock
126 * in situations where we know the Linux inode timestamps have
127 * just been updated (and so we can update our inode cheaply).
Nathan Scott4aeb6642005-11-02 11:43:58 +1100128 */
129void
130xfs_ichgtime_fast(
131 xfs_inode_t *ip,
132 struct inode *inode,
133 int flags)
134{
135 timespec_t *tvp;
136
137 /*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +1100138 * Atime updates for read() & friends are handled lazily now, and
139 * explicit updates must go through xfs_ichgtime()
140 */
141 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
142
143 /*
Nathan Scott4aeb6642005-11-02 11:43:58 +1100144 * We're not supposed to change timestamps in readonly-mounted
145 * filesystems. Throw it away if anyone asks us.
146 */
147 if (unlikely(IS_RDONLY(inode)))
148 return;
149
Nathan Scott4aeb6642005-11-02 11:43:58 +1100150 if (flags & XFS_ICHGTIME_MOD) {
151 tvp = &inode->i_mtime;
152 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
153 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
154 }
Nathan Scott4aeb6642005-11-02 11:43:58 +1100155 if (flags & XFS_ICHGTIME_CHG) {
156 tvp = &inode->i_ctime;
157 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
158 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
159 }
160
161 /*
162 * We update the i_update_core field _after_ changing
163 * the timestamps in order to coordinate properly with
164 * xfs_iflush() so that we don't lose timestamp updates.
165 * This keeps us from having to hold the inode lock
166 * while doing this. We use the SYNCHRONIZE macro to
167 * ensure that the compiler does not reorder the update
168 * of i_update_core above the timestamp updates above.
169 */
170 SYNCHRONIZE();
171 ip->i_update_core = 1;
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700172 if (!(inode->i_state & I_SYNC))
Nathan Scott4aeb6642005-11-02 11:43:58 +1100173 mark_inode_dirty_sync(inode);
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/*
178 * Pull the link count and size up from the xfs inode to the linux inode
179 */
180STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100181xfs_validate_fields(
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000182 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000184 struct xfs_inode *ip = XFS_I(inode);
185 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000187 inode->i_nlink = ip->i_d.di_nlink;
188 inode->i_blocks =
189 XFS_FSB_TO_BB(ip->i_mount, ip->i_d.di_nblocks +
190 ip->i_delayed_blks);
191 /* we're under i_sem so i_size can't change under us */
192 size = XFS_ISIZE(ip);
193 if (i_size_read(inode) != size)
194 i_size_write(inode, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197/*
Nathan Scott446ada42006-01-11 15:35:44 +1100198 * Hook in SELinux. This is not quite correct yet, what we really need
199 * here (as we do for default ACLs) is a mechanism by which creation of
200 * these attrs can be journalled at inode creation time (along with the
201 * inode, of course, such that log replay can't cause these to be lost).
202 */
203STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100204xfs_init_security(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000205 bhv_vnode_t *vp,
Nathan Scott446ada42006-01-11 15:35:44 +1100206 struct inode *dir)
207{
Nathan Scottec86dc02006-03-17 17:25:36 +1100208 struct inode *ip = vn_to_inode(vp);
Nathan Scott446ada42006-01-11 15:35:44 +1100209 size_t length;
210 void *value;
211 char *name;
212 int error;
213
214 error = security_inode_init_security(ip, dir, &name, &value, &length);
215 if (error) {
216 if (error == -EOPNOTSUPP)
217 return 0;
218 return -error;
219 }
220
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000221 error = xfs_attr_set(XFS_I(ip), name, value,
222 length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100223 if (!error)
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000224 xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED);
Nathan Scott446ada42006-01-11 15:35:44 +1100225
226 kfree(name);
227 kfree(value);
228 return error;
229}
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Determine whether a process has a valid fs_struct (kernel daemons
233 * like knfsd don't have an fs_struct).
234 *
235 * XXX(hch): nfsd is broken, better fix it instead.
236 */
David Chinner7989cb82007-02-10 18:34:56 +1100237STATIC_INLINE int
Nathan Scott416c6d52006-03-14 14:00:51 +1100238xfs_has_fs_struct(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 return (task->fs != init_task.fs);
241}
242
David Chinner7989cb82007-02-10 18:34:56 +1100243STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100244xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000245 struct inode *dir,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000246 bhv_vnode_t *vp,
Nathan Scott220b5282006-03-14 13:33:36 +1100247 struct dentry *dentry,
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100248 int mode)
249{
250 struct dentry teardown = {};
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100251
252 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100253 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100254 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100255 * ENOSPC can hit here, among other things.
256 */
Nathan Scottec86dc02006-03-17 17:25:36 +1100257 teardown.d_inode = vn_to_inode(vp);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100258 teardown.d_name = dentry->d_name;
259
260 if (S_ISDIR(mode))
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000261 xfs_rmdir(XFS_I(dir), &teardown);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100262 else
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000263 xfs_remove(XFS_I(dir), &teardown);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100264 VN_RELE(vp);
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100268xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 struct inode *dir,
270 struct dentry *dentry,
271 int mode,
272 dev_t rdev)
273{
274 struct inode *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000275 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 xfs_acl_t *default_acl = NULL;
277 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
278 int error;
279
280 /*
281 * Irix uses Missed'em'V split, but doesn't want to see
282 * the upper 5 bits of (14bit) major.
283 */
Nathan Scott220b5282006-03-14 13:33:36 +1100284 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -EINVAL;
286
Nathan Scott220b5282006-03-14 13:33:36 +1100287 if (unlikely(test_default_acl && test_default_acl(dvp))) {
288 if (!_ACL_ALLOC(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return -ENOMEM;
Nathan Scott220b5282006-03-14 13:33:36 +1100290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
292 _ACL_FREE(default_acl);
293 default_acl = NULL;
294 }
295 }
296
Nathan Scott416c6d52006-03-14 14:00:51 +1100297 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 mode &= ~current->fs->umask;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 switch (mode & S_IFMT) {
301 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000302 rdev = sysv_encode_dev(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 case S_IFREG:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000304 error = xfs_create(XFS_I(dir), dentry, mode, rdev, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 break;
306 case S_IFDIR:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000307 error = xfs_mkdir(XFS_I(dir), dentry, mode, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 break;
309 default:
310 error = EINVAL;
311 break;
312 }
313
Nathan Scott220b5282006-03-14 13:33:36 +1100314 if (unlikely(!error)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100315 error = xfs_init_security(vp, dir);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100316 if (error)
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000317 xfs_cleanup_inode(dir, vp, dentry, mode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100318 }
Nathan Scott446ada42006-01-11 15:35:44 +1100319
Nathan Scott220b5282006-03-14 13:33:36 +1100320 if (unlikely(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (!error) {
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000322 error = _ACL_INHERIT(vp, mode, default_acl);
Nathan Scott220b5282006-03-14 13:33:36 +1100323 if (!error)
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000324 xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100325 else
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000326 xfs_cleanup_inode(dir, vp, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 _ACL_FREE(default_acl);
329 }
330
Nathan Scott220b5282006-03-14 13:33:36 +1100331 if (likely(!error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ASSERT(vp);
Nathan Scottec86dc02006-03-17 17:25:36 +1100333 ip = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (S_ISCHR(mode) || S_ISBLK(mode))
336 ip->i_rdev = rdev;
337 else if (S_ISDIR(mode))
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000338 xfs_validate_fields(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 d_instantiate(dentry, ip);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000340 xfs_validate_fields(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 return -error;
343}
344
345STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100346xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 struct inode *dir,
348 struct dentry *dentry,
349 int mode,
350 struct nameidata *nd)
351{
Nathan Scott416c6d52006-03-14 14:00:51 +1100352 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100356xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct inode *dir,
358 struct dentry *dentry,
359 int mode)
360{
Nathan Scott416c6d52006-03-14 14:00:51 +1100361 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100365xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 struct inode *dir,
367 struct dentry *dentry,
368 struct nameidata *nd)
369{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000370 bhv_vnode_t *cvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 int error;
372
373 if (dentry->d_name.len >= MAXNAMELEN)
374 return ERR_PTR(-ENAMETOOLONG);
375
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000376 error = xfs_lookup(XFS_I(dir), dentry, &cvp);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000377 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (unlikely(error != ENOENT))
379 return ERR_PTR(-error);
380 d_add(dentry, NULL);
381 return NULL;
382 }
383
Nathan Scottec86dc02006-03-17 17:25:36 +1100384 return d_splice_alias(vn_to_inode(cvp), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100388xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct dentry *old_dentry,
390 struct inode *dir,
391 struct dentry *dentry)
392{
393 struct inode *ip; /* inode of guy being linked to */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000394 bhv_vnode_t *vp; /* vp of name being linked */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 int error;
396
397 ip = old_dentry->d_inode; /* inode being linked to */
Nathan Scottec86dc02006-03-17 17:25:36 +1100398 vp = vn_from_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Nathan Scott97dfd702006-06-27 16:13:46 +1000400 VN_HOLD(vp);
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000401 error = xfs_link(XFS_I(dir), vp, dentry);
Nathan Scott97dfd702006-06-27 16:13:46 +1000402 if (unlikely(error)) {
403 VN_RELE(vp);
404 } else {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000405 xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000406 xfs_validate_fields(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 d_instantiate(dentry, ip);
408 }
409 return -error;
410}
411
412STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100413xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 struct inode *dir,
415 struct dentry *dentry)
416{
417 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 int error;
419
420 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000422 error = xfs_remove(XFS_I(dir), dentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100423 if (likely(!error)) {
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000424 xfs_validate_fields(dir); /* size needs update */
425 xfs_validate_fields(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -error;
428}
429
430STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100431xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct inode *dir,
433 struct dentry *dentry,
434 const char *symname)
435{
436 struct inode *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000437 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000439 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 cvp = NULL;
442
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000443 mode = S_IFLNK |
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000444 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000446 error = xfs_symlink(XFS_I(dir), dentry, (char *)symname, mode,
447 &cvp, NULL);
Nathan Scott54245702006-01-16 15:54:05 +1100448 if (likely(!error && cvp)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100449 error = xfs_init_security(cvp, dir);
Nathan Scott54245702006-01-16 15:54:05 +1100450 if (likely(!error)) {
Nathan Scottec86dc02006-03-17 17:25:36 +1100451 ip = vn_to_inode(cvp);
Nathan Scott54245702006-01-16 15:54:05 +1100452 d_instantiate(dentry, ip);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000453 xfs_validate_fields(dir);
454 xfs_validate_fields(ip);
Nathan Scottce9d37c2006-03-17 17:26:34 +1100455 } else {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000456 xfs_cleanup_inode(dir, cvp, dentry, 0);
Nathan Scott54245702006-01-16 15:54:05 +1100457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 return -error;
460}
461
462STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100463xfs_vn_rmdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct inode *dir,
465 struct dentry *dentry)
466{
467 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 int error;
469
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000470 error = xfs_rmdir(XFS_I(dir), dentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100471 if (likely(!error)) {
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000472 xfs_validate_fields(inode);
473 xfs_validate_fields(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475 return -error;
476}
477
478STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100479xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 struct inode *odir,
481 struct dentry *odentry,
482 struct inode *ndir,
483 struct dentry *ndentry)
484{
485 struct inode *new_inode = ndentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000486 bhv_vnode_t *tvp; /* target directory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 int error;
488
Nathan Scottec86dc02006-03-17 17:25:36 +1100489 tvp = vn_from_inode(ndir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000491 error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100492 if (likely(!error)) {
493 if (new_inode)
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000494 xfs_validate_fields(new_inode);
495 xfs_validate_fields(odir);
Nathan Scott220b5282006-03-14 13:33:36 +1100496 if (ndir != odir)
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000497 xfs_validate_fields(ndir);
Nathan Scott220b5282006-03-14 13:33:36 +1100498 }
Nathan Scott220b5282006-03-14 13:33:36 +1100499 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502/*
503 * careful here - this function can get called recursively, so
504 * we need to be very careful about how much stack we use.
505 * uio is kmalloced for this reason...
506 */
Al Viro008b1502005-08-20 00:17:39 +0100507STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100508xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct dentry *dentry,
510 struct nameidata *nd)
511{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000513 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700515 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000516 if (!link)
517 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000519 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000520 if (unlikely(error))
521 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100524 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000525
526 out_kfree:
527 kfree(link);
528 out_err:
529 nd_set_link(nd, ERR_PTR(error));
530 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Nathan Scottcde410a2005-09-05 11:47:01 +1000533STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100534xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000535 struct dentry *dentry,
536 struct nameidata *nd,
537 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Nathan Scottcde410a2005-09-05 11:47:01 +1000539 char *s = nd_get_link(nd);
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (!IS_ERR(s))
542 kfree(s);
543}
544
545#ifdef CONFIG_XFS_POSIX_ACL
546STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100547xfs_vn_permission(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct inode *inode,
549 int mode,
550 struct nameidata *nd)
551{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000552 return -xfs_access(XFS_I(inode), mode << 6, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554#else
Nathan Scott416c6d52006-03-14 14:00:51 +1100555#define xfs_vn_permission NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556#endif
557
558STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100559xfs_vn_getattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct vfsmount *mnt,
561 struct dentry *dentry,
562 struct kstat *stat)
563{
564 struct inode *inode = dentry->d_inode;
Nathan Scott69e23b92006-09-28 11:01:22 +1000565 bhv_vattr_t vattr = { .va_mask = XFS_AT_STAT };
566 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000568 error = xfs_getattr(XFS_I(inode), &vattr, ATTR_LAZY);
Nathan Scott69e23b92006-09-28 11:01:22 +1000569 if (likely(!error)) {
570 stat->size = i_size_read(inode);
571 stat->dev = inode->i_sb->s_dev;
572 stat->rdev = (vattr.va_rdev == 0) ? 0 :
573 MKDEV(sysv_major(vattr.va_rdev) & 0x1ff,
574 sysv_minor(vattr.va_rdev));
575 stat->mode = vattr.va_mode;
576 stat->nlink = vattr.va_nlink;
577 stat->uid = vattr.va_uid;
578 stat->gid = vattr.va_gid;
579 stat->ino = vattr.va_nodeid;
580 stat->atime = vattr.va_atime;
581 stat->mtime = vattr.va_mtime;
582 stat->ctime = vattr.va_ctime;
583 stat->blocks = vattr.va_nblocks;
584 stat->blksize = vattr.va_blocksize;
585 }
Nathan Scottb76963f2006-06-09 14:58:20 +1000586 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100590xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 struct dentry *dentry,
592 struct iattr *attr)
593{
594 struct inode *inode = dentry->d_inode;
595 unsigned int ia_valid = attr->ia_valid;
Nathan Scott8285fb52006-06-09 17:07:12 +1000596 bhv_vattr_t vattr = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int flags = 0;
598 int error;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (ia_valid & ATTR_UID) {
601 vattr.va_mask |= XFS_AT_UID;
602 vattr.va_uid = attr->ia_uid;
603 }
604 if (ia_valid & ATTR_GID) {
605 vattr.va_mask |= XFS_AT_GID;
606 vattr.va_gid = attr->ia_gid;
607 }
608 if (ia_valid & ATTR_SIZE) {
609 vattr.va_mask |= XFS_AT_SIZE;
610 vattr.va_size = attr->ia_size;
611 }
612 if (ia_valid & ATTR_ATIME) {
613 vattr.va_mask |= XFS_AT_ATIME;
614 vattr.va_atime = attr->ia_atime;
Nathan Scott8c0b5112006-04-11 15:12:45 +1000615 inode->i_atime = attr->ia_atime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 if (ia_valid & ATTR_MTIME) {
618 vattr.va_mask |= XFS_AT_MTIME;
619 vattr.va_mtime = attr->ia_mtime;
620 }
621 if (ia_valid & ATTR_CTIME) {
622 vattr.va_mask |= XFS_AT_CTIME;
623 vattr.va_ctime = attr->ia_ctime;
624 }
625 if (ia_valid & ATTR_MODE) {
626 vattr.va_mask |= XFS_AT_MODE;
627 vattr.va_mode = attr->ia_mode;
628 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
629 inode->i_mode &= ~S_ISGID;
630 }
631
632 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
633 flags |= ATTR_UTIME;
634#ifdef ATTR_NO_BLOCK
635 if ((ia_valid & ATTR_NO_BLOCK))
636 flags |= ATTR_NONBLOCK;
637#endif
638
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000639 error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100640 if (likely(!error))
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000641 __vn_revalidate(vn_from_inode(inode), &vattr);
Nathan Scott220b5282006-03-14 13:33:36 +1100642 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100646xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct inode *inode)
648{
Nathan Scottc2536662006-03-29 10:44:40 +1000649 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100653xfs_vn_setxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 struct dentry *dentry,
655 const char *name,
656 const void *data,
657 size_t size,
658 int flags)
659{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000660 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 char *attr = (char *)name;
662 attrnames_t *namesp;
663 int xflags = 0;
664 int error;
665
666 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
667 if (!namesp)
668 return -EOPNOTSUPP;
669 attr += namesp->attr_namelen;
670 error = namesp->attr_capable(vp, NULL);
671 if (error)
672 return error;
673
674 /* Convert Linux syscall to XFS internal ATTR flags */
675 if (flags & XATTR_CREATE)
676 xflags |= ATTR_CREATE;
677 if (flags & XATTR_REPLACE)
678 xflags |= ATTR_REPLACE;
679 xflags |= namesp->attr_flag;
680 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
681}
682
683STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100684xfs_vn_getxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct dentry *dentry,
686 const char *name,
687 void *data,
688 size_t size)
689{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000690 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 char *attr = (char *)name;
692 attrnames_t *namesp;
693 int xflags = 0;
694 ssize_t error;
695
696 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
697 if (!namesp)
698 return -EOPNOTSUPP;
699 attr += namesp->attr_namelen;
700 error = namesp->attr_capable(vp, NULL);
701 if (error)
702 return error;
703
704 /* Convert Linux syscall to XFS internal ATTR flags */
705 if (!size) {
706 xflags |= ATTR_KERNOVAL;
707 data = NULL;
708 }
709 xflags |= namesp->attr_flag;
710 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
711}
712
713STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100714xfs_vn_listxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct dentry *dentry,
716 char *data,
717 size_t size)
718{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000719 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int error, xflags = ATTR_KERNAMELS;
721 ssize_t result;
722
723 if (!size)
724 xflags |= ATTR_KERNOVAL;
725 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
726
727 error = attr_generic_list(vp, data, size, xflags, &result);
728 if (error < 0)
729 return error;
730 return result;
731}
732
733STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100734xfs_vn_removexattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct dentry *dentry,
736 const char *name)
737{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000738 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 char *attr = (char *)name;
740 attrnames_t *namesp;
741 int xflags = 0;
742 int error;
743
744 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
745 if (!namesp)
746 return -EOPNOTSUPP;
747 attr += namesp->attr_namelen;
748 error = namesp->attr_capable(vp, NULL);
749 if (error)
750 return error;
751 xflags |= namesp->attr_flag;
752 return namesp->attr_remove(vp, attr, xflags);
753}
754
755
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800756const struct inode_operations xfs_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100757 .permission = xfs_vn_permission,
758 .truncate = xfs_vn_truncate,
759 .getattr = xfs_vn_getattr,
760 .setattr = xfs_vn_setattr,
761 .setxattr = xfs_vn_setxattr,
762 .getxattr = xfs_vn_getxattr,
763 .listxattr = xfs_vn_listxattr,
764 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765};
766
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800767const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100768 .create = xfs_vn_create,
769 .lookup = xfs_vn_lookup,
770 .link = xfs_vn_link,
771 .unlink = xfs_vn_unlink,
772 .symlink = xfs_vn_symlink,
773 .mkdir = xfs_vn_mkdir,
774 .rmdir = xfs_vn_rmdir,
775 .mknod = xfs_vn_mknod,
776 .rename = xfs_vn_rename,
777 .permission = xfs_vn_permission,
778 .getattr = xfs_vn_getattr,
779 .setattr = xfs_vn_setattr,
780 .setxattr = xfs_vn_setxattr,
781 .getxattr = xfs_vn_getxattr,
782 .listxattr = xfs_vn_listxattr,
783 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800786const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100788 .follow_link = xfs_vn_follow_link,
789 .put_link = xfs_vn_put_link,
790 .permission = xfs_vn_permission,
791 .getattr = xfs_vn_getattr,
792 .setattr = xfs_vn_setattr,
793 .setxattr = xfs_vn_setxattr,
794 .getxattr = xfs_vn_getxattr,
795 .listxattr = xfs_vn_listxattr,
796 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797};