1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * padata.c - generic interface to process data streams in parallel
4 *
5 * See Documentation/core-api/padata.rst for more information.
6 *
7 * Copyright (C) 2008, 2009 secunet Security Networks AG
8 * Copyright (C) 2008, 2009 Steffen Klassert <steffen.klassert@secunet.com>
9 *
10 * Copyright (c) 2020 Oracle and/or its affiliates.
11 * Author: Daniel Jordan <daniel.m.jordan@oracle.com>
12 */
13
14 #include <linux/completion.h>
15 #include <linux/export.h>
16 #include <linux/cpumask.h>
17 #include <linux/err.h>
18 #include <linux/cpu.h>
19 #include <linux/padata.h>
20 #include <linux/mutex.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/sysfs.h>
24 #include <linux/rcupdate.h>
25
26 #define PADATA_WORK_ONSTACK 1 /* Work's memory is on stack */
27
28 struct padata_work {
29 struct work_struct pw_work;
30 struct list_head pw_list; /* padata_free_works linkage */
31 void *pw_data;
32 };
33
34 static DEFINE_SPINLOCK(padata_works_lock);
35 static struct padata_work *padata_works;
36 static LIST_HEAD(padata_free_works);
37
38 struct padata_mt_job_state {
39 spinlock_t lock;
40 struct completion completion;
41 struct padata_mt_job *job;
42 int nworks;
43 int nworks_fini;
44 unsigned long chunk_size;
45 };
46
47 static void padata_free_pd(struct parallel_data *pd);
48 static void __init padata_mt_helper(struct work_struct *work);
49
padata_get_pd(struct parallel_data * pd)50 static inline void padata_get_pd(struct parallel_data *pd)
51 {
52 refcount_inc(&pd->refcnt);
53 }
54
padata_put_pd_cnt(struct parallel_data * pd,int cnt)55 static inline void padata_put_pd_cnt(struct parallel_data *pd, int cnt)
56 {
57 if (refcount_sub_and_test(cnt, &pd->refcnt))
58 padata_free_pd(pd);
59 }
60
padata_put_pd(struct parallel_data * pd)61 static inline void padata_put_pd(struct parallel_data *pd)
62 {
63 padata_put_pd_cnt(pd, 1);
64 }
65
padata_index_to_cpu(struct parallel_data * pd,int cpu_index)66 static int padata_index_to_cpu(struct parallel_data *pd, int cpu_index)
67 {
68 int cpu, target_cpu;
69
70 target_cpu = cpumask_first(pd->cpumask.pcpu);
71 for (cpu = 0; cpu < cpu_index; cpu++)
72 target_cpu = cpumask_next(target_cpu, pd->cpumask.pcpu);
73
74 return target_cpu;
75 }
76
padata_cpu_hash(struct parallel_data * pd,unsigned int seq_nr)77 static int padata_cpu_hash(struct parallel_data *pd, unsigned int seq_nr)
78 {
79 /*
80 * Hash the sequence numbers to the cpus by taking
81 * seq_nr mod. number of cpus in use.
82 */
83 int cpu_index = seq_nr % cpumask_weight(pd->cpumask.pcpu);
84
85 return padata_index_to_cpu(pd, cpu_index);
86 }
87
padata_work_alloc(void)88 static struct padata_work *padata_work_alloc(void)
89 {
90 struct padata_work *pw;
91
92 lockdep_assert_held(&padata_works_lock);
93
94 if (list_empty(&padata_free_works))
95 return NULL; /* No more work items allowed to be queued. */
96
97 pw = list_first_entry(&padata_free_works, struct padata_work, pw_list);
98 list_del(&pw->pw_list);
99 return pw;
100 }
101
102 /*
103 * This function is marked __ref because this function may be optimized in such
104 * a way that it directly refers to work_fn's address, which causes modpost to
105 * complain when work_fn is marked __init. This scenario was observed with clang
106 * LTO, where padata_work_init() was optimized to refer directly to
107 * padata_mt_helper() because the calls to padata_work_init() with other work_fn
108 * values were eliminated or inlined.
109 */
padata_work_init(struct padata_work * pw,work_func_t work_fn,void * data,int flags)110 static void __ref padata_work_init(struct padata_work *pw, work_func_t work_fn,
111 void *data, int flags)
112 {
113 if (flags & PADATA_WORK_ONSTACK)
114 INIT_WORK_ONSTACK(&pw->pw_work, work_fn);
115 else
116 INIT_WORK(&pw->pw_work, work_fn);
117 pw->pw_data = data;
118 }
119
padata_work_alloc_mt(int nworks,void * data,struct list_head * head)120 static int __init padata_work_alloc_mt(int nworks, void *data,
121 struct list_head *head)
122 {
123 int i;
124
125 spin_lock_bh(&padata_works_lock);
126 /* Start at 1 because the current task participates in the job. */
127 for (i = 1; i < nworks; ++i) {
128 struct padata_work *pw = padata_work_alloc();
129
130 if (!pw)
131 break;
132 padata_work_init(pw, padata_mt_helper, data, 0);
133 list_add(&pw->pw_list, head);
134 }
135 spin_unlock_bh(&padata_works_lock);
136
137 return i;
138 }
139
padata_work_free(struct padata_work * pw)140 static void padata_work_free(struct padata_work *pw)
141 {
142 lockdep_assert_held(&padata_works_lock);
143 list_add(&pw->pw_list, &padata_free_works);
144 }
145
padata_works_free(struct list_head * works)146 static void __init padata_works_free(struct list_head *works)
147 {
148 struct padata_work *cur, *next;
149
150 if (list_empty(works))
151 return;
152
153 spin_lock_bh(&padata_works_lock);
154 list_for_each_entry_safe(cur, next, works, pw_list) {
155 list_del(&cur->pw_list);
156 padata_work_free(cur);
157 }
158 spin_unlock_bh(&padata_works_lock);
159 }
160
padata_parallel_worker(struct work_struct * parallel_work)161 static void padata_parallel_worker(struct work_struct *parallel_work)
162 {
163 struct padata_work *pw = container_of(parallel_work, struct padata_work,
164 pw_work);
165 struct padata_priv *padata = pw->pw_data;
166
167 local_bh_disable();
168 padata->parallel(padata);
169 spin_lock(&padata_works_lock);
170 padata_work_free(pw);
171 spin_unlock(&padata_works_lock);
172 local_bh_enable();
173 }
174
175 /**
176 * padata_do_parallel - padata parallelization function
177 *
178 * @ps: padatashell
179 * @padata: object to be parallelized
180 * @cb_cpu: pointer to the CPU that the serialization callback function should
181 * run on. If it's not in the serial cpumask of @pinst
182 * (i.e. cpumask.cbcpu), this function selects a fallback CPU and if
183 * none found, returns -EINVAL.
184 *
185 * The parallelization callback function will run with BHs off.
186 * Note: Every object which is parallelized by padata_do_parallel
187 * must be seen by padata_do_serial.
188 *
189 * Return: 0 on success or else negative error code.
190 */
padata_do_parallel(struct padata_shell * ps,struct padata_priv * padata,int * cb_cpu)191 int padata_do_parallel(struct padata_shell *ps,
192 struct padata_priv *padata, int *cb_cpu)
193 {
194 struct padata_instance *pinst = ps->pinst;
195 int i, cpu, cpu_index, err;
196 struct parallel_data *pd;
197 struct padata_work *pw;
198
199 rcu_read_lock_bh();
200
201 pd = rcu_dereference_bh(ps->pd);
202
203 err = -EINVAL;
204 if (!(pinst->flags & PADATA_INIT) || pinst->flags & PADATA_INVALID)
205 goto out;
206
207 if (!cpumask_test_cpu(*cb_cpu, pd->cpumask.cbcpu)) {
208 if (cpumask_empty(pd->cpumask.cbcpu))
209 goto out;
210
211 /* Select an alternate fallback CPU and notify the caller. */
212 cpu_index = *cb_cpu % cpumask_weight(pd->cpumask.cbcpu);
213
214 cpu = cpumask_first(pd->cpumask.cbcpu);
215 for (i = 0; i < cpu_index; i++)
216 cpu = cpumask_next(cpu, pd->cpumask.cbcpu);
217
218 *cb_cpu = cpu;
219 }
220
221 err = -EBUSY;
222 if ((pinst->flags & PADATA_RESET))
223 goto out;
224
225 padata_get_pd(pd);
226 padata->pd = pd;
227 padata->cb_cpu = *cb_cpu;
228
229 spin_lock(&padata_works_lock);
230 padata->seq_nr = ++pd->seq_nr;
231 pw = padata_work_alloc();
232 spin_unlock(&padata_works_lock);
233
234 if (!pw) {
235 /* Maximum works limit exceeded, run in the current task. */
236 padata->parallel(padata);
237 }
238
239 rcu_read_unlock_bh();
240
241 if (pw) {
242 padata_work_init(pw, padata_parallel_worker, padata, 0);
243 queue_work(pinst->parallel_wq, &pw->pw_work);
244 }
245
246 return 0;
247 out:
248 rcu_read_unlock_bh();
249
250 return err;
251 }
252 EXPORT_SYMBOL(padata_do_parallel);
253
254 /*
255 * padata_find_next - Find the next object that needs serialization.
256 *
257 * Return:
258 * * A pointer to the control struct of the next object that needs
259 * serialization, if present in one of the percpu reorder queues.
260 * * NULL, if the next object that needs serialization will
261 * be parallel processed by another cpu and is not yet present in
262 * the cpu's reorder queue.
263 */
padata_find_next(struct parallel_data * pd,bool remove_object)264 static struct padata_priv *padata_find_next(struct parallel_data *pd,
265 bool remove_object)
266 {
267 struct padata_priv *padata;
268 struct padata_list *reorder;
269 int cpu = pd->cpu;
270
271 reorder = per_cpu_ptr(pd->reorder_list, cpu);
272
273 spin_lock(&reorder->lock);
274 if (list_empty(&reorder->list)) {
275 spin_unlock(&reorder->lock);
276 return NULL;
277 }
278
279 padata = list_entry(reorder->list.next, struct padata_priv, list);
280
281 /*
282 * Checks the rare case where two or more parallel jobs have hashed to
283 * the same CPU and one of the later ones finishes first.
284 */
285 if (padata->seq_nr != pd->processed) {
286 spin_unlock(&reorder->lock);
287 return NULL;
288 }
289
290 if (remove_object) {
291 list_del_init(&padata->list);
292 ++pd->processed;
293 pd->cpu = cpumask_next_wrap(cpu, pd->cpumask.pcpu, -1, false);
294 }
295
296 spin_unlock(&reorder->lock);
297 return padata;
298 }
299
padata_reorder(struct parallel_data * pd)300 static void padata_reorder(struct parallel_data *pd)
301 {
302 struct padata_instance *pinst = pd->ps->pinst;
303 int cb_cpu;
304 struct padata_priv *padata;
305 struct padata_serial_queue *squeue;
306 struct padata_list *reorder;
307
308 /*
309 * We need to ensure that only one cpu can work on dequeueing of
310 * the reorder queue the time. Calculating in which percpu reorder
311 * queue the next object will arrive takes some time. A spinlock
312 * would be highly contended. Also it is not clear in which order
313 * the objects arrive to the reorder queues. So a cpu could wait to
314 * get the lock just to notice that there is nothing to do at the
315 * moment. Therefore we use a trylock and let the holder of the lock
316 * care for all the objects enqueued during the holdtime of the lock.
317 */
318 if (!spin_trylock_bh(&pd->lock))
319 return;
320
321 while (1) {
322 padata = padata_find_next(pd, true);
323
324 /*
325 * If the next object that needs serialization is parallel
326 * processed by another cpu and is still on it's way to the
327 * cpu's reorder queue, nothing to do for now.
328 */
329 if (!padata)
330 break;
331
332 cb_cpu = padata->cb_cpu;
333 squeue = per_cpu_ptr(pd->squeue, cb_cpu);
334
335 spin_lock(&squeue->serial.lock);
336 list_add_tail(&padata->list, &squeue->serial.list);
337 spin_unlock(&squeue->serial.lock);
338
339 queue_work_on(cb_cpu, pinst->serial_wq, &squeue->work);
340 }
341
342 spin_unlock_bh(&pd->lock);
343
344 /*
345 * The next object that needs serialization might have arrived to
346 * the reorder queues in the meantime.
347 *
348 * Ensure reorder queue is read after pd->lock is dropped so we see
349 * new objects from another task in padata_do_serial. Pairs with
350 * smp_mb in padata_do_serial.
351 */
352 smp_mb();
353
354 reorder = per_cpu_ptr(pd->reorder_list, pd->cpu);
355 if (!list_empty(&reorder->list) && padata_find_next(pd, false)) {
356 /*
357 * Other context(eg. the padata_serial_worker) can finish the request.
358 * To avoid UAF issue, add pd ref here, and put pd ref after reorder_work finish.
359 */
360 padata_get_pd(pd);
361 if (!queue_work(pinst->serial_wq, &pd->reorder_work))
362 padata_put_pd(pd);
363 }
364 }
365
invoke_padata_reorder(struct work_struct * work)366 static void invoke_padata_reorder(struct work_struct *work)
367 {
368 struct parallel_data *pd;
369
370 local_bh_disable();
371 pd = container_of(work, struct parallel_data, reorder_work);
372 padata_reorder(pd);
373 local_bh_enable();
374 /* Pairs with putting the reorder_work in the serial_wq */
375 padata_put_pd(pd);
376 }
377
padata_serial_worker(struct work_struct * serial_work)378 static void padata_serial_worker(struct work_struct *serial_work)
379 {
380 struct padata_serial_queue *squeue;
381 struct parallel_data *pd;
382 LIST_HEAD(local_list);
383 int cnt;
384
385 local_bh_disable();
386 squeue = container_of(serial_work, struct padata_serial_queue, work);
387 pd = squeue->pd;
388
389 spin_lock(&squeue->serial.lock);
390 list_replace_init(&squeue->serial.list, &local_list);
391 spin_unlock(&squeue->serial.lock);
392
393 cnt = 0;
394
395 while (!list_empty(&local_list)) {
396 struct padata_priv *padata;
397
398 padata = list_entry(local_list.next,
399 struct padata_priv, list);
400
401 list_del_init(&padata->list);
402
403 padata->serial(padata);
404 cnt++;
405 }
406 local_bh_enable();
407
408 padata_put_pd_cnt(pd, cnt);
409 }
410
411 /**
412 * padata_do_serial - padata serialization function
413 *
414 * @padata: object to be serialized.
415 *
416 * padata_do_serial must be called for every parallelized object.
417 * The serialization callback function will run with BHs off.
418 */
padata_do_serial(struct padata_priv * padata)419 void padata_do_serial(struct padata_priv *padata)
420 {
421 struct parallel_data *pd = padata->pd;
422 int hashed_cpu = padata_cpu_hash(pd, padata->seq_nr);
423 struct padata_list *reorder = per_cpu_ptr(pd->reorder_list, hashed_cpu);
424 struct padata_priv *cur;
425 struct list_head *pos;
426
427 spin_lock(&reorder->lock);
428 /* Sort in ascending order of sequence number. */
429 list_for_each_prev(pos, &reorder->list) {
430 cur = list_entry(pos, struct padata_priv, list);
431 /* Compare by difference to consider integer wrap around */
432 if ((signed int)(cur->seq_nr - padata->seq_nr) < 0)
433 break;
434 }
435 list_add(&padata->list, pos);
436 spin_unlock(&reorder->lock);
437
438 /*
439 * Ensure the addition to the reorder list is ordered correctly
440 * with the trylock of pd->lock in padata_reorder. Pairs with smp_mb
441 * in padata_reorder.
442 */
443 smp_mb();
444
445 padata_reorder(pd);
446 }
447 EXPORT_SYMBOL(padata_do_serial);
448
padata_setup_cpumasks(struct padata_instance * pinst)449 static int padata_setup_cpumasks(struct padata_instance *pinst)
450 {
451 struct workqueue_attrs *attrs;
452 int err;
453
454 attrs = alloc_workqueue_attrs();
455 if (!attrs)
456 return -ENOMEM;
457
458 /* Restrict parallel_wq workers to pd->cpumask.pcpu. */
459 cpumask_copy(attrs->cpumask, pinst->cpumask.pcpu);
460 err = apply_workqueue_attrs(pinst->parallel_wq, attrs);
461 free_workqueue_attrs(attrs);
462
463 return err;
464 }
465
padata_mt_helper(struct work_struct * w)466 static void __init padata_mt_helper(struct work_struct *w)
467 {
468 struct padata_work *pw = container_of(w, struct padata_work, pw_work);
469 struct padata_mt_job_state *ps = pw->pw_data;
470 struct padata_mt_job *job = ps->job;
471 bool done;
472
473 spin_lock(&ps->lock);
474
475 while (job->size > 0) {
476 unsigned long start, size, end;
477
478 start = job->start;
479 /* So end is chunk size aligned if enough work remains. */
480 size = roundup(start + 1, ps->chunk_size) - start;
481 size = min(size, job->size);
482 end = start + size;
483
484 job->start = end;
485 job->size -= size;
486
487 spin_unlock(&ps->lock);
488 job->thread_fn(start, end, job->fn_arg);
489 spin_lock(&ps->lock);
490 }
491
492 ++ps->nworks_fini;
493 done = (ps->nworks_fini == ps->nworks);
494 spin_unlock(&ps->lock);
495
496 if (done)
497 complete(&ps->completion);
498 }
499
500 /**
501 * padata_do_multithreaded - run a multithreaded job
502 * @job: Description of the job.
503 *
504 * See the definition of struct padata_mt_job for more details.
505 */
padata_do_multithreaded(struct padata_mt_job * job)506 void __init padata_do_multithreaded(struct padata_mt_job *job)
507 {
508 /* In case threads finish at different times. */
509 static const unsigned long load_balance_factor = 4;
510 struct padata_work my_work, *pw;
511 struct padata_mt_job_state ps;
512 LIST_HEAD(works);
513 int nworks, nid;
514 static atomic_t last_used_nid __initdata;
515
516 if (job->size == 0)
517 return;
518
519 /* Ensure at least one thread when size < min_chunk. */
520 nworks = max(job->size / max(job->min_chunk, job->align), 1ul);
521 nworks = min(nworks, job->max_threads);
522
523 if (nworks == 1) {
524 /* Single thread, no coordination needed, cut to the chase. */
525 job->thread_fn(job->start, job->start + job->size, job->fn_arg);
526 return;
527 }
528
529 spin_lock_init(&ps.lock);
530 init_completion(&ps.completion);
531 ps.job = job;
532 ps.nworks = padata_work_alloc_mt(nworks, &ps, &works);
533 ps.nworks_fini = 0;
534
535 /*
536 * Chunk size is the amount of work a helper does per call to the
537 * thread function. Load balance large jobs between threads by
538 * increasing the number of chunks, guarantee at least the minimum
539 * chunk size from the caller, and honor the caller's alignment.
540 * Ensure chunk_size is at least 1 to prevent divide-by-0
541 * panic in padata_mt_helper().
542 */
543 ps.chunk_size = job->size / (ps.nworks * load_balance_factor);
544 ps.chunk_size = max(ps.chunk_size, job->min_chunk);
545 ps.chunk_size = max(ps.chunk_size, 1ul);
546 ps.chunk_size = roundup(ps.chunk_size, job->align);
547
548 /*
549 * chunk_size can be 0 if the caller sets min_chunk to 0. So force it
550 * to at least 1 to prevent divide-by-0 panic in padata_mt_helper().`
551 */
552 if (!ps.chunk_size)
553 ps.chunk_size = 1U;
554
555 list_for_each_entry(pw, &works, pw_list)
556 if (job->numa_aware) {
557 int old_node = atomic_read(&last_used_nid);
558
559 do {
560 nid = next_node_in(old_node, node_states[N_CPU]);
561 } while (!atomic_try_cmpxchg(&last_used_nid, &old_node, nid));
562 queue_work_node(nid, system_unbound_wq, &pw->pw_work);
563 } else {
564 queue_work(system_unbound_wq, &pw->pw_work);
565 }
566
567 /* Use the current thread, which saves starting a workqueue worker. */
568 padata_work_init(&my_work, padata_mt_helper, &ps, PADATA_WORK_ONSTACK);
569 padata_mt_helper(&my_work.pw_work);
570
571 /* Wait for all the helpers to finish. */
572 wait_for_completion(&ps.completion);
573
574 destroy_work_on_stack(&my_work.pw_work);
575 padata_works_free(&works);
576 }
577
__padata_list_init(struct padata_list * pd_list)578 static void __padata_list_init(struct padata_list *pd_list)
579 {
580 INIT_LIST_HEAD(&pd_list->list);
581 spin_lock_init(&pd_list->lock);
582 }
583
584 /* Initialize all percpu queues used by serial workers */
padata_init_squeues(struct parallel_data * pd)585 static void padata_init_squeues(struct parallel_data *pd)
586 {
587 int cpu;
588 struct padata_serial_queue *squeue;
589
590 for_each_cpu(cpu, pd->cpumask.cbcpu) {
591 squeue = per_cpu_ptr(pd->squeue, cpu);
592 squeue->pd = pd;
593 __padata_list_init(&squeue->serial);
594 INIT_WORK(&squeue->work, padata_serial_worker);
595 }
596 }
597
598 /* Initialize per-CPU reorder lists */
padata_init_reorder_list(struct parallel_data * pd)599 static void padata_init_reorder_list(struct parallel_data *pd)
600 {
601 int cpu;
602 struct padata_list *list;
603
604 for_each_cpu(cpu, pd->cpumask.pcpu) {
605 list = per_cpu_ptr(pd->reorder_list, cpu);
606 __padata_list_init(list);
607 }
608 }
609
610 /* Allocate and initialize the internal cpumask dependend resources. */
padata_alloc_pd(struct padata_shell * ps)611 static struct parallel_data *padata_alloc_pd(struct padata_shell *ps)
612 {
613 struct padata_instance *pinst = ps->pinst;
614 struct parallel_data *pd;
615
616 pd = kzalloc(sizeof(struct parallel_data), GFP_KERNEL);
617 if (!pd)
618 goto err;
619
620 pd->reorder_list = alloc_percpu(struct padata_list);
621 if (!pd->reorder_list)
622 goto err_free_pd;
623
624 pd->squeue = alloc_percpu(struct padata_serial_queue);
625 if (!pd->squeue)
626 goto err_free_reorder_list;
627
628 pd->ps = ps;
629
630 if (!alloc_cpumask_var(&pd->cpumask.pcpu, GFP_KERNEL))
631 goto err_free_squeue;
632 if (!alloc_cpumask_var(&pd->cpumask.cbcpu, GFP_KERNEL))
633 goto err_free_pcpu;
634
635 cpumask_and(pd->cpumask.pcpu, pinst->cpumask.pcpu, cpu_online_mask);
636 cpumask_and(pd->cpumask.cbcpu, pinst->cpumask.cbcpu, cpu_online_mask);
637
638 padata_init_reorder_list(pd);
639 padata_init_squeues(pd);
640 pd->seq_nr = -1;
641 refcount_set(&pd->refcnt, 1);
642 spin_lock_init(&pd->lock);
643 pd->cpu = cpumask_first(pd->cpumask.pcpu);
644 INIT_WORK(&pd->reorder_work, invoke_padata_reorder);
645
646 return pd;
647
648 err_free_pcpu:
649 free_cpumask_var(pd->cpumask.pcpu);
650 err_free_squeue:
651 free_percpu(pd->squeue);
652 err_free_reorder_list:
653 free_percpu(pd->reorder_list);
654 err_free_pd:
655 kfree(pd);
656 err:
657 return NULL;
658 }
659
padata_free_pd(struct parallel_data * pd)660 static void padata_free_pd(struct parallel_data *pd)
661 {
662 free_cpumask_var(pd->cpumask.pcpu);
663 free_cpumask_var(pd->cpumask.cbcpu);
664 free_percpu(pd->reorder_list);
665 free_percpu(pd->squeue);
666 kfree(pd);
667 }
668
__padata_start(struct padata_instance * pinst)669 static void __padata_start(struct padata_instance *pinst)
670 {
671 pinst->flags |= PADATA_INIT;
672 }
673
__padata_stop(struct padata_instance * pinst)674 static void __padata_stop(struct padata_instance *pinst)
675 {
676 if (!(pinst->flags & PADATA_INIT))
677 return;
678
679 pinst->flags &= ~PADATA_INIT;
680
681 synchronize_rcu();
682 }
683
684 /* Replace the internal control structure with a new one. */
padata_replace_one(struct padata_shell * ps)685 static int padata_replace_one(struct padata_shell *ps)
686 {
687 struct parallel_data *pd_new;
688
689 pd_new = padata_alloc_pd(ps);
690 if (!pd_new)
691 return -ENOMEM;
692
693 ps->opd = rcu_dereference_protected(ps->pd, 1);
694 rcu_assign_pointer(ps->pd, pd_new);
695
696 return 0;
697 }
698
padata_replace(struct padata_instance * pinst)699 static int padata_replace(struct padata_instance *pinst)
700 {
701 struct padata_shell *ps;
702 int err = 0;
703
704 pinst->flags |= PADATA_RESET;
705
706 list_for_each_entry(ps, &pinst->pslist, list) {
707 err = padata_replace_one(ps);
708 if (err)
709 break;
710 }
711
712 synchronize_rcu();
713
714 list_for_each_entry_continue_reverse(ps, &pinst->pslist, list)
715 padata_put_pd(ps->opd);
716
717 pinst->flags &= ~PADATA_RESET;
718
719 return err;
720 }
721
722 /* If cpumask contains no active cpu, we mark the instance as invalid. */
padata_validate_cpumask(struct padata_instance * pinst,const struct cpumask * cpumask)723 static bool padata_validate_cpumask(struct padata_instance *pinst,
724 const struct cpumask *cpumask)
725 {
726 if (!cpumask_intersects(cpumask, cpu_online_mask)) {
727 pinst->flags |= PADATA_INVALID;
728 return false;
729 }
730
731 pinst->flags &= ~PADATA_INVALID;
732 return true;
733 }
734
__padata_set_cpumasks(struct padata_instance * pinst,cpumask_var_t pcpumask,cpumask_var_t cbcpumask)735 static int __padata_set_cpumasks(struct padata_instance *pinst,
736 cpumask_var_t pcpumask,
737 cpumask_var_t cbcpumask)
738 {
739 int valid;
740 int err;
741
742 valid = padata_validate_cpumask(pinst, pcpumask);
743 if (!valid) {
744 __padata_stop(pinst);
745 goto out_replace;
746 }
747
748 valid = padata_validate_cpumask(pinst, cbcpumask);
749 if (!valid)
750 __padata_stop(pinst);
751
752 out_replace:
753 cpumask_copy(pinst->cpumask.pcpu, pcpumask);
754 cpumask_copy(pinst->cpumask.cbcpu, cbcpumask);
755
756 err = padata_setup_cpumasks(pinst) ?: padata_replace(pinst);
757
758 if (valid)
759 __padata_start(pinst);
760
761 return err;
762 }
763
764 /**
765 * padata_set_cpumask - Sets specified by @cpumask_type cpumask to the value
766 * equivalent to @cpumask.
767 * @pinst: padata instance
768 * @cpumask_type: PADATA_CPU_SERIAL or PADATA_CPU_PARALLEL corresponding
769 * to parallel and serial cpumasks respectively.
770 * @cpumask: the cpumask to use
771 *
772 * Return: 0 on success or negative error code
773 */
padata_set_cpumask(struct padata_instance * pinst,int cpumask_type,cpumask_var_t cpumask)774 int padata_set_cpumask(struct padata_instance *pinst, int cpumask_type,
775 cpumask_var_t cpumask)
776 {
777 struct cpumask *serial_mask, *parallel_mask;
778 int err = -EINVAL;
779
780 cpus_read_lock();
781 mutex_lock(&pinst->lock);
782
783 switch (cpumask_type) {
784 case PADATA_CPU_PARALLEL:
785 serial_mask = pinst->cpumask.cbcpu;
786 parallel_mask = cpumask;
787 break;
788 case PADATA_CPU_SERIAL:
789 parallel_mask = pinst->cpumask.pcpu;
790 serial_mask = cpumask;
791 break;
792 default:
793 goto out;
794 }
795
796 err = __padata_set_cpumasks(pinst, parallel_mask, serial_mask);
797
798 out:
799 mutex_unlock(&pinst->lock);
800 cpus_read_unlock();
801
802 return err;
803 }
804 EXPORT_SYMBOL(padata_set_cpumask);
805
806 #ifdef CONFIG_HOTPLUG_CPU
807
__padata_add_cpu(struct padata_instance * pinst,int cpu)808 static int __padata_add_cpu(struct padata_instance *pinst, int cpu)
809 {
810 int err = 0;
811
812 if (cpumask_test_cpu(cpu, cpu_online_mask)) {
813 err = padata_replace(pinst);
814
815 if (padata_validate_cpumask(pinst, pinst->cpumask.pcpu) &&
816 padata_validate_cpumask(pinst, pinst->cpumask.cbcpu))
817 __padata_start(pinst);
818 }
819
820 return err;
821 }
822
__padata_remove_cpu(struct padata_instance * pinst,int cpu)823 static int __padata_remove_cpu(struct padata_instance *pinst, int cpu)
824 {
825 int err = 0;
826
827 if (!cpumask_test_cpu(cpu, cpu_online_mask)) {
828 if (!padata_validate_cpumask(pinst, pinst->cpumask.pcpu) ||
829 !padata_validate_cpumask(pinst, pinst->cpumask.cbcpu))
830 __padata_stop(pinst);
831
832 err = padata_replace(pinst);
833 }
834
835 return err;
836 }
837
pinst_has_cpu(struct padata_instance * pinst,int cpu)838 static inline int pinst_has_cpu(struct padata_instance *pinst, int cpu)
839 {
840 return cpumask_test_cpu(cpu, pinst->cpumask.pcpu) ||
841 cpumask_test_cpu(cpu, pinst->cpumask.cbcpu);
842 }
843
padata_cpu_online(unsigned int cpu,struct hlist_node * node)844 static int padata_cpu_online(unsigned int cpu, struct hlist_node *node)
845 {
846 struct padata_instance *pinst;
847 int ret;
848
849 pinst = hlist_entry_safe(node, struct padata_instance, cpu_online_node);
850 if (!pinst_has_cpu(pinst, cpu))
851 return 0;
852
853 mutex_lock(&pinst->lock);
854 ret = __padata_add_cpu(pinst, cpu);
855 mutex_unlock(&pinst->lock);
856 return ret;
857 }
858
padata_cpu_dead(unsigned int cpu,struct hlist_node * node)859 static int padata_cpu_dead(unsigned int cpu, struct hlist_node *node)
860 {
861 struct padata_instance *pinst;
862 int ret;
863
864 pinst = hlist_entry_safe(node, struct padata_instance, cpu_dead_node);
865 if (!pinst_has_cpu(pinst, cpu))
866 return 0;
867
868 mutex_lock(&pinst->lock);
869 ret = __padata_remove_cpu(pinst, cpu);
870 mutex_unlock(&pinst->lock);
871 return ret;
872 }
873
874 static enum cpuhp_state hp_online;
875 #endif
876
__padata_free(struct padata_instance * pinst)877 static void __padata_free(struct padata_instance *pinst)
878 {
879 #ifdef CONFIG_HOTPLUG_CPU
880 cpuhp_state_remove_instance_nocalls(CPUHP_PADATA_DEAD,
881 &pinst->cpu_dead_node);
882 cpuhp_state_remove_instance_nocalls(hp_online, &pinst->cpu_online_node);
883 #endif
884
885 WARN_ON(!list_empty(&pinst->pslist));
886
887 free_cpumask_var(pinst->cpumask.pcpu);
888 free_cpumask_var(pinst->cpumask.cbcpu);
889 destroy_workqueue(pinst->serial_wq);
890 destroy_workqueue(pinst->parallel_wq);
891 kfree(pinst);
892 }
893
894 #define kobj2pinst(_kobj) \
895 container_of(_kobj, struct padata_instance, kobj)
896 #define attr2pentry(_attr) \
897 container_of(_attr, struct padata_sysfs_entry, attr)
898
padata_sysfs_release(struct kobject * kobj)899 static void padata_sysfs_release(struct kobject *kobj)
900 {
901 struct padata_instance *pinst = kobj2pinst(kobj);
902 __padata_free(pinst);
903 }
904
905 struct padata_sysfs_entry {
906 struct attribute attr;
907 ssize_t (*show)(struct padata_instance *, struct attribute *, char *);
908 ssize_t (*store)(struct padata_instance *, struct attribute *,
909 const char *, size_t);
910 };
911
show_cpumask(struct padata_instance * pinst,struct attribute * attr,char * buf)912 static ssize_t show_cpumask(struct padata_instance *pinst,
913 struct attribute *attr, char *buf)
914 {
915 struct cpumask *cpumask;
916 ssize_t len;
917
918 mutex_lock(&pinst->lock);
919 if (!strcmp(attr->name, "serial_cpumask"))
920 cpumask = pinst->cpumask.cbcpu;
921 else
922 cpumask = pinst->cpumask.pcpu;
923
924 len = snprintf(buf, PAGE_SIZE, "%*pb\n",
925 nr_cpu_ids, cpumask_bits(cpumask));
926 mutex_unlock(&pinst->lock);
927 return len < PAGE_SIZE ? len : -EINVAL;
928 }
929
store_cpumask(struct padata_instance * pinst,struct attribute * attr,const char * buf,size_t count)930 static ssize_t store_cpumask(struct padata_instance *pinst,
931 struct attribute *attr,
932 const char *buf, size_t count)
933 {
934 cpumask_var_t new_cpumask;
935 ssize_t ret;
936 int mask_type;
937
938 if (!alloc_cpumask_var(&new_cpumask, GFP_KERNEL))
939 return -ENOMEM;
940
941 ret = bitmap_parse(buf, count, cpumask_bits(new_cpumask),
942 nr_cpumask_bits);
943 if (ret < 0)
944 goto out;
945
946 mask_type = !strcmp(attr->name, "serial_cpumask") ?
947 PADATA_CPU_SERIAL : PADATA_CPU_PARALLEL;
948 ret = padata_set_cpumask(pinst, mask_type, new_cpumask);
949 if (!ret)
950 ret = count;
951
952 out:
953 free_cpumask_var(new_cpumask);
954 return ret;
955 }
956
957 #define PADATA_ATTR_RW(_name, _show_name, _store_name) \
958 static struct padata_sysfs_entry _name##_attr = \
959 __ATTR(_name, 0644, _show_name, _store_name)
960 #define PADATA_ATTR_RO(_name, _show_name) \
961 static struct padata_sysfs_entry _name##_attr = \
962 __ATTR(_name, 0400, _show_name, NULL)
963
964 PADATA_ATTR_RW(serial_cpumask, show_cpumask, store_cpumask);
965 PADATA_ATTR_RW(parallel_cpumask, show_cpumask, store_cpumask);
966
967 /*
968 * Padata sysfs provides the following objects:
969 * serial_cpumask [RW] - cpumask for serial workers
970 * parallel_cpumask [RW] - cpumask for parallel workers
971 */
972 static struct attribute *padata_default_attrs[] = {
973 &serial_cpumask_attr.attr,
974 ¶llel_cpumask_attr.attr,
975 NULL,
976 };
977 ATTRIBUTE_GROUPS(padata_default);
978
padata_sysfs_show(struct kobject * kobj,struct attribute * attr,char * buf)979 static ssize_t padata_sysfs_show(struct kobject *kobj,
980 struct attribute *attr, char *buf)
981 {
982 struct padata_instance *pinst;
983 struct padata_sysfs_entry *pentry;
984 ssize_t ret = -EIO;
985
986 pinst = kobj2pinst(kobj);
987 pentry = attr2pentry(attr);
988 if (pentry->show)
989 ret = pentry->show(pinst, attr, buf);
990
991 return ret;
992 }
993
padata_sysfs_store(struct kobject * kobj,struct attribute * attr,const char * buf,size_t count)994 static ssize_t padata_sysfs_store(struct kobject *kobj, struct attribute *attr,
995 const char *buf, size_t count)
996 {
997 struct padata_instance *pinst;
998 struct padata_sysfs_entry *pentry;
999 ssize_t ret = -EIO;
1000
1001 pinst = kobj2pinst(kobj);
1002 pentry = attr2pentry(attr);
1003 if (pentry->store)
1004 ret = pentry->store(pinst, attr, buf, count);
1005
1006 return ret;
1007 }
1008
1009 static const struct sysfs_ops padata_sysfs_ops = {
1010 .show = padata_sysfs_show,
1011 .store = padata_sysfs_store,
1012 };
1013
1014 static const struct kobj_type padata_attr_type = {
1015 .sysfs_ops = &padata_sysfs_ops,
1016 .default_groups = padata_default_groups,
1017 .release = padata_sysfs_release,
1018 };
1019
1020 /**
1021 * padata_alloc - allocate and initialize a padata instance
1022 * @name: used to identify the instance
1023 *
1024 * Return: new instance on success, NULL on error
1025 */
padata_alloc(const char * name)1026 struct padata_instance *padata_alloc(const char *name)
1027 {
1028 struct padata_instance *pinst;
1029
1030 pinst = kzalloc(sizeof(struct padata_instance), GFP_KERNEL);
1031 if (!pinst)
1032 goto err;
1033
1034 pinst->parallel_wq = alloc_workqueue("%s_parallel", WQ_UNBOUND, 0,
1035 name);
1036 if (!pinst->parallel_wq)
1037 goto err_free_inst;
1038
1039 cpus_read_lock();
1040
1041 pinst->serial_wq = alloc_workqueue("%s_serial", WQ_MEM_RECLAIM |
1042 WQ_CPU_INTENSIVE, 1, name);
1043 if (!pinst->serial_wq)
1044 goto err_put_cpus;
1045
1046 if (!alloc_cpumask_var(&pinst->cpumask.pcpu, GFP_KERNEL))
1047 goto err_free_serial_wq;
1048 if (!alloc_cpumask_var(&pinst->cpumask.cbcpu, GFP_KERNEL)) {
1049 free_cpumask_var(pinst->cpumask.pcpu);
1050 goto err_free_serial_wq;
1051 }
1052
1053 INIT_LIST_HEAD(&pinst->pslist);
1054
1055 cpumask_copy(pinst->cpumask.pcpu, cpu_possible_mask);
1056 cpumask_copy(pinst->cpumask.cbcpu, cpu_possible_mask);
1057
1058 if (padata_setup_cpumasks(pinst))
1059 goto err_free_masks;
1060
1061 __padata_start(pinst);
1062
1063 kobject_init(&pinst->kobj, &padata_attr_type);
1064 mutex_init(&pinst->lock);
1065
1066 #ifdef CONFIG_HOTPLUG_CPU
1067 cpuhp_state_add_instance_nocalls_cpuslocked(hp_online,
1068 &pinst->cpu_online_node);
1069 cpuhp_state_add_instance_nocalls_cpuslocked(CPUHP_PADATA_DEAD,
1070 &pinst->cpu_dead_node);
1071 #endif
1072
1073 cpus_read_unlock();
1074
1075 return pinst;
1076
1077 err_free_masks:
1078 free_cpumask_var(pinst->cpumask.pcpu);
1079 free_cpumask_var(pinst->cpumask.cbcpu);
1080 err_free_serial_wq:
1081 destroy_workqueue(pinst->serial_wq);
1082 err_put_cpus:
1083 cpus_read_unlock();
1084 destroy_workqueue(pinst->parallel_wq);
1085 err_free_inst:
1086 kfree(pinst);
1087 err:
1088 return NULL;
1089 }
1090 EXPORT_SYMBOL(padata_alloc);
1091
1092 /**
1093 * padata_free - free a padata instance
1094 *
1095 * @pinst: padata instance to free
1096 */
padata_free(struct padata_instance * pinst)1097 void padata_free(struct padata_instance *pinst)
1098 {
1099 kobject_put(&pinst->kobj);
1100 }
1101 EXPORT_SYMBOL(padata_free);
1102
1103 /**
1104 * padata_alloc_shell - Allocate and initialize padata shell.
1105 *
1106 * @pinst: Parent padata_instance object.
1107 *
1108 * Return: new shell on success, NULL on error
1109 */
padata_alloc_shell(struct padata_instance * pinst)1110 struct padata_shell *padata_alloc_shell(struct padata_instance *pinst)
1111 {
1112 struct parallel_data *pd;
1113 struct padata_shell *ps;
1114
1115 ps = kzalloc(sizeof(*ps), GFP_KERNEL);
1116 if (!ps)
1117 goto out;
1118
1119 ps->pinst = pinst;
1120
1121 cpus_read_lock();
1122 pd = padata_alloc_pd(ps);
1123 cpus_read_unlock();
1124
1125 if (!pd)
1126 goto out_free_ps;
1127
1128 mutex_lock(&pinst->lock);
1129 RCU_INIT_POINTER(ps->pd, pd);
1130 list_add(&ps->list, &pinst->pslist);
1131 mutex_unlock(&pinst->lock);
1132
1133 return ps;
1134
1135 out_free_ps:
1136 kfree(ps);
1137 out:
1138 return NULL;
1139 }
1140 EXPORT_SYMBOL(padata_alloc_shell);
1141
1142 /**
1143 * padata_free_shell - free a padata shell
1144 *
1145 * @ps: padata shell to free
1146 */
padata_free_shell(struct padata_shell * ps)1147 void padata_free_shell(struct padata_shell *ps)
1148 {
1149 struct parallel_data *pd;
1150
1151 if (!ps)
1152 return;
1153
1154 /*
1155 * Wait for all _do_serial calls to finish to avoid touching
1156 * freed pd's and ps's.
1157 */
1158 synchronize_rcu();
1159
1160 mutex_lock(&ps->pinst->lock);
1161 list_del(&ps->list);
1162 pd = rcu_dereference_protected(ps->pd, 1);
1163 padata_put_pd(pd);
1164 mutex_unlock(&ps->pinst->lock);
1165
1166 kfree(ps);
1167 }
1168 EXPORT_SYMBOL(padata_free_shell);
1169
padata_init(void)1170 void __init padata_init(void)
1171 {
1172 unsigned int i, possible_cpus;
1173 #ifdef CONFIG_HOTPLUG_CPU
1174 int ret;
1175
1176 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "padata:online",
1177 padata_cpu_online, NULL);
1178 if (ret < 0)
1179 goto err;
1180 hp_online = ret;
1181
1182 ret = cpuhp_setup_state_multi(CPUHP_PADATA_DEAD, "padata:dead",
1183 NULL, padata_cpu_dead);
1184 if (ret < 0)
1185 goto remove_online_state;
1186 #endif
1187
1188 possible_cpus = num_possible_cpus();
1189 padata_works = kmalloc_array(possible_cpus, sizeof(struct padata_work),
1190 GFP_KERNEL);
1191 if (!padata_works)
1192 goto remove_dead_state;
1193
1194 for (i = 0; i < possible_cpus; ++i)
1195 list_add(&padata_works[i].pw_list, &padata_free_works);
1196
1197 return;
1198
1199 remove_dead_state:
1200 #ifdef CONFIG_HOTPLUG_CPU
1201 cpuhp_remove_multi_state(CPUHP_PADATA_DEAD);
1202 remove_online_state:
1203 cpuhp_remove_multi_state(hp_online);
1204 err:
1205 #endif
1206 pr_warn("padata: initialization failed\n");
1207 }
1208