blkcg: convert blkg_lookup_create to find closest blkg
[linux-2.6-microblaze.git] / block / blk-cgroup.c
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>
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>
16  */
17 #include <linux/ioprio.h>
18 #include <linux/kdev_t.h>
19 #include <linux/module.h>
20 #include <linux/sched/signal.h>
21 #include <linux/err.h>
22 #include <linux/blkdev.h>
23 #include <linux/backing-dev.h>
24 #include <linux/slab.h>
25 #include <linux/genhd.h>
26 #include <linux/delay.h>
27 #include <linux/atomic.h>
28 #include <linux/ctype.h>
29 #include <linux/blk-cgroup.h>
30 #include <linux/tracehook.h>
31 #include "blk.h"
32
33 #define MAX_KEY_LEN 100
34
35 /*
36  * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
37  * blkcg_pol_register_mutex nests outside of it and synchronizes entire
38  * policy [un]register operations including cgroup file additions /
39  * removals.  Putting cgroup file registration outside blkcg_pol_mutex
40  * allows grabbing it from cgroup callbacks.
41  */
42 static DEFINE_MUTEX(blkcg_pol_register_mutex);
43 static DEFINE_MUTEX(blkcg_pol_mutex);
44
45 struct blkcg blkcg_root;
46 EXPORT_SYMBOL_GPL(blkcg_root);
47
48 struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
49
50 static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
51
52 static LIST_HEAD(all_blkcgs);           /* protected by blkcg_pol_mutex */
53
54 static bool blkcg_debug_stats = false;
55
56 static bool blkcg_policy_enabled(struct request_queue *q,
57                                  const struct blkcg_policy *pol)
58 {
59         return pol && test_bit(pol->plid, q->blkcg_pols);
60 }
61
62 /**
63  * blkg_free - free a blkg
64  * @blkg: blkg to free
65  *
66  * Free @blkg which may be partially allocated.
67  */
68 static void blkg_free(struct blkcg_gq *blkg)
69 {
70         int i;
71
72         if (!blkg)
73                 return;
74
75         for (i = 0; i < BLKCG_MAX_POLS; i++)
76                 if (blkg->pd[i])
77                         blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
78
79         if (blkg->blkcg != &blkcg_root)
80                 blk_exit_rl(blkg->q, &blkg->rl);
81
82         blkg_rwstat_exit(&blkg->stat_ios);
83         blkg_rwstat_exit(&blkg->stat_bytes);
84         kfree(blkg);
85 }
86
87 /**
88  * blkg_alloc - allocate a blkg
89  * @blkcg: block cgroup the new blkg is associated with
90  * @q: request_queue the new blkg is associated with
91  * @gfp_mask: allocation mask to use
92  *
93  * Allocate a new blkg assocating @blkcg and @q.
94  */
95 static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
96                                    gfp_t gfp_mask)
97 {
98         struct blkcg_gq *blkg;
99         int i;
100
101         /* alloc and init base part */
102         blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
103         if (!blkg)
104                 return NULL;
105
106         if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
107             blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
108                 goto err_free;
109
110         blkg->q = q;
111         INIT_LIST_HEAD(&blkg->q_node);
112         blkg->blkcg = blkcg;
113         atomic_set(&blkg->refcnt, 1);
114
115         /* root blkg uses @q->root_rl, init rl only for !root blkgs */
116         if (blkcg != &blkcg_root) {
117                 if (blk_init_rl(&blkg->rl, q, gfp_mask))
118                         goto err_free;
119                 blkg->rl.blkg = blkg;
120         }
121
122         for (i = 0; i < BLKCG_MAX_POLS; i++) {
123                 struct blkcg_policy *pol = blkcg_policy[i];
124                 struct blkg_policy_data *pd;
125
126                 if (!blkcg_policy_enabled(q, pol))
127                         continue;
128
129                 /* alloc per-policy data and attach it to blkg */
130                 pd = pol->pd_alloc_fn(gfp_mask, q->node);
131                 if (!pd)
132                         goto err_free;
133
134                 blkg->pd[i] = pd;
135                 pd->blkg = blkg;
136                 pd->plid = i;
137         }
138
139         return blkg;
140
141 err_free:
142         blkg_free(blkg);
143         return NULL;
144 }
145
146 struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
147                                       struct request_queue *q, bool update_hint)
148 {
149         struct blkcg_gq *blkg;
150
151         /*
152          * Hint didn't match.  Look up from the radix tree.  Note that the
153          * hint can only be updated under queue_lock as otherwise @blkg
154          * could have already been removed from blkg_tree.  The caller is
155          * responsible for grabbing queue_lock if @update_hint.
156          */
157         blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
158         if (blkg && blkg->q == q) {
159                 if (update_hint) {
160                         lockdep_assert_held(q->queue_lock);
161                         rcu_assign_pointer(blkcg->blkg_hint, blkg);
162                 }
163                 return blkg;
164         }
165
166         return NULL;
167 }
168 EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
169
170 /*
171  * If @new_blkg is %NULL, this function tries to allocate a new one as
172  * necessary using %GFP_NOWAIT.  @new_blkg is always consumed on return.
173  */
174 static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
175                                     struct request_queue *q,
176                                     struct blkcg_gq *new_blkg)
177 {
178         struct blkcg_gq *blkg;
179         struct bdi_writeback_congested *wb_congested;
180         int i, ret;
181
182         WARN_ON_ONCE(!rcu_read_lock_held());
183         lockdep_assert_held(q->queue_lock);
184
185         /* blkg holds a reference to blkcg */
186         if (!css_tryget_online(&blkcg->css)) {
187                 ret = -ENODEV;
188                 goto err_free_blkg;
189         }
190
191         wb_congested = wb_congested_get_create(q->backing_dev_info,
192                                                blkcg->css.id,
193                                                GFP_NOWAIT | __GFP_NOWARN);
194         if (!wb_congested) {
195                 ret = -ENOMEM;
196                 goto err_put_css;
197         }
198
199         /* allocate */
200         if (!new_blkg) {
201                 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
202                 if (unlikely(!new_blkg)) {
203                         ret = -ENOMEM;
204                         goto err_put_congested;
205                 }
206         }
207         blkg = new_blkg;
208         blkg->wb_congested = wb_congested;
209
210         /* link parent */
211         if (blkcg_parent(blkcg)) {
212                 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
213                 if (WARN_ON_ONCE(!blkg->parent)) {
214                         ret = -ENODEV;
215                         goto err_put_congested;
216                 }
217                 blkg_get(blkg->parent);
218         }
219
220         /* invoke per-policy init */
221         for (i = 0; i < BLKCG_MAX_POLS; i++) {
222                 struct blkcg_policy *pol = blkcg_policy[i];
223
224                 if (blkg->pd[i] && pol->pd_init_fn)
225                         pol->pd_init_fn(blkg->pd[i]);
226         }
227
228         /* insert */
229         spin_lock(&blkcg->lock);
230         ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
231         if (likely(!ret)) {
232                 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
233                 list_add(&blkg->q_node, &q->blkg_list);
234
235                 for (i = 0; i < BLKCG_MAX_POLS; i++) {
236                         struct blkcg_policy *pol = blkcg_policy[i];
237
238                         if (blkg->pd[i] && pol->pd_online_fn)
239                                 pol->pd_online_fn(blkg->pd[i]);
240                 }
241         }
242         blkg->online = true;
243         spin_unlock(&blkcg->lock);
244
245         if (!ret)
246                 return blkg;
247
248         /* @blkg failed fully initialized, use the usual release path */
249         blkg_put(blkg);
250         return ERR_PTR(ret);
251
252 err_put_congested:
253         wb_congested_put(wb_congested);
254 err_put_css:
255         css_put(&blkcg->css);
256 err_free_blkg:
257         blkg_free(new_blkg);
258         return ERR_PTR(ret);
259 }
260
261 /**
262  * __blkg_lookup_create - lookup blkg, try to create one if not there
263  * @blkcg: blkcg of interest
264  * @q: request_queue of interest
265  *
266  * Lookup blkg for the @blkcg - @q pair.  If it doesn't exist, try to
267  * create one.  blkg creation is performed recursively from blkcg_root such
268  * that all non-root blkg's have access to the parent blkg.  This function
269  * should be called under RCU read lock and @q->queue_lock.
270  *
271  * Returns the blkg or the closest blkg if blkg_create fails as it walks
272  * down from root.
273  */
274 struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
275                                       struct request_queue *q)
276 {
277         struct blkcg_gq *blkg;
278
279         WARN_ON_ONCE(!rcu_read_lock_held());
280         lockdep_assert_held(q->queue_lock);
281
282         /*
283          * This could be the first entry point of blkcg implementation and
284          * we shouldn't allow anything to go through for a bypassing queue.
285          */
286         if (unlikely(blk_queue_bypass(q)))
287                 return q->root_blkg;
288
289         blkg = __blkg_lookup(blkcg, q, true);
290         if (blkg)
291                 return blkg;
292
293         /*
294          * Create blkgs walking down from blkcg_root to @blkcg, so that all
295          * non-root blkgs have access to their parents.  Returns the closest
296          * blkg to the intended blkg should blkg_create() fail.
297          */
298         while (true) {
299                 struct blkcg *pos = blkcg;
300                 struct blkcg *parent = blkcg_parent(blkcg);
301                 struct blkcg_gq *ret_blkg = q->root_blkg;
302
303                 while (parent) {
304                         blkg = __blkg_lookup(parent, q, false);
305                         if (blkg) {
306                                 /* remember closest blkg */
307                                 ret_blkg = blkg;
308                                 break;
309                         }
310                         pos = parent;
311                         parent = blkcg_parent(parent);
312                 }
313
314                 blkg = blkg_create(pos, q, NULL);
315                 if (IS_ERR(blkg))
316                         return ret_blkg;
317                 if (pos == blkcg)
318                         return blkg;
319         }
320 }
321
322 /**
323  * blkg_lookup_create - find or create a blkg
324  * @blkcg: target block cgroup
325  * @q: target request_queue
326  *
327  * This looks up or creates the blkg representing the unique pair
328  * of the blkcg and the request_queue.
329  */
330 struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
331                                     struct request_queue *q)
332 {
333         struct blkcg_gq *blkg = blkg_lookup(blkcg, q);
334         unsigned long flags;
335
336         if (unlikely(!blkg)) {
337                 spin_lock_irqsave(q->queue_lock, flags);
338
339                 blkg = __blkg_lookup_create(blkcg, q);
340
341                 spin_unlock_irqrestore(q->queue_lock, flags);
342         }
343
344         return blkg;
345 }
346
347 static void blkg_destroy(struct blkcg_gq *blkg)
348 {
349         struct blkcg *blkcg = blkg->blkcg;
350         struct blkcg_gq *parent = blkg->parent;
351         int i;
352
353         lockdep_assert_held(blkg->q->queue_lock);
354         lockdep_assert_held(&blkcg->lock);
355
356         /* Something wrong if we are trying to remove same group twice */
357         WARN_ON_ONCE(list_empty(&blkg->q_node));
358         WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
359
360         for (i = 0; i < BLKCG_MAX_POLS; i++) {
361                 struct blkcg_policy *pol = blkcg_policy[i];
362
363                 if (blkg->pd[i] && pol->pd_offline_fn)
364                         pol->pd_offline_fn(blkg->pd[i]);
365         }
366
367         if (parent) {
368                 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
369                 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
370         }
371
372         blkg->online = false;
373
374         radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
375         list_del_init(&blkg->q_node);
376         hlist_del_init_rcu(&blkg->blkcg_node);
377
378         /*
379          * Both setting lookup hint to and clearing it from @blkg are done
380          * under queue_lock.  If it's not pointing to @blkg now, it never
381          * will.  Hint assignment itself can race safely.
382          */
383         if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
384                 rcu_assign_pointer(blkcg->blkg_hint, NULL);
385
386         /*
387          * Put the reference taken at the time of creation so that when all
388          * queues are gone, group can be destroyed.
389          */
390         blkg_put(blkg);
391 }
392
393 /**
394  * blkg_destroy_all - destroy all blkgs associated with a request_queue
395  * @q: request_queue of interest
396  *
397  * Destroy all blkgs associated with @q.
398  */
399 static void blkg_destroy_all(struct request_queue *q)
400 {
401         struct blkcg_gq *blkg, *n;
402
403         lockdep_assert_held(q->queue_lock);
404
405         list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
406                 struct blkcg *blkcg = blkg->blkcg;
407
408                 spin_lock(&blkcg->lock);
409                 blkg_destroy(blkg);
410                 spin_unlock(&blkcg->lock);
411         }
412
413         q->root_blkg = NULL;
414         q->root_rl.blkg = NULL;
415 }
416
417 /*
418  * A group is RCU protected, but having an rcu lock does not mean that one
419  * can access all the fields of blkg and assume these are valid.  For
420  * example, don't try to follow throtl_data and request queue links.
421  *
422  * Having a reference to blkg under an rcu allows accesses to only values
423  * local to groups like group stats and group rate limits.
424  */
425 void __blkg_release_rcu(struct rcu_head *rcu_head)
426 {
427         struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
428
429         /* release the blkcg and parent blkg refs this blkg has been holding */
430         css_put(&blkg->blkcg->css);
431         if (blkg->parent)
432                 blkg_put(blkg->parent);
433
434         wb_congested_put(blkg->wb_congested);
435
436         blkg_free(blkg);
437 }
438 EXPORT_SYMBOL_GPL(__blkg_release_rcu);
439
440 /*
441  * The next function used by blk_queue_for_each_rl().  It's a bit tricky
442  * because the root blkg uses @q->root_rl instead of its own rl.
443  */
444 struct request_list *__blk_queue_next_rl(struct request_list *rl,
445                                          struct request_queue *q)
446 {
447         struct list_head *ent;
448         struct blkcg_gq *blkg;
449
450         /*
451          * Determine the current blkg list_head.  The first entry is
452          * root_rl which is off @q->blkg_list and mapped to the head.
453          */
454         if (rl == &q->root_rl) {
455                 ent = &q->blkg_list;
456                 /* There are no more block groups, hence no request lists */
457                 if (list_empty(ent))
458                         return NULL;
459         } else {
460                 blkg = container_of(rl, struct blkcg_gq, rl);
461                 ent = &blkg->q_node;
462         }
463
464         /* walk to the next list_head, skip root blkcg */
465         ent = ent->next;
466         if (ent == &q->root_blkg->q_node)
467                 ent = ent->next;
468         if (ent == &q->blkg_list)
469                 return NULL;
470
471         blkg = container_of(ent, struct blkcg_gq, q_node);
472         return &blkg->rl;
473 }
474
475 static int blkcg_reset_stats(struct cgroup_subsys_state *css,
476                              struct cftype *cftype, u64 val)
477 {
478         struct blkcg *blkcg = css_to_blkcg(css);
479         struct blkcg_gq *blkg;
480         int i;
481
482         mutex_lock(&blkcg_pol_mutex);
483         spin_lock_irq(&blkcg->lock);
484
485         /*
486          * Note that stat reset is racy - it doesn't synchronize against
487          * stat updates.  This is a debug feature which shouldn't exist
488          * anyway.  If you get hit by a race, retry.
489          */
490         hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
491                 blkg_rwstat_reset(&blkg->stat_bytes);
492                 blkg_rwstat_reset(&blkg->stat_ios);
493
494                 for (i = 0; i < BLKCG_MAX_POLS; i++) {
495                         struct blkcg_policy *pol = blkcg_policy[i];
496
497                         if (blkg->pd[i] && pol->pd_reset_stats_fn)
498                                 pol->pd_reset_stats_fn(blkg->pd[i]);
499                 }
500         }
501
502         spin_unlock_irq(&blkcg->lock);
503         mutex_unlock(&blkcg_pol_mutex);
504         return 0;
505 }
506
507 const char *blkg_dev_name(struct blkcg_gq *blkg)
508 {
509         /* some drivers (floppy) instantiate a queue w/o disk registered */
510         if (blkg->q->backing_dev_info->dev)
511                 return dev_name(blkg->q->backing_dev_info->dev);
512         return NULL;
513 }
514 EXPORT_SYMBOL_GPL(blkg_dev_name);
515
516 /**
517  * blkcg_print_blkgs - helper for printing per-blkg data
518  * @sf: seq_file to print to
519  * @blkcg: blkcg of interest
520  * @prfill: fill function to print out a blkg
521  * @pol: policy in question
522  * @data: data to be passed to @prfill
523  * @show_total: to print out sum of prfill return values or not
524  *
525  * This function invokes @prfill on each blkg of @blkcg if pd for the
526  * policy specified by @pol exists.  @prfill is invoked with @sf, the
527  * policy data and @data and the matching queue lock held.  If @show_total
528  * is %true, the sum of the return values from @prfill is printed with
529  * "Total" label at the end.
530  *
531  * This is to be used to construct print functions for
532  * cftype->read_seq_string method.
533  */
534 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
535                        u64 (*prfill)(struct seq_file *,
536                                      struct blkg_policy_data *, int),
537                        const struct blkcg_policy *pol, int data,
538                        bool show_total)
539 {
540         struct blkcg_gq *blkg;
541         u64 total = 0;
542
543         rcu_read_lock();
544         hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
545                 spin_lock_irq(blkg->q->queue_lock);
546                 if (blkcg_policy_enabled(blkg->q, pol))
547                         total += prfill(sf, blkg->pd[pol->plid], data);
548                 spin_unlock_irq(blkg->q->queue_lock);
549         }
550         rcu_read_unlock();
551
552         if (show_total)
553                 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
554 }
555 EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
556
557 /**
558  * __blkg_prfill_u64 - prfill helper for a single u64 value
559  * @sf: seq_file to print to
560  * @pd: policy private data of interest
561  * @v: value to print
562  *
563  * Print @v to @sf for the device assocaited with @pd.
564  */
565 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
566 {
567         const char *dname = blkg_dev_name(pd->blkg);
568
569         if (!dname)
570                 return 0;
571
572         seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
573         return v;
574 }
575 EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
576
577 /**
578  * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
579  * @sf: seq_file to print to
580  * @pd: policy private data of interest
581  * @rwstat: rwstat to print
582  *
583  * Print @rwstat to @sf for the device assocaited with @pd.
584  */
585 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
586                          const struct blkg_rwstat *rwstat)
587 {
588         static const char *rwstr[] = {
589                 [BLKG_RWSTAT_READ]      = "Read",
590                 [BLKG_RWSTAT_WRITE]     = "Write",
591                 [BLKG_RWSTAT_SYNC]      = "Sync",
592                 [BLKG_RWSTAT_ASYNC]     = "Async",
593                 [BLKG_RWSTAT_DISCARD]   = "Discard",
594         };
595         const char *dname = blkg_dev_name(pd->blkg);
596         u64 v;
597         int i;
598
599         if (!dname)
600                 return 0;
601
602         for (i = 0; i < BLKG_RWSTAT_NR; i++)
603                 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
604                            (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
605
606         v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
607                 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]) +
608                 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_DISCARD]);
609         seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
610         return v;
611 }
612 EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
613
614 /**
615  * blkg_prfill_stat - prfill callback for blkg_stat
616  * @sf: seq_file to print to
617  * @pd: policy private data of interest
618  * @off: offset to the blkg_stat in @pd
619  *
620  * prfill callback for printing a blkg_stat.
621  */
622 u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
623 {
624         return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
625 }
626 EXPORT_SYMBOL_GPL(blkg_prfill_stat);
627
628 /**
629  * blkg_prfill_rwstat - prfill callback for blkg_rwstat
630  * @sf: seq_file to print to
631  * @pd: policy private data of interest
632  * @off: offset to the blkg_rwstat in @pd
633  *
634  * prfill callback for printing a blkg_rwstat.
635  */
636 u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
637                        int off)
638 {
639         struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
640
641         return __blkg_prfill_rwstat(sf, pd, &rwstat);
642 }
643 EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
644
645 static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
646                                     struct blkg_policy_data *pd, int off)
647 {
648         struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
649
650         return __blkg_prfill_rwstat(sf, pd, &rwstat);
651 }
652
653 /**
654  * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
655  * @sf: seq_file to print to
656  * @v: unused
657  *
658  * To be used as cftype->seq_show to print blkg->stat_bytes.
659  * cftype->private must be set to the blkcg_policy.
660  */
661 int blkg_print_stat_bytes(struct seq_file *sf, void *v)
662 {
663         blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
664                           blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
665                           offsetof(struct blkcg_gq, stat_bytes), true);
666         return 0;
667 }
668 EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
669
670 /**
671  * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
672  * @sf: seq_file to print to
673  * @v: unused
674  *
675  * To be used as cftype->seq_show to print blkg->stat_ios.  cftype->private
676  * must be set to the blkcg_policy.
677  */
678 int blkg_print_stat_ios(struct seq_file *sf, void *v)
679 {
680         blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
681                           blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
682                           offsetof(struct blkcg_gq, stat_ios), true);
683         return 0;
684 }
685 EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
686
687 static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
688                                               struct blkg_policy_data *pd,
689                                               int off)
690 {
691         struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
692                                                               NULL, off);
693         return __blkg_prfill_rwstat(sf, pd, &rwstat);
694 }
695
696 /**
697  * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
698  * @sf: seq_file to print to
699  * @v: unused
700  */
701 int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
702 {
703         blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
704                           blkg_prfill_rwstat_field_recursive,
705                           (void *)seq_cft(sf)->private,
706                           offsetof(struct blkcg_gq, stat_bytes), true);
707         return 0;
708 }
709 EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
710
711 /**
712  * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
713  * @sf: seq_file to print to
714  * @v: unused
715  */
716 int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
717 {
718         blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
719                           blkg_prfill_rwstat_field_recursive,
720                           (void *)seq_cft(sf)->private,
721                           offsetof(struct blkcg_gq, stat_ios), true);
722         return 0;
723 }
724 EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
725
726 /**
727  * blkg_stat_recursive_sum - collect hierarchical blkg_stat
728  * @blkg: blkg of interest
729  * @pol: blkcg_policy which contains the blkg_stat
730  * @off: offset to the blkg_stat in blkg_policy_data or @blkg
731  *
732  * Collect the blkg_stat specified by @blkg, @pol and @off and all its
733  * online descendants and their aux counts.  The caller must be holding the
734  * queue lock for online tests.
735  *
736  * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
737  * at @off bytes into @blkg's blkg_policy_data of the policy.
738  */
739 u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
740                             struct blkcg_policy *pol, int off)
741 {
742         struct blkcg_gq *pos_blkg;
743         struct cgroup_subsys_state *pos_css;
744         u64 sum = 0;
745
746         lockdep_assert_held(blkg->q->queue_lock);
747
748         rcu_read_lock();
749         blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
750                 struct blkg_stat *stat;
751
752                 if (!pos_blkg->online)
753                         continue;
754
755                 if (pol)
756                         stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
757                 else
758                         stat = (void *)blkg + off;
759
760                 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
761         }
762         rcu_read_unlock();
763
764         return sum;
765 }
766 EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
767
768 /**
769  * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
770  * @blkg: blkg of interest
771  * @pol: blkcg_policy which contains the blkg_rwstat
772  * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
773  *
774  * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
775  * online descendants and their aux counts.  The caller must be holding the
776  * queue lock for online tests.
777  *
778  * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
779  * is at @off bytes into @blkg's blkg_policy_data of the policy.
780  */
781 struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
782                                              struct blkcg_policy *pol, int off)
783 {
784         struct blkcg_gq *pos_blkg;
785         struct cgroup_subsys_state *pos_css;
786         struct blkg_rwstat sum = { };
787         int i;
788
789         lockdep_assert_held(blkg->q->queue_lock);
790
791         rcu_read_lock();
792         blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
793                 struct blkg_rwstat *rwstat;
794
795                 if (!pos_blkg->online)
796                         continue;
797
798                 if (pol)
799                         rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
800                 else
801                         rwstat = (void *)pos_blkg + off;
802
803                 for (i = 0; i < BLKG_RWSTAT_NR; i++)
804                         atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
805                                 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
806                                 &sum.aux_cnt[i]);
807         }
808         rcu_read_unlock();
809
810         return sum;
811 }
812 EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
813
814 /* Performs queue bypass and policy enabled checks then looks up blkg. */
815 static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
816                                           const struct blkcg_policy *pol,
817                                           struct request_queue *q)
818 {
819         WARN_ON_ONCE(!rcu_read_lock_held());
820         lockdep_assert_held(q->queue_lock);
821
822         if (!blkcg_policy_enabled(q, pol))
823                 return ERR_PTR(-EOPNOTSUPP);
824
825         /*
826          * This could be the first entry point of blkcg implementation and
827          * we shouldn't allow anything to go through for a bypassing queue.
828          */
829         if (unlikely(blk_queue_bypass(q)))
830                 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
831
832         return __blkg_lookup(blkcg, q, true /* update_hint */);
833 }
834
835 /**
836  * blkg_conf_prep - parse and prepare for per-blkg config update
837  * @blkcg: target block cgroup
838  * @pol: target policy
839  * @input: input string
840  * @ctx: blkg_conf_ctx to be filled
841  *
842  * Parse per-blkg config update from @input and initialize @ctx with the
843  * result.  @ctx->blkg points to the blkg to be updated and @ctx->body the
844  * part of @input following MAJ:MIN.  This function returns with RCU read
845  * lock and queue lock held and must be paired with blkg_conf_finish().
846  */
847 int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
848                    char *input, struct blkg_conf_ctx *ctx)
849         __acquires(rcu) __acquires(disk->queue->queue_lock)
850 {
851         struct gendisk *disk;
852         struct request_queue *q;
853         struct blkcg_gq *blkg;
854         unsigned int major, minor;
855         int key_len, part, ret;
856         char *body;
857
858         if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
859                 return -EINVAL;
860
861         body = input + key_len;
862         if (!isspace(*body))
863                 return -EINVAL;
864         body = skip_spaces(body);
865
866         disk = get_gendisk(MKDEV(major, minor), &part);
867         if (!disk)
868                 return -ENODEV;
869         if (part) {
870                 ret = -ENODEV;
871                 goto fail;
872         }
873
874         q = disk->queue;
875
876         rcu_read_lock();
877         spin_lock_irq(q->queue_lock);
878
879         blkg = blkg_lookup_check(blkcg, pol, q);
880         if (IS_ERR(blkg)) {
881                 ret = PTR_ERR(blkg);
882                 goto fail_unlock;
883         }
884
885         if (blkg)
886                 goto success;
887
888         /*
889          * Create blkgs walking down from blkcg_root to @blkcg, so that all
890          * non-root blkgs have access to their parents.
891          */
892         while (true) {
893                 struct blkcg *pos = blkcg;
894                 struct blkcg *parent;
895                 struct blkcg_gq *new_blkg;
896
897                 parent = blkcg_parent(blkcg);
898                 while (parent && !__blkg_lookup(parent, q, false)) {
899                         pos = parent;
900                         parent = blkcg_parent(parent);
901                 }
902
903                 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
904                 spin_unlock_irq(q->queue_lock);
905                 rcu_read_unlock();
906
907                 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
908                 if (unlikely(!new_blkg)) {
909                         ret = -ENOMEM;
910                         goto fail;
911                 }
912
913                 rcu_read_lock();
914                 spin_lock_irq(q->queue_lock);
915
916                 blkg = blkg_lookup_check(pos, pol, q);
917                 if (IS_ERR(blkg)) {
918                         ret = PTR_ERR(blkg);
919                         goto fail_unlock;
920                 }
921
922                 if (blkg) {
923                         blkg_free(new_blkg);
924                 } else {
925                         blkg = blkg_create(pos, q, new_blkg);
926                         if (unlikely(IS_ERR(blkg))) {
927                                 ret = PTR_ERR(blkg);
928                                 goto fail_unlock;
929                         }
930                 }
931
932                 if (pos == blkcg)
933                         goto success;
934         }
935 success:
936         ctx->disk = disk;
937         ctx->blkg = blkg;
938         ctx->body = body;
939         return 0;
940
941 fail_unlock:
942         spin_unlock_irq(q->queue_lock);
943         rcu_read_unlock();
944 fail:
945         put_disk_and_module(disk);
946         /*
947          * If queue was bypassing, we should retry.  Do so after a
948          * short msleep().  It isn't strictly necessary but queue
949          * can be bypassing for some time and it's always nice to
950          * avoid busy looping.
951          */
952         if (ret == -EBUSY) {
953                 msleep(10);
954                 ret = restart_syscall();
955         }
956         return ret;
957 }
958 EXPORT_SYMBOL_GPL(blkg_conf_prep);
959
960 /**
961  * blkg_conf_finish - finish up per-blkg config update
962  * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
963  *
964  * Finish up after per-blkg config update.  This function must be paired
965  * with blkg_conf_prep().
966  */
967 void blkg_conf_finish(struct blkg_conf_ctx *ctx)
968         __releases(ctx->disk->queue->queue_lock) __releases(rcu)
969 {
970         spin_unlock_irq(ctx->disk->queue->queue_lock);
971         rcu_read_unlock();
972         put_disk_and_module(ctx->disk);
973 }
974 EXPORT_SYMBOL_GPL(blkg_conf_finish);
975
976 static int blkcg_print_stat(struct seq_file *sf, void *v)
977 {
978         struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
979         struct blkcg_gq *blkg;
980
981         rcu_read_lock();
982
983         hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
984                 const char *dname;
985                 char *buf;
986                 struct blkg_rwstat rwstat;
987                 u64 rbytes, wbytes, rios, wios, dbytes, dios;
988                 size_t size = seq_get_buf(sf, &buf), off = 0;
989                 int i;
990                 bool has_stats = false;
991
992                 dname = blkg_dev_name(blkg);
993                 if (!dname)
994                         continue;
995
996                 /*
997                  * Hooray string manipulation, count is the size written NOT
998                  * INCLUDING THE \0, so size is now count+1 less than what we
999                  * had before, but we want to start writing the next bit from
1000                  * the \0 so we only add count to buf.
1001                  */
1002                 off += scnprintf(buf+off, size-off, "%s ", dname);
1003
1004                 spin_lock_irq(blkg->q->queue_lock);
1005
1006                 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
1007                                         offsetof(struct blkcg_gq, stat_bytes));
1008                 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
1009                 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
1010                 dbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
1011
1012                 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
1013                                         offsetof(struct blkcg_gq, stat_ios));
1014                 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
1015                 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
1016                 dios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
1017
1018                 spin_unlock_irq(blkg->q->queue_lock);
1019
1020                 if (rbytes || wbytes || rios || wios) {
1021                         has_stats = true;
1022                         off += scnprintf(buf+off, size-off,
1023                                          "rbytes=%llu wbytes=%llu rios=%llu wios=%llu dbytes=%llu dios=%llu",
1024                                          rbytes, wbytes, rios, wios,
1025                                          dbytes, dios);
1026                 }
1027
1028                 if (!blkcg_debug_stats)
1029                         goto next;
1030
1031                 if (atomic_read(&blkg->use_delay)) {
1032                         has_stats = true;
1033                         off += scnprintf(buf+off, size-off,
1034                                          " use_delay=%d delay_nsec=%llu",
1035                                          atomic_read(&blkg->use_delay),
1036                                         (unsigned long long)atomic64_read(&blkg->delay_nsec));
1037                 }
1038
1039                 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1040                         struct blkcg_policy *pol = blkcg_policy[i];
1041                         size_t written;
1042
1043                         if (!blkg->pd[i] || !pol->pd_stat_fn)
1044                                 continue;
1045
1046                         written = pol->pd_stat_fn(blkg->pd[i], buf+off, size-off);
1047                         if (written)
1048                                 has_stats = true;
1049                         off += written;
1050                 }
1051 next:
1052                 if (has_stats) {
1053                         off += scnprintf(buf+off, size-off, "\n");
1054                         seq_commit(sf, off);
1055                 }
1056         }
1057
1058         rcu_read_unlock();
1059         return 0;
1060 }
1061
1062 static struct cftype blkcg_files[] = {
1063         {
1064                 .name = "stat",
1065                 .flags = CFTYPE_NOT_ON_ROOT,
1066                 .seq_show = blkcg_print_stat,
1067         },
1068         { }     /* terminate */
1069 };
1070
1071 static struct cftype blkcg_legacy_files[] = {
1072         {
1073                 .name = "reset_stats",
1074                 .write_u64 = blkcg_reset_stats,
1075         },
1076         { }     /* terminate */
1077 };
1078
1079 /*
1080  * blkcg destruction is a three-stage process.
1081  *
1082  * 1. Destruction starts.  The blkcg_css_offline() callback is invoked
1083  *    which offlines writeback.  Here we tie the next stage of blkg destruction
1084  *    to the completion of writeback associated with the blkcg.  This lets us
1085  *    avoid punting potentially large amounts of outstanding writeback to root
1086  *    while maintaining any ongoing policies.  The next stage is triggered when
1087  *    the nr_cgwbs count goes to zero.
1088  *
1089  * 2. When the nr_cgwbs count goes to zero, blkcg_destroy_blkgs() is called
1090  *    and handles the destruction of blkgs.  Here the css reference held by
1091  *    the blkg is put back eventually allowing blkcg_css_free() to be called.
1092  *    This work may occur in cgwb_release_workfn() on the cgwb_release
1093  *    workqueue.  Any submitted ios that fail to get the blkg ref will be
1094  *    punted to the root_blkg.
1095  *
1096  * 3. Once the blkcg ref count goes to zero, blkcg_css_free() is called.
1097  *    This finally frees the blkcg.
1098  */
1099
1100 /**
1101  * blkcg_css_offline - cgroup css_offline callback
1102  * @css: css of interest
1103  *
1104  * This function is called when @css is about to go away.  Here the cgwbs are
1105  * offlined first and only once writeback associated with the blkcg has
1106  * finished do we start step 2 (see above).
1107  */
1108 static void blkcg_css_offline(struct cgroup_subsys_state *css)
1109 {
1110         struct blkcg *blkcg = css_to_blkcg(css);
1111
1112         /* this prevents anyone from attaching or migrating to this blkcg */
1113         wb_blkcg_offline(blkcg);
1114
1115         /* put the base cgwb reference allowing step 2 to be triggered */
1116         blkcg_cgwb_put(blkcg);
1117 }
1118
1119 /**
1120  * blkcg_destroy_blkgs - responsible for shooting down blkgs
1121  * @blkcg: blkcg of interest
1122  *
1123  * blkgs should be removed while holding both q and blkcg locks.  As blkcg lock
1124  * is nested inside q lock, this function performs reverse double lock dancing.
1125  * Destroying the blkgs releases the reference held on the blkcg's css allowing
1126  * blkcg_css_free to eventually be called.
1127  *
1128  * This is the blkcg counterpart of ioc_release_fn().
1129  */
1130 void blkcg_destroy_blkgs(struct blkcg *blkcg)
1131 {
1132         spin_lock_irq(&blkcg->lock);
1133
1134         while (!hlist_empty(&blkcg->blkg_list)) {
1135                 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1136                                                 struct blkcg_gq, blkcg_node);
1137                 struct request_queue *q = blkg->q;
1138
1139                 if (spin_trylock(q->queue_lock)) {
1140                         blkg_destroy(blkg);
1141                         spin_unlock(q->queue_lock);
1142                 } else {
1143                         spin_unlock_irq(&blkcg->lock);
1144                         cpu_relax();
1145                         spin_lock_irq(&blkcg->lock);
1146                 }
1147         }
1148
1149         spin_unlock_irq(&blkcg->lock);
1150 }
1151
1152 static void blkcg_css_free(struct cgroup_subsys_state *css)
1153 {
1154         struct blkcg *blkcg = css_to_blkcg(css);
1155         int i;
1156
1157         mutex_lock(&blkcg_pol_mutex);
1158
1159         list_del(&blkcg->all_blkcgs_node);
1160
1161         for (i = 0; i < BLKCG_MAX_POLS; i++)
1162                 if (blkcg->cpd[i])
1163                         blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1164
1165         mutex_unlock(&blkcg_pol_mutex);
1166
1167         kfree(blkcg);
1168 }
1169
1170 static struct cgroup_subsys_state *
1171 blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
1172 {
1173         struct blkcg *blkcg;
1174         struct cgroup_subsys_state *ret;
1175         int i;
1176
1177         mutex_lock(&blkcg_pol_mutex);
1178
1179         if (!parent_css) {
1180                 blkcg = &blkcg_root;
1181         } else {
1182                 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1183                 if (!blkcg) {
1184                         ret = ERR_PTR(-ENOMEM);
1185                         goto unlock;
1186                 }
1187         }
1188
1189         for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1190                 struct blkcg_policy *pol = blkcg_policy[i];
1191                 struct blkcg_policy_data *cpd;
1192
1193                 /*
1194                  * If the policy hasn't been attached yet, wait for it
1195                  * to be attached before doing anything else. Otherwise,
1196                  * check if the policy requires any specific per-cgroup
1197                  * data: if it does, allocate and initialize it.
1198                  */
1199                 if (!pol || !pol->cpd_alloc_fn)
1200                         continue;
1201
1202                 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
1203                 if (!cpd) {
1204                         ret = ERR_PTR(-ENOMEM);
1205                         goto free_pd_blkcg;
1206                 }
1207                 blkcg->cpd[i] = cpd;
1208                 cpd->blkcg = blkcg;
1209                 cpd->plid = i;
1210                 if (pol->cpd_init_fn)
1211                         pol->cpd_init_fn(cpd);
1212         }
1213
1214         spin_lock_init(&blkcg->lock);
1215         INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
1216         INIT_HLIST_HEAD(&blkcg->blkg_list);
1217 #ifdef CONFIG_CGROUP_WRITEBACK
1218         INIT_LIST_HEAD(&blkcg->cgwb_list);
1219         refcount_set(&blkcg->cgwb_refcnt, 1);
1220 #endif
1221         list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1222
1223         mutex_unlock(&blkcg_pol_mutex);
1224         return &blkcg->css;
1225
1226 free_pd_blkcg:
1227         for (i--; i >= 0; i--)
1228                 if (blkcg->cpd[i])
1229                         blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1230
1231         if (blkcg != &blkcg_root)
1232                 kfree(blkcg);
1233 unlock:
1234         mutex_unlock(&blkcg_pol_mutex);
1235         return ret;
1236 }
1237
1238 /**
1239  * blkcg_init_queue - initialize blkcg part of request queue
1240  * @q: request_queue to initialize
1241  *
1242  * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1243  * part of new request_queue @q.
1244  *
1245  * RETURNS:
1246  * 0 on success, -errno on failure.
1247  */
1248 int blkcg_init_queue(struct request_queue *q)
1249 {
1250         struct blkcg_gq *new_blkg, *blkg;
1251         bool preloaded;
1252         int ret;
1253
1254         new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1255         if (!new_blkg)
1256                 return -ENOMEM;
1257
1258         preloaded = !radix_tree_preload(GFP_KERNEL);
1259
1260         /* Make sure the root blkg exists. */
1261         rcu_read_lock();
1262         spin_lock_irq(q->queue_lock);
1263         blkg = blkg_create(&blkcg_root, q, new_blkg);
1264         if (IS_ERR(blkg))
1265                 goto err_unlock;
1266         q->root_blkg = blkg;
1267         q->root_rl.blkg = blkg;
1268         spin_unlock_irq(q->queue_lock);
1269         rcu_read_unlock();
1270
1271         if (preloaded)
1272                 radix_tree_preload_end();
1273
1274         ret = blk_iolatency_init(q);
1275         if (ret) {
1276                 spin_lock_irq(q->queue_lock);
1277                 blkg_destroy_all(q);
1278                 spin_unlock_irq(q->queue_lock);
1279                 return ret;
1280         }
1281
1282         ret = blk_throtl_init(q);
1283         if (ret) {
1284                 spin_lock_irq(q->queue_lock);
1285                 blkg_destroy_all(q);
1286                 spin_unlock_irq(q->queue_lock);
1287         }
1288         return ret;
1289
1290 err_unlock:
1291         spin_unlock_irq(q->queue_lock);
1292         rcu_read_unlock();
1293         if (preloaded)
1294                 radix_tree_preload_end();
1295         return PTR_ERR(blkg);
1296 }
1297
1298 /**
1299  * blkcg_drain_queue - drain blkcg part of request_queue
1300  * @q: request_queue to drain
1301  *
1302  * Called from blk_drain_queue().  Responsible for draining blkcg part.
1303  */
1304 void blkcg_drain_queue(struct request_queue *q)
1305 {
1306         lockdep_assert_held(q->queue_lock);
1307
1308         /*
1309          * @q could be exiting and already have destroyed all blkgs as
1310          * indicated by NULL root_blkg.  If so, don't confuse policies.
1311          */
1312         if (!q->root_blkg)
1313                 return;
1314
1315         blk_throtl_drain(q);
1316 }
1317
1318 /**
1319  * blkcg_exit_queue - exit and release blkcg part of request_queue
1320  * @q: request_queue being released
1321  *
1322  * Called from blk_release_queue().  Responsible for exiting blkcg part.
1323  */
1324 void blkcg_exit_queue(struct request_queue *q)
1325 {
1326         spin_lock_irq(q->queue_lock);
1327         blkg_destroy_all(q);
1328         spin_unlock_irq(q->queue_lock);
1329
1330         blk_throtl_exit(q);
1331 }
1332
1333 /*
1334  * We cannot support shared io contexts, as we have no mean to support
1335  * two tasks with the same ioc in two different groups without major rework
1336  * of the main cic data structures.  For now we allow a task to change
1337  * its cgroup only if it's the only owner of its ioc.
1338  */
1339 static int blkcg_can_attach(struct cgroup_taskset *tset)
1340 {
1341         struct task_struct *task;
1342         struct cgroup_subsys_state *dst_css;
1343         struct io_context *ioc;
1344         int ret = 0;
1345
1346         /* task_lock() is needed to avoid races with exit_io_context() */
1347         cgroup_taskset_for_each(task, dst_css, tset) {
1348                 task_lock(task);
1349                 ioc = task->io_context;
1350                 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1351                         ret = -EINVAL;
1352                 task_unlock(task);
1353                 if (ret)
1354                         break;
1355         }
1356         return ret;
1357 }
1358
1359 static void blkcg_bind(struct cgroup_subsys_state *root_css)
1360 {
1361         int i;
1362
1363         mutex_lock(&blkcg_pol_mutex);
1364
1365         for (i = 0; i < BLKCG_MAX_POLS; i++) {
1366                 struct blkcg_policy *pol = blkcg_policy[i];
1367                 struct blkcg *blkcg;
1368
1369                 if (!pol || !pol->cpd_bind_fn)
1370                         continue;
1371
1372                 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1373                         if (blkcg->cpd[pol->plid])
1374                                 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1375         }
1376         mutex_unlock(&blkcg_pol_mutex);
1377 }
1378
1379 static void blkcg_exit(struct task_struct *tsk)
1380 {
1381         if (tsk->throttle_queue)
1382                 blk_put_queue(tsk->throttle_queue);
1383         tsk->throttle_queue = NULL;
1384 }
1385
1386 struct cgroup_subsys io_cgrp_subsys = {
1387         .css_alloc = blkcg_css_alloc,
1388         .css_offline = blkcg_css_offline,
1389         .css_free = blkcg_css_free,
1390         .can_attach = blkcg_can_attach,
1391         .bind = blkcg_bind,
1392         .dfl_cftypes = blkcg_files,
1393         .legacy_cftypes = blkcg_legacy_files,
1394         .legacy_name = "blkio",
1395         .exit = blkcg_exit,
1396 #ifdef CONFIG_MEMCG
1397         /*
1398          * This ensures that, if available, memcg is automatically enabled
1399          * together on the default hierarchy so that the owner cgroup can
1400          * be retrieved from writeback pages.
1401          */
1402         .depends_on = 1 << memory_cgrp_id,
1403 #endif
1404 };
1405 EXPORT_SYMBOL_GPL(io_cgrp_subsys);
1406
1407 /**
1408  * blkcg_activate_policy - activate a blkcg policy on a request_queue
1409  * @q: request_queue of interest
1410  * @pol: blkcg policy to activate
1411  *
1412  * Activate @pol on @q.  Requires %GFP_KERNEL context.  @q goes through
1413  * bypass mode to populate its blkgs with policy_data for @pol.
1414  *
1415  * Activation happens with @q bypassed, so nobody would be accessing blkgs
1416  * from IO path.  Update of each blkg is protected by both queue and blkcg
1417  * locks so that holding either lock and testing blkcg_policy_enabled() is
1418  * always enough for dereferencing policy data.
1419  *
1420  * The caller is responsible for synchronizing [de]activations and policy
1421  * [un]registerations.  Returns 0 on success, -errno on failure.
1422  */
1423 int blkcg_activate_policy(struct request_queue *q,
1424                           const struct blkcg_policy *pol)
1425 {
1426         struct blkg_policy_data *pd_prealloc = NULL;
1427         struct blkcg_gq *blkg;
1428         int ret;
1429
1430         if (blkcg_policy_enabled(q, pol))
1431                 return 0;
1432
1433         if (q->mq_ops)
1434                 blk_mq_freeze_queue(q);
1435         else
1436                 blk_queue_bypass_start(q);
1437 pd_prealloc:
1438         if (!pd_prealloc) {
1439                 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
1440                 if (!pd_prealloc) {
1441                         ret = -ENOMEM;
1442                         goto out_bypass_end;
1443                 }
1444         }
1445
1446         spin_lock_irq(q->queue_lock);
1447
1448         list_for_each_entry(blkg, &q->blkg_list, q_node) {
1449                 struct blkg_policy_data *pd;
1450
1451                 if (blkg->pd[pol->plid])
1452                         continue;
1453
1454                 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
1455                 if (!pd)
1456                         swap(pd, pd_prealloc);
1457                 if (!pd) {
1458                         spin_unlock_irq(q->queue_lock);
1459                         goto pd_prealloc;
1460                 }
1461
1462                 blkg->pd[pol->plid] = pd;
1463                 pd->blkg = blkg;
1464                 pd->plid = pol->plid;
1465                 if (pol->pd_init_fn)
1466                         pol->pd_init_fn(pd);
1467         }
1468
1469         __set_bit(pol->plid, q->blkcg_pols);
1470         ret = 0;
1471
1472         spin_unlock_irq(q->queue_lock);
1473 out_bypass_end:
1474         if (q->mq_ops)
1475                 blk_mq_unfreeze_queue(q);
1476         else
1477                 blk_queue_bypass_end(q);
1478         if (pd_prealloc)
1479                 pol->pd_free_fn(pd_prealloc);
1480         return ret;
1481 }
1482 EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1483
1484 /**
1485  * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1486  * @q: request_queue of interest
1487  * @pol: blkcg policy to deactivate
1488  *
1489  * Deactivate @pol on @q.  Follows the same synchronization rules as
1490  * blkcg_activate_policy().
1491  */
1492 void blkcg_deactivate_policy(struct request_queue *q,
1493                              const struct blkcg_policy *pol)
1494 {
1495         struct blkcg_gq *blkg;
1496
1497         if (!blkcg_policy_enabled(q, pol))
1498                 return;
1499
1500         if (q->mq_ops)
1501                 blk_mq_freeze_queue(q);
1502         else
1503                 blk_queue_bypass_start(q);
1504
1505         spin_lock_irq(q->queue_lock);
1506
1507         __clear_bit(pol->plid, q->blkcg_pols);
1508
1509         list_for_each_entry(blkg, &q->blkg_list, q_node) {
1510                 if (blkg->pd[pol->plid]) {
1511                         if (pol->pd_offline_fn)
1512                                 pol->pd_offline_fn(blkg->pd[pol->plid]);
1513                         pol->pd_free_fn(blkg->pd[pol->plid]);
1514                         blkg->pd[pol->plid] = NULL;
1515                 }
1516         }
1517
1518         spin_unlock_irq(q->queue_lock);
1519
1520         if (q->mq_ops)
1521                 blk_mq_unfreeze_queue(q);
1522         else
1523                 blk_queue_bypass_end(q);
1524 }
1525 EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1526
1527 /**
1528  * blkcg_policy_register - register a blkcg policy
1529  * @pol: blkcg policy to register
1530  *
1531  * Register @pol with blkcg core.  Might sleep and @pol may be modified on
1532  * successful registration.  Returns 0 on success and -errno on failure.
1533  */
1534 int blkcg_policy_register(struct blkcg_policy *pol)
1535 {
1536         struct blkcg *blkcg;
1537         int i, ret;
1538
1539         mutex_lock(&blkcg_pol_register_mutex);
1540         mutex_lock(&blkcg_pol_mutex);
1541
1542         /* find an empty slot */
1543         ret = -ENOSPC;
1544         for (i = 0; i < BLKCG_MAX_POLS; i++)
1545                 if (!blkcg_policy[i])
1546                         break;
1547         if (i >= BLKCG_MAX_POLS)
1548                 goto err_unlock;
1549
1550         /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1551         if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1552                 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1553                 goto err_unlock;
1554
1555         /* register @pol */
1556         pol->plid = i;
1557         blkcg_policy[pol->plid] = pol;
1558
1559         /* allocate and install cpd's */
1560         if (pol->cpd_alloc_fn) {
1561                 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1562                         struct blkcg_policy_data *cpd;
1563
1564                         cpd = pol->cpd_alloc_fn(GFP_KERNEL);
1565                         if (!cpd)
1566                                 goto err_free_cpds;
1567
1568                         blkcg->cpd[pol->plid] = cpd;
1569                         cpd->blkcg = blkcg;
1570                         cpd->plid = pol->plid;
1571                         pol->cpd_init_fn(cpd);
1572                 }
1573         }
1574
1575         mutex_unlock(&blkcg_pol_mutex);
1576
1577         /* everything is in place, add intf files for the new policy */
1578         if (pol->dfl_cftypes)
1579                 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1580                                                pol->dfl_cftypes));
1581         if (pol->legacy_cftypes)
1582                 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
1583                                                   pol->legacy_cftypes));
1584         mutex_unlock(&blkcg_pol_register_mutex);
1585         return 0;
1586
1587 err_free_cpds:
1588         if (pol->cpd_free_fn) {
1589                 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1590                         if (blkcg->cpd[pol->plid]) {
1591                                 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1592                                 blkcg->cpd[pol->plid] = NULL;
1593                         }
1594                 }
1595         }
1596         blkcg_policy[pol->plid] = NULL;
1597 err_unlock:
1598         mutex_unlock(&blkcg_pol_mutex);
1599         mutex_unlock(&blkcg_pol_register_mutex);
1600         return ret;
1601 }
1602 EXPORT_SYMBOL_GPL(blkcg_policy_register);
1603
1604 /**
1605  * blkcg_policy_unregister - unregister a blkcg policy
1606  * @pol: blkcg policy to unregister
1607  *
1608  * Undo blkcg_policy_register(@pol).  Might sleep.
1609  */
1610 void blkcg_policy_unregister(struct blkcg_policy *pol)
1611 {
1612         struct blkcg *blkcg;
1613
1614         mutex_lock(&blkcg_pol_register_mutex);
1615
1616         if (WARN_ON(blkcg_policy[pol->plid] != pol))
1617                 goto out_unlock;
1618
1619         /* kill the intf files first */
1620         if (pol->dfl_cftypes)
1621                 cgroup_rm_cftypes(pol->dfl_cftypes);
1622         if (pol->legacy_cftypes)
1623                 cgroup_rm_cftypes(pol->legacy_cftypes);
1624
1625         /* remove cpds and unregister */
1626         mutex_lock(&blkcg_pol_mutex);
1627
1628         if (pol->cpd_free_fn) {
1629                 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1630                         if (blkcg->cpd[pol->plid]) {
1631                                 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1632                                 blkcg->cpd[pol->plid] = NULL;
1633                         }
1634                 }
1635         }
1636         blkcg_policy[pol->plid] = NULL;
1637
1638         mutex_unlock(&blkcg_pol_mutex);
1639 out_unlock:
1640         mutex_unlock(&blkcg_pol_register_mutex);
1641 }
1642 EXPORT_SYMBOL_GPL(blkcg_policy_unregister);
1643
1644 /*
1645  * Scale the accumulated delay based on how long it has been since we updated
1646  * the delay.  We only call this when we are adding delay, in case it's been a
1647  * while since we added delay, and when we are checking to see if we need to
1648  * delay a task, to account for any delays that may have occurred.
1649  */
1650 static void blkcg_scale_delay(struct blkcg_gq *blkg, u64 now)
1651 {
1652         u64 old = atomic64_read(&blkg->delay_start);
1653
1654         /*
1655          * We only want to scale down every second.  The idea here is that we
1656          * want to delay people for min(delay_nsec, NSEC_PER_SEC) in a certain
1657          * time window.  We only want to throttle tasks for recent delay that
1658          * has occurred, in 1 second time windows since that's the maximum
1659          * things can be throttled.  We save the current delay window in
1660          * blkg->last_delay so we know what amount is still left to be charged
1661          * to the blkg from this point onward.  blkg->last_use keeps track of
1662          * the use_delay counter.  The idea is if we're unthrottling the blkg we
1663          * are ok with whatever is happening now, and we can take away more of
1664          * the accumulated delay as we've already throttled enough that
1665          * everybody is happy with their IO latencies.
1666          */
1667         if (time_before64(old + NSEC_PER_SEC, now) &&
1668             atomic64_cmpxchg(&blkg->delay_start, old, now) == old) {
1669                 u64 cur = atomic64_read(&blkg->delay_nsec);
1670                 u64 sub = min_t(u64, blkg->last_delay, now - old);
1671                 int cur_use = atomic_read(&blkg->use_delay);
1672
1673                 /*
1674                  * We've been unthrottled, subtract a larger chunk of our
1675                  * accumulated delay.
1676                  */
1677                 if (cur_use < blkg->last_use)
1678                         sub = max_t(u64, sub, blkg->last_delay >> 1);
1679
1680                 /*
1681                  * This shouldn't happen, but handle it anyway.  Our delay_nsec
1682                  * should only ever be growing except here where we subtract out
1683                  * min(last_delay, 1 second), but lord knows bugs happen and I'd
1684                  * rather not end up with negative numbers.
1685                  */
1686                 if (unlikely(cur < sub)) {
1687                         atomic64_set(&blkg->delay_nsec, 0);
1688                         blkg->last_delay = 0;
1689                 } else {
1690                         atomic64_sub(sub, &blkg->delay_nsec);
1691                         blkg->last_delay = cur - sub;
1692                 }
1693                 blkg->last_use = cur_use;
1694         }
1695 }
1696
1697 /*
1698  * This is called when we want to actually walk up the hierarchy and check to
1699  * see if we need to throttle, and then actually throttle if there is some
1700  * accumulated delay.  This should only be called upon return to user space so
1701  * we're not holding some lock that would induce a priority inversion.
1702  */
1703 static void blkcg_maybe_throttle_blkg(struct blkcg_gq *blkg, bool use_memdelay)
1704 {
1705         u64 now = ktime_to_ns(ktime_get());
1706         u64 exp;
1707         u64 delay_nsec = 0;
1708         int tok;
1709
1710         while (blkg->parent) {
1711                 if (atomic_read(&blkg->use_delay)) {
1712                         blkcg_scale_delay(blkg, now);
1713                         delay_nsec = max_t(u64, delay_nsec,
1714                                            atomic64_read(&blkg->delay_nsec));
1715                 }
1716                 blkg = blkg->parent;
1717         }
1718
1719         if (!delay_nsec)
1720                 return;
1721
1722         /*
1723          * Let's not sleep for all eternity if we've amassed a huge delay.
1724          * Swapping or metadata IO can accumulate 10's of seconds worth of
1725          * delay, and we want userspace to be able to do _something_ so cap the
1726          * delays at 1 second.  If there's 10's of seconds worth of delay then
1727          * the tasks will be delayed for 1 second for every syscall.
1728          */
1729         delay_nsec = min_t(u64, delay_nsec, 250 * NSEC_PER_MSEC);
1730
1731         /*
1732          * TODO: the use_memdelay flag is going to be for the upcoming psi stuff
1733          * that hasn't landed upstream yet.  Once that stuff is in place we need
1734          * to do a psi_memstall_enter/leave if memdelay is set.
1735          */
1736
1737         exp = ktime_add_ns(now, delay_nsec);
1738         tok = io_schedule_prepare();
1739         do {
1740                 __set_current_state(TASK_KILLABLE);
1741                 if (!schedule_hrtimeout(&exp, HRTIMER_MODE_ABS))
1742                         break;
1743         } while (!fatal_signal_pending(current));
1744         io_schedule_finish(tok);
1745 }
1746
1747 /**
1748  * blkcg_maybe_throttle_current - throttle the current task if it has been marked
1749  *
1750  * This is only called if we've been marked with set_notify_resume().  Obviously
1751  * we can be set_notify_resume() for reasons other than blkcg throttling, so we
1752  * check to see if current->throttle_queue is set and if not this doesn't do
1753  * anything.  This should only ever be called by the resume code, it's not meant
1754  * to be called by people willy-nilly as it will actually do the work to
1755  * throttle the task if it is setup for throttling.
1756  */
1757 void blkcg_maybe_throttle_current(void)
1758 {
1759         struct request_queue *q = current->throttle_queue;
1760         struct cgroup_subsys_state *css;
1761         struct blkcg *blkcg;
1762         struct blkcg_gq *blkg;
1763         bool use_memdelay = current->use_memdelay;
1764
1765         if (!q)
1766                 return;
1767
1768         current->throttle_queue = NULL;
1769         current->use_memdelay = false;
1770
1771         rcu_read_lock();
1772         css = kthread_blkcg();
1773         if (css)
1774                 blkcg = css_to_blkcg(css);
1775         else
1776                 blkcg = css_to_blkcg(task_css(current, io_cgrp_id));
1777
1778         if (!blkcg)
1779                 goto out;
1780         blkg = blkg_lookup(blkcg, q);
1781         if (!blkg)
1782                 goto out;
1783         blkg = blkg_try_get(blkg);
1784         if (!blkg)
1785                 goto out;
1786         rcu_read_unlock();
1787
1788         blkcg_maybe_throttle_blkg(blkg, use_memdelay);
1789         blkg_put(blkg);
1790         blk_put_queue(q);
1791         return;
1792 out:
1793         rcu_read_unlock();
1794         blk_put_queue(q);
1795 }
1796 EXPORT_SYMBOL_GPL(blkcg_maybe_throttle_current);
1797
1798 /**
1799  * blkcg_schedule_throttle - this task needs to check for throttling
1800  * @q - the request queue IO was submitted on
1801  * @use_memdelay - do we charge this to memory delay for PSI
1802  *
1803  * This is called by the IO controller when we know there's delay accumulated
1804  * for the blkg for this task.  We do not pass the blkg because there are places
1805  * we call this that may not have that information, the swapping code for
1806  * instance will only have a request_queue at that point.  This set's the
1807  * notify_resume for the task to check and see if it requires throttling before
1808  * returning to user space.
1809  *
1810  * We will only schedule once per syscall.  You can call this over and over
1811  * again and it will only do the check once upon return to user space, and only
1812  * throttle once.  If the task needs to be throttled again it'll need to be
1813  * re-set at the next time we see the task.
1814  */
1815 void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay)
1816 {
1817         if (unlikely(current->flags & PF_KTHREAD))
1818                 return;
1819
1820         if (!blk_get_queue(q))
1821                 return;
1822
1823         if (current->throttle_queue)
1824                 blk_put_queue(current->throttle_queue);
1825         current->throttle_queue = q;
1826         if (use_memdelay)
1827                 current->use_memdelay = use_memdelay;
1828         set_notify_resume(current);
1829 }
1830 EXPORT_SYMBOL_GPL(blkcg_schedule_throttle);
1831
1832 /**
1833  * blkcg_add_delay - add delay to this blkg
1834  * @now - the current time in nanoseconds
1835  * @delta - how many nanoseconds of delay to add
1836  *
1837  * Charge @delta to the blkg's current delay accumulation.  This is used to
1838  * throttle tasks if an IO controller thinks we need more throttling.
1839  */
1840 void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta)
1841 {
1842         blkcg_scale_delay(blkg, now);
1843         atomic64_add(delta, &blkg->delay_nsec);
1844 }
1845 EXPORT_SYMBOL_GPL(blkcg_add_delay);
1846
1847 module_param(blkcg_debug_stats, bool, 0644);
1848 MODULE_PARM_DESC(blkcg_debug_stats, "True if you want debug stats, false if not");