]>
Commit | Line | Data |
---|---|---|
ccd979bd MF |
1 | /* -*- mode: c; c-basic-offset: 8; -*- |
2 | * vim: noexpandtab sw=8 ts=8 sts=0: | |
3 | * | |
4 | * file.c | |
5 | * | |
6 | * File open, close, extend, truncate | |
7 | * | |
8 | * Copyright (C) 2002, 2004 Oracle. All rights reserved. | |
9 | * | |
10 | * This program is free software; you can redistribute it and/or | |
11 | * modify it under the terms of the GNU General Public | |
12 | * License as published by the Free Software Foundation; either | |
13 | * version 2 of the License, or (at your option) any later version. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
18 | * General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public | |
21 | * License along with this program; if not, write to the | |
22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 | * Boston, MA 021110-1307, USA. | |
24 | */ | |
25 | ||
16f7e0fe | 26 | #include <linux/capability.h> |
ccd979bd MF |
27 | #include <linux/fs.h> |
28 | #include <linux/types.h> | |
29 | #include <linux/slab.h> | |
30 | #include <linux/highmem.h> | |
31 | #include <linux/pagemap.h> | |
32 | #include <linux/uio.h> | |
e2057c5a | 33 | #include <linux/sched.h> |
d6b29d7c | 34 | #include <linux/splice.h> |
7f1a37e3 | 35 | #include <linux/mount.h> |
9517bac6 | 36 | #include <linux/writeback.h> |
385820a3 | 37 | #include <linux/falloc.h> |
ccd979bd MF |
38 | |
39 | #define MLOG_MASK_PREFIX ML_INODE | |
40 | #include <cluster/masklog.h> | |
41 | ||
42 | #include "ocfs2.h" | |
43 | ||
44 | #include "alloc.h" | |
45 | #include "aops.h" | |
46 | #include "dir.h" | |
47 | #include "dlmglue.h" | |
48 | #include "extent_map.h" | |
49 | #include "file.h" | |
50 | #include "sysfile.h" | |
51 | #include "inode.h" | |
ca4d147e | 52 | #include "ioctl.h" |
ccd979bd | 53 | #include "journal.h" |
53fc622b | 54 | #include "locks.h" |
ccd979bd MF |
55 | #include "mmap.h" |
56 | #include "suballoc.h" | |
57 | #include "super.h" | |
58 | ||
59 | #include "buffer_head_io.h" | |
60 | ||
61 | static int ocfs2_sync_inode(struct inode *inode) | |
62 | { | |
63 | filemap_fdatawrite(inode->i_mapping); | |
64 | return sync_mapping_buffers(inode->i_mapping); | |
65 | } | |
66 | ||
53fc622b MF |
67 | static int ocfs2_init_file_private(struct inode *inode, struct file *file) |
68 | { | |
69 | struct ocfs2_file_private *fp; | |
70 | ||
71 | fp = kzalloc(sizeof(struct ocfs2_file_private), GFP_KERNEL); | |
72 | if (!fp) | |
73 | return -ENOMEM; | |
74 | ||
75 | fp->fp_file = file; | |
76 | mutex_init(&fp->fp_mutex); | |
77 | ocfs2_file_lock_res_init(&fp->fp_flock, fp); | |
78 | file->private_data = fp; | |
79 | ||
80 | return 0; | |
81 | } | |
82 | ||
83 | static void ocfs2_free_file_private(struct inode *inode, struct file *file) | |
84 | { | |
85 | struct ocfs2_file_private *fp = file->private_data; | |
86 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
87 | ||
88 | if (fp) { | |
89 | ocfs2_simple_drop_lockres(osb, &fp->fp_flock); | |
90 | ocfs2_lock_res_free(&fp->fp_flock); | |
91 | kfree(fp); | |
92 | file->private_data = NULL; | |
93 | } | |
94 | } | |
95 | ||
ccd979bd MF |
96 | static int ocfs2_file_open(struct inode *inode, struct file *file) |
97 | { | |
98 | int status; | |
99 | int mode = file->f_flags; | |
100 | struct ocfs2_inode_info *oi = OCFS2_I(inode); | |
101 | ||
102 | mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file, | |
d28c9174 | 103 | file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name); |
ccd979bd MF |
104 | |
105 | spin_lock(&oi->ip_lock); | |
106 | ||
107 | /* Check that the inode hasn't been wiped from disk by another | |
108 | * node. If it hasn't then we're safe as long as we hold the | |
109 | * spin lock until our increment of open count. */ | |
110 | if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) { | |
111 | spin_unlock(&oi->ip_lock); | |
112 | ||
113 | status = -ENOENT; | |
114 | goto leave; | |
115 | } | |
116 | ||
117 | if (mode & O_DIRECT) | |
118 | oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT; | |
119 | ||
120 | oi->ip_open_count++; | |
121 | spin_unlock(&oi->ip_lock); | |
53fc622b MF |
122 | |
123 | status = ocfs2_init_file_private(inode, file); | |
124 | if (status) { | |
125 | /* | |
126 | * We want to set open count back if we're failing the | |
127 | * open. | |
128 | */ | |
129 | spin_lock(&oi->ip_lock); | |
130 | oi->ip_open_count--; | |
131 | spin_unlock(&oi->ip_lock); | |
132 | } | |
133 | ||
ccd979bd MF |
134 | leave: |
135 | mlog_exit(status); | |
136 | return status; | |
137 | } | |
138 | ||
139 | static int ocfs2_file_release(struct inode *inode, struct file *file) | |
140 | { | |
141 | struct ocfs2_inode_info *oi = OCFS2_I(inode); | |
142 | ||
143 | mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file, | |
d28c9174 JS |
144 | file->f_path.dentry->d_name.len, |
145 | file->f_path.dentry->d_name.name); | |
ccd979bd MF |
146 | |
147 | spin_lock(&oi->ip_lock); | |
148 | if (!--oi->ip_open_count) | |
149 | oi->ip_flags &= ~OCFS2_INODE_OPEN_DIRECT; | |
150 | spin_unlock(&oi->ip_lock); | |
151 | ||
53fc622b MF |
152 | ocfs2_free_file_private(inode, file); |
153 | ||
ccd979bd MF |
154 | mlog_exit(0); |
155 | ||
156 | return 0; | |
157 | } | |
158 | ||
53fc622b MF |
159 | static int ocfs2_dir_open(struct inode *inode, struct file *file) |
160 | { | |
161 | return ocfs2_init_file_private(inode, file); | |
162 | } | |
163 | ||
164 | static int ocfs2_dir_release(struct inode *inode, struct file *file) | |
165 | { | |
166 | ocfs2_free_file_private(inode, file); | |
167 | return 0; | |
168 | } | |
169 | ||
ccd979bd MF |
170 | static int ocfs2_sync_file(struct file *file, |
171 | struct dentry *dentry, | |
172 | int datasync) | |
173 | { | |
174 | int err = 0; | |
175 | journal_t *journal; | |
176 | struct inode *inode = dentry->d_inode; | |
177 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
178 | ||
179 | mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync, | |
180 | dentry->d_name.len, dentry->d_name.name); | |
181 | ||
182 | err = ocfs2_sync_inode(dentry->d_inode); | |
183 | if (err) | |
184 | goto bail; | |
185 | ||
186 | journal = osb->journal->j_journal; | |
187 | err = journal_force_commit(journal); | |
188 | ||
189 | bail: | |
190 | mlog_exit(err); | |
191 | ||
192 | return (err < 0) ? -EIO : 0; | |
193 | } | |
194 | ||
7f1a37e3 TY |
195 | int ocfs2_should_update_atime(struct inode *inode, |
196 | struct vfsmount *vfsmnt) | |
197 | { | |
198 | struct timespec now; | |
199 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
200 | ||
201 | if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb)) | |
202 | return 0; | |
203 | ||
204 | if ((inode->i_flags & S_NOATIME) || | |
205 | ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))) | |
206 | return 0; | |
207 | ||
6c2aad05 MF |
208 | /* |
209 | * We can be called with no vfsmnt structure - NFSD will | |
210 | * sometimes do this. | |
211 | * | |
212 | * Note that our action here is different than touch_atime() - | |
213 | * if we can't tell whether this is a noatime mount, then we | |
214 | * don't know whether to trust the value of s_atime_quantum. | |
215 | */ | |
216 | if (vfsmnt == NULL) | |
217 | return 0; | |
218 | ||
7f1a37e3 TY |
219 | if ((vfsmnt->mnt_flags & MNT_NOATIME) || |
220 | ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))) | |
221 | return 0; | |
222 | ||
7e913c53 MF |
223 | if (vfsmnt->mnt_flags & MNT_RELATIME) { |
224 | if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) || | |
225 | (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0)) | |
226 | return 1; | |
227 | ||
228 | return 0; | |
229 | } | |
230 | ||
7f1a37e3 TY |
231 | now = CURRENT_TIME; |
232 | if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum)) | |
233 | return 0; | |
234 | else | |
235 | return 1; | |
236 | } | |
237 | ||
238 | int ocfs2_update_inode_atime(struct inode *inode, | |
239 | struct buffer_head *bh) | |
240 | { | |
241 | int ret; | |
242 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
243 | handle_t *handle; | |
c11e9faf | 244 | struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data; |
7f1a37e3 TY |
245 | |
246 | mlog_entry_void(); | |
247 | ||
248 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); | |
249 | if (handle == NULL) { | |
250 | ret = -ENOMEM; | |
251 | mlog_errno(ret); | |
252 | goto out; | |
253 | } | |
254 | ||
c11e9faf MF |
255 | ret = ocfs2_journal_access(handle, inode, bh, |
256 | OCFS2_JOURNAL_ACCESS_WRITE); | |
257 | if (ret) { | |
258 | mlog_errno(ret); | |
259 | goto out_commit; | |
260 | } | |
261 | ||
262 | /* | |
263 | * Don't use ocfs2_mark_inode_dirty() here as we don't always | |
264 | * have i_mutex to guard against concurrent changes to other | |
265 | * inode fields. | |
266 | */ | |
7f1a37e3 | 267 | inode->i_atime = CURRENT_TIME; |
c11e9faf MF |
268 | di->i_atime = cpu_to_le64(inode->i_atime.tv_sec); |
269 | di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec); | |
270 | ||
271 | ret = ocfs2_journal_dirty(handle, bh); | |
7f1a37e3 TY |
272 | if (ret < 0) |
273 | mlog_errno(ret); | |
274 | ||
c11e9faf | 275 | out_commit: |
7f1a37e3 TY |
276 | ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle); |
277 | out: | |
278 | mlog_exit(ret); | |
279 | return ret; | |
280 | } | |
281 | ||
6cb129f5 AB |
282 | static int ocfs2_set_inode_size(handle_t *handle, |
283 | struct inode *inode, | |
284 | struct buffer_head *fe_bh, | |
285 | u64 new_i_size) | |
ccd979bd MF |
286 | { |
287 | int status; | |
288 | ||
289 | mlog_entry_void(); | |
290 | i_size_write(inode, new_i_size); | |
8110b073 | 291 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
ccd979bd MF |
292 | inode->i_ctime = inode->i_mtime = CURRENT_TIME; |
293 | ||
294 | status = ocfs2_mark_inode_dirty(handle, inode, fe_bh); | |
295 | if (status < 0) { | |
296 | mlog_errno(status); | |
297 | goto bail; | |
298 | } | |
299 | ||
300 | bail: | |
301 | mlog_exit(status); | |
302 | return status; | |
303 | } | |
304 | ||
305 | static int ocfs2_simple_size_update(struct inode *inode, | |
306 | struct buffer_head *di_bh, | |
307 | u64 new_i_size) | |
308 | { | |
309 | int ret; | |
310 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
1fabe148 | 311 | handle_t *handle = NULL; |
ccd979bd | 312 | |
65eff9cc | 313 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); |
ccd979bd MF |
314 | if (handle == NULL) { |
315 | ret = -ENOMEM; | |
316 | mlog_errno(ret); | |
317 | goto out; | |
318 | } | |
319 | ||
320 | ret = ocfs2_set_inode_size(handle, inode, di_bh, | |
321 | new_i_size); | |
322 | if (ret < 0) | |
323 | mlog_errno(ret); | |
324 | ||
02dc1af4 | 325 | ocfs2_commit_trans(osb, handle); |
ccd979bd MF |
326 | out: |
327 | return ret; | |
328 | } | |
329 | ||
330 | static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb, | |
331 | struct inode *inode, | |
332 | struct buffer_head *fe_bh, | |
333 | u64 new_i_size) | |
334 | { | |
335 | int status; | |
1fabe148 | 336 | handle_t *handle; |
60b11392 | 337 | struct ocfs2_dinode *di; |
35edec1d | 338 | u64 cluster_bytes; |
ccd979bd MF |
339 | |
340 | mlog_entry_void(); | |
341 | ||
342 | /* TODO: This needs to actually orphan the inode in this | |
343 | * transaction. */ | |
344 | ||
65eff9cc | 345 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); |
ccd979bd MF |
346 | if (IS_ERR(handle)) { |
347 | status = PTR_ERR(handle); | |
348 | mlog_errno(status); | |
349 | goto out; | |
350 | } | |
351 | ||
60b11392 MF |
352 | status = ocfs2_journal_access(handle, inode, fe_bh, |
353 | OCFS2_JOURNAL_ACCESS_WRITE); | |
354 | if (status < 0) { | |
355 | mlog_errno(status); | |
356 | goto out_commit; | |
357 | } | |
358 | ||
359 | /* | |
360 | * Do this before setting i_size. | |
361 | */ | |
35edec1d MF |
362 | cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size); |
363 | status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size, | |
364 | cluster_bytes); | |
60b11392 MF |
365 | if (status) { |
366 | mlog_errno(status); | |
367 | goto out_commit; | |
368 | } | |
369 | ||
370 | i_size_write(inode, new_i_size); | |
60b11392 MF |
371 | inode->i_ctime = inode->i_mtime = CURRENT_TIME; |
372 | ||
373 | di = (struct ocfs2_dinode *) fe_bh->b_data; | |
374 | di->i_size = cpu_to_le64(new_i_size); | |
375 | di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec); | |
376 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec); | |
377 | ||
378 | status = ocfs2_journal_dirty(handle, fe_bh); | |
ccd979bd MF |
379 | if (status < 0) |
380 | mlog_errno(status); | |
381 | ||
60b11392 | 382 | out_commit: |
02dc1af4 | 383 | ocfs2_commit_trans(osb, handle); |
ccd979bd | 384 | out: |
60b11392 | 385 | |
ccd979bd MF |
386 | mlog_exit(status); |
387 | return status; | |
388 | } | |
389 | ||
390 | static int ocfs2_truncate_file(struct inode *inode, | |
391 | struct buffer_head *di_bh, | |
392 | u64 new_i_size) | |
393 | { | |
394 | int status = 0; | |
395 | struct ocfs2_dinode *fe = NULL; | |
396 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
397 | struct ocfs2_truncate_context *tc = NULL; | |
398 | ||
b0697053 MF |
399 | mlog_entry("(inode = %llu, new_i_size = %llu\n", |
400 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | |
401 | (unsigned long long)new_i_size); | |
ccd979bd | 402 | |
ccd979bd MF |
403 | fe = (struct ocfs2_dinode *) di_bh->b_data; |
404 | if (!OCFS2_IS_VALID_DINODE(fe)) { | |
405 | OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe); | |
406 | status = -EIO; | |
407 | goto bail; | |
408 | } | |
409 | ||
410 | mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode), | |
b0697053 MF |
411 | "Inode %llu, inode i_size = %lld != di " |
412 | "i_size = %llu, i_flags = 0x%x\n", | |
413 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | |
ccd979bd | 414 | i_size_read(inode), |
b0697053 MF |
415 | (unsigned long long)le64_to_cpu(fe->i_size), |
416 | le32_to_cpu(fe->i_flags)); | |
ccd979bd MF |
417 | |
418 | if (new_i_size > le64_to_cpu(fe->i_size)) { | |
b0697053 MF |
419 | mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n", |
420 | (unsigned long long)le64_to_cpu(fe->i_size), | |
421 | (unsigned long long)new_i_size); | |
ccd979bd MF |
422 | status = -EINVAL; |
423 | mlog_errno(status); | |
424 | goto bail; | |
425 | } | |
426 | ||
b0697053 MF |
427 | mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n", |
428 | (unsigned long long)le64_to_cpu(fe->i_blkno), | |
429 | (unsigned long long)le64_to_cpu(fe->i_size), | |
430 | (unsigned long long)new_i_size); | |
ccd979bd MF |
431 | |
432 | /* lets handle the simple truncate cases before doing any more | |
433 | * cluster locking. */ | |
434 | if (new_i_size == le64_to_cpu(fe->i_size)) | |
435 | goto bail; | |
436 | ||
2e89b2e4 MF |
437 | down_write(&OCFS2_I(inode)->ip_alloc_sem); |
438 | ||
c934a92d MF |
439 | /* |
440 | * The inode lock forced other nodes to sync and drop their | |
441 | * pages, which (correctly) happens even if we have a truncate | |
442 | * without allocation change - ocfs2 cluster sizes can be much | |
443 | * greater than page size, so we have to truncate them | |
444 | * anyway. | |
445 | */ | |
2e89b2e4 MF |
446 | unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1); |
447 | truncate_inode_pages(inode->i_mapping, new_i_size); | |
448 | ||
1afc32b9 MF |
449 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
450 | status = ocfs2_truncate_inline(inode, di_bh, new_i_size, | |
b1967d0e | 451 | i_size_read(inode), 1); |
1afc32b9 MF |
452 | if (status) |
453 | mlog_errno(status); | |
454 | ||
c934a92d | 455 | goto bail_unlock_sem; |
1afc32b9 MF |
456 | } |
457 | ||
ccd979bd MF |
458 | /* alright, we're going to need to do a full blown alloc size |
459 | * change. Orphan the inode so that recovery can complete the | |
460 | * truncate if necessary. This does the task of marking | |
461 | * i_size. */ | |
462 | status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size); | |
463 | if (status < 0) { | |
464 | mlog_errno(status); | |
c934a92d | 465 | goto bail_unlock_sem; |
ccd979bd MF |
466 | } |
467 | ||
468 | status = ocfs2_prepare_truncate(osb, inode, di_bh, &tc); | |
469 | if (status < 0) { | |
470 | mlog_errno(status); | |
c934a92d | 471 | goto bail_unlock_sem; |
ccd979bd MF |
472 | } |
473 | ||
474 | status = ocfs2_commit_truncate(osb, inode, di_bh, tc); | |
475 | if (status < 0) { | |
476 | mlog_errno(status); | |
c934a92d | 477 | goto bail_unlock_sem; |
ccd979bd MF |
478 | } |
479 | ||
480 | /* TODO: orphan dir cleanup here. */ | |
c934a92d | 481 | bail_unlock_sem: |
2e89b2e4 MF |
482 | up_write(&OCFS2_I(inode)->ip_alloc_sem); |
483 | ||
ccd979bd MF |
484 | bail: |
485 | ||
486 | mlog_exit(status); | |
487 | return status; | |
488 | } | |
489 | ||
490 | /* | |
491 | * extend allocation only here. | |
492 | * we'll update all the disk stuff, and oip->alloc_size | |
493 | * | |
494 | * expect stuff to be locked, a transaction started and enough data / | |
495 | * metadata reservations in the contexts. | |
496 | * | |
497 | * Will return -EAGAIN, and a reason if a restart is needed. | |
498 | * If passed in, *reason will always be set, even in error. | |
499 | */ | |
500 | int ocfs2_do_extend_allocation(struct ocfs2_super *osb, | |
501 | struct inode *inode, | |
dcd0538f | 502 | u32 *logical_offset, |
ccd979bd | 503 | u32 clusters_to_add, |
2ae99a60 | 504 | int mark_unwritten, |
ccd979bd | 505 | struct buffer_head *fe_bh, |
1fabe148 | 506 | handle_t *handle, |
ccd979bd MF |
507 | struct ocfs2_alloc_context *data_ac, |
508 | struct ocfs2_alloc_context *meta_ac, | |
509 | enum ocfs2_alloc_restarted *reason_ret) | |
510 | { | |
511 | int status = 0; | |
512 | int free_extents; | |
513 | struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data; | |
514 | enum ocfs2_alloc_restarted reason = RESTART_NONE; | |
515 | u32 bit_off, num_bits; | |
516 | u64 block; | |
2ae99a60 | 517 | u8 flags = 0; |
ccd979bd MF |
518 | |
519 | BUG_ON(!clusters_to_add); | |
520 | ||
2ae99a60 MF |
521 | if (mark_unwritten) |
522 | flags = OCFS2_EXT_UNWRITTEN; | |
523 | ||
ccd979bd MF |
524 | free_extents = ocfs2_num_free_extents(osb, inode, fe); |
525 | if (free_extents < 0) { | |
526 | status = free_extents; | |
527 | mlog_errno(status); | |
528 | goto leave; | |
529 | } | |
530 | ||
531 | /* there are two cases which could cause us to EAGAIN in the | |
532 | * we-need-more-metadata case: | |
533 | * 1) we haven't reserved *any* | |
534 | * 2) we are so fragmented, we've needed to add metadata too | |
535 | * many times. */ | |
536 | if (!free_extents && !meta_ac) { | |
537 | mlog(0, "we haven't reserved any metadata!\n"); | |
538 | status = -EAGAIN; | |
539 | reason = RESTART_META; | |
540 | goto leave; | |
541 | } else if ((!free_extents) | |
542 | && (ocfs2_alloc_context_bits_left(meta_ac) | |
543 | < ocfs2_extend_meta_needed(fe))) { | |
544 | mlog(0, "filesystem is really fragmented...\n"); | |
545 | status = -EAGAIN; | |
546 | reason = RESTART_META; | |
547 | goto leave; | |
548 | } | |
549 | ||
415cb800 MF |
550 | status = __ocfs2_claim_clusters(osb, handle, data_ac, 1, |
551 | clusters_to_add, &bit_off, &num_bits); | |
ccd979bd MF |
552 | if (status < 0) { |
553 | if (status != -ENOSPC) | |
554 | mlog_errno(status); | |
555 | goto leave; | |
556 | } | |
557 | ||
558 | BUG_ON(num_bits > clusters_to_add); | |
559 | ||
560 | /* reserve our write early -- insert_extent may update the inode */ | |
561 | status = ocfs2_journal_access(handle, inode, fe_bh, | |
562 | OCFS2_JOURNAL_ACCESS_WRITE); | |
563 | if (status < 0) { | |
564 | mlog_errno(status); | |
565 | goto leave; | |
566 | } | |
567 | ||
568 | block = ocfs2_clusters_to_blocks(osb->sb, bit_off); | |
b0697053 MF |
569 | mlog(0, "Allocating %u clusters at block %u for inode %llu\n", |
570 | num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno); | |
dcd0538f MF |
571 | status = ocfs2_insert_extent(osb, handle, inode, fe_bh, |
572 | *logical_offset, block, num_bits, | |
2ae99a60 | 573 | flags, meta_ac); |
ccd979bd MF |
574 | if (status < 0) { |
575 | mlog_errno(status); | |
576 | goto leave; | |
577 | } | |
578 | ||
ccd979bd MF |
579 | status = ocfs2_journal_dirty(handle, fe_bh); |
580 | if (status < 0) { | |
581 | mlog_errno(status); | |
582 | goto leave; | |
583 | } | |
584 | ||
585 | clusters_to_add -= num_bits; | |
dcd0538f | 586 | *logical_offset += num_bits; |
ccd979bd MF |
587 | |
588 | if (clusters_to_add) { | |
589 | mlog(0, "need to alloc once more, clusters = %u, wanted = " | |
590 | "%u\n", fe->i_clusters, clusters_to_add); | |
591 | status = -EAGAIN; | |
592 | reason = RESTART_TRANS; | |
593 | } | |
594 | ||
595 | leave: | |
596 | mlog_exit(status); | |
597 | if (reason_ret) | |
598 | *reason_ret = reason; | |
599 | return status; | |
600 | } | |
601 | ||
abf8b156 MF |
602 | /* |
603 | * For a given allocation, determine which allocators will need to be | |
604 | * accessed, and lock them, reserving the appropriate number of bits. | |
605 | * | |
2ae99a60 MF |
606 | * Sparse file systems call this from ocfs2_write_begin_nolock() |
607 | * and ocfs2_allocate_unwritten_extents(). | |
608 | * | |
609 | * File systems which don't support holes call this from | |
610 | * ocfs2_extend_allocation(). | |
abf8b156 | 611 | */ |
9517bac6 | 612 | int ocfs2_lock_allocators(struct inode *inode, struct ocfs2_dinode *di, |
b27b7cbc | 613 | u32 clusters_to_add, u32 extents_to_split, |
9517bac6 MF |
614 | struct ocfs2_alloc_context **data_ac, |
615 | struct ocfs2_alloc_context **meta_ac) | |
abf8b156 | 616 | { |
063c4561 | 617 | int ret = 0, num_free_extents; |
b27b7cbc | 618 | unsigned int max_recs_needed = clusters_to_add + 2 * extents_to_split; |
abf8b156 MF |
619 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
620 | ||
621 | *meta_ac = NULL; | |
063c4561 MF |
622 | if (data_ac) |
623 | *data_ac = NULL; | |
624 | ||
625 | BUG_ON(clusters_to_add != 0 && data_ac == NULL); | |
abf8b156 MF |
626 | |
627 | mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, " | |
b27b7cbc | 628 | "clusters_to_add = %u, extents_to_split = %u\n", |
634bf74d | 629 | (unsigned long long)OCFS2_I(inode)->ip_blkno, (long long)i_size_read(inode), |
b27b7cbc | 630 | le32_to_cpu(di->i_clusters), clusters_to_add, extents_to_split); |
abf8b156 MF |
631 | |
632 | num_free_extents = ocfs2_num_free_extents(osb, inode, di); | |
633 | if (num_free_extents < 0) { | |
634 | ret = num_free_extents; | |
635 | mlog_errno(ret); | |
636 | goto out; | |
637 | } | |
638 | ||
639 | /* | |
640 | * Sparse allocation file systems need to be more conservative | |
641 | * with reserving room for expansion - the actual allocation | |
642 | * happens while we've got a journal handle open so re-taking | |
643 | * a cluster lock (because we ran out of room for another | |
644 | * extent) will violate ordering rules. | |
645 | * | |
9517bac6 | 646 | * Most of the time we'll only be seeing this 1 cluster at a time |
abf8b156 | 647 | * anyway. |
b27b7cbc MF |
648 | * |
649 | * Always lock for any unwritten extents - we might want to | |
650 | * add blocks during a split. | |
abf8b156 MF |
651 | */ |
652 | if (!num_free_extents || | |
b27b7cbc | 653 | (ocfs2_sparse_alloc(osb) && num_free_extents < max_recs_needed)) { |
abf8b156 MF |
654 | ret = ocfs2_reserve_new_metadata(osb, di, meta_ac); |
655 | if (ret < 0) { | |
656 | if (ret != -ENOSPC) | |
657 | mlog_errno(ret); | |
658 | goto out; | |
659 | } | |
660 | } | |
661 | ||
063c4561 MF |
662 | if (clusters_to_add == 0) |
663 | goto out; | |
664 | ||
abf8b156 MF |
665 | ret = ocfs2_reserve_clusters(osb, clusters_to_add, data_ac); |
666 | if (ret < 0) { | |
667 | if (ret != -ENOSPC) | |
668 | mlog_errno(ret); | |
669 | goto out; | |
670 | } | |
671 | ||
672 | out: | |
673 | if (ret) { | |
674 | if (*meta_ac) { | |
675 | ocfs2_free_alloc_context(*meta_ac); | |
676 | *meta_ac = NULL; | |
677 | } | |
678 | ||
679 | /* | |
680 | * We cannot have an error and a non null *data_ac. | |
681 | */ | |
682 | } | |
683 | ||
684 | return ret; | |
685 | } | |
686 | ||
2ae99a60 MF |
687 | static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start, |
688 | u32 clusters_to_add, int mark_unwritten) | |
ccd979bd MF |
689 | { |
690 | int status = 0; | |
691 | int restart_func = 0; | |
abf8b156 | 692 | int credits; |
2ae99a60 | 693 | u32 prev_clusters; |
ccd979bd MF |
694 | struct buffer_head *bh = NULL; |
695 | struct ocfs2_dinode *fe = NULL; | |
1fabe148 | 696 | handle_t *handle = NULL; |
ccd979bd MF |
697 | struct ocfs2_alloc_context *data_ac = NULL; |
698 | struct ocfs2_alloc_context *meta_ac = NULL; | |
699 | enum ocfs2_alloc_restarted why; | |
700 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
701 | ||
702 | mlog_entry("(clusters_to_add = %u)\n", clusters_to_add); | |
703 | ||
dcd0538f MF |
704 | /* |
705 | * This function only exists for file systems which don't | |
706 | * support holes. | |
707 | */ | |
2ae99a60 | 708 | BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb)); |
dcd0538f | 709 | |
ccd979bd MF |
710 | status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &bh, |
711 | OCFS2_BH_CACHED, inode); | |
712 | if (status < 0) { | |
713 | mlog_errno(status); | |
714 | goto leave; | |
715 | } | |
716 | ||
717 | fe = (struct ocfs2_dinode *) bh->b_data; | |
718 | if (!OCFS2_IS_VALID_DINODE(fe)) { | |
719 | OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe); | |
720 | status = -EIO; | |
721 | goto leave; | |
722 | } | |
723 | ||
724 | restart_all: | |
725 | BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters); | |
726 | ||
b27b7cbc | 727 | status = ocfs2_lock_allocators(inode, fe, clusters_to_add, 0, &data_ac, |
9517bac6 MF |
728 | &meta_ac); |
729 | if (status) { | |
730 | mlog_errno(status); | |
731 | goto leave; | |
732 | } | |
733 | ||
ccd979bd | 734 | credits = ocfs2_calc_extend_credits(osb->sb, fe, clusters_to_add); |
65eff9cc | 735 | handle = ocfs2_start_trans(osb, credits); |
ccd979bd MF |
736 | if (IS_ERR(handle)) { |
737 | status = PTR_ERR(handle); | |
738 | handle = NULL; | |
739 | mlog_errno(status); | |
740 | goto leave; | |
741 | } | |
742 | ||
743 | restarted_transaction: | |
744 | /* reserve a write to the file entry early on - that we if we | |
745 | * run out of credits in the allocation path, we can still | |
746 | * update i_size. */ | |
747 | status = ocfs2_journal_access(handle, inode, bh, | |
748 | OCFS2_JOURNAL_ACCESS_WRITE); | |
749 | if (status < 0) { | |
750 | mlog_errno(status); | |
751 | goto leave; | |
752 | } | |
753 | ||
754 | prev_clusters = OCFS2_I(inode)->ip_clusters; | |
755 | ||
756 | status = ocfs2_do_extend_allocation(osb, | |
757 | inode, | |
dcd0538f | 758 | &logical_start, |
ccd979bd | 759 | clusters_to_add, |
2ae99a60 | 760 | mark_unwritten, |
ccd979bd MF |
761 | bh, |
762 | handle, | |
763 | data_ac, | |
764 | meta_ac, | |
765 | &why); | |
766 | if ((status < 0) && (status != -EAGAIN)) { | |
767 | if (status != -ENOSPC) | |
768 | mlog_errno(status); | |
769 | goto leave; | |
770 | } | |
771 | ||
772 | status = ocfs2_journal_dirty(handle, bh); | |
773 | if (status < 0) { | |
774 | mlog_errno(status); | |
775 | goto leave; | |
776 | } | |
777 | ||
778 | spin_lock(&OCFS2_I(inode)->ip_lock); | |
779 | clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters); | |
780 | spin_unlock(&OCFS2_I(inode)->ip_lock); | |
781 | ||
782 | if (why != RESTART_NONE && clusters_to_add) { | |
783 | if (why == RESTART_META) { | |
784 | mlog(0, "restarting function.\n"); | |
785 | restart_func = 1; | |
786 | } else { | |
787 | BUG_ON(why != RESTART_TRANS); | |
788 | ||
789 | mlog(0, "restarting transaction.\n"); | |
790 | /* TODO: This can be more intelligent. */ | |
791 | credits = ocfs2_calc_extend_credits(osb->sb, | |
792 | fe, | |
793 | clusters_to_add); | |
1fabe148 | 794 | status = ocfs2_extend_trans(handle, credits); |
ccd979bd MF |
795 | if (status < 0) { |
796 | /* handle still has to be committed at | |
797 | * this point. */ | |
798 | status = -ENOMEM; | |
799 | mlog_errno(status); | |
800 | goto leave; | |
801 | } | |
802 | goto restarted_transaction; | |
803 | } | |
804 | } | |
805 | ||
b0697053 | 806 | mlog(0, "fe: i_clusters = %u, i_size=%llu\n", |
1ca1a111 MF |
807 | le32_to_cpu(fe->i_clusters), |
808 | (unsigned long long)le64_to_cpu(fe->i_size)); | |
ccd979bd | 809 | mlog(0, "inode: ip_clusters=%u, i_size=%lld\n", |
634bf74d | 810 | OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode)); |
ccd979bd MF |
811 | |
812 | leave: | |
ccd979bd | 813 | if (handle) { |
02dc1af4 | 814 | ocfs2_commit_trans(osb, handle); |
ccd979bd MF |
815 | handle = NULL; |
816 | } | |
817 | if (data_ac) { | |
818 | ocfs2_free_alloc_context(data_ac); | |
819 | data_ac = NULL; | |
820 | } | |
821 | if (meta_ac) { | |
822 | ocfs2_free_alloc_context(meta_ac); | |
823 | meta_ac = NULL; | |
824 | } | |
825 | if ((!status) && restart_func) { | |
826 | restart_func = 0; | |
827 | goto restart_all; | |
828 | } | |
829 | if (bh) { | |
830 | brelse(bh); | |
831 | bh = NULL; | |
832 | } | |
833 | ||
834 | mlog_exit(status); | |
835 | return status; | |
836 | } | |
837 | ||
838 | /* Some parts of this taken from generic_cont_expand, which turned out | |
839 | * to be too fragile to do exactly what we need without us having to | |
53013cba MF |
840 | * worry about recursive locking in ->prepare_write() and |
841 | * ->commit_write(). */ | |
ccd979bd MF |
842 | static int ocfs2_write_zero_page(struct inode *inode, |
843 | u64 size) | |
844 | { | |
845 | struct address_space *mapping = inode->i_mapping; | |
846 | struct page *page; | |
847 | unsigned long index; | |
848 | unsigned int offset; | |
1fabe148 | 849 | handle_t *handle = NULL; |
ccd979bd MF |
850 | int ret; |
851 | ||
852 | offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */ | |
853 | /* ugh. in prepare/commit_write, if from==to==start of block, we | |
854 | ** skip the prepare. make sure we never send an offset for the start | |
855 | ** of a block | |
856 | */ | |
857 | if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) { | |
858 | offset++; | |
859 | } | |
860 | index = size >> PAGE_CACHE_SHIFT; | |
861 | ||
862 | page = grab_cache_page(mapping, index); | |
863 | if (!page) { | |
864 | ret = -ENOMEM; | |
865 | mlog_errno(ret); | |
866 | goto out; | |
867 | } | |
868 | ||
53013cba | 869 | ret = ocfs2_prepare_write_nolock(inode, page, offset, offset); |
ccd979bd MF |
870 | if (ret < 0) { |
871 | mlog_errno(ret); | |
872 | goto out_unlock; | |
873 | } | |
874 | ||
875 | if (ocfs2_should_order_data(inode)) { | |
876 | handle = ocfs2_start_walk_page_trans(inode, page, offset, | |
877 | offset); | |
878 | if (IS_ERR(handle)) { | |
879 | ret = PTR_ERR(handle); | |
880 | handle = NULL; | |
881 | goto out_unlock; | |
882 | } | |
883 | } | |
884 | ||
885 | /* must not update i_size! */ | |
886 | ret = block_commit_write(page, offset, offset); | |
887 | if (ret < 0) | |
888 | mlog_errno(ret); | |
889 | else | |
890 | ret = 0; | |
891 | ||
892 | if (handle) | |
02dc1af4 | 893 | ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle); |
ccd979bd MF |
894 | out_unlock: |
895 | unlock_page(page); | |
896 | page_cache_release(page); | |
897 | out: | |
898 | return ret; | |
899 | } | |
900 | ||
901 | static int ocfs2_zero_extend(struct inode *inode, | |
902 | u64 zero_to_size) | |
903 | { | |
904 | int ret = 0; | |
905 | u64 start_off; | |
906 | struct super_block *sb = inode->i_sb; | |
907 | ||
908 | start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode)); | |
909 | while (start_off < zero_to_size) { | |
910 | ret = ocfs2_write_zero_page(inode, start_off); | |
911 | if (ret < 0) { | |
912 | mlog_errno(ret); | |
913 | goto out; | |
914 | } | |
915 | ||
916 | start_off += sb->s_blocksize; | |
e2057c5a MF |
917 | |
918 | /* | |
919 | * Very large extends have the potential to lock up | |
920 | * the cpu for extended periods of time. | |
921 | */ | |
922 | cond_resched(); | |
ccd979bd MF |
923 | } |
924 | ||
925 | out: | |
926 | return ret; | |
927 | } | |
928 | ||
65ed39d6 MF |
929 | int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to) |
930 | { | |
931 | int ret; | |
932 | u32 clusters_to_add; | |
933 | struct ocfs2_inode_info *oi = OCFS2_I(inode); | |
934 | ||
935 | clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size); | |
936 | if (clusters_to_add < oi->ip_clusters) | |
937 | clusters_to_add = 0; | |
938 | else | |
939 | clusters_to_add -= oi->ip_clusters; | |
940 | ||
941 | if (clusters_to_add) { | |
942 | ret = __ocfs2_extend_allocation(inode, oi->ip_clusters, | |
943 | clusters_to_add, 0); | |
944 | if (ret) { | |
945 | mlog_errno(ret); | |
946 | goto out; | |
947 | } | |
948 | } | |
949 | ||
950 | /* | |
951 | * Call this even if we don't add any clusters to the tree. We | |
952 | * still need to zero the area between the old i_size and the | |
953 | * new i_size. | |
954 | */ | |
955 | ret = ocfs2_zero_extend(inode, zero_to); | |
956 | if (ret < 0) | |
957 | mlog_errno(ret); | |
958 | ||
959 | out: | |
960 | return ret; | |
961 | } | |
962 | ||
ccd979bd MF |
963 | static int ocfs2_extend_file(struct inode *inode, |
964 | struct buffer_head *di_bh, | |
65ed39d6 | 965 | u64 new_i_size) |
ccd979bd | 966 | { |
c934a92d | 967 | int ret = 0; |
1afc32b9 | 968 | struct ocfs2_inode_info *oi = OCFS2_I(inode); |
ccd979bd | 969 | |
65ed39d6 | 970 | BUG_ON(!di_bh); |
53013cba | 971 | |
ccd979bd MF |
972 | /* setattr sometimes calls us like this. */ |
973 | if (new_i_size == 0) | |
974 | goto out; | |
975 | ||
976 | if (i_size_read(inode) == new_i_size) | |
977 | goto out; | |
978 | BUG_ON(new_i_size < i_size_read(inode)); | |
979 | ||
1afc32b9 MF |
980 | /* |
981 | * Fall through for converting inline data, even if the fs | |
982 | * supports sparse files. | |
983 | * | |
984 | * The check for inline data here is legal - nobody can add | |
985 | * the feature since we have i_mutex. We must check it again | |
986 | * after acquiring ip_alloc_sem though, as paths like mmap | |
987 | * might have raced us to converting the inode to extents. | |
988 | */ | |
989 | if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) | |
990 | && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb))) | |
3a0782d0 | 991 | goto out_update_size; |
ccd979bd | 992 | |
0effef77 | 993 | /* |
65ed39d6 MF |
994 | * The alloc sem blocks people in read/write from reading our |
995 | * allocation until we're done changing it. We depend on | |
996 | * i_mutex to block other extend/truncate calls while we're | |
997 | * here. | |
0effef77 | 998 | */ |
1afc32b9 MF |
999 | down_write(&oi->ip_alloc_sem); |
1000 | ||
1001 | if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | |
1002 | /* | |
1003 | * We can optimize small extends by keeping the inodes | |
1004 | * inline data. | |
1005 | */ | |
1006 | if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) { | |
1007 | up_write(&oi->ip_alloc_sem); | |
1008 | goto out_update_size; | |
1009 | } | |
1010 | ||
1011 | ret = ocfs2_convert_inline_data_to_extents(inode, di_bh); | |
1012 | if (ret) { | |
1013 | up_write(&oi->ip_alloc_sem); | |
1014 | ||
1015 | mlog_errno(ret); | |
c934a92d | 1016 | goto out; |
1afc32b9 MF |
1017 | } |
1018 | } | |
1019 | ||
1020 | if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb))) | |
1021 | ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size); | |
1022 | ||
1023 | up_write(&oi->ip_alloc_sem); | |
65ed39d6 | 1024 | |
0effef77 MF |
1025 | if (ret < 0) { |
1026 | mlog_errno(ret); | |
c934a92d | 1027 | goto out; |
53013cba MF |
1028 | } |
1029 | ||
3a0782d0 | 1030 | out_update_size: |
65ed39d6 MF |
1031 | ret = ocfs2_simple_size_update(inode, di_bh, new_i_size); |
1032 | if (ret < 0) | |
1033 | mlog_errno(ret); | |
ccd979bd MF |
1034 | |
1035 | out: | |
1036 | return ret; | |
1037 | } | |
1038 | ||
1039 | int ocfs2_setattr(struct dentry *dentry, struct iattr *attr) | |
1040 | { | |
1041 | int status = 0, size_change; | |
1042 | struct inode *inode = dentry->d_inode; | |
1043 | struct super_block *sb = inode->i_sb; | |
1044 | struct ocfs2_super *osb = OCFS2_SB(sb); | |
1045 | struct buffer_head *bh = NULL; | |
1fabe148 | 1046 | handle_t *handle = NULL; |
ccd979bd MF |
1047 | |
1048 | mlog_entry("(0x%p, '%.*s')\n", dentry, | |
1049 | dentry->d_name.len, dentry->d_name.name); | |
1050 | ||
1051 | if (attr->ia_valid & ATTR_MODE) | |
1052 | mlog(0, "mode change: %d\n", attr->ia_mode); | |
1053 | if (attr->ia_valid & ATTR_UID) | |
1054 | mlog(0, "uid change: %d\n", attr->ia_uid); | |
1055 | if (attr->ia_valid & ATTR_GID) | |
1056 | mlog(0, "gid change: %d\n", attr->ia_gid); | |
1057 | if (attr->ia_valid & ATTR_SIZE) | |
1058 | mlog(0, "size change...\n"); | |
1059 | if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME)) | |
1060 | mlog(0, "time change...\n"); | |
1061 | ||
1062 | #define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \ | |
1063 | | ATTR_GID | ATTR_UID | ATTR_MODE) | |
1064 | if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) { | |
1065 | mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid); | |
1066 | return 0; | |
1067 | } | |
1068 | ||
1069 | status = inode_change_ok(inode, attr); | |
1070 | if (status) | |
1071 | return status; | |
1072 | ||
1073 | size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE; | |
1074 | if (size_change) { | |
1075 | status = ocfs2_rw_lock(inode, 1); | |
1076 | if (status < 0) { | |
1077 | mlog_errno(status); | |
1078 | goto bail; | |
1079 | } | |
1080 | } | |
1081 | ||
e63aecb6 | 1082 | status = ocfs2_inode_lock(inode, &bh, 1); |
ccd979bd MF |
1083 | if (status < 0) { |
1084 | if (status != -ENOENT) | |
1085 | mlog_errno(status); | |
1086 | goto bail_unlock_rw; | |
1087 | } | |
1088 | ||
1089 | if (size_change && attr->ia_size != i_size_read(inode)) { | |
ce76fd30 MF |
1090 | if (attr->ia_size > sb->s_maxbytes) { |
1091 | status = -EFBIG; | |
1092 | goto bail_unlock; | |
1093 | } | |
1094 | ||
ccd979bd MF |
1095 | if (i_size_read(inode) > attr->ia_size) |
1096 | status = ocfs2_truncate_file(inode, bh, attr->ia_size); | |
1097 | else | |
65ed39d6 | 1098 | status = ocfs2_extend_file(inode, bh, attr->ia_size); |
ccd979bd MF |
1099 | if (status < 0) { |
1100 | if (status != -ENOSPC) | |
1101 | mlog_errno(status); | |
1102 | status = -ENOSPC; | |
1103 | goto bail_unlock; | |
1104 | } | |
1105 | } | |
1106 | ||
65eff9cc | 1107 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); |
ccd979bd MF |
1108 | if (IS_ERR(handle)) { |
1109 | status = PTR_ERR(handle); | |
1110 | mlog_errno(status); | |
1111 | goto bail_unlock; | |
1112 | } | |
1113 | ||
7307de80 MF |
1114 | /* |
1115 | * This will intentionally not wind up calling vmtruncate(), | |
1116 | * since all the work for a size change has been done above. | |
1117 | * Otherwise, we could get into problems with truncate as | |
1118 | * ip_alloc_sem is used there to protect against i_size | |
1119 | * changes. | |
1120 | */ | |
ccd979bd MF |
1121 | status = inode_setattr(inode, attr); |
1122 | if (status < 0) { | |
1123 | mlog_errno(status); | |
1124 | goto bail_commit; | |
1125 | } | |
1126 | ||
1127 | status = ocfs2_mark_inode_dirty(handle, inode, bh); | |
1128 | if (status < 0) | |
1129 | mlog_errno(status); | |
1130 | ||
1131 | bail_commit: | |
02dc1af4 | 1132 | ocfs2_commit_trans(osb, handle); |
ccd979bd | 1133 | bail_unlock: |
e63aecb6 | 1134 | ocfs2_inode_unlock(inode, 1); |
ccd979bd MF |
1135 | bail_unlock_rw: |
1136 | if (size_change) | |
1137 | ocfs2_rw_unlock(inode, 1); | |
1138 | bail: | |
1139 | if (bh) | |
1140 | brelse(bh); | |
1141 | ||
1142 | mlog_exit(status); | |
1143 | return status; | |
1144 | } | |
1145 | ||
1146 | int ocfs2_getattr(struct vfsmount *mnt, | |
1147 | struct dentry *dentry, | |
1148 | struct kstat *stat) | |
1149 | { | |
1150 | struct inode *inode = dentry->d_inode; | |
1151 | struct super_block *sb = dentry->d_inode->i_sb; | |
1152 | struct ocfs2_super *osb = sb->s_fs_info; | |
1153 | int err; | |
1154 | ||
1155 | mlog_entry_void(); | |
1156 | ||
1157 | err = ocfs2_inode_revalidate(dentry); | |
1158 | if (err) { | |
1159 | if (err != -ENOENT) | |
1160 | mlog_errno(err); | |
1161 | goto bail; | |
1162 | } | |
1163 | ||
1164 | generic_fillattr(inode, stat); | |
1165 | ||
1166 | /* We set the blksize from the cluster size for performance */ | |
1167 | stat->blksize = osb->s_clustersize; | |
1168 | ||
1169 | bail: | |
1170 | mlog_exit(err); | |
1171 | ||
1172 | return err; | |
1173 | } | |
1174 | ||
d38eb8db TY |
1175 | int ocfs2_permission(struct inode *inode, int mask, struct nameidata *nd) |
1176 | { | |
1177 | int ret; | |
1178 | ||
1179 | mlog_entry_void(); | |
1180 | ||
e63aecb6 | 1181 | ret = ocfs2_inode_lock(inode, NULL, 0); |
d38eb8db | 1182 | if (ret) { |
a9f5f707 MF |
1183 | if (ret != -ENOENT) |
1184 | mlog_errno(ret); | |
d38eb8db TY |
1185 | goto out; |
1186 | } | |
1187 | ||
1188 | ret = generic_permission(inode, mask, NULL); | |
d38eb8db | 1189 | |
e63aecb6 | 1190 | ocfs2_inode_unlock(inode, 0); |
d38eb8db TY |
1191 | out: |
1192 | mlog_exit(ret); | |
1193 | return ret; | |
1194 | } | |
1195 | ||
b2580103 MF |
1196 | static int __ocfs2_write_remove_suid(struct inode *inode, |
1197 | struct buffer_head *bh) | |
ccd979bd MF |
1198 | { |
1199 | int ret; | |
1fabe148 | 1200 | handle_t *handle; |
ccd979bd MF |
1201 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
1202 | struct ocfs2_dinode *di; | |
1203 | ||
b0697053 | 1204 | mlog_entry("(Inode %llu, mode 0%o)\n", |
b2580103 | 1205 | (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode); |
ccd979bd | 1206 | |
65eff9cc | 1207 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); |
ccd979bd MF |
1208 | if (handle == NULL) { |
1209 | ret = -ENOMEM; | |
1210 | mlog_errno(ret); | |
1211 | goto out; | |
1212 | } | |
1213 | ||
ccd979bd MF |
1214 | ret = ocfs2_journal_access(handle, inode, bh, |
1215 | OCFS2_JOURNAL_ACCESS_WRITE); | |
1216 | if (ret < 0) { | |
1217 | mlog_errno(ret); | |
b2580103 | 1218 | goto out_trans; |
ccd979bd MF |
1219 | } |
1220 | ||
1221 | inode->i_mode &= ~S_ISUID; | |
1222 | if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP)) | |
1223 | inode->i_mode &= ~S_ISGID; | |
1224 | ||
1225 | di = (struct ocfs2_dinode *) bh->b_data; | |
1226 | di->i_mode = cpu_to_le16(inode->i_mode); | |
1227 | ||
1228 | ret = ocfs2_journal_dirty(handle, bh); | |
1229 | if (ret < 0) | |
1230 | mlog_errno(ret); | |
b2580103 | 1231 | |
ccd979bd | 1232 | out_trans: |
02dc1af4 | 1233 | ocfs2_commit_trans(osb, handle); |
ccd979bd MF |
1234 | out: |
1235 | mlog_exit(ret); | |
1236 | return ret; | |
1237 | } | |
1238 | ||
9517bac6 MF |
1239 | /* |
1240 | * Will look for holes and unwritten extents in the range starting at | |
1241 | * pos for count bytes (inclusive). | |
1242 | */ | |
1243 | static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos, | |
1244 | size_t count) | |
1245 | { | |
1246 | int ret = 0; | |
49cb8d2d | 1247 | unsigned int extent_flags; |
9517bac6 MF |
1248 | u32 cpos, clusters, extent_len, phys_cpos; |
1249 | struct super_block *sb = inode->i_sb; | |
1250 | ||
1251 | cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits; | |
1252 | clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos; | |
1253 | ||
1254 | while (clusters) { | |
49cb8d2d MF |
1255 | ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len, |
1256 | &extent_flags); | |
9517bac6 MF |
1257 | if (ret < 0) { |
1258 | mlog_errno(ret); | |
1259 | goto out; | |
1260 | } | |
1261 | ||
49cb8d2d | 1262 | if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) { |
9517bac6 MF |
1263 | ret = 1; |
1264 | break; | |
1265 | } | |
1266 | ||
1267 | if (extent_len > clusters) | |
1268 | extent_len = clusters; | |
1269 | ||
1270 | clusters -= extent_len; | |
1271 | cpos += extent_len; | |
1272 | } | |
1273 | out: | |
1274 | return ret; | |
1275 | } | |
1276 | ||
b2580103 MF |
1277 | static int ocfs2_write_remove_suid(struct inode *inode) |
1278 | { | |
1279 | int ret; | |
1280 | struct buffer_head *bh = NULL; | |
1281 | struct ocfs2_inode_info *oi = OCFS2_I(inode); | |
1282 | ||
1283 | ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), | |
1284 | oi->ip_blkno, &bh, OCFS2_BH_CACHED, inode); | |
1285 | if (ret < 0) { | |
1286 | mlog_errno(ret); | |
1287 | goto out; | |
1288 | } | |
1289 | ||
1290 | ret = __ocfs2_write_remove_suid(inode, bh); | |
1291 | out: | |
1292 | brelse(bh); | |
1293 | return ret; | |
1294 | } | |
1295 | ||
2ae99a60 MF |
1296 | /* |
1297 | * Allocate enough extents to cover the region starting at byte offset | |
1298 | * start for len bytes. Existing extents are skipped, any extents | |
1299 | * added are marked as "unwritten". | |
1300 | */ | |
1301 | static int ocfs2_allocate_unwritten_extents(struct inode *inode, | |
1302 | u64 start, u64 len) | |
1303 | { | |
1304 | int ret; | |
1305 | u32 cpos, phys_cpos, clusters, alloc_size; | |
1afc32b9 MF |
1306 | u64 end = start + len; |
1307 | struct buffer_head *di_bh = NULL; | |
1308 | ||
1309 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | |
1310 | ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), | |
1311 | OCFS2_I(inode)->ip_blkno, &di_bh, | |
1312 | OCFS2_BH_CACHED, inode); | |
1313 | if (ret) { | |
1314 | mlog_errno(ret); | |
1315 | goto out; | |
1316 | } | |
1317 | ||
1318 | /* | |
1319 | * Nothing to do if the requested reservation range | |
1320 | * fits within the inode. | |
1321 | */ | |
1322 | if (ocfs2_size_fits_inline_data(di_bh, end)) | |
1323 | goto out; | |
1324 | ||
1325 | ret = ocfs2_convert_inline_data_to_extents(inode, di_bh); | |
1326 | if (ret) { | |
1327 | mlog_errno(ret); | |
1328 | goto out; | |
1329 | } | |
1330 | } | |
2ae99a60 MF |
1331 | |
1332 | /* | |
1333 | * We consider both start and len to be inclusive. | |
1334 | */ | |
1335 | cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits; | |
1336 | clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len); | |
1337 | clusters -= cpos; | |
1338 | ||
1339 | while (clusters) { | |
1340 | ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, | |
1341 | &alloc_size, NULL); | |
1342 | if (ret) { | |
1343 | mlog_errno(ret); | |
1344 | goto out; | |
1345 | } | |
1346 | ||
1347 | /* | |
1348 | * Hole or existing extent len can be arbitrary, so | |
1349 | * cap it to our own allocation request. | |
1350 | */ | |
1351 | if (alloc_size > clusters) | |
1352 | alloc_size = clusters; | |
1353 | ||
1354 | if (phys_cpos) { | |
1355 | /* | |
1356 | * We already have an allocation at this | |
1357 | * region so we can safely skip it. | |
1358 | */ | |
1359 | goto next; | |
1360 | } | |
1361 | ||
1362 | ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1); | |
1363 | if (ret) { | |
1364 | if (ret != -ENOSPC) | |
1365 | mlog_errno(ret); | |
1366 | goto out; | |
1367 | } | |
1368 | ||
1369 | next: | |
1370 | cpos += alloc_size; | |
1371 | clusters -= alloc_size; | |
1372 | } | |
1373 | ||
1374 | ret = 0; | |
1375 | out: | |
1afc32b9 MF |
1376 | |
1377 | brelse(di_bh); | |
2ae99a60 MF |
1378 | return ret; |
1379 | } | |
1380 | ||
063c4561 MF |
1381 | static int __ocfs2_remove_inode_range(struct inode *inode, |
1382 | struct buffer_head *di_bh, | |
1383 | u32 cpos, u32 phys_cpos, u32 len, | |
1384 | struct ocfs2_cached_dealloc_ctxt *dealloc) | |
1385 | { | |
1386 | int ret; | |
1387 | u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos); | |
1388 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
1389 | struct inode *tl_inode = osb->osb_tl_inode; | |
1390 | handle_t *handle; | |
1391 | struct ocfs2_alloc_context *meta_ac = NULL; | |
1392 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
1393 | ||
1394 | ret = ocfs2_lock_allocators(inode, di, 0, 1, NULL, &meta_ac); | |
1395 | if (ret) { | |
1396 | mlog_errno(ret); | |
1397 | return ret; | |
1398 | } | |
1399 | ||
1400 | mutex_lock(&tl_inode->i_mutex); | |
1401 | ||
1402 | if (ocfs2_truncate_log_needs_flush(osb)) { | |
1403 | ret = __ocfs2_flush_truncate_log(osb); | |
1404 | if (ret < 0) { | |
1405 | mlog_errno(ret); | |
1406 | goto out; | |
1407 | } | |
1408 | } | |
1409 | ||
1410 | handle = ocfs2_start_trans(osb, OCFS2_REMOVE_EXTENT_CREDITS); | |
1411 | if (handle == NULL) { | |
1412 | ret = -ENOMEM; | |
1413 | mlog_errno(ret); | |
1414 | goto out; | |
1415 | } | |
1416 | ||
1417 | ret = ocfs2_journal_access(handle, inode, di_bh, | |
1418 | OCFS2_JOURNAL_ACCESS_WRITE); | |
1419 | if (ret) { | |
1420 | mlog_errno(ret); | |
1421 | goto out; | |
1422 | } | |
1423 | ||
1424 | ret = ocfs2_remove_extent(inode, di_bh, cpos, len, handle, meta_ac, | |
1425 | dealloc); | |
1426 | if (ret) { | |
1427 | mlog_errno(ret); | |
1428 | goto out_commit; | |
1429 | } | |
1430 | ||
1431 | OCFS2_I(inode)->ip_clusters -= len; | |
1432 | di->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters); | |
1433 | ||
1434 | ret = ocfs2_journal_dirty(handle, di_bh); | |
1435 | if (ret) { | |
1436 | mlog_errno(ret); | |
1437 | goto out_commit; | |
1438 | } | |
1439 | ||
1440 | ret = ocfs2_truncate_log_append(osb, handle, phys_blkno, len); | |
1441 | if (ret) | |
1442 | mlog_errno(ret); | |
1443 | ||
1444 | out_commit: | |
1445 | ocfs2_commit_trans(osb, handle); | |
1446 | out: | |
1447 | mutex_unlock(&tl_inode->i_mutex); | |
1448 | ||
1449 | if (meta_ac) | |
1450 | ocfs2_free_alloc_context(meta_ac); | |
1451 | ||
1452 | return ret; | |
1453 | } | |
1454 | ||
1455 | /* | |
1456 | * Truncate a byte range, avoiding pages within partial clusters. This | |
1457 | * preserves those pages for the zeroing code to write to. | |
1458 | */ | |
1459 | static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start, | |
1460 | u64 byte_len) | |
1461 | { | |
1462 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
1463 | loff_t start, end; | |
1464 | struct address_space *mapping = inode->i_mapping; | |
1465 | ||
1466 | start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start); | |
1467 | end = byte_start + byte_len; | |
1468 | end = end & ~(osb->s_clustersize - 1); | |
1469 | ||
1470 | if (start < end) { | |
1471 | unmap_mapping_range(mapping, start, end - start, 0); | |
1472 | truncate_inode_pages_range(mapping, start, end - 1); | |
1473 | } | |
1474 | } | |
1475 | ||
1476 | static int ocfs2_zero_partial_clusters(struct inode *inode, | |
1477 | u64 start, u64 len) | |
1478 | { | |
1479 | int ret = 0; | |
1480 | u64 tmpend, end = start + len; | |
1481 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
1482 | unsigned int csize = osb->s_clustersize; | |
1483 | handle_t *handle; | |
1484 | ||
1485 | /* | |
1486 | * The "start" and "end" values are NOT necessarily part of | |
1487 | * the range whose allocation is being deleted. Rather, this | |
1488 | * is what the user passed in with the request. We must zero | |
1489 | * partial clusters here. There's no need to worry about | |
1490 | * physical allocation - the zeroing code knows to skip holes. | |
1491 | */ | |
1492 | mlog(0, "byte start: %llu, end: %llu\n", | |
1493 | (unsigned long long)start, (unsigned long long)end); | |
1494 | ||
1495 | /* | |
1496 | * If both edges are on a cluster boundary then there's no | |
1497 | * zeroing required as the region is part of the allocation to | |
1498 | * be truncated. | |
1499 | */ | |
1500 | if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0) | |
1501 | goto out; | |
1502 | ||
1503 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); | |
1504 | if (handle == NULL) { | |
1505 | ret = -ENOMEM; | |
1506 | mlog_errno(ret); | |
1507 | goto out; | |
1508 | } | |
1509 | ||
1510 | /* | |
1511 | * We want to get the byte offset of the end of the 1st cluster. | |
1512 | */ | |
1513 | tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1)); | |
1514 | if (tmpend > end) | |
1515 | tmpend = end; | |
1516 | ||
1517 | mlog(0, "1st range: start: %llu, tmpend: %llu\n", | |
1518 | (unsigned long long)start, (unsigned long long)tmpend); | |
1519 | ||
1520 | ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend); | |
1521 | if (ret) | |
1522 | mlog_errno(ret); | |
1523 | ||
1524 | if (tmpend < end) { | |
1525 | /* | |
1526 | * This may make start and end equal, but the zeroing | |
1527 | * code will skip any work in that case so there's no | |
1528 | * need to catch it up here. | |
1529 | */ | |
1530 | start = end & ~(osb->s_clustersize - 1); | |
1531 | ||
1532 | mlog(0, "2nd range: start: %llu, end: %llu\n", | |
1533 | (unsigned long long)start, (unsigned long long)end); | |
1534 | ||
1535 | ret = ocfs2_zero_range_for_truncate(inode, handle, start, end); | |
1536 | if (ret) | |
1537 | mlog_errno(ret); | |
1538 | } | |
1539 | ||
1540 | ocfs2_commit_trans(osb, handle); | |
1541 | out: | |
1542 | return ret; | |
1543 | } | |
1544 | ||
1545 | static int ocfs2_remove_inode_range(struct inode *inode, | |
1546 | struct buffer_head *di_bh, u64 byte_start, | |
1547 | u64 byte_len) | |
1548 | { | |
1549 | int ret = 0; | |
1550 | u32 trunc_start, trunc_len, cpos, phys_cpos, alloc_size; | |
1551 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
1552 | struct ocfs2_cached_dealloc_ctxt dealloc; | |
b1967d0e | 1553 | struct address_space *mapping = inode->i_mapping; |
063c4561 MF |
1554 | |
1555 | ocfs2_init_dealloc_ctxt(&dealloc); | |
1556 | ||
1557 | if (byte_len == 0) | |
1558 | return 0; | |
1559 | ||
1afc32b9 MF |
1560 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
1561 | ret = ocfs2_truncate_inline(inode, di_bh, byte_start, | |
b1967d0e MF |
1562 | byte_start + byte_len, 0); |
1563 | if (ret) { | |
1afc32b9 | 1564 | mlog_errno(ret); |
b1967d0e MF |
1565 | goto out; |
1566 | } | |
1567 | /* | |
1568 | * There's no need to get fancy with the page cache | |
1569 | * truncate of an inline-data inode. We're talking | |
1570 | * about less than a page here, which will be cached | |
1571 | * in the dinode buffer anyway. | |
1572 | */ | |
1573 | unmap_mapping_range(mapping, 0, 0, 0); | |
1574 | truncate_inode_pages(mapping, 0); | |
1575 | goto out; | |
1afc32b9 MF |
1576 | } |
1577 | ||
063c4561 MF |
1578 | trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start); |
1579 | trunc_len = (byte_start + byte_len) >> osb->s_clustersize_bits; | |
1580 | if (trunc_len >= trunc_start) | |
1581 | trunc_len -= trunc_start; | |
1582 | else | |
1583 | trunc_len = 0; | |
1584 | ||
1585 | mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n", | |
1586 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | |
1587 | (unsigned long long)byte_start, | |
1588 | (unsigned long long)byte_len, trunc_start, trunc_len); | |
1589 | ||
1590 | ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len); | |
1591 | if (ret) { | |
1592 | mlog_errno(ret); | |
1593 | goto out; | |
1594 | } | |
1595 | ||
1596 | cpos = trunc_start; | |
1597 | while (trunc_len) { | |
1598 | ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, | |
1599 | &alloc_size, NULL); | |
1600 | if (ret) { | |
1601 | mlog_errno(ret); | |
1602 | goto out; | |
1603 | } | |
1604 | ||
1605 | if (alloc_size > trunc_len) | |
1606 | alloc_size = trunc_len; | |
1607 | ||
1608 | /* Only do work for non-holes */ | |
1609 | if (phys_cpos != 0) { | |
1610 | ret = __ocfs2_remove_inode_range(inode, di_bh, cpos, | |
1611 | phys_cpos, alloc_size, | |
1612 | &dealloc); | |
1613 | if (ret) { | |
1614 | mlog_errno(ret); | |
1615 | goto out; | |
1616 | } | |
1617 | } | |
1618 | ||
1619 | cpos += alloc_size; | |
1620 | trunc_len -= alloc_size; | |
1621 | } | |
1622 | ||
1623 | ocfs2_truncate_cluster_pages(inode, byte_start, byte_len); | |
1624 | ||
1625 | out: | |
1626 | ocfs2_schedule_truncate_log_flush(osb, 1); | |
1627 | ocfs2_run_deallocs(osb, &dealloc); | |
1628 | ||
1629 | return ret; | |
1630 | } | |
1631 | ||
b2580103 MF |
1632 | /* |
1633 | * Parts of this function taken from xfs_change_file_space() | |
1634 | */ | |
385820a3 MF |
1635 | static int __ocfs2_change_file_space(struct file *file, struct inode *inode, |
1636 | loff_t f_pos, unsigned int cmd, | |
1637 | struct ocfs2_space_resv *sr, | |
1638 | int change_size) | |
b2580103 MF |
1639 | { |
1640 | int ret; | |
1641 | s64 llen; | |
385820a3 | 1642 | loff_t size; |
b2580103 MF |
1643 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
1644 | struct buffer_head *di_bh = NULL; | |
1645 | handle_t *handle; | |
a00cce35 | 1646 | unsigned long long max_off = inode->i_sb->s_maxbytes; |
b2580103 | 1647 | |
b2580103 MF |
1648 | if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb)) |
1649 | return -EROFS; | |
1650 | ||
1651 | mutex_lock(&inode->i_mutex); | |
1652 | ||
1653 | /* | |
1654 | * This prevents concurrent writes on other nodes | |
1655 | */ | |
1656 | ret = ocfs2_rw_lock(inode, 1); | |
1657 | if (ret) { | |
1658 | mlog_errno(ret); | |
1659 | goto out; | |
1660 | } | |
1661 | ||
e63aecb6 | 1662 | ret = ocfs2_inode_lock(inode, &di_bh, 1); |
b2580103 MF |
1663 | if (ret) { |
1664 | mlog_errno(ret); | |
1665 | goto out_rw_unlock; | |
1666 | } | |
1667 | ||
1668 | if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) { | |
1669 | ret = -EPERM; | |
e63aecb6 | 1670 | goto out_inode_unlock; |
b2580103 MF |
1671 | } |
1672 | ||
1673 | switch (sr->l_whence) { | |
1674 | case 0: /*SEEK_SET*/ | |
1675 | break; | |
1676 | case 1: /*SEEK_CUR*/ | |
385820a3 | 1677 | sr->l_start += f_pos; |
b2580103 MF |
1678 | break; |
1679 | case 2: /*SEEK_END*/ | |
1680 | sr->l_start += i_size_read(inode); | |
1681 | break; | |
1682 | default: | |
1683 | ret = -EINVAL; | |
e63aecb6 | 1684 | goto out_inode_unlock; |
b2580103 MF |
1685 | } |
1686 | sr->l_whence = 0; | |
1687 | ||
1688 | llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len; | |
1689 | ||
1690 | if (sr->l_start < 0 | |
1691 | || sr->l_start > max_off | |
1692 | || (sr->l_start + llen) < 0 | |
1693 | || (sr->l_start + llen) > max_off) { | |
1694 | ret = -EINVAL; | |
e63aecb6 | 1695 | goto out_inode_unlock; |
b2580103 | 1696 | } |
385820a3 | 1697 | size = sr->l_start + sr->l_len; |
b2580103 MF |
1698 | |
1699 | if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) { | |
1700 | if (sr->l_len <= 0) { | |
1701 | ret = -EINVAL; | |
e63aecb6 | 1702 | goto out_inode_unlock; |
b2580103 MF |
1703 | } |
1704 | } | |
1705 | ||
385820a3 | 1706 | if (file && should_remove_suid(file->f_path.dentry)) { |
b2580103 MF |
1707 | ret = __ocfs2_write_remove_suid(inode, di_bh); |
1708 | if (ret) { | |
1709 | mlog_errno(ret); | |
e63aecb6 | 1710 | goto out_inode_unlock; |
b2580103 MF |
1711 | } |
1712 | } | |
1713 | ||
1714 | down_write(&OCFS2_I(inode)->ip_alloc_sem); | |
1715 | switch (cmd) { | |
1716 | case OCFS2_IOC_RESVSP: | |
1717 | case OCFS2_IOC_RESVSP64: | |
1718 | /* | |
1719 | * This takes unsigned offsets, but the signed ones we | |
1720 | * pass have been checked against overflow above. | |
1721 | */ | |
1722 | ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start, | |
1723 | sr->l_len); | |
1724 | break; | |
1725 | case OCFS2_IOC_UNRESVSP: | |
1726 | case OCFS2_IOC_UNRESVSP64: | |
1727 | ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start, | |
1728 | sr->l_len); | |
1729 | break; | |
1730 | default: | |
1731 | ret = -EINVAL; | |
1732 | } | |
1733 | up_write(&OCFS2_I(inode)->ip_alloc_sem); | |
1734 | if (ret) { | |
1735 | mlog_errno(ret); | |
e63aecb6 | 1736 | goto out_inode_unlock; |
b2580103 MF |
1737 | } |
1738 | ||
1739 | /* | |
1740 | * We update c/mtime for these changes | |
1741 | */ | |
1742 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); | |
1743 | if (IS_ERR(handle)) { | |
1744 | ret = PTR_ERR(handle); | |
1745 | mlog_errno(ret); | |
e63aecb6 | 1746 | goto out_inode_unlock; |
b2580103 MF |
1747 | } |
1748 | ||
385820a3 MF |
1749 | if (change_size && i_size_read(inode) < size) |
1750 | i_size_write(inode, size); | |
1751 | ||
b2580103 MF |
1752 | inode->i_ctime = inode->i_mtime = CURRENT_TIME; |
1753 | ret = ocfs2_mark_inode_dirty(handle, inode, di_bh); | |
1754 | if (ret < 0) | |
1755 | mlog_errno(ret); | |
1756 | ||
1757 | ocfs2_commit_trans(osb, handle); | |
1758 | ||
e63aecb6 | 1759 | out_inode_unlock: |
b2580103 | 1760 | brelse(di_bh); |
e63aecb6 | 1761 | ocfs2_inode_unlock(inode, 1); |
b2580103 MF |
1762 | out_rw_unlock: |
1763 | ocfs2_rw_unlock(inode, 1); | |
1764 | ||
1765 | mutex_unlock(&inode->i_mutex); | |
1766 | out: | |
1767 | return ret; | |
1768 | } | |
1769 | ||
385820a3 MF |
1770 | int ocfs2_change_file_space(struct file *file, unsigned int cmd, |
1771 | struct ocfs2_space_resv *sr) | |
1772 | { | |
1773 | struct inode *inode = file->f_path.dentry->d_inode; | |
1774 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);; | |
1775 | ||
1776 | if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) && | |
1777 | !ocfs2_writes_unwritten_extents(osb)) | |
1778 | return -ENOTTY; | |
1779 | else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) && | |
1780 | !ocfs2_sparse_alloc(osb)) | |
1781 | return -ENOTTY; | |
1782 | ||
1783 | if (!S_ISREG(inode->i_mode)) | |
1784 | return -EINVAL; | |
1785 | ||
1786 | if (!(file->f_mode & FMODE_WRITE)) | |
1787 | return -EBADF; | |
1788 | ||
1789 | return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0); | |
1790 | } | |
1791 | ||
1792 | static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset, | |
1793 | loff_t len) | |
1794 | { | |
1795 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
1796 | struct ocfs2_space_resv sr; | |
1797 | int change_size = 1; | |
1798 | ||
1799 | if (!ocfs2_writes_unwritten_extents(osb)) | |
1800 | return -EOPNOTSUPP; | |
1801 | ||
1802 | if (S_ISDIR(inode->i_mode)) | |
1803 | return -ENODEV; | |
1804 | ||
1805 | if (mode & FALLOC_FL_KEEP_SIZE) | |
1806 | change_size = 0; | |
1807 | ||
1808 | sr.l_whence = 0; | |
1809 | sr.l_start = (s64)offset; | |
1810 | sr.l_len = (s64)len; | |
1811 | ||
1812 | return __ocfs2_change_file_space(NULL, inode, offset, | |
1813 | OCFS2_IOC_RESVSP64, &sr, change_size); | |
1814 | } | |
1815 | ||
8659ac25 TY |
1816 | static int ocfs2_prepare_inode_for_write(struct dentry *dentry, |
1817 | loff_t *ppos, | |
1818 | size_t count, | |
9517bac6 MF |
1819 | int appending, |
1820 | int *direct_io) | |
ccd979bd | 1821 | { |
65ed39d6 | 1822 | int ret = 0, meta_level = 0; |
8659ac25 | 1823 | struct inode *inode = dentry->d_inode; |
65ed39d6 | 1824 | loff_t saved_pos, end; |
ccd979bd | 1825 | |
ccd979bd | 1826 | /* |
65ed39d6 MF |
1827 | * We start with a read level meta lock and only jump to an ex |
1828 | * if we need to make modifications here. | |
ccd979bd | 1829 | */ |
ccd979bd | 1830 | for(;;) { |
e63aecb6 | 1831 | ret = ocfs2_inode_lock(inode, NULL, meta_level); |
ccd979bd MF |
1832 | if (ret < 0) { |
1833 | meta_level = -1; | |
1834 | mlog_errno(ret); | |
1835 | goto out; | |
1836 | } | |
1837 | ||
1838 | /* Clear suid / sgid if necessary. We do this here | |
1839 | * instead of later in the write path because | |
1840 | * remove_suid() calls ->setattr without any hint that | |
1841 | * we may have already done our cluster locking. Since | |
1842 | * ocfs2_setattr() *must* take cluster locks to | |
1843 | * proceeed, this will lead us to recursively lock the | |
1844 | * inode. There's also the dinode i_size state which | |
1845 | * can be lost via setattr during extending writes (we | |
1846 | * set inode->i_size at the end of a write. */ | |
8659ac25 | 1847 | if (should_remove_suid(dentry)) { |
ccd979bd | 1848 | if (meta_level == 0) { |
e63aecb6 | 1849 | ocfs2_inode_unlock(inode, meta_level); |
ccd979bd MF |
1850 | meta_level = 1; |
1851 | continue; | |
1852 | } | |
1853 | ||
1854 | ret = ocfs2_write_remove_suid(inode); | |
1855 | if (ret < 0) { | |
1856 | mlog_errno(ret); | |
8659ac25 | 1857 | goto out_unlock; |
ccd979bd MF |
1858 | } |
1859 | } | |
1860 | ||
1861 | /* work on a copy of ppos until we're sure that we won't have | |
1862 | * to recalculate it due to relocking. */ | |
8659ac25 | 1863 | if (appending) { |
ccd979bd MF |
1864 | saved_pos = i_size_read(inode); |
1865 | mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos); | |
1866 | } else { | |
8659ac25 | 1867 | saved_pos = *ppos; |
ccd979bd | 1868 | } |
3a0782d0 | 1869 | |
65ed39d6 | 1870 | end = saved_pos + count; |
9517bac6 | 1871 | |
65ed39d6 MF |
1872 | /* |
1873 | * Skip the O_DIRECT checks if we don't need | |
1874 | * them. | |
1875 | */ | |
1876 | if (!direct_io || !(*direct_io)) | |
9517bac6 | 1877 | break; |
9517bac6 | 1878 | |
1afc32b9 MF |
1879 | /* |
1880 | * There's no sane way to do direct writes to an inode | |
1881 | * with inline data. | |
1882 | */ | |
1883 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | |
1884 | *direct_io = 0; | |
1885 | break; | |
1886 | } | |
1887 | ||
3a0782d0 | 1888 | /* |
65ed39d6 MF |
1889 | * Allowing concurrent direct writes means |
1890 | * i_size changes wouldn't be synchronized, so | |
1891 | * one node could wind up truncating another | |
1892 | * nodes writes. | |
3a0782d0 | 1893 | */ |
65ed39d6 MF |
1894 | if (end > i_size_read(inode)) { |
1895 | *direct_io = 0; | |
ccd979bd | 1896 | break; |
ccd979bd MF |
1897 | } |
1898 | ||
65ed39d6 MF |
1899 | /* |
1900 | * We don't fill holes during direct io, so | |
1901 | * check for them here. If any are found, the | |
1902 | * caller will have to retake some cluster | |
1903 | * locks and initiate the io as buffered. | |
1904 | */ | |
1905 | ret = ocfs2_check_range_for_holes(inode, saved_pos, count); | |
1906 | if (ret == 1) { | |
1907 | *direct_io = 0; | |
1908 | ret = 0; | |
1909 | } else if (ret < 0) | |
1910 | mlog_errno(ret); | |
ccd979bd MF |
1911 | break; |
1912 | } | |
1913 | ||
8659ac25 TY |
1914 | if (appending) |
1915 | *ppos = saved_pos; | |
1916 | ||
1917 | out_unlock: | |
e63aecb6 | 1918 | ocfs2_inode_unlock(inode, meta_level); |
8659ac25 TY |
1919 | |
1920 | out: | |
1921 | return ret; | |
1922 | } | |
1923 | ||
1924 | static ssize_t ocfs2_file_aio_write(struct kiocb *iocb, | |
1925 | const struct iovec *iov, | |
1926 | unsigned long nr_segs, | |
1927 | loff_t pos) | |
1928 | { | |
9517bac6 | 1929 | int ret, direct_io, appending, rw_level, have_alloc_sem = 0; |
b6af1bcd | 1930 | int can_do_direct; |
9517bac6 MF |
1931 | ssize_t written = 0; |
1932 | size_t ocount; /* original count */ | |
1933 | size_t count; /* after file limit checks */ | |
9ea2d32f MF |
1934 | loff_t old_size, *ppos = &iocb->ki_pos; |
1935 | u32 old_clusters; | |
9517bac6 MF |
1936 | struct file *file = iocb->ki_filp; |
1937 | struct inode *inode = file->f_path.dentry->d_inode; | |
9ea2d32f | 1938 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
9517bac6 MF |
1939 | |
1940 | mlog_entry("(0x%p, %u, '%.*s')\n", file, | |
8659ac25 | 1941 | (unsigned int)nr_segs, |
9517bac6 MF |
1942 | file->f_path.dentry->d_name.len, |
1943 | file->f_path.dentry->d_name.name); | |
8659ac25 | 1944 | |
8659ac25 TY |
1945 | if (iocb->ki_left == 0) |
1946 | return 0; | |
1947 | ||
9517bac6 MF |
1948 | vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE); |
1949 | ||
1950 | appending = file->f_flags & O_APPEND ? 1 : 0; | |
1951 | direct_io = file->f_flags & O_DIRECT ? 1 : 0; | |
1952 | ||
8659ac25 | 1953 | mutex_lock(&inode->i_mutex); |
9517bac6 MF |
1954 | |
1955 | relock: | |
8659ac25 | 1956 | /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */ |
9517bac6 | 1957 | if (direct_io) { |
8659ac25 | 1958 | down_read(&inode->i_alloc_sem); |
9517bac6 | 1959 | have_alloc_sem = 1; |
8659ac25 TY |
1960 | } |
1961 | ||
1962 | /* concurrent O_DIRECT writes are allowed */ | |
9517bac6 | 1963 | rw_level = !direct_io; |
8659ac25 TY |
1964 | ret = ocfs2_rw_lock(inode, rw_level); |
1965 | if (ret < 0) { | |
8659ac25 | 1966 | mlog_errno(ret); |
9517bac6 | 1967 | goto out_sems; |
8659ac25 TY |
1968 | } |
1969 | ||
9517bac6 MF |
1970 | can_do_direct = direct_io; |
1971 | ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos, | |
1972 | iocb->ki_left, appending, | |
1973 | &can_do_direct); | |
8659ac25 TY |
1974 | if (ret < 0) { |
1975 | mlog_errno(ret); | |
1976 | goto out; | |
1977 | } | |
ccd979bd | 1978 | |
9517bac6 MF |
1979 | /* |
1980 | * We can't complete the direct I/O as requested, fall back to | |
1981 | * buffered I/O. | |
1982 | */ | |
1983 | if (direct_io && !can_do_direct) { | |
1984 | ocfs2_rw_unlock(inode, rw_level); | |
1985 | up_read(&inode->i_alloc_sem); | |
1986 | ||
1987 | have_alloc_sem = 0; | |
1988 | rw_level = -1; | |
1989 | ||
1990 | direct_io = 0; | |
9517bac6 MF |
1991 | goto relock; |
1992 | } | |
1993 | ||
9ea2d32f MF |
1994 | /* |
1995 | * To later detect whether a journal commit for sync writes is | |
1996 | * necessary, we sample i_size, and cluster count here. | |
1997 | */ | |
1998 | old_size = i_size_read(inode); | |
1999 | old_clusters = OCFS2_I(inode)->ip_clusters; | |
2000 | ||
ccd979bd | 2001 | /* communicate with ocfs2_dio_end_io */ |
7cdfc3a1 | 2002 | ocfs2_iocb_set_rw_locked(iocb, rw_level); |
ccd979bd | 2003 | |
9517bac6 | 2004 | if (direct_io) { |
b6af1bcd NP |
2005 | ret = generic_segment_checks(iov, &nr_segs, &ocount, |
2006 | VERIFY_READ); | |
2007 | if (ret) | |
2008 | goto out_dio; | |
2009 | ||
2010 | ret = generic_write_checks(file, ppos, &count, | |
2011 | S_ISBLK(inode->i_mode)); | |
2012 | if (ret) | |
2013 | goto out_dio; | |
2014 | ||
9517bac6 MF |
2015 | written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos, |
2016 | ppos, count, ocount); | |
2017 | if (written < 0) { | |
2018 | ret = written; | |
2019 | goto out_dio; | |
2020 | } | |
2021 | } else { | |
b6af1bcd NP |
2022 | written = generic_file_aio_write_nolock(iocb, iov, nr_segs, |
2023 | *ppos); | |
9517bac6 | 2024 | } |
ccd979bd | 2025 | |
9517bac6 | 2026 | out_dio: |
ccd979bd | 2027 | /* buffered aio wouldn't have proper lock coverage today */ |
9517bac6 | 2028 | BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT)); |
ccd979bd | 2029 | |
9ea2d32f MF |
2030 | if ((file->f_flags & O_SYNC && !direct_io) || IS_SYNC(inode)) { |
2031 | /* | |
2032 | * The generic write paths have handled getting data | |
2033 | * to disk, but since we don't make use of the dirty | |
2034 | * inode list, a manual journal commit is necessary | |
2035 | * here. | |
2036 | */ | |
2037 | if (old_size != i_size_read(inode) || | |
2038 | old_clusters != OCFS2_I(inode)->ip_clusters) { | |
2039 | ret = journal_force_commit(osb->journal->j_journal); | |
2040 | if (ret < 0) | |
2041 | written = ret; | |
2042 | } | |
2043 | } | |
2044 | ||
ccd979bd MF |
2045 | /* |
2046 | * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io | |
2047 | * function pointer which is called when o_direct io completes so that | |
2048 | * it can unlock our rw lock. (it's the clustered equivalent of | |
2049 | * i_alloc_sem; protects truncate from racing with pending ios). | |
2050 | * Unfortunately there are error cases which call end_io and others | |
2051 | * that don't. so we don't have to unlock the rw_lock if either an | |
2052 | * async dio is going to do it in the future or an end_io after an | |
2053 | * error has already done it. | |
2054 | */ | |
2055 | if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) { | |
2056 | rw_level = -1; | |
2057 | have_alloc_sem = 0; | |
2058 | } | |
2059 | ||
2060 | out: | |
9517bac6 MF |
2061 | if (rw_level != -1) |
2062 | ocfs2_rw_unlock(inode, rw_level); | |
2063 | ||
2064 | out_sems: | |
ccd979bd MF |
2065 | if (have_alloc_sem) |
2066 | up_read(&inode->i_alloc_sem); | |
9517bac6 | 2067 | |
1b1dcc1b | 2068 | mutex_unlock(&inode->i_mutex); |
ccd979bd MF |
2069 | |
2070 | mlog_exit(ret); | |
9517bac6 | 2071 | return written ? written : ret; |
ccd979bd MF |
2072 | } |
2073 | ||
8659ac25 TY |
2074 | static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe, |
2075 | struct file *out, | |
2076 | loff_t *ppos, | |
2077 | size_t len, | |
2078 | unsigned int flags) | |
2079 | { | |
2080 | int ret; | |
d28c9174 | 2081 | struct inode *inode = out->f_path.dentry->d_inode; |
8659ac25 TY |
2082 | |
2083 | mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe, | |
2084 | (unsigned int)len, | |
d28c9174 JS |
2085 | out->f_path.dentry->d_name.len, |
2086 | out->f_path.dentry->d_name.name); | |
8659ac25 TY |
2087 | |
2088 | inode_double_lock(inode, pipe->inode); | |
2089 | ||
2090 | ret = ocfs2_rw_lock(inode, 1); | |
2091 | if (ret < 0) { | |
2092 | mlog_errno(ret); | |
2093 | goto out; | |
2094 | } | |
2095 | ||
9517bac6 MF |
2096 | ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, ppos, len, 0, |
2097 | NULL); | |
8659ac25 TY |
2098 | if (ret < 0) { |
2099 | mlog_errno(ret); | |
2100 | goto out_unlock; | |
2101 | } | |
2102 | ||
b6af1bcd | 2103 | ret = generic_file_splice_write_nolock(pipe, out, ppos, len, flags); |
8659ac25 TY |
2104 | |
2105 | out_unlock: | |
2106 | ocfs2_rw_unlock(inode, 1); | |
2107 | out: | |
2108 | inode_double_unlock(inode, pipe->inode); | |
2109 | ||
2110 | mlog_exit(ret); | |
2111 | return ret; | |
2112 | } | |
2113 | ||
2114 | static ssize_t ocfs2_file_splice_read(struct file *in, | |
2115 | loff_t *ppos, | |
2116 | struct pipe_inode_info *pipe, | |
2117 | size_t len, | |
2118 | unsigned int flags) | |
2119 | { | |
2120 | int ret = 0; | |
d28c9174 | 2121 | struct inode *inode = in->f_path.dentry->d_inode; |
8659ac25 TY |
2122 | |
2123 | mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe, | |
2124 | (unsigned int)len, | |
d28c9174 JS |
2125 | in->f_path.dentry->d_name.len, |
2126 | in->f_path.dentry->d_name.name); | |
8659ac25 TY |
2127 | |
2128 | /* | |
2129 | * See the comment in ocfs2_file_aio_read() | |
2130 | */ | |
e63aecb6 | 2131 | ret = ocfs2_inode_lock(inode, NULL, 0); |
8659ac25 TY |
2132 | if (ret < 0) { |
2133 | mlog_errno(ret); | |
2134 | goto bail; | |
2135 | } | |
e63aecb6 | 2136 | ocfs2_inode_unlock(inode, 0); |
8659ac25 TY |
2137 | |
2138 | ret = generic_file_splice_read(in, ppos, pipe, len, flags); | |
2139 | ||
2140 | bail: | |
2141 | mlog_exit(ret); | |
2142 | return ret; | |
2143 | } | |
2144 | ||
ccd979bd | 2145 | static ssize_t ocfs2_file_aio_read(struct kiocb *iocb, |
027445c3 BP |
2146 | const struct iovec *iov, |
2147 | unsigned long nr_segs, | |
ccd979bd MF |
2148 | loff_t pos) |
2149 | { | |
25899dee | 2150 | int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0; |
ccd979bd | 2151 | struct file *filp = iocb->ki_filp; |
d28c9174 | 2152 | struct inode *inode = filp->f_path.dentry->d_inode; |
ccd979bd | 2153 | |
027445c3 BP |
2154 | mlog_entry("(0x%p, %u, '%.*s')\n", filp, |
2155 | (unsigned int)nr_segs, | |
d28c9174 JS |
2156 | filp->f_path.dentry->d_name.len, |
2157 | filp->f_path.dentry->d_name.name); | |
ccd979bd MF |
2158 | |
2159 | if (!inode) { | |
2160 | ret = -EINVAL; | |
2161 | mlog_errno(ret); | |
2162 | goto bail; | |
2163 | } | |
2164 | ||
ccd979bd MF |
2165 | /* |
2166 | * buffered reads protect themselves in ->readpage(). O_DIRECT reads | |
2167 | * need locks to protect pending reads from racing with truncate. | |
2168 | */ | |
2169 | if (filp->f_flags & O_DIRECT) { | |
2170 | down_read(&inode->i_alloc_sem); | |
2171 | have_alloc_sem = 1; | |
2172 | ||
2173 | ret = ocfs2_rw_lock(inode, 0); | |
2174 | if (ret < 0) { | |
2175 | mlog_errno(ret); | |
2176 | goto bail; | |
2177 | } | |
2178 | rw_level = 0; | |
2179 | /* communicate with ocfs2_dio_end_io */ | |
7cdfc3a1 | 2180 | ocfs2_iocb_set_rw_locked(iocb, rw_level); |
ccd979bd MF |
2181 | } |
2182 | ||
c4374f8a MF |
2183 | /* |
2184 | * We're fine letting folks race truncates and extending | |
2185 | * writes with read across the cluster, just like they can | |
2186 | * locally. Hence no rw_lock during read. | |
2187 | * | |
2188 | * Take and drop the meta data lock to update inode fields | |
2189 | * like i_size. This allows the checks down below | |
2190 | * generic_file_aio_read() a chance of actually working. | |
2191 | */ | |
e63aecb6 | 2192 | ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level); |
c4374f8a MF |
2193 | if (ret < 0) { |
2194 | mlog_errno(ret); | |
2195 | goto bail; | |
2196 | } | |
e63aecb6 | 2197 | ocfs2_inode_unlock(inode, lock_level); |
c4374f8a | 2198 | |
027445c3 | 2199 | ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos); |
ccd979bd MF |
2200 | if (ret == -EINVAL) |
2201 | mlog(ML_ERROR, "generic_file_aio_read returned -EINVAL\n"); | |
2202 | ||
2203 | /* buffered aio wouldn't have proper lock coverage today */ | |
2204 | BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT)); | |
2205 | ||
2206 | /* see ocfs2_file_aio_write */ | |
2207 | if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) { | |
2208 | rw_level = -1; | |
2209 | have_alloc_sem = 0; | |
2210 | } | |
2211 | ||
2212 | bail: | |
2213 | if (have_alloc_sem) | |
2214 | up_read(&inode->i_alloc_sem); | |
2215 | if (rw_level != -1) | |
2216 | ocfs2_rw_unlock(inode, rw_level); | |
2217 | mlog_exit(ret); | |
2218 | ||
2219 | return ret; | |
2220 | } | |
2221 | ||
92e1d5be | 2222 | const struct inode_operations ocfs2_file_iops = { |
ccd979bd MF |
2223 | .setattr = ocfs2_setattr, |
2224 | .getattr = ocfs2_getattr, | |
d38eb8db | 2225 | .permission = ocfs2_permission, |
385820a3 | 2226 | .fallocate = ocfs2_fallocate, |
ccd979bd MF |
2227 | }; |
2228 | ||
92e1d5be | 2229 | const struct inode_operations ocfs2_special_file_iops = { |
ccd979bd MF |
2230 | .setattr = ocfs2_setattr, |
2231 | .getattr = ocfs2_getattr, | |
d38eb8db | 2232 | .permission = ocfs2_permission, |
ccd979bd MF |
2233 | }; |
2234 | ||
4b6f5d20 | 2235 | const struct file_operations ocfs2_fops = { |
32c3c0e2 | 2236 | .llseek = generic_file_llseek, |
ccd979bd MF |
2237 | .read = do_sync_read, |
2238 | .write = do_sync_write, | |
ccd979bd MF |
2239 | .mmap = ocfs2_mmap, |
2240 | .fsync = ocfs2_sync_file, | |
2241 | .release = ocfs2_file_release, | |
2242 | .open = ocfs2_file_open, | |
2243 | .aio_read = ocfs2_file_aio_read, | |
2244 | .aio_write = ocfs2_file_aio_write, | |
ca4d147e | 2245 | .ioctl = ocfs2_ioctl, |
586d232b MF |
2246 | #ifdef CONFIG_COMPAT |
2247 | .compat_ioctl = ocfs2_compat_ioctl, | |
2248 | #endif | |
53fc622b | 2249 | .flock = ocfs2_flock, |
8659ac25 TY |
2250 | .splice_read = ocfs2_file_splice_read, |
2251 | .splice_write = ocfs2_file_splice_write, | |
ccd979bd MF |
2252 | }; |
2253 | ||
4b6f5d20 | 2254 | const struct file_operations ocfs2_dops = { |
32c3c0e2 | 2255 | .llseek = generic_file_llseek, |
ccd979bd MF |
2256 | .read = generic_read_dir, |
2257 | .readdir = ocfs2_readdir, | |
2258 | .fsync = ocfs2_sync_file, | |
53fc622b MF |
2259 | .release = ocfs2_dir_release, |
2260 | .open = ocfs2_dir_open, | |
ca4d147e | 2261 | .ioctl = ocfs2_ioctl, |
586d232b MF |
2262 | #ifdef CONFIG_COMPAT |
2263 | .compat_ioctl = ocfs2_compat_ioctl, | |
2264 | #endif | |
53fc622b | 2265 | .flock = ocfs2_flock, |
ccd979bd | 2266 | }; |