[XFS] Remove unused tracing code
[deliverable/linux.git] / fs / xfs / linux-2.6 / xfs_lrw.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
1da177e4 19#include "xfs_fs.h"
a844f451 20#include "xfs_bit.h"
1da177e4 21#include "xfs_log.h"
a844f451 22#include "xfs_inum.h"
1da177e4
LT
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
1da177e4
LT
26#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
1da177e4 31#include "xfs_bmap_btree.h"
a844f451 32#include "xfs_alloc_btree.h"
1da177e4 33#include "xfs_ialloc_btree.h"
1da177e4 34#include "xfs_dir2_sf.h"
a844f451 35#include "xfs_attr_sf.h"
1da177e4
LT
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_bmap.h"
a844f451
NS
39#include "xfs_btree.h"
40#include "xfs_ialloc.h"
1da177e4
LT
41#include "xfs_rtalloc.h"
42#include "xfs_error.h"
43#include "xfs_itable.h"
44#include "xfs_rw.h"
45#include "xfs_acl.h"
1da177e4
LT
46#include "xfs_attr.h"
47#include "xfs_inode_item.h"
48#include "xfs_buf_item.h"
49#include "xfs_utils.h"
50#include "xfs_iomap.h"
993386c1 51#include "xfs_vnodeops.h"
1da177e4
LT
52
53#include <linux/capability.h>
54#include <linux/writeback.h>
55
56
57#if defined(XFS_RW_TRACE)
58void
59xfs_rw_enter_trace(
60 int tag,
613d7043 61 xfs_inode_t *ip,
1da177e4
LT
62 void *data,
63 size_t segs,
64 loff_t offset,
65 int ioflags)
66{
1da177e4
LT
67 if (ip->i_rwtrace == NULL)
68 return;
69 ktrace_enter(ip->i_rwtrace,
70 (void *)(unsigned long)tag,
71 (void *)ip,
72 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
73 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
74 (void *)data,
75 (void *)((unsigned long)segs),
76 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
77 (void *)((unsigned long)(offset & 0xffffffff)),
78 (void *)((unsigned long)ioflags),
613d7043
CH
79 (void *)((unsigned long)((ip->i_new_size >> 32) & 0xffffffff)),
80 (void *)((unsigned long)(ip->i_new_size & 0xffffffff)),
f1fdc848 81 (void *)((unsigned long)current_pid()),
1da177e4
LT
82 (void *)NULL,
83 (void *)NULL,
84 (void *)NULL,
85 (void *)NULL);
86}
87
88void
89xfs_inval_cached_trace(
613d7043 90 xfs_inode_t *ip,
1da177e4
LT
91 xfs_off_t offset,
92 xfs_off_t len,
93 xfs_off_t first,
94 xfs_off_t last)
95{
1da177e4
LT
96
97 if (ip->i_rwtrace == NULL)
98 return;
99 ktrace_enter(ip->i_rwtrace,
100 (void *)(__psint_t)XFS_INVAL_CACHED,
101 (void *)ip,
102 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
103 (void *)((unsigned long)(offset & 0xffffffff)),
104 (void *)((unsigned long)((len >> 32) & 0xffffffff)),
105 (void *)((unsigned long)(len & 0xffffffff)),
106 (void *)((unsigned long)((first >> 32) & 0xffffffff)),
107 (void *)((unsigned long)(first & 0xffffffff)),
108 (void *)((unsigned long)((last >> 32) & 0xffffffff)),
109 (void *)((unsigned long)(last & 0xffffffff)),
f1fdc848 110 (void *)((unsigned long)current_pid()),
1da177e4
LT
111 (void *)NULL,
112 (void *)NULL,
113 (void *)NULL,
114 (void *)NULL,
115 (void *)NULL);
116}
117#endif
118
119/*
120 * xfs_iozero
121 *
122 * xfs_iozero clears the specified range of buffer supplied,
123 * and marks all the affected blocks as valid and modified. If
124 * an affected block is not allocated, it will be allocated. If
125 * an affected block is not completely overwritten, and is not
126 * valid before the operation, it will be read from disk before
127 * being partially zeroed.
128 */
129STATIC int
130xfs_iozero(
541d7d3c 131 struct xfs_inode *ip, /* inode */
1da177e4 132 loff_t pos, /* offset in file */
68160161 133 size_t count) /* size of data to zero */
1da177e4 134{
1da177e4
LT
135 struct page *page;
136 struct address_space *mapping;
1da177e4
LT
137 int status;
138
01651646 139 mapping = VFS_I(ip)->i_mapping;
1da177e4 140 do {
d79689c7
NP
141 unsigned offset, bytes;
142 void *fsdata;
1da177e4
LT
143
144 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
1da177e4
LT
145 bytes = PAGE_CACHE_SIZE - offset;
146 if (bytes > count)
147 bytes = count;
148
d79689c7
NP
149 status = pagecache_write_begin(NULL, mapping, pos, bytes,
150 AOP_FLAG_UNINTERRUPTIBLE,
151 &page, &fsdata);
e7ff6aed 152 if (status)
d79689c7 153 break;
1da177e4 154
eebd2aa3 155 zero_user(page, offset, bytes);
e7ff6aed 156
d79689c7
NP
157 status = pagecache_write_end(NULL, mapping, pos, bytes, bytes,
158 page, fsdata);
159 WARN_ON(status <= 0); /* can't return less than zero! */
160 pos += bytes;
161 count -= bytes;
162 status = 0;
1da177e4
LT
163 } while (count);
164
165 return (-status);
166}
167
1da177e4
LT
168ssize_t /* bytes read, or (-) error */
169xfs_read(
993386c1 170 xfs_inode_t *ip,
1da177e4
LT
171 struct kiocb *iocb,
172 const struct iovec *iovp,
173 unsigned int segs,
174 loff_t *offset,
993386c1 175 int ioflags)
1da177e4
LT
176{
177 struct file *file = iocb->ki_filp;
178 struct inode *inode = file->f_mapping->host;
993386c1 179 xfs_mount_t *mp = ip->i_mount;
1da177e4 180 size_t size = 0;
d3cf2094 181 ssize_t ret = 0;
1da177e4 182 xfs_fsize_t n;
1da177e4
LT
183 unsigned long seg;
184
1da177e4
LT
185
186 XFS_STATS_INC(xs_read_calls);
187
188 /* START copy & waste from filemap.c */
189 for (seg = 0; seg < segs; seg++) {
190 const struct iovec *iv = &iovp[seg];
191
192 /*
193 * If any segment has a negative length, or the cumulative
194 * length ever wraps negative then return -EINVAL.
195 */
196 size += iv->iov_len;
197 if (unlikely((ssize_t)(size|iv->iov_len) < 0))
198 return XFS_ERROR(-EINVAL);
199 }
200 /* END copy & waste from filemap.c */
201
202 if (unlikely(ioflags & IO_ISDIRECT)) {
203 xfs_buftarg_t *target =
71ddabb9 204 XFS_IS_REALTIME_INODE(ip) ?
1da177e4 205 mp->m_rtdev_targp : mp->m_ddev_targp;
ce8e922c
NS
206 if ((*offset & target->bt_smask) ||
207 (size & target->bt_smask)) {
ba87ea69 208 if (*offset == ip->i_size) {
1da177e4
LT
209 return (0);
210 }
211 return -XFS_ERROR(EINVAL);
212 }
213 }
214
215 n = XFS_MAXIOFFSET(mp) - *offset;
216 if ((n <= 0) || (size == 0))
217 return 0;
218
219 if (n < size)
220 size = n;
221
a13828b1 222 if (XFS_FORCED_SHUTDOWN(mp))
1da177e4 223 return -EIO;
1da177e4
LT
224
225 if (unlikely(ioflags & IO_ISDIRECT))
1b1dcc1b 226 mutex_lock(&inode->i_mutex);
1da177e4
LT
227 xfs_ilock(ip, XFS_IOLOCK_SHARED);
228
eb9df39d 229 if (DM_EVENT_ENABLED(ip, DM_EVENT_READ) && !(ioflags & IO_INVIS)) {
e1a40fa9 230 int dmflags = FILP_DELAY_FLAG(file) | DM_SEM_FLAG_RD(ioflags);
126468b1 231 int iolock = XFS_IOLOCK_SHARED;
1da177e4 232
bc4ac74a 233 ret = -XFS_SEND_DATA(mp, DM_EVENT_READ, ip, *offset, size,
126468b1 234 dmflags, &iolock);
1da177e4
LT
235 if (ret) {
236 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
721259bc
LM
237 if (unlikely(ioflags & IO_ISDIRECT))
238 mutex_unlock(&inode->i_mutex);
239 return ret;
1da177e4
LT
240 }
241 }
242
edcd4bce 243 if (unlikely(ioflags & IO_ISDIRECT)) {
dcf49cc5 244 if (inode->i_mapping->nrpages)
2e656092 245 ret = -xfs_flushinval_pages(ip, (*offset & PAGE_CACHE_MASK),
e6a4b37f 246 -1, FI_REMAPF_LOCKED);
721259bc 247 mutex_unlock(&inode->i_mutex);
d3cf2094
LM
248 if (ret) {
249 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
250 return ret;
251 }
edcd4bce 252 }
721259bc 253
613d7043 254 xfs_rw_enter_trace(XFS_READ_ENTER, ip,
1da177e4 255 (void *)iovp, segs, *offset, ioflags);
543ade1f
BP
256
257 iocb->ki_pos = *offset;
258 ret = generic_file_aio_read(iocb, iovp, segs, *offset);
1da177e4
LT
259 if (ret == -EIOCBQUEUED && !(ioflags & IO_ISAIO))
260 ret = wait_on_sync_kiocb(iocb);
261 if (ret > 0)
262 XFS_STATS_ADD(xs_read_bytes, ret);
263
264 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
1da177e4
LT
265 return ret;
266}
267
1b895840
NS
268ssize_t
269xfs_splice_read(
993386c1 270 xfs_inode_t *ip,
1b895840 271 struct file *infilp,
cbb7e577 272 loff_t *ppos,
3a326a2c 273 struct pipe_inode_info *pipe,
1b895840
NS
274 size_t count,
275 int flags,
993386c1 276 int ioflags)
1b895840 277{
1b895840
NS
278 xfs_mount_t *mp = ip->i_mount;
279 ssize_t ret;
1da177e4 280
1b895840
NS
281 XFS_STATS_INC(xs_read_calls);
282 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
283 return -EIO;
284
285 xfs_ilock(ip, XFS_IOLOCK_SHARED);
286
eb9df39d 287 if (DM_EVENT_ENABLED(ip, DM_EVENT_READ) && !(ioflags & IO_INVIS)) {
126468b1 288 int iolock = XFS_IOLOCK_SHARED;
1b895840
NS
289 int error;
290
bc4ac74a 291 error = XFS_SEND_DATA(mp, DM_EVENT_READ, ip, *ppos, count,
126468b1 292 FILP_DELAY_FLAG(infilp), &iolock);
1b895840
NS
293 if (error) {
294 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
295 return -error;
296 }
297 }
613d7043 298 xfs_rw_enter_trace(XFS_SPLICE_READ_ENTER, ip,
cbb7e577
JA
299 pipe, count, *ppos, ioflags);
300 ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
1da177e4
LT
301 if (ret > 0)
302 XFS_STATS_ADD(xs_read_bytes, ret);
303
1b895840
NS
304 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
305 return ret;
306}
307
308ssize_t
309xfs_splice_write(
993386c1 310 xfs_inode_t *ip,
3a326a2c 311 struct pipe_inode_info *pipe,
1b895840 312 struct file *outfilp,
cbb7e577 313 loff_t *ppos,
1b895840
NS
314 size_t count,
315 int flags,
993386c1 316 int ioflags)
1b895840 317{
1b895840
NS
318 xfs_mount_t *mp = ip->i_mount;
319 ssize_t ret;
0a8d17d0 320 struct inode *inode = outfilp->f_mapping->host;
ba87ea69 321 xfs_fsize_t isize, new_size;
1b895840
NS
322
323 XFS_STATS_INC(xs_write_calls);
324 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
325 return -EIO;
326
327 xfs_ilock(ip, XFS_IOLOCK_EXCL);
328
eb9df39d 329 if (DM_EVENT_ENABLED(ip, DM_EVENT_WRITE) && !(ioflags & IO_INVIS)) {
126468b1 330 int iolock = XFS_IOLOCK_EXCL;
1b895840
NS
331 int error;
332
bc4ac74a 333 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, *ppos, count,
126468b1 334 FILP_DELAY_FLAG(outfilp), &iolock);
1b895840
NS
335 if (error) {
336 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
337 return -error;
338 }
339 }
ba87ea69
LM
340
341 new_size = *ppos + count;
342
343 xfs_ilock(ip, XFS_ILOCK_EXCL);
344 if (new_size > ip->i_size)
613d7043 345 ip->i_new_size = new_size;
ba87ea69
LM
346 xfs_iunlock(ip, XFS_ILOCK_EXCL);
347
613d7043 348 xfs_rw_enter_trace(XFS_SPLICE_WRITE_ENTER, ip,
cbb7e577
JA
349 pipe, count, *ppos, ioflags);
350 ret = generic_file_splice_write(pipe, outfilp, ppos, count, flags);
1b895840
NS
351 if (ret > 0)
352 XFS_STATS_ADD(xs_write_bytes, ret);
353
0a8d17d0
DC
354 isize = i_size_read(inode);
355 if (unlikely(ret < 0 && ret != -EFAULT && *ppos > isize))
356 *ppos = isize;
357
ba87ea69 358 if (*ppos > ip->i_size) {
0a8d17d0 359 xfs_ilock(ip, XFS_ILOCK_EXCL);
ba87ea69
LM
360 if (*ppos > ip->i_size)
361 ip->i_size = *ppos;
362 xfs_iunlock(ip, XFS_ILOCK_EXCL);
363 }
364
613d7043 365 if (ip->i_new_size) {
ba87ea69 366 xfs_ilock(ip, XFS_ILOCK_EXCL);
613d7043 367 ip->i_new_size = 0;
ba87ea69
LM
368 if (ip->i_d.di_size > ip->i_size)
369 ip->i_d.di_size = ip->i_size;
0a8d17d0
DC
370 xfs_iunlock(ip, XFS_ILOCK_EXCL);
371 }
1b895840 372 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1da177e4
LT
373 return ret;
374}
375
376/*
377 * This routine is called to handle zeroing any space in the last
378 * block of the file that is beyond the EOF. We do this since the
379 * size is being increased without writing anything to that block
380 * and we don't want anyone to read the garbage on the disk.
381 */
382STATIC int /* error (positive) */
383xfs_zero_last_block(
541d7d3c 384 xfs_inode_t *ip,
68160161
LM
385 xfs_fsize_t offset,
386 xfs_fsize_t isize)
1da177e4
LT
387{
388 xfs_fileoff_t last_fsb;
541d7d3c 389 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
390 int nimaps;
391 int zero_offset;
392 int zero_len;
1da177e4
LT
393 int error = 0;
394 xfs_bmbt_irec_t imap;
1da177e4 395
579aa9ca 396 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1da177e4 397
24ee8088
ES
398 zero_offset = XFS_B_FSB_OFFSET(mp, isize);
399 if (zero_offset == 0) {
1da177e4
LT
400 /*
401 * There are no extra bytes in the last block on disk to
402 * zero, so return.
403 */
404 return 0;
405 }
406
407 last_fsb = XFS_B_TO_FSBT(mp, isize);
408 nimaps = 1;
541d7d3c 409 error = xfs_bmapi(NULL, ip, last_fsb, 1, 0, NULL, 0, &imap,
3e57ecf6 410 &nimaps, NULL, NULL);
1da177e4
LT
411 if (error) {
412 return error;
413 }
414 ASSERT(nimaps > 0);
415 /*
416 * If the block underlying isize is just a hole, then there
417 * is nothing to zero.
418 */
419 if (imap.br_startblock == HOLESTARTBLOCK) {
420 return 0;
421 }
422 /*
423 * Zero the part of the last block beyond the EOF, and write it
424 * out sync. We need to drop the ilock while we do this so we
425 * don't deadlock when the buffer cache calls back to us.
426 */
579aa9ca 427 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1da177e4 428
24ee8088 429 zero_len = mp->m_sb.sb_blocksize - zero_offset;
68160161
LM
430 if (isize + zero_len > offset)
431 zero_len = offset - isize;
432 error = xfs_iozero(ip, isize, zero_len);
1da177e4 433
579aa9ca 434 xfs_ilock(ip, XFS_ILOCK_EXCL);
1da177e4
LT
435 ASSERT(error >= 0);
436 return error;
437}
438
439/*
440 * Zero any on disk space between the current EOF and the new,
441 * larger EOF. This handles the normal case of zeroing the remainder
442 * of the last block in the file and the unusual case of zeroing blocks
443 * out beyond the size of the file. This second case only happens
444 * with fixed size extents and when the system crashes before the inode
445 * size was updated but after blocks were allocated. If fill is set,
446 * then any holes in the range are filled and zeroed. If not, the holes
447 * are left alone as holes.
448 */
449
450int /* error (positive) */
451xfs_zero_eof(
541d7d3c 452 xfs_inode_t *ip,
1da177e4 453 xfs_off_t offset, /* starting I/O offset */
68160161 454 xfs_fsize_t isize) /* current inode size */
1da177e4 455{
613d7043 456 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
457 xfs_fileoff_t start_zero_fsb;
458 xfs_fileoff_t end_zero_fsb;
1da177e4
LT
459 xfs_fileoff_t zero_count_fsb;
460 xfs_fileoff_t last_fsb;
68160161
LM
461 xfs_fileoff_t zero_off;
462 xfs_fsize_t zero_len;
1da177e4
LT
463 int nimaps;
464 int error = 0;
465 xfs_bmbt_irec_t imap;
1da177e4 466
579aa9ca 467 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
24ee8088 468 ASSERT(offset > isize);
1da177e4 469
1da177e4
LT
470 /*
471 * First handle zeroing the block on which isize resides.
472 * We only zero a part of that block so it is handled specially.
473 */
541d7d3c 474 error = xfs_zero_last_block(ip, offset, isize);
1da177e4 475 if (error) {
579aa9ca 476 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
1da177e4
LT
477 return error;
478 }
479
480 /*
481 * Calculate the range between the new size and the old
482 * where blocks needing to be zeroed may exist. To get the
483 * block where the last byte in the file currently resides,
484 * we need to subtract one from the size and truncate back
485 * to a block boundary. We subtract 1 in case the size is
486 * exactly on a block boundary.
487 */
488 last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
489 start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
490 end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
491 ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
492 if (last_fsb == end_zero_fsb) {
493 /*
494 * The size was only incremented on its last block.
495 * We took care of that above, so just return.
496 */
497 return 0;
498 }
499
500 ASSERT(start_zero_fsb <= end_zero_fsb);
1da177e4
LT
501 while (start_zero_fsb <= end_zero_fsb) {
502 nimaps = 1;
503 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
541d7d3c 504 error = xfs_bmapi(NULL, ip, start_zero_fsb, zero_count_fsb,
3e57ecf6 505 0, NULL, 0, &imap, &nimaps, NULL, NULL);
1da177e4 506 if (error) {
579aa9ca 507 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
1da177e4
LT
508 return error;
509 }
510 ASSERT(nimaps > 0);
511
512 if (imap.br_state == XFS_EXT_UNWRITTEN ||
513 imap.br_startblock == HOLESTARTBLOCK) {
514 /*
515 * This loop handles initializing pages that were
516 * partially initialized by the code below this
517 * loop. It basically zeroes the part of the page
518 * that sits on a hole and sets the page as P_HOLE
519 * and calls remapf if it is a mapped file.
520 */
24ee8088 521 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
1da177e4
LT
522 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
523 continue;
524 }
525
526 /*
3d80ede4 527 * There are blocks we need to zero.
1da177e4
LT
528 * Drop the inode lock while we're doing the I/O.
529 * We'll still have the iolock to protect us.
530 */
579aa9ca 531 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1da177e4 532
68160161
LM
533 zero_off = XFS_FSB_TO_B(mp, start_zero_fsb);
534 zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount);
535
536 if ((zero_off + zero_len) > offset)
537 zero_len = offset - zero_off;
538
539 error = xfs_iozero(ip, zero_off, zero_len);
1da177e4
LT
540 if (error) {
541 goto out_lock;
542 }
543
3d80ede4 544 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
1da177e4
LT
545 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
546
579aa9ca 547 xfs_ilock(ip, XFS_ILOCK_EXCL);
1da177e4
LT
548 }
549
550 return 0;
551
552out_lock:
579aa9ca 553 xfs_ilock(ip, XFS_ILOCK_EXCL);
1da177e4
LT
554 ASSERT(error >= 0);
555 return error;
556}
557
558ssize_t /* bytes written, or (-) error */
559xfs_write(
993386c1 560 struct xfs_inode *xip,
1da177e4
LT
561 struct kiocb *iocb,
562 const struct iovec *iovp,
563 unsigned int nsegs,
564 loff_t *offset,
993386c1 565 int ioflags)
1da177e4
LT
566{
567 struct file *file = iocb->ki_filp;
568 struct address_space *mapping = file->f_mapping;
569 struct inode *inode = mapping->host;
570 unsigned long segs = nsegs;
1da177e4
LT
571 xfs_mount_t *mp;
572 ssize_t ret = 0, error = 0;
573 xfs_fsize_t isize, new_size;
1da177e4
LT
574 int iolock;
575 int eventsent = 0;
1da177e4
LT
576 size_t ocount = 0, count;
577 loff_t pos;
2a329631 578 int need_i_mutex;
1da177e4
LT
579
580 XFS_STATS_INC(xs_write_calls);
581
0ceb3314
DM
582 error = generic_segment_checks(iovp, &segs, &ocount, VERIFY_READ);
583 if (error)
584 return error;
1da177e4
LT
585
586 count = ocount;
587 pos = *offset;
588
589 if (count == 0)
590 return 0;
591
613d7043 592 mp = xip->i_mount;
1da177e4 593
b267ce99 594 xfs_wait_for_freeze(mp, SB_FREEZE_WRITE);
34327e13 595
1da177e4
LT
596 if (XFS_FORCED_SHUTDOWN(mp))
597 return -EIO;
598
1da177e4 599relock:
2a329631
LM
600 if (ioflags & IO_ISDIRECT) {
601 iolock = XFS_IOLOCK_SHARED;
2a329631
LM
602 need_i_mutex = 0;
603 } else {
1da177e4 604 iolock = XFS_IOLOCK_EXCL;
2a329631 605 need_i_mutex = 1;
1b1dcc1b 606 mutex_lock(&inode->i_mutex);
1da177e4
LT
607 }
608
609 xfs_ilock(xip, XFS_ILOCK_EXCL|iolock);
610
1da177e4
LT
611start:
612 error = -generic_write_checks(file, &pos, &count,
613 S_ISBLK(inode->i_mode));
614 if (error) {
615 xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock);
a13828b1 616 goto out_unlock_mutex;
1da177e4
LT
617 }
618
eb9df39d 619 if ((DM_EVENT_ENABLED(xip, DM_EVENT_WRITE) &&
1da177e4 620 !(ioflags & IO_INVIS) && !eventsent)) {
1da177e4
LT
621 int dmflags = FILP_DELAY_FLAG(file);
622
a13828b1 623 if (need_i_mutex)
1b1dcc1b 624 dmflags |= DM_FLAGS_IMUX;
1da177e4
LT
625
626 xfs_iunlock(xip, XFS_ILOCK_EXCL);
bc4ac74a 627 error = XFS_SEND_DATA(xip->i_mount, DM_EVENT_WRITE, xip,
126468b1 628 pos, count, dmflags, &iolock);
1da177e4 629 if (error) {
ba87ea69 630 goto out_unlock_internal;
1da177e4
LT
631 }
632 xfs_ilock(xip, XFS_ILOCK_EXCL);
633 eventsent = 1;
634
635 /*
c41564b5 636 * The iolock was dropped and reacquired in XFS_SEND_DATA
1da177e4
LT
637 * so we have to recheck the size when appending.
638 * We will only "goto start;" once, since having sent the
639 * event prevents another call to XFS_SEND_DATA, which is
640 * what allows the size to change in the first place.
641 */
71dfd5a3 642 if ((file->f_flags & O_APPEND) && pos != xip->i_size)
1da177e4 643 goto start;
1da177e4
LT
644 }
645
71dfd5a3
LM
646 if (ioflags & IO_ISDIRECT) {
647 xfs_buftarg_t *target =
71ddabb9 648 XFS_IS_REALTIME_INODE(xip) ?
71dfd5a3
LM
649 mp->m_rtdev_targp : mp->m_ddev_targp;
650
651 if ((pos & target->bt_smask) || (count & target->bt_smask)) {
652 xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock);
653 return XFS_ERROR(-EINVAL);
654 }
655
dcf49cc5 656 if (!need_i_mutex && (mapping->nrpages || pos > xip->i_size)) {
71dfd5a3
LM
657 xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock);
658 iolock = XFS_IOLOCK_EXCL;
71dfd5a3
LM
659 need_i_mutex = 1;
660 mutex_lock(&inode->i_mutex);
661 xfs_ilock(xip, XFS_ILOCK_EXCL|iolock);
1da177e4
LT
662 goto start;
663 }
664 }
665
71dfd5a3
LM
666 new_size = pos + count;
667 if (new_size > xip->i_size)
613d7043 668 xip->i_new_size = new_size;
71dfd5a3 669
2234d54d 670 if (likely(!(ioflags & IO_INVIS)))
3a76c1ea 671 xfs_ichgtime(xip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1da177e4
LT
672
673 /*
674 * If the offset is beyond the size of the file, we have a couple
675 * of things to do. First, if there is already space allocated
676 * we need to either create holes or zero the disk or ...
677 *
678 * If there is a page where the previous size lands, we need
679 * to zero it out up to the new size.
680 */
681
ba87ea69 682 if (pos > xip->i_size) {
541d7d3c 683 error = xfs_zero_eof(xip, pos, xip->i_size);
1da177e4 684 if (error) {
ba87ea69
LM
685 xfs_iunlock(xip, XFS_ILOCK_EXCL);
686 goto out_unlock_internal;
1da177e4
LT
687 }
688 }
689 xfs_iunlock(xip, XFS_ILOCK_EXCL);
690
691 /*
692 * If we're writing the file then make sure to clear the
693 * setuid and setgid bits if the process is not being run
694 * by root. This keeps people from modifying setuid and
695 * setgid binaries.
696 */
697
698 if (((xip->i_d.di_mode & S_ISUID) ||
699 ((xip->i_d.di_mode & (S_ISGID | S_IXGRP)) ==
700 (S_ISGID | S_IXGRP))) &&
701 !capable(CAP_FSETID)) {
702 error = xfs_write_clear_setuid(xip);
703 if (likely(!error))
2f1936b8 704 error = -file_remove_suid(file);
1da177e4 705 if (unlikely(error)) {
ba87ea69 706 goto out_unlock_internal;
1da177e4
LT
707 }
708 }
709
710retry:
711 /* We can write back this queue in page reclaim */
712 current->backing_dev_info = mapping->backing_dev_info;
713
714 if ((ioflags & IO_ISDIRECT)) {
dcf49cc5 715 if (mapping->nrpages) {
2a329631 716 WARN_ON(need_i_mutex == 0);
613d7043 717 xfs_inval_cached_trace(xip, pos, -1,
e6a4b37f 718 (pos & PAGE_CACHE_MASK), -1);
739bfb2a 719 error = xfs_flushinval_pages(xip,
e6a4b37f 720 (pos & PAGE_CACHE_MASK),
1da177e4 721 -1, FI_REMAPF_LOCKED);
d3cf2094
LM
722 if (error)
723 goto out_unlock_internal;
1da177e4
LT
724 }
725
a13828b1 726 if (need_i_mutex) {
1da177e4 727 /* demote the lock now the cached pages are gone */
541d7d3c 728 xfs_ilock_demote(xip, XFS_IOLOCK_EXCL);
1b1dcc1b 729 mutex_unlock(&inode->i_mutex);
1da177e4
LT
730
731 iolock = XFS_IOLOCK_SHARED;
a13828b1 732 need_i_mutex = 0;
1da177e4
LT
733 }
734
613d7043 735 xfs_rw_enter_trace(XFS_DIOWR_ENTER, xip, (void *)iovp, segs,
1da177e4
LT
736 *offset, ioflags);
737 ret = generic_file_direct_write(iocb, iovp,
738 &segs, pos, offset, count, ocount);
739
740 /*
741 * direct-io write to a hole: fall through to buffered I/O
742 * for completing the rest of the request.
743 */
744 if (ret >= 0 && ret != count) {
745 XFS_STATS_ADD(xs_write_bytes, ret);
746
747 pos += ret;
748 count -= ret;
749
1da177e4
LT
750 ioflags &= ~IO_ISDIRECT;
751 xfs_iunlock(xip, iolock);
752 goto relock;
753 }
754 } else {
613d7043 755 xfs_rw_enter_trace(XFS_WRITE_ENTER, xip, (void *)iovp, segs,
1da177e4
LT
756 *offset, ioflags);
757 ret = generic_file_buffered_write(iocb, iovp, segs,
758 pos, offset, count, ret);
759 }
760
761 current->backing_dev_info = NULL;
762
763 if (ret == -EIOCBQUEUED && !(ioflags & IO_ISAIO))
764 ret = wait_on_sync_kiocb(iocb);
765
eb9df39d
CH
766 if (ret == -ENOSPC &&
767 DM_EVENT_ENABLED(xip, DM_EVENT_NOSPACE) && !(ioflags & IO_INVIS)) {
126468b1 768 xfs_iunlock(xip, iolock);
a13828b1 769 if (need_i_mutex)
1b1dcc1b 770 mutex_unlock(&inode->i_mutex);
bc4ac74a
CH
771 error = XFS_SEND_NAMESP(xip->i_mount, DM_EVENT_NOSPACE, xip,
772 DM_RIGHT_NULL, xip, DM_RIGHT_NULL, NULL, NULL,
1da177e4 773 0, 0, 0); /* Delay flag intentionally unused */
a13828b1 774 if (need_i_mutex)
1b1dcc1b 775 mutex_lock(&inode->i_mutex);
126468b1 776 xfs_ilock(xip, iolock);
ba87ea69
LM
777 if (error)
778 goto out_unlock_internal;
779 pos = xip->i_size;
1da177e4
LT
780 ret = 0;
781 goto retry;
782 }
783
68bdb6ea
YL
784 isize = i_size_read(inode);
785 if (unlikely(ret < 0 && ret != -EFAULT && *offset > isize))
786 *offset = isize;
787
ba87ea69 788 if (*offset > xip->i_size) {
1da177e4 789 xfs_ilock(xip, XFS_ILOCK_EXCL);
ba87ea69
LM
790 if (*offset > xip->i_size)
791 xip->i_size = *offset;
1da177e4
LT
792 xfs_iunlock(xip, XFS_ILOCK_EXCL);
793 }
794
795 error = -ret;
796 if (ret <= 0)
797 goto out_unlock_internal;
798
799 XFS_STATS_ADD(xs_write_bytes, ret);
800
801 /* Handle various SYNC-type writes */
802 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
5903c495 803 int error2;
126468b1
CH
804
805 xfs_iunlock(xip, iolock);
a13828b1 806 if (need_i_mutex)
1b1dcc1b 807 mutex_unlock(&inode->i_mutex);
5903c495 808 error2 = sync_page_range(inode, mapping, pos, ret);
1da177e4 809 if (!error)
5903c495 810 error = error2;
ba87ea69
LM
811 if (need_i_mutex)
812 mutex_lock(&inode->i_mutex);
126468b1 813 xfs_ilock(xip, iolock);
5903c495
LM
814 error2 = xfs_write_sync_logforce(mp, xip);
815 if (!error)
816 error = error2;
1da177e4
LT
817 }
818
819 out_unlock_internal:
613d7043 820 if (xip->i_new_size) {
ba87ea69 821 xfs_ilock(xip, XFS_ILOCK_EXCL);
613d7043 822 xip->i_new_size = 0;
ba87ea69
LM
823 /*
824 * If this was a direct or synchronous I/O that failed (such
825 * as ENOSPC) then part of the I/O may have been written to
826 * disk before the error occured. In this case the on-disk
827 * file size may have been adjusted beyond the in-memory file
828 * size and now needs to be truncated back.
829 */
830 if (xip->i_d.di_size > xip->i_size)
831 xip->i_d.di_size = xip->i_size;
832 xfs_iunlock(xip, XFS_ILOCK_EXCL);
833 }
126468b1 834 xfs_iunlock(xip, iolock);
a13828b1
NS
835 out_unlock_mutex:
836 if (need_i_mutex)
1b1dcc1b 837 mutex_unlock(&inode->i_mutex);
1da177e4
LT
838 return -error;
839}
840
841/*
842 * All xfs metadata buffers except log state machine buffers
843 * get this attached as their b_bdstrat callback function.
844 * This is so that we can catch a buffer
845 * after prematurely unpinning it to forcibly shutdown the filesystem.
846 */
847int
848xfs_bdstrat_cb(struct xfs_buf *bp)
849{
850 xfs_mount_t *mp;
851
852 mp = XFS_BUF_FSPRIVATE3(bp, xfs_mount_t *);
853 if (!XFS_FORCED_SHUTDOWN(mp)) {
ce8e922c 854 xfs_buf_iorequest(bp);
1da177e4
LT
855 return 0;
856 } else {
857 xfs_buftrace("XFS__BDSTRAT IOERROR", bp);
858 /*
859 * Metadata write that didn't get logged but
860 * written delayed anyway. These aren't associated
861 * with a transaction, and can be ignored.
862 */
863 if (XFS_BUF_IODONE_FUNC(bp) == NULL &&
864 (XFS_BUF_ISREAD(bp)) == 0)
865 return (xfs_bioerror_relse(bp));
866 else
867 return (xfs_bioerror(bp));
868 }
869}
870
1da177e4 871/*
d64e31a2
DC
872 * Wrapper around bdstrat so that we can stop data from going to disk in case
873 * we are shutting down the filesystem. Typically user data goes thru this
874 * path; one of the exceptions is the superblock.
1da177e4 875 */
d64e31a2 876void
1da177e4
LT
877xfsbdstrat(
878 struct xfs_mount *mp,
879 struct xfs_buf *bp)
880{
881 ASSERT(mp);
d4055947 882 if (!XFS_FORCED_SHUTDOWN(mp)) {
ce8e922c 883 xfs_buf_iorequest(bp);
d4055947
DC
884 return;
885 }
1da177e4
LT
886
887 xfs_buftrace("XFSBDSTRAT IOERROR", bp);
d64e31a2 888 xfs_bioerror_relse(bp);
1da177e4
LT
889}
890
891/*
892 * If the underlying (data/log/rt) device is readonly, there are some
893 * operations that cannot proceed.
894 */
895int
896xfs_dev_is_read_only(
897 xfs_mount_t *mp,
898 char *message)
899{
900 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
901 xfs_readonly_buftarg(mp->m_logdev_targp) ||
902 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
903 cmn_err(CE_NOTE,
904 "XFS: %s required on read-only device.", message);
905 cmn_err(CE_NOTE,
906 "XFS: write access unavailable, cannot proceed.");
907 return EROFS;
908 }
909 return 0;
910}
This page took 0.439551 seconds and 5 git commands to generate.