]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - block/blk-cgroup.c
block/bio: Do not zero user pages
[mirror_ubuntu-bionic-kernel.git] / block / blk-cgroup.c
CommitLineData
31e4c28d
VG
1/*
2 * Common Block IO controller cgroup interface
3 *
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
6 *
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
9 *
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
e48453c3
AA
12 *
13 * For policy-specific per-blkcg data:
14 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
15 * Arianna Avanzini <avanzini.arianna@gmail.com>
31e4c28d
VG
16 */
17#include <linux/ioprio.h>
22084190 18#include <linux/kdev_t.h>
9d6a986c 19#include <linux/module.h>
174cd4b1 20#include <linux/sched/signal.h>
accee785 21#include <linux/err.h>
9195291e 22#include <linux/blkdev.h>
52ebea74 23#include <linux/backing-dev.h>
5a0e3ad6 24#include <linux/slab.h>
34d0f179 25#include <linux/genhd.h>
72e06c25 26#include <linux/delay.h>
9a9e8a26 27#include <linux/atomic.h>
36aa9e5f 28#include <linux/ctype.h>
eea8f41c 29#include <linux/blk-cgroup.h>
5efd6113 30#include "blk.h"
3e252066 31
84c124da
DS
32#define MAX_KEY_LEN 100
33
838f13bf
TH
34/*
35 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
36 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
37 * policy [un]register operations including cgroup file additions /
38 * removals. Putting cgroup file registration outside blkcg_pol_mutex
39 * allows grabbing it from cgroup callbacks.
40 */
41static DEFINE_MUTEX(blkcg_pol_register_mutex);
bc0d6501 42static DEFINE_MUTEX(blkcg_pol_mutex);
923adde1 43
e48453c3 44struct blkcg blkcg_root;
3c798398 45EXPORT_SYMBOL_GPL(blkcg_root);
9d6a986c 46
496d5e75
TH
47struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
48
3c798398 49static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
035d10b2 50
7876f930
TH
51static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
52
a2b1693b 53static bool blkcg_policy_enabled(struct request_queue *q,
3c798398 54 const struct blkcg_policy *pol)
a2b1693b
TH
55{
56 return pol && test_bit(pol->plid, q->blkcg_pols);
57}
58
0381411e
TH
59/**
60 * blkg_free - free a blkg
61 * @blkg: blkg to free
62 *
63 * Free @blkg which may be partially allocated.
64 */
3c798398 65static void blkg_free(struct blkcg_gq *blkg)
0381411e 66{
e8989fae 67 int i;
549d3aa8
TH
68
69 if (!blkg)
70 return;
71
db613670 72 for (i = 0; i < BLKCG_MAX_POLS; i++)
001bea73
TH
73 if (blkg->pd[i])
74 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
e8989fae 75
994b7832 76 if (blkg->blkcg != &blkcg_root)
b425e504 77 blk_exit_rl(blkg->q, &blkg->rl);
77ea7338
TH
78
79 blkg_rwstat_exit(&blkg->stat_ios);
80 blkg_rwstat_exit(&blkg->stat_bytes);
549d3aa8 81 kfree(blkg);
0381411e
TH
82}
83
84/**
85 * blkg_alloc - allocate a blkg
86 * @blkcg: block cgroup the new blkg is associated with
87 * @q: request_queue the new blkg is associated with
15974993 88 * @gfp_mask: allocation mask to use
0381411e 89 *
e8989fae 90 * Allocate a new blkg assocating @blkcg and @q.
0381411e 91 */
15974993
TH
92static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
93 gfp_t gfp_mask)
0381411e 94{
3c798398 95 struct blkcg_gq *blkg;
e8989fae 96 int i;
0381411e
TH
97
98 /* alloc and init base part */
15974993 99 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
0381411e
TH
100 if (!blkg)
101 return NULL;
102
77ea7338
TH
103 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
104 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
105 goto err_free;
106
c875f4d0 107 blkg->q = q;
e8989fae 108 INIT_LIST_HEAD(&blkg->q_node);
0381411e 109 blkg->blkcg = blkcg;
a5049a8a 110 atomic_set(&blkg->refcnt, 1);
0381411e 111
a051661c
TH
112 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
113 if (blkcg != &blkcg_root) {
114 if (blk_init_rl(&blkg->rl, q, gfp_mask))
115 goto err_free;
116 blkg->rl.blkg = blkg;
117 }
118
8bd435b3 119 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 120 struct blkcg_policy *pol = blkcg_policy[i];
e8989fae 121 struct blkg_policy_data *pd;
0381411e 122
a2b1693b 123 if (!blkcg_policy_enabled(q, pol))
e8989fae
TH
124 continue;
125
126 /* alloc per-policy data and attach it to blkg */
001bea73 127 pd = pol->pd_alloc_fn(gfp_mask, q->node);
a051661c
TH
128 if (!pd)
129 goto err_free;
549d3aa8 130
e8989fae
TH
131 blkg->pd[i] = pd;
132 pd->blkg = blkg;
b276a876 133 pd->plid = i;
e8989fae
TH
134 }
135
0381411e 136 return blkg;
a051661c
TH
137
138err_free:
139 blkg_free(blkg);
140 return NULL;
0381411e
TH
141}
142
24f29046
TH
143struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
144 struct request_queue *q, bool update_hint)
80fd9979 145{
3c798398 146 struct blkcg_gq *blkg;
80fd9979 147
a637120e 148 /*
86cde6b6
TH
149 * Hint didn't match. Look up from the radix tree. Note that the
150 * hint can only be updated under queue_lock as otherwise @blkg
151 * could have already been removed from blkg_tree. The caller is
152 * responsible for grabbing queue_lock if @update_hint.
a637120e
TH
153 */
154 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
86cde6b6
TH
155 if (blkg && blkg->q == q) {
156 if (update_hint) {
157 lockdep_assert_held(q->queue_lock);
158 rcu_assign_pointer(blkcg->blkg_hint, blkg);
159 }
a637120e 160 return blkg;
86cde6b6 161 }
a637120e 162
80fd9979
TH
163 return NULL;
164}
ae118896 165EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
80fd9979 166
15974993 167/*
d708f0d5
JA
168 * If @new_blkg is %NULL, this function tries to allocate a new one as
169 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
15974993 170 */
86cde6b6 171static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
d708f0d5
JA
172 struct request_queue *q,
173 struct blkcg_gq *new_blkg)
5624a4e4 174{
d708f0d5 175 struct blkcg_gq *blkg;
ce7acfea 176 struct bdi_writeback_congested *wb_congested;
f427d909 177 int i, ret;
5624a4e4 178
cd1604fa
TH
179 WARN_ON_ONCE(!rcu_read_lock_held());
180 lockdep_assert_held(q->queue_lock);
181
7ee9c562 182 /* blkg holds a reference to blkcg */
ec903c0c 183 if (!css_tryget_online(&blkcg->css)) {
20386ce0 184 ret = -ENODEV;
93e6d5d8 185 goto err_free_blkg;
15974993 186 }
cd1604fa 187
dc3b17cc 188 wb_congested = wb_congested_get_create(q->backing_dev_info,
d708f0d5
JA
189 blkcg->css.id,
190 GFP_NOWAIT | __GFP_NOWARN);
191 if (!wb_congested) {
ce7acfea 192 ret = -ENOMEM;
d708f0d5 193 goto err_put_css;
ce7acfea
TH
194 }
195
d708f0d5
JA
196 /* allocate */
197 if (!new_blkg) {
198 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
199 if (unlikely(!new_blkg)) {
200 ret = -ENOMEM;
201 goto err_put_congested;
15974993
TH
202 }
203 }
d708f0d5
JA
204 blkg = new_blkg;
205 blkg->wb_congested = wb_congested;
cd1604fa 206
db613670 207 /* link parent */
3c547865
TH
208 if (blkcg_parent(blkcg)) {
209 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
210 if (WARN_ON_ONCE(!blkg->parent)) {
20386ce0 211 ret = -ENODEV;
d708f0d5 212 goto err_put_congested;
3c547865
TH
213 }
214 blkg_get(blkg->parent);
215 }
216
db613670
TH
217 /* invoke per-policy init */
218 for (i = 0; i < BLKCG_MAX_POLS; i++) {
219 struct blkcg_policy *pol = blkcg_policy[i];
220
221 if (blkg->pd[i] && pol->pd_init_fn)
a9520cd6 222 pol->pd_init_fn(blkg->pd[i]);
db613670
TH
223 }
224
225 /* insert */
cd1604fa 226 spin_lock(&blkcg->lock);
a637120e
TH
227 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
228 if (likely(!ret)) {
229 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
230 list_add(&blkg->q_node, &q->blkg_list);
f427d909
TH
231
232 for (i = 0; i < BLKCG_MAX_POLS; i++) {
233 struct blkcg_policy *pol = blkcg_policy[i];
234
235 if (blkg->pd[i] && pol->pd_online_fn)
a9520cd6 236 pol->pd_online_fn(blkg->pd[i]);
f427d909 237 }
a637120e 238 }
f427d909 239 blkg->online = true;
cd1604fa 240 spin_unlock(&blkcg->lock);
496fb780 241
ec13b1d6 242 if (!ret)
a637120e 243 return blkg;
15974993 244
3c547865
TH
245 /* @blkg failed fully initialized, use the usual release path */
246 blkg_put(blkg);
247 return ERR_PTR(ret);
248
d708f0d5
JA
249err_put_congested:
250 wb_congested_put(wb_congested);
251err_put_css:
496fb780 252 css_put(&blkcg->css);
93e6d5d8 253err_free_blkg:
d708f0d5 254 blkg_free(new_blkg);
93e6d5d8 255 return ERR_PTR(ret);
31e4c28d 256}
3c96cb32 257
86cde6b6 258/**
d708f0d5 259 * blkg_lookup_create - lookup blkg, try to create one if not there
86cde6b6
TH
260 * @blkcg: blkcg of interest
261 * @q: request_queue of interest
262 *
263 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
3c547865
TH
264 * create one. blkg creation is performed recursively from blkcg_root such
265 * that all non-root blkg's have access to the parent blkg. This function
266 * should be called under RCU read lock and @q->queue_lock.
86cde6b6
TH
267 *
268 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
269 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
270 * dead and bypassing, returns ERR_PTR(-EBUSY).
271 */
d708f0d5
JA
272struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
273 struct request_queue *q)
3c96cb32 274{
86cde6b6
TH
275 struct blkcg_gq *blkg;
276
277 WARN_ON_ONCE(!rcu_read_lock_held());
278 lockdep_assert_held(q->queue_lock);
279
d708f0d5
JA
280 /*
281 * This could be the first entry point of blkcg implementation and
282 * we shouldn't allow anything to go through for a bypassing queue.
283 */
284 if (unlikely(blk_queue_bypass(q)))
285 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
286
86cde6b6
TH
287 blkg = __blkg_lookup(blkcg, q, true);
288 if (blkg)
289 return blkg;
290
3c547865
TH
291 /*
292 * Create blkgs walking down from blkcg_root to @blkcg, so that all
293 * non-root blkgs have access to their parents.
294 */
295 while (true) {
296 struct blkcg *pos = blkcg;
297 struct blkcg *parent = blkcg_parent(blkcg);
298
299 while (parent && !__blkg_lookup(parent, q, false)) {
300 pos = parent;
301 parent = blkcg_parent(parent);
302 }
303
d708f0d5 304 blkg = blkg_create(pos, q, NULL);
3c547865
TH
305 if (pos == blkcg || IS_ERR(blkg))
306 return blkg;
307 }
3c96cb32 308}
31e4c28d 309
3c798398 310static void blkg_destroy(struct blkcg_gq *blkg)
03aa264a 311{
3c798398 312 struct blkcg *blkcg = blkg->blkcg;
77ea7338 313 struct blkcg_gq *parent = blkg->parent;
f427d909 314 int i;
03aa264a 315
27e1f9d1 316 lockdep_assert_held(blkg->q->queue_lock);
9f13ef67 317 lockdep_assert_held(&blkcg->lock);
03aa264a
TH
318
319 /* Something wrong if we are trying to remove same group twice */
e8989fae 320 WARN_ON_ONCE(list_empty(&blkg->q_node));
9f13ef67 321 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
a637120e 322
f427d909
TH
323 for (i = 0; i < BLKCG_MAX_POLS; i++) {
324 struct blkcg_policy *pol = blkcg_policy[i];
325
326 if (blkg->pd[i] && pol->pd_offline_fn)
a9520cd6 327 pol->pd_offline_fn(blkg->pd[i]);
f427d909 328 }
77ea7338
TH
329
330 if (parent) {
331 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
332 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
333 }
334
f427d909
TH
335 blkg->online = false;
336
a637120e 337 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
e8989fae 338 list_del_init(&blkg->q_node);
9f13ef67 339 hlist_del_init_rcu(&blkg->blkcg_node);
03aa264a 340
a637120e
TH
341 /*
342 * Both setting lookup hint to and clearing it from @blkg are done
343 * under queue_lock. If it's not pointing to @blkg now, it never
344 * will. Hint assignment itself can race safely.
345 */
ec6c676a 346 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
a637120e
TH
347 rcu_assign_pointer(blkcg->blkg_hint, NULL);
348
03aa264a
TH
349 /*
350 * Put the reference taken at the time of creation so that when all
351 * queues are gone, group can be destroyed.
352 */
353 blkg_put(blkg);
354}
355
9f13ef67
TH
356/**
357 * blkg_destroy_all - destroy all blkgs associated with a request_queue
358 * @q: request_queue of interest
9f13ef67 359 *
3c96cb32 360 * Destroy all blkgs associated with @q.
9f13ef67 361 */
3c96cb32 362static void blkg_destroy_all(struct request_queue *q)
72e06c25 363{
3c798398 364 struct blkcg_gq *blkg, *n;
72e06c25 365
6d18b008 366 lockdep_assert_held(q->queue_lock);
72e06c25 367
9f13ef67 368 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
3c798398 369 struct blkcg *blkcg = blkg->blkcg;
72e06c25 370
9f13ef67
TH
371 spin_lock(&blkcg->lock);
372 blkg_destroy(blkg);
373 spin_unlock(&blkcg->lock);
72e06c25 374 }
6fe810bd
TH
375
376 q->root_blkg = NULL;
377 q->root_rl.blkg = NULL;
72e06c25
TH
378}
379
2a4fd070
TH
380/*
381 * A group is RCU protected, but having an rcu lock does not mean that one
382 * can access all the fields of blkg and assume these are valid. For
383 * example, don't try to follow throtl_data and request queue links.
384 *
385 * Having a reference to blkg under an rcu allows accesses to only values
386 * local to groups like group stats and group rate limits.
387 */
388void __blkg_release_rcu(struct rcu_head *rcu_head)
1adaf3dd 389{
2a4fd070 390 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
db613670 391
3c547865 392 /* release the blkcg and parent blkg refs this blkg has been holding */
1adaf3dd 393 css_put(&blkg->blkcg->css);
a5049a8a 394 if (blkg->parent)
3c547865 395 blkg_put(blkg->parent);
1adaf3dd 396
ce7acfea
TH
397 wb_congested_put(blkg->wb_congested);
398
2a4fd070 399 blkg_free(blkg);
1adaf3dd 400}
2a4fd070 401EXPORT_SYMBOL_GPL(__blkg_release_rcu);
1adaf3dd 402
a051661c
TH
403/*
404 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
405 * because the root blkg uses @q->root_rl instead of its own rl.
406 */
407struct request_list *__blk_queue_next_rl(struct request_list *rl,
408 struct request_queue *q)
409{
410 struct list_head *ent;
411 struct blkcg_gq *blkg;
412
413 /*
414 * Determine the current blkg list_head. The first entry is
415 * root_rl which is off @q->blkg_list and mapped to the head.
416 */
417 if (rl == &q->root_rl) {
418 ent = &q->blkg_list;
65c77fd9
JN
419 /* There are no more block groups, hence no request lists */
420 if (list_empty(ent))
421 return NULL;
a051661c
TH
422 } else {
423 blkg = container_of(rl, struct blkcg_gq, rl);
424 ent = &blkg->q_node;
425 }
426
427 /* walk to the next list_head, skip root blkcg */
428 ent = ent->next;
429 if (ent == &q->root_blkg->q_node)
430 ent = ent->next;
431 if (ent == &q->blkg_list)
432 return NULL;
433
434 blkg = container_of(ent, struct blkcg_gq, q_node);
435 return &blkg->rl;
436}
437
182446d0
TH
438static int blkcg_reset_stats(struct cgroup_subsys_state *css,
439 struct cftype *cftype, u64 val)
303a3acb 440{
182446d0 441 struct blkcg *blkcg = css_to_blkcg(css);
3c798398 442 struct blkcg_gq *blkg;
bc0d6501 443 int i;
303a3acb 444
838f13bf 445 mutex_lock(&blkcg_pol_mutex);
303a3acb 446 spin_lock_irq(&blkcg->lock);
997a026c
TH
447
448 /*
449 * Note that stat reset is racy - it doesn't synchronize against
450 * stat updates. This is a debug feature which shouldn't exist
451 * anyway. If you get hit by a race, retry.
452 */
b67bfe0d 453 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
77ea7338
TH
454 blkg_rwstat_reset(&blkg->stat_bytes);
455 blkg_rwstat_reset(&blkg->stat_ios);
456
8bd435b3 457 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 458 struct blkcg_policy *pol = blkcg_policy[i];
549d3aa8 459
a9520cd6
TH
460 if (blkg->pd[i] && pol->pd_reset_stats_fn)
461 pol->pd_reset_stats_fn(blkg->pd[i]);
bc0d6501 462 }
303a3acb 463 }
f0bdc8cd 464
303a3acb 465 spin_unlock_irq(&blkcg->lock);
bc0d6501 466 mutex_unlock(&blkcg_pol_mutex);
303a3acb
DS
467 return 0;
468}
469
dd165eb3 470const char *blkg_dev_name(struct blkcg_gq *blkg)
303a3acb 471{
d3d32e69 472 /* some drivers (floppy) instantiate a queue w/o disk registered */
dc3b17cc
JK
473 if (blkg->q->backing_dev_info->dev)
474 return dev_name(blkg->q->backing_dev_info->dev);
d3d32e69 475 return NULL;
303a3acb 476}
dd165eb3 477EXPORT_SYMBOL_GPL(blkg_dev_name);
303a3acb 478
d3d32e69
TH
479/**
480 * blkcg_print_blkgs - helper for printing per-blkg data
481 * @sf: seq_file to print to
482 * @blkcg: blkcg of interest
483 * @prfill: fill function to print out a blkg
484 * @pol: policy in question
485 * @data: data to be passed to @prfill
486 * @show_total: to print out sum of prfill return values or not
487 *
488 * This function invokes @prfill on each blkg of @blkcg if pd for the
489 * policy specified by @pol exists. @prfill is invoked with @sf, the
810ecfa7
TH
490 * policy data and @data and the matching queue lock held. If @show_total
491 * is %true, the sum of the return values from @prfill is printed with
492 * "Total" label at the end.
d3d32e69
TH
493 *
494 * This is to be used to construct print functions for
495 * cftype->read_seq_string method.
496 */
3c798398 497void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
f95a04af
TH
498 u64 (*prfill)(struct seq_file *,
499 struct blkg_policy_data *, int),
3c798398 500 const struct blkcg_policy *pol, int data,
ec399347 501 bool show_total)
5624a4e4 502{
3c798398 503 struct blkcg_gq *blkg;
d3d32e69 504 u64 total = 0;
5624a4e4 505
810ecfa7 506 rcu_read_lock();
ee89f812 507 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
810ecfa7 508 spin_lock_irq(blkg->q->queue_lock);
a2b1693b 509 if (blkcg_policy_enabled(blkg->q, pol))
f95a04af 510 total += prfill(sf, blkg->pd[pol->plid], data);
810ecfa7
TH
511 spin_unlock_irq(blkg->q->queue_lock);
512 }
513 rcu_read_unlock();
d3d32e69
TH
514
515 if (show_total)
516 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
517}
829fdb50 518EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
d3d32e69
TH
519
520/**
521 * __blkg_prfill_u64 - prfill helper for a single u64 value
522 * @sf: seq_file to print to
f95a04af 523 * @pd: policy private data of interest
d3d32e69
TH
524 * @v: value to print
525 *
f95a04af 526 * Print @v to @sf for the device assocaited with @pd.
d3d32e69 527 */
f95a04af 528u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
d3d32e69 529{
f95a04af 530 const char *dname = blkg_dev_name(pd->blkg);
d3d32e69
TH
531
532 if (!dname)
533 return 0;
534
535 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
536 return v;
537}
829fdb50 538EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
d3d32e69
TH
539
540/**
541 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
542 * @sf: seq_file to print to
f95a04af 543 * @pd: policy private data of interest
d3d32e69
TH
544 * @rwstat: rwstat to print
545 *
f95a04af 546 * Print @rwstat to @sf for the device assocaited with @pd.
d3d32e69 547 */
f95a04af 548u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
829fdb50 549 const struct blkg_rwstat *rwstat)
d3d32e69
TH
550{
551 static const char *rwstr[] = {
552 [BLKG_RWSTAT_READ] = "Read",
553 [BLKG_RWSTAT_WRITE] = "Write",
554 [BLKG_RWSTAT_SYNC] = "Sync",
555 [BLKG_RWSTAT_ASYNC] = "Async",
556 };
f95a04af 557 const char *dname = blkg_dev_name(pd->blkg);
d3d32e69
TH
558 u64 v;
559 int i;
560
561 if (!dname)
562 return 0;
563
564 for (i = 0; i < BLKG_RWSTAT_NR; i++)
565 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
24bdb8ef 566 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
d3d32e69 567
24bdb8ef
TH
568 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
569 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]);
d3d32e69
TH
570 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
571 return v;
572}
b50da39f 573EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
d3d32e69 574
5bc4afb1
TH
575/**
576 * blkg_prfill_stat - prfill callback for blkg_stat
577 * @sf: seq_file to print to
f95a04af
TH
578 * @pd: policy private data of interest
579 * @off: offset to the blkg_stat in @pd
5bc4afb1
TH
580 *
581 * prfill callback for printing a blkg_stat.
582 */
f95a04af 583u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
d3d32e69 584{
f95a04af 585 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
d3d32e69 586}
5bc4afb1 587EXPORT_SYMBOL_GPL(blkg_prfill_stat);
d3d32e69 588
5bc4afb1
TH
589/**
590 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
591 * @sf: seq_file to print to
f95a04af
TH
592 * @pd: policy private data of interest
593 * @off: offset to the blkg_rwstat in @pd
5bc4afb1
TH
594 *
595 * prfill callback for printing a blkg_rwstat.
596 */
f95a04af
TH
597u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
598 int off)
d3d32e69 599{
f95a04af 600 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
d3d32e69 601
f95a04af 602 return __blkg_prfill_rwstat(sf, pd, &rwstat);
d3d32e69 603}
5bc4afb1 604EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
d3d32e69 605
77ea7338
TH
606static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
607 struct blkg_policy_data *pd, int off)
608{
609 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
610
611 return __blkg_prfill_rwstat(sf, pd, &rwstat);
612}
613
614/**
615 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
616 * @sf: seq_file to print to
617 * @v: unused
618 *
619 * To be used as cftype->seq_show to print blkg->stat_bytes.
620 * cftype->private must be set to the blkcg_policy.
621 */
622int blkg_print_stat_bytes(struct seq_file *sf, void *v)
623{
624 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
625 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
626 offsetof(struct blkcg_gq, stat_bytes), true);
627 return 0;
628}
629EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
630
631/**
632 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
633 * @sf: seq_file to print to
634 * @v: unused
635 *
636 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
637 * must be set to the blkcg_policy.
638 */
639int blkg_print_stat_ios(struct seq_file *sf, void *v)
640{
641 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
642 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
643 offsetof(struct blkcg_gq, stat_ios), true);
644 return 0;
645}
646EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
647
648static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
649 struct blkg_policy_data *pd,
650 int off)
651{
652 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
653 NULL, off);
654 return __blkg_prfill_rwstat(sf, pd, &rwstat);
655}
656
657/**
658 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
659 * @sf: seq_file to print to
660 * @v: unused
661 */
662int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
663{
664 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
665 blkg_prfill_rwstat_field_recursive,
666 (void *)seq_cft(sf)->private,
667 offsetof(struct blkcg_gq, stat_bytes), true);
668 return 0;
669}
670EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
671
672/**
673 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
674 * @sf: seq_file to print to
675 * @v: unused
676 */
677int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
678{
679 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
680 blkg_prfill_rwstat_field_recursive,
681 (void *)seq_cft(sf)->private,
682 offsetof(struct blkcg_gq, stat_ios), true);
683 return 0;
684}
685EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
686
16b3de66
TH
687/**
688 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
f12c74ca
TH
689 * @blkg: blkg of interest
690 * @pol: blkcg_policy which contains the blkg_stat
691 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
16b3de66 692 *
f12c74ca
TH
693 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
694 * online descendants and their aux counts. The caller must be holding the
695 * queue lock for online tests.
696 *
697 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
698 * at @off bytes into @blkg's blkg_policy_data of the policy.
16b3de66 699 */
f12c74ca
TH
700u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
701 struct blkcg_policy *pol, int off)
16b3de66 702{
16b3de66 703 struct blkcg_gq *pos_blkg;
492eb21b 704 struct cgroup_subsys_state *pos_css;
bd8815a6 705 u64 sum = 0;
16b3de66 706
f12c74ca 707 lockdep_assert_held(blkg->q->queue_lock);
16b3de66 708
16b3de66 709 rcu_read_lock();
f12c74ca
TH
710 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
711 struct blkg_stat *stat;
712
713 if (!pos_blkg->online)
714 continue;
16b3de66 715
f12c74ca
TH
716 if (pol)
717 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
718 else
719 stat = (void *)blkg + off;
720
721 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
16b3de66
TH
722 }
723 rcu_read_unlock();
724
725 return sum;
726}
727EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
728
729/**
730 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
f12c74ca
TH
731 * @blkg: blkg of interest
732 * @pol: blkcg_policy which contains the blkg_rwstat
733 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
16b3de66 734 *
f12c74ca
TH
735 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
736 * online descendants and their aux counts. The caller must be holding the
737 * queue lock for online tests.
738 *
739 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
740 * is at @off bytes into @blkg's blkg_policy_data of the policy.
16b3de66 741 */
f12c74ca
TH
742struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
743 struct blkcg_policy *pol, int off)
16b3de66 744{
16b3de66 745 struct blkcg_gq *pos_blkg;
492eb21b 746 struct cgroup_subsys_state *pos_css;
bd8815a6 747 struct blkg_rwstat sum = { };
16b3de66
TH
748 int i;
749
f12c74ca 750 lockdep_assert_held(blkg->q->queue_lock);
16b3de66 751
16b3de66 752 rcu_read_lock();
f12c74ca 753 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
3a7faead 754 struct blkg_rwstat *rwstat;
16b3de66
TH
755
756 if (!pos_blkg->online)
757 continue;
758
f12c74ca
TH
759 if (pol)
760 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
761 else
762 rwstat = (void *)pos_blkg + off;
763
16b3de66 764 for (i = 0; i < BLKG_RWSTAT_NR; i++)
3a7faead
TH
765 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
766 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
767 &sum.aux_cnt[i]);
16b3de66
TH
768 }
769 rcu_read_unlock();
770
771 return sum;
772}
773EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
774
457e490f
TE
775/* Performs queue bypass and policy enabled checks then looks up blkg. */
776static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
777 const struct blkcg_policy *pol,
778 struct request_queue *q)
779{
780 WARN_ON_ONCE(!rcu_read_lock_held());
781 lockdep_assert_held(q->queue_lock);
782
783 if (!blkcg_policy_enabled(q, pol))
784 return ERR_PTR(-EOPNOTSUPP);
785
786 /*
787 * This could be the first entry point of blkcg implementation and
788 * we shouldn't allow anything to go through for a bypassing queue.
789 */
790 if (unlikely(blk_queue_bypass(q)))
791 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
792
793 return __blkg_lookup(blkcg, q, true /* update_hint */);
794}
795
3a8b31d3
TH
796/**
797 * blkg_conf_prep - parse and prepare for per-blkg config update
798 * @blkcg: target block cgroup
da8b0662 799 * @pol: target policy
3a8b31d3
TH
800 * @input: input string
801 * @ctx: blkg_conf_ctx to be filled
802 *
803 * Parse per-blkg config update from @input and initialize @ctx with the
36aa9e5f
TH
804 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
805 * part of @input following MAJ:MIN. This function returns with RCU read
806 * lock and queue lock held and must be paired with blkg_conf_finish().
3a8b31d3 807 */
3c798398 808int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
36aa9e5f 809 char *input, struct blkg_conf_ctx *ctx)
da8b0662 810 __acquires(rcu) __acquires(disk->queue->queue_lock)
34d0f179 811{
3a8b31d3 812 struct gendisk *disk;
457e490f 813 struct request_queue *q;
3c798398 814 struct blkcg_gq *blkg;
39a169b6 815 struct module *owner;
726fa694 816 unsigned int major, minor;
36aa9e5f
TH
817 int key_len, part, ret;
818 char *body;
34d0f179 819
36aa9e5f 820 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
726fa694 821 return -EINVAL;
3a8b31d3 822
36aa9e5f
TH
823 body = input + key_len;
824 if (!isspace(*body))
825 return -EINVAL;
826 body = skip_spaces(body);
827
726fa694 828 disk = get_gendisk(MKDEV(major, minor), &part);
5f6c2d2b 829 if (!disk)
20386ce0 830 return -ENODEV;
5f6c2d2b 831 if (part) {
457e490f
TE
832 ret = -ENODEV;
833 goto fail;
5f6c2d2b 834 }
e56da7e2 835
457e490f 836 q = disk->queue;
da8b0662 837
457e490f
TE
838 rcu_read_lock();
839 spin_lock_irq(q->queue_lock);
e56da7e2 840
457e490f 841 blkg = blkg_lookup_check(blkcg, pol, q);
4bfd482e
TH
842 if (IS_ERR(blkg)) {
843 ret = PTR_ERR(blkg);
457e490f
TE
844 goto fail_unlock;
845 }
846
847 if (blkg)
848 goto success;
849
850 /*
851 * Create blkgs walking down from blkcg_root to @blkcg, so that all
852 * non-root blkgs have access to their parents.
853 */
854 while (true) {
855 struct blkcg *pos = blkcg;
856 struct blkcg *parent;
857 struct blkcg_gq *new_blkg;
858
859 parent = blkcg_parent(blkcg);
860 while (parent && !__blkg_lookup(parent, q, false)) {
861 pos = parent;
862 parent = blkcg_parent(parent);
863 }
864
865 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
866 spin_unlock_irq(q->queue_lock);
3a8b31d3 867 rcu_read_unlock();
457e490f
TE
868
869 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
870 if (unlikely(!new_blkg)) {
871 ret = -ENOMEM;
872 goto fail;
7702e8f4 873 }
3a8b31d3 874
457e490f
TE
875 rcu_read_lock();
876 spin_lock_irq(q->queue_lock);
877
878 blkg = blkg_lookup_check(pos, pol, q);
879 if (IS_ERR(blkg)) {
880 ret = PTR_ERR(blkg);
881 goto fail_unlock;
882 }
883
884 if (blkg) {
885 blkg_free(new_blkg);
886 } else {
887 blkg = blkg_create(pos, q, new_blkg);
888 if (unlikely(IS_ERR(blkg))) {
889 ret = PTR_ERR(blkg);
890 goto fail_unlock;
891 }
892 }
893
894 if (pos == blkcg)
895 goto success;
896 }
897success:
3a8b31d3
TH
898 ctx->disk = disk;
899 ctx->blkg = blkg;
36aa9e5f 900 ctx->body = body;
726fa694 901 return 0;
457e490f
TE
902
903fail_unlock:
904 spin_unlock_irq(q->queue_lock);
905 rcu_read_unlock();
906fail:
907 owner = disk->fops->owner;
908 put_disk(disk);
909 module_put(owner);
910 /*
911 * If queue was bypassing, we should retry. Do so after a
912 * short msleep(). It isn't strictly necessary but queue
913 * can be bypassing for some time and it's always nice to
914 * avoid busy looping.
915 */
916 if (ret == -EBUSY) {
917 msleep(10);
918 ret = restart_syscall();
919 }
920 return ret;
34d0f179 921}
829fdb50 922EXPORT_SYMBOL_GPL(blkg_conf_prep);
34d0f179 923
3a8b31d3
TH
924/**
925 * blkg_conf_finish - finish up per-blkg config update
926 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
927 *
928 * Finish up after per-blkg config update. This function must be paired
929 * with blkg_conf_prep().
930 */
829fdb50 931void blkg_conf_finish(struct blkg_conf_ctx *ctx)
da8b0662 932 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
34d0f179 933{
39a169b6
RP
934 struct module *owner;
935
da8b0662 936 spin_unlock_irq(ctx->disk->queue->queue_lock);
3a8b31d3 937 rcu_read_unlock();
39a169b6 938 owner = ctx->disk->fops->owner;
3a8b31d3 939 put_disk(ctx->disk);
39a169b6 940 module_put(owner);
34d0f179 941}
829fdb50 942EXPORT_SYMBOL_GPL(blkg_conf_finish);
34d0f179 943
2ee867dc
TH
944static int blkcg_print_stat(struct seq_file *sf, void *v)
945{
946 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
947 struct blkcg_gq *blkg;
948
949 rcu_read_lock();
950
951 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
952 const char *dname;
953 struct blkg_rwstat rwstat;
954 u64 rbytes, wbytes, rios, wios;
955
956 dname = blkg_dev_name(blkg);
957 if (!dname)
958 continue;
959
960 spin_lock_irq(blkg->q->queue_lock);
961
962 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
963 offsetof(struct blkcg_gq, stat_bytes));
964 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
965 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
966
967 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
968 offsetof(struct blkcg_gq, stat_ios));
969 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
970 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
971
972 spin_unlock_irq(blkg->q->queue_lock);
973
974 if (rbytes || wbytes || rios || wios)
975 seq_printf(sf, "%s rbytes=%llu wbytes=%llu rios=%llu wios=%llu\n",
976 dname, rbytes, wbytes, rios, wios);
977 }
978
979 rcu_read_unlock();
980 return 0;
981}
982
e1f3b941 983static struct cftype blkcg_files[] = {
2ee867dc
TH
984 {
985 .name = "stat",
ca0752c5 986 .flags = CFTYPE_NOT_ON_ROOT,
2ee867dc
TH
987 .seq_show = blkcg_print_stat,
988 },
989 { } /* terminate */
990};
991
e1f3b941 992static struct cftype blkcg_legacy_files[] = {
84c124da
DS
993 {
994 .name = "reset_stats",
3c798398 995 .write_u64 = blkcg_reset_stats,
22084190 996 },
4baf6e33 997 { } /* terminate */
31e4c28d
VG
998};
999
9f13ef67 1000/**
92fb9748 1001 * blkcg_css_offline - cgroup css_offline callback
eb95419b 1002 * @css: css of interest
9f13ef67 1003 *
eb95419b
TH
1004 * This function is called when @css is about to go away and responsible
1005 * for shooting down all blkgs associated with @css. blkgs should be
9f13ef67
TH
1006 * removed while holding both q and blkcg locks. As blkcg lock is nested
1007 * inside q lock, this function performs reverse double lock dancing.
1008 *
1009 * This is the blkcg counterpart of ioc_release_fn().
1010 */
eb95419b 1011static void blkcg_css_offline(struct cgroup_subsys_state *css)
31e4c28d 1012{
eb95419b 1013 struct blkcg *blkcg = css_to_blkcg(css);
b1c35769 1014
9f13ef67 1015 spin_lock_irq(&blkcg->lock);
7ee9c562 1016
9f13ef67 1017 while (!hlist_empty(&blkcg->blkg_list)) {
3c798398
TH
1018 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1019 struct blkcg_gq, blkcg_node);
c875f4d0 1020 struct request_queue *q = blkg->q;
b1c35769 1021
9f13ef67
TH
1022 if (spin_trylock(q->queue_lock)) {
1023 blkg_destroy(blkg);
1024 spin_unlock(q->queue_lock);
1025 } else {
1026 spin_unlock_irq(&blkcg->lock);
9f13ef67 1027 cpu_relax();
a5567932 1028 spin_lock_irq(&blkcg->lock);
0f3942a3 1029 }
9f13ef67 1030 }
b1c35769 1031
9f13ef67 1032 spin_unlock_irq(&blkcg->lock);
52ebea74
TH
1033
1034 wb_blkcg_offline(blkcg);
7ee9c562
TH
1035}
1036
eb95419b 1037static void blkcg_css_free(struct cgroup_subsys_state *css)
7ee9c562 1038{
eb95419b 1039 struct blkcg *blkcg = css_to_blkcg(css);
bc915e61 1040 int i;
7ee9c562 1041
7876f930 1042 mutex_lock(&blkcg_pol_mutex);
e4a9bde9 1043
7876f930 1044 list_del(&blkcg->all_blkcgs_node);
7876f930 1045
bc915e61 1046 for (i = 0; i < BLKCG_MAX_POLS; i++)
e4a9bde9
TH
1047 if (blkcg->cpd[i])
1048 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1049
1050 mutex_unlock(&blkcg_pol_mutex);
1051
bc915e61 1052 kfree(blkcg);
31e4c28d
VG
1053}
1054
eb95419b
TH
1055static struct cgroup_subsys_state *
1056blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
31e4c28d 1057{
3c798398 1058 struct blkcg *blkcg;
e48453c3
AA
1059 struct cgroup_subsys_state *ret;
1060 int i;
31e4c28d 1061
7876f930
TH
1062 mutex_lock(&blkcg_pol_mutex);
1063
eb95419b 1064 if (!parent_css) {
3c798398 1065 blkcg = &blkcg_root;
bc915e61
TH
1066 } else {
1067 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1068 if (!blkcg) {
1069 ret = ERR_PTR(-ENOMEM);
4c18c9e9 1070 goto unlock;
bc915e61 1071 }
e48453c3
AA
1072 }
1073
1074 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1075 struct blkcg_policy *pol = blkcg_policy[i];
1076 struct blkcg_policy_data *cpd;
1077
1078 /*
1079 * If the policy hasn't been attached yet, wait for it
1080 * to be attached before doing anything else. Otherwise,
1081 * check if the policy requires any specific per-cgroup
1082 * data: if it does, allocate and initialize it.
1083 */
e4a9bde9 1084 if (!pol || !pol->cpd_alloc_fn)
e48453c3
AA
1085 continue;
1086
e4a9bde9 1087 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
e48453c3
AA
1088 if (!cpd) {
1089 ret = ERR_PTR(-ENOMEM);
1090 goto free_pd_blkcg;
1091 }
81437648
TH
1092 blkcg->cpd[i] = cpd;
1093 cpd->blkcg = blkcg;
e48453c3 1094 cpd->plid = i;
e4a9bde9
TH
1095 if (pol->cpd_init_fn)
1096 pol->cpd_init_fn(cpd);
e48453c3 1097 }
31e4c28d 1098
31e4c28d 1099 spin_lock_init(&blkcg->lock);
e00f4f4d 1100 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
31e4c28d 1101 INIT_HLIST_HEAD(&blkcg->blkg_list);
52ebea74
TH
1102#ifdef CONFIG_CGROUP_WRITEBACK
1103 INIT_LIST_HEAD(&blkcg->cgwb_list);
1104#endif
7876f930
TH
1105 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1106
1107 mutex_unlock(&blkcg_pol_mutex);
31e4c28d 1108 return &blkcg->css;
e48453c3
AA
1109
1110free_pd_blkcg:
1111 for (i--; i >= 0; i--)
e4a9bde9
TH
1112 if (blkcg->cpd[i])
1113 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
4c18c9e9 1114
1115 if (blkcg != &blkcg_root)
1116 kfree(blkcg);
1117unlock:
7876f930 1118 mutex_unlock(&blkcg_pol_mutex);
e48453c3 1119 return ret;
31e4c28d
VG
1120}
1121
5efd6113
TH
1122/**
1123 * blkcg_init_queue - initialize blkcg part of request queue
1124 * @q: request_queue to initialize
1125 *
1126 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1127 * part of new request_queue @q.
1128 *
1129 * RETURNS:
1130 * 0 on success, -errno on failure.
1131 */
1132int blkcg_init_queue(struct request_queue *q)
1133{
d708f0d5
JA
1134 struct blkcg_gq *new_blkg, *blkg;
1135 bool preloaded;
ec13b1d6
TH
1136 int ret;
1137
d708f0d5
JA
1138 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1139 if (!new_blkg)
1140 return -ENOMEM;
1141
1142 preloaded = !radix_tree_preload(GFP_KERNEL);
1143
1144 /*
1145 * Make sure the root blkg exists and count the existing blkgs. As
1146 * @q is bypassing at this point, blkg_lookup_create() can't be
1147 * used. Open code insertion.
1148 */
ec13b1d6
TH
1149 rcu_read_lock();
1150 spin_lock_irq(q->queue_lock);
d708f0d5 1151 blkg = blkg_create(&blkcg_root, q, new_blkg);
d8cf6310
JB
1152 if (IS_ERR(blkg))
1153 goto err_unlock;
1154 q->root_blkg = blkg;
1155 q->root_rl.blkg = blkg;
ec13b1d6
TH
1156 spin_unlock_irq(q->queue_lock);
1157 rcu_read_unlock();
1158
d708f0d5
JA
1159 if (preloaded)
1160 radix_tree_preload_end();
1161
ec13b1d6
TH
1162 ret = blk_throtl_init(q);
1163 if (ret) {
1164 spin_lock_irq(q->queue_lock);
1165 blkg_destroy_all(q);
1166 spin_unlock_irq(q->queue_lock);
1167 }
1168 return ret;
d8cf6310
JB
1169
1170err_unlock:
1171 spin_unlock_irq(q->queue_lock);
1172 rcu_read_unlock();
1173 if (preloaded)
1174 radix_tree_preload_end();
1175 return PTR_ERR(blkg);
5efd6113
TH
1176}
1177
1178/**
1179 * blkcg_drain_queue - drain blkcg part of request_queue
1180 * @q: request_queue to drain
1181 *
1182 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1183 */
1184void blkcg_drain_queue(struct request_queue *q)
1185{
1186 lockdep_assert_held(q->queue_lock);
1187
0b462c89
TH
1188 /*
1189 * @q could be exiting and already have destroyed all blkgs as
1190 * indicated by NULL root_blkg. If so, don't confuse policies.
1191 */
1192 if (!q->root_blkg)
1193 return;
1194
5efd6113
TH
1195 blk_throtl_drain(q);
1196}
1197
1198/**
1199 * blkcg_exit_queue - exit and release blkcg part of request_queue
1200 * @q: request_queue being released
1201 *
1202 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1203 */
1204void blkcg_exit_queue(struct request_queue *q)
1205{
6d18b008 1206 spin_lock_irq(q->queue_lock);
3c96cb32 1207 blkg_destroy_all(q);
6d18b008
TH
1208 spin_unlock_irq(q->queue_lock);
1209
5efd6113
TH
1210 blk_throtl_exit(q);
1211}
1212
31e4c28d
VG
1213/*
1214 * We cannot support shared io contexts, as we have no mean to support
1215 * two tasks with the same ioc in two different groups without major rework
1216 * of the main cic data structures. For now we allow a task to change
1217 * its cgroup only if it's the only owner of its ioc.
1218 */
1f7dd3e5 1219static int blkcg_can_attach(struct cgroup_taskset *tset)
31e4c28d 1220{
bb9d97b6 1221 struct task_struct *task;
1f7dd3e5 1222 struct cgroup_subsys_state *dst_css;
31e4c28d
VG
1223 struct io_context *ioc;
1224 int ret = 0;
1225
1226 /* task_lock() is needed to avoid races with exit_io_context() */
1f7dd3e5 1227 cgroup_taskset_for_each(task, dst_css, tset) {
bb9d97b6
TH
1228 task_lock(task);
1229 ioc = task->io_context;
1230 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1231 ret = -EINVAL;
1232 task_unlock(task);
1233 if (ret)
1234 break;
1235 }
31e4c28d
VG
1236 return ret;
1237}
1238
69d7fde5
TH
1239static void blkcg_bind(struct cgroup_subsys_state *root_css)
1240{
1241 int i;
1242
1243 mutex_lock(&blkcg_pol_mutex);
1244
1245 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1246 struct blkcg_policy *pol = blkcg_policy[i];
1247 struct blkcg *blkcg;
1248
1249 if (!pol || !pol->cpd_bind_fn)
1250 continue;
1251
1252 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1253 if (blkcg->cpd[pol->plid])
1254 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1255 }
1256 mutex_unlock(&blkcg_pol_mutex);
1257}
1258
c165b3e3 1259struct cgroup_subsys io_cgrp_subsys = {
92fb9748
TH
1260 .css_alloc = blkcg_css_alloc,
1261 .css_offline = blkcg_css_offline,
1262 .css_free = blkcg_css_free,
3c798398 1263 .can_attach = blkcg_can_attach,
69d7fde5 1264 .bind = blkcg_bind,
2ee867dc 1265 .dfl_cftypes = blkcg_files,
880f50e2 1266 .legacy_cftypes = blkcg_legacy_files,
c165b3e3 1267 .legacy_name = "blkio",
1ced953b
TH
1268#ifdef CONFIG_MEMCG
1269 /*
1270 * This ensures that, if available, memcg is automatically enabled
1271 * together on the default hierarchy so that the owner cgroup can
1272 * be retrieved from writeback pages.
1273 */
1274 .depends_on = 1 << memory_cgrp_id,
1275#endif
676f7c8f 1276};
c165b3e3 1277EXPORT_SYMBOL_GPL(io_cgrp_subsys);
676f7c8f 1278
a2b1693b
TH
1279/**
1280 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1281 * @q: request_queue of interest
1282 * @pol: blkcg policy to activate
1283 *
1284 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1285 * bypass mode to populate its blkgs with policy_data for @pol.
1286 *
1287 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1288 * from IO path. Update of each blkg is protected by both queue and blkcg
1289 * locks so that holding either lock and testing blkcg_policy_enabled() is
1290 * always enough for dereferencing policy data.
1291 *
1292 * The caller is responsible for synchronizing [de]activations and policy
1293 * [un]registerations. Returns 0 on success, -errno on failure.
1294 */
1295int blkcg_activate_policy(struct request_queue *q,
3c798398 1296 const struct blkcg_policy *pol)
a2b1693b 1297{
4c55f4f9 1298 struct blkg_policy_data *pd_prealloc = NULL;
ec13b1d6 1299 struct blkcg_gq *blkg;
4c55f4f9 1300 int ret;
a2b1693b
TH
1301
1302 if (blkcg_policy_enabled(q, pol))
1303 return 0;
1304
38dbb7dd 1305 if (q->mq_ops)
bd166ef1 1306 blk_mq_freeze_queue(q);
38dbb7dd 1307 else
bd166ef1 1308 blk_queue_bypass_start(q);
4c55f4f9
TH
1309pd_prealloc:
1310 if (!pd_prealloc) {
001bea73 1311 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
4c55f4f9 1312 if (!pd_prealloc) {
a2b1693b 1313 ret = -ENOMEM;
4c55f4f9 1314 goto out_bypass_end;
a2b1693b 1315 }
a2b1693b
TH
1316 }
1317
a2b1693b
TH
1318 spin_lock_irq(q->queue_lock);
1319
1320 list_for_each_entry(blkg, &q->blkg_list, q_node) {
4c55f4f9
TH
1321 struct blkg_policy_data *pd;
1322
1323 if (blkg->pd[pol->plid])
1324 continue;
a2b1693b 1325
e00f4f4d 1326 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
4c55f4f9
TH
1327 if (!pd)
1328 swap(pd, pd_prealloc);
1329 if (!pd) {
1330 spin_unlock_irq(q->queue_lock);
1331 goto pd_prealloc;
1332 }
a2b1693b
TH
1333
1334 blkg->pd[pol->plid] = pd;
1335 pd->blkg = blkg;
b276a876 1336 pd->plid = pol->plid;
3e418710 1337 if (pol->pd_init_fn)
a9520cd6 1338 pol->pd_init_fn(pd);
a2b1693b
TH
1339 }
1340
1341 __set_bit(pol->plid, q->blkcg_pols);
1342 ret = 0;
4c55f4f9 1343
a2b1693b 1344 spin_unlock_irq(q->queue_lock);
4c55f4f9 1345out_bypass_end:
38dbb7dd 1346 if (q->mq_ops)
bd166ef1 1347 blk_mq_unfreeze_queue(q);
38dbb7dd 1348 else
bd166ef1 1349 blk_queue_bypass_end(q);
001bea73
TH
1350 if (pd_prealloc)
1351 pol->pd_free_fn(pd_prealloc);
a2b1693b
TH
1352 return ret;
1353}
1354EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1355
1356/**
1357 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1358 * @q: request_queue of interest
1359 * @pol: blkcg policy to deactivate
1360 *
1361 * Deactivate @pol on @q. Follows the same synchronization rules as
1362 * blkcg_activate_policy().
1363 */
1364void blkcg_deactivate_policy(struct request_queue *q,
3c798398 1365 const struct blkcg_policy *pol)
a2b1693b 1366{
3c798398 1367 struct blkcg_gq *blkg;
a2b1693b
TH
1368
1369 if (!blkcg_policy_enabled(q, pol))
1370 return;
1371
38dbb7dd 1372 if (q->mq_ops)
bd166ef1 1373 blk_mq_freeze_queue(q);
38dbb7dd 1374 else
bd166ef1
JA
1375 blk_queue_bypass_start(q);
1376
a2b1693b
TH
1377 spin_lock_irq(q->queue_lock);
1378
1379 __clear_bit(pol->plid, q->blkcg_pols);
1380
1381 list_for_each_entry(blkg, &q->blkg_list, q_node) {
001bea73 1382 if (blkg->pd[pol->plid]) {
a9520cd6
TH
1383 if (pol->pd_offline_fn)
1384 pol->pd_offline_fn(blkg->pd[pol->plid]);
001bea73
TH
1385 pol->pd_free_fn(blkg->pd[pol->plid]);
1386 blkg->pd[pol->plid] = NULL;
1387 }
a2b1693b
TH
1388 }
1389
1390 spin_unlock_irq(q->queue_lock);
bd166ef1 1391
38dbb7dd 1392 if (q->mq_ops)
bd166ef1 1393 blk_mq_unfreeze_queue(q);
38dbb7dd 1394 else
bd166ef1 1395 blk_queue_bypass_end(q);
a2b1693b
TH
1396}
1397EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1398
8bd435b3 1399/**
3c798398
TH
1400 * blkcg_policy_register - register a blkcg policy
1401 * @pol: blkcg policy to register
8bd435b3 1402 *
3c798398
TH
1403 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1404 * successful registration. Returns 0 on success and -errno on failure.
8bd435b3 1405 */
d5bf0291 1406int blkcg_policy_register(struct blkcg_policy *pol)
3e252066 1407{
06b285bd 1408 struct blkcg *blkcg;
8bd435b3 1409 int i, ret;
e8989fae 1410
838f13bf 1411 mutex_lock(&blkcg_pol_register_mutex);
bc0d6501
TH
1412 mutex_lock(&blkcg_pol_mutex);
1413
8bd435b3
TH
1414 /* find an empty slot */
1415 ret = -ENOSPC;
1416 for (i = 0; i < BLKCG_MAX_POLS; i++)
3c798398 1417 if (!blkcg_policy[i])
8bd435b3
TH
1418 break;
1419 if (i >= BLKCG_MAX_POLS)
838f13bf 1420 goto err_unlock;
035d10b2 1421
e8401073 1422 /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1423 if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1424 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1425 goto err_unlock;
1426
06b285bd 1427 /* register @pol */
3c798398 1428 pol->plid = i;
06b285bd
TH
1429 blkcg_policy[pol->plid] = pol;
1430
1431 /* allocate and install cpd's */
e4a9bde9 1432 if (pol->cpd_alloc_fn) {
06b285bd
TH
1433 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1434 struct blkcg_policy_data *cpd;
1435
e4a9bde9 1436 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
bbb427e3 1437 if (!cpd)
06b285bd 1438 goto err_free_cpds;
06b285bd 1439
81437648
TH
1440 blkcg->cpd[pol->plid] = cpd;
1441 cpd->blkcg = blkcg;
06b285bd 1442 cpd->plid = pol->plid;
81437648 1443 pol->cpd_init_fn(cpd);
06b285bd
TH
1444 }
1445 }
1446
838f13bf 1447 mutex_unlock(&blkcg_pol_mutex);
8bd435b3 1448
8bd435b3 1449 /* everything is in place, add intf files for the new policy */
2ee867dc
TH
1450 if (pol->dfl_cftypes)
1451 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1452 pol->dfl_cftypes));
880f50e2 1453 if (pol->legacy_cftypes)
c165b3e3 1454 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
880f50e2 1455 pol->legacy_cftypes));
838f13bf
TH
1456 mutex_unlock(&blkcg_pol_register_mutex);
1457 return 0;
1458
06b285bd 1459err_free_cpds:
58a9edce 1460 if (pol->cpd_free_fn) {
06b285bd 1461 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
e4a9bde9
TH
1462 if (blkcg->cpd[pol->plid]) {
1463 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1464 blkcg->cpd[pol->plid] = NULL;
1465 }
06b285bd
TH
1466 }
1467 }
1468 blkcg_policy[pol->plid] = NULL;
838f13bf 1469err_unlock:
bc0d6501 1470 mutex_unlock(&blkcg_pol_mutex);
838f13bf 1471 mutex_unlock(&blkcg_pol_register_mutex);
8bd435b3 1472 return ret;
3e252066 1473}
3c798398 1474EXPORT_SYMBOL_GPL(blkcg_policy_register);
3e252066 1475
8bd435b3 1476/**
3c798398
TH
1477 * blkcg_policy_unregister - unregister a blkcg policy
1478 * @pol: blkcg policy to unregister
8bd435b3 1479 *
3c798398 1480 * Undo blkcg_policy_register(@pol). Might sleep.
8bd435b3 1481 */
3c798398 1482void blkcg_policy_unregister(struct blkcg_policy *pol)
3e252066 1483{
06b285bd
TH
1484 struct blkcg *blkcg;
1485
838f13bf 1486 mutex_lock(&blkcg_pol_register_mutex);
bc0d6501 1487
3c798398 1488 if (WARN_ON(blkcg_policy[pol->plid] != pol))
8bd435b3
TH
1489 goto out_unlock;
1490
1491 /* kill the intf files first */
2ee867dc
TH
1492 if (pol->dfl_cftypes)
1493 cgroup_rm_cftypes(pol->dfl_cftypes);
880f50e2
TH
1494 if (pol->legacy_cftypes)
1495 cgroup_rm_cftypes(pol->legacy_cftypes);
44ea53de 1496
06b285bd 1497 /* remove cpds and unregister */
838f13bf 1498 mutex_lock(&blkcg_pol_mutex);
06b285bd 1499
58a9edce 1500 if (pol->cpd_free_fn) {
06b285bd 1501 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
e4a9bde9
TH
1502 if (blkcg->cpd[pol->plid]) {
1503 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1504 blkcg->cpd[pol->plid] = NULL;
1505 }
06b285bd
TH
1506 }
1507 }
3c798398 1508 blkcg_policy[pol->plid] = NULL;
06b285bd 1509
bc0d6501 1510 mutex_unlock(&blkcg_pol_mutex);
838f13bf
TH
1511out_unlock:
1512 mutex_unlock(&blkcg_pol_register_mutex);
3e252066 1513}
3c798398 1514EXPORT_SYMBOL_GPL(blkcg_policy_unregister);