]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/sync.c
vfs: Remove generic_osync_inode() and sync_page_range{_nolock}()
[net-next-2.6.git] / fs / sync.c
CommitLineData
f79e2abb
AM
1/*
2 * High-level sync()-related operations
3 */
4
5#include <linux/kernel.h>
6#include <linux/file.h>
7#include <linux/fs.h>
8#include <linux/module.h>
914e2637 9#include <linux/sched.h>
f79e2abb
AM
10#include <linux/writeback.h>
11#include <linux/syscalls.h>
12#include <linux/linkage.h>
13#include <linux/pagemap.h>
cf9a2ae8
DH
14#include <linux/quotaops.h>
15#include <linux/buffer_head.h>
5a3e5cb8 16#include "internal.h"
f79e2abb
AM
17
18#define VALID_FLAGS (SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE| \
19 SYNC_FILE_RANGE_WAIT_AFTER)
20
c15c54f5 21/*
d8a8559c
JA
22 * Do the filesystem syncing work. For simple filesystems
23 * writeback_inodes_sb(sb) just dirties buffers with inodes so we have to
24 * submit IO for these buffers via __sync_blockdev(). This also speeds up the
25 * wait == 1 case since in that case write_inode() functions do
26 * sync_dirty_buffer() and thus effectively write one block at a time.
c15c54f5 27 */
60b0680f 28static int __sync_filesystem(struct super_block *sb, int wait)
c15c54f5 29{
c3f8a40c 30 /* Avoid doing twice syncing and cache pruning for quota sync */
d8a8559c 31 if (!wait) {
c3f8a40c 32 writeout_quota_sb(sb, -1);
d8a8559c
JA
33 writeback_inodes_sb(sb);
34 } else {
c3f8a40c 35 sync_quota_sb(sb, -1);
d8a8559c
JA
36 sync_inodes_sb(sb);
37 }
c15c54f5
JK
38 if (sb->s_op->sync_fs)
39 sb->s_op->sync_fs(sb, wait);
40 return __sync_blockdev(sb->s_bdev, wait);
41}
42
43/*
44 * Write out and wait upon all dirty data associated with this
45 * superblock. Filesystem data as well as the underlying block
46 * device. Takes the superblock lock.
47 */
60b0680f 48int sync_filesystem(struct super_block *sb)
c15c54f5
JK
49{
50 int ret;
51
5af7926f
CH
52 /*
53 * We need to be protected against the filesystem going from
54 * r/o to r/w or vice versa.
55 */
56 WARN_ON(!rwsem_is_locked(&sb->s_umount));
57
58 /*
59 * No point in syncing out anything if the filesystem is read-only.
60 */
61 if (sb->s_flags & MS_RDONLY)
62 return 0;
63
60b0680f 64 ret = __sync_filesystem(sb, 0);
c15c54f5
JK
65 if (ret < 0)
66 return ret;
60b0680f 67 return __sync_filesystem(sb, 1);
c15c54f5 68}
60b0680f 69EXPORT_SYMBOL_GPL(sync_filesystem);
c15c54f5
JK
70
71/*
72 * Sync all the data for all the filesystems (called by sys_sync() and
73 * emergency sync)
74 *
75 * This operation is careful to avoid the livelock which could easily happen
76 * if two or more filesystems are being continuously dirtied. s_need_sync
77 * is used only here. We set it against all filesystems and then clear it as
78 * we sync them. So redirtied filesystems are skipped.
79 *
80 * But if process A is currently running sync_filesystems and then process B
81 * calls sync_filesystems as well, process B will set all the s_need_sync
82 * flags again, which will cause process A to resync everything. Fix that with
83 * a local mutex.
84 */
85static void sync_filesystems(int wait)
86{
87 struct super_block *sb;
88 static DEFINE_MUTEX(mutex);
89
90 mutex_lock(&mutex); /* Could be down_interruptible */
91 spin_lock(&sb_lock);
5af7926f 92 list_for_each_entry(sb, &super_blocks, s_list)
c15c54f5 93 sb->s_need_sync = 1;
c15c54f5
JK
94
95restart:
96 list_for_each_entry(sb, &super_blocks, s_list) {
97 if (!sb->s_need_sync)
98 continue;
99 sb->s_need_sync = 0;
c15c54f5
JK
100 sb->s_count++;
101 spin_unlock(&sb_lock);
5af7926f 102
c15c54f5 103 down_read(&sb->s_umount);
5af7926f 104 if (!(sb->s_flags & MS_RDONLY) && sb->s_root)
60b0680f 105 __sync_filesystem(sb, wait);
c15c54f5 106 up_read(&sb->s_umount);
5af7926f 107
c15c54f5
JK
108 /* restart only when sb is no longer on the list */
109 spin_lock(&sb_lock);
110 if (__put_super_and_need_restart(sb))
111 goto restart;
112 }
113 spin_unlock(&sb_lock);
114 mutex_unlock(&mutex);
115}
116
3beab0b4
ZY
117/*
118 * sync everything. Start out by waking pdflush, because that writes back
119 * all queues in parallel.
120 */
5cee5815 121SYSCALL_DEFINE0(sync)
cf9a2ae8 122{
03ba3782 123 wakeup_flusher_threads(0);
5cee5815
JK
124 sync_filesystems(0);
125 sync_filesystems(1);
cf9a2ae8
DH
126 if (unlikely(laptop_mode))
127 laptop_sync_completion();
cf9a2ae8
DH
128 return 0;
129}
130
a2a9537a
JA
131static void do_sync_work(struct work_struct *work)
132{
5cee5815
JK
133 /*
134 * Sync twice to reduce the possibility we skipped some inodes / pages
135 * because they were temporarily locked
136 */
137 sync_filesystems(0);
138 sync_filesystems(0);
139 printk("Emergency Sync complete\n");
a2a9537a
JA
140 kfree(work);
141}
142
cf9a2ae8
DH
143void emergency_sync(void)
144{
a2a9537a
JA
145 struct work_struct *work;
146
147 work = kmalloc(sizeof(*work), GFP_ATOMIC);
148 if (work) {
149 INIT_WORK(work, do_sync_work);
150 schedule_work(work);
151 }
cf9a2ae8
DH
152}
153
154/*
155 * Generic function to fsync a file.
156 *
157 * filp may be NULL if called via the msync of a vma.
158 */
159int file_fsync(struct file *filp, struct dentry *dentry, int datasync)
160{
161 struct inode * inode = dentry->d_inode;
162 struct super_block * sb;
163 int ret, err;
164
165 /* sync the inode to buffers */
166 ret = write_inode_now(inode, 0);
167
168 /* sync the superblock to buffers */
169 sb = inode->i_sb;
762873c2 170 if (sb->s_dirt && sb->s_op->write_super)
cf9a2ae8 171 sb->s_op->write_super(sb);
cf9a2ae8
DH
172
173 /* .. finally sync the buffers to disk */
174 err = sync_blockdev(sb->s_bdev);
175 if (!ret)
176 ret = err;
177 return ret;
178}
179
4c728ef5 180/**
148f948b 181 * vfs_fsync_range - helper to sync a range of data & metadata to disk
4c728ef5
CH
182 * @file: file to sync
183 * @dentry: dentry of @file
148f948b
JK
184 * @start: offset in bytes of the beginning of data range to sync
185 * @end: offset in bytes of the end of data range (inclusive)
186 * @datasync: perform only datasync
4c728ef5 187 *
148f948b
JK
188 * Write back data in range @start..@end and metadata for @file to disk. If
189 * @datasync is set only metadata needed to access modified file data is
190 * written.
4c728ef5
CH
191 *
192 * In case this function is called from nfsd @file may be %NULL and
193 * only @dentry is set. This can only happen when the filesystem
194 * implements the export_operations API.
195 */
148f948b
JK
196int vfs_fsync_range(struct file *file, struct dentry *dentry, loff_t start,
197 loff_t end, int datasync)
cf9a2ae8 198{
4c728ef5
CH
199 const struct file_operations *fop;
200 struct address_space *mapping;
201 int err, ret;
202
203 /*
204 * Get mapping and operations from the file in case we have
205 * as file, or get the default values for them in case we
206 * don't have a struct file available. Damn nfsd..
207 */
208 if (file) {
209 mapping = file->f_mapping;
210 fop = file->f_op;
211 } else {
212 mapping = dentry->d_inode->i_mapping;
213 fop = dentry->d_inode->i_fop;
214 }
cf9a2ae8 215
4c728ef5 216 if (!fop || !fop->fsync) {
cf9a2ae8
DH
217 ret = -EINVAL;
218 goto out;
219 }
220
148f948b 221 ret = filemap_fdatawrite_range(mapping, start, end);
cf9a2ae8
DH
222
223 /*
224 * We need to protect against concurrent writers, which could cause
225 * livelocks in fsync_buffers_list().
226 */
227 mutex_lock(&mapping->host->i_mutex);
4c728ef5 228 err = fop->fsync(file, dentry, datasync);
cf9a2ae8
DH
229 if (!ret)
230 ret = err;
231 mutex_unlock(&mapping->host->i_mutex);
148f948b
JK
232
233 err = filemap_fdatawait_range(mapping, start, end);
cf9a2ae8
DH
234 if (!ret)
235 ret = err;
236out:
237 return ret;
238}
148f948b
JK
239EXPORT_SYMBOL(vfs_fsync_range);
240
241/**
242 * vfs_fsync - perform a fsync or fdatasync on a file
243 * @file: file to sync
244 * @dentry: dentry of @file
245 * @datasync: only perform a fdatasync operation
246 *
247 * Write back data and metadata for @file to disk. If @datasync is
248 * set only metadata needed to access modified file data is written.
249 *
250 * In case this function is called from nfsd @file may be %NULL and
251 * only @dentry is set. This can only happen when the filesystem
252 * implements the export_operations API.
253 */
254int vfs_fsync(struct file *file, struct dentry *dentry, int datasync)
255{
256 return vfs_fsync_range(file, dentry, 0, LLONG_MAX, datasync);
257}
4c728ef5 258EXPORT_SYMBOL(vfs_fsync);
cf9a2ae8 259
4c728ef5 260static int do_fsync(unsigned int fd, int datasync)
cf9a2ae8
DH
261{
262 struct file *file;
263 int ret = -EBADF;
264
265 file = fget(fd);
266 if (file) {
4c728ef5 267 ret = vfs_fsync(file, file->f_path.dentry, datasync);
cf9a2ae8
DH
268 fput(file);
269 }
270 return ret;
271}
272
a5f8fa9e 273SYSCALL_DEFINE1(fsync, unsigned int, fd)
cf9a2ae8 274{
4c728ef5 275 return do_fsync(fd, 0);
cf9a2ae8
DH
276}
277
a5f8fa9e 278SYSCALL_DEFINE1(fdatasync, unsigned int, fd)
cf9a2ae8 279{
4c728ef5 280 return do_fsync(fd, 1);
cf9a2ae8
DH
281}
282
148f948b
JK
283/**
284 * generic_write_sync - perform syncing after a write if file / inode is sync
285 * @file: file to which the write happened
286 * @pos: offset where the write started
287 * @count: length of the write
288 *
289 * This is just a simple wrapper about our general syncing function.
290 */
291int generic_write_sync(struct file *file, loff_t pos, loff_t count)
292{
293 if (!(file->f_flags & O_SYNC) && !IS_SYNC(file->f_mapping->host))
294 return 0;
295 return vfs_fsync_range(file, file->f_path.dentry, pos,
296 pos + count - 1, 1);
297}
298EXPORT_SYMBOL(generic_write_sync);
299
f79e2abb
AM
300/*
301 * sys_sync_file_range() permits finely controlled syncing over a segment of
302 * a file in the range offset .. (offset+nbytes-1) inclusive. If nbytes is
303 * zero then sys_sync_file_range() will operate from offset out to EOF.
304 *
305 * The flag bits are:
306 *
307 * SYNC_FILE_RANGE_WAIT_BEFORE: wait upon writeout of all pages in the range
308 * before performing the write.
309 *
310 * SYNC_FILE_RANGE_WRITE: initiate writeout of all those dirty pages in the
cce77081
PM
311 * range which are not presently under writeback. Note that this may block for
312 * significant periods due to exhaustion of disk request structures.
f79e2abb
AM
313 *
314 * SYNC_FILE_RANGE_WAIT_AFTER: wait upon writeout of all pages in the range
315 * after performing the write.
316 *
317 * Useful combinations of the flag bits are:
318 *
319 * SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE: ensures that all pages
320 * in the range which were dirty on entry to sys_sync_file_range() are placed
321 * under writeout. This is a start-write-for-data-integrity operation.
322 *
323 * SYNC_FILE_RANGE_WRITE: start writeout of all dirty pages in the range which
324 * are not presently under writeout. This is an asynchronous flush-to-disk
325 * operation. Not suitable for data integrity operations.
326 *
327 * SYNC_FILE_RANGE_WAIT_BEFORE (or SYNC_FILE_RANGE_WAIT_AFTER): wait for
328 * completion of writeout of all pages in the range. This will be used after an
329 * earlier SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE operation to wait
330 * for that operation to complete and to return the result.
331 *
332 * SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE|SYNC_FILE_RANGE_WAIT_AFTER:
333 * a traditional sync() operation. This is a write-for-data-integrity operation
334 * which will ensure that all pages in the range which were dirty on entry to
335 * sys_sync_file_range() are committed to disk.
336 *
337 *
338 * SYNC_FILE_RANGE_WAIT_BEFORE and SYNC_FILE_RANGE_WAIT_AFTER will detect any
339 * I/O errors or ENOSPC conditions and will return those to the caller, after
340 * clearing the EIO and ENOSPC flags in the address_space.
341 *
342 * It should be noted that none of these operations write out the file's
343 * metadata. So unless the application is strictly performing overwrites of
344 * already-instantiated disk blocks, there are no guarantees here that the data
345 * will be available after a crash.
346 */
6673e0c3
HC
347SYSCALL_DEFINE(sync_file_range)(int fd, loff_t offset, loff_t nbytes,
348 unsigned int flags)
f79e2abb
AM
349{
350 int ret;
351 struct file *file;
352 loff_t endbyte; /* inclusive */
353 int fput_needed;
354 umode_t i_mode;
355
356 ret = -EINVAL;
357 if (flags & ~VALID_FLAGS)
358 goto out;
359
360 endbyte = offset + nbytes;
361
362 if ((s64)offset < 0)
363 goto out;
364 if ((s64)endbyte < 0)
365 goto out;
366 if (endbyte < offset)
367 goto out;
368
369 if (sizeof(pgoff_t) == 4) {
370 if (offset >= (0x100000000ULL << PAGE_CACHE_SHIFT)) {
371 /*
372 * The range starts outside a 32 bit machine's
373 * pagecache addressing capabilities. Let it "succeed"
374 */
375 ret = 0;
376 goto out;
377 }
378 if (endbyte >= (0x100000000ULL << PAGE_CACHE_SHIFT)) {
379 /*
380 * Out to EOF
381 */
382 nbytes = 0;
383 }
384 }
385
386 if (nbytes == 0)
111ebb6e 387 endbyte = LLONG_MAX;
f79e2abb
AM
388 else
389 endbyte--; /* inclusive */
390
391 ret = -EBADF;
392 file = fget_light(fd, &fput_needed);
393 if (!file)
394 goto out;
395
0f7fc9e4 396 i_mode = file->f_path.dentry->d_inode->i_mode;
f79e2abb
AM
397 ret = -ESPIPE;
398 if (!S_ISREG(i_mode) && !S_ISBLK(i_mode) && !S_ISDIR(i_mode) &&
399 !S_ISLNK(i_mode))
400 goto out_put;
401
ef51c976 402 ret = do_sync_mapping_range(file->f_mapping, offset, endbyte, flags);
f79e2abb
AM
403out_put:
404 fput_light(file, fput_needed);
405out:
406 return ret;
407}
6673e0c3
HC
408#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
409asmlinkage long SyS_sync_file_range(long fd, loff_t offset, loff_t nbytes,
410 long flags)
411{
412 return SYSC_sync_file_range((int) fd, offset, nbytes,
413 (unsigned int) flags);
414}
415SYSCALL_ALIAS(sys_sync_file_range, SyS_sync_file_range);
416#endif
f79e2abb 417
edd5cd4a
DW
418/* It would be nice if people remember that not all the world's an i386
419 when they introduce new system calls */
6673e0c3
HC
420SYSCALL_DEFINE(sync_file_range2)(int fd, unsigned int flags,
421 loff_t offset, loff_t nbytes)
edd5cd4a
DW
422{
423 return sys_sync_file_range(fd, offset, nbytes, flags);
424}
6673e0c3
HC
425#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
426asmlinkage long SyS_sync_file_range2(long fd, long flags,
427 loff_t offset, loff_t nbytes)
428{
429 return SYSC_sync_file_range2((int) fd, (unsigned int) flags,
430 offset, nbytes);
431}
432SYSCALL_ALIAS(sys_sync_file_range2, SyS_sync_file_range2);
433#endif
edd5cd4a 434
f79e2abb
AM
435/*
436 * `endbyte' is inclusive
437 */
5b04aa3a
MF
438int do_sync_mapping_range(struct address_space *mapping, loff_t offset,
439 loff_t endbyte, unsigned int flags)
f79e2abb
AM
440{
441 int ret;
f79e2abb 442
f79e2abb
AM
443 if (!mapping) {
444 ret = -EINVAL;
445 goto out;
446 }
447
448 ret = 0;
449 if (flags & SYNC_FILE_RANGE_WAIT_BEFORE) {
450 ret = wait_on_page_writeback_range(mapping,
451 offset >> PAGE_CACHE_SHIFT,
452 endbyte >> PAGE_CACHE_SHIFT);
453 if (ret < 0)
454 goto out;
455 }
456
457 if (flags & SYNC_FILE_RANGE_WRITE) {
458 ret = __filemap_fdatawrite_range(mapping, offset, endbyte,
ee53a891 459 WB_SYNC_ALL);
f79e2abb
AM
460 if (ret < 0)
461 goto out;
462 }
463
464 if (flags & SYNC_FILE_RANGE_WAIT_AFTER) {
465 ret = wait_on_page_writeback_range(mapping,
466 offset >> PAGE_CACHE_SHIFT,
467 endbyte >> PAGE_CACHE_SHIFT);
468 }
469out:
470 return ret;
471}
5b04aa3a 472EXPORT_SYMBOL_GPL(do_sync_mapping_range);