1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Network filesystem read subrequest retrying.
3 *
4 * Copyright (C) 2024 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
6 */
7
8 #include <linux/fs.h>
9 #include <linux/slab.h>
10 #include "internal.h"
11
netfs_reissue_read(struct netfs_io_request * rreq,struct netfs_io_subrequest * subreq)12 static void netfs_reissue_read(struct netfs_io_request *rreq,
13 struct netfs_io_subrequest *subreq)
14 {
15 struct iov_iter *io_iter = &subreq->io_iter;
16
17 if (iov_iter_is_folioq(io_iter)) {
18 subreq->curr_folioq = (struct folio_queue *)io_iter->folioq;
19 subreq->curr_folioq_slot = io_iter->folioq_slot;
20 subreq->curr_folio_order = subreq->curr_folioq->orders[subreq->curr_folioq_slot];
21 }
22
23 atomic_inc(&rreq->nr_outstanding);
24 __set_bit(NETFS_SREQ_IN_PROGRESS, &subreq->flags);
25 netfs_get_subrequest(subreq, netfs_sreq_trace_get_resubmit);
26 subreq->rreq->netfs_ops->issue_read(subreq);
27 }
28
29 /*
30 * Go through the list of failed/short reads, retrying all retryable ones. We
31 * need to switch failed cache reads to network downloads.
32 */
netfs_retry_read_subrequests(struct netfs_io_request * rreq)33 static void netfs_retry_read_subrequests(struct netfs_io_request *rreq)
34 {
35 struct netfs_io_subrequest *subreq;
36 struct netfs_io_stream *stream0 = &rreq->io_streams[0];
37 LIST_HEAD(sublist);
38 LIST_HEAD(queue);
39
40 _enter("R=%x", rreq->debug_id);
41
42 if (list_empty(&rreq->subrequests))
43 return;
44
45 if (rreq->netfs_ops->retry_request)
46 rreq->netfs_ops->retry_request(rreq, NULL);
47
48 /* If there's no renegotiation to do, just resend each retryable subreq
49 * up to the first permanently failed one.
50 */
51 if (!rreq->netfs_ops->prepare_read &&
52 !rreq->cache_resources.ops) {
53 struct netfs_io_subrequest *subreq;
54
55 list_for_each_entry(subreq, &rreq->subrequests, rreq_link) {
56 if (test_bit(NETFS_SREQ_FAILED, &subreq->flags))
57 break;
58 if (__test_and_clear_bit(NETFS_SREQ_NEED_RETRY, &subreq->flags)) {
59 netfs_reset_iter(subreq);
60 netfs_reissue_read(rreq, subreq);
61 }
62 }
63 return;
64 }
65
66 /* Okay, we need to renegotiate all the download requests and flip any
67 * failed cache reads over to being download requests and negotiate
68 * those also. All fully successful subreqs have been removed from the
69 * list and any spare data from those has been donated.
70 *
71 * What we do is decant the list and rebuild it one subreq at a time so
72 * that we don't end up with donations jumping over a gap we're busy
73 * populating with smaller subrequests. In the event that the subreq
74 * we just launched finishes before we insert the next subreq, it'll
75 * fill in rreq->prev_donated instead.
76
77 * Note: Alternatively, we could split the tail subrequest right before
78 * we reissue it and fix up the donations under lock.
79 */
80 list_splice_init(&rreq->subrequests, &queue);
81
82 do {
83 struct netfs_io_subrequest *from;
84 struct iov_iter source;
85 unsigned long long start, len;
86 size_t part, deferred_next_donated = 0;
87 bool boundary = false;
88
89 /* Go through the subreqs and find the next span of contiguous
90 * buffer that we then rejig (cifs, for example, needs the
91 * rsize renegotiating) and reissue.
92 */
93 from = list_first_entry(&queue, struct netfs_io_subrequest, rreq_link);
94 list_move_tail(&from->rreq_link, &sublist);
95 start = from->start + from->transferred;
96 len = from->len - from->transferred;
97
98 _debug("from R=%08x[%x] s=%llx ctl=%zx/%zx/%zx",
99 rreq->debug_id, from->debug_index,
100 from->start, from->consumed, from->transferred, from->len);
101
102 if (test_bit(NETFS_SREQ_FAILED, &from->flags) ||
103 !test_bit(NETFS_SREQ_NEED_RETRY, &from->flags))
104 goto abandon;
105
106 deferred_next_donated = from->next_donated;
107 while ((subreq = list_first_entry_or_null(
108 &queue, struct netfs_io_subrequest, rreq_link))) {
109 if (subreq->start != start + len ||
110 subreq->transferred > 0 ||
111 !test_bit(NETFS_SREQ_NEED_RETRY, &subreq->flags))
112 break;
113 list_move_tail(&subreq->rreq_link, &sublist);
114 len += subreq->len;
115 deferred_next_donated = subreq->next_donated;
116 if (test_bit(NETFS_SREQ_BOUNDARY, &subreq->flags))
117 break;
118 }
119
120 _debug(" - range: %llx-%llx %llx", start, start + len - 1, len);
121
122 /* Determine the set of buffers we're going to use. Each
123 * subreq gets a subset of a single overall contiguous buffer.
124 */
125 netfs_reset_iter(from);
126 source = from->io_iter;
127 source.count = len;
128
129 /* Work through the sublist. */
130 while ((subreq = list_first_entry_or_null(
131 &sublist, struct netfs_io_subrequest, rreq_link))) {
132 list_del(&subreq->rreq_link);
133
134 subreq->source = NETFS_DOWNLOAD_FROM_SERVER;
135 subreq->start = start - subreq->transferred;
136 subreq->len = len + subreq->transferred;
137 stream0->sreq_max_len = subreq->len;
138
139 __clear_bit(NETFS_SREQ_NEED_RETRY, &subreq->flags);
140 __set_bit(NETFS_SREQ_RETRYING, &subreq->flags);
141
142 spin_lock_bh(&rreq->lock);
143 list_add_tail(&subreq->rreq_link, &rreq->subrequests);
144 subreq->prev_donated += rreq->prev_donated;
145 rreq->prev_donated = 0;
146 trace_netfs_sreq(subreq, netfs_sreq_trace_retry);
147 spin_unlock_bh(&rreq->lock);
148
149 BUG_ON(!len);
150
151 /* Renegotiate max_len (rsize) */
152 if (rreq->netfs_ops->prepare_read &&
153 rreq->netfs_ops->prepare_read(subreq) < 0) {
154 trace_netfs_sreq(subreq, netfs_sreq_trace_reprep_failed);
155 __set_bit(NETFS_SREQ_FAILED, &subreq->flags);
156 }
157
158 part = umin(len, stream0->sreq_max_len);
159 if (unlikely(rreq->io_streams[0].sreq_max_segs))
160 part = netfs_limit_iter(&source, 0, part, stream0->sreq_max_segs);
161 subreq->len = subreq->transferred + part;
162 subreq->io_iter = source;
163 iov_iter_truncate(&subreq->io_iter, part);
164 iov_iter_advance(&source, part);
165 len -= part;
166 start += part;
167 if (!len) {
168 if (boundary)
169 __set_bit(NETFS_SREQ_BOUNDARY, &subreq->flags);
170 subreq->next_donated = deferred_next_donated;
171 } else {
172 __clear_bit(NETFS_SREQ_BOUNDARY, &subreq->flags);
173 subreq->next_donated = 0;
174 }
175
176 netfs_reissue_read(rreq, subreq);
177 if (!len)
178 break;
179
180 /* If we ran out of subrequests, allocate another. */
181 if (list_empty(&sublist)) {
182 subreq = netfs_alloc_subrequest(rreq);
183 if (!subreq)
184 goto abandon;
185 subreq->source = NETFS_DOWNLOAD_FROM_SERVER;
186 subreq->start = start;
187
188 /* We get two refs, but need just one. */
189 netfs_put_subrequest(subreq, false, netfs_sreq_trace_new);
190 trace_netfs_sreq(subreq, netfs_sreq_trace_split);
191 list_add_tail(&subreq->rreq_link, &sublist);
192 }
193 }
194
195 /* If we managed to use fewer subreqs, we can discard the
196 * excess.
197 */
198 while ((subreq = list_first_entry_or_null(
199 &sublist, struct netfs_io_subrequest, rreq_link))) {
200 trace_netfs_sreq(subreq, netfs_sreq_trace_discard);
201 list_del(&subreq->rreq_link);
202 netfs_put_subrequest(subreq, false, netfs_sreq_trace_put_done);
203 }
204
205 } while (!list_empty(&queue));
206
207 return;
208
209 /* If we hit ENOMEM, fail all remaining subrequests */
210 abandon:
211 list_splice_init(&sublist, &queue);
212 list_for_each_entry(subreq, &queue, rreq_link) {
213 if (!subreq->error)
214 subreq->error = -ENOMEM;
215 __clear_bit(NETFS_SREQ_FAILED, &subreq->flags);
216 __clear_bit(NETFS_SREQ_NEED_RETRY, &subreq->flags);
217 __clear_bit(NETFS_SREQ_RETRYING, &subreq->flags);
218 }
219 spin_lock_bh(&rreq->lock);
220 list_splice_tail_init(&queue, &rreq->subrequests);
221 spin_unlock_bh(&rreq->lock);
222 }
223
224 /*
225 * Retry reads.
226 */
netfs_retry_reads(struct netfs_io_request * rreq)227 void netfs_retry_reads(struct netfs_io_request *rreq)
228 {
229 trace_netfs_rreq(rreq, netfs_rreq_trace_resubmit);
230
231 atomic_inc(&rreq->nr_outstanding);
232
233 netfs_retry_read_subrequests(rreq);
234
235 if (atomic_dec_and_test(&rreq->nr_outstanding))
236 netfs_rreq_terminated(rreq, false);
237 }
238
239 /*
240 * Unlock any the pages that haven't been unlocked yet due to abandoned
241 * subrequests.
242 */
netfs_unlock_abandoned_read_pages(struct netfs_io_request * rreq)243 void netfs_unlock_abandoned_read_pages(struct netfs_io_request *rreq)
244 {
245 struct folio_queue *p;
246
247 for (p = rreq->buffer; p; p = p->next) {
248 for (int slot = 0; slot < folioq_count(p); slot++) {
249 struct folio *folio = folioq_folio(p, slot);
250
251 if (folio && !folioq_is_marked2(p, slot)) {
252 trace_netfs_folio(folio, netfs_folio_trace_abandon);
253 folio_unlock(folio);
254 }
255 }
256 }
257 }
258