blob: 484daef91d7f0863518532f8420ed29b5a4b0259 [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"
26#include "xfs_dir.h"
27#include "xfs_dir2.h"
28#include "xfs_alloc.h"
29#include "xfs_dmapi.h"
30#include "xfs_quota.h"
31#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dir_sf.h"
36#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_dinode.h"
39#include "xfs_inode.h"
40#include "xfs_bmap.h"
Nathan Scotta844f452005-11-02 14:38:42 +110041#include "xfs_btree.h"
42#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_rtalloc.h"
44#include "xfs_error.h"
45#include "xfs_itable.h"
46#include "xfs_rw.h"
47#include "xfs_acl.h"
48#include "xfs_cap.h"
49#include "xfs_mac.h"
50#include "xfs_attr.h"
51#include "xfs_buf_item.h"
52#include "xfs_utils.h"
53
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080054#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/xattr.h>
56#include <linux/namei.h>
Nathan Scott446ada42006-01-11 15:35:44 +110057#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Nathan Scott4aeb6642005-11-02 11:43:58 +110059/*
Christoph Hellwig75e17b32006-01-11 20:58:44 +110060 * Get a XFS inode from a given vnode.
61 */
62xfs_inode_t *
63xfs_vtoi(
Nathan Scott67fcaa72006-06-09 17:00:52 +100064 bhv_vnode_t *vp)
Christoph Hellwig75e17b32006-01-11 20:58:44 +110065{
66 bhv_desc_t *bdp;
67
68 bdp = bhv_lookup_range(VN_BHV_HEAD(vp),
69 VNODE_POSITION_XFS, VNODE_POSITION_XFS);
70 if (unlikely(bdp == NULL))
71 return NULL;
72 return XFS_BHVTOI(bdp);
73}
74
75/*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110076 * Bring the atime in the XFS inode uptodate.
77 * Used before logging the inode to disk or when the Linux inode goes away.
78 */
79void
80xfs_synchronize_atime(
81 xfs_inode_t *ip)
82{
Nathan Scott67fcaa72006-06-09 17:00:52 +100083 bhv_vnode_t *vp;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110084
85 vp = XFS_ITOV_NULL(ip);
86 if (vp) {
87 struct inode *inode = &vp->v_inode;
88 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
89 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
90 }
91}
92
93/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110094 * Change the requested timestamp in the given inode.
95 * We don't lock across timestamp updates, and we don't log them but
96 * we do record the fact that there is dirty information in core.
97 *
98 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
99 * with XFS_ICHGTIME_ACC to be sure that access time
100 * update will take. Calling first with XFS_ICHGTIME_ACC
101 * and then XFS_ICHGTIME_MOD may fail to modify the access
102 * timestamp if the filesystem is mounted noacctm.
103 */
104void
105xfs_ichgtime(
106 xfs_inode_t *ip,
107 int flags)
108{
Nathan Scottec86dc02006-03-17 17:25:36 +1100109 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
Nathan Scott4aeb6642005-11-02 11:43:58 +1100110 timespec_t tv;
111
Nathan Scott4aeb6642005-11-02 11:43:58 +1100112 nanotime(&tv);
113 if (flags & XFS_ICHGTIME_MOD) {
114 inode->i_mtime = tv;
115 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
116 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
117 }
118 if (flags & XFS_ICHGTIME_ACC) {
119 inode->i_atime = tv;
120 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
121 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
122 }
123 if (flags & XFS_ICHGTIME_CHG) {
124 inode->i_ctime = tv;
125 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
126 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
127 }
128
129 /*
130 * We update the i_update_core field _after_ changing
131 * the timestamps in order to coordinate properly with
132 * xfs_iflush() so that we don't lose timestamp updates.
133 * This keeps us from having to hold the inode lock
134 * while doing this. We use the SYNCHRONIZE macro to
135 * ensure that the compiler does not reorder the update
136 * of i_update_core above the timestamp updates above.
137 */
138 SYNCHRONIZE();
139 ip->i_update_core = 1;
140 if (!(inode->i_state & I_LOCK))
141 mark_inode_dirty_sync(inode);
142}
143
144/*
145 * Variant on the above which avoids querying the system clock
146 * in situations where we know the Linux inode timestamps have
147 * just been updated (and so we can update our inode cheaply).
Nathan Scott4aeb6642005-11-02 11:43:58 +1100148 */
149void
150xfs_ichgtime_fast(
151 xfs_inode_t *ip,
152 struct inode *inode,
153 int flags)
154{
155 timespec_t *tvp;
156
157 /*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +1100158 * Atime updates for read() & friends are handled lazily now, and
159 * explicit updates must go through xfs_ichgtime()
160 */
161 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
162
163 /*
Nathan Scott4aeb6642005-11-02 11:43:58 +1100164 * We're not supposed to change timestamps in readonly-mounted
165 * filesystems. Throw it away if anyone asks us.
166 */
167 if (unlikely(IS_RDONLY(inode)))
168 return;
169
Nathan Scott4aeb6642005-11-02 11:43:58 +1100170 if (flags & XFS_ICHGTIME_MOD) {
171 tvp = &inode->i_mtime;
172 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
173 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
174 }
Nathan Scott4aeb6642005-11-02 11:43:58 +1100175 if (flags & XFS_ICHGTIME_CHG) {
176 tvp = &inode->i_ctime;
177 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
178 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
179 }
180
181 /*
182 * We update the i_update_core field _after_ changing
183 * the timestamps in order to coordinate properly with
184 * xfs_iflush() so that we don't lose timestamp updates.
185 * This keeps us from having to hold the inode lock
186 * while doing this. We use the SYNCHRONIZE macro to
187 * ensure that the compiler does not reorder the update
188 * of i_update_core above the timestamp updates above.
189 */
190 SYNCHRONIZE();
191 ip->i_update_core = 1;
192 if (!(inode->i_state & I_LOCK))
193 mark_inode_dirty_sync(inode);
194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197/*
198 * Pull the link count and size up from the xfs inode to the linux inode
199 */
200STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100201xfs_validate_fields(
Nathan Scott220b5282006-03-14 13:33:36 +1100202 struct inode *ip,
Nathan Scott8285fb52006-06-09 17:07:12 +1000203 bhv_vattr_t *vattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Nathan Scott220b5282006-03-14 13:33:36 +1100205 vattr->va_mask = XFS_AT_NLINK|XFS_AT_SIZE|XFS_AT_NBLOCKS;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000206 if (!bhv_vop_getattr(vn_from_inode(ip), vattr, ATTR_LAZY, NULL)) {
Nathan Scott220b5282006-03-14 13:33:36 +1100207 ip->i_nlink = vattr->va_nlink;
208 ip->i_blocks = vattr->va_nblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Nathan Scott220b5282006-03-14 13:33:36 +1100210 /* we're under i_sem so i_size can't change under us */
211 if (i_size_read(ip) != vattr->va_size)
212 i_size_write(ip, vattr->va_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214}
215
216/*
Nathan Scott446ada42006-01-11 15:35:44 +1100217 * Hook in SELinux. This is not quite correct yet, what we really need
218 * here (as we do for default ACLs) is a mechanism by which creation of
219 * these attrs can be journalled at inode creation time (along with the
220 * inode, of course, such that log replay can't cause these to be lost).
221 */
222STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100223xfs_init_security(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000224 bhv_vnode_t *vp,
Nathan Scott446ada42006-01-11 15:35:44 +1100225 struct inode *dir)
226{
Nathan Scottec86dc02006-03-17 17:25:36 +1100227 struct inode *ip = vn_to_inode(vp);
Nathan Scott446ada42006-01-11 15:35:44 +1100228 size_t length;
229 void *value;
230 char *name;
231 int error;
232
233 error = security_inode_init_security(ip, dir, &name, &value, &length);
234 if (error) {
235 if (error == -EOPNOTSUPP)
236 return 0;
237 return -error;
238 }
239
Nathan Scott67fcaa72006-06-09 17:00:52 +1000240 error = bhv_vop_attr_set(vp, name, value, length, ATTR_SECURE, NULL);
Nathan Scott446ada42006-01-11 15:35:44 +1100241 if (!error)
242 VMODIFY(vp);
243
244 kfree(name);
245 kfree(value);
246 return error;
247}
248
249/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * Determine whether a process has a valid fs_struct (kernel daemons
251 * like knfsd don't have an fs_struct).
252 *
253 * XXX(hch): nfsd is broken, better fix it instead.
254 */
255STATIC inline int
Nathan Scott416c6d52006-03-14 14:00:51 +1100256xfs_has_fs_struct(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 return (task->fs != init_task.fs);
259}
260
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100261STATIC inline void
Nathan Scott416c6d52006-03-14 14:00:51 +1100262xfs_cleanup_inode(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000263 bhv_vnode_t *dvp,
264 bhv_vnode_t *vp,
Nathan Scott220b5282006-03-14 13:33:36 +1100265 struct dentry *dentry,
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100266 int mode)
267{
268 struct dentry teardown = {};
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100269
270 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100271 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100272 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100273 * ENOSPC can hit here, among other things.
274 */
Nathan Scottec86dc02006-03-17 17:25:36 +1100275 teardown.d_inode = vn_to_inode(vp);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100276 teardown.d_name = dentry->d_name;
277
278 if (S_ISDIR(mode))
Nathan Scott67fcaa72006-06-09 17:00:52 +1000279 bhv_vop_rmdir(dvp, &teardown, NULL);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100280 else
Nathan Scott67fcaa72006-06-09 17:00:52 +1000281 bhv_vop_remove(dvp, &teardown, NULL);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100282 VN_RELE(vp);
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100286xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct inode *dir,
288 struct dentry *dentry,
289 int mode,
290 dev_t rdev)
291{
292 struct inode *ip;
Nathan Scott8285fb52006-06-09 17:07:12 +1000293 bhv_vattr_t vattr = { 0 };
Nathan Scott67fcaa72006-06-09 17:00:52 +1000294 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 xfs_acl_t *default_acl = NULL;
296 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
297 int error;
298
299 /*
300 * Irix uses Missed'em'V split, but doesn't want to see
301 * the upper 5 bits of (14bit) major.
302 */
Nathan Scott220b5282006-03-14 13:33:36 +1100303 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return -EINVAL;
305
Nathan Scott220b5282006-03-14 13:33:36 +1100306 if (unlikely(test_default_acl && test_default_acl(dvp))) {
307 if (!_ACL_ALLOC(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -ENOMEM;
Nathan Scott220b5282006-03-14 13:33:36 +1100309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
311 _ACL_FREE(default_acl);
312 default_acl = NULL;
313 }
314 }
315
Nathan Scott416c6d52006-03-14 14:00:51 +1100316 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 mode &= ~current->fs->umask;
318
Nathan Scott524fbf52006-03-14 14:07:53 +1100319 vattr.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
320 vattr.va_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 switch (mode & S_IFMT) {
323 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
Nathan Scott524fbf52006-03-14 14:07:53 +1100324 vattr.va_rdev = sysv_encode_dev(rdev);
325 vattr.va_mask |= XFS_AT_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*FALLTHROUGH*/
327 case S_IFREG:
Nathan Scott67fcaa72006-06-09 17:00:52 +1000328 error = bhv_vop_create(dvp, dentry, &vattr, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 break;
330 case S_IFDIR:
Nathan Scott67fcaa72006-06-09 17:00:52 +1000331 error = bhv_vop_mkdir(dvp, dentry, &vattr, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 break;
333 default:
334 error = EINVAL;
335 break;
336 }
337
Nathan Scott220b5282006-03-14 13:33:36 +1100338 if (unlikely(!error)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100339 error = xfs_init_security(vp, dir);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100340 if (error)
Nathan Scott416c6d52006-03-14 14:00:51 +1100341 xfs_cleanup_inode(dvp, vp, dentry, mode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100342 }
Nathan Scott446ada42006-01-11 15:35:44 +1100343
Nathan Scott220b5282006-03-14 13:33:36 +1100344 if (unlikely(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (!error) {
Nathan Scott524fbf52006-03-14 14:07:53 +1100346 error = _ACL_INHERIT(vp, &vattr, default_acl);
Nathan Scott220b5282006-03-14 13:33:36 +1100347 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 VMODIFY(vp);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100349 else
Nathan Scott416c6d52006-03-14 14:00:51 +1100350 xfs_cleanup_inode(dvp, vp, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352 _ACL_FREE(default_acl);
353 }
354
Nathan Scott220b5282006-03-14 13:33:36 +1100355 if (likely(!error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ASSERT(vp);
Nathan Scottec86dc02006-03-17 17:25:36 +1100357 ip = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 if (S_ISCHR(mode) || S_ISBLK(mode))
360 ip->i_rdev = rdev;
361 else if (S_ISDIR(mode))
Nathan Scott524fbf52006-03-14 14:07:53 +1100362 xfs_validate_fields(ip, &vattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 d_instantiate(dentry, ip);
Nathan Scott524fbf52006-03-14 14:07:53 +1100364 xfs_validate_fields(dir, &vattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366 return -error;
367}
368
369STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100370xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct inode *dir,
372 struct dentry *dentry,
373 int mode,
374 struct nameidata *nd)
375{
Nathan Scott416c6d52006-03-14 14:00:51 +1100376 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100380xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 struct inode *dir,
382 struct dentry *dentry,
383 int mode)
384{
Nathan Scott416c6d52006-03-14 14:00:51 +1100385 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100389xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct inode *dir,
391 struct dentry *dentry,
392 struct nameidata *nd)
393{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000394 bhv_vnode_t *vp = vn_from_inode(dir), *cvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 int error;
396
397 if (dentry->d_name.len >= MAXNAMELEN)
398 return ERR_PTR(-ENAMETOOLONG);
399
Nathan Scott67fcaa72006-06-09 17:00:52 +1000400 error = bhv_vop_lookup(vp, dentry, &cvp, 0, NULL, NULL);
401 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (unlikely(error != ENOENT))
403 return ERR_PTR(-error);
404 d_add(dentry, NULL);
405 return NULL;
406 }
407
Nathan Scottec86dc02006-03-17 17:25:36 +1100408 return d_splice_alias(vn_to_inode(cvp), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100412xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct dentry *old_dentry,
414 struct inode *dir,
415 struct dentry *dentry)
416{
417 struct inode *ip; /* inode of guy being linked to */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000418 bhv_vnode_t *tdvp; /* target directory for new name/link */
419 bhv_vnode_t *vp; /* vp of name being linked */
Nathan Scott8285fb52006-06-09 17:07:12 +1000420 bhv_vattr_t vattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int error;
422
423 ip = old_dentry->d_inode; /* inode being linked to */
424 if (S_ISDIR(ip->i_mode))
425 return -EPERM;
426
Nathan Scottec86dc02006-03-17 17:25:36 +1100427 tdvp = vn_from_inode(dir);
428 vp = vn_from_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Nathan Scott67fcaa72006-06-09 17:00:52 +1000430 error = bhv_vop_link(tdvp, vp, dentry, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100431 if (likely(!error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 VMODIFY(tdvp);
433 VN_HOLD(vp);
Nathan Scott524fbf52006-03-14 14:07:53 +1100434 xfs_validate_fields(ip, &vattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 d_instantiate(dentry, ip);
436 }
437 return -error;
438}
439
440STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100441xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct inode *dir,
443 struct dentry *dentry)
444{
445 struct inode *inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000446 bhv_vnode_t *dvp; /* directory containing name to remove */
Nathan Scott8285fb52006-06-09 17:07:12 +1000447 bhv_vattr_t vattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int error;
449
450 inode = dentry->d_inode;
Nathan Scottec86dc02006-03-17 17:25:36 +1100451 dvp = vn_from_inode(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Nathan Scott67fcaa72006-06-09 17:00:52 +1000453 error = bhv_vop_remove(dvp, dentry, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100454 if (likely(!error)) {
Nathan Scott524fbf52006-03-14 14:07:53 +1100455 xfs_validate_fields(dir, &vattr); /* size needs update */
456 xfs_validate_fields(inode, &vattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -error;
459}
460
461STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100462xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct inode *dir,
464 struct dentry *dentry,
465 const char *symname)
466{
467 struct inode *ip;
Nathan Scott8285fb52006-06-09 17:07:12 +1000468 bhv_vattr_t va = { 0 };
Nathan Scott67fcaa72006-06-09 17:00:52 +1000469 bhv_vnode_t *dvp; /* directory containing name of symlink */
470 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 int error;
472
Nathan Scottec86dc02006-03-17 17:25:36 +1100473 dvp = vn_from_inode(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 cvp = NULL;
475
Nathan Scott67fcaa72006-06-09 17:00:52 +1000476 va.va_mode = S_IFLNK |
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000477 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000478 va.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Nathan Scott67fcaa72006-06-09 17:00:52 +1000480 error = bhv_vop_symlink(dvp, dentry, &va, (char *)symname, &cvp, NULL);
Nathan Scott54245702006-01-16 15:54:05 +1100481 if (likely(!error && cvp)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100482 error = xfs_init_security(cvp, dir);
Nathan Scott54245702006-01-16 15:54:05 +1100483 if (likely(!error)) {
Nathan Scottec86dc02006-03-17 17:25:36 +1100484 ip = vn_to_inode(cvp);
Nathan Scott54245702006-01-16 15:54:05 +1100485 d_instantiate(dentry, ip);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000486 xfs_validate_fields(dir, &va);
487 xfs_validate_fields(ip, &va);
Nathan Scottce9d37c2006-03-17 17:26:34 +1100488 } else {
489 xfs_cleanup_inode(dvp, cvp, dentry, 0);
Nathan Scott54245702006-01-16 15:54:05 +1100490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492 return -error;
493}
494
495STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100496xfs_vn_rmdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct inode *dir,
498 struct dentry *dentry)
499{
500 struct inode *inode = dentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000501 bhv_vnode_t *dvp = vn_from_inode(dir);
Nathan Scott8285fb52006-06-09 17:07:12 +1000502 bhv_vattr_t vattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 int error;
504
Nathan Scott67fcaa72006-06-09 17:00:52 +1000505 error = bhv_vop_rmdir(dvp, dentry, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100506 if (likely(!error)) {
Nathan Scott524fbf52006-03-14 14:07:53 +1100507 xfs_validate_fields(inode, &vattr);
508 xfs_validate_fields(dir, &vattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510 return -error;
511}
512
513STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100514xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct inode *odir,
516 struct dentry *odentry,
517 struct inode *ndir,
518 struct dentry *ndentry)
519{
520 struct inode *new_inode = ndentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000521 bhv_vnode_t *fvp; /* from directory */
522 bhv_vnode_t *tvp; /* target directory */
Nathan Scott8285fb52006-06-09 17:07:12 +1000523 bhv_vattr_t vattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 int error;
525
Nathan Scottec86dc02006-03-17 17:25:36 +1100526 fvp = vn_from_inode(odir);
527 tvp = vn_from_inode(ndir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Nathan Scott67fcaa72006-06-09 17:00:52 +1000529 error = bhv_vop_rename(fvp, odentry, tvp, ndentry, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100530 if (likely(!error)) {
531 if (new_inode)
Nathan Scott524fbf52006-03-14 14:07:53 +1100532 xfs_validate_fields(new_inode, &vattr);
533 xfs_validate_fields(odir, &vattr);
Nathan Scott220b5282006-03-14 13:33:36 +1100534 if (ndir != odir)
Nathan Scott524fbf52006-03-14 14:07:53 +1100535 xfs_validate_fields(ndir, &vattr);
Nathan Scott220b5282006-03-14 13:33:36 +1100536 }
Nathan Scott220b5282006-03-14 13:33:36 +1100537 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/*
541 * careful here - this function can get called recursively, so
542 * we need to be very careful about how much stack we use.
543 * uio is kmalloced for this reason...
544 */
Al Viro008b1502005-08-20 00:17:39 +0100545STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100546xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct dentry *dentry,
548 struct nameidata *nd)
549{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000550 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 uio_t *uio;
552 iovec_t iov;
553 int error;
554 char *link;
555
556 ASSERT(dentry);
557 ASSERT(nd);
558
Nathan Scott0d1335b2006-01-12 10:32:51 +1100559 link = (char *)kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (!link) {
561 nd_set_link(nd, ERR_PTR(-ENOMEM));
Al Viro008b1502005-08-20 00:17:39 +0100562 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
565 uio = (uio_t *)kmalloc(sizeof(uio_t), GFP_KERNEL);
566 if (!uio) {
567 kfree(link);
568 nd_set_link(nd, ERR_PTR(-ENOMEM));
Al Viro008b1502005-08-20 00:17:39 +0100569 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Nathan Scottec86dc02006-03-17 17:25:36 +1100572 vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 iov.iov_base = link;
Nathan Scott0d1335b2006-01-12 10:32:51 +1100575 iov.iov_len = MAXPATHLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 uio->uio_iov = &iov;
578 uio->uio_offset = 0;
579 uio->uio_segflg = UIO_SYSSPACE;
Nathan Scott0d1335b2006-01-12 10:32:51 +1100580 uio->uio_resid = MAXPATHLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 uio->uio_iovcnt = 1;
582
Nathan Scott67fcaa72006-06-09 17:00:52 +1000583 error = bhv_vop_readlink(vp, uio, 0, NULL);
584 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 kfree(link);
586 link = ERR_PTR(-error);
587 } else {
Nathan Scott0d1335b2006-01-12 10:32:51 +1100588 link[MAXPATHLEN - uio->uio_resid] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590 kfree(uio);
591
592 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100593 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Nathan Scottcde410a2005-09-05 11:47:01 +1000596STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100597xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000598 struct dentry *dentry,
599 struct nameidata *nd,
600 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Nathan Scottcde410a2005-09-05 11:47:01 +1000602 char *s = nd_get_link(nd);
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!IS_ERR(s))
605 kfree(s);
606}
607
608#ifdef CONFIG_XFS_POSIX_ACL
609STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100610xfs_vn_permission(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct inode *inode,
612 int mode,
613 struct nameidata *nd)
614{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000615 return -bhv_vop_access(vn_from_inode(inode), mode << 6, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617#else
Nathan Scott416c6d52006-03-14 14:00:51 +1100618#define xfs_vn_permission NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619#endif
620
621STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100622xfs_vn_getattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct vfsmount *mnt,
624 struct dentry *dentry,
625 struct kstat *stat)
626{
627 struct inode *inode = dentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000628 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 int error = 0;
630
631 if (unlikely(vp->v_flag & VMODIFIED))
632 error = vn_revalidate(vp);
633 if (!error)
634 generic_fillattr(inode, stat);
Nathan Scottb76963f2006-06-09 14:58:20 +1000635 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100639xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct dentry *dentry,
641 struct iattr *attr)
642{
643 struct inode *inode = dentry->d_inode;
644 unsigned int ia_valid = attr->ia_valid;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000645 bhv_vnode_t *vp = vn_from_inode(inode);
Nathan Scott8285fb52006-06-09 17:07:12 +1000646 bhv_vattr_t vattr = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int flags = 0;
648 int error;
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (ia_valid & ATTR_UID) {
651 vattr.va_mask |= XFS_AT_UID;
652 vattr.va_uid = attr->ia_uid;
653 }
654 if (ia_valid & ATTR_GID) {
655 vattr.va_mask |= XFS_AT_GID;
656 vattr.va_gid = attr->ia_gid;
657 }
658 if (ia_valid & ATTR_SIZE) {
659 vattr.va_mask |= XFS_AT_SIZE;
660 vattr.va_size = attr->ia_size;
661 }
662 if (ia_valid & ATTR_ATIME) {
663 vattr.va_mask |= XFS_AT_ATIME;
664 vattr.va_atime = attr->ia_atime;
Nathan Scott8c0b5112006-04-11 15:12:45 +1000665 inode->i_atime = attr->ia_atime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 if (ia_valid & ATTR_MTIME) {
668 vattr.va_mask |= XFS_AT_MTIME;
669 vattr.va_mtime = attr->ia_mtime;
670 }
671 if (ia_valid & ATTR_CTIME) {
672 vattr.va_mask |= XFS_AT_CTIME;
673 vattr.va_ctime = attr->ia_ctime;
674 }
675 if (ia_valid & ATTR_MODE) {
676 vattr.va_mask |= XFS_AT_MODE;
677 vattr.va_mode = attr->ia_mode;
678 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
679 inode->i_mode &= ~S_ISGID;
680 }
681
682 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
683 flags |= ATTR_UTIME;
684#ifdef ATTR_NO_BLOCK
685 if ((ia_valid & ATTR_NO_BLOCK))
686 flags |= ATTR_NONBLOCK;
687#endif
688
Nathan Scott67fcaa72006-06-09 17:00:52 +1000689 error = bhv_vop_setattr(vp, &vattr, flags, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100690 if (likely(!error))
691 __vn_revalidate(vp, &vattr);
692 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100696xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct inode *inode)
698{
Nathan Scottc2536662006-03-29 10:44:40 +1000699 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100703xfs_vn_setxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 struct dentry *dentry,
705 const char *name,
706 const void *data,
707 size_t size,
708 int flags)
709{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000710 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 char *attr = (char *)name;
712 attrnames_t *namesp;
713 int xflags = 0;
714 int error;
715
716 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
717 if (!namesp)
718 return -EOPNOTSUPP;
719 attr += namesp->attr_namelen;
720 error = namesp->attr_capable(vp, NULL);
721 if (error)
722 return error;
723
724 /* Convert Linux syscall to XFS internal ATTR flags */
725 if (flags & XATTR_CREATE)
726 xflags |= ATTR_CREATE;
727 if (flags & XATTR_REPLACE)
728 xflags |= ATTR_REPLACE;
729 xflags |= namesp->attr_flag;
730 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
731}
732
733STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100734xfs_vn_getxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct dentry *dentry,
736 const char *name,
737 void *data,
738 size_t size)
739{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000740 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 char *attr = (char *)name;
742 attrnames_t *namesp;
743 int xflags = 0;
744 ssize_t error;
745
746 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
747 if (!namesp)
748 return -EOPNOTSUPP;
749 attr += namesp->attr_namelen;
750 error = namesp->attr_capable(vp, NULL);
751 if (error)
752 return error;
753
754 /* Convert Linux syscall to XFS internal ATTR flags */
755 if (!size) {
756 xflags |= ATTR_KERNOVAL;
757 data = NULL;
758 }
759 xflags |= namesp->attr_flag;
760 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
761}
762
763STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100764xfs_vn_listxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct dentry *dentry,
766 char *data,
767 size_t size)
768{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000769 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 int error, xflags = ATTR_KERNAMELS;
771 ssize_t result;
772
773 if (!size)
774 xflags |= ATTR_KERNOVAL;
775 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
776
777 error = attr_generic_list(vp, data, size, xflags, &result);
778 if (error < 0)
779 return error;
780 return result;
781}
782
783STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100784xfs_vn_removexattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct dentry *dentry,
786 const char *name)
787{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000788 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 char *attr = (char *)name;
790 attrnames_t *namesp;
791 int xflags = 0;
792 int error;
793
794 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
795 if (!namesp)
796 return -EOPNOTSUPP;
797 attr += namesp->attr_namelen;
798 error = namesp->attr_capable(vp, NULL);
799 if (error)
800 return error;
801 xflags |= namesp->attr_flag;
802 return namesp->attr_remove(vp, attr, xflags);
803}
804
805
Nathan Scott416c6d52006-03-14 14:00:51 +1100806struct inode_operations xfs_inode_operations = {
807 .permission = xfs_vn_permission,
808 .truncate = xfs_vn_truncate,
809 .getattr = xfs_vn_getattr,
810 .setattr = xfs_vn_setattr,
811 .setxattr = xfs_vn_setxattr,
812 .getxattr = xfs_vn_getxattr,
813 .listxattr = xfs_vn_listxattr,
814 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815};
816
Nathan Scott416c6d52006-03-14 14:00:51 +1100817struct inode_operations xfs_dir_inode_operations = {
818 .create = xfs_vn_create,
819 .lookup = xfs_vn_lookup,
820 .link = xfs_vn_link,
821 .unlink = xfs_vn_unlink,
822 .symlink = xfs_vn_symlink,
823 .mkdir = xfs_vn_mkdir,
824 .rmdir = xfs_vn_rmdir,
825 .mknod = xfs_vn_mknod,
826 .rename = xfs_vn_rename,
827 .permission = xfs_vn_permission,
828 .getattr = xfs_vn_getattr,
829 .setattr = xfs_vn_setattr,
830 .setxattr = xfs_vn_setxattr,
831 .getxattr = xfs_vn_getxattr,
832 .listxattr = xfs_vn_listxattr,
833 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834};
835
Nathan Scott416c6d52006-03-14 14:00:51 +1100836struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100838 .follow_link = xfs_vn_follow_link,
839 .put_link = xfs_vn_put_link,
840 .permission = xfs_vn_permission,
841 .getattr = xfs_vn_getattr,
842 .setattr = xfs_vn_setattr,
843 .setxattr = xfs_vn_setxattr,
844 .getxattr = xfs_vn_getxattr,
845 .listxattr = xfs_vn_listxattr,
846 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847};