Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/fs/erofs/zdata.c
49600 views
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
* Copyright (C) 2018 HUAWEI, Inc.
4
* https://www.huawei.com/
5
* Copyright (C) 2022 Alibaba Cloud
6
*/
7
#include "compress.h"
8
#include <linux/psi.h>
9
#include <linux/cpuhotplug.h>
10
#include <trace/events/erofs.h>
11
12
#define Z_EROFS_PCLUSTER_MAX_PAGES (Z_EROFS_PCLUSTER_MAX_SIZE / PAGE_SIZE)
13
#define Z_EROFS_INLINE_BVECS 2
14
15
struct z_erofs_bvec {
16
struct page *page;
17
int offset;
18
unsigned int end;
19
};
20
21
#define __Z_EROFS_BVSET(name, total) \
22
struct name { \
23
/* point to the next page which contains the following bvecs */ \
24
struct page *nextpage; \
25
struct z_erofs_bvec bvec[total]; \
26
}
27
__Z_EROFS_BVSET(z_erofs_bvset,);
28
__Z_EROFS_BVSET(z_erofs_bvset_inline, Z_EROFS_INLINE_BVECS);
29
30
/*
31
* Structure fields follow one of the following exclusion rules.
32
*
33
* I: Modifiable by initialization/destruction paths and read-only
34
* for everyone else;
35
*
36
* L: Field should be protected by the pcluster lock;
37
*
38
* A: Field should be accessed / updated in atomic for parallelized code.
39
*/
40
struct z_erofs_pcluster {
41
struct mutex lock;
42
struct lockref lockref;
43
44
/* A: point to next chained pcluster or TAILs */
45
struct z_erofs_pcluster *next;
46
47
/* I: start physical position of this pcluster */
48
erofs_off_t pos;
49
50
/* L: the maximum decompression size of this round */
51
unsigned int length;
52
53
/* L: total number of bvecs */
54
unsigned int vcnt;
55
56
/* I: pcluster size (compressed size) in bytes */
57
unsigned int pclustersize;
58
59
/* I: page offset of start position of decompression */
60
unsigned short pageofs_out;
61
62
/* I: page offset of inline compressed data */
63
unsigned short pageofs_in;
64
65
union {
66
/* L: inline a certain number of bvec for bootstrap */
67
struct z_erofs_bvset_inline bvset;
68
69
/* I: can be used to free the pcluster by RCU. */
70
struct rcu_head rcu;
71
};
72
73
/* I: compression algorithm format */
74
unsigned char algorithmformat;
75
76
/* I: whether compressed data is in-lined or not */
77
bool from_meta;
78
79
/* L: whether partial decompression or not */
80
bool partial;
81
82
/* L: whether extra buffer allocations are best-effort */
83
bool besteffort;
84
85
/* A: compressed bvecs (can be cached or inplaced pages) */
86
struct z_erofs_bvec compressed_bvecs[];
87
};
88
89
/* the end of a chain of pclusters */
90
#define Z_EROFS_PCLUSTER_TAIL ((void *) 0x700 + POISON_POINTER_DELTA)
91
92
struct z_erofs_decompressqueue {
93
struct super_block *sb;
94
struct z_erofs_pcluster *head;
95
atomic_t pending_bios;
96
97
union {
98
struct completion done;
99
struct work_struct work;
100
struct kthread_work kthread_work;
101
} u;
102
bool eio, sync;
103
};
104
105
static inline unsigned int z_erofs_pclusterpages(struct z_erofs_pcluster *pcl)
106
{
107
return PAGE_ALIGN(pcl->pageofs_in + pcl->pclustersize) >> PAGE_SHIFT;
108
}
109
110
static bool erofs_folio_is_managed(struct erofs_sb_info *sbi, struct folio *fo)
111
{
112
return fo->mapping == MNGD_MAPPING(sbi);
113
}
114
115
#define Z_EROFS_ONSTACK_PAGES 32
116
117
/*
118
* since pclustersize is variable for big pcluster feature, introduce slab
119
* pools implementation for different pcluster sizes.
120
*/
121
struct z_erofs_pcluster_slab {
122
struct kmem_cache *slab;
123
unsigned int maxpages;
124
char name[48];
125
};
126
127
#define _PCLP(n) { .maxpages = n }
128
129
static struct z_erofs_pcluster_slab pcluster_pool[] __read_mostly = {
130
_PCLP(1), _PCLP(4), _PCLP(16), _PCLP(64), _PCLP(128),
131
_PCLP(Z_EROFS_PCLUSTER_MAX_PAGES + 1)
132
};
133
134
struct z_erofs_bvec_iter {
135
struct page *bvpage;
136
struct z_erofs_bvset *bvset;
137
unsigned int nr, cur;
138
};
139
140
static struct page *z_erofs_bvec_iter_end(struct z_erofs_bvec_iter *iter)
141
{
142
if (iter->bvpage)
143
kunmap_local(iter->bvset);
144
return iter->bvpage;
145
}
146
147
static struct page *z_erofs_bvset_flip(struct z_erofs_bvec_iter *iter)
148
{
149
unsigned long base = (unsigned long)((struct z_erofs_bvset *)0)->bvec;
150
/* have to access nextpage in advance, otherwise it will be unmapped */
151
struct page *nextpage = iter->bvset->nextpage;
152
struct page *oldpage;
153
154
DBG_BUGON(!nextpage);
155
oldpage = z_erofs_bvec_iter_end(iter);
156
iter->bvpage = nextpage;
157
iter->bvset = kmap_local_page(nextpage);
158
iter->nr = (PAGE_SIZE - base) / sizeof(struct z_erofs_bvec);
159
iter->cur = 0;
160
return oldpage;
161
}
162
163
static void z_erofs_bvec_iter_begin(struct z_erofs_bvec_iter *iter,
164
struct z_erofs_bvset_inline *bvset,
165
unsigned int bootstrap_nr,
166
unsigned int cur)
167
{
168
*iter = (struct z_erofs_bvec_iter) {
169
.nr = bootstrap_nr,
170
.bvset = (struct z_erofs_bvset *)bvset,
171
};
172
173
while (cur > iter->nr) {
174
cur -= iter->nr;
175
z_erofs_bvset_flip(iter);
176
}
177
iter->cur = cur;
178
}
179
180
static int z_erofs_bvec_enqueue(struct z_erofs_bvec_iter *iter,
181
struct z_erofs_bvec *bvec,
182
struct page **candidate_bvpage,
183
struct page **pagepool)
184
{
185
if (iter->cur >= iter->nr) {
186
struct page *nextpage = *candidate_bvpage;
187
188
if (!nextpage) {
189
nextpage = __erofs_allocpage(pagepool, GFP_KERNEL,
190
true);
191
if (!nextpage)
192
return -ENOMEM;
193
set_page_private(nextpage, Z_EROFS_SHORTLIVED_PAGE);
194
}
195
DBG_BUGON(iter->bvset->nextpage);
196
iter->bvset->nextpage = nextpage;
197
z_erofs_bvset_flip(iter);
198
199
iter->bvset->nextpage = NULL;
200
*candidate_bvpage = NULL;
201
}
202
iter->bvset->bvec[iter->cur++] = *bvec;
203
return 0;
204
}
205
206
static void z_erofs_bvec_dequeue(struct z_erofs_bvec_iter *iter,
207
struct z_erofs_bvec *bvec,
208
struct page **old_bvpage)
209
{
210
if (iter->cur == iter->nr)
211
*old_bvpage = z_erofs_bvset_flip(iter);
212
else
213
*old_bvpage = NULL;
214
*bvec = iter->bvset->bvec[iter->cur++];
215
}
216
217
static void z_erofs_destroy_pcluster_pool(void)
218
{
219
int i;
220
221
for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
222
if (!pcluster_pool[i].slab)
223
continue;
224
kmem_cache_destroy(pcluster_pool[i].slab);
225
pcluster_pool[i].slab = NULL;
226
}
227
}
228
229
static int z_erofs_create_pcluster_pool(void)
230
{
231
struct z_erofs_pcluster_slab *pcs;
232
struct z_erofs_pcluster *a;
233
unsigned int size;
234
235
for (pcs = pcluster_pool;
236
pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
237
size = struct_size(a, compressed_bvecs, pcs->maxpages);
238
239
sprintf(pcs->name, "erofs_pcluster-%u", pcs->maxpages);
240
pcs->slab = kmem_cache_create(pcs->name, size, 0,
241
SLAB_RECLAIM_ACCOUNT, NULL);
242
if (pcs->slab)
243
continue;
244
245
z_erofs_destroy_pcluster_pool();
246
return -ENOMEM;
247
}
248
return 0;
249
}
250
251
static struct z_erofs_pcluster *z_erofs_alloc_pcluster(unsigned int size)
252
{
253
unsigned int nrpages = PAGE_ALIGN(size) >> PAGE_SHIFT;
254
struct z_erofs_pcluster_slab *pcs = pcluster_pool;
255
256
for (; pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
257
struct z_erofs_pcluster *pcl;
258
259
if (nrpages > pcs->maxpages)
260
continue;
261
262
pcl = kmem_cache_zalloc(pcs->slab, GFP_KERNEL);
263
if (!pcl)
264
return ERR_PTR(-ENOMEM);
265
return pcl;
266
}
267
return ERR_PTR(-EINVAL);
268
}
269
270
static void z_erofs_free_pcluster(struct z_erofs_pcluster *pcl)
271
{
272
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
273
int i;
274
275
for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
276
struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
277
278
if (pclusterpages > pcs->maxpages)
279
continue;
280
281
kmem_cache_free(pcs->slab, pcl);
282
return;
283
}
284
DBG_BUGON(1);
285
}
286
287
static struct workqueue_struct *z_erofs_workqueue __read_mostly;
288
289
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
290
static struct kthread_worker __rcu **z_erofs_pcpu_workers;
291
static atomic_t erofs_percpu_workers_initialized = ATOMIC_INIT(0);
292
293
static void erofs_destroy_percpu_workers(void)
294
{
295
struct kthread_worker *worker;
296
unsigned int cpu;
297
298
for_each_possible_cpu(cpu) {
299
worker = rcu_dereference_protected(
300
z_erofs_pcpu_workers[cpu], 1);
301
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
302
if (worker)
303
kthread_destroy_worker(worker);
304
}
305
kfree(z_erofs_pcpu_workers);
306
}
307
308
static struct kthread_worker *erofs_init_percpu_worker(int cpu)
309
{
310
struct kthread_worker *worker =
311
kthread_run_worker_on_cpu(cpu, 0, "erofs_worker/%u");
312
313
if (IS_ERR(worker))
314
return worker;
315
if (IS_ENABLED(CONFIG_EROFS_FS_PCPU_KTHREAD_HIPRI))
316
sched_set_fifo_low(worker->task);
317
return worker;
318
}
319
320
static int erofs_init_percpu_workers(void)
321
{
322
struct kthread_worker *worker;
323
unsigned int cpu;
324
325
z_erofs_pcpu_workers = kcalloc(num_possible_cpus(),
326
sizeof(struct kthread_worker *), GFP_ATOMIC);
327
if (!z_erofs_pcpu_workers)
328
return -ENOMEM;
329
330
for_each_online_cpu(cpu) { /* could miss cpu{off,on}line? */
331
worker = erofs_init_percpu_worker(cpu);
332
if (!IS_ERR(worker))
333
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
334
}
335
return 0;
336
}
337
338
#ifdef CONFIG_HOTPLUG_CPU
339
static DEFINE_SPINLOCK(z_erofs_pcpu_worker_lock);
340
static enum cpuhp_state erofs_cpuhp_state;
341
342
static int erofs_cpu_online(unsigned int cpu)
343
{
344
struct kthread_worker *worker, *old;
345
346
worker = erofs_init_percpu_worker(cpu);
347
if (IS_ERR(worker))
348
return PTR_ERR(worker);
349
350
spin_lock(&z_erofs_pcpu_worker_lock);
351
old = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
352
lockdep_is_held(&z_erofs_pcpu_worker_lock));
353
if (!old)
354
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
355
spin_unlock(&z_erofs_pcpu_worker_lock);
356
if (old)
357
kthread_destroy_worker(worker);
358
return 0;
359
}
360
361
static int erofs_cpu_offline(unsigned int cpu)
362
{
363
struct kthread_worker *worker;
364
365
spin_lock(&z_erofs_pcpu_worker_lock);
366
worker = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
367
lockdep_is_held(&z_erofs_pcpu_worker_lock));
368
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
369
spin_unlock(&z_erofs_pcpu_worker_lock);
370
371
synchronize_rcu();
372
if (worker)
373
kthread_destroy_worker(worker);
374
return 0;
375
}
376
377
static int erofs_cpu_hotplug_init(void)
378
{
379
int state;
380
381
state = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
382
"fs/erofs:online", erofs_cpu_online, erofs_cpu_offline);
383
if (state < 0)
384
return state;
385
386
erofs_cpuhp_state = state;
387
return 0;
388
}
389
390
static void erofs_cpu_hotplug_destroy(void)
391
{
392
if (erofs_cpuhp_state)
393
cpuhp_remove_state_nocalls(erofs_cpuhp_state);
394
}
395
#else /* !CONFIG_HOTPLUG_CPU */
396
static inline int erofs_cpu_hotplug_init(void) { return 0; }
397
static inline void erofs_cpu_hotplug_destroy(void) {}
398
#endif/* CONFIG_HOTPLUG_CPU */
399
static int z_erofs_init_pcpu_workers(struct super_block *sb)
400
{
401
int err;
402
403
if (atomic_xchg(&erofs_percpu_workers_initialized, 1))
404
return 0;
405
406
err = erofs_init_percpu_workers();
407
if (err) {
408
erofs_err(sb, "per-cpu workers: failed to allocate.");
409
goto err_init_percpu_workers;
410
}
411
412
err = erofs_cpu_hotplug_init();
413
if (err < 0) {
414
erofs_err(sb, "per-cpu workers: failed CPU hotplug init.");
415
goto err_cpuhp_init;
416
}
417
erofs_info(sb, "initialized per-cpu workers successfully.");
418
return err;
419
420
err_cpuhp_init:
421
erofs_destroy_percpu_workers();
422
err_init_percpu_workers:
423
atomic_set(&erofs_percpu_workers_initialized, 0);
424
return err;
425
}
426
427
static void z_erofs_destroy_pcpu_workers(void)
428
{
429
if (!atomic_xchg(&erofs_percpu_workers_initialized, 0))
430
return;
431
erofs_cpu_hotplug_destroy();
432
erofs_destroy_percpu_workers();
433
}
434
#else /* !CONFIG_EROFS_FS_PCPU_KTHREAD */
435
static inline int z_erofs_init_pcpu_workers(struct super_block *sb) { return 0; }
436
static inline void z_erofs_destroy_pcpu_workers(void) {}
437
#endif/* CONFIG_EROFS_FS_PCPU_KTHREAD */
438
439
void z_erofs_exit_subsystem(void)
440
{
441
z_erofs_destroy_pcpu_workers();
442
destroy_workqueue(z_erofs_workqueue);
443
z_erofs_destroy_pcluster_pool();
444
z_erofs_crypto_disable_all_engines();
445
z_erofs_exit_decompressor();
446
}
447
448
int __init z_erofs_init_subsystem(void)
449
{
450
int err = z_erofs_init_decompressor();
451
452
if (err)
453
goto err_decompressor;
454
455
err = z_erofs_create_pcluster_pool();
456
if (err)
457
goto err_pcluster_pool;
458
459
z_erofs_workqueue = alloc_workqueue("erofs_worker",
460
WQ_UNBOUND | WQ_HIGHPRI, num_possible_cpus());
461
if (!z_erofs_workqueue) {
462
err = -ENOMEM;
463
goto err_workqueue_init;
464
}
465
466
return err;
467
468
err_workqueue_init:
469
z_erofs_destroy_pcluster_pool();
470
err_pcluster_pool:
471
z_erofs_exit_decompressor();
472
err_decompressor:
473
return err;
474
}
475
476
enum z_erofs_pclustermode {
477
/* It has previously been linked into another processing chain */
478
Z_EROFS_PCLUSTER_INFLIGHT,
479
/*
480
* A weaker form of Z_EROFS_PCLUSTER_FOLLOWED; the difference is that it
481
* may be dispatched to the bypass queue later due to uptodated managed
482
* folios. All file-backed folios related to this pcluster cannot be
483
* reused for in-place I/O (or bvpage) since the pcluster may be decoded
484
* in a separate queue (and thus out of order).
485
*/
486
Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE,
487
/*
488
* The pcluster has just been linked to our processing chain.
489
* File-backed folios (except for the head page) related to it can be
490
* used for in-place I/O (or bvpage).
491
*/
492
Z_EROFS_PCLUSTER_FOLLOWED,
493
};
494
495
struct z_erofs_frontend {
496
struct inode *const inode;
497
struct erofs_map_blocks map;
498
struct z_erofs_bvec_iter biter;
499
500
struct page *pagepool;
501
struct page *candidate_bvpage;
502
struct z_erofs_pcluster *pcl, *head;
503
enum z_erofs_pclustermode mode;
504
505
erofs_off_t headoffset;
506
507
/* a pointer used to pick up inplace I/O pages */
508
unsigned int icur;
509
};
510
511
#define Z_EROFS_DEFINE_FRONTEND(fe, i, ho) struct z_erofs_frontend fe = { \
512
.inode = i, .head = Z_EROFS_PCLUSTER_TAIL, \
513
.mode = Z_EROFS_PCLUSTER_FOLLOWED, .headoffset = ho }
514
515
static bool z_erofs_should_alloc_cache(struct z_erofs_frontend *fe)
516
{
517
unsigned int cachestrategy = EROFS_I_SB(fe->inode)->opt.cache_strategy;
518
519
if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
520
return false;
521
522
if (!(fe->map.m_flags & EROFS_MAP_FULL_MAPPED))
523
return true;
524
525
if (cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
526
fe->map.m_la < fe->headoffset)
527
return true;
528
529
return false;
530
}
531
532
static void z_erofs_bind_cache(struct z_erofs_frontend *fe)
533
{
534
struct address_space *mc = MNGD_MAPPING(EROFS_I_SB(fe->inode));
535
struct z_erofs_pcluster *pcl = fe->pcl;
536
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
537
bool shouldalloc = z_erofs_should_alloc_cache(fe);
538
pgoff_t poff = pcl->pos >> PAGE_SHIFT;
539
bool may_bypass = true;
540
/* Optimistic allocation, as in-place I/O can be used as a fallback */
541
gfp_t gfp = (mapping_gfp_mask(mc) & ~__GFP_DIRECT_RECLAIM) |
542
__GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
543
struct folio *folio, *newfolio;
544
unsigned int i;
545
546
if (i_blocksize(fe->inode) != PAGE_SIZE ||
547
fe->mode < Z_EROFS_PCLUSTER_FOLLOWED)
548
return;
549
550
for (i = 0; i < pclusterpages; ++i) {
551
/* Inaccurate check w/o locking to avoid unneeded lookups */
552
if (READ_ONCE(pcl->compressed_bvecs[i].page))
553
continue;
554
555
folio = filemap_get_folio(mc, poff + i);
556
if (IS_ERR(folio)) {
557
may_bypass = false;
558
if (!shouldalloc)
559
continue;
560
561
/*
562
* Allocate a managed folio for cached I/O, or it may be
563
* then filled with a file-backed folio for in-place I/O
564
*/
565
newfolio = filemap_alloc_folio(gfp, 0, NULL);
566
if (!newfolio)
567
continue;
568
newfolio->private = Z_EROFS_PREALLOCATED_FOLIO;
569
folio = NULL;
570
}
571
spin_lock(&pcl->lockref.lock);
572
if (!pcl->compressed_bvecs[i].page) {
573
pcl->compressed_bvecs[i].page =
574
folio_page(folio ?: newfolio, 0);
575
spin_unlock(&pcl->lockref.lock);
576
continue;
577
}
578
spin_unlock(&pcl->lockref.lock);
579
folio_put(folio ?: newfolio);
580
}
581
582
/*
583
* Don't perform in-place I/O if all compressed pages are available in
584
* the managed cache, as the pcluster can be moved to the bypass queue.
585
*/
586
if (may_bypass)
587
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
588
}
589
590
/* (erofs_shrinker) disconnect cached encoded data with pclusters */
591
static int erofs_try_to_free_all_cached_folios(struct erofs_sb_info *sbi,
592
struct z_erofs_pcluster *pcl)
593
{
594
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
595
struct folio *folio;
596
int i;
597
598
DBG_BUGON(pcl->from_meta);
599
/* Each cached folio contains one page unless bs > ps is supported */
600
for (i = 0; i < pclusterpages; ++i) {
601
if (pcl->compressed_bvecs[i].page) {
602
folio = page_folio(pcl->compressed_bvecs[i].page);
603
/* Avoid reclaiming or migrating this folio */
604
if (!folio_trylock(folio))
605
return -EBUSY;
606
607
if (!erofs_folio_is_managed(sbi, folio))
608
continue;
609
pcl->compressed_bvecs[i].page = NULL;
610
folio_detach_private(folio);
611
folio_unlock(folio);
612
}
613
}
614
return 0;
615
}
616
617
static bool z_erofs_cache_release_folio(struct folio *folio, gfp_t gfp)
618
{
619
struct z_erofs_pcluster *pcl = folio_get_private(folio);
620
struct z_erofs_bvec *bvec = pcl->compressed_bvecs;
621
struct z_erofs_bvec *end = bvec + z_erofs_pclusterpages(pcl);
622
bool ret;
623
624
if (!folio_test_private(folio))
625
return true;
626
627
ret = false;
628
spin_lock(&pcl->lockref.lock);
629
if (pcl->lockref.count <= 0) {
630
DBG_BUGON(pcl->from_meta);
631
for (; bvec < end; ++bvec) {
632
if (bvec->page && page_folio(bvec->page) == folio) {
633
bvec->page = NULL;
634
folio_detach_private(folio);
635
ret = true;
636
break;
637
}
638
}
639
}
640
spin_unlock(&pcl->lockref.lock);
641
return ret;
642
}
643
644
/*
645
* It will be called only on inode eviction. In case that there are still some
646
* decompression requests in progress, wait with rescheduling for a bit here.
647
* An extra lock could be introduced instead but it seems unnecessary.
648
*/
649
static void z_erofs_cache_invalidate_folio(struct folio *folio,
650
size_t offset, size_t length)
651
{
652
const size_t stop = length + offset;
653
654
/* Check for potential overflow in debug mode */
655
DBG_BUGON(stop > folio_size(folio) || stop < length);
656
657
if (offset == 0 && stop == folio_size(folio))
658
while (!z_erofs_cache_release_folio(folio, 0))
659
cond_resched();
660
}
661
662
static const struct address_space_operations z_erofs_cache_aops = {
663
.release_folio = z_erofs_cache_release_folio,
664
.invalidate_folio = z_erofs_cache_invalidate_folio,
665
};
666
667
int z_erofs_init_super(struct super_block *sb)
668
{
669
struct inode *inode;
670
int err;
671
672
err = z_erofs_init_pcpu_workers(sb);
673
if (err)
674
return err;
675
676
inode = new_inode(sb);
677
if (!inode)
678
return -ENOMEM;
679
set_nlink(inode, 1);
680
inode->i_size = OFFSET_MAX;
681
inode->i_mapping->a_ops = &z_erofs_cache_aops;
682
mapping_set_gfp_mask(inode->i_mapping, GFP_KERNEL);
683
EROFS_SB(sb)->managed_cache = inode;
684
xa_init(&EROFS_SB(sb)->managed_pslots);
685
return 0;
686
}
687
688
/* callers must be with pcluster lock held */
689
static int z_erofs_attach_page(struct z_erofs_frontend *fe,
690
struct z_erofs_bvec *bvec, bool exclusive)
691
{
692
struct z_erofs_pcluster *pcl = fe->pcl;
693
int ret;
694
695
if (exclusive) {
696
/* Inplace I/O is limited to one page for uncompressed data */
697
if (pcl->algorithmformat < Z_EROFS_COMPRESSION_MAX ||
698
fe->icur <= 1) {
699
/* Try to prioritize inplace I/O here */
700
spin_lock(&pcl->lockref.lock);
701
while (fe->icur > 0) {
702
if (pcl->compressed_bvecs[--fe->icur].page)
703
continue;
704
pcl->compressed_bvecs[fe->icur] = *bvec;
705
spin_unlock(&pcl->lockref.lock);
706
return 0;
707
}
708
spin_unlock(&pcl->lockref.lock);
709
}
710
711
/* otherwise, check if it can be used as a bvpage */
712
if (fe->mode >= Z_EROFS_PCLUSTER_FOLLOWED &&
713
!fe->candidate_bvpage)
714
fe->candidate_bvpage = bvec->page;
715
}
716
ret = z_erofs_bvec_enqueue(&fe->biter, bvec, &fe->candidate_bvpage,
717
&fe->pagepool);
718
fe->pcl->vcnt += (ret >= 0);
719
return ret;
720
}
721
722
static bool z_erofs_get_pcluster(struct z_erofs_pcluster *pcl)
723
{
724
if (lockref_get_not_zero(&pcl->lockref))
725
return true;
726
727
spin_lock(&pcl->lockref.lock);
728
if (__lockref_is_dead(&pcl->lockref)) {
729
spin_unlock(&pcl->lockref.lock);
730
return false;
731
}
732
733
if (!pcl->lockref.count++)
734
atomic_long_dec(&erofs_global_shrink_cnt);
735
spin_unlock(&pcl->lockref.lock);
736
return true;
737
}
738
739
static int z_erofs_register_pcluster(struct z_erofs_frontend *fe)
740
{
741
struct erofs_map_blocks *map = &fe->map;
742
struct super_block *sb = fe->inode->i_sb;
743
struct erofs_sb_info *sbi = EROFS_SB(sb);
744
struct z_erofs_pcluster *pcl, *pre;
745
unsigned int pageofs_in;
746
int err;
747
748
pageofs_in = erofs_blkoff(sb, map->m_pa);
749
pcl = z_erofs_alloc_pcluster(pageofs_in + map->m_plen);
750
if (IS_ERR(pcl))
751
return PTR_ERR(pcl);
752
753
lockref_init(&pcl->lockref); /* one ref for this request */
754
pcl->algorithmformat = map->m_algorithmformat;
755
pcl->pclustersize = map->m_plen;
756
pcl->length = 0;
757
pcl->partial = true;
758
pcl->next = fe->head;
759
pcl->pos = map->m_pa;
760
pcl->pageofs_in = pageofs_in;
761
pcl->pageofs_out = map->m_la & ~PAGE_MASK;
762
pcl->from_meta = map->m_flags & EROFS_MAP_META;
763
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
764
765
/*
766
* lock all primary followed works before visible to others
767
* and mutex_trylock *never* fails for a new pcluster.
768
*/
769
mutex_init(&pcl->lock);
770
DBG_BUGON(!mutex_trylock(&pcl->lock));
771
772
if (!pcl->from_meta) {
773
while (1) {
774
xa_lock(&sbi->managed_pslots);
775
pre = __xa_cmpxchg(&sbi->managed_pslots, pcl->pos,
776
NULL, pcl, GFP_KERNEL);
777
if (!pre || xa_is_err(pre) || z_erofs_get_pcluster(pre)) {
778
xa_unlock(&sbi->managed_pslots);
779
break;
780
}
781
/* try to legitimize the current in-tree one */
782
xa_unlock(&sbi->managed_pslots);
783
cond_resched();
784
}
785
if (xa_is_err(pre)) {
786
err = xa_err(pre);
787
goto err_out;
788
} else if (pre) {
789
fe->pcl = pre;
790
err = -EEXIST;
791
goto err_out;
792
}
793
}
794
fe->head = fe->pcl = pcl;
795
return 0;
796
797
err_out:
798
mutex_unlock(&pcl->lock);
799
z_erofs_free_pcluster(pcl);
800
return err;
801
}
802
803
static int z_erofs_pcluster_begin(struct z_erofs_frontend *fe)
804
{
805
struct erofs_map_blocks *map = &fe->map;
806
struct super_block *sb = fe->inode->i_sb;
807
struct z_erofs_pcluster *pcl = NULL;
808
void *ptr;
809
int ret;
810
811
DBG_BUGON(fe->pcl);
812
/* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous pcluster */
813
DBG_BUGON(!fe->head);
814
815
if (!(map->m_flags & EROFS_MAP_META)) {
816
while (1) {
817
rcu_read_lock();
818
pcl = xa_load(&EROFS_SB(sb)->managed_pslots, map->m_pa);
819
if (!pcl || z_erofs_get_pcluster(pcl)) {
820
DBG_BUGON(pcl && map->m_pa != pcl->pos);
821
rcu_read_unlock();
822
break;
823
}
824
rcu_read_unlock();
825
}
826
}
827
828
if (pcl) {
829
fe->pcl = pcl;
830
ret = -EEXIST;
831
} else {
832
ret = z_erofs_register_pcluster(fe);
833
}
834
835
if (ret == -EEXIST) {
836
mutex_lock(&fe->pcl->lock);
837
/* check if this pcluster hasn't been linked into any chain. */
838
if (!cmpxchg(&fe->pcl->next, NULL, fe->head)) {
839
/* .. so it can be attached to our submission chain */
840
fe->head = fe->pcl;
841
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
842
} else { /* otherwise, it belongs to an inflight chain */
843
fe->mode = Z_EROFS_PCLUSTER_INFLIGHT;
844
}
845
} else if (ret) {
846
return ret;
847
}
848
849
z_erofs_bvec_iter_begin(&fe->biter, &fe->pcl->bvset,
850
Z_EROFS_INLINE_BVECS, fe->pcl->vcnt);
851
if (!fe->pcl->from_meta) {
852
/* bind cache first when cached decompression is preferred */
853
z_erofs_bind_cache(fe);
854
} else {
855
ret = erofs_init_metabuf(&map->buf, sb,
856
erofs_inode_in_metabox(fe->inode));
857
if (ret)
858
return ret;
859
ptr = erofs_bread(&map->buf, map->m_pa, false);
860
if (IS_ERR(ptr)) {
861
ret = PTR_ERR(ptr);
862
erofs_err(sb, "failed to get inline folio %d", ret);
863
return ret;
864
}
865
folio_get(page_folio(map->buf.page));
866
WRITE_ONCE(fe->pcl->compressed_bvecs[0].page, map->buf.page);
867
fe->pcl->pageofs_in = map->m_pa & ~PAGE_MASK;
868
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
869
}
870
/* file-backed inplace I/O pages are traversed in reverse order */
871
fe->icur = z_erofs_pclusterpages(fe->pcl);
872
return 0;
873
}
874
875
static void z_erofs_rcu_callback(struct rcu_head *head)
876
{
877
z_erofs_free_pcluster(container_of(head, struct z_erofs_pcluster, rcu));
878
}
879
880
static bool __erofs_try_to_release_pcluster(struct erofs_sb_info *sbi,
881
struct z_erofs_pcluster *pcl)
882
{
883
if (pcl->lockref.count)
884
return false;
885
886
/*
887
* Note that all cached folios should be detached before deleted from
888
* the XArray. Otherwise some folios could be still attached to the
889
* orphan old pcluster when the new one is available in the tree.
890
*/
891
if (erofs_try_to_free_all_cached_folios(sbi, pcl))
892
return false;
893
894
/*
895
* It's impossible to fail after the pcluster is freezed, but in order
896
* to avoid some race conditions, add a DBG_BUGON to observe this.
897
*/
898
DBG_BUGON(__xa_erase(&sbi->managed_pslots, pcl->pos) != pcl);
899
900
lockref_mark_dead(&pcl->lockref);
901
return true;
902
}
903
904
static bool erofs_try_to_release_pcluster(struct erofs_sb_info *sbi,
905
struct z_erofs_pcluster *pcl)
906
{
907
bool free;
908
909
spin_lock(&pcl->lockref.lock);
910
free = __erofs_try_to_release_pcluster(sbi, pcl);
911
spin_unlock(&pcl->lockref.lock);
912
if (free) {
913
atomic_long_dec(&erofs_global_shrink_cnt);
914
call_rcu(&pcl->rcu, z_erofs_rcu_callback);
915
}
916
return free;
917
}
918
919
unsigned long z_erofs_shrink_scan(struct erofs_sb_info *sbi, unsigned long nr)
920
{
921
struct z_erofs_pcluster *pcl;
922
unsigned long index, freed = 0;
923
924
xa_lock(&sbi->managed_pslots);
925
xa_for_each(&sbi->managed_pslots, index, pcl) {
926
/* try to shrink each valid pcluster */
927
if (!erofs_try_to_release_pcluster(sbi, pcl))
928
continue;
929
xa_unlock(&sbi->managed_pslots);
930
931
++freed;
932
if (!--nr)
933
return freed;
934
xa_lock(&sbi->managed_pslots);
935
}
936
xa_unlock(&sbi->managed_pslots);
937
return freed;
938
}
939
940
static void z_erofs_put_pcluster(struct erofs_sb_info *sbi,
941
struct z_erofs_pcluster *pcl, bool try_free)
942
{
943
bool free = false;
944
945
if (lockref_put_or_lock(&pcl->lockref))
946
return;
947
948
DBG_BUGON(__lockref_is_dead(&pcl->lockref));
949
if (!--pcl->lockref.count) {
950
if (try_free && xa_trylock(&sbi->managed_pslots)) {
951
free = __erofs_try_to_release_pcluster(sbi, pcl);
952
xa_unlock(&sbi->managed_pslots);
953
}
954
atomic_long_add(!free, &erofs_global_shrink_cnt);
955
}
956
spin_unlock(&pcl->lockref.lock);
957
if (free)
958
call_rcu(&pcl->rcu, z_erofs_rcu_callback);
959
}
960
961
static void z_erofs_pcluster_end(struct z_erofs_frontend *fe)
962
{
963
struct z_erofs_pcluster *pcl = fe->pcl;
964
965
if (!pcl)
966
return;
967
968
z_erofs_bvec_iter_end(&fe->biter);
969
mutex_unlock(&pcl->lock);
970
971
if (fe->candidate_bvpage)
972
fe->candidate_bvpage = NULL;
973
974
/* Drop refcount if it doesn't belong to our processing chain */
975
if (fe->mode < Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE)
976
z_erofs_put_pcluster(EROFS_I_SB(fe->inode), pcl, false);
977
fe->pcl = NULL;
978
}
979
980
static int z_erofs_read_fragment(struct super_block *sb, struct folio *folio,
981
unsigned int cur, unsigned int end, erofs_off_t pos)
982
{
983
struct inode *packed_inode = EROFS_SB(sb)->packed_inode;
984
struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
985
unsigned int cnt;
986
u8 *src;
987
988
if (!packed_inode)
989
return -EFSCORRUPTED;
990
991
buf.mapping = packed_inode->i_mapping;
992
for (; cur < end; cur += cnt, pos += cnt) {
993
cnt = min(end - cur, sb->s_blocksize - erofs_blkoff(sb, pos));
994
src = erofs_bread(&buf, pos, true);
995
if (IS_ERR(src)) {
996
erofs_put_metabuf(&buf);
997
return PTR_ERR(src);
998
}
999
memcpy_to_folio(folio, cur, src, cnt);
1000
}
1001
erofs_put_metabuf(&buf);
1002
return 0;
1003
}
1004
1005
static int z_erofs_scan_folio(struct z_erofs_frontend *f,
1006
struct folio *folio, bool ra)
1007
{
1008
struct inode *const inode = f->inode;
1009
struct erofs_map_blocks *const map = &f->map;
1010
const loff_t offset = folio_pos(folio);
1011
const unsigned int bs = i_blocksize(inode);
1012
unsigned int end = folio_size(folio), split = 0, cur, pgs;
1013
bool tight, excl;
1014
int err = 0;
1015
1016
tight = (bs == PAGE_SIZE);
1017
erofs_onlinefolio_init(folio);
1018
do {
1019
if (offset + end - 1 < map->m_la ||
1020
offset + end - 1 >= map->m_la + map->m_llen) {
1021
z_erofs_pcluster_end(f);
1022
map->m_la = offset + end - 1;
1023
map->m_llen = 0;
1024
err = z_erofs_map_blocks_iter(inode, map, 0);
1025
if (err)
1026
break;
1027
}
1028
1029
cur = offset > map->m_la ? 0 : map->m_la - offset;
1030
pgs = round_down(cur, PAGE_SIZE);
1031
/* bump split parts first to avoid several separate cases */
1032
++split;
1033
1034
if (!(map->m_flags & EROFS_MAP_MAPPED)) {
1035
folio_zero_segment(folio, cur, end);
1036
tight = false;
1037
} else if (map->m_flags & __EROFS_MAP_FRAGMENT) {
1038
erofs_off_t fpos = offset + cur - map->m_la;
1039
1040
err = z_erofs_read_fragment(inode->i_sb, folio, cur,
1041
cur + min(map->m_llen - fpos, end - cur),
1042
EROFS_I(inode)->z_fragmentoff + fpos);
1043
if (err)
1044
break;
1045
tight = false;
1046
} else {
1047
if (!f->pcl) {
1048
err = z_erofs_pcluster_begin(f);
1049
if (err)
1050
break;
1051
f->pcl->besteffort |= !ra;
1052
}
1053
1054
pgs = round_down(end - 1, PAGE_SIZE);
1055
/*
1056
* Ensure this partial page belongs to this submit chain
1057
* rather than other concurrent submit chains or
1058
* noio(bypass) chains since those chains are handled
1059
* asynchronously thus it cannot be used for inplace I/O
1060
* or bvpage (should be processed in the strict order.)
1061
*/
1062
tight &= (f->mode >= Z_EROFS_PCLUSTER_FOLLOWED);
1063
excl = false;
1064
if (cur <= pgs) {
1065
excl = (split <= 1) || tight;
1066
cur = pgs;
1067
}
1068
1069
err = z_erofs_attach_page(f, &((struct z_erofs_bvec) {
1070
.page = folio_page(folio, pgs >> PAGE_SHIFT),
1071
.offset = offset + pgs - map->m_la,
1072
.end = end - pgs, }), excl);
1073
if (err)
1074
break;
1075
1076
erofs_onlinefolio_split(folio);
1077
if (f->pcl->length < offset + end - map->m_la) {
1078
f->pcl->length = offset + end - map->m_la;
1079
f->pcl->pageofs_out = map->m_la & ~PAGE_MASK;
1080
}
1081
if ((map->m_flags & EROFS_MAP_FULL_MAPPED) &&
1082
!(map->m_flags & EROFS_MAP_PARTIAL_REF) &&
1083
f->pcl->length == map->m_llen)
1084
f->pcl->partial = false;
1085
}
1086
/* shorten the remaining extent to update progress */
1087
map->m_llen = offset + cur - map->m_la;
1088
map->m_flags &= ~EROFS_MAP_FULL_MAPPED;
1089
if (cur <= pgs) {
1090
split = cur < pgs;
1091
tight = (bs == PAGE_SIZE);
1092
}
1093
} while ((end = cur) > 0);
1094
erofs_onlinefolio_end(folio, err, false);
1095
return err;
1096
}
1097
1098
static bool z_erofs_is_sync_decompress(struct erofs_sb_info *sbi,
1099
unsigned int readahead_pages)
1100
{
1101
/* auto: enable for read_folio, disable for readahead */
1102
if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO) &&
1103
!readahead_pages)
1104
return true;
1105
1106
if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_FORCE_ON) &&
1107
(readahead_pages <= sbi->opt.max_sync_decompress_pages))
1108
return true;
1109
1110
return false;
1111
}
1112
1113
static bool z_erofs_page_is_invalidated(struct page *page)
1114
{
1115
return !page_folio(page)->mapping && !z_erofs_is_shortlived_page(page);
1116
}
1117
1118
struct z_erofs_backend {
1119
struct page *onstack_pages[Z_EROFS_ONSTACK_PAGES];
1120
struct super_block *sb;
1121
struct z_erofs_pcluster *pcl;
1122
/* pages with the longest decompressed length for deduplication */
1123
struct page **decompressed_pages;
1124
/* pages to keep the compressed data */
1125
struct page **compressed_pages;
1126
1127
struct list_head decompressed_secondary_bvecs;
1128
struct page **pagepool;
1129
unsigned int onstack_used, nr_pages;
1130
/* indicate if temporary copies should be preserved for later use */
1131
bool keepxcpy;
1132
};
1133
1134
struct z_erofs_bvec_item {
1135
struct z_erofs_bvec bvec;
1136
struct list_head list;
1137
};
1138
1139
static void z_erofs_do_decompressed_bvec(struct z_erofs_backend *be,
1140
struct z_erofs_bvec *bvec)
1141
{
1142
int poff = bvec->offset + be->pcl->pageofs_out;
1143
struct z_erofs_bvec_item *item;
1144
struct page **page;
1145
1146
if (!(poff & ~PAGE_MASK) && (bvec->end == PAGE_SIZE ||
1147
bvec->offset + bvec->end == be->pcl->length)) {
1148
DBG_BUGON((poff >> PAGE_SHIFT) >= be->nr_pages);
1149
page = be->decompressed_pages + (poff >> PAGE_SHIFT);
1150
if (!*page) {
1151
*page = bvec->page;
1152
return;
1153
}
1154
} else {
1155
be->keepxcpy = true;
1156
}
1157
1158
/* (cold path) one pcluster is requested multiple times */
1159
item = kmalloc(sizeof(*item), GFP_KERNEL | __GFP_NOFAIL);
1160
item->bvec = *bvec;
1161
list_add(&item->list, &be->decompressed_secondary_bvecs);
1162
}
1163
1164
static void z_erofs_fill_other_copies(struct z_erofs_backend *be, int err)
1165
{
1166
unsigned int off0 = be->pcl->pageofs_out;
1167
struct list_head *p, *n;
1168
1169
list_for_each_safe(p, n, &be->decompressed_secondary_bvecs) {
1170
struct z_erofs_bvec_item *bvi;
1171
unsigned int end, cur;
1172
void *dst, *src;
1173
1174
bvi = container_of(p, struct z_erofs_bvec_item, list);
1175
cur = bvi->bvec.offset < 0 ? -bvi->bvec.offset : 0;
1176
end = min_t(unsigned int, be->pcl->length - bvi->bvec.offset,
1177
bvi->bvec.end);
1178
dst = kmap_local_page(bvi->bvec.page);
1179
while (cur < end) {
1180
unsigned int pgnr, scur, len;
1181
1182
pgnr = (bvi->bvec.offset + cur + off0) >> PAGE_SHIFT;
1183
DBG_BUGON(pgnr >= be->nr_pages);
1184
1185
scur = bvi->bvec.offset + cur -
1186
((pgnr << PAGE_SHIFT) - off0);
1187
len = min_t(unsigned int, end - cur, PAGE_SIZE - scur);
1188
if (!be->decompressed_pages[pgnr]) {
1189
err = -EFSCORRUPTED;
1190
cur += len;
1191
continue;
1192
}
1193
src = kmap_local_page(be->decompressed_pages[pgnr]);
1194
memcpy(dst + cur, src + scur, len);
1195
kunmap_local(src);
1196
cur += len;
1197
}
1198
kunmap_local(dst);
1199
erofs_onlinefolio_end(page_folio(bvi->bvec.page), err, true);
1200
list_del(p);
1201
kfree(bvi);
1202
}
1203
}
1204
1205
static void z_erofs_parse_out_bvecs(struct z_erofs_backend *be)
1206
{
1207
struct z_erofs_pcluster *pcl = be->pcl;
1208
struct z_erofs_bvec_iter biter;
1209
struct page *old_bvpage;
1210
int i;
1211
1212
z_erofs_bvec_iter_begin(&biter, &pcl->bvset, Z_EROFS_INLINE_BVECS, 0);
1213
for (i = 0; i < pcl->vcnt; ++i) {
1214
struct z_erofs_bvec bvec;
1215
1216
z_erofs_bvec_dequeue(&biter, &bvec, &old_bvpage);
1217
1218
if (old_bvpage)
1219
z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
1220
1221
DBG_BUGON(z_erofs_page_is_invalidated(bvec.page));
1222
z_erofs_do_decompressed_bvec(be, &bvec);
1223
}
1224
1225
old_bvpage = z_erofs_bvec_iter_end(&biter);
1226
if (old_bvpage)
1227
z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
1228
}
1229
1230
static int z_erofs_parse_in_bvecs(struct z_erofs_backend *be, bool *overlapped)
1231
{
1232
struct z_erofs_pcluster *pcl = be->pcl;
1233
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1234
int i, err = 0;
1235
1236
*overlapped = false;
1237
for (i = 0; i < pclusterpages; ++i) {
1238
struct z_erofs_bvec *bvec = &pcl->compressed_bvecs[i];
1239
struct page *page = bvec->page;
1240
1241
/* compressed data ought to be valid when decompressing */
1242
if (IS_ERR(page) || !page) {
1243
bvec->page = NULL; /* clear the failure reason */
1244
err = page ? PTR_ERR(page) : -EIO;
1245
continue;
1246
}
1247
be->compressed_pages[i] = page;
1248
1249
if (pcl->from_meta ||
1250
erofs_folio_is_managed(EROFS_SB(be->sb), page_folio(page))) {
1251
if (!PageUptodate(page))
1252
err = -EIO;
1253
continue;
1254
}
1255
1256
DBG_BUGON(z_erofs_page_is_invalidated(page));
1257
if (z_erofs_is_shortlived_page(page))
1258
continue;
1259
z_erofs_do_decompressed_bvec(be, bvec);
1260
*overlapped = true;
1261
}
1262
return err;
1263
}
1264
1265
static int z_erofs_decompress_pcluster(struct z_erofs_backend *be, bool eio)
1266
{
1267
struct erofs_sb_info *const sbi = EROFS_SB(be->sb);
1268
struct z_erofs_pcluster *pcl = be->pcl;
1269
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1270
const struct z_erofs_decompressor *alg =
1271
z_erofs_decomp[pcl->algorithmformat];
1272
bool try_free = true;
1273
int i, j, jtop, err2, err = eio ? -EIO : 0;
1274
struct page *page;
1275
bool overlapped;
1276
const char *reason;
1277
1278
mutex_lock(&pcl->lock);
1279
be->nr_pages = PAGE_ALIGN(pcl->length + pcl->pageofs_out) >> PAGE_SHIFT;
1280
1281
/* allocate (de)compressed page arrays if cannot be kept on stack */
1282
be->decompressed_pages = NULL;
1283
be->compressed_pages = NULL;
1284
be->onstack_used = 0;
1285
if (be->nr_pages <= Z_EROFS_ONSTACK_PAGES) {
1286
be->decompressed_pages = be->onstack_pages;
1287
be->onstack_used = be->nr_pages;
1288
memset(be->decompressed_pages, 0,
1289
sizeof(struct page *) * be->nr_pages);
1290
}
1291
1292
if (pclusterpages + be->onstack_used <= Z_EROFS_ONSTACK_PAGES)
1293
be->compressed_pages = be->onstack_pages + be->onstack_used;
1294
1295
if (!be->decompressed_pages)
1296
be->decompressed_pages =
1297
kvcalloc(be->nr_pages, sizeof(struct page *),
1298
GFP_KERNEL | __GFP_NOFAIL);
1299
if (!be->compressed_pages)
1300
be->compressed_pages =
1301
kvcalloc(pclusterpages, sizeof(struct page *),
1302
GFP_KERNEL | __GFP_NOFAIL);
1303
1304
z_erofs_parse_out_bvecs(be);
1305
err2 = z_erofs_parse_in_bvecs(be, &overlapped);
1306
if (err2)
1307
err = err2;
1308
if (!err) {
1309
reason = alg->decompress(&(struct z_erofs_decompress_req) {
1310
.sb = be->sb,
1311
.in = be->compressed_pages,
1312
.out = be->decompressed_pages,
1313
.inpages = pclusterpages,
1314
.outpages = be->nr_pages,
1315
.pageofs_in = pcl->pageofs_in,
1316
.pageofs_out = pcl->pageofs_out,
1317
.inputsize = pcl->pclustersize,
1318
.outputsize = pcl->length,
1319
.alg = pcl->algorithmformat,
1320
.inplace_io = overlapped,
1321
.partial_decoding = pcl->partial,
1322
.fillgaps = be->keepxcpy,
1323
.gfp = pcl->besteffort ? GFP_KERNEL :
1324
GFP_NOWAIT | __GFP_NORETRY
1325
}, be->pagepool);
1326
if (IS_ERR(reason)) {
1327
erofs_err(be->sb, "failed to decompress (%s) %ld @ pa %llu size %u => %u",
1328
alg->name, PTR_ERR(reason), pcl->pos,
1329
pcl->pclustersize, pcl->length);
1330
err = PTR_ERR(reason);
1331
} else if (unlikely(reason)) {
1332
erofs_err(be->sb, "failed to decompress (%s) %s @ pa %llu size %u => %u",
1333
alg->name, reason, pcl->pos,
1334
pcl->pclustersize, pcl->length);
1335
err = -EFSCORRUPTED;
1336
}
1337
}
1338
1339
/* must handle all compressed pages before actual file pages */
1340
if (pcl->from_meta) {
1341
folio_put(page_folio(pcl->compressed_bvecs[0].page));
1342
WRITE_ONCE(pcl->compressed_bvecs[0].page, NULL);
1343
} else {
1344
/* managed folios are still left in compressed_bvecs[] */
1345
for (i = 0; i < pclusterpages; ++i) {
1346
page = be->compressed_pages[i];
1347
if (!page)
1348
continue;
1349
if (erofs_folio_is_managed(sbi, page_folio(page))) {
1350
try_free = false;
1351
continue;
1352
}
1353
(void)z_erofs_put_shortlivedpage(be->pagepool, page);
1354
WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
1355
}
1356
}
1357
if (be->compressed_pages < be->onstack_pages ||
1358
be->compressed_pages >= be->onstack_pages + Z_EROFS_ONSTACK_PAGES)
1359
kvfree(be->compressed_pages);
1360
1361
jtop = 0;
1362
z_erofs_fill_other_copies(be, err);
1363
for (i = 0; i < be->nr_pages; ++i) {
1364
page = be->decompressed_pages[i];
1365
if (!page)
1366
continue;
1367
1368
DBG_BUGON(z_erofs_page_is_invalidated(page));
1369
if (!z_erofs_is_shortlived_page(page)) {
1370
erofs_onlinefolio_end(page_folio(page), err, true);
1371
continue;
1372
}
1373
if (pcl->algorithmformat != Z_EROFS_COMPRESSION_LZ4) {
1374
erofs_pagepool_add(be->pagepool, page);
1375
continue;
1376
}
1377
for (j = 0; j < jtop && be->decompressed_pages[j] != page; ++j)
1378
;
1379
if (j >= jtop) /* this bounce page is newly detected */
1380
be->decompressed_pages[jtop++] = page;
1381
}
1382
while (jtop)
1383
erofs_pagepool_add(be->pagepool,
1384
be->decompressed_pages[--jtop]);
1385
if (be->decompressed_pages != be->onstack_pages)
1386
kvfree(be->decompressed_pages);
1387
1388
pcl->length = 0;
1389
pcl->partial = true;
1390
pcl->besteffort = false;
1391
pcl->bvset.nextpage = NULL;
1392
pcl->vcnt = 0;
1393
1394
/* pcluster lock MUST be taken before the following line */
1395
WRITE_ONCE(pcl->next, NULL);
1396
mutex_unlock(&pcl->lock);
1397
1398
if (pcl->from_meta)
1399
z_erofs_free_pcluster(pcl);
1400
else
1401
z_erofs_put_pcluster(sbi, pcl, try_free);
1402
return err;
1403
}
1404
1405
static int z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
1406
struct page **pagepool)
1407
{
1408
struct z_erofs_backend be = {
1409
.sb = io->sb,
1410
.pagepool = pagepool,
1411
.decompressed_secondary_bvecs =
1412
LIST_HEAD_INIT(be.decompressed_secondary_bvecs),
1413
.pcl = io->head,
1414
};
1415
struct z_erofs_pcluster *next;
1416
int err = 0;
1417
1418
for (; be.pcl != Z_EROFS_PCLUSTER_TAIL; be.pcl = next) {
1419
DBG_BUGON(!be.pcl);
1420
next = READ_ONCE(be.pcl->next);
1421
err = z_erofs_decompress_pcluster(&be, io->eio) ?: err;
1422
}
1423
return err;
1424
}
1425
1426
static void z_erofs_decompressqueue_work(struct work_struct *work)
1427
{
1428
struct z_erofs_decompressqueue *bgq =
1429
container_of(work, struct z_erofs_decompressqueue, u.work);
1430
struct page *pagepool = NULL;
1431
1432
DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL);
1433
z_erofs_decompress_queue(bgq, &pagepool);
1434
erofs_release_pages(&pagepool);
1435
kvfree(bgq);
1436
}
1437
1438
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1439
static void z_erofs_decompressqueue_kthread_work(struct kthread_work *work)
1440
{
1441
z_erofs_decompressqueue_work((struct work_struct *)work);
1442
}
1443
#endif
1444
1445
/* Use (kthread_)work in atomic contexts to minimize scheduling overhead */
1446
static inline bool z_erofs_in_atomic(void)
1447
{
1448
if (IS_ENABLED(CONFIG_PREEMPTION) && rcu_preempt_depth())
1449
return true;
1450
if (!IS_ENABLED(CONFIG_PREEMPT_COUNT))
1451
return true;
1452
return !preemptible();
1453
}
1454
1455
static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
1456
int bios)
1457
{
1458
struct erofs_sb_info *const sbi = EROFS_SB(io->sb);
1459
1460
/* wake up the caller thread for sync decompression */
1461
if (io->sync) {
1462
if (!atomic_add_return(bios, &io->pending_bios))
1463
complete(&io->u.done);
1464
return;
1465
}
1466
1467
if (atomic_add_return(bios, &io->pending_bios))
1468
return;
1469
if (z_erofs_in_atomic()) {
1470
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1471
struct kthread_worker *worker;
1472
1473
rcu_read_lock();
1474
worker = rcu_dereference(
1475
z_erofs_pcpu_workers[raw_smp_processor_id()]);
1476
if (!worker) {
1477
INIT_WORK(&io->u.work, z_erofs_decompressqueue_work);
1478
queue_work(z_erofs_workqueue, &io->u.work);
1479
} else {
1480
kthread_queue_work(worker, &io->u.kthread_work);
1481
}
1482
rcu_read_unlock();
1483
#else
1484
queue_work(z_erofs_workqueue, &io->u.work);
1485
#endif
1486
/* enable sync decompression for readahead */
1487
if (sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO)
1488
sbi->opt.sync_decompress = EROFS_SYNC_DECOMPRESS_FORCE_ON;
1489
return;
1490
}
1491
z_erofs_decompressqueue_work(&io->u.work);
1492
}
1493
1494
static void z_erofs_fill_bio_vec(struct bio_vec *bvec,
1495
struct z_erofs_frontend *f,
1496
struct z_erofs_pcluster *pcl,
1497
unsigned int nr,
1498
struct address_space *mc)
1499
{
1500
gfp_t gfp = mapping_gfp_mask(mc);
1501
bool tocache = false;
1502
struct z_erofs_bvec zbv;
1503
struct address_space *mapping;
1504
struct folio *folio;
1505
struct page *page;
1506
int bs = i_blocksize(f->inode);
1507
1508
/* Except for inplace folios, the entire folio can be used for I/Os */
1509
bvec->bv_offset = 0;
1510
bvec->bv_len = PAGE_SIZE;
1511
repeat:
1512
spin_lock(&pcl->lockref.lock);
1513
zbv = pcl->compressed_bvecs[nr];
1514
spin_unlock(&pcl->lockref.lock);
1515
if (!zbv.page)
1516
goto out_allocfolio;
1517
1518
bvec->bv_page = zbv.page;
1519
DBG_BUGON(z_erofs_is_shortlived_page(bvec->bv_page));
1520
1521
folio = page_folio(zbv.page);
1522
/* For preallocated managed folios, add them to page cache here */
1523
if (folio->private == Z_EROFS_PREALLOCATED_FOLIO) {
1524
tocache = true;
1525
goto out_tocache;
1526
}
1527
1528
mapping = READ_ONCE(folio->mapping);
1529
/*
1530
* File-backed folios for inplace I/Os are all locked steady,
1531
* therefore it is impossible for `mapping` to be NULL.
1532
*/
1533
if (mapping && mapping != mc) {
1534
if (zbv.offset < 0)
1535
bvec->bv_offset = round_up(-zbv.offset, bs);
1536
bvec->bv_len = round_up(zbv.end, bs) - bvec->bv_offset;
1537
return;
1538
}
1539
1540
folio_lock(folio);
1541
if (likely(folio->mapping == mc)) {
1542
/*
1543
* The cached folio is still in managed cache but without
1544
* a valid `->private` pcluster hint. Let's reconnect them.
1545
*/
1546
if (!folio_test_private(folio)) {
1547
folio_attach_private(folio, pcl);
1548
/* compressed_bvecs[] already takes a ref before */
1549
folio_put(folio);
1550
}
1551
if (likely(folio->private == pcl)) {
1552
/* don't submit cache I/Os again if already uptodate */
1553
if (folio_test_uptodate(folio)) {
1554
folio_unlock(folio);
1555
bvec->bv_page = NULL;
1556
}
1557
return;
1558
}
1559
/*
1560
* Already linked with another pcluster, which only appears in
1561
* crafted images by fuzzers for now. But handle this anyway.
1562
*/
1563
tocache = false; /* use temporary short-lived pages */
1564
} else {
1565
DBG_BUGON(1); /* referenced managed folios can't be truncated */
1566
tocache = true;
1567
}
1568
folio_unlock(folio);
1569
folio_put(folio);
1570
out_allocfolio:
1571
page = __erofs_allocpage(&f->pagepool, gfp, true);
1572
spin_lock(&pcl->lockref.lock);
1573
if (unlikely(pcl->compressed_bvecs[nr].page != zbv.page)) {
1574
if (page)
1575
erofs_pagepool_add(&f->pagepool, page);
1576
spin_unlock(&pcl->lockref.lock);
1577
cond_resched();
1578
goto repeat;
1579
}
1580
pcl->compressed_bvecs[nr].page = page ? page : ERR_PTR(-ENOMEM);
1581
spin_unlock(&pcl->lockref.lock);
1582
bvec->bv_page = page;
1583
if (!page)
1584
return;
1585
folio = page_folio(page);
1586
out_tocache:
1587
if (!tocache || bs != PAGE_SIZE ||
1588
filemap_add_folio(mc, folio, (pcl->pos >> PAGE_SHIFT) + nr, gfp)) {
1589
/* turn into a temporary shortlived folio (1 ref) */
1590
folio->private = (void *)Z_EROFS_SHORTLIVED_PAGE;
1591
return;
1592
}
1593
folio_attach_private(folio, pcl);
1594
/* drop a refcount added by allocpage (then 2 refs in total here) */
1595
folio_put(folio);
1596
}
1597
1598
static struct z_erofs_decompressqueue *jobqueue_init(struct super_block *sb,
1599
struct z_erofs_decompressqueue *fgq, bool *fg)
1600
{
1601
struct z_erofs_decompressqueue *q;
1602
1603
if (fg && !*fg) {
1604
q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1605
if (!q) {
1606
*fg = true;
1607
goto fg_out;
1608
}
1609
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1610
kthread_init_work(&q->u.kthread_work,
1611
z_erofs_decompressqueue_kthread_work);
1612
#else
1613
INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
1614
#endif
1615
} else {
1616
fg_out:
1617
q = fgq;
1618
init_completion(&fgq->u.done);
1619
atomic_set(&fgq->pending_bios, 0);
1620
q->eio = false;
1621
q->sync = true;
1622
}
1623
q->sb = sb;
1624
q->head = Z_EROFS_PCLUSTER_TAIL;
1625
return q;
1626
}
1627
1628
/* define decompression jobqueue types */
1629
enum {
1630
JQ_BYPASS,
1631
JQ_SUBMIT,
1632
NR_JOBQUEUES,
1633
};
1634
1635
static void z_erofs_move_to_bypass_queue(struct z_erofs_pcluster *pcl,
1636
struct z_erofs_pcluster *next,
1637
struct z_erofs_pcluster **qtail[])
1638
{
1639
WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL);
1640
WRITE_ONCE(*qtail[JQ_SUBMIT], next);
1641
WRITE_ONCE(*qtail[JQ_BYPASS], pcl);
1642
qtail[JQ_BYPASS] = &pcl->next;
1643
}
1644
1645
static void z_erofs_endio(struct bio *bio)
1646
{
1647
struct z_erofs_decompressqueue *q = bio->bi_private;
1648
blk_status_t err = bio->bi_status;
1649
struct folio_iter fi;
1650
1651
bio_for_each_folio_all(fi, bio) {
1652
struct folio *folio = fi.folio;
1653
1654
DBG_BUGON(folio_test_uptodate(folio));
1655
DBG_BUGON(z_erofs_page_is_invalidated(&folio->page));
1656
if (!erofs_folio_is_managed(EROFS_SB(q->sb), folio))
1657
continue;
1658
1659
if (!err)
1660
folio_mark_uptodate(folio);
1661
folio_unlock(folio);
1662
}
1663
if (err)
1664
q->eio = true;
1665
z_erofs_decompress_kickoff(q, -1);
1666
if (bio->bi_bdev)
1667
bio_put(bio);
1668
}
1669
1670
static void z_erofs_submit_queue(struct z_erofs_frontend *f,
1671
struct z_erofs_decompressqueue *fgq,
1672
bool *force_fg, bool readahead)
1673
{
1674
struct super_block *sb = f->inode->i_sb;
1675
struct address_space *mc = MNGD_MAPPING(EROFS_SB(sb));
1676
struct z_erofs_pcluster **qtail[NR_JOBQUEUES];
1677
struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
1678
struct z_erofs_pcluster *pcl, *next;
1679
/* bio is NULL initially, so no need to initialize last_{index,bdev} */
1680
erofs_off_t last_pa;
1681
unsigned int nr_bios = 0;
1682
struct bio *bio = NULL;
1683
unsigned long pflags;
1684
int memstall = 0;
1685
1686
/* No need to read from device for pclusters in the bypass queue. */
1687
q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1688
q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, force_fg);
1689
1690
qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1691
qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
1692
1693
/* by default, all need io submission */
1694
q[JQ_SUBMIT]->head = next = f->head;
1695
1696
do {
1697
struct erofs_map_dev mdev;
1698
erofs_off_t cur, end;
1699
struct bio_vec bvec;
1700
unsigned int i = 0;
1701
bool bypass = true;
1702
1703
pcl = next;
1704
next = READ_ONCE(pcl->next);
1705
if (pcl->from_meta) {
1706
z_erofs_move_to_bypass_queue(pcl, next, qtail);
1707
continue;
1708
}
1709
1710
/* no device id here, thus it will always succeed */
1711
mdev = (struct erofs_map_dev) {
1712
.m_pa = round_down(pcl->pos, sb->s_blocksize),
1713
};
1714
(void)erofs_map_dev(sb, &mdev);
1715
1716
cur = mdev.m_pa;
1717
end = round_up(cur + pcl->pageofs_in + pcl->pclustersize,
1718
sb->s_blocksize);
1719
do {
1720
bvec.bv_page = NULL;
1721
if (bio && (cur != last_pa ||
1722
bio->bi_bdev != mdev.m_bdev)) {
1723
drain_io:
1724
if (erofs_is_fileio_mode(EROFS_SB(sb)))
1725
erofs_fileio_submit_bio(bio);
1726
else if (erofs_is_fscache_mode(sb))
1727
erofs_fscache_submit_bio(bio);
1728
else
1729
submit_bio(bio);
1730
1731
if (memstall) {
1732
psi_memstall_leave(&pflags);
1733
memstall = 0;
1734
}
1735
bio = NULL;
1736
}
1737
1738
if (!bvec.bv_page) {
1739
z_erofs_fill_bio_vec(&bvec, f, pcl, i++, mc);
1740
if (!bvec.bv_page)
1741
continue;
1742
if (cur + bvec.bv_len > end)
1743
bvec.bv_len = end - cur;
1744
DBG_BUGON(bvec.bv_len < sb->s_blocksize);
1745
}
1746
1747
if (unlikely(PageWorkingset(bvec.bv_page)) &&
1748
!memstall) {
1749
psi_memstall_enter(&pflags);
1750
memstall = 1;
1751
}
1752
1753
if (!bio) {
1754
if (erofs_is_fileio_mode(EROFS_SB(sb)))
1755
bio = erofs_fileio_bio_alloc(&mdev);
1756
else if (erofs_is_fscache_mode(sb))
1757
bio = erofs_fscache_bio_alloc(&mdev);
1758
else
1759
bio = bio_alloc(mdev.m_bdev, BIO_MAX_VECS,
1760
REQ_OP_READ, GFP_NOIO);
1761
bio->bi_end_io = z_erofs_endio;
1762
bio->bi_iter.bi_sector =
1763
(mdev.m_dif->fsoff + cur) >> 9;
1764
bio->bi_private = q[JQ_SUBMIT];
1765
if (readahead)
1766
bio->bi_opf |= REQ_RAHEAD;
1767
++nr_bios;
1768
}
1769
1770
if (!bio_add_page(bio, bvec.bv_page, bvec.bv_len,
1771
bvec.bv_offset))
1772
goto drain_io;
1773
last_pa = cur + bvec.bv_len;
1774
bypass = false;
1775
} while ((cur += bvec.bv_len) < end);
1776
1777
if (!bypass)
1778
qtail[JQ_SUBMIT] = &pcl->next;
1779
else
1780
z_erofs_move_to_bypass_queue(pcl, next, qtail);
1781
} while (next != Z_EROFS_PCLUSTER_TAIL);
1782
1783
if (bio) {
1784
if (erofs_is_fileio_mode(EROFS_SB(sb)))
1785
erofs_fileio_submit_bio(bio);
1786
else if (erofs_is_fscache_mode(sb))
1787
erofs_fscache_submit_bio(bio);
1788
else
1789
submit_bio(bio);
1790
}
1791
if (memstall)
1792
psi_memstall_leave(&pflags);
1793
1794
/*
1795
* although background is preferred, no one is pending for submission.
1796
* don't issue decompression but drop it directly instead.
1797
*/
1798
if (!*force_fg && !nr_bios) {
1799
kvfree(q[JQ_SUBMIT]);
1800
return;
1801
}
1802
z_erofs_decompress_kickoff(q[JQ_SUBMIT], nr_bios);
1803
}
1804
1805
static int z_erofs_runqueue(struct z_erofs_frontend *f, unsigned int rapages)
1806
{
1807
struct z_erofs_decompressqueue io[NR_JOBQUEUES];
1808
struct erofs_sb_info *sbi = EROFS_I_SB(f->inode);
1809
bool force_fg = z_erofs_is_sync_decompress(sbi, rapages);
1810
int err;
1811
1812
if (f->head == Z_EROFS_PCLUSTER_TAIL)
1813
return 0;
1814
z_erofs_submit_queue(f, io, &force_fg, !!rapages);
1815
1816
/* handle bypass queue (no i/o pclusters) immediately */
1817
err = z_erofs_decompress_queue(&io[JQ_BYPASS], &f->pagepool);
1818
if (!force_fg)
1819
return err;
1820
1821
/* wait until all bios are completed */
1822
wait_for_completion_io(&io[JQ_SUBMIT].u.done);
1823
1824
/* handle synchronous decompress queue in the caller context */
1825
return z_erofs_decompress_queue(&io[JQ_SUBMIT], &f->pagepool) ?: err;
1826
}
1827
1828
/*
1829
* Since partial uptodate is still unimplemented for now, we have to use
1830
* approximate readmore strategies as a start.
1831
*/
1832
static void z_erofs_pcluster_readmore(struct z_erofs_frontend *f,
1833
struct readahead_control *rac, bool backmost)
1834
{
1835
struct inode *inode = f->inode;
1836
struct erofs_map_blocks *map = &f->map;
1837
erofs_off_t cur, end, headoffset = f->headoffset;
1838
int err;
1839
1840
if (backmost) {
1841
if (rac)
1842
end = headoffset + readahead_length(rac) - 1;
1843
else
1844
end = headoffset + PAGE_SIZE - 1;
1845
map->m_la = end;
1846
err = z_erofs_map_blocks_iter(inode, map,
1847
EROFS_GET_BLOCKS_READMORE);
1848
if (err || !(map->m_flags & EROFS_MAP_ENCODED))
1849
return;
1850
1851
/* expand ra for the trailing edge if readahead */
1852
if (rac) {
1853
cur = round_up(map->m_la + map->m_llen, PAGE_SIZE);
1854
readahead_expand(rac, headoffset, cur - headoffset);
1855
return;
1856
}
1857
end = round_up(end, PAGE_SIZE);
1858
} else {
1859
end = round_up(map->m_la, PAGE_SIZE);
1860
if (!(map->m_flags & EROFS_MAP_ENCODED) || !map->m_llen)
1861
return;
1862
}
1863
1864
cur = map->m_la + map->m_llen - 1;
1865
while ((cur >= end) && (cur < i_size_read(inode))) {
1866
pgoff_t index = cur >> PAGE_SHIFT;
1867
struct folio *folio;
1868
1869
folio = erofs_grab_folio_nowait(inode->i_mapping, index);
1870
if (!IS_ERR_OR_NULL(folio)) {
1871
if (folio_test_uptodate(folio))
1872
folio_unlock(folio);
1873
else
1874
z_erofs_scan_folio(f, folio, !!rac);
1875
folio_put(folio);
1876
}
1877
1878
if (cur < PAGE_SIZE)
1879
break;
1880
cur = (index << PAGE_SHIFT) - 1;
1881
}
1882
}
1883
1884
static int z_erofs_read_folio(struct file *file, struct folio *folio)
1885
{
1886
struct inode *const inode = folio->mapping->host;
1887
Z_EROFS_DEFINE_FRONTEND(f, inode, folio_pos(folio));
1888
int err;
1889
1890
trace_erofs_read_folio(folio, false);
1891
z_erofs_pcluster_readmore(&f, NULL, true);
1892
err = z_erofs_scan_folio(&f, folio, false);
1893
z_erofs_pcluster_readmore(&f, NULL, false);
1894
z_erofs_pcluster_end(&f);
1895
1896
/* if some pclusters are ready, need submit them anyway */
1897
err = z_erofs_runqueue(&f, 0) ?: err;
1898
if (err && err != -EINTR)
1899
erofs_err(inode->i_sb, "read error %d @ %lu of nid %llu",
1900
err, folio->index, EROFS_I(inode)->nid);
1901
1902
erofs_put_metabuf(&f.map.buf);
1903
erofs_release_pages(&f.pagepool);
1904
return err;
1905
}
1906
1907
static void z_erofs_readahead(struct readahead_control *rac)
1908
{
1909
struct inode *const inode = rac->mapping->host;
1910
Z_EROFS_DEFINE_FRONTEND(f, inode, readahead_pos(rac));
1911
unsigned int nrpages = readahead_count(rac);
1912
struct folio *head = NULL, *folio;
1913
int err;
1914
1915
trace_erofs_readahead(inode, readahead_index(rac), nrpages, false);
1916
z_erofs_pcluster_readmore(&f, rac, true);
1917
while ((folio = readahead_folio(rac))) {
1918
folio->private = head;
1919
head = folio;
1920
}
1921
1922
/* traverse in reverse order for best metadata I/O performance */
1923
while (head) {
1924
folio = head;
1925
head = folio_get_private(folio);
1926
1927
err = z_erofs_scan_folio(&f, folio, true);
1928
if (err && err != -EINTR)
1929
erofs_err(inode->i_sb, "readahead error at folio %lu @ nid %llu",
1930
folio->index, EROFS_I(inode)->nid);
1931
}
1932
z_erofs_pcluster_readmore(&f, rac, false);
1933
z_erofs_pcluster_end(&f);
1934
1935
(void)z_erofs_runqueue(&f, nrpages);
1936
erofs_put_metabuf(&f.map.buf);
1937
erofs_release_pages(&f.pagepool);
1938
}
1939
1940
const struct address_space_operations z_erofs_aops = {
1941
.read_folio = z_erofs_read_folio,
1942
.readahead = z_erofs_readahead,
1943
};
1944
1945