blob: 5e16016bf65710ce6cf4348f64dafda2effb8775 [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>
David Chinner3ed65262007-11-23 16:29:25 +110055#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Nathan Scott4aeb6642005-11-02 11:43:58 +110057/*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110058 * Bring the atime in the XFS inode uptodate.
59 * Used before logging the inode to disk or when the Linux inode goes away.
60 */
61void
62xfs_synchronize_atime(
63 xfs_inode_t *ip)
64{
Nathan Scott67fcaa72006-06-09 17:00:52 +100065 bhv_vnode_t *vp;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110066
67 vp = XFS_ITOV_NULL(ip);
68 if (vp) {
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100069 ip->i_d.di_atime.t_sec = (__int32_t)vp->i_atime.tv_sec;
70 ip->i_d.di_atime.t_nsec = (__int32_t)vp->i_atime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110071 }
72}
73
74/*
David Chinner5d51eff2007-11-23 16:29:18 +110075 * If the linux inode exists, mark it dirty.
76 * Used when commiting a dirty inode into a transaction so that
77 * the inode will get written back by the linux code
78 */
79void
80xfs_mark_inode_dirty_sync(
81 xfs_inode_t *ip)
82{
83 bhv_vnode_t *vp;
84
85 vp = XFS_ITOV_NULL(ip);
86 if (vp)
87 mark_inode_dirty_sync(vn_to_inode(vp));
88}
89
90/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110091 * Change the requested timestamp in the given inode.
92 * We don't lock across timestamp updates, and we don't log them but
93 * we do record the fact that there is dirty information in core.
94 *
95 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
96 * with XFS_ICHGTIME_ACC to be sure that access time
97 * update will take. Calling first with XFS_ICHGTIME_ACC
98 * and then XFS_ICHGTIME_MOD may fail to modify the access
99 * timestamp if the filesystem is mounted noacctm.
100 */
101void
102xfs_ichgtime(
103 xfs_inode_t *ip,
104 int flags)
105{
Nathan Scottec86dc02006-03-17 17:25:36 +1100106 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
Nathan Scott4aeb6642005-11-02 11:43:58 +1100107 timespec_t tv;
108
Nathan Scott4aeb6642005-11-02 11:43:58 +1100109 nanotime(&tv);
110 if (flags & XFS_ICHGTIME_MOD) {
111 inode->i_mtime = tv;
112 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
113 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
114 }
115 if (flags & XFS_ICHGTIME_ACC) {
116 inode->i_atime = tv;
117 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
118 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
119 }
120 if (flags & XFS_ICHGTIME_CHG) {
121 inode->i_ctime = tv;
122 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
123 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
124 }
125
126 /*
127 * We update the i_update_core field _after_ changing
128 * the timestamps in order to coordinate properly with
129 * xfs_iflush() so that we don't lose timestamp updates.
130 * This keeps us from having to hold the inode lock
131 * while doing this. We use the SYNCHRONIZE macro to
132 * ensure that the compiler does not reorder the update
133 * of i_update_core above the timestamp updates above.
134 */
135 SYNCHRONIZE();
136 ip->i_update_core = 1;
David Chinnercf10e822007-12-07 14:09:11 +1100137 if (!(inode->i_state & I_NEW))
Nathan Scott4aeb6642005-11-02 11:43:58 +1100138 mark_inode_dirty_sync(inode);
139}
140
141/*
142 * Variant on the above which avoids querying the system clock
143 * in situations where we know the Linux inode timestamps have
144 * just been updated (and so we can update our inode cheaply).
Nathan Scott4aeb6642005-11-02 11:43:58 +1100145 */
146void
147xfs_ichgtime_fast(
148 xfs_inode_t *ip,
149 struct inode *inode,
150 int flags)
151{
152 timespec_t *tvp;
153
154 /*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +1100155 * Atime updates for read() & friends are handled lazily now, and
156 * explicit updates must go through xfs_ichgtime()
157 */
158 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
159
160 /*
Nathan Scott4aeb6642005-11-02 11:43:58 +1100161 * We're not supposed to change timestamps in readonly-mounted
162 * filesystems. Throw it away if anyone asks us.
163 */
164 if (unlikely(IS_RDONLY(inode)))
165 return;
166
Nathan Scott4aeb6642005-11-02 11:43:58 +1100167 if (flags & XFS_ICHGTIME_MOD) {
168 tvp = &inode->i_mtime;
169 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
170 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
171 }
Nathan Scott4aeb6642005-11-02 11:43:58 +1100172 if (flags & XFS_ICHGTIME_CHG) {
173 tvp = &inode->i_ctime;
174 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
175 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
176 }
177
178 /*
179 * We update the i_update_core field _after_ changing
180 * the timestamps in order to coordinate properly with
181 * xfs_iflush() so that we don't lose timestamp updates.
182 * This keeps us from having to hold the inode lock
183 * while doing this. We use the SYNCHRONIZE macro to
184 * ensure that the compiler does not reorder the update
185 * of i_update_core above the timestamp updates above.
186 */
187 SYNCHRONIZE();
188 ip->i_update_core = 1;
David Chinnercf10e822007-12-07 14:09:11 +1100189 if (!(inode->i_state & I_NEW))
Nathan Scott4aeb6642005-11-02 11:43:58 +1100190 mark_inode_dirty_sync(inode);
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/*
195 * Pull the link count and size up from the xfs inode to the linux inode
196 */
197STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100198xfs_validate_fields(
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000199 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000201 struct xfs_inode *ip = XFS_I(inode);
202 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000204 inode->i_nlink = ip->i_d.di_nlink;
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000205 /* we're under i_sem so i_size can't change under us */
206 size = XFS_ISIZE(ip);
207 if (i_size_read(inode) != size)
208 i_size_write(inode, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211/*
Nathan Scott446ada42006-01-11 15:35:44 +1100212 * Hook in SELinux. This is not quite correct yet, what we really need
213 * here (as we do for default ACLs) is a mechanism by which creation of
214 * these attrs can be journalled at inode creation time (along with the
215 * inode, of course, such that log replay can't cause these to be lost).
216 */
217STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100218xfs_init_security(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000219 bhv_vnode_t *vp,
Nathan Scott446ada42006-01-11 15:35:44 +1100220 struct inode *dir)
221{
Nathan Scottec86dc02006-03-17 17:25:36 +1100222 struct inode *ip = vn_to_inode(vp);
Nathan Scott446ada42006-01-11 15:35:44 +1100223 size_t length;
224 void *value;
225 char *name;
226 int error;
227
228 error = security_inode_init_security(ip, dir, &name, &value, &length);
229 if (error) {
230 if (error == -EOPNOTSUPP)
231 return 0;
232 return -error;
233 }
234
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000235 error = xfs_attr_set(XFS_I(ip), name, value,
236 length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100237 if (!error)
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000238 xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED);
Nathan Scott446ada42006-01-11 15:35:44 +1100239
240 kfree(name);
241 kfree(value);
242 return error;
243}
244
245/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * Determine whether a process has a valid fs_struct (kernel daemons
247 * like knfsd don't have an fs_struct).
248 *
249 * XXX(hch): nfsd is broken, better fix it instead.
250 */
David Chinner7989cb82007-02-10 18:34:56 +1100251STATIC_INLINE int
Nathan Scott416c6d52006-03-14 14:00:51 +1100252xfs_has_fs_struct(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 return (task->fs != init_task.fs);
255}
256
David Chinner7989cb82007-02-10 18:34:56 +1100257STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100258xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000259 struct inode *dir,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000260 bhv_vnode_t *vp,
Nathan Scott220b5282006-03-14 13:33:36 +1100261 struct dentry *dentry,
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100262 int mode)
263{
264 struct dentry teardown = {};
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100265
266 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100267 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100268 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100269 * ENOSPC can hit here, among other things.
270 */
Nathan Scottec86dc02006-03-17 17:25:36 +1100271 teardown.d_inode = vn_to_inode(vp);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100272 teardown.d_name = dentry->d_name;
273
274 if (S_ISDIR(mode))
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000275 xfs_rmdir(XFS_I(dir), &teardown);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100276 else
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000277 xfs_remove(XFS_I(dir), &teardown);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100278 VN_RELE(vp);
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100282xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 struct inode *dir,
284 struct dentry *dentry,
285 int mode,
286 dev_t rdev)
287{
288 struct inode *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000289 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 xfs_acl_t *default_acl = NULL;
291 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
292 int error;
293
294 /*
295 * Irix uses Missed'em'V split, but doesn't want to see
296 * the upper 5 bits of (14bit) major.
297 */
Nathan Scott220b5282006-03-14 13:33:36 +1100298 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return -EINVAL;
300
Nathan Scott220b5282006-03-14 13:33:36 +1100301 if (unlikely(test_default_acl && test_default_acl(dvp))) {
302 if (!_ACL_ALLOC(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return -ENOMEM;
Nathan Scott220b5282006-03-14 13:33:36 +1100304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
306 _ACL_FREE(default_acl);
307 default_acl = NULL;
308 }
309 }
310
Nathan Scott416c6d52006-03-14 14:00:51 +1100311 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 mode &= ~current->fs->umask;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 switch (mode & S_IFMT) {
315 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000316 rdev = sysv_encode_dev(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 case S_IFREG:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000318 error = xfs_create(XFS_I(dir), dentry, mode, rdev, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320 case S_IFDIR:
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000321 error = xfs_mkdir(XFS_I(dir), dentry, mode, &vp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323 default:
324 error = EINVAL;
325 break;
326 }
327
Nathan Scott220b5282006-03-14 13:33:36 +1100328 if (unlikely(!error)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100329 error = xfs_init_security(vp, dir);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100330 if (error)
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000331 xfs_cleanup_inode(dir, vp, dentry, mode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100332 }
Nathan Scott446ada42006-01-11 15:35:44 +1100333
Nathan Scott220b5282006-03-14 13:33:36 +1100334 if (unlikely(default_acl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (!error) {
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000336 error = _ACL_INHERIT(vp, mode, default_acl);
Nathan Scott220b5282006-03-14 13:33:36 +1100337 if (!error)
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000338 xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100339 else
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000340 xfs_cleanup_inode(dir, vp, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 _ACL_FREE(default_acl);
343 }
344
Nathan Scott220b5282006-03-14 13:33:36 +1100345 if (likely(!error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 ASSERT(vp);
Nathan Scottec86dc02006-03-17 17:25:36 +1100347 ip = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Christoph Hellwigbad60fd2007-12-21 10:58:56 +1100349 if (S_ISDIR(mode))
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000350 xfs_validate_fields(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 d_instantiate(dentry, ip);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000352 xfs_validate_fields(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354 return -error;
355}
356
357STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100358xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct inode *dir,
360 struct dentry *dentry,
361 int mode,
362 struct nameidata *nd)
363{
Nathan Scott416c6d52006-03-14 14:00:51 +1100364 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100368xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 struct inode *dir,
370 struct dentry *dentry,
371 int mode)
372{
Nathan Scott416c6d52006-03-14 14:00:51 +1100373 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100377xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 struct inode *dir,
379 struct dentry *dentry,
380 struct nameidata *nd)
381{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000382 bhv_vnode_t *cvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int error;
384
385 if (dentry->d_name.len >= MAXNAMELEN)
386 return ERR_PTR(-ENAMETOOLONG);
387
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000388 error = xfs_lookup(XFS_I(dir), dentry, &cvp);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000389 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (unlikely(error != ENOENT))
391 return ERR_PTR(-error);
392 d_add(dentry, NULL);
393 return NULL;
394 }
395
Nathan Scottec86dc02006-03-17 17:25:36 +1100396 return d_splice_alias(vn_to_inode(cvp), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100400xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct dentry *old_dentry,
402 struct inode *dir,
403 struct dentry *dentry)
404{
405 struct inode *ip; /* inode of guy being linked to */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000406 bhv_vnode_t *vp; /* vp of name being linked */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 int error;
408
409 ip = old_dentry->d_inode; /* inode being linked to */
Nathan Scottec86dc02006-03-17 17:25:36 +1100410 vp = vn_from_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Nathan Scott97dfd702006-06-27 16:13:46 +1000412 VN_HOLD(vp);
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000413 error = xfs_link(XFS_I(dir), vp, dentry);
Nathan Scott97dfd702006-06-27 16:13:46 +1000414 if (unlikely(error)) {
415 VN_RELE(vp);
416 } else {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000417 xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000418 xfs_validate_fields(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 d_instantiate(dentry, ip);
420 }
421 return -error;
422}
423
424STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100425xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct inode *dir,
427 struct dentry *dentry)
428{
429 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int error;
431
432 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000434 error = xfs_remove(XFS_I(dir), dentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100435 if (likely(!error)) {
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000436 xfs_validate_fields(dir); /* size needs update */
437 xfs_validate_fields(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return -error;
440}
441
442STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100443xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 struct inode *dir,
445 struct dentry *dentry,
446 const char *symname)
447{
448 struct inode *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000449 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000451 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 cvp = NULL;
454
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000455 mode = S_IFLNK |
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000456 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000458 error = xfs_symlink(XFS_I(dir), dentry, (char *)symname, mode,
459 &cvp, NULL);
Nathan Scott54245702006-01-16 15:54:05 +1100460 if (likely(!error && cvp)) {
Nathan Scott416c6d52006-03-14 14:00:51 +1100461 error = xfs_init_security(cvp, dir);
Nathan Scott54245702006-01-16 15:54:05 +1100462 if (likely(!error)) {
Nathan Scottec86dc02006-03-17 17:25:36 +1100463 ip = vn_to_inode(cvp);
Nathan Scott54245702006-01-16 15:54:05 +1100464 d_instantiate(dentry, ip);
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000465 xfs_validate_fields(dir);
466 xfs_validate_fields(ip);
Nathan Scottce9d37c2006-03-17 17:26:34 +1100467 } else {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000468 xfs_cleanup_inode(dir, cvp, dentry, 0);
Nathan Scott54245702006-01-16 15:54:05 +1100469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471 return -error;
472}
473
474STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100475xfs_vn_rmdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct inode *dir,
477 struct dentry *dentry)
478{
479 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int error;
481
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000482 error = xfs_rmdir(XFS_I(dir), dentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100483 if (likely(!error)) {
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000484 xfs_validate_fields(inode);
485 xfs_validate_fields(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 return -error;
488}
489
490STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100491xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct inode *odir,
493 struct dentry *odentry,
494 struct inode *ndir,
495 struct dentry *ndentry)
496{
497 struct inode *new_inode = ndentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000498 bhv_vnode_t *tvp; /* target directory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 int error;
500
Nathan Scottec86dc02006-03-17 17:25:36 +1100501 tvp = vn_from_inode(ndir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000503 error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry);
Nathan Scott220b5282006-03-14 13:33:36 +1100504 if (likely(!error)) {
505 if (new_inode)
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000506 xfs_validate_fields(new_inode);
507 xfs_validate_fields(odir);
Nathan Scott220b5282006-03-14 13:33:36 +1100508 if (ndir != odir)
Christoph Hellwig6572bc22007-09-19 15:27:39 +1000509 xfs_validate_fields(ndir);
Nathan Scott220b5282006-03-14 13:33:36 +1100510 }
Nathan Scott220b5282006-03-14 13:33:36 +1100511 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514/*
515 * careful here - this function can get called recursively, so
516 * we need to be very careful about how much stack we use.
517 * uio is kmalloced for this reason...
518 */
Al Viro008b1502005-08-20 00:17:39 +0100519STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100520xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct dentry *dentry,
522 struct nameidata *nd)
523{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000525 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700527 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000528 if (!link)
529 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000531 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000532 if (unlikely(error))
533 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100536 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000537
538 out_kfree:
539 kfree(link);
540 out_err:
541 nd_set_link(nd, ERR_PTR(error));
542 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Nathan Scottcde410a2005-09-05 11:47:01 +1000545STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100546xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000547 struct dentry *dentry,
548 struct nameidata *nd,
549 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Nathan Scottcde410a2005-09-05 11:47:01 +1000551 char *s = nd_get_link(nd);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (!IS_ERR(s))
554 kfree(s);
555}
556
557#ifdef CONFIG_XFS_POSIX_ACL
558STATIC int
Christoph Hellwig45767582008-02-05 12:13:24 +1100559xfs_check_acl(
560 struct inode *inode,
561 int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Christoph Hellwig45767582008-02-05 12:13:24 +1100563 struct xfs_inode *ip = XFS_I(inode);
564 int error;
565
566 xfs_itrace_entry(ip);
567
568 if (XFS_IFORK_Q(ip)) {
569 error = xfs_acl_iaccess(ip, mask, NULL);
570 if (error != -1)
571 return -error;
572 }
573
574 return -EAGAIN;
575}
576
577STATIC int
578xfs_vn_permission(
579 struct inode *inode,
580 int mask,
581 struct nameidata *nd)
582{
583 return generic_permission(inode, mask, xfs_check_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585#else
Nathan Scott416c6d52006-03-14 14:00:51 +1100586#define xfs_vn_permission NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587#endif
588
589STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100590xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000591 struct vfsmount *mnt,
592 struct dentry *dentry,
593 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000595 struct inode *inode = dentry->d_inode;
596 struct xfs_inode *ip = XFS_I(inode);
597 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000599 xfs_itrace_entry(ip);
600
601 if (XFS_FORCED_SHUTDOWN(mp))
602 return XFS_ERROR(EIO);
603
604 stat->size = XFS_ISIZE(ip);
605 stat->dev = inode->i_sb->s_dev;
606 stat->mode = ip->i_d.di_mode;
607 stat->nlink = ip->i_d.di_nlink;
608 stat->uid = ip->i_d.di_uid;
609 stat->gid = ip->i_d.di_gid;
610 stat->ino = ip->i_ino;
611#if XFS_BIG_INUMS
612 stat->ino += mp->m_inoadd;
613#endif
614 stat->atime = inode->i_atime;
615 stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec;
616 stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
617 stat->ctime.tv_sec = ip->i_d.di_ctime.t_sec;
618 stat->ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
619 stat->blocks =
620 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
621
622
623 switch (inode->i_mode & S_IFMT) {
624 case S_IFBLK:
625 case S_IFCHR:
626 stat->blksize = BLKDEV_IOSIZE;
627 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
628 sysv_minor(ip->i_df.if_u2.if_rdev));
629 break;
630 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100631 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000632 /*
633 * If the file blocks are being allocated from a
634 * realtime volume, then return the inode's realtime
635 * extent size or the realtime volume's extent size.
636 */
637 stat->blksize =
638 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
639 } else
640 stat->blksize = xfs_preferred_iosize(mp);
641 stat->rdev = 0;
642 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000643 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000644
645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100649xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct dentry *dentry,
651 struct iattr *attr)
652{
653 struct inode *inode = dentry->d_inode;
654 unsigned int ia_valid = attr->ia_valid;
Nathan Scott8285fb52006-06-09 17:07:12 +1000655 bhv_vattr_t vattr = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int flags = 0;
657 int error;
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (ia_valid & ATTR_UID) {
660 vattr.va_mask |= XFS_AT_UID;
661 vattr.va_uid = attr->ia_uid;
662 }
663 if (ia_valid & ATTR_GID) {
664 vattr.va_mask |= XFS_AT_GID;
665 vattr.va_gid = attr->ia_gid;
666 }
667 if (ia_valid & ATTR_SIZE) {
668 vattr.va_mask |= XFS_AT_SIZE;
669 vattr.va_size = attr->ia_size;
670 }
671 if (ia_valid & ATTR_ATIME) {
672 vattr.va_mask |= XFS_AT_ATIME;
673 vattr.va_atime = attr->ia_atime;
Nathan Scott8c0b5112006-04-11 15:12:45 +1000674 inode->i_atime = attr->ia_atime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 if (ia_valid & ATTR_MTIME) {
677 vattr.va_mask |= XFS_AT_MTIME;
678 vattr.va_mtime = attr->ia_mtime;
679 }
680 if (ia_valid & ATTR_CTIME) {
681 vattr.va_mask |= XFS_AT_CTIME;
682 vattr.va_ctime = attr->ia_ctime;
683 }
684 if (ia_valid & ATTR_MODE) {
685 vattr.va_mask |= XFS_AT_MODE;
686 vattr.va_mode = attr->ia_mode;
687 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
688 inode->i_mode &= ~S_ISGID;
689 }
690
691 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
692 flags |= ATTR_UTIME;
693#ifdef ATTR_NO_BLOCK
694 if ((ia_valid & ATTR_NO_BLOCK))
695 flags |= ATTR_NONBLOCK;
696#endif
697
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000698 error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100699 if (likely(!error))
Christoph Hellwig21a62542007-09-19 15:27:49 +1000700 vn_revalidate(vn_from_inode(inode));
Nathan Scott220b5282006-03-14 13:33:36 +1100701 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100705xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct inode *inode)
707{
Nathan Scottc2536662006-03-29 10:44:40 +1000708 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100712xfs_vn_setxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct dentry *dentry,
714 const char *name,
715 const void *data,
716 size_t size,
717 int flags)
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 char *attr = (char *)name;
721 attrnames_t *namesp;
722 int xflags = 0;
723 int error;
724
725 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
726 if (!namesp)
727 return -EOPNOTSUPP;
728 attr += namesp->attr_namelen;
729 error = namesp->attr_capable(vp, NULL);
730 if (error)
731 return error;
732
733 /* Convert Linux syscall to XFS internal ATTR flags */
734 if (flags & XATTR_CREATE)
735 xflags |= ATTR_CREATE;
736 if (flags & XATTR_REPLACE)
737 xflags |= ATTR_REPLACE;
738 xflags |= namesp->attr_flag;
739 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
740}
741
742STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100743xfs_vn_getxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct dentry *dentry,
745 const char *name,
746 void *data,
747 size_t size)
748{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000749 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 char *attr = (char *)name;
751 attrnames_t *namesp;
752 int xflags = 0;
753 ssize_t error;
754
755 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
756 if (!namesp)
757 return -EOPNOTSUPP;
758 attr += namesp->attr_namelen;
759 error = namesp->attr_capable(vp, NULL);
760 if (error)
761 return error;
762
763 /* Convert Linux syscall to XFS internal ATTR flags */
764 if (!size) {
765 xflags |= ATTR_KERNOVAL;
766 data = NULL;
767 }
768 xflags |= namesp->attr_flag;
769 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
770}
771
772STATIC ssize_t
Nathan Scott416c6d52006-03-14 14:00:51 +1100773xfs_vn_listxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct dentry *dentry,
775 char *data,
776 size_t size)
777{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000778 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int error, xflags = ATTR_KERNAMELS;
780 ssize_t result;
781
782 if (!size)
783 xflags |= ATTR_KERNOVAL;
784 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
785
786 error = attr_generic_list(vp, data, size, xflags, &result);
787 if (error < 0)
788 return error;
789 return result;
790}
791
792STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100793xfs_vn_removexattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct dentry *dentry,
795 const char *name)
796{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000797 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 char *attr = (char *)name;
799 attrnames_t *namesp;
800 int xflags = 0;
801 int error;
802
803 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
804 if (!namesp)
805 return -EOPNOTSUPP;
806 attr += namesp->attr_namelen;
807 error = namesp->attr_capable(vp, NULL);
808 if (error)
809 return error;
810 xflags |= namesp->attr_flag;
811 return namesp->attr_remove(vp, attr, xflags);
812}
813
David Chinner3ed65262007-11-23 16:29:25 +1100814STATIC long
815xfs_vn_fallocate(
816 struct inode *inode,
817 int mode,
818 loff_t offset,
819 loff_t len)
820{
821 long error;
822 loff_t new_size = 0;
823 xfs_flock64_t bf;
824 xfs_inode_t *ip = XFS_I(inode);
825
826 /* preallocation on directories not yet supported */
827 error = -ENODEV;
828 if (S_ISDIR(inode->i_mode))
829 goto out_error;
830
831 bf.l_whence = 0;
832 bf.l_start = offset;
833 bf.l_len = len;
834
835 xfs_ilock(ip, XFS_IOLOCK_EXCL);
836 error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
837 0, NULL, ATTR_NOLOCK);
838 if (!error && !(mode & FALLOC_FL_KEEP_SIZE) &&
839 offset + len > i_size_read(inode))
840 new_size = offset + len;
841
842 /* Change file size if needed */
843 if (new_size) {
844 bhv_vattr_t va;
845
846 va.va_mask = XFS_AT_SIZE;
847 va.va_size = new_size;
848 error = xfs_setattr(ip, &va, ATTR_NOLOCK, NULL);
849 }
850
851 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
852out_error:
853 return error;
854}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800856const struct inode_operations xfs_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100857 .permission = xfs_vn_permission,
858 .truncate = xfs_vn_truncate,
859 .getattr = xfs_vn_getattr,
860 .setattr = xfs_vn_setattr,
861 .setxattr = xfs_vn_setxattr,
862 .getxattr = xfs_vn_getxattr,
863 .listxattr = xfs_vn_listxattr,
864 .removexattr = xfs_vn_removexattr,
David Chinner3ed65262007-11-23 16:29:25 +1100865 .fallocate = xfs_vn_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866};
867
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800868const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100869 .create = xfs_vn_create,
870 .lookup = xfs_vn_lookup,
871 .link = xfs_vn_link,
872 .unlink = xfs_vn_unlink,
873 .symlink = xfs_vn_symlink,
874 .mkdir = xfs_vn_mkdir,
875 .rmdir = xfs_vn_rmdir,
876 .mknod = xfs_vn_mknod,
877 .rename = xfs_vn_rename,
878 .permission = xfs_vn_permission,
879 .getattr = xfs_vn_getattr,
880 .setattr = xfs_vn_setattr,
881 .setxattr = xfs_vn_setxattr,
882 .getxattr = xfs_vn_getxattr,
883 .listxattr = xfs_vn_listxattr,
884 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885};
886
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800887const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100889 .follow_link = xfs_vn_follow_link,
890 .put_link = xfs_vn_put_link,
891 .permission = xfs_vn_permission,
892 .getattr = xfs_vn_getattr,
893 .setattr = xfs_vn_setattr,
894 .setxattr = xfs_vn_setxattr,
895 .getxattr = xfs_vn_getxattr,
896 .listxattr = xfs_vn_listxattr,
897 .removexattr = xfs_vn_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898};