blob: ad6691bae37000abce4797b40a3eff5671e7a3e1 [file] [log] [blame]
Andrew Mortonf79e2ab2006-03-31 02:30:42 -08001/*
2 * High-level sync()-related operations
3 */
4
5#include <linux/kernel.h>
6#include <linux/file.h>
7#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Andrew Mortonf79e2ab2006-03-31 02:30:42 -08009#include <linux/module.h>
Al Viro914e2632006-10-18 13:55:46 -040010#include <linux/sched.h>
Andrew Mortonf79e2ab2006-03-31 02:30:42 -080011#include <linux/writeback.h>
12#include <linux/syscalls.h>
13#include <linux/linkage.h>
14#include <linux/pagemap.h>
David Howellscf9a2ae2006-08-29 19:05:54 +010015#include <linux/quotaops.h>
16#include <linux/buffer_head.h>
Jörn Engel5129a462010-04-25 08:54:42 +020017#include <linux/backing-dev.h>
Jan Kara5a3e5cb2009-04-27 16:43:48 +020018#include "internal.h"
Andrew Mortonf79e2ab2006-03-31 02:30:42 -080019
20#define VALID_FLAGS (SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE| \
21 SYNC_FILE_RANGE_WAIT_AFTER)
22
Jan Karac15c54f2009-04-27 16:43:52 +020023/*
Jens Axboed8a85592009-09-02 12:34:32 +020024 * Do the filesystem syncing work. For simple filesystems
25 * writeback_inodes_sb(sb) just dirties buffers with inodes so we have to
26 * submit IO for these buffers via __sync_blockdev(). This also speeds up the
27 * wait == 1 case since in that case write_inode() functions do
28 * sync_dirty_buffer() and thus effectively write one block at a time.
Jan Karac15c54f2009-04-27 16:43:52 +020029 */
Jan Kara60b06802009-04-27 16:43:53 +020030static int __sync_filesystem(struct super_block *sb, int wait)
Jan Karac15c54f2009-04-27 16:43:52 +020031{
Jens Axboe32a88aa2009-09-16 15:02:33 +020032 /*
33 * This should be safe, as we require bdi backing to actually
34 * write out data in the first place
35 */
Jörn Engel5129a462010-04-25 08:54:42 +020036 if (!sb->s_bdi || sb->s_bdi == &noop_backing_dev_info)
Jens Axboe32a88aa2009-09-16 15:02:33 +020037 return 0;
38
Christoph Hellwig5fb324a2010-02-16 03:44:52 -050039 if (sb->s_qcop && sb->s_qcop->quota_sync)
40 sb->s_qcop->quota_sync(sb, -1, wait);
41
42 if (wait)
Jens Axboed8a85592009-09-02 12:34:32 +020043 sync_inodes_sb(sb);
Christoph Hellwig5fb324a2010-02-16 03:44:52 -050044 else
45 writeback_inodes_sb(sb);
46
Jan Karac15c54f2009-04-27 16:43:52 +020047 if (sb->s_op->sync_fs)
48 sb->s_op->sync_fs(sb, wait);
49 return __sync_blockdev(sb->s_bdev, wait);
50}
51
52/*
53 * Write out and wait upon all dirty data associated with this
54 * superblock. Filesystem data as well as the underlying block
55 * device. Takes the superblock lock.
56 */
Jan Kara60b06802009-04-27 16:43:53 +020057int sync_filesystem(struct super_block *sb)
Jan Karac15c54f2009-04-27 16:43:52 +020058{
59 int ret;
60
Christoph Hellwig5af79262009-05-05 15:41:25 +020061 /*
62 * We need to be protected against the filesystem going from
63 * r/o to r/w or vice versa.
64 */
65 WARN_ON(!rwsem_is_locked(&sb->s_umount));
66
67 /*
68 * No point in syncing out anything if the filesystem is read-only.
69 */
70 if (sb->s_flags & MS_RDONLY)
71 return 0;
72
Jan Kara60b06802009-04-27 16:43:53 +020073 ret = __sync_filesystem(sb, 0);
Jan Karac15c54f2009-04-27 16:43:52 +020074 if (ret < 0)
75 return ret;
Jan Kara60b06802009-04-27 16:43:53 +020076 return __sync_filesystem(sb, 1);
Jan Karac15c54f2009-04-27 16:43:52 +020077}
Jan Kara60b06802009-04-27 16:43:53 +020078EXPORT_SYMBOL_GPL(sync_filesystem);
Jan Karac15c54f2009-04-27 16:43:52 +020079
80/*
81 * Sync all the data for all the filesystems (called by sys_sync() and
82 * emergency sync)
83 *
84 * This operation is careful to avoid the livelock which could easily happen
85 * if two or more filesystems are being continuously dirtied. s_need_sync
86 * is used only here. We set it against all filesystems and then clear it as
87 * we sync them. So redirtied filesystems are skipped.
88 *
89 * But if process A is currently running sync_filesystems and then process B
90 * calls sync_filesystems as well, process B will set all the s_need_sync
91 * flags again, which will cause process A to resync everything. Fix that with
92 * a local mutex.
93 */
94static void sync_filesystems(int wait)
95{
96 struct super_block *sb;
97 static DEFINE_MUTEX(mutex);
98
99 mutex_lock(&mutex); /* Could be down_interruptible */
100 spin_lock(&sb_lock);
Christoph Hellwig5af79262009-05-05 15:41:25 +0200101 list_for_each_entry(sb, &super_blocks, s_list)
Al Viro551de6f2010-03-22 19:36:35 -0400102 if (!list_empty(&sb->s_instances))
103 sb->s_need_sync = 1;
Jan Karac15c54f2009-04-27 16:43:52 +0200104
105restart:
106 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400107 if (list_empty(&sb->s_instances))
108 continue;
Jan Karac15c54f2009-04-27 16:43:52 +0200109 if (!sb->s_need_sync)
110 continue;
111 sb->s_need_sync = 0;
Jan Karac15c54f2009-04-27 16:43:52 +0200112 sb->s_count++;
113 spin_unlock(&sb_lock);
Christoph Hellwig5af79262009-05-05 15:41:25 +0200114
Jan Karac15c54f2009-04-27 16:43:52 +0200115 down_read(&sb->s_umount);
Jens Axboe32a88aa2009-09-16 15:02:33 +0200116 if (!(sb->s_flags & MS_RDONLY) && sb->s_root && sb->s_bdi)
Jan Kara60b06802009-04-27 16:43:53 +0200117 __sync_filesystem(sb, wait);
Jan Karac15c54f2009-04-27 16:43:52 +0200118 up_read(&sb->s_umount);
Christoph Hellwig5af79262009-05-05 15:41:25 +0200119
Jan Karac15c54f2009-04-27 16:43:52 +0200120 /* restart only when sb is no longer on the list */
121 spin_lock(&sb_lock);
122 if (__put_super_and_need_restart(sb))
123 goto restart;
124 }
125 spin_unlock(&sb_lock);
126 mutex_unlock(&mutex);
127}
128
Zhang, Yanmin3beab0b2009-07-05 12:08:08 -0700129/*
130 * sync everything. Start out by waking pdflush, because that writes back
131 * all queues in parallel.
132 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +0100133SYSCALL_DEFINE0(sync)
David Howellscf9a2ae2006-08-29 19:05:54 +0100134{
Jens Axboe03ba3782009-09-09 09:08:54 +0200135 wakeup_flusher_threads(0);
Jan Kara5cee5812009-04-27 16:43:51 +0200136 sync_filesystems(0);
137 sync_filesystems(1);
138 if (unlikely(laptop_mode))
139 laptop_sync_completion();
David Howellscf9a2ae2006-08-29 19:05:54 +0100140 return 0;
141}
142
Jens Axboea2a95372009-03-17 09:38:40 +0100143static void do_sync_work(struct work_struct *work)
144{
Jan Kara5cee5812009-04-27 16:43:51 +0200145 /*
146 * Sync twice to reduce the possibility we skipped some inodes / pages
147 * because they were temporarily locked
148 */
149 sync_filesystems(0);
150 sync_filesystems(0);
151 printk("Emergency Sync complete\n");
Jens Axboea2a95372009-03-17 09:38:40 +0100152 kfree(work);
153}
154
David Howellscf9a2ae2006-08-29 19:05:54 +0100155void emergency_sync(void)
156{
Jens Axboea2a95372009-03-17 09:38:40 +0100157 struct work_struct *work;
158
159 work = kmalloc(sizeof(*work), GFP_ATOMIC);
160 if (work) {
161 INIT_WORK(work, do_sync_work);
162 schedule_work(work);
163 }
David Howellscf9a2ae2006-08-29 19:05:54 +0100164}
165
166/*
167 * Generic function to fsync a file.
168 *
169 * filp may be NULL if called via the msync of a vma.
170 */
171int file_fsync(struct file *filp, struct dentry *dentry, int datasync)
172{
173 struct inode * inode = dentry->d_inode;
174 struct super_block * sb;
175 int ret, err;
176
177 /* sync the inode to buffers */
178 ret = write_inode_now(inode, 0);
179
180 /* sync the superblock to buffers */
181 sb = inode->i_sb;
OGAWA Hirofumi762873c2008-04-29 00:59:42 -0700182 if (sb->s_dirt && sb->s_op->write_super)
David Howellscf9a2ae2006-08-29 19:05:54 +0100183 sb->s_op->write_super(sb);
David Howellscf9a2ae2006-08-29 19:05:54 +0100184
185 /* .. finally sync the buffers to disk */
186 err = sync_blockdev(sb->s_bdev);
187 if (!ret)
188 ret = err;
189 return ret;
190}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700191EXPORT_SYMBOL(file_fsync);
David Howellscf9a2ae2006-08-29 19:05:54 +0100192
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100193/**
Jan Kara148f9482009-08-17 19:52:36 +0200194 * vfs_fsync_range - helper to sync a range of data & metadata to disk
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100195 * @file: file to sync
196 * @dentry: dentry of @file
Jan Kara148f9482009-08-17 19:52:36 +0200197 * @start: offset in bytes of the beginning of data range to sync
198 * @end: offset in bytes of the end of data range (inclusive)
199 * @datasync: perform only datasync
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100200 *
Jan Kara148f9482009-08-17 19:52:36 +0200201 * Write back data in range @start..@end and metadata for @file to disk. If
202 * @datasync is set only metadata needed to access modified file data is
203 * written.
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100204 *
205 * In case this function is called from nfsd @file may be %NULL and
206 * only @dentry is set. This can only happen when the filesystem
207 * implements the export_operations API.
208 */
Jan Kara148f9482009-08-17 19:52:36 +0200209int vfs_fsync_range(struct file *file, struct dentry *dentry, loff_t start,
210 loff_t end, int datasync)
David Howellscf9a2ae2006-08-29 19:05:54 +0100211{
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100212 const struct file_operations *fop;
213 struct address_space *mapping;
214 int err, ret;
David Howellscf9a2ae2006-08-29 19:05:54 +0100215
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100216 /*
217 * Get mapping and operations from the file in case we have
218 * as file, or get the default values for them in case we
219 * don't have a struct file available. Damn nfsd..
220 */
221 if (file) {
222 mapping = file->f_mapping;
223 fop = file->f_op;
224 } else {
225 mapping = dentry->d_inode->i_mapping;
226 fop = dentry->d_inode->i_fop;
227 }
228
229 if (!fop || !fop->fsync) {
David Howellscf9a2ae2006-08-29 19:05:54 +0100230 ret = -EINVAL;
231 goto out;
232 }
233
Christoph Hellwig2daea672009-09-03 12:39:39 +0200234 ret = filemap_write_and_wait_range(mapping, start, end);
David Howellscf9a2ae2006-08-29 19:05:54 +0100235
236 /*
237 * We need to protect against concurrent writers, which could cause
238 * livelocks in fsync_buffers_list().
239 */
240 mutex_lock(&mapping->host->i_mutex);
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100241 err = fop->fsync(file, dentry, datasync);
David Howellscf9a2ae2006-08-29 19:05:54 +0100242 if (!ret)
243 ret = err;
244 mutex_unlock(&mapping->host->i_mutex);
Jan Kara148f9482009-08-17 19:52:36 +0200245
David Howellscf9a2ae2006-08-29 19:05:54 +0100246out:
247 return ret;
248}
Jan Kara148f9482009-08-17 19:52:36 +0200249EXPORT_SYMBOL(vfs_fsync_range);
250
251/**
252 * vfs_fsync - perform a fsync or fdatasync on a file
253 * @file: file to sync
254 * @dentry: dentry of @file
255 * @datasync: only perform a fdatasync operation
256 *
257 * Write back data and metadata for @file to disk. If @datasync is
258 * set only metadata needed to access modified file data is written.
259 *
260 * In case this function is called from nfsd @file may be %NULL and
261 * only @dentry is set. This can only happen when the filesystem
262 * implements the export_operations API.
263 */
264int vfs_fsync(struct file *file, struct dentry *dentry, int datasync)
265{
266 return vfs_fsync_range(file, dentry, 0, LLONG_MAX, datasync);
267}
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100268EXPORT_SYMBOL(vfs_fsync);
David Howellscf9a2ae2006-08-29 19:05:54 +0100269
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100270static int do_fsync(unsigned int fd, int datasync)
David Howellscf9a2ae2006-08-29 19:05:54 +0100271{
272 struct file *file;
273 int ret = -EBADF;
274
275 file = fget(fd);
276 if (file) {
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100277 ret = vfs_fsync(file, file->f_path.dentry, datasync);
David Howellscf9a2ae2006-08-29 19:05:54 +0100278 fput(file);
279 }
280 return ret;
281}
282
Heiko Carstensa5f8fa92009-01-14 14:14:11 +0100283SYSCALL_DEFINE1(fsync, unsigned int, fd)
David Howellscf9a2ae2006-08-29 19:05:54 +0100284{
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100285 return do_fsync(fd, 0);
David Howellscf9a2ae2006-08-29 19:05:54 +0100286}
287
Heiko Carstensa5f8fa92009-01-14 14:14:11 +0100288SYSCALL_DEFINE1(fdatasync, unsigned int, fd)
David Howellscf9a2ae2006-08-29 19:05:54 +0100289{
Christoph Hellwig4c728ef2008-12-22 21:11:15 +0100290 return do_fsync(fd, 1);
David Howellscf9a2ae2006-08-29 19:05:54 +0100291}
292
Jan Kara148f9482009-08-17 19:52:36 +0200293/**
294 * generic_write_sync - perform syncing after a write if file / inode is sync
295 * @file: file to which the write happened
296 * @pos: offset where the write started
297 * @count: length of the write
298 *
299 * This is just a simple wrapper about our general syncing function.
300 */
301int generic_write_sync(struct file *file, loff_t pos, loff_t count)
302{
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100303 if (!(file->f_flags & O_DSYNC) && !IS_SYNC(file->f_mapping->host))
Jan Kara148f9482009-08-17 19:52:36 +0200304 return 0;
305 return vfs_fsync_range(file, file->f_path.dentry, pos,
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100306 pos + count - 1,
307 (file->f_flags & __O_SYNC) ? 0 : 1);
Jan Kara148f9482009-08-17 19:52:36 +0200308}
309EXPORT_SYMBOL(generic_write_sync);
310
David Howellscf9a2ae2006-08-29 19:05:54 +0100311/*
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800312 * sys_sync_file_range() permits finely controlled syncing over a segment of
313 * a file in the range offset .. (offset+nbytes-1) inclusive. If nbytes is
314 * zero then sys_sync_file_range() will operate from offset out to EOF.
315 *
316 * The flag bits are:
317 *
318 * SYNC_FILE_RANGE_WAIT_BEFORE: wait upon writeout of all pages in the range
319 * before performing the write.
320 *
321 * SYNC_FILE_RANGE_WRITE: initiate writeout of all those dirty pages in the
Pavel Machekcce77082008-07-23 21:27:36 -0700322 * range which are not presently under writeback. Note that this may block for
323 * significant periods due to exhaustion of disk request structures.
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800324 *
325 * SYNC_FILE_RANGE_WAIT_AFTER: wait upon writeout of all pages in the range
326 * after performing the write.
327 *
328 * Useful combinations of the flag bits are:
329 *
330 * SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE: ensures that all pages
331 * in the range which were dirty on entry to sys_sync_file_range() are placed
332 * under writeout. This is a start-write-for-data-integrity operation.
333 *
334 * SYNC_FILE_RANGE_WRITE: start writeout of all dirty pages in the range which
335 * are not presently under writeout. This is an asynchronous flush-to-disk
336 * operation. Not suitable for data integrity operations.
337 *
338 * SYNC_FILE_RANGE_WAIT_BEFORE (or SYNC_FILE_RANGE_WAIT_AFTER): wait for
339 * completion of writeout of all pages in the range. This will be used after an
340 * earlier SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE operation to wait
341 * for that operation to complete and to return the result.
342 *
343 * SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE|SYNC_FILE_RANGE_WAIT_AFTER:
344 * a traditional sync() operation. This is a write-for-data-integrity operation
345 * which will ensure that all pages in the range which were dirty on entry to
346 * sys_sync_file_range() are committed to disk.
347 *
348 *
349 * SYNC_FILE_RANGE_WAIT_BEFORE and SYNC_FILE_RANGE_WAIT_AFTER will detect any
350 * I/O errors or ENOSPC conditions and will return those to the caller, after
351 * clearing the EIO and ENOSPC flags in the address_space.
352 *
353 * It should be noted that none of these operations write out the file's
354 * metadata. So unless the application is strictly performing overwrites of
355 * already-instantiated disk blocks, there are no guarantees here that the data
356 * will be available after a crash.
357 */
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100358SYSCALL_DEFINE(sync_file_range)(int fd, loff_t offset, loff_t nbytes,
359 unsigned int flags)
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800360{
361 int ret;
362 struct file *file;
Christoph Hellwig7a0ad102009-12-17 14:24:40 +0100363 struct address_space *mapping;
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800364 loff_t endbyte; /* inclusive */
365 int fput_needed;
366 umode_t i_mode;
367
368 ret = -EINVAL;
369 if (flags & ~VALID_FLAGS)
370 goto out;
371
372 endbyte = offset + nbytes;
373
374 if ((s64)offset < 0)
375 goto out;
376 if ((s64)endbyte < 0)
377 goto out;
378 if (endbyte < offset)
379 goto out;
380
381 if (sizeof(pgoff_t) == 4) {
382 if (offset >= (0x100000000ULL << PAGE_CACHE_SHIFT)) {
383 /*
384 * The range starts outside a 32 bit machine's
385 * pagecache addressing capabilities. Let it "succeed"
386 */
387 ret = 0;
388 goto out;
389 }
390 if (endbyte >= (0x100000000ULL << PAGE_CACHE_SHIFT)) {
391 /*
392 * Out to EOF
393 */
394 nbytes = 0;
395 }
396 }
397
398 if (nbytes == 0)
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700399 endbyte = LLONG_MAX;
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800400 else
401 endbyte--; /* inclusive */
402
403 ret = -EBADF;
404 file = fget_light(fd, &fput_needed);
405 if (!file)
406 goto out;
407
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800408 i_mode = file->f_path.dentry->d_inode->i_mode;
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800409 ret = -ESPIPE;
410 if (!S_ISREG(i_mode) && !S_ISBLK(i_mode) && !S_ISDIR(i_mode) &&
411 !S_ISLNK(i_mode))
412 goto out_put;
413
Christoph Hellwig7a0ad102009-12-17 14:24:40 +0100414 mapping = file->f_mapping;
415 if (!mapping) {
416 ret = -EINVAL;
417 goto out_put;
418 }
419
420 ret = 0;
421 if (flags & SYNC_FILE_RANGE_WAIT_BEFORE) {
422 ret = filemap_fdatawait_range(mapping, offset, endbyte);
423 if (ret < 0)
424 goto out_put;
425 }
426
427 if (flags & SYNC_FILE_RANGE_WRITE) {
428 ret = filemap_fdatawrite_range(mapping, offset, endbyte);
429 if (ret < 0)
430 goto out_put;
431 }
432
433 if (flags & SYNC_FILE_RANGE_WAIT_AFTER)
434 ret = filemap_fdatawait_range(mapping, offset, endbyte);
435
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800436out_put:
437 fput_light(file, fput_needed);
438out:
439 return ret;
440}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100441#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
442asmlinkage long SyS_sync_file_range(long fd, loff_t offset, loff_t nbytes,
443 long flags)
444{
445 return SYSC_sync_file_range((int) fd, offset, nbytes,
446 (unsigned int) flags);
447}
448SYSCALL_ALIAS(sys_sync_file_range, SyS_sync_file_range);
449#endif
Andrew Mortonf79e2ab2006-03-31 02:30:42 -0800450
David Woodhouseedd5cd42007-06-27 14:10:09 -0700451/* It would be nice if people remember that not all the world's an i386
452 when they introduce new system calls */
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100453SYSCALL_DEFINE(sync_file_range2)(int fd, unsigned int flags,
454 loff_t offset, loff_t nbytes)
David Woodhouseedd5cd42007-06-27 14:10:09 -0700455{
456 return sys_sync_file_range(fd, offset, nbytes, flags);
457}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100458#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
459asmlinkage long SyS_sync_file_range2(long fd, long flags,
460 loff_t offset, loff_t nbytes)
461{
462 return SYSC_sync_file_range2((int) fd, (unsigned int) flags,
463 offset, nbytes);
464}
465SYSCALL_ALIAS(sys_sync_file_range2, SyS_sync_file_range2);
466#endif