Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/fs/ceph/file.c
29265 views
1
// SPDX-License-Identifier: GPL-2.0
2
#include <linux/ceph/ceph_debug.h>
3
#include <linux/ceph/striper.h>
4
5
#include <linux/module.h>
6
#include <linux/sched.h>
7
#include <linux/slab.h>
8
#include <linux/file.h>
9
#include <linux/mount.h>
10
#include <linux/namei.h>
11
#include <linux/writeback.h>
12
#include <linux/falloc.h>
13
#include <linux/iversion.h>
14
#include <linux/ktime.h>
15
#include <linux/splice.h>
16
17
#include "super.h"
18
#include "mds_client.h"
19
#include "cache.h"
20
#include "io.h"
21
#include "metric.h"
22
23
static __le32 ceph_flags_sys2wire(struct ceph_mds_client *mdsc, u32 flags)
24
{
25
struct ceph_client *cl = mdsc->fsc->client;
26
u32 wire_flags = 0;
27
28
switch (flags & O_ACCMODE) {
29
case O_RDONLY:
30
wire_flags |= CEPH_O_RDONLY;
31
break;
32
case O_WRONLY:
33
wire_flags |= CEPH_O_WRONLY;
34
break;
35
case O_RDWR:
36
wire_flags |= CEPH_O_RDWR;
37
break;
38
}
39
40
flags &= ~O_ACCMODE;
41
42
#define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
43
44
ceph_sys2wire(O_CREAT);
45
ceph_sys2wire(O_EXCL);
46
ceph_sys2wire(O_TRUNC);
47
ceph_sys2wire(O_DIRECTORY);
48
ceph_sys2wire(O_NOFOLLOW);
49
50
#undef ceph_sys2wire
51
52
if (flags)
53
doutc(cl, "unused open flags: %x\n", flags);
54
55
return cpu_to_le32(wire_flags);
56
}
57
58
/*
59
* Ceph file operations
60
*
61
* Implement basic open/close functionality, and implement
62
* read/write.
63
*
64
* We implement three modes of file I/O:
65
* - buffered uses the generic_file_aio_{read,write} helpers
66
*
67
* - synchronous is used when there is multi-client read/write
68
* sharing, avoids the page cache, and synchronously waits for an
69
* ack from the OSD.
70
*
71
* - direct io takes the variant of the sync path that references
72
* user pages directly.
73
*
74
* fsync() flushes and waits on dirty pages, but just queues metadata
75
* for writeback: since the MDS can recover size and mtime there is no
76
* need to wait for MDS acknowledgement.
77
*/
78
79
/*
80
* How many pages to get in one call to iov_iter_get_pages(). This
81
* determines the size of the on-stack array used as a buffer.
82
*/
83
#define ITER_GET_BVECS_PAGES 64
84
85
static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
86
struct bio_vec *bvecs)
87
{
88
size_t size = 0;
89
int bvec_idx = 0;
90
91
if (maxsize > iov_iter_count(iter))
92
maxsize = iov_iter_count(iter);
93
94
while (size < maxsize) {
95
struct page *pages[ITER_GET_BVECS_PAGES];
96
ssize_t bytes;
97
size_t start;
98
int idx = 0;
99
100
bytes = iov_iter_get_pages2(iter, pages, maxsize - size,
101
ITER_GET_BVECS_PAGES, &start);
102
if (bytes < 0)
103
return size ?: bytes;
104
105
size += bytes;
106
107
for ( ; bytes; idx++, bvec_idx++) {
108
int len = min_t(int, bytes, PAGE_SIZE - start);
109
110
bvec_set_page(&bvecs[bvec_idx], pages[idx], len, start);
111
bytes -= len;
112
start = 0;
113
}
114
}
115
116
return size;
117
}
118
119
/*
120
* iov_iter_get_pages() only considers one iov_iter segment, no matter
121
* what maxsize or maxpages are given. For ITER_BVEC that is a single
122
* page.
123
*
124
* Attempt to get up to @maxsize bytes worth of pages from @iter.
125
* Return the number of bytes in the created bio_vec array, or an error.
126
*/
127
static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
128
struct bio_vec **bvecs, int *num_bvecs)
129
{
130
struct bio_vec *bv;
131
size_t orig_count = iov_iter_count(iter);
132
ssize_t bytes;
133
int npages;
134
135
iov_iter_truncate(iter, maxsize);
136
npages = iov_iter_npages(iter, INT_MAX);
137
iov_iter_reexpand(iter, orig_count);
138
139
/*
140
* __iter_get_bvecs() may populate only part of the array -- zero it
141
* out.
142
*/
143
bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
144
if (!bv)
145
return -ENOMEM;
146
147
bytes = __iter_get_bvecs(iter, maxsize, bv);
148
if (bytes < 0) {
149
/*
150
* No pages were pinned -- just free the array.
151
*/
152
kvfree(bv);
153
return bytes;
154
}
155
156
*bvecs = bv;
157
*num_bvecs = npages;
158
return bytes;
159
}
160
161
static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
162
{
163
int i;
164
165
for (i = 0; i < num_bvecs; i++) {
166
if (bvecs[i].bv_page) {
167
if (should_dirty)
168
set_page_dirty_lock(bvecs[i].bv_page);
169
put_page(bvecs[i].bv_page);
170
}
171
}
172
kvfree(bvecs);
173
}
174
175
/*
176
* Prepare an open request. Preallocate ceph_cap to avoid an
177
* inopportune ENOMEM later.
178
*/
179
static struct ceph_mds_request *
180
prepare_open_request(struct super_block *sb, int flags, int create_mode)
181
{
182
struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(sb);
183
struct ceph_mds_request *req;
184
int want_auth = USE_ANY_MDS;
185
int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
186
187
if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
188
want_auth = USE_AUTH_MDS;
189
190
req = ceph_mdsc_create_request(mdsc, op, want_auth);
191
if (IS_ERR(req))
192
goto out;
193
req->r_fmode = ceph_flags_to_mode(flags);
194
req->r_args.open.flags = ceph_flags_sys2wire(mdsc, flags);
195
req->r_args.open.mode = cpu_to_le32(create_mode);
196
out:
197
return req;
198
}
199
200
static int ceph_init_file_info(struct inode *inode, struct file *file,
201
int fmode, bool isdir)
202
{
203
struct ceph_inode_info *ci = ceph_inode(inode);
204
struct ceph_mount_options *opt =
205
ceph_inode_to_fs_client(&ci->netfs.inode)->mount_options;
206
struct ceph_client *cl = ceph_inode_to_client(inode);
207
struct ceph_file_info *fi;
208
int ret;
209
210
doutc(cl, "%p %llx.%llx %p 0%o (%s)\n", inode, ceph_vinop(inode),
211
file, inode->i_mode, isdir ? "dir" : "regular");
212
BUG_ON(inode->i_fop->release != ceph_release);
213
214
if (isdir) {
215
struct ceph_dir_file_info *dfi =
216
kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
217
if (!dfi)
218
return -ENOMEM;
219
220
file->private_data = dfi;
221
fi = &dfi->file_info;
222
dfi->next_offset = 2;
223
dfi->readdir_cache_idx = -1;
224
} else {
225
fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
226
if (!fi)
227
return -ENOMEM;
228
229
if (opt->flags & CEPH_MOUNT_OPT_NOPAGECACHE)
230
fi->flags |= CEPH_F_SYNC;
231
232
file->private_data = fi;
233
}
234
235
ceph_get_fmode(ci, fmode, 1);
236
fi->fmode = fmode;
237
238
spin_lock_init(&fi->rw_contexts_lock);
239
INIT_LIST_HEAD(&fi->rw_contexts);
240
fi->filp_gen = READ_ONCE(ceph_inode_to_fs_client(inode)->filp_gen);
241
242
if ((file->f_mode & FMODE_WRITE) && ceph_has_inline_data(ci)) {
243
ret = ceph_uninline_data(file);
244
if (ret < 0)
245
goto error;
246
}
247
248
return 0;
249
250
error:
251
ceph_fscache_unuse_cookie(inode, file->f_mode & FMODE_WRITE);
252
ceph_put_fmode(ci, fi->fmode, 1);
253
kmem_cache_free(ceph_file_cachep, fi);
254
/* wake up anyone waiting for caps on this inode */
255
wake_up_all(&ci->i_cap_wq);
256
return ret;
257
}
258
259
/*
260
* initialize private struct file data.
261
* if we fail, clean up by dropping fmode reference on the ceph_inode
262
*/
263
static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
264
{
265
struct ceph_client *cl = ceph_inode_to_client(inode);
266
int ret = 0;
267
268
switch (inode->i_mode & S_IFMT) {
269
case S_IFREG:
270
ceph_fscache_use_cookie(inode, file->f_mode & FMODE_WRITE);
271
fallthrough;
272
case S_IFDIR:
273
ret = ceph_init_file_info(inode, file, fmode,
274
S_ISDIR(inode->i_mode));
275
break;
276
277
case S_IFLNK:
278
doutc(cl, "%p %llx.%llx %p 0%o (symlink)\n", inode,
279
ceph_vinop(inode), file, inode->i_mode);
280
break;
281
282
default:
283
doutc(cl, "%p %llx.%llx %p 0%o (special)\n", inode,
284
ceph_vinop(inode), file, inode->i_mode);
285
/*
286
* we need to drop the open ref now, since we don't
287
* have .release set to ceph_release.
288
*/
289
BUG_ON(inode->i_fop->release == ceph_release);
290
291
/* call the proper open fop */
292
ret = inode->i_fop->open(inode, file);
293
}
294
return ret;
295
}
296
297
/*
298
* try renew caps after session gets killed.
299
*/
300
int ceph_renew_caps(struct inode *inode, int fmode)
301
{
302
struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
303
struct ceph_client *cl = mdsc->fsc->client;
304
struct ceph_inode_info *ci = ceph_inode(inode);
305
struct ceph_mds_request *req;
306
int err, flags, wanted;
307
308
spin_lock(&ci->i_ceph_lock);
309
__ceph_touch_fmode(ci, mdsc, fmode);
310
wanted = __ceph_caps_file_wanted(ci);
311
if (__ceph_is_any_real_caps(ci) &&
312
(!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
313
int issued = __ceph_caps_issued(ci, NULL);
314
spin_unlock(&ci->i_ceph_lock);
315
doutc(cl, "%p %llx.%llx want %s issued %s updating mds_wanted\n",
316
inode, ceph_vinop(inode), ceph_cap_string(wanted),
317
ceph_cap_string(issued));
318
ceph_check_caps(ci, 0);
319
return 0;
320
}
321
spin_unlock(&ci->i_ceph_lock);
322
323
flags = 0;
324
if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
325
flags = O_RDWR;
326
else if (wanted & CEPH_CAP_FILE_RD)
327
flags = O_RDONLY;
328
else if (wanted & CEPH_CAP_FILE_WR)
329
flags = O_WRONLY;
330
#ifdef O_LAZY
331
if (wanted & CEPH_CAP_FILE_LAZYIO)
332
flags |= O_LAZY;
333
#endif
334
335
req = prepare_open_request(inode->i_sb, flags, 0);
336
if (IS_ERR(req)) {
337
err = PTR_ERR(req);
338
goto out;
339
}
340
341
req->r_inode = inode;
342
ihold(inode);
343
req->r_num_caps = 1;
344
345
err = ceph_mdsc_do_request(mdsc, NULL, req);
346
ceph_mdsc_put_request(req);
347
out:
348
doutc(cl, "%p %llx.%llx open result=%d\n", inode, ceph_vinop(inode),
349
err);
350
return err < 0 ? err : 0;
351
}
352
353
/*
354
* If we already have the requisite capabilities, we can satisfy
355
* the open request locally (no need to request new caps from the
356
* MDS). We do, however, need to inform the MDS (asynchronously)
357
* if our wanted caps set expands.
358
*/
359
int ceph_open(struct inode *inode, struct file *file)
360
{
361
struct ceph_inode_info *ci = ceph_inode(inode);
362
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(inode->i_sb);
363
struct ceph_client *cl = fsc->client;
364
struct ceph_mds_client *mdsc = fsc->mdsc;
365
struct ceph_mds_request *req;
366
struct ceph_file_info *fi = file->private_data;
367
int err;
368
int flags, fmode, wanted;
369
struct dentry *dentry;
370
char *path;
371
bool do_sync = false;
372
int mask = MAY_READ;
373
374
if (fi) {
375
doutc(cl, "file %p is already opened\n", file);
376
return 0;
377
}
378
379
/* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
380
flags = file->f_flags & ~(O_CREAT|O_EXCL);
381
if (S_ISDIR(inode->i_mode)) {
382
flags = O_DIRECTORY; /* mds likes to know */
383
} else if (S_ISREG(inode->i_mode)) {
384
err = fscrypt_file_open(inode, file);
385
if (err)
386
return err;
387
}
388
389
doutc(cl, "%p %llx.%llx file %p flags %d (%d)\n", inode,
390
ceph_vinop(inode), file, flags, file->f_flags);
391
fmode = ceph_flags_to_mode(flags);
392
wanted = ceph_caps_for_mode(fmode);
393
394
if (fmode & CEPH_FILE_MODE_WR)
395
mask |= MAY_WRITE;
396
dentry = d_find_alias(inode);
397
if (!dentry) {
398
do_sync = true;
399
} else {
400
struct ceph_path_info path_info;
401
path = ceph_mdsc_build_path(mdsc, dentry, &path_info, 0);
402
if (IS_ERR(path)) {
403
do_sync = true;
404
err = 0;
405
} else {
406
err = ceph_mds_check_access(mdsc, path, mask);
407
}
408
ceph_mdsc_free_path_info(&path_info);
409
dput(dentry);
410
411
/* For none EACCES cases will let the MDS do the mds auth check */
412
if (err == -EACCES) {
413
return err;
414
} else if (err < 0) {
415
do_sync = true;
416
err = 0;
417
}
418
}
419
420
/* snapped files are read-only */
421
if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
422
return -EROFS;
423
424
/* trivially open snapdir */
425
if (ceph_snap(inode) == CEPH_SNAPDIR) {
426
return ceph_init_file(inode, file, fmode);
427
}
428
429
/*
430
* No need to block if we have caps on the auth MDS (for
431
* write) or any MDS (for read). Update wanted set
432
* asynchronously.
433
*/
434
spin_lock(&ci->i_ceph_lock);
435
if (!do_sync && __ceph_is_any_real_caps(ci) &&
436
(((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
437
int mds_wanted = __ceph_caps_mds_wanted(ci, true);
438
int issued = __ceph_caps_issued(ci, NULL);
439
440
doutc(cl, "open %p fmode %d want %s issued %s using existing\n",
441
inode, fmode, ceph_cap_string(wanted),
442
ceph_cap_string(issued));
443
__ceph_touch_fmode(ci, mdsc, fmode);
444
spin_unlock(&ci->i_ceph_lock);
445
446
/* adjust wanted? */
447
if ((issued & wanted) != wanted &&
448
(mds_wanted & wanted) != wanted &&
449
ceph_snap(inode) != CEPH_SNAPDIR)
450
ceph_check_caps(ci, 0);
451
452
return ceph_init_file(inode, file, fmode);
453
} else if (!do_sync && ceph_snap(inode) != CEPH_NOSNAP &&
454
(ci->i_snap_caps & wanted) == wanted) {
455
__ceph_touch_fmode(ci, mdsc, fmode);
456
spin_unlock(&ci->i_ceph_lock);
457
return ceph_init_file(inode, file, fmode);
458
}
459
460
spin_unlock(&ci->i_ceph_lock);
461
462
doutc(cl, "open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
463
req = prepare_open_request(inode->i_sb, flags, 0);
464
if (IS_ERR(req)) {
465
err = PTR_ERR(req);
466
goto out;
467
}
468
req->r_inode = inode;
469
ihold(inode);
470
471
req->r_num_caps = 1;
472
err = ceph_mdsc_do_request(mdsc, NULL, req);
473
if (!err)
474
err = ceph_init_file(inode, file, req->r_fmode);
475
ceph_mdsc_put_request(req);
476
doutc(cl, "open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
477
out:
478
return err;
479
}
480
481
/* Clone the layout from a synchronous create, if the dir now has Dc caps */
482
static void
483
cache_file_layout(struct inode *dst, struct inode *src)
484
{
485
struct ceph_inode_info *cdst = ceph_inode(dst);
486
struct ceph_inode_info *csrc = ceph_inode(src);
487
488
spin_lock(&cdst->i_ceph_lock);
489
if ((__ceph_caps_issued(cdst, NULL) & CEPH_CAP_DIR_CREATE) &&
490
!ceph_file_layout_is_valid(&cdst->i_cached_layout)) {
491
memcpy(&cdst->i_cached_layout, &csrc->i_layout,
492
sizeof(cdst->i_cached_layout));
493
rcu_assign_pointer(cdst->i_cached_layout.pool_ns,
494
ceph_try_get_string(csrc->i_layout.pool_ns));
495
}
496
spin_unlock(&cdst->i_ceph_lock);
497
}
498
499
/*
500
* Try to set up an async create. We need caps, a file layout, and inode number,
501
* and either a lease on the dentry or complete dir info. If any of those
502
* criteria are not satisfied, then return false and the caller can go
503
* synchronous.
504
*/
505
static int try_prep_async_create(struct inode *dir, struct dentry *dentry,
506
struct ceph_file_layout *lo, u64 *pino)
507
{
508
struct ceph_inode_info *ci = ceph_inode(dir);
509
struct ceph_dentry_info *di = ceph_dentry(dentry);
510
int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_CREATE;
511
u64 ino;
512
513
spin_lock(&ci->i_ceph_lock);
514
/* No auth cap means no chance for Dc caps */
515
if (!ci->i_auth_cap)
516
goto no_async;
517
518
/* Any delegated inos? */
519
if (xa_empty(&ci->i_auth_cap->session->s_delegated_inos))
520
goto no_async;
521
522
if (!ceph_file_layout_is_valid(&ci->i_cached_layout))
523
goto no_async;
524
525
if ((__ceph_caps_issued(ci, NULL) & want) != want)
526
goto no_async;
527
528
if (d_in_lookup(dentry)) {
529
if (!__ceph_dir_is_complete(ci))
530
goto no_async;
531
spin_lock(&dentry->d_lock);
532
di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
533
spin_unlock(&dentry->d_lock);
534
} else if (atomic_read(&ci->i_shared_gen) !=
535
READ_ONCE(di->lease_shared_gen)) {
536
goto no_async;
537
}
538
539
ino = ceph_get_deleg_ino(ci->i_auth_cap->session);
540
if (!ino)
541
goto no_async;
542
543
*pino = ino;
544
ceph_take_cap_refs(ci, want, false);
545
memcpy(lo, &ci->i_cached_layout, sizeof(*lo));
546
rcu_assign_pointer(lo->pool_ns,
547
ceph_try_get_string(ci->i_cached_layout.pool_ns));
548
got = want;
549
no_async:
550
spin_unlock(&ci->i_ceph_lock);
551
return got;
552
}
553
554
static void restore_deleg_ino(struct inode *dir, u64 ino)
555
{
556
struct ceph_client *cl = ceph_inode_to_client(dir);
557
struct ceph_inode_info *ci = ceph_inode(dir);
558
struct ceph_mds_session *s = NULL;
559
560
spin_lock(&ci->i_ceph_lock);
561
if (ci->i_auth_cap)
562
s = ceph_get_mds_session(ci->i_auth_cap->session);
563
spin_unlock(&ci->i_ceph_lock);
564
if (s) {
565
int err = ceph_restore_deleg_ino(s, ino);
566
if (err)
567
pr_warn_client(cl,
568
"unable to restore delegated ino 0x%llx to session: %d\n",
569
ino, err);
570
ceph_put_mds_session(s);
571
}
572
}
573
574
static void wake_async_create_waiters(struct inode *inode,
575
struct ceph_mds_session *session)
576
{
577
struct ceph_inode_info *ci = ceph_inode(inode);
578
bool check_cap = false;
579
580
spin_lock(&ci->i_ceph_lock);
581
if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE) {
582
ci->i_ceph_flags &= ~CEPH_I_ASYNC_CREATE;
583
wake_up_bit(&ci->i_ceph_flags, CEPH_ASYNC_CREATE_BIT);
584
585
if (ci->i_ceph_flags & CEPH_I_ASYNC_CHECK_CAPS) {
586
ci->i_ceph_flags &= ~CEPH_I_ASYNC_CHECK_CAPS;
587
check_cap = true;
588
}
589
}
590
ceph_kick_flushing_inode_caps(session, ci);
591
spin_unlock(&ci->i_ceph_lock);
592
593
if (check_cap)
594
ceph_check_caps(ci, CHECK_CAPS_FLUSH);
595
}
596
597
static void ceph_async_create_cb(struct ceph_mds_client *mdsc,
598
struct ceph_mds_request *req)
599
{
600
struct ceph_client *cl = mdsc->fsc->client;
601
struct dentry *dentry = req->r_dentry;
602
struct inode *dinode = d_inode(dentry);
603
struct inode *tinode = req->r_target_inode;
604
int result = req->r_err ? req->r_err :
605
le32_to_cpu(req->r_reply_info.head->result);
606
607
WARN_ON_ONCE(dinode && tinode && dinode != tinode);
608
609
/* MDS changed -- caller must resubmit */
610
if (result == -EJUKEBOX)
611
goto out;
612
613
mapping_set_error(req->r_parent->i_mapping, result);
614
615
if (result) {
616
struct ceph_path_info path_info = {0};
617
char *path = ceph_mdsc_build_path(mdsc, req->r_dentry, &path_info, 0);
618
619
pr_warn_client(cl,
620
"async create failure path=(%llx)%s result=%d!\n",
621
path_info.vino.ino, IS_ERR(path) ? "<<bad>>" : path, result);
622
ceph_mdsc_free_path_info(&path_info);
623
624
ceph_dir_clear_complete(req->r_parent);
625
if (!d_unhashed(dentry))
626
d_drop(dentry);
627
628
if (dinode) {
629
mapping_set_error(dinode->i_mapping, result);
630
ceph_inode_shutdown(dinode);
631
wake_async_create_waiters(dinode, req->r_session);
632
}
633
}
634
635
if (tinode) {
636
u64 ino = ceph_vino(tinode).ino;
637
638
if (req->r_deleg_ino != ino)
639
pr_warn_client(cl,
640
"inode number mismatch! err=%d deleg_ino=0x%llx target=0x%llx\n",
641
req->r_err, req->r_deleg_ino, ino);
642
643
mapping_set_error(tinode->i_mapping, result);
644
wake_async_create_waiters(tinode, req->r_session);
645
} else if (!result) {
646
pr_warn_client(cl, "no req->r_target_inode for 0x%llx\n",
647
req->r_deleg_ino);
648
}
649
out:
650
ceph_mdsc_release_dir_caps(req);
651
}
652
653
static int ceph_finish_async_create(struct inode *dir, struct inode *inode,
654
struct dentry *dentry,
655
struct file *file, umode_t mode,
656
struct ceph_mds_request *req,
657
struct ceph_acl_sec_ctx *as_ctx,
658
struct ceph_file_layout *lo)
659
{
660
int ret;
661
char xattr_buf[4];
662
struct ceph_mds_reply_inode in = { };
663
struct ceph_mds_reply_info_in iinfo = { .in = &in };
664
struct ceph_inode_info *ci = ceph_inode(dir);
665
struct ceph_dentry_info *di = ceph_dentry(dentry);
666
struct timespec64 now;
667
struct ceph_string *pool_ns;
668
struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
669
struct ceph_client *cl = mdsc->fsc->client;
670
struct ceph_vino vino = { .ino = req->r_deleg_ino,
671
.snap = CEPH_NOSNAP };
672
673
ktime_get_real_ts64(&now);
674
675
iinfo.inline_version = CEPH_INLINE_NONE;
676
iinfo.change_attr = 1;
677
ceph_encode_timespec64(&iinfo.btime, &now);
678
679
if (req->r_pagelist) {
680
iinfo.xattr_len = req->r_pagelist->length;
681
iinfo.xattr_data = req->r_pagelist->mapped_tail;
682
} else {
683
/* fake it */
684
iinfo.xattr_len = ARRAY_SIZE(xattr_buf);
685
iinfo.xattr_data = xattr_buf;
686
memset(iinfo.xattr_data, 0, iinfo.xattr_len);
687
}
688
689
in.ino = cpu_to_le64(vino.ino);
690
in.snapid = cpu_to_le64(CEPH_NOSNAP);
691
in.version = cpu_to_le64(1); // ???
692
in.cap.caps = in.cap.wanted = cpu_to_le32(CEPH_CAP_ALL_FILE);
693
in.cap.cap_id = cpu_to_le64(1);
694
in.cap.realm = cpu_to_le64(ci->i_snap_realm->ino);
695
in.cap.flags = CEPH_CAP_FLAG_AUTH;
696
in.ctime = in.mtime = in.atime = iinfo.btime;
697
in.truncate_seq = cpu_to_le32(1);
698
in.truncate_size = cpu_to_le64(-1ULL);
699
in.xattr_version = cpu_to_le64(1);
700
in.uid = cpu_to_le32(from_kuid(&init_user_ns,
701
mapped_fsuid(req->r_mnt_idmap,
702
&init_user_ns)));
703
if (dir->i_mode & S_ISGID) {
704
in.gid = cpu_to_le32(from_kgid(&init_user_ns, dir->i_gid));
705
706
/* Directories always inherit the setgid bit. */
707
if (S_ISDIR(mode))
708
mode |= S_ISGID;
709
} else {
710
in.gid = cpu_to_le32(from_kgid(&init_user_ns,
711
mapped_fsgid(req->r_mnt_idmap,
712
&init_user_ns)));
713
}
714
in.mode = cpu_to_le32((u32)mode);
715
716
in.nlink = cpu_to_le32(1);
717
in.max_size = cpu_to_le64(lo->stripe_unit);
718
719
ceph_file_layout_to_legacy(lo, &in.layout);
720
/* lo is private, so pool_ns can't change */
721
pool_ns = rcu_dereference_raw(lo->pool_ns);
722
if (pool_ns) {
723
iinfo.pool_ns_len = pool_ns->len;
724
iinfo.pool_ns_data = pool_ns->str;
725
}
726
727
down_read(&mdsc->snap_rwsem);
728
ret = ceph_fill_inode(inode, NULL, &iinfo, NULL, req->r_session,
729
req->r_fmode, NULL);
730
up_read(&mdsc->snap_rwsem);
731
if (ret) {
732
doutc(cl, "failed to fill inode: %d\n", ret);
733
ceph_dir_clear_complete(dir);
734
if (!d_unhashed(dentry))
735
d_drop(dentry);
736
discard_new_inode(inode);
737
} else {
738
struct dentry *dn;
739
740
doutc(cl, "d_adding new inode 0x%llx to 0x%llx/%s\n",
741
vino.ino, ceph_ino(dir), dentry->d_name.name);
742
ceph_dir_clear_ordered(dir);
743
ceph_init_inode_acls(inode, as_ctx);
744
if (inode->i_state & I_NEW) {
745
/*
746
* If it's not I_NEW, then someone created this before
747
* we got here. Assume the server is aware of it at
748
* that point and don't worry about setting
749
* CEPH_I_ASYNC_CREATE.
750
*/
751
ceph_inode(inode)->i_ceph_flags = CEPH_I_ASYNC_CREATE;
752
unlock_new_inode(inode);
753
}
754
if (d_in_lookup(dentry) || d_really_is_negative(dentry)) {
755
if (!d_unhashed(dentry))
756
d_drop(dentry);
757
dn = d_splice_alias(inode, dentry);
758
WARN_ON_ONCE(dn && dn != dentry);
759
}
760
file->f_mode |= FMODE_CREATED;
761
ret = finish_open(file, dentry, ceph_open);
762
}
763
764
spin_lock(&dentry->d_lock);
765
di->flags &= ~CEPH_DENTRY_ASYNC_CREATE;
766
wake_up_bit(&di->flags, CEPH_DENTRY_ASYNC_CREATE_BIT);
767
spin_unlock(&dentry->d_lock);
768
769
return ret;
770
}
771
772
/*
773
* Do a lookup + open with a single request. If we get a non-existent
774
* file or symlink, return 1 so the VFS can retry.
775
*/
776
int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
777
struct file *file, unsigned flags, umode_t mode)
778
{
779
struct mnt_idmap *idmap = file_mnt_idmap(file);
780
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(dir->i_sb);
781
struct ceph_client *cl = fsc->client;
782
struct ceph_mds_client *mdsc = fsc->mdsc;
783
struct ceph_mds_request *req;
784
struct inode *new_inode = NULL;
785
struct dentry *dn;
786
struct ceph_acl_sec_ctx as_ctx = {};
787
bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
788
int mask;
789
int err;
790
char *path;
791
792
doutc(cl, "%p %llx.%llx dentry %p '%pd' %s flags %d mode 0%o\n",
793
dir, ceph_vinop(dir), dentry, dentry,
794
d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
795
796
if (dentry->d_name.len > NAME_MAX)
797
return -ENAMETOOLONG;
798
799
err = ceph_wait_on_conflict_unlink(dentry);
800
if (err)
801
return err;
802
/*
803
* Do not truncate the file, since atomic_open is called before the
804
* permission check. The caller will do the truncation afterward.
805
*/
806
flags &= ~O_TRUNC;
807
808
dn = d_find_alias(dir);
809
if (!dn) {
810
try_async = false;
811
} else {
812
struct ceph_path_info path_info;
813
path = ceph_mdsc_build_path(mdsc, dn, &path_info, 0);
814
if (IS_ERR(path)) {
815
try_async = false;
816
err = 0;
817
} else {
818
int fmode = ceph_flags_to_mode(flags);
819
820
mask = MAY_READ;
821
if (fmode & CEPH_FILE_MODE_WR)
822
mask |= MAY_WRITE;
823
err = ceph_mds_check_access(mdsc, path, mask);
824
}
825
ceph_mdsc_free_path_info(&path_info);
826
dput(dn);
827
828
/* For none EACCES cases will let the MDS do the mds auth check */
829
if (err == -EACCES) {
830
return err;
831
} else if (err < 0) {
832
try_async = false;
833
err = 0;
834
}
835
}
836
837
retry:
838
if (flags & O_CREAT) {
839
if (ceph_quota_is_max_files_exceeded(dir))
840
return -EDQUOT;
841
842
new_inode = ceph_new_inode(dir, dentry, &mode, &as_ctx);
843
if (IS_ERR(new_inode)) {
844
err = PTR_ERR(new_inode);
845
goto out_ctx;
846
}
847
/* Async create can't handle more than a page of xattrs */
848
if (as_ctx.pagelist &&
849
!list_is_singular(&as_ctx.pagelist->head))
850
try_async = false;
851
} else if (!d_in_lookup(dentry)) {
852
/* If it's not being looked up, it's negative */
853
return -ENOENT;
854
}
855
856
/* do the open */
857
req = prepare_open_request(dir->i_sb, flags, mode);
858
if (IS_ERR(req)) {
859
err = PTR_ERR(req);
860
goto out_ctx;
861
}
862
req->r_dentry = dget(dentry);
863
req->r_num_caps = 2;
864
mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
865
if (ceph_security_xattr_wanted(dir))
866
mask |= CEPH_CAP_XATTR_SHARED;
867
req->r_args.open.mask = cpu_to_le32(mask);
868
req->r_parent = dir;
869
if (req->r_op == CEPH_MDS_OP_CREATE)
870
req->r_mnt_idmap = mnt_idmap_get(idmap);
871
ihold(dir);
872
if (IS_ENCRYPTED(dir)) {
873
set_bit(CEPH_MDS_R_FSCRYPT_FILE, &req->r_req_flags);
874
err = fscrypt_prepare_lookup_partial(dir, dentry);
875
if (err < 0)
876
goto out_req;
877
}
878
879
if (flags & O_CREAT) {
880
struct ceph_file_layout lo;
881
882
req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL |
883
CEPH_CAP_XATTR_EXCL;
884
req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
885
886
ceph_as_ctx_to_req(req, &as_ctx);
887
888
if (try_async && (req->r_dir_caps =
889
try_prep_async_create(dir, dentry, &lo,
890
&req->r_deleg_ino))) {
891
struct ceph_vino vino = { .ino = req->r_deleg_ino,
892
.snap = CEPH_NOSNAP };
893
struct ceph_dentry_info *di = ceph_dentry(dentry);
894
895
set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
896
req->r_args.open.flags |= cpu_to_le32(CEPH_O_EXCL);
897
req->r_callback = ceph_async_create_cb;
898
899
/* Hash inode before RPC */
900
new_inode = ceph_get_inode(dir->i_sb, vino, new_inode);
901
if (IS_ERR(new_inode)) {
902
err = PTR_ERR(new_inode);
903
new_inode = NULL;
904
goto out_req;
905
}
906
WARN_ON_ONCE(!(new_inode->i_state & I_NEW));
907
908
spin_lock(&dentry->d_lock);
909
di->flags |= CEPH_DENTRY_ASYNC_CREATE;
910
spin_unlock(&dentry->d_lock);
911
912
err = ceph_mdsc_submit_request(mdsc, dir, req);
913
if (!err) {
914
err = ceph_finish_async_create(dir, new_inode,
915
dentry, file,
916
mode, req,
917
&as_ctx, &lo);
918
new_inode = NULL;
919
} else if (err == -EJUKEBOX) {
920
restore_deleg_ino(dir, req->r_deleg_ino);
921
ceph_mdsc_put_request(req);
922
discard_new_inode(new_inode);
923
ceph_release_acl_sec_ctx(&as_ctx);
924
memset(&as_ctx, 0, sizeof(as_ctx));
925
new_inode = NULL;
926
try_async = false;
927
ceph_put_string(rcu_dereference_raw(lo.pool_ns));
928
goto retry;
929
}
930
ceph_put_string(rcu_dereference_raw(lo.pool_ns));
931
goto out_req;
932
}
933
}
934
935
set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
936
req->r_new_inode = new_inode;
937
new_inode = NULL;
938
err = ceph_mdsc_do_request(mdsc, (flags & O_CREAT) ? dir : NULL, req);
939
if (err == -ENOENT) {
940
dentry = ceph_handle_snapdir(req, dentry);
941
if (IS_ERR(dentry)) {
942
err = PTR_ERR(dentry);
943
goto out_req;
944
}
945
err = 0;
946
}
947
948
if (!err && (flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
949
err = ceph_handle_notrace_create(dir, dentry);
950
951
if (d_in_lookup(dentry)) {
952
dn = ceph_finish_lookup(req, dentry, err);
953
if (IS_ERR(dn))
954
err = PTR_ERR(dn);
955
} else {
956
/* we were given a hashed negative dentry */
957
dn = NULL;
958
}
959
if (err)
960
goto out_req;
961
if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
962
/* make vfs retry on splice, ENOENT, or symlink */
963
doutc(cl, "finish_no_open on dn %p\n", dn);
964
err = finish_no_open(file, dn);
965
} else {
966
if (IS_ENCRYPTED(dir) &&
967
!fscrypt_has_permitted_context(dir, d_inode(dentry))) {
968
pr_warn_client(cl,
969
"Inconsistent encryption context (parent %llx:%llx child %llx:%llx)\n",
970
ceph_vinop(dir), ceph_vinop(d_inode(dentry)));
971
goto out_req;
972
}
973
974
doutc(cl, "finish_open on dn %p\n", dn);
975
if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
976
struct inode *newino = d_inode(dentry);
977
978
cache_file_layout(dir, newino);
979
ceph_init_inode_acls(newino, &as_ctx);
980
file->f_mode |= FMODE_CREATED;
981
}
982
err = finish_open(file, dentry, ceph_open);
983
}
984
out_req:
985
ceph_mdsc_put_request(req);
986
iput(new_inode);
987
out_ctx:
988
ceph_release_acl_sec_ctx(&as_ctx);
989
doutc(cl, "result=%d\n", err);
990
return err;
991
}
992
993
int ceph_release(struct inode *inode, struct file *file)
994
{
995
struct ceph_client *cl = ceph_inode_to_client(inode);
996
struct ceph_inode_info *ci = ceph_inode(inode);
997
998
if (S_ISDIR(inode->i_mode)) {
999
struct ceph_dir_file_info *dfi = file->private_data;
1000
doutc(cl, "%p %llx.%llx dir file %p\n", inode,
1001
ceph_vinop(inode), file);
1002
WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
1003
1004
ceph_put_fmode(ci, dfi->file_info.fmode, 1);
1005
1006
if (dfi->last_readdir)
1007
ceph_mdsc_put_request(dfi->last_readdir);
1008
kfree(dfi->last_name);
1009
kfree(dfi->dir_info);
1010
kmem_cache_free(ceph_dir_file_cachep, dfi);
1011
} else {
1012
struct ceph_file_info *fi = file->private_data;
1013
doutc(cl, "%p %llx.%llx regular file %p\n", inode,
1014
ceph_vinop(inode), file);
1015
WARN_ON(!list_empty(&fi->rw_contexts));
1016
1017
ceph_fscache_unuse_cookie(inode, file->f_mode & FMODE_WRITE);
1018
ceph_put_fmode(ci, fi->fmode, 1);
1019
1020
kmem_cache_free(ceph_file_cachep, fi);
1021
}
1022
1023
/* wake up anyone waiting for caps on this inode */
1024
wake_up_all(&ci->i_cap_wq);
1025
return 0;
1026
}
1027
1028
enum {
1029
HAVE_RETRIED = 1,
1030
CHECK_EOF = 2,
1031
READ_INLINE = 3,
1032
};
1033
1034
/*
1035
* Completely synchronous read and write methods. Direct from __user
1036
* buffer to osd, or directly to user pages (if O_DIRECT).
1037
*
1038
* If the read spans object boundary, just do multiple reads. (That's not
1039
* atomic, but good enough for now.)
1040
*
1041
* If we get a short result from the OSD, check against i_size; we need to
1042
* only return a short read to the caller if we hit EOF.
1043
*/
1044
ssize_t __ceph_sync_read(struct inode *inode, loff_t *ki_pos,
1045
struct iov_iter *to, int *retry_op,
1046
u64 *last_objver)
1047
{
1048
struct ceph_inode_info *ci = ceph_inode(inode);
1049
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1050
struct ceph_client *cl = fsc->client;
1051
struct ceph_osd_client *osdc = &fsc->client->osdc;
1052
ssize_t ret;
1053
u64 off = *ki_pos;
1054
u64 len = iov_iter_count(to);
1055
u64 i_size = i_size_read(inode);
1056
bool sparse = IS_ENCRYPTED(inode) || ceph_test_mount_opt(fsc, SPARSEREAD);
1057
u64 objver = 0;
1058
1059
doutc(cl, "on inode %p %llx.%llx %llx~%llx\n", inode,
1060
ceph_vinop(inode), *ki_pos, len);
1061
1062
if (ceph_inode_is_shutdown(inode))
1063
return -EIO;
1064
1065
if (!len || !i_size)
1066
return 0;
1067
/*
1068
* flush any page cache pages in this range. this
1069
* will make concurrent normal and sync io slow,
1070
* but it will at least behave sensibly when they are
1071
* in sequence.
1072
*/
1073
ret = filemap_write_and_wait_range(inode->i_mapping,
1074
off, off + len - 1);
1075
if (ret < 0)
1076
return ret;
1077
1078
ret = 0;
1079
while ((len = iov_iter_count(to)) > 0) {
1080
struct ceph_osd_request *req;
1081
struct page **pages;
1082
int num_pages;
1083
size_t page_off;
1084
bool more;
1085
int idx = 0;
1086
size_t left;
1087
struct ceph_osd_req_op *op;
1088
u64 read_off = off;
1089
u64 read_len = len;
1090
int extent_cnt;
1091
1092
/* determine new offset/length if encrypted */
1093
ceph_fscrypt_adjust_off_and_len(inode, &read_off, &read_len);
1094
1095
doutc(cl, "orig %llu~%llu reading %llu~%llu", off, len,
1096
read_off, read_len);
1097
1098
req = ceph_osdc_new_request(osdc, &ci->i_layout,
1099
ci->i_vino, read_off, &read_len, 0, 1,
1100
sparse ? CEPH_OSD_OP_SPARSE_READ :
1101
CEPH_OSD_OP_READ,
1102
CEPH_OSD_FLAG_READ,
1103
NULL, ci->i_truncate_seq,
1104
ci->i_truncate_size, false);
1105
if (IS_ERR(req)) {
1106
ret = PTR_ERR(req);
1107
break;
1108
}
1109
1110
/* adjust len downward if the request truncated the len */
1111
if (off + len > read_off + read_len)
1112
len = read_off + read_len - off;
1113
more = len < iov_iter_count(to);
1114
1115
op = &req->r_ops[0];
1116
if (sparse) {
1117
extent_cnt = __ceph_sparse_read_ext_count(inode, read_len);
1118
ret = ceph_alloc_sparse_ext_map(op, extent_cnt);
1119
if (ret) {
1120
ceph_osdc_put_request(req);
1121
break;
1122
}
1123
}
1124
1125
num_pages = calc_pages_for(read_off, read_len);
1126
page_off = offset_in_page(off);
1127
pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
1128
if (IS_ERR(pages)) {
1129
ceph_osdc_put_request(req);
1130
ret = PTR_ERR(pages);
1131
break;
1132
}
1133
1134
osd_req_op_extent_osd_data_pages(req, 0, pages, read_len,
1135
offset_in_page(read_off),
1136
false, true);
1137
1138
ceph_osdc_start_request(osdc, req);
1139
ret = ceph_osdc_wait_request(osdc, req);
1140
1141
ceph_update_read_metrics(&fsc->mdsc->metric,
1142
req->r_start_latency,
1143
req->r_end_latency,
1144
read_len, ret);
1145
1146
if (ret > 0)
1147
objver = req->r_version;
1148
1149
i_size = i_size_read(inode);
1150
doutc(cl, "%llu~%llu got %zd i_size %llu%s\n", off, len,
1151
ret, i_size, (more ? " MORE" : ""));
1152
1153
/* Fix it to go to end of extent map */
1154
if (sparse && ret >= 0)
1155
ret = ceph_sparse_ext_map_end(op);
1156
else if (ret == -ENOENT)
1157
ret = 0;
1158
1159
if (ret < 0) {
1160
ceph_osdc_put_request(req);
1161
if (ret == -EBLOCKLISTED)
1162
fsc->blocklisted = true;
1163
break;
1164
}
1165
1166
if (IS_ENCRYPTED(inode)) {
1167
int fret;
1168
1169
fret = ceph_fscrypt_decrypt_extents(inode, pages,
1170
read_off, op->extent.sparse_ext,
1171
op->extent.sparse_ext_cnt);
1172
if (fret < 0) {
1173
ret = fret;
1174
ceph_osdc_put_request(req);
1175
break;
1176
}
1177
1178
/* account for any partial block at the beginning */
1179
fret -= (off - read_off);
1180
1181
/*
1182
* Short read after big offset adjustment?
1183
* Nothing is usable, just call it a zero
1184
* len read.
1185
*/
1186
fret = max(fret, 0);
1187
1188
/* account for partial block at the end */
1189
ret = min_t(ssize_t, fret, len);
1190
}
1191
1192
/* Short read but not EOF? Zero out the remainder. */
1193
if (ret < len && (off + ret < i_size)) {
1194
int zlen = min(len - ret, i_size - off - ret);
1195
int zoff = page_off + ret;
1196
1197
doutc(cl, "zero gap %llu~%llu\n", off + ret,
1198
off + ret + zlen);
1199
ceph_zero_page_vector_range(zoff, zlen, pages);
1200
ret += zlen;
1201
}
1202
1203
if (off + ret > i_size)
1204
left = (i_size > off) ? i_size - off : 0;
1205
else
1206
left = ret;
1207
1208
while (left > 0) {
1209
size_t plen, copied;
1210
1211
plen = min_t(size_t, left, PAGE_SIZE - page_off);
1212
SetPageUptodate(pages[idx]);
1213
copied = copy_page_to_iter(pages[idx++],
1214
page_off, plen, to);
1215
off += copied;
1216
left -= copied;
1217
page_off = 0;
1218
if (copied < plen) {
1219
ret = -EFAULT;
1220
break;
1221
}
1222
}
1223
1224
ceph_osdc_put_request(req);
1225
1226
if (off >= i_size || !more)
1227
break;
1228
}
1229
1230
if (ret > 0) {
1231
if (off >= i_size) {
1232
*retry_op = CHECK_EOF;
1233
ret = i_size - *ki_pos;
1234
*ki_pos = i_size;
1235
} else {
1236
ret = off - *ki_pos;
1237
*ki_pos = off;
1238
}
1239
1240
if (last_objver)
1241
*last_objver = objver;
1242
}
1243
doutc(cl, "result %zd retry_op %d\n", ret, *retry_op);
1244
return ret;
1245
}
1246
1247
static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
1248
int *retry_op)
1249
{
1250
struct file *file = iocb->ki_filp;
1251
struct inode *inode = file_inode(file);
1252
struct ceph_client *cl = ceph_inode_to_client(inode);
1253
1254
doutc(cl, "on file %p %llx~%zx %s\n", file, iocb->ki_pos,
1255
iov_iter_count(to),
1256
(file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
1257
1258
return __ceph_sync_read(inode, &iocb->ki_pos, to, retry_op, NULL);
1259
}
1260
1261
struct ceph_aio_request {
1262
struct kiocb *iocb;
1263
size_t total_len;
1264
bool write;
1265
bool should_dirty;
1266
int error;
1267
struct list_head osd_reqs;
1268
unsigned num_reqs;
1269
atomic_t pending_reqs;
1270
struct timespec64 mtime;
1271
struct ceph_cap_flush *prealloc_cf;
1272
};
1273
1274
struct ceph_aio_work {
1275
struct work_struct work;
1276
struct ceph_osd_request *req;
1277
};
1278
1279
static void ceph_aio_retry_work(struct work_struct *work);
1280
1281
static void ceph_aio_complete(struct inode *inode,
1282
struct ceph_aio_request *aio_req)
1283
{
1284
struct ceph_client *cl = ceph_inode_to_client(inode);
1285
struct ceph_inode_info *ci = ceph_inode(inode);
1286
int ret;
1287
1288
if (!atomic_dec_and_test(&aio_req->pending_reqs))
1289
return;
1290
1291
if (aio_req->iocb->ki_flags & IOCB_DIRECT)
1292
inode_dio_end(inode);
1293
1294
ret = aio_req->error;
1295
if (!ret)
1296
ret = aio_req->total_len;
1297
1298
doutc(cl, "%p %llx.%llx rc %d\n", inode, ceph_vinop(inode), ret);
1299
1300
if (ret >= 0 && aio_req->write) {
1301
int dirty;
1302
1303
loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
1304
if (endoff > i_size_read(inode)) {
1305
if (ceph_inode_set_size(inode, endoff))
1306
ceph_check_caps(ci, CHECK_CAPS_AUTHONLY);
1307
}
1308
1309
spin_lock(&ci->i_ceph_lock);
1310
dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1311
&aio_req->prealloc_cf);
1312
spin_unlock(&ci->i_ceph_lock);
1313
if (dirty)
1314
__mark_inode_dirty(inode, dirty);
1315
1316
}
1317
1318
ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
1319
CEPH_CAP_FILE_RD));
1320
1321
aio_req->iocb->ki_complete(aio_req->iocb, ret);
1322
1323
ceph_free_cap_flush(aio_req->prealloc_cf);
1324
kfree(aio_req);
1325
}
1326
1327
static void ceph_aio_complete_req(struct ceph_osd_request *req)
1328
{
1329
int rc = req->r_result;
1330
struct inode *inode = req->r_inode;
1331
struct ceph_aio_request *aio_req = req->r_priv;
1332
struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
1333
struct ceph_osd_req_op *op = &req->r_ops[0];
1334
struct ceph_client_metric *metric = &ceph_sb_to_mdsc(inode->i_sb)->metric;
1335
unsigned int len = osd_data->bvec_pos.iter.bi_size;
1336
bool sparse = (op->op == CEPH_OSD_OP_SPARSE_READ);
1337
struct ceph_client *cl = ceph_inode_to_client(inode);
1338
1339
BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
1340
BUG_ON(!osd_data->num_bvecs);
1341
1342
doutc(cl, "req %p inode %p %llx.%llx, rc %d bytes %u\n", req,
1343
inode, ceph_vinop(inode), rc, len);
1344
1345
if (rc == -EOLDSNAPC) {
1346
struct ceph_aio_work *aio_work;
1347
BUG_ON(!aio_req->write);
1348
1349
aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
1350
if (aio_work) {
1351
INIT_WORK(&aio_work->work, ceph_aio_retry_work);
1352
aio_work->req = req;
1353
queue_work(ceph_inode_to_fs_client(inode)->inode_wq,
1354
&aio_work->work);
1355
return;
1356
}
1357
rc = -ENOMEM;
1358
} else if (!aio_req->write) {
1359
if (sparse && rc >= 0)
1360
rc = ceph_sparse_ext_map_end(op);
1361
if (rc == -ENOENT)
1362
rc = 0;
1363
if (rc >= 0 && len > rc) {
1364
struct iov_iter i;
1365
int zlen = len - rc;
1366
1367
/*
1368
* If read is satisfied by single OSD request,
1369
* it can pass EOF. Otherwise read is within
1370
* i_size.
1371
*/
1372
if (aio_req->num_reqs == 1) {
1373
loff_t i_size = i_size_read(inode);
1374
loff_t endoff = aio_req->iocb->ki_pos + rc;
1375
if (endoff < i_size)
1376
zlen = min_t(size_t, zlen,
1377
i_size - endoff);
1378
aio_req->total_len = rc + zlen;
1379
}
1380
1381
iov_iter_bvec(&i, ITER_DEST, osd_data->bvec_pos.bvecs,
1382
osd_data->num_bvecs, len);
1383
iov_iter_advance(&i, rc);
1384
iov_iter_zero(zlen, &i);
1385
}
1386
}
1387
1388
/* r_start_latency == 0 means the request was not submitted */
1389
if (req->r_start_latency) {
1390
if (aio_req->write)
1391
ceph_update_write_metrics(metric, req->r_start_latency,
1392
req->r_end_latency, len, rc);
1393
else
1394
ceph_update_read_metrics(metric, req->r_start_latency,
1395
req->r_end_latency, len, rc);
1396
}
1397
1398
put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
1399
aio_req->should_dirty);
1400
ceph_osdc_put_request(req);
1401
1402
if (rc < 0)
1403
cmpxchg(&aio_req->error, 0, rc);
1404
1405
ceph_aio_complete(inode, aio_req);
1406
return;
1407
}
1408
1409
static void ceph_aio_retry_work(struct work_struct *work)
1410
{
1411
struct ceph_aio_work *aio_work =
1412
container_of(work, struct ceph_aio_work, work);
1413
struct ceph_osd_request *orig_req = aio_work->req;
1414
struct ceph_aio_request *aio_req = orig_req->r_priv;
1415
struct inode *inode = orig_req->r_inode;
1416
struct ceph_inode_info *ci = ceph_inode(inode);
1417
struct ceph_snap_context *snapc;
1418
struct ceph_osd_request *req;
1419
int ret;
1420
1421
spin_lock(&ci->i_ceph_lock);
1422
if (__ceph_have_pending_cap_snap(ci)) {
1423
struct ceph_cap_snap *capsnap =
1424
list_last_entry(&ci->i_cap_snaps,
1425
struct ceph_cap_snap,
1426
ci_item);
1427
snapc = ceph_get_snap_context(capsnap->context);
1428
} else {
1429
BUG_ON(!ci->i_head_snapc);
1430
snapc = ceph_get_snap_context(ci->i_head_snapc);
1431
}
1432
spin_unlock(&ci->i_ceph_lock);
1433
1434
req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 1,
1435
false, GFP_NOFS);
1436
if (!req) {
1437
ret = -ENOMEM;
1438
req = orig_req;
1439
goto out;
1440
}
1441
1442
req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
1443
ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
1444
ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
1445
1446
req->r_ops[0] = orig_req->r_ops[0];
1447
1448
req->r_mtime = aio_req->mtime;
1449
req->r_data_offset = req->r_ops[0].extent.offset;
1450
1451
ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
1452
if (ret) {
1453
ceph_osdc_put_request(req);
1454
req = orig_req;
1455
goto out;
1456
}
1457
1458
ceph_osdc_put_request(orig_req);
1459
1460
req->r_callback = ceph_aio_complete_req;
1461
req->r_inode = inode;
1462
req->r_priv = aio_req;
1463
1464
ceph_osdc_start_request(req->r_osdc, req);
1465
out:
1466
if (ret < 0) {
1467
req->r_result = ret;
1468
ceph_aio_complete_req(req);
1469
}
1470
1471
ceph_put_snap_context(snapc);
1472
kfree(aio_work);
1473
}
1474
1475
static ssize_t
1476
ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
1477
struct ceph_snap_context *snapc,
1478
struct ceph_cap_flush **pcf)
1479
{
1480
struct file *file = iocb->ki_filp;
1481
struct inode *inode = file_inode(file);
1482
struct ceph_inode_info *ci = ceph_inode(inode);
1483
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1484
struct ceph_client *cl = fsc->client;
1485
struct ceph_client_metric *metric = &fsc->mdsc->metric;
1486
struct ceph_vino vino;
1487
struct ceph_osd_request *req;
1488
struct bio_vec *bvecs;
1489
struct ceph_aio_request *aio_req = NULL;
1490
int num_pages = 0;
1491
int flags;
1492
int ret = 0;
1493
struct timespec64 mtime = current_time(inode);
1494
size_t count = iov_iter_count(iter);
1495
loff_t pos = iocb->ki_pos;
1496
bool write = iov_iter_rw(iter) == WRITE;
1497
bool should_dirty = !write && user_backed_iter(iter);
1498
bool sparse = ceph_test_mount_opt(fsc, SPARSEREAD);
1499
1500
if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1501
return -EROFS;
1502
1503
doutc(cl, "sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
1504
(write ? "write" : "read"), file, pos, (unsigned)count,
1505
snapc, snapc ? snapc->seq : 0);
1506
1507
if (write) {
1508
int ret2;
1509
1510
ceph_fscache_invalidate(inode, true);
1511
1512
ret2 = invalidate_inode_pages2_range(inode->i_mapping,
1513
pos >> PAGE_SHIFT,
1514
(pos + count - 1) >> PAGE_SHIFT);
1515
if (ret2 < 0)
1516
doutc(cl, "invalidate_inode_pages2_range returned %d\n",
1517
ret2);
1518
1519
flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
1520
} else {
1521
flags = CEPH_OSD_FLAG_READ;
1522
}
1523
1524
while (iov_iter_count(iter) > 0) {
1525
u64 size = iov_iter_count(iter);
1526
ssize_t len;
1527
struct ceph_osd_req_op *op;
1528
int readop = sparse ? CEPH_OSD_OP_SPARSE_READ : CEPH_OSD_OP_READ;
1529
int extent_cnt;
1530
1531
if (write)
1532
size = min_t(u64, size, fsc->mount_options->wsize);
1533
else
1534
size = min_t(u64, size, fsc->mount_options->rsize);
1535
1536
vino = ceph_vino(inode);
1537
req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1538
vino, pos, &size, 0,
1539
1,
1540
write ? CEPH_OSD_OP_WRITE : readop,
1541
flags, snapc,
1542
ci->i_truncate_seq,
1543
ci->i_truncate_size,
1544
false);
1545
if (IS_ERR(req)) {
1546
ret = PTR_ERR(req);
1547
break;
1548
}
1549
1550
op = &req->r_ops[0];
1551
if (!write && sparse) {
1552
extent_cnt = __ceph_sparse_read_ext_count(inode, size);
1553
ret = ceph_alloc_sparse_ext_map(op, extent_cnt);
1554
if (ret) {
1555
ceph_osdc_put_request(req);
1556
break;
1557
}
1558
}
1559
1560
len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
1561
if (len < 0) {
1562
ceph_osdc_put_request(req);
1563
ret = len;
1564
break;
1565
}
1566
if (len != size)
1567
osd_req_op_extent_update(req, 0, len);
1568
1569
osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
1570
1571
/*
1572
* To simplify error handling, allow AIO when IO within i_size
1573
* or IO can be satisfied by single OSD request.
1574
*/
1575
if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
1576
(len == count || pos + count <= i_size_read(inode))) {
1577
aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
1578
if (aio_req) {
1579
aio_req->iocb = iocb;
1580
aio_req->write = write;
1581
aio_req->should_dirty = should_dirty;
1582
INIT_LIST_HEAD(&aio_req->osd_reqs);
1583
if (write) {
1584
aio_req->mtime = mtime;
1585
swap(aio_req->prealloc_cf, *pcf);
1586
}
1587
}
1588
/* ignore error */
1589
}
1590
1591
if (write) {
1592
/*
1593
* throw out any page cache pages in this range. this
1594
* may block.
1595
*/
1596
truncate_inode_pages_range(inode->i_mapping, pos,
1597
PAGE_ALIGN(pos + len) - 1);
1598
1599
req->r_mtime = mtime;
1600
}
1601
1602
if (aio_req) {
1603
aio_req->total_len += len;
1604
aio_req->num_reqs++;
1605
atomic_inc(&aio_req->pending_reqs);
1606
1607
req->r_callback = ceph_aio_complete_req;
1608
req->r_inode = inode;
1609
req->r_priv = aio_req;
1610
list_add_tail(&req->r_private_item, &aio_req->osd_reqs);
1611
1612
pos += len;
1613
continue;
1614
}
1615
1616
ceph_osdc_start_request(req->r_osdc, req);
1617
ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1618
1619
if (write)
1620
ceph_update_write_metrics(metric, req->r_start_latency,
1621
req->r_end_latency, len, ret);
1622
else
1623
ceph_update_read_metrics(metric, req->r_start_latency,
1624
req->r_end_latency, len, ret);
1625
1626
size = i_size_read(inode);
1627
if (!write) {
1628
if (sparse && ret >= 0)
1629
ret = ceph_sparse_ext_map_end(op);
1630
else if (ret == -ENOENT)
1631
ret = 0;
1632
1633
if (ret >= 0 && ret < len && pos + ret < size) {
1634
struct iov_iter i;
1635
int zlen = min_t(size_t, len - ret,
1636
size - pos - ret);
1637
1638
iov_iter_bvec(&i, ITER_DEST, bvecs, num_pages, len);
1639
iov_iter_advance(&i, ret);
1640
iov_iter_zero(zlen, &i);
1641
ret += zlen;
1642
}
1643
if (ret >= 0)
1644
len = ret;
1645
}
1646
1647
put_bvecs(bvecs, num_pages, should_dirty);
1648
ceph_osdc_put_request(req);
1649
if (ret < 0)
1650
break;
1651
1652
pos += len;
1653
if (!write && pos >= size)
1654
break;
1655
1656
if (write && pos > size) {
1657
if (ceph_inode_set_size(inode, pos))
1658
ceph_check_caps(ceph_inode(inode),
1659
CHECK_CAPS_AUTHONLY);
1660
}
1661
}
1662
1663
if (aio_req) {
1664
LIST_HEAD(osd_reqs);
1665
1666
if (aio_req->num_reqs == 0) {
1667
kfree(aio_req);
1668
return ret;
1669
}
1670
1671
ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1672
CEPH_CAP_FILE_RD);
1673
1674
list_splice(&aio_req->osd_reqs, &osd_reqs);
1675
inode_dio_begin(inode);
1676
while (!list_empty(&osd_reqs)) {
1677
req = list_first_entry(&osd_reqs,
1678
struct ceph_osd_request,
1679
r_private_item);
1680
list_del_init(&req->r_private_item);
1681
if (ret >= 0)
1682
ceph_osdc_start_request(req->r_osdc, req);
1683
if (ret < 0) {
1684
req->r_result = ret;
1685
ceph_aio_complete_req(req);
1686
}
1687
}
1688
return -EIOCBQUEUED;
1689
}
1690
1691
if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1692
ret = pos - iocb->ki_pos;
1693
iocb->ki_pos = pos;
1694
}
1695
return ret;
1696
}
1697
1698
/*
1699
* Synchronous write, straight from __user pointer or user pages.
1700
*
1701
* If write spans object boundary, just do multiple writes. (For a
1702
* correct atomic write, we should e.g. take write locks on all
1703
* objects, rollback on failure, etc.)
1704
*/
1705
static ssize_t
1706
ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1707
struct ceph_snap_context *snapc)
1708
{
1709
struct file *file = iocb->ki_filp;
1710
struct inode *inode = file_inode(file);
1711
struct ceph_inode_info *ci = ceph_inode(inode);
1712
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1713
struct ceph_client *cl = fsc->client;
1714
struct ceph_osd_client *osdc = &fsc->client->osdc;
1715
struct ceph_osd_request *req;
1716
struct page **pages;
1717
u64 len;
1718
int num_pages;
1719
int written = 0;
1720
int ret;
1721
bool check_caps = false;
1722
struct timespec64 mtime = current_time(inode);
1723
size_t count = iov_iter_count(from);
1724
1725
if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1726
return -EROFS;
1727
1728
doutc(cl, "on file %p %lld~%u snapc %p seq %lld\n", file, pos,
1729
(unsigned)count, snapc, snapc->seq);
1730
1731
ret = filemap_write_and_wait_range(inode->i_mapping,
1732
pos, pos + count - 1);
1733
if (ret < 0)
1734
return ret;
1735
1736
ceph_fscache_invalidate(inode, false);
1737
1738
while ((len = iov_iter_count(from)) > 0) {
1739
size_t left;
1740
int n;
1741
u64 write_pos = pos;
1742
u64 write_len = len;
1743
u64 objnum, objoff;
1744
u32 xlen;
1745
u64 assert_ver = 0;
1746
bool rmw;
1747
bool first, last;
1748
struct iov_iter saved_iter = *from;
1749
size_t off;
1750
1751
ceph_fscrypt_adjust_off_and_len(inode, &write_pos, &write_len);
1752
1753
/* clamp the length to the end of first object */
1754
ceph_calc_file_object_mapping(&ci->i_layout, write_pos,
1755
write_len, &objnum, &objoff,
1756
&xlen);
1757
write_len = xlen;
1758
1759
/* adjust len downward if it goes beyond current object */
1760
if (pos + len > write_pos + write_len)
1761
len = write_pos + write_len - pos;
1762
1763
/*
1764
* If we had to adjust the length or position to align with a
1765
* crypto block, then we must do a read/modify/write cycle. We
1766
* use a version assertion to redrive the thing if something
1767
* changes in between.
1768
*/
1769
first = pos != write_pos;
1770
last = (pos + len) != (write_pos + write_len);
1771
rmw = first || last;
1772
1773
doutc(cl, "ino %llx %lld~%llu adjusted %lld~%llu -- %srmw\n",
1774
ci->i_vino.ino, pos, len, write_pos, write_len,
1775
rmw ? "" : "no ");
1776
1777
/*
1778
* The data is emplaced into the page as it would be if it were
1779
* in an array of pagecache pages.
1780
*/
1781
num_pages = calc_pages_for(write_pos, write_len);
1782
pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
1783
if (IS_ERR(pages)) {
1784
ret = PTR_ERR(pages);
1785
break;
1786
}
1787
1788
/* Do we need to preload the pages? */
1789
if (rmw) {
1790
u64 first_pos = write_pos;
1791
u64 last_pos = (write_pos + write_len) - CEPH_FSCRYPT_BLOCK_SIZE;
1792
u64 read_len = CEPH_FSCRYPT_BLOCK_SIZE;
1793
struct ceph_osd_req_op *op;
1794
1795
/* We should only need to do this for encrypted inodes */
1796
WARN_ON_ONCE(!IS_ENCRYPTED(inode));
1797
1798
/* No need to do two reads if first and last blocks are same */
1799
if (first && last_pos == first_pos)
1800
last = false;
1801
1802
/*
1803
* Allocate a read request for one or two extents,
1804
* depending on how the request was aligned.
1805
*/
1806
req = ceph_osdc_new_request(osdc, &ci->i_layout,
1807
ci->i_vino, first ? first_pos : last_pos,
1808
&read_len, 0, (first && last) ? 2 : 1,
1809
CEPH_OSD_OP_SPARSE_READ, CEPH_OSD_FLAG_READ,
1810
NULL, ci->i_truncate_seq,
1811
ci->i_truncate_size, false);
1812
if (IS_ERR(req)) {
1813
ceph_release_page_vector(pages, num_pages);
1814
ret = PTR_ERR(req);
1815
break;
1816
}
1817
1818
/* Something is misaligned! */
1819
if (read_len != CEPH_FSCRYPT_BLOCK_SIZE) {
1820
ceph_osdc_put_request(req);
1821
ceph_release_page_vector(pages, num_pages);
1822
ret = -EIO;
1823
break;
1824
}
1825
1826
/* Add extent for first block? */
1827
op = &req->r_ops[0];
1828
1829
if (first) {
1830
osd_req_op_extent_osd_data_pages(req, 0, pages,
1831
CEPH_FSCRYPT_BLOCK_SIZE,
1832
offset_in_page(first_pos),
1833
false, false);
1834
/* We only expect a single extent here */
1835
ret = __ceph_alloc_sparse_ext_map(op, 1);
1836
if (ret) {
1837
ceph_osdc_put_request(req);
1838
ceph_release_page_vector(pages, num_pages);
1839
break;
1840
}
1841
}
1842
1843
/* Add extent for last block */
1844
if (last) {
1845
/* Init the other extent if first extent has been used */
1846
if (first) {
1847
op = &req->r_ops[1];
1848
osd_req_op_extent_init(req, 1,
1849
CEPH_OSD_OP_SPARSE_READ,
1850
last_pos, CEPH_FSCRYPT_BLOCK_SIZE,
1851
ci->i_truncate_size,
1852
ci->i_truncate_seq);
1853
}
1854
1855
ret = __ceph_alloc_sparse_ext_map(op, 1);
1856
if (ret) {
1857
ceph_osdc_put_request(req);
1858
ceph_release_page_vector(pages, num_pages);
1859
break;
1860
}
1861
1862
osd_req_op_extent_osd_data_pages(req, first ? 1 : 0,
1863
&pages[num_pages - 1],
1864
CEPH_FSCRYPT_BLOCK_SIZE,
1865
offset_in_page(last_pos),
1866
false, false);
1867
}
1868
1869
ceph_osdc_start_request(osdc, req);
1870
ret = ceph_osdc_wait_request(osdc, req);
1871
1872
/* FIXME: length field is wrong if there are 2 extents */
1873
ceph_update_read_metrics(&fsc->mdsc->metric,
1874
req->r_start_latency,
1875
req->r_end_latency,
1876
read_len, ret);
1877
1878
/* Ok if object is not already present */
1879
if (ret == -ENOENT) {
1880
/*
1881
* If there is no object, then we can't assert
1882
* on its version. Set it to 0, and we'll use an
1883
* exclusive create instead.
1884
*/
1885
ceph_osdc_put_request(req);
1886
ret = 0;
1887
1888
/*
1889
* zero out the soon-to-be uncopied parts of the
1890
* first and last pages.
1891
*/
1892
if (first)
1893
zero_user_segment(pages[0], 0,
1894
offset_in_page(first_pos));
1895
if (last)
1896
zero_user_segment(pages[num_pages - 1],
1897
offset_in_page(last_pos),
1898
PAGE_SIZE);
1899
} else {
1900
if (ret < 0) {
1901
ceph_osdc_put_request(req);
1902
ceph_release_page_vector(pages, num_pages);
1903
break;
1904
}
1905
1906
op = &req->r_ops[0];
1907
if (op->extent.sparse_ext_cnt == 0) {
1908
if (first)
1909
zero_user_segment(pages[0], 0,
1910
offset_in_page(first_pos));
1911
else
1912
zero_user_segment(pages[num_pages - 1],
1913
offset_in_page(last_pos),
1914
PAGE_SIZE);
1915
} else if (op->extent.sparse_ext_cnt != 1 ||
1916
ceph_sparse_ext_map_end(op) !=
1917
CEPH_FSCRYPT_BLOCK_SIZE) {
1918
ret = -EIO;
1919
ceph_osdc_put_request(req);
1920
ceph_release_page_vector(pages, num_pages);
1921
break;
1922
}
1923
1924
if (first && last) {
1925
op = &req->r_ops[1];
1926
if (op->extent.sparse_ext_cnt == 0) {
1927
zero_user_segment(pages[num_pages - 1],
1928
offset_in_page(last_pos),
1929
PAGE_SIZE);
1930
} else if (op->extent.sparse_ext_cnt != 1 ||
1931
ceph_sparse_ext_map_end(op) !=
1932
CEPH_FSCRYPT_BLOCK_SIZE) {
1933
ret = -EIO;
1934
ceph_osdc_put_request(req);
1935
ceph_release_page_vector(pages, num_pages);
1936
break;
1937
}
1938
}
1939
1940
/* Grab assert version. It must be non-zero. */
1941
assert_ver = req->r_version;
1942
WARN_ON_ONCE(ret > 0 && assert_ver == 0);
1943
1944
ceph_osdc_put_request(req);
1945
if (first) {
1946
ret = ceph_fscrypt_decrypt_block_inplace(inode,
1947
pages[0], CEPH_FSCRYPT_BLOCK_SIZE,
1948
offset_in_page(first_pos),
1949
first_pos >> CEPH_FSCRYPT_BLOCK_SHIFT);
1950
if (ret < 0) {
1951
ceph_release_page_vector(pages, num_pages);
1952
break;
1953
}
1954
}
1955
if (last) {
1956
ret = ceph_fscrypt_decrypt_block_inplace(inode,
1957
pages[num_pages - 1],
1958
CEPH_FSCRYPT_BLOCK_SIZE,
1959
offset_in_page(last_pos),
1960
last_pos >> CEPH_FSCRYPT_BLOCK_SHIFT);
1961
if (ret < 0) {
1962
ceph_release_page_vector(pages, num_pages);
1963
break;
1964
}
1965
}
1966
}
1967
}
1968
1969
left = len;
1970
off = offset_in_page(pos);
1971
for (n = 0; n < num_pages; n++) {
1972
size_t plen = min_t(size_t, left, PAGE_SIZE - off);
1973
1974
/* copy the data */
1975
ret = copy_page_from_iter(pages[n], off, plen, from);
1976
if (ret != plen) {
1977
ret = -EFAULT;
1978
break;
1979
}
1980
off = 0;
1981
left -= ret;
1982
}
1983
if (ret < 0) {
1984
doutc(cl, "write failed with %d\n", ret);
1985
ceph_release_page_vector(pages, num_pages);
1986
break;
1987
}
1988
1989
if (IS_ENCRYPTED(inode)) {
1990
ret = ceph_fscrypt_encrypt_pages(inode, pages,
1991
write_pos, write_len);
1992
if (ret < 0) {
1993
doutc(cl, "encryption failed with %d\n", ret);
1994
ceph_release_page_vector(pages, num_pages);
1995
break;
1996
}
1997
}
1998
1999
req = ceph_osdc_new_request(osdc, &ci->i_layout,
2000
ci->i_vino, write_pos, &write_len,
2001
rmw ? 1 : 0, rmw ? 2 : 1,
2002
CEPH_OSD_OP_WRITE,
2003
CEPH_OSD_FLAG_WRITE,
2004
snapc, ci->i_truncate_seq,
2005
ci->i_truncate_size, false);
2006
if (IS_ERR(req)) {
2007
ret = PTR_ERR(req);
2008
ceph_release_page_vector(pages, num_pages);
2009
break;
2010
}
2011
2012
doutc(cl, "write op %lld~%llu\n", write_pos, write_len);
2013
osd_req_op_extent_osd_data_pages(req, rmw ? 1 : 0, pages, write_len,
2014
offset_in_page(write_pos), false,
2015
true);
2016
req->r_inode = inode;
2017
req->r_mtime = mtime;
2018
2019
/* Set up the assertion */
2020
if (rmw) {
2021
/*
2022
* Set up the assertion. If we don't have a version
2023
* number, then the object doesn't exist yet. Use an
2024
* exclusive create instead of a version assertion in
2025
* that case.
2026
*/
2027
if (assert_ver) {
2028
osd_req_op_init(req, 0, CEPH_OSD_OP_ASSERT_VER, 0);
2029
req->r_ops[0].assert_ver.ver = assert_ver;
2030
} else {
2031
osd_req_op_init(req, 0, CEPH_OSD_OP_CREATE,
2032
CEPH_OSD_OP_FLAG_EXCL);
2033
}
2034
}
2035
2036
ceph_osdc_start_request(osdc, req);
2037
ret = ceph_osdc_wait_request(osdc, req);
2038
2039
ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
2040
req->r_end_latency, len, ret);
2041
ceph_osdc_put_request(req);
2042
if (ret != 0) {
2043
doutc(cl, "osd write returned %d\n", ret);
2044
/* Version changed! Must re-do the rmw cycle */
2045
if ((assert_ver && (ret == -ERANGE || ret == -EOVERFLOW)) ||
2046
(!assert_ver && ret == -EEXIST)) {
2047
/* We should only ever see this on a rmw */
2048
WARN_ON_ONCE(!rmw);
2049
2050
/* The version should never go backward */
2051
WARN_ON_ONCE(ret == -EOVERFLOW);
2052
2053
*from = saved_iter;
2054
2055
/* FIXME: limit number of times we loop? */
2056
continue;
2057
}
2058
ceph_set_error_write(ci);
2059
break;
2060
}
2061
2062
ceph_clear_error_write(ci);
2063
2064
/*
2065
* We successfully wrote to a range of the file. Declare
2066
* that region of the pagecache invalid.
2067
*/
2068
ret = invalidate_inode_pages2_range(
2069
inode->i_mapping,
2070
pos >> PAGE_SHIFT,
2071
(pos + len - 1) >> PAGE_SHIFT);
2072
if (ret < 0) {
2073
doutc(cl, "invalidate_inode_pages2_range returned %d\n",
2074
ret);
2075
ret = 0;
2076
}
2077
pos += len;
2078
written += len;
2079
doutc(cl, "written %d\n", written);
2080
if (pos > i_size_read(inode)) {
2081
check_caps = ceph_inode_set_size(inode, pos);
2082
if (check_caps)
2083
ceph_check_caps(ceph_inode(inode),
2084
CHECK_CAPS_AUTHONLY);
2085
}
2086
2087
}
2088
2089
if (ret != -EOLDSNAPC && written > 0) {
2090
ret = written;
2091
iocb->ki_pos = pos;
2092
}
2093
doutc(cl, "returning %d\n", ret);
2094
return ret;
2095
}
2096
2097
/*
2098
* Wrap generic_file_aio_read with checks for cap bits on the inode.
2099
* Atomically grab references, so that those bits are not released
2100
* back to the MDS mid-read.
2101
*
2102
* Hmm, the sync read case isn't actually async... should it be?
2103
*/
2104
static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
2105
{
2106
struct file *filp = iocb->ki_filp;
2107
struct ceph_file_info *fi = filp->private_data;
2108
size_t len = iov_iter_count(to);
2109
struct inode *inode = file_inode(filp);
2110
struct ceph_inode_info *ci = ceph_inode(inode);
2111
bool direct_lock = iocb->ki_flags & IOCB_DIRECT;
2112
struct ceph_client *cl = ceph_inode_to_client(inode);
2113
ssize_t ret;
2114
int want = 0, got = 0;
2115
int retry_op = 0, read = 0;
2116
2117
again:
2118
doutc(cl, "%llu~%u trying to get caps on %p %llx.%llx\n",
2119
iocb->ki_pos, (unsigned)len, inode, ceph_vinop(inode));
2120
2121
if (ceph_inode_is_shutdown(inode))
2122
return -ESTALE;
2123
2124
if (direct_lock)
2125
ceph_start_io_direct(inode);
2126
else
2127
ceph_start_io_read(inode);
2128
2129
if (!(fi->flags & CEPH_F_SYNC) && !direct_lock)
2130
want |= CEPH_CAP_FILE_CACHE;
2131
if (fi->fmode & CEPH_FILE_MODE_LAZY)
2132
want |= CEPH_CAP_FILE_LAZYIO;
2133
2134
ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1, &got);
2135
if (ret < 0) {
2136
if (direct_lock)
2137
ceph_end_io_direct(inode);
2138
else
2139
ceph_end_io_read(inode);
2140
return ret;
2141
}
2142
2143
if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
2144
(iocb->ki_flags & IOCB_DIRECT) ||
2145
(fi->flags & CEPH_F_SYNC)) {
2146
2147
doutc(cl, "sync %p %llx.%llx %llu~%u got cap refs on %s\n",
2148
inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
2149
ceph_cap_string(got));
2150
2151
if (!ceph_has_inline_data(ci)) {
2152
if (!retry_op &&
2153
(iocb->ki_flags & IOCB_DIRECT) &&
2154
!IS_ENCRYPTED(inode)) {
2155
ret = ceph_direct_read_write(iocb, to,
2156
NULL, NULL);
2157
if (ret >= 0 && ret < len)
2158
retry_op = CHECK_EOF;
2159
} else {
2160
ret = ceph_sync_read(iocb, to, &retry_op);
2161
}
2162
} else {
2163
retry_op = READ_INLINE;
2164
}
2165
} else {
2166
CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
2167
doutc(cl, "async %p %llx.%llx %llu~%u got cap refs on %s\n",
2168
inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
2169
ceph_cap_string(got));
2170
ceph_add_rw_context(fi, &rw_ctx);
2171
ret = generic_file_read_iter(iocb, to);
2172
ceph_del_rw_context(fi, &rw_ctx);
2173
}
2174
2175
doutc(cl, "%p %llx.%llx dropping cap refs on %s = %d\n",
2176
inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
2177
ceph_put_cap_refs(ci, got);
2178
2179
if (direct_lock)
2180
ceph_end_io_direct(inode);
2181
else
2182
ceph_end_io_read(inode);
2183
2184
if (retry_op > HAVE_RETRIED && ret >= 0) {
2185
int statret;
2186
struct page *page = NULL;
2187
loff_t i_size;
2188
int mask = CEPH_STAT_CAP_SIZE;
2189
if (retry_op == READ_INLINE) {
2190
page = __page_cache_alloc(GFP_KERNEL);
2191
if (!page)
2192
return -ENOMEM;
2193
2194
mask = CEPH_STAT_CAP_INLINE_DATA;
2195
}
2196
2197
statret = __ceph_do_getattr(inode, page, mask, !!page);
2198
if (statret < 0) {
2199
if (page)
2200
__free_page(page);
2201
if (statret == -ENODATA) {
2202
BUG_ON(retry_op != READ_INLINE);
2203
goto again;
2204
}
2205
return statret;
2206
}
2207
2208
i_size = i_size_read(inode);
2209
if (retry_op == READ_INLINE) {
2210
BUG_ON(ret > 0 || read > 0);
2211
if (iocb->ki_pos < i_size &&
2212
iocb->ki_pos < PAGE_SIZE) {
2213
loff_t end = min_t(loff_t, i_size,
2214
iocb->ki_pos + len);
2215
end = min_t(loff_t, end, PAGE_SIZE);
2216
if (statret < end)
2217
zero_user_segment(page, statret, end);
2218
ret = copy_page_to_iter(page,
2219
iocb->ki_pos & ~PAGE_MASK,
2220
end - iocb->ki_pos, to);
2221
iocb->ki_pos += ret;
2222
read += ret;
2223
}
2224
if (iocb->ki_pos < i_size && read < len) {
2225
size_t zlen = min_t(size_t, len - read,
2226
i_size - iocb->ki_pos);
2227
ret = iov_iter_zero(zlen, to);
2228
iocb->ki_pos += ret;
2229
read += ret;
2230
}
2231
__free_pages(page, 0);
2232
return read;
2233
}
2234
2235
/* hit EOF or hole? */
2236
if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
2237
ret < len) {
2238
doutc(cl, "may hit hole, ppos %lld < size %lld, reading more\n",
2239
iocb->ki_pos, i_size);
2240
2241
read += ret;
2242
len -= ret;
2243
retry_op = HAVE_RETRIED;
2244
goto again;
2245
}
2246
}
2247
2248
if (ret >= 0)
2249
ret += read;
2250
2251
return ret;
2252
}
2253
2254
/*
2255
* Wrap filemap_splice_read with checks for cap bits on the inode.
2256
* Atomically grab references, so that those bits are not released
2257
* back to the MDS mid-read.
2258
*/
2259
static ssize_t ceph_splice_read(struct file *in, loff_t *ppos,
2260
struct pipe_inode_info *pipe,
2261
size_t len, unsigned int flags)
2262
{
2263
struct ceph_file_info *fi = in->private_data;
2264
struct inode *inode = file_inode(in);
2265
struct ceph_inode_info *ci = ceph_inode(inode);
2266
ssize_t ret;
2267
int want = 0, got = 0;
2268
CEPH_DEFINE_RW_CONTEXT(rw_ctx, 0);
2269
2270
dout("splice_read %p %llx.%llx %llu~%zu trying to get caps on %p\n",
2271
inode, ceph_vinop(inode), *ppos, len, inode);
2272
2273
if (ceph_inode_is_shutdown(inode))
2274
return -ESTALE;
2275
2276
if (ceph_has_inline_data(ci) ||
2277
(fi->flags & CEPH_F_SYNC))
2278
return copy_splice_read(in, ppos, pipe, len, flags);
2279
2280
ceph_start_io_read(inode);
2281
2282
want = CEPH_CAP_FILE_CACHE;
2283
if (fi->fmode & CEPH_FILE_MODE_LAZY)
2284
want |= CEPH_CAP_FILE_LAZYIO;
2285
2286
ret = ceph_get_caps(in, CEPH_CAP_FILE_RD, want, -1, &got);
2287
if (ret < 0)
2288
goto out_end;
2289
2290
if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) == 0) {
2291
dout("splice_read/sync %p %llx.%llx %llu~%zu got cap refs on %s\n",
2292
inode, ceph_vinop(inode), *ppos, len,
2293
ceph_cap_string(got));
2294
2295
ceph_put_cap_refs(ci, got);
2296
ceph_end_io_read(inode);
2297
return copy_splice_read(in, ppos, pipe, len, flags);
2298
}
2299
2300
dout("splice_read %p %llx.%llx %llu~%zu got cap refs on %s\n",
2301
inode, ceph_vinop(inode), *ppos, len, ceph_cap_string(got));
2302
2303
rw_ctx.caps = got;
2304
ceph_add_rw_context(fi, &rw_ctx);
2305
ret = filemap_splice_read(in, ppos, pipe, len, flags);
2306
ceph_del_rw_context(fi, &rw_ctx);
2307
2308
dout("splice_read %p %llx.%llx dropping cap refs on %s = %zd\n",
2309
inode, ceph_vinop(inode), ceph_cap_string(got), ret);
2310
2311
ceph_put_cap_refs(ci, got);
2312
out_end:
2313
ceph_end_io_read(inode);
2314
return ret;
2315
}
2316
2317
/*
2318
* Take cap references to avoid releasing caps to MDS mid-write.
2319
*
2320
* If we are synchronous, and write with an old snap context, the OSD
2321
* may return EOLDSNAPC. In that case, retry the write.. _after_
2322
* dropping our cap refs and allowing the pending snap to logically
2323
* complete _before_ this write occurs.
2324
*
2325
* If we are near ENOSPC, write synchronously.
2326
*/
2327
static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
2328
{
2329
struct file *file = iocb->ki_filp;
2330
struct ceph_file_info *fi = file->private_data;
2331
struct inode *inode = file_inode(file);
2332
struct ceph_inode_info *ci = ceph_inode(inode);
2333
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
2334
struct ceph_client *cl = fsc->client;
2335
struct ceph_osd_client *osdc = &fsc->client->osdc;
2336
struct ceph_cap_flush *prealloc_cf;
2337
ssize_t count, written = 0;
2338
int err, want = 0, got;
2339
bool direct_lock = false;
2340
u32 map_flags;
2341
u64 pool_flags;
2342
loff_t pos;
2343
loff_t limit = max(i_size_read(inode), fsc->max_file_size);
2344
2345
if (ceph_inode_is_shutdown(inode))
2346
return -ESTALE;
2347
2348
if (ceph_snap(inode) != CEPH_NOSNAP)
2349
return -EROFS;
2350
2351
prealloc_cf = ceph_alloc_cap_flush();
2352
if (!prealloc_cf)
2353
return -ENOMEM;
2354
2355
if ((iocb->ki_flags & (IOCB_DIRECT | IOCB_APPEND)) == IOCB_DIRECT)
2356
direct_lock = true;
2357
2358
retry_snap:
2359
if (direct_lock)
2360
ceph_start_io_direct(inode);
2361
else
2362
ceph_start_io_write(inode);
2363
2364
if (iocb->ki_flags & IOCB_APPEND) {
2365
err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
2366
if (err < 0)
2367
goto out;
2368
}
2369
2370
err = generic_write_checks(iocb, from);
2371
if (err <= 0)
2372
goto out;
2373
2374
pos = iocb->ki_pos;
2375
if (unlikely(pos >= limit)) {
2376
err = -EFBIG;
2377
goto out;
2378
} else {
2379
iov_iter_truncate(from, limit - pos);
2380
}
2381
2382
count = iov_iter_count(from);
2383
if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
2384
err = -EDQUOT;
2385
goto out;
2386
}
2387
2388
down_read(&osdc->lock);
2389
map_flags = osdc->osdmap->flags;
2390
pool_flags = ceph_pg_pool_flags(osdc->osdmap, ci->i_layout.pool_id);
2391
up_read(&osdc->lock);
2392
if ((map_flags & CEPH_OSDMAP_FULL) ||
2393
(pool_flags & CEPH_POOL_FLAG_FULL)) {
2394
err = -ENOSPC;
2395
goto out;
2396
}
2397
2398
err = file_remove_privs(file);
2399
if (err)
2400
goto out;
2401
2402
doutc(cl, "%p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
2403
inode, ceph_vinop(inode), pos, count,
2404
i_size_read(inode));
2405
if (!(fi->flags & CEPH_F_SYNC) && !direct_lock)
2406
want |= CEPH_CAP_FILE_BUFFER;
2407
if (fi->fmode & CEPH_FILE_MODE_LAZY)
2408
want |= CEPH_CAP_FILE_LAZYIO;
2409
got = 0;
2410
err = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, pos + count, &got);
2411
if (err < 0)
2412
goto out;
2413
2414
err = file_update_time(file);
2415
if (err)
2416
goto out_caps;
2417
2418
inode_inc_iversion_raw(inode);
2419
2420
doutc(cl, "%p %llx.%llx %llu~%zd got cap refs on %s\n",
2421
inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
2422
2423
if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
2424
(iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
2425
(ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
2426
struct ceph_snap_context *snapc;
2427
struct iov_iter data;
2428
2429
spin_lock(&ci->i_ceph_lock);
2430
if (__ceph_have_pending_cap_snap(ci)) {
2431
struct ceph_cap_snap *capsnap =
2432
list_last_entry(&ci->i_cap_snaps,
2433
struct ceph_cap_snap,
2434
ci_item);
2435
snapc = ceph_get_snap_context(capsnap->context);
2436
} else {
2437
BUG_ON(!ci->i_head_snapc);
2438
snapc = ceph_get_snap_context(ci->i_head_snapc);
2439
}
2440
spin_unlock(&ci->i_ceph_lock);
2441
2442
/* we might need to revert back to that point */
2443
data = *from;
2444
if ((iocb->ki_flags & IOCB_DIRECT) && !IS_ENCRYPTED(inode))
2445
written = ceph_direct_read_write(iocb, &data, snapc,
2446
&prealloc_cf);
2447
else
2448
written = ceph_sync_write(iocb, &data, pos, snapc);
2449
if (direct_lock)
2450
ceph_end_io_direct(inode);
2451
else
2452
ceph_end_io_write(inode);
2453
if (written > 0)
2454
iov_iter_advance(from, written);
2455
ceph_put_snap_context(snapc);
2456
} else {
2457
/*
2458
* No need to acquire the i_truncate_mutex. Because
2459
* the MDS revokes Fwb caps before sending truncate
2460
* message to us. We can't get Fwb cap while there
2461
* are pending vmtruncate. So write and vmtruncate
2462
* can not run at the same time
2463
*/
2464
written = generic_perform_write(iocb, from);
2465
ceph_end_io_write(inode);
2466
}
2467
2468
if (written >= 0) {
2469
int dirty;
2470
2471
spin_lock(&ci->i_ceph_lock);
2472
dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
2473
&prealloc_cf);
2474
spin_unlock(&ci->i_ceph_lock);
2475
if (dirty)
2476
__mark_inode_dirty(inode, dirty);
2477
if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
2478
ceph_check_caps(ci, CHECK_CAPS_FLUSH);
2479
}
2480
2481
doutc(cl, "%p %llx.%llx %llu~%u dropping cap refs on %s\n",
2482
inode, ceph_vinop(inode), pos, (unsigned)count,
2483
ceph_cap_string(got));
2484
ceph_put_cap_refs(ci, got);
2485
2486
if (written == -EOLDSNAPC) {
2487
doutc(cl, "%p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
2488
inode, ceph_vinop(inode), pos, (unsigned)count);
2489
goto retry_snap;
2490
}
2491
2492
if (written >= 0) {
2493
if ((map_flags & CEPH_OSDMAP_NEARFULL) ||
2494
(pool_flags & CEPH_POOL_FLAG_NEARFULL))
2495
iocb->ki_flags |= IOCB_DSYNC;
2496
written = generic_write_sync(iocb, written);
2497
}
2498
2499
goto out_unlocked;
2500
out_caps:
2501
ceph_put_cap_refs(ci, got);
2502
out:
2503
if (direct_lock)
2504
ceph_end_io_direct(inode);
2505
else
2506
ceph_end_io_write(inode);
2507
out_unlocked:
2508
ceph_free_cap_flush(prealloc_cf);
2509
return written ? written : err;
2510
}
2511
2512
/*
2513
* llseek. be sure to verify file size on SEEK_END.
2514
*/
2515
static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
2516
{
2517
if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
2518
struct inode *inode = file_inode(file);
2519
int ret;
2520
2521
ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
2522
if (ret < 0)
2523
return ret;
2524
}
2525
return generic_file_llseek(file, offset, whence);
2526
}
2527
2528
static inline void ceph_zero_partial_page(struct inode *inode,
2529
loff_t offset, size_t size)
2530
{
2531
struct folio *folio;
2532
2533
folio = filemap_lock_folio(inode->i_mapping, offset >> PAGE_SHIFT);
2534
if (IS_ERR(folio))
2535
return;
2536
2537
folio_wait_writeback(folio);
2538
folio_zero_range(folio, offset_in_folio(folio, offset), size);
2539
folio_unlock(folio);
2540
folio_put(folio);
2541
}
2542
2543
static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
2544
loff_t length)
2545
{
2546
loff_t nearly = round_up(offset, PAGE_SIZE);
2547
if (offset < nearly) {
2548
loff_t size = nearly - offset;
2549
if (length < size)
2550
size = length;
2551
ceph_zero_partial_page(inode, offset, size);
2552
offset += size;
2553
length -= size;
2554
}
2555
if (length >= PAGE_SIZE) {
2556
loff_t size = round_down(length, PAGE_SIZE);
2557
truncate_pagecache_range(inode, offset, offset + size - 1);
2558
offset += size;
2559
length -= size;
2560
}
2561
if (length)
2562
ceph_zero_partial_page(inode, offset, length);
2563
}
2564
2565
static int ceph_zero_partial_object(struct inode *inode,
2566
loff_t offset, loff_t *length)
2567
{
2568
struct ceph_inode_info *ci = ceph_inode(inode);
2569
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
2570
struct ceph_osd_request *req;
2571
int ret = 0;
2572
loff_t zero = 0;
2573
int op;
2574
2575
if (ceph_inode_is_shutdown(inode))
2576
return -EIO;
2577
2578
if (!length) {
2579
op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
2580
length = &zero;
2581
} else {
2582
op = CEPH_OSD_OP_ZERO;
2583
}
2584
2585
req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
2586
ceph_vino(inode),
2587
offset, length,
2588
0, 1, op,
2589
CEPH_OSD_FLAG_WRITE,
2590
NULL, 0, 0, false);
2591
if (IS_ERR(req)) {
2592
ret = PTR_ERR(req);
2593
goto out;
2594
}
2595
2596
req->r_mtime = inode_get_mtime(inode);
2597
ceph_osdc_start_request(&fsc->client->osdc, req);
2598
ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
2599
if (ret == -ENOENT)
2600
ret = 0;
2601
ceph_osdc_put_request(req);
2602
2603
out:
2604
return ret;
2605
}
2606
2607
static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
2608
{
2609
int ret = 0;
2610
struct ceph_inode_info *ci = ceph_inode(inode);
2611
s32 stripe_unit = ci->i_layout.stripe_unit;
2612
s32 stripe_count = ci->i_layout.stripe_count;
2613
s32 object_size = ci->i_layout.object_size;
2614
u64 object_set_size = (u64) object_size * stripe_count;
2615
u64 nearly, t;
2616
2617
/* round offset up to next period boundary */
2618
nearly = offset + object_set_size - 1;
2619
t = nearly;
2620
nearly -= do_div(t, object_set_size);
2621
2622
while (length && offset < nearly) {
2623
loff_t size = length;
2624
ret = ceph_zero_partial_object(inode, offset, &size);
2625
if (ret < 0)
2626
return ret;
2627
offset += size;
2628
length -= size;
2629
}
2630
while (length >= object_set_size) {
2631
int i;
2632
loff_t pos = offset;
2633
for (i = 0; i < stripe_count; ++i) {
2634
ret = ceph_zero_partial_object(inode, pos, NULL);
2635
if (ret < 0)
2636
return ret;
2637
pos += stripe_unit;
2638
}
2639
offset += object_set_size;
2640
length -= object_set_size;
2641
}
2642
while (length) {
2643
loff_t size = length;
2644
ret = ceph_zero_partial_object(inode, offset, &size);
2645
if (ret < 0)
2646
return ret;
2647
offset += size;
2648
length -= size;
2649
}
2650
return ret;
2651
}
2652
2653
static long ceph_fallocate(struct file *file, int mode,
2654
loff_t offset, loff_t length)
2655
{
2656
struct ceph_file_info *fi = file->private_data;
2657
struct inode *inode = file_inode(file);
2658
struct ceph_inode_info *ci = ceph_inode(inode);
2659
struct ceph_cap_flush *prealloc_cf;
2660
struct ceph_client *cl = ceph_inode_to_client(inode);
2661
int want, got = 0;
2662
int dirty;
2663
int ret = 0;
2664
loff_t endoff = 0;
2665
loff_t size;
2666
2667
doutc(cl, "%p %llx.%llx mode %x, offset %llu length %llu\n",
2668
inode, ceph_vinop(inode), mode, offset, length);
2669
2670
if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2671
return -EOPNOTSUPP;
2672
2673
if (!S_ISREG(inode->i_mode))
2674
return -EOPNOTSUPP;
2675
2676
if (IS_ENCRYPTED(inode))
2677
return -EOPNOTSUPP;
2678
2679
prealloc_cf = ceph_alloc_cap_flush();
2680
if (!prealloc_cf)
2681
return -ENOMEM;
2682
2683
inode_lock(inode);
2684
2685
if (ceph_snap(inode) != CEPH_NOSNAP) {
2686
ret = -EROFS;
2687
goto unlock;
2688
}
2689
2690
size = i_size_read(inode);
2691
2692
/* Are we punching a hole beyond EOF? */
2693
if (offset >= size)
2694
goto unlock;
2695
if ((offset + length) > size)
2696
length = size - offset;
2697
2698
if (fi->fmode & CEPH_FILE_MODE_LAZY)
2699
want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
2700
else
2701
want = CEPH_CAP_FILE_BUFFER;
2702
2703
ret = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, endoff, &got);
2704
if (ret < 0)
2705
goto unlock;
2706
2707
ret = file_modified(file);
2708
if (ret)
2709
goto put_caps;
2710
2711
filemap_invalidate_lock(inode->i_mapping);
2712
ceph_fscache_invalidate(inode, false);
2713
ceph_zero_pagecache_range(inode, offset, length);
2714
ret = ceph_zero_objects(inode, offset, length);
2715
2716
if (!ret) {
2717
spin_lock(&ci->i_ceph_lock);
2718
dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
2719
&prealloc_cf);
2720
spin_unlock(&ci->i_ceph_lock);
2721
if (dirty)
2722
__mark_inode_dirty(inode, dirty);
2723
}
2724
filemap_invalidate_unlock(inode->i_mapping);
2725
2726
put_caps:
2727
ceph_put_cap_refs(ci, got);
2728
unlock:
2729
inode_unlock(inode);
2730
ceph_free_cap_flush(prealloc_cf);
2731
return ret;
2732
}
2733
2734
/*
2735
* This function tries to get FILE_WR capabilities for dst_ci and FILE_RD for
2736
* src_ci. Two attempts are made to obtain both caps, and an error is return if
2737
* this fails; zero is returned on success.
2738
*/
2739
static int get_rd_wr_caps(struct file *src_filp, int *src_got,
2740
struct file *dst_filp,
2741
loff_t dst_endoff, int *dst_got)
2742
{
2743
int ret = 0;
2744
bool retrying = false;
2745
2746
retry_caps:
2747
ret = ceph_get_caps(dst_filp, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER,
2748
dst_endoff, dst_got);
2749
if (ret < 0)
2750
return ret;
2751
2752
/*
2753
* Since we're already holding the FILE_WR capability for the dst file,
2754
* we would risk a deadlock by using ceph_get_caps. Thus, we'll do some
2755
* retry dance instead to try to get both capabilities.
2756
*/
2757
ret = ceph_try_get_caps(file_inode(src_filp),
2758
CEPH_CAP_FILE_RD, CEPH_CAP_FILE_SHARED,
2759
false, src_got);
2760
if (ret <= 0) {
2761
/* Start by dropping dst_ci caps and getting src_ci caps */
2762
ceph_put_cap_refs(ceph_inode(file_inode(dst_filp)), *dst_got);
2763
if (retrying) {
2764
if (!ret)
2765
/* ceph_try_get_caps masks EAGAIN */
2766
ret = -EAGAIN;
2767
return ret;
2768
}
2769
ret = ceph_get_caps(src_filp, CEPH_CAP_FILE_RD,
2770
CEPH_CAP_FILE_SHARED, -1, src_got);
2771
if (ret < 0)
2772
return ret;
2773
/*... drop src_ci caps too, and retry */
2774
ceph_put_cap_refs(ceph_inode(file_inode(src_filp)), *src_got);
2775
retrying = true;
2776
goto retry_caps;
2777
}
2778
return ret;
2779
}
2780
2781
static void put_rd_wr_caps(struct ceph_inode_info *src_ci, int src_got,
2782
struct ceph_inode_info *dst_ci, int dst_got)
2783
{
2784
ceph_put_cap_refs(src_ci, src_got);
2785
ceph_put_cap_refs(dst_ci, dst_got);
2786
}
2787
2788
/*
2789
* This function does several size-related checks, returning an error if:
2790
* - source file is smaller than off+len
2791
* - destination file size is not OK (inode_newsize_ok())
2792
* - max bytes quotas is exceeded
2793
*/
2794
static int is_file_size_ok(struct inode *src_inode, struct inode *dst_inode,
2795
loff_t src_off, loff_t dst_off, size_t len)
2796
{
2797
struct ceph_client *cl = ceph_inode_to_client(src_inode);
2798
loff_t size, endoff;
2799
2800
size = i_size_read(src_inode);
2801
/*
2802
* Don't copy beyond source file EOF. Instead of simply setting length
2803
* to (size - src_off), just drop to VFS default implementation, as the
2804
* local i_size may be stale due to other clients writing to the source
2805
* inode.
2806
*/
2807
if (src_off + len > size) {
2808
doutc(cl, "Copy beyond EOF (%llu + %zu > %llu)\n", src_off,
2809
len, size);
2810
return -EOPNOTSUPP;
2811
}
2812
size = i_size_read(dst_inode);
2813
2814
endoff = dst_off + len;
2815
if (inode_newsize_ok(dst_inode, endoff))
2816
return -EOPNOTSUPP;
2817
2818
if (ceph_quota_is_max_bytes_exceeded(dst_inode, endoff))
2819
return -EDQUOT;
2820
2821
return 0;
2822
}
2823
2824
static struct ceph_osd_request *
2825
ceph_alloc_copyfrom_request(struct ceph_osd_client *osdc,
2826
u64 src_snapid,
2827
struct ceph_object_id *src_oid,
2828
struct ceph_object_locator *src_oloc,
2829
struct ceph_object_id *dst_oid,
2830
struct ceph_object_locator *dst_oloc,
2831
u32 truncate_seq, u64 truncate_size)
2832
{
2833
struct ceph_osd_request *req;
2834
int ret;
2835
u32 src_fadvise_flags =
2836
CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2837
CEPH_OSD_OP_FLAG_FADVISE_NOCACHE;
2838
u32 dst_fadvise_flags =
2839
CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2840
CEPH_OSD_OP_FLAG_FADVISE_DONTNEED;
2841
2842
req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_KERNEL);
2843
if (!req)
2844
return ERR_PTR(-ENOMEM);
2845
2846
req->r_flags = CEPH_OSD_FLAG_WRITE;
2847
2848
ceph_oloc_copy(&req->r_t.base_oloc, dst_oloc);
2849
ceph_oid_copy(&req->r_t.base_oid, dst_oid);
2850
2851
ret = osd_req_op_copy_from_init(req, src_snapid, 0,
2852
src_oid, src_oloc,
2853
src_fadvise_flags,
2854
dst_fadvise_flags,
2855
truncate_seq,
2856
truncate_size,
2857
CEPH_OSD_COPY_FROM_FLAG_TRUNCATE_SEQ);
2858
if (ret)
2859
goto out;
2860
2861
ret = ceph_osdc_alloc_messages(req, GFP_KERNEL);
2862
if (ret)
2863
goto out;
2864
2865
return req;
2866
2867
out:
2868
ceph_osdc_put_request(req);
2869
return ERR_PTR(ret);
2870
}
2871
2872
static ssize_t ceph_do_objects_copy(struct ceph_inode_info *src_ci, u64 *src_off,
2873
struct ceph_inode_info *dst_ci, u64 *dst_off,
2874
struct ceph_fs_client *fsc,
2875
size_t len, unsigned int flags)
2876
{
2877
struct ceph_object_locator src_oloc, dst_oloc;
2878
struct ceph_object_id src_oid, dst_oid;
2879
struct ceph_osd_client *osdc;
2880
struct ceph_osd_request *req;
2881
size_t bytes = 0;
2882
u64 src_objnum, src_objoff, dst_objnum, dst_objoff;
2883
u32 src_objlen, dst_objlen;
2884
u32 object_size = src_ci->i_layout.object_size;
2885
struct ceph_client *cl = fsc->client;
2886
int ret;
2887
2888
src_oloc.pool = src_ci->i_layout.pool_id;
2889
src_oloc.pool_ns = ceph_try_get_string(src_ci->i_layout.pool_ns);
2890
dst_oloc.pool = dst_ci->i_layout.pool_id;
2891
dst_oloc.pool_ns = ceph_try_get_string(dst_ci->i_layout.pool_ns);
2892
osdc = &fsc->client->osdc;
2893
2894
while (len >= object_size) {
2895
ceph_calc_file_object_mapping(&src_ci->i_layout, *src_off,
2896
object_size, &src_objnum,
2897
&src_objoff, &src_objlen);
2898
ceph_calc_file_object_mapping(&dst_ci->i_layout, *dst_off,
2899
object_size, &dst_objnum,
2900
&dst_objoff, &dst_objlen);
2901
ceph_oid_init(&src_oid);
2902
ceph_oid_printf(&src_oid, "%llx.%08llx",
2903
src_ci->i_vino.ino, src_objnum);
2904
ceph_oid_init(&dst_oid);
2905
ceph_oid_printf(&dst_oid, "%llx.%08llx",
2906
dst_ci->i_vino.ino, dst_objnum);
2907
/* Do an object remote copy */
2908
req = ceph_alloc_copyfrom_request(osdc, src_ci->i_vino.snap,
2909
&src_oid, &src_oloc,
2910
&dst_oid, &dst_oloc,
2911
dst_ci->i_truncate_seq,
2912
dst_ci->i_truncate_size);
2913
if (IS_ERR(req))
2914
ret = PTR_ERR(req);
2915
else {
2916
ceph_osdc_start_request(osdc, req);
2917
ret = ceph_osdc_wait_request(osdc, req);
2918
ceph_update_copyfrom_metrics(&fsc->mdsc->metric,
2919
req->r_start_latency,
2920
req->r_end_latency,
2921
object_size, ret);
2922
ceph_osdc_put_request(req);
2923
}
2924
if (ret) {
2925
if (ret == -EOPNOTSUPP) {
2926
fsc->have_copy_from2 = false;
2927
pr_notice_client(cl,
2928
"OSDs don't support copy-from2; disabling copy offload\n");
2929
}
2930
doutc(cl, "returned %d\n", ret);
2931
if (!bytes)
2932
bytes = ret;
2933
goto out;
2934
}
2935
len -= object_size;
2936
bytes += object_size;
2937
*src_off += object_size;
2938
*dst_off += object_size;
2939
}
2940
2941
out:
2942
ceph_oloc_destroy(&src_oloc);
2943
ceph_oloc_destroy(&dst_oloc);
2944
return bytes;
2945
}
2946
2947
static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off,
2948
struct file *dst_file, loff_t dst_off,
2949
size_t len, unsigned int flags)
2950
{
2951
struct inode *src_inode = file_inode(src_file);
2952
struct inode *dst_inode = file_inode(dst_file);
2953
struct ceph_inode_info *src_ci = ceph_inode(src_inode);
2954
struct ceph_inode_info *dst_ci = ceph_inode(dst_inode);
2955
struct ceph_cap_flush *prealloc_cf;
2956
struct ceph_fs_client *src_fsc = ceph_inode_to_fs_client(src_inode);
2957
struct ceph_client *cl = src_fsc->client;
2958
loff_t size;
2959
ssize_t ret = -EIO, bytes;
2960
u64 src_objnum, dst_objnum, src_objoff, dst_objoff;
2961
u32 src_objlen, dst_objlen;
2962
int src_got = 0, dst_got = 0, err, dirty;
2963
2964
if (src_inode->i_sb != dst_inode->i_sb) {
2965
struct ceph_fs_client *dst_fsc = ceph_inode_to_fs_client(dst_inode);
2966
2967
if (ceph_fsid_compare(&src_fsc->client->fsid,
2968
&dst_fsc->client->fsid)) {
2969
dout("Copying files across clusters: src: %pU dst: %pU\n",
2970
&src_fsc->client->fsid, &dst_fsc->client->fsid);
2971
return -EXDEV;
2972
}
2973
}
2974
if (ceph_snap(dst_inode) != CEPH_NOSNAP)
2975
return -EROFS;
2976
2977
/*
2978
* Some of the checks below will return -EOPNOTSUPP, which will force a
2979
* fallback to the default VFS copy_file_range implementation. This is
2980
* desirable in several cases (for ex, the 'len' is smaller than the
2981
* size of the objects, or in cases where that would be more
2982
* efficient).
2983
*/
2984
2985
if (ceph_test_mount_opt(src_fsc, NOCOPYFROM))
2986
return -EOPNOTSUPP;
2987
2988
if (!src_fsc->have_copy_from2)
2989
return -EOPNOTSUPP;
2990
2991
/*
2992
* Striped file layouts require that we copy partial objects, but the
2993
* OSD copy-from operation only supports full-object copies. Limit
2994
* this to non-striped file layouts for now.
2995
*/
2996
if ((src_ci->i_layout.stripe_unit != dst_ci->i_layout.stripe_unit) ||
2997
(src_ci->i_layout.stripe_count != 1) ||
2998
(dst_ci->i_layout.stripe_count != 1) ||
2999
(src_ci->i_layout.object_size != dst_ci->i_layout.object_size)) {
3000
doutc(cl, "Invalid src/dst files layout\n");
3001
return -EOPNOTSUPP;
3002
}
3003
3004
/* Every encrypted inode gets its own key, so we can't offload them */
3005
if (IS_ENCRYPTED(src_inode) || IS_ENCRYPTED(dst_inode))
3006
return -EOPNOTSUPP;
3007
3008
if (len < src_ci->i_layout.object_size)
3009
return -EOPNOTSUPP; /* no remote copy will be done */
3010
3011
prealloc_cf = ceph_alloc_cap_flush();
3012
if (!prealloc_cf)
3013
return -ENOMEM;
3014
3015
/* Start by sync'ing the source and destination files */
3016
ret = file_write_and_wait_range(src_file, src_off, (src_off + len));
3017
if (ret < 0) {
3018
doutc(cl, "failed to write src file (%zd)\n", ret);
3019
goto out;
3020
}
3021
ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len));
3022
if (ret < 0) {
3023
doutc(cl, "failed to write dst file (%zd)\n", ret);
3024
goto out;
3025
}
3026
3027
/*
3028
* We need FILE_WR caps for dst_ci and FILE_RD for src_ci as other
3029
* clients may have dirty data in their caches. And OSDs know nothing
3030
* about caps, so they can't safely do the remote object copies.
3031
*/
3032
err = get_rd_wr_caps(src_file, &src_got,
3033
dst_file, (dst_off + len), &dst_got);
3034
if (err < 0) {
3035
doutc(cl, "get_rd_wr_caps returned %d\n", err);
3036
ret = -EOPNOTSUPP;
3037
goto out;
3038
}
3039
3040
ret = is_file_size_ok(src_inode, dst_inode, src_off, dst_off, len);
3041
if (ret < 0)
3042
goto out_caps;
3043
3044
/* Drop dst file cached pages */
3045
ceph_fscache_invalidate(dst_inode, false);
3046
ret = invalidate_inode_pages2_range(dst_inode->i_mapping,
3047
dst_off >> PAGE_SHIFT,
3048
(dst_off + len) >> PAGE_SHIFT);
3049
if (ret < 0) {
3050
doutc(cl, "Failed to invalidate inode pages (%zd)\n",
3051
ret);
3052
ret = 0; /* XXX */
3053
}
3054
ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
3055
src_ci->i_layout.object_size,
3056
&src_objnum, &src_objoff, &src_objlen);
3057
ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
3058
dst_ci->i_layout.object_size,
3059
&dst_objnum, &dst_objoff, &dst_objlen);
3060
/* object-level offsets need to the same */
3061
if (src_objoff != dst_objoff) {
3062
ret = -EOPNOTSUPP;
3063
goto out_caps;
3064
}
3065
3066
/*
3067
* Do a manual copy if the object offset isn't object aligned.
3068
* 'src_objlen' contains the bytes left until the end of the object,
3069
* starting at the src_off
3070
*/
3071
if (src_objoff) {
3072
doutc(cl, "Initial partial copy of %u bytes\n", src_objlen);
3073
3074
/*
3075
* we need to temporarily drop all caps as we'll be calling
3076
* {read,write}_iter, which will get caps again.
3077
*/
3078
put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
3079
ret = splice_file_range(src_file, &src_off, dst_file, &dst_off,
3080
src_objlen);
3081
/* Abort on short copies or on error */
3082
if (ret < (long)src_objlen) {
3083
doutc(cl, "Failed partial copy (%zd)\n", ret);
3084
goto out;
3085
}
3086
len -= ret;
3087
err = get_rd_wr_caps(src_file, &src_got,
3088
dst_file, (dst_off + len), &dst_got);
3089
if (err < 0)
3090
goto out;
3091
err = is_file_size_ok(src_inode, dst_inode,
3092
src_off, dst_off, len);
3093
if (err < 0)
3094
goto out_caps;
3095
}
3096
3097
size = i_size_read(dst_inode);
3098
bytes = ceph_do_objects_copy(src_ci, &src_off, dst_ci, &dst_off,
3099
src_fsc, len, flags);
3100
if (bytes <= 0) {
3101
if (!ret)
3102
ret = bytes;
3103
goto out_caps;
3104
}
3105
doutc(cl, "Copied %zu bytes out of %zu\n", bytes, len);
3106
len -= bytes;
3107
ret += bytes;
3108
3109
file_update_time(dst_file);
3110
inode_inc_iversion_raw(dst_inode);
3111
3112
if (dst_off > size) {
3113
/* Let the MDS know about dst file size change */
3114
if (ceph_inode_set_size(dst_inode, dst_off) ||
3115
ceph_quota_is_max_bytes_approaching(dst_inode, dst_off))
3116
ceph_check_caps(dst_ci, CHECK_CAPS_AUTHONLY | CHECK_CAPS_FLUSH);
3117
}
3118
/* Mark Fw dirty */
3119
spin_lock(&dst_ci->i_ceph_lock);
3120
dirty = __ceph_mark_dirty_caps(dst_ci, CEPH_CAP_FILE_WR, &prealloc_cf);
3121
spin_unlock(&dst_ci->i_ceph_lock);
3122
if (dirty)
3123
__mark_inode_dirty(dst_inode, dirty);
3124
3125
out_caps:
3126
put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
3127
3128
/*
3129
* Do the final manual copy if we still have some bytes left, unless
3130
* there were errors in remote object copies (len >= object_size).
3131
*/
3132
if (len && (len < src_ci->i_layout.object_size)) {
3133
doutc(cl, "Final partial copy of %zu bytes\n", len);
3134
bytes = splice_file_range(src_file, &src_off, dst_file,
3135
&dst_off, len);
3136
if (bytes > 0)
3137
ret += bytes;
3138
else
3139
doutc(cl, "Failed partial copy (%zd)\n", bytes);
3140
}
3141
3142
out:
3143
ceph_free_cap_flush(prealloc_cf);
3144
3145
return ret;
3146
}
3147
3148
static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off,
3149
struct file *dst_file, loff_t dst_off,
3150
size_t len, unsigned int flags)
3151
{
3152
ssize_t ret;
3153
3154
ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off,
3155
len, flags);
3156
3157
if (ret == -EOPNOTSUPP || ret == -EXDEV)
3158
ret = splice_copy_file_range(src_file, src_off, dst_file,
3159
dst_off, len);
3160
return ret;
3161
}
3162
3163
const struct file_operations ceph_file_fops = {
3164
.open = ceph_open,
3165
.release = ceph_release,
3166
.llseek = ceph_llseek,
3167
.read_iter = ceph_read_iter,
3168
.write_iter = ceph_write_iter,
3169
.mmap_prepare = ceph_mmap_prepare,
3170
.fsync = ceph_fsync,
3171
.lock = ceph_lock,
3172
.setlease = simple_nosetlease,
3173
.flock = ceph_flock,
3174
.splice_read = ceph_splice_read,
3175
.splice_write = iter_file_splice_write,
3176
.unlocked_ioctl = ceph_ioctl,
3177
.compat_ioctl = compat_ptr_ioctl,
3178
.fallocate = ceph_fallocate,
3179
.copy_file_range = ceph_copy_file_range,
3180
};
3181
3182