blob: b421a9457e058be6c7a69af07cb8b37e7aab2969 [file] [log] [blame]
Vivek Goyal31e4c282009-12-03 12:59:42 -05001/*
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>
Arianna Avanzinie48453c2015-06-05 23:38:42 +020012 *
13 * For policy-specific per-blkcg data:
14 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
15 * Arianna Avanzini <avanzini.arianna@gmail.com>
Vivek Goyal31e4c282009-12-03 12:59:42 -050016 */
17#include <linux/ioprio.h>
Vivek Goyal22084192009-12-03 12:59:49 -050018#include <linux/kdev_t.h>
Vivek Goyal9d6a9862009-12-04 10:36:41 -050019#include <linux/module.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010020#include <linux/sched/signal.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110021#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070022#include <linux/blkdev.h>
Tejun Heo52ebea72015-05-22 17:13:37 -040023#include <linux/backing-dev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080025#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080026#include <linux/delay.h>
Tejun Heo9a9e8a22012-03-19 15:10:56 -070027#include <linux/atomic.h>
Tejun Heo36aa9e52015-08-18 14:55:31 -070028#include <linux/ctype.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040029#include <linux/blk-cgroup.h>
Josef Bacikd09d8df2018-07-03 11:14:55 -040030#include <linux/tracehook.h>
Tejun Heo5efd6112012-03-05 13:15:12 -080031#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050032
Divyesh Shah84c124d2010-04-09 08:31:19 +020033#define MAX_KEY_LEN 100
34
Tejun Heo838f13b2015-07-09 16:39:47 -040035/*
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 */
42static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070043static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080044
Arianna Avanzinie48453c2015-06-05 23:38:42 +020045struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070046EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050047
Tejun Heo496d5e72015-05-22 17:13:21 -040048struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
49
Tejun Heo3c798392012-04-16 13:57:25 -070050static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080051
Tejun Heo7876f932015-07-09 16:39:49 -040052static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
53
Josef Bacik903d23f2018-07-03 11:14:52 -040054static bool blkcg_debug_stats = false;
55
Tejun Heoa2b16932012-04-13 13:11:33 -070056static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070057 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070058{
59 return pol && test_bit(pol->plid, q->blkcg_pols);
60}
61
Tejun Heo03814112012-03-05 13:15:14 -080062/**
63 * blkg_free - free a blkg
64 * @blkg: blkg to free
65 *
66 * Free @blkg which may be partially allocated.
67 */
Tejun Heo3c798392012-04-16 13:57:25 -070068static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080069{
Tejun Heoe8989fa2012-03-05 13:15:20 -080070 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080071
72 if (!blkg)
73 return;
74
Tejun Heodb613672013-05-14 13:52:31 -070075 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070076 if (blkg->pd[i])
77 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080078
Tejun Heo77ea7332015-08-18 14:55:24 -070079 blkg_rwstat_exit(&blkg->stat_ios);
80 blkg_rwstat_exit(&blkg->stat_bytes);
Tejun Heo549d3aa2012-03-05 13:15:16 -080081 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080082}
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
Tejun Heo15974992012-06-04 20:40:52 -070088 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080089 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080090 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080091 */
Tejun Heo15974992012-06-04 20:40:52 -070092static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
93 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080094{
Tejun Heo3c798392012-04-16 13:57:25 -070095 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080096 int i;
Tejun Heo03814112012-03-05 13:15:14 -080097
98 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070099 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -0800100 if (!blkg)
101 return NULL;
102
Tejun Heo77ea7332015-08-18 14:55:24 -0700103 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
104 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
105 goto err_free;
106
Tejun Heoc875f4d2012-03-05 13:15:22 -0800107 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800108 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800109 blkg->blkcg = blkcg;
Dennis Zhoub5f29542018-11-01 17:24:10 -0400110 atomic_set(&blkg->refcnt, 1);
Tejun Heo03814112012-03-05 13:15:14 -0800111
Tejun Heo8bd435b2012-04-13 13:11:28 -0700112 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700113 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800114 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800115
Tejun Heoa2b16932012-04-13 13:11:33 -0700116 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800117 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800118
Tejun Heoe8989fa2012-03-05 13:15:20 -0800119 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700120 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700121 if (!pd)
122 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800123
Tejun Heoe8989fa2012-03-05 13:15:20 -0800124 blkg->pd[i] = pd;
125 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800126 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800127 }
128
Tejun Heo03814112012-03-05 13:15:14 -0800129 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700130
131err_free:
132 blkg_free(blkg);
133 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800134}
135
Tejun Heo24f29042015-08-18 14:55:17 -0700136struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
137 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700138{
Tejun Heo3c798392012-04-16 13:57:25 -0700139 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700140
Tejun Heoa6371202012-04-19 16:29:24 -0700141 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800142 * Hint didn't match. Look up from the radix tree. Note that the
143 * hint can only be updated under queue_lock as otherwise @blkg
144 * could have already been removed from blkg_tree. The caller is
145 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700146 */
147 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800148 if (blkg && blkg->q == q) {
149 if (update_hint) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700150 lockdep_assert_held(&q->queue_lock);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800151 rcu_assign_pointer(blkcg->blkg_hint, blkg);
152 }
Tejun Heoa6371202012-04-19 16:29:24 -0700153 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800154 }
Tejun Heoa6371202012-04-19 16:29:24 -0700155
Tejun Heo80fd9972012-04-13 14:50:53 -0700156 return NULL;
157}
Tejun Heoae118892015-08-18 14:55:20 -0700158EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700159
Tejun Heo15974992012-06-04 20:40:52 -0700160/*
Jens Axboed708f0d2017-03-29 11:25:48 -0600161 * If @new_blkg is %NULL, this function tries to allocate a new one as
162 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700163 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800164static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
Jens Axboed708f0d2017-03-29 11:25:48 -0600165 struct request_queue *q,
166 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400167{
Jens Axboed708f0d2017-03-29 11:25:48 -0600168 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400169 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800170 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400171
Tejun Heocd1604f2012-03-05 13:15:06 -0800172 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700173 lockdep_assert_held(&q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500174
Tejun Heo7ee9c562012-03-05 13:15:11 -0800175 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400176 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700177 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800178 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700179 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800180
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800181 wb_congested = wb_congested_get_create(q->backing_dev_info,
Jens Axboed708f0d2017-03-29 11:25:48 -0600182 blkcg->css.id,
183 GFP_NOWAIT | __GFP_NOWARN);
184 if (!wb_congested) {
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800185 ret = -ENOMEM;
Jens Axboed708f0d2017-03-29 11:25:48 -0600186 goto err_put_css;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800187 }
188
Jens Axboed708f0d2017-03-29 11:25:48 -0600189 /* allocate */
190 if (!new_blkg) {
191 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
192 if (unlikely(!new_blkg)) {
193 ret = -ENOMEM;
194 goto err_put_congested;
195 }
196 }
197 blkg = new_blkg;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800198 blkg->wb_congested = wb_congested;
199
Tejun Heodb613672013-05-14 13:52:31 -0700200 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800201 if (blkcg_parent(blkcg)) {
202 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
203 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700204 ret = -ENODEV;
Jens Axboed708f0d2017-03-29 11:25:48 -0600205 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800206 }
207 blkg_get(blkg->parent);
208 }
209
Tejun Heodb613672013-05-14 13:52:31 -0700210 /* invoke per-policy init */
211 for (i = 0; i < BLKCG_MAX_POLS; i++) {
212 struct blkcg_policy *pol = blkcg_policy[i];
213
214 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700215 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700216 }
217
218 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700219 spin_lock(&blkcg->lock);
220 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
221 if (likely(!ret)) {
222 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
223 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800224
225 for (i = 0; i < BLKCG_MAX_POLS; i++) {
226 struct blkcg_policy *pol = blkcg_policy[i];
227
228 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700229 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800230 }
Tejun Heoa6371202012-04-19 16:29:24 -0700231 }
Tejun Heof427d902013-01-09 08:05:12 -0800232 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700233 spin_unlock(&blkcg->lock);
234
Tejun Heoec13b1d2015-05-22 17:13:19 -0400235 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700236 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700237
Tejun Heo3c547862013-01-09 08:05:10 -0800238 /* @blkg failed fully initialized, use the usual release path */
239 blkg_put(blkg);
240 return ERR_PTR(ret);
241
Jens Axboed708f0d2017-03-29 11:25:48 -0600242err_put_congested:
243 wb_congested_put(wb_congested);
244err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700245 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800246err_free_blkg:
Jens Axboed708f0d2017-03-29 11:25:48 -0600247 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800248 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500249}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700250
Tejun Heo86cde6b2013-01-09 08:05:10 -0800251/**
Dennis Zhoub9789622018-12-05 12:10:27 -0500252 * __blkg_lookup_create - lookup blkg, try to create one if not there
Tejun Heo86cde6b2013-01-09 08:05:10 -0800253 * @blkcg: blkcg of interest
254 * @q: request_queue of interest
255 *
256 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800257 * create one. blkg creation is performed recursively from blkcg_root such
258 * that all non-root blkg's have access to the parent blkg. This function
259 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800260 *
Dennis Zhoub5f29542018-11-01 17:24:10 -0400261 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
262 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
263 * dead and bypassing, returns ERR_PTR(-EBUSY).
Tejun Heo86cde6b2013-01-09 08:05:10 -0800264 */
Dennis Zhoub9789622018-12-05 12:10:27 -0500265struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
266 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700267{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800268 struct blkcg_gq *blkg;
269
270 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700271 lockdep_assert_held(&q->queue_lock);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800272
Tejun Heo86cde6b2013-01-09 08:05:10 -0800273 blkg = __blkg_lookup(blkcg, q, true);
274 if (blkg)
275 return blkg;
276
Tejun Heo3c547862013-01-09 08:05:10 -0800277 /*
278 * Create blkgs walking down from blkcg_root to @blkcg, so that all
Dennis Zhoub5f29542018-11-01 17:24:10 -0400279 * non-root blkgs have access to their parents.
Tejun Heo3c547862013-01-09 08:05:10 -0800280 */
281 while (true) {
282 struct blkcg *pos = blkcg;
283 struct blkcg *parent = blkcg_parent(blkcg);
284
Dennis Zhoub5f29542018-11-01 17:24:10 -0400285 while (parent && !__blkg_lookup(parent, q, false)) {
Tejun Heo3c547862013-01-09 08:05:10 -0800286 pos = parent;
287 parent = blkcg_parent(parent);
288 }
289
Jens Axboed708f0d2017-03-29 11:25:48 -0600290 blkg = blkg_create(pos, q, NULL);
Dennis Zhoub5f29542018-11-01 17:24:10 -0400291 if (pos == blkcg || IS_ERR(blkg))
Tejun Heo3c547862013-01-09 08:05:10 -0800292 return blkg;
293 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700294}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500295
Dennis Zhoub9789622018-12-05 12:10:27 -0500296/**
297 * blkg_lookup_create - find or create a blkg
298 * @blkcg: target block cgroup
299 * @q: target request_queue
300 *
301 * This looks up or creates the blkg representing the unique pair
302 * of the blkcg and the request_queue.
303 */
304struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
305 struct request_queue *q)
306{
307 struct blkcg_gq *blkg = blkg_lookup(blkcg, q);
308
309 if (unlikely(!blkg)) {
310 spin_lock_irq(&q->queue_lock);
311 blkg = __blkg_lookup_create(blkcg, q);
312 spin_unlock_irq(&q->queue_lock);
313 }
314
315 return blkg;
316}
317
Tejun Heo3c798392012-04-16 13:57:25 -0700318static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800319{
Tejun Heo3c798392012-04-16 13:57:25 -0700320 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700321 struct blkcg_gq *parent = blkg->parent;
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -0400322 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800323
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700324 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800325 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800326
327 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800328 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800329 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700330
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -0400331 for (i = 0; i < BLKCG_MAX_POLS; i++) {
332 struct blkcg_policy *pol = blkcg_policy[i];
333
334 if (blkg->pd[i] && pol->pd_offline_fn)
335 pol->pd_offline_fn(blkg->pd[i]);
336 }
337
Tejun Heo77ea7332015-08-18 14:55:24 -0700338 if (parent) {
339 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
340 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
341 }
342
Tejun Heof427d902013-01-09 08:05:12 -0800343 blkg->online = false;
344
Tejun Heoa6371202012-04-19 16:29:24 -0700345 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800346 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800347 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800348
Tejun Heo03aa2642012-03-05 13:15:19 -0800349 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700350 * Both setting lookup hint to and clearing it from @blkg are done
351 * under queue_lock. If it's not pointing to @blkg now, it never
352 * will. Hint assignment itself can race safely.
353 */
Paul E. McKenneyec6c676a2014-02-17 13:35:57 -0800354 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700355 rcu_assign_pointer(blkcg->blkg_hint, NULL);
356
357 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800358 * Put the reference taken at the time of creation so that when all
359 * queues are gone, group can be destroyed.
360 */
Dennis Zhoub5f29542018-11-01 17:24:10 -0400361 blkg_put(blkg);
Tejun Heo03aa2642012-03-05 13:15:19 -0800362}
363
Tejun Heo9f13ef62012-03-05 13:15:21 -0800364/**
365 * blkg_destroy_all - destroy all blkgs associated with a request_queue
366 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800367 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700368 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800369 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700370static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800371{
Tejun Heo3c798392012-04-16 13:57:25 -0700372 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800373
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700374 spin_lock_irq(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800375 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700376 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800377
Tejun Heo9f13ef62012-03-05 13:15:21 -0800378 spin_lock(&blkcg->lock);
379 blkg_destroy(blkg);
380 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800381 }
Tejun Heo6fe810b2015-09-05 15:47:36 -0400382
383 q->root_blkg = NULL;
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700384 spin_unlock_irq(&q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800385}
386
Tejun Heo2a4fd072013-05-14 13:52:31 -0700387/*
Dennis Zhoub5f29542018-11-01 17:24:10 -0400388 * A group is RCU protected, but having an rcu lock does not mean that one
389 * can access all the fields of blkg and assume these are valid. For
390 * example, don't try to follow throtl_data and request queue links.
391 *
392 * Having a reference to blkg under an rcu allows accesses to only values
393 * local to groups like group stats and group rate limits.
394 */
395void __blkg_release_rcu(struct rcu_head *rcu_head)
396{
397 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
398
399 /* release the blkcg and parent blkg refs this blkg has been holding */
400 css_put(&blkg->blkcg->css);
401 if (blkg->parent)
402 blkg_put(blkg->parent);
403
404 wb_congested_put(blkg->wb_congested);
405
406 blkg_free(blkg);
407}
408EXPORT_SYMBOL_GPL(__blkg_release_rcu);
409
Tejun Heo182446d2013-08-08 20:11:24 -0400410static int blkcg_reset_stats(struct cgroup_subsys_state *css,
411 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700412{
Tejun Heo182446d2013-08-08 20:11:24 -0400413 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700414 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700415 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700416
Tejun Heo838f13b2015-07-09 16:39:47 -0400417 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700418 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800419
420 /*
421 * Note that stat reset is racy - it doesn't synchronize against
422 * stat updates. This is a debug feature which shouldn't exist
423 * anyway. If you get hit by a race, retry.
424 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800425 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700426 blkg_rwstat_reset(&blkg->stat_bytes);
427 blkg_rwstat_reset(&blkg->stat_ios);
428
Tejun Heo8bd435b2012-04-13 13:11:28 -0700429 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700430 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800431
Tejun Heoa9520cd2015-08-18 14:55:14 -0700432 if (blkg->pd[i] && pol->pd_reset_stats_fn)
433 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700434 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700435 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400436
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700437 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700438 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700439 return 0;
440}
441
Tejun Heodd165eb2015-08-18 14:55:33 -0700442const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700443{
Tejun Heod3d32e62012-04-01 14:38:42 -0700444 /* some drivers (floppy) instantiate a queue w/o disk registered */
Jan Karadc3b17c2017-02-02 15:56:50 +0100445 if (blkg->q->backing_dev_info->dev)
446 return dev_name(blkg->q->backing_dev_info->dev);
Tejun Heod3d32e62012-04-01 14:38:42 -0700447 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700448}
449
Tejun Heod3d32e62012-04-01 14:38:42 -0700450/**
451 * blkcg_print_blkgs - helper for printing per-blkg data
452 * @sf: seq_file to print to
453 * @blkcg: blkcg of interest
454 * @prfill: fill function to print out a blkg
455 * @pol: policy in question
456 * @data: data to be passed to @prfill
457 * @show_total: to print out sum of prfill return values or not
458 *
459 * This function invokes @prfill on each blkg of @blkcg if pd for the
460 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800461 * policy data and @data and the matching queue lock held. If @show_total
462 * is %true, the sum of the return values from @prfill is printed with
463 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700464 *
465 * This is to be used to construct print functions for
466 * cftype->read_seq_string method.
467 */
Tejun Heo3c798392012-04-16 13:57:25 -0700468void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700469 u64 (*prfill)(struct seq_file *,
470 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700471 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700472 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400473{
Tejun Heo3c798392012-04-16 13:57:25 -0700474 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700475 u64 total = 0;
476
Tejun Heo810ecfa2013-01-09 08:05:13 -0800477 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800478 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700479 spin_lock_irq(&blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700480 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700481 total += prfill(sf, blkg->pd[pol->plid], data);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700482 spin_unlock_irq(&blkg->q->queue_lock);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800483 }
484 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700485
486 if (show_total)
487 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
488}
Tejun Heo829fdb52012-04-01 14:38:43 -0700489EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700490
491/**
492 * __blkg_prfill_u64 - prfill helper for a single u64 value
493 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700494 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700495 * @v: value to print
496 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700497 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700498 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700499u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700500{
Tejun Heof95a04a2012-04-16 13:57:26 -0700501 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700502
503 if (!dname)
504 return 0;
505
506 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
507 return v;
508}
Tejun Heo829fdb52012-04-01 14:38:43 -0700509EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700510
511/**
512 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
513 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700514 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700515 * @rwstat: rwstat to print
516 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700517 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700518 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700519u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700520 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700521{
522 static const char *rwstr[] = {
523 [BLKG_RWSTAT_READ] = "Read",
524 [BLKG_RWSTAT_WRITE] = "Write",
525 [BLKG_RWSTAT_SYNC] = "Sync",
526 [BLKG_RWSTAT_ASYNC] = "Async",
Tejun Heo636620b2018-07-18 04:47:41 -0700527 [BLKG_RWSTAT_DISCARD] = "Discard",
Tejun Heod3d32e62012-04-01 14:38:42 -0700528 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700529 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700530 u64 v;
531 int i;
532
533 if (!dname)
534 return 0;
535
536 for (i = 0; i < BLKG_RWSTAT_NR; i++)
537 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700538 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700539
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700540 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
Tejun Heo636620b2018-07-18 04:47:41 -0700541 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]) +
542 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700543 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
544 return v;
545}
Tejun Heob50da392013-01-09 08:05:12 -0800546EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700547
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700548/**
549 * blkg_prfill_stat - prfill callback for blkg_stat
550 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700551 * @pd: policy private data of interest
552 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700553 *
554 * prfill callback for printing a blkg_stat.
555 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700556u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700557{
Tejun Heof95a04a2012-04-16 13:57:26 -0700558 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700559}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700560EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700561
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700562/**
563 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
564 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700565 * @pd: policy private data of interest
566 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700567 *
568 * prfill callback for printing a blkg_rwstat.
569 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700570u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
571 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700572{
Tejun Heof95a04a2012-04-16 13:57:26 -0700573 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700574
Tejun Heof95a04a2012-04-16 13:57:26 -0700575 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700576}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700577EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700578
Tejun Heo77ea7332015-08-18 14:55:24 -0700579static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
580 struct blkg_policy_data *pd, int off)
581{
582 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
583
584 return __blkg_prfill_rwstat(sf, pd, &rwstat);
585}
586
587/**
588 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
589 * @sf: seq_file to print to
590 * @v: unused
591 *
592 * To be used as cftype->seq_show to print blkg->stat_bytes.
593 * cftype->private must be set to the blkcg_policy.
594 */
595int blkg_print_stat_bytes(struct seq_file *sf, void *v)
596{
597 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
598 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
599 offsetof(struct blkcg_gq, stat_bytes), true);
600 return 0;
601}
602EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
603
604/**
605 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
606 * @sf: seq_file to print to
607 * @v: unused
608 *
609 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
610 * must be set to the blkcg_policy.
611 */
612int blkg_print_stat_ios(struct seq_file *sf, void *v)
613{
614 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
615 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
616 offsetof(struct blkcg_gq, stat_ios), true);
617 return 0;
618}
619EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
620
621static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
622 struct blkg_policy_data *pd,
623 int off)
624{
625 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
626 NULL, off);
627 return __blkg_prfill_rwstat(sf, pd, &rwstat);
628}
629
630/**
631 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
632 * @sf: seq_file to print to
633 * @v: unused
634 */
635int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
636{
637 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
638 blkg_prfill_rwstat_field_recursive,
639 (void *)seq_cft(sf)->private,
640 offsetof(struct blkcg_gq, stat_bytes), true);
641 return 0;
642}
643EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
644
645/**
646 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
647 * @sf: seq_file to print to
648 * @v: unused
649 */
650int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
651{
652 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
653 blkg_prfill_rwstat_field_recursive,
654 (void *)seq_cft(sf)->private,
655 offsetof(struct blkcg_gq, stat_ios), true);
656 return 0;
657}
658EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
659
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700660/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800661 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700662 * @blkg: blkg of interest
663 * @pol: blkcg_policy which contains the blkg_stat
664 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800665 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700666 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
667 * online descendants and their aux counts. The caller must be holding the
668 * queue lock for online tests.
669 *
670 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
671 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800672 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700673u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
674 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800675{
Tejun Heo16b3de62013-01-09 08:05:12 -0800676 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400677 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400678 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800679
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700680 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800681
Tejun Heo16b3de62013-01-09 08:05:12 -0800682 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700683 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
684 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800685
Tejun Heof12c74c2015-08-18 14:55:23 -0700686 if (!pos_blkg->online)
687 continue;
688
689 if (pol)
690 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
691 else
692 stat = (void *)blkg + off;
693
694 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800695 }
696 rcu_read_unlock();
697
698 return sum;
699}
700EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
701
702/**
703 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700704 * @blkg: blkg of interest
705 * @pol: blkcg_policy which contains the blkg_rwstat
706 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800707 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700708 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
709 * online descendants and their aux counts. The caller must be holding the
710 * queue lock for online tests.
711 *
712 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
713 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800714 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700715struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
716 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800717{
Tejun Heo16b3de62013-01-09 08:05:12 -0800718 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400719 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400720 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800721 int i;
722
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700723 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800724
Tejun Heo16b3de62013-01-09 08:05:12 -0800725 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700726 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700727 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800728
729 if (!pos_blkg->online)
730 continue;
731
Tejun Heof12c74c2015-08-18 14:55:23 -0700732 if (pol)
733 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
734 else
735 rwstat = (void *)pos_blkg + off;
736
Tejun Heo16b3de62013-01-09 08:05:12 -0800737 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700738 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
739 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
740 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800741 }
742 rcu_read_unlock();
743
744 return sum;
745}
746EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
747
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600748/* Performs queue bypass and policy enabled checks then looks up blkg. */
749static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
750 const struct blkcg_policy *pol,
751 struct request_queue *q)
752{
753 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700754 lockdep_assert_held(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600755
756 if (!blkcg_policy_enabled(q, pol))
757 return ERR_PTR(-EOPNOTSUPP);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600758 return __blkg_lookup(blkcg, q, true /* update_hint */);
759}
760
Tejun Heo16b3de62013-01-09 08:05:12 -0800761/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700762 * blkg_conf_prep - parse and prepare for per-blkg config update
763 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700764 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700765 * @input: input string
766 * @ctx: blkg_conf_ctx to be filled
767 *
768 * Parse per-blkg config update from @input and initialize @ctx with the
Tejun Heo36aa9e52015-08-18 14:55:31 -0700769 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
770 * part of @input following MAJ:MIN. This function returns with RCU read
771 * lock and queue lock held and must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700772 */
Tejun Heo3c798392012-04-16 13:57:25 -0700773int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700774 char *input, struct blkg_conf_ctx *ctx)
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700775 __acquires(rcu) __acquires(&disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800776{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700777 struct gendisk *disk;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600778 struct request_queue *q;
Tejun Heo3c798392012-04-16 13:57:25 -0700779 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700780 unsigned int major, minor;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700781 int key_len, part, ret;
782 char *body;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800783
Tejun Heo36aa9e52015-08-18 14:55:31 -0700784 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
Tejun Heo726fa692012-04-01 14:38:43 -0700785 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700786
Tejun Heo36aa9e52015-08-18 14:55:31 -0700787 body = input + key_len;
788 if (!isspace(*body))
789 return -EINVAL;
790 body = skip_spaces(body);
791
Tejun Heo726fa692012-04-01 14:38:43 -0700792 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400793 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700794 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400795 if (part) {
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600796 ret = -ENODEV;
797 goto fail;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400798 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800799
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600800 q = disk->queue;
801
Tejun Heoe56da7e2012-03-05 13:15:07 -0800802 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700803 spin_lock_irq(&q->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700804
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600805 blkg = blkg_lookup_check(blkcg, pol, q);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800806 if (IS_ERR(blkg)) {
807 ret = PTR_ERR(blkg);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600808 goto fail_unlock;
Vivek Goyal062a6442010-09-15 17:06:33 -0400809 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800810
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600811 if (blkg)
812 goto success;
813
814 /*
815 * Create blkgs walking down from blkcg_root to @blkcg, so that all
816 * non-root blkgs have access to their parents.
817 */
818 while (true) {
819 struct blkcg *pos = blkcg;
820 struct blkcg *parent;
821 struct blkcg_gq *new_blkg;
822
823 parent = blkcg_parent(blkcg);
824 while (parent && !__blkg_lookup(parent, q, false)) {
825 pos = parent;
826 parent = blkcg_parent(parent);
827 }
828
829 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700830 spin_unlock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600831 rcu_read_unlock();
832
833 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
834 if (unlikely(!new_blkg)) {
835 ret = -ENOMEM;
836 goto fail;
837 }
838
839 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700840 spin_lock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600841
842 blkg = blkg_lookup_check(pos, pol, q);
843 if (IS_ERR(blkg)) {
844 ret = PTR_ERR(blkg);
845 goto fail_unlock;
846 }
847
848 if (blkg) {
849 blkg_free(new_blkg);
850 } else {
851 blkg = blkg_create(pos, q, new_blkg);
852 if (unlikely(IS_ERR(blkg))) {
853 ret = PTR_ERR(blkg);
854 goto fail_unlock;
855 }
856 }
857
858 if (pos == blkcg)
859 goto success;
860 }
861success:
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700862 ctx->disk = disk;
863 ctx->blkg = blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700864 ctx->body = body;
Tejun Heo726fa692012-04-01 14:38:43 -0700865 return 0;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600866
867fail_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700868 spin_unlock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600869 rcu_read_unlock();
870fail:
Jan Kara9df6c292018-02-26 13:01:39 +0100871 put_disk_and_module(disk);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600872 /*
873 * If queue was bypassing, we should retry. Do so after a
874 * short msleep(). It isn't strictly necessary but queue
875 * can be bypassing for some time and it's always nice to
876 * avoid busy looping.
877 */
878 if (ret == -EBUSY) {
879 msleep(10);
880 ret = restart_syscall();
881 }
882 return ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800883}
884
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700885/**
886 * blkg_conf_finish - finish up per-blkg config update
887 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
888 *
889 * Finish up after per-blkg config update. This function must be paired
890 * with blkg_conf_prep().
891 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700892void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700893 __releases(&ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800894{
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700895 spin_unlock_irq(&ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700896 rcu_read_unlock();
Jan Kara9df6c292018-02-26 13:01:39 +0100897 put_disk_and_module(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800898}
899
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700900static int blkcg_print_stat(struct seq_file *sf, void *v)
901{
902 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
903 struct blkcg_gq *blkg;
904
905 rcu_read_lock();
906
907 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
908 const char *dname;
Josef Bacik903d23f2018-07-03 11:14:52 -0400909 char *buf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700910 struct blkg_rwstat rwstat;
Tejun Heo636620b2018-07-18 04:47:41 -0700911 u64 rbytes, wbytes, rios, wios, dbytes, dios;
Josef Bacik903d23f2018-07-03 11:14:52 -0400912 size_t size = seq_get_buf(sf, &buf), off = 0;
913 int i;
914 bool has_stats = false;
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700915
916 dname = blkg_dev_name(blkg);
917 if (!dname)
918 continue;
919
Josef Bacik903d23f2018-07-03 11:14:52 -0400920 /*
921 * Hooray string manipulation, count is the size written NOT
922 * INCLUDING THE \0, so size is now count+1 less than what we
923 * had before, but we want to start writing the next bit from
924 * the \0 so we only add count to buf.
925 */
926 off += scnprintf(buf+off, size-off, "%s ", dname);
927
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700928 spin_lock_irq(&blkg->q->queue_lock);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700929
930 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
931 offsetof(struct blkcg_gq, stat_bytes));
932 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
933 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heo636620b2018-07-18 04:47:41 -0700934 dbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700935
936 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
937 offsetof(struct blkcg_gq, stat_ios));
938 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
939 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heo636620b2018-07-18 04:47:41 -0700940 dios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700941
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700942 spin_unlock_irq(&blkg->q->queue_lock);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700943
Josef Bacik903d23f2018-07-03 11:14:52 -0400944 if (rbytes || wbytes || rios || wios) {
945 has_stats = true;
946 off += scnprintf(buf+off, size-off,
Tejun Heo636620b2018-07-18 04:47:41 -0700947 "rbytes=%llu wbytes=%llu rios=%llu wios=%llu dbytes=%llu dios=%llu",
948 rbytes, wbytes, rios, wios,
949 dbytes, dios);
Josef Bacik903d23f2018-07-03 11:14:52 -0400950 }
951
952 if (!blkcg_debug_stats)
953 goto next;
954
Josef Bacikd09d8df2018-07-03 11:14:55 -0400955 if (atomic_read(&blkg->use_delay)) {
956 has_stats = true;
957 off += scnprintf(buf+off, size-off,
958 " use_delay=%d delay_nsec=%llu",
959 atomic_read(&blkg->use_delay),
960 (unsigned long long)atomic64_read(&blkg->delay_nsec));
961 }
962
Josef Bacik903d23f2018-07-03 11:14:52 -0400963 for (i = 0; i < BLKCG_MAX_POLS; i++) {
964 struct blkcg_policy *pol = blkcg_policy[i];
965 size_t written;
966
967 if (!blkg->pd[i] || !pol->pd_stat_fn)
968 continue;
969
970 written = pol->pd_stat_fn(blkg->pd[i], buf+off, size-off);
971 if (written)
972 has_stats = true;
973 off += written;
974 }
975next:
976 if (has_stats) {
977 off += scnprintf(buf+off, size-off, "\n");
978 seq_commit(sf, off);
979 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700980 }
981
982 rcu_read_unlock();
983 return 0;
984}
985
Bart Van Asschee1f3b942016-06-14 17:04:32 +0200986static struct cftype blkcg_files[] = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700987 {
988 .name = "stat",
Tejun Heoca0752c2015-10-22 09:48:37 +0900989 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700990 .seq_show = blkcg_print_stat,
991 },
992 { } /* terminate */
993};
994
Bart Van Asschee1f3b942016-06-14 17:04:32 +0200995static struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500996 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200997 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700998 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500999 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001000 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -05001001};
1002
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001003/*
1004 * blkcg destruction is a three-stage process.
1005 *
1006 * 1. Destruction starts. The blkcg_css_offline() callback is invoked
1007 * which offlines writeback. Here we tie the next stage of blkg destruction
1008 * to the completion of writeback associated with the blkcg. This lets us
1009 * avoid punting potentially large amounts of outstanding writeback to root
1010 * while maintaining any ongoing policies. The next stage is triggered when
1011 * the nr_cgwbs count goes to zero.
1012 *
1013 * 2. When the nr_cgwbs count goes to zero, blkcg_destroy_blkgs() is called
1014 * and handles the destruction of blkgs. Here the css reference held by
1015 * the blkg is put back eventually allowing blkcg_css_free() to be called.
1016 * This work may occur in cgwb_release_workfn() on the cgwb_release
1017 * workqueue. Any submitted ios that fail to get the blkg ref will be
1018 * punted to the root_blkg.
1019 *
1020 * 3. Once the blkcg ref count goes to zero, blkcg_css_free() is called.
1021 * This finally frees the blkcg.
1022 */
1023
Tejun Heo9f13ef62012-03-05 13:15:21 -08001024/**
Tejun Heo92fb9742012-11-19 08:13:38 -08001025 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -04001026 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -08001027 *
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001028 * This function is called when @css is about to go away. Here the cgwbs are
1029 * offlined first and only once writeback associated with the blkcg has
1030 * finished do we start step 2 (see above).
Tejun Heo9f13ef62012-03-05 13:15:21 -08001031 */
Tejun Heoeb954192013-08-08 20:11:23 -04001032static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001033{
Tejun Heoeb954192013-08-08 20:11:23 -04001034 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001035
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001036 /* this prevents anyone from attaching or migrating to this blkcg */
1037 wb_blkcg_offline(blkcg);
1038
1039 /* put the base cgwb reference allowing step 2 to be triggered */
1040 blkcg_cgwb_put(blkcg);
1041}
1042
1043/**
1044 * blkcg_destroy_blkgs - responsible for shooting down blkgs
1045 * @blkcg: blkcg of interest
1046 *
1047 * blkgs should be removed while holding both q and blkcg locks. As blkcg lock
1048 * is nested inside q lock, this function performs reverse double lock dancing.
1049 * Destroying the blkgs releases the reference held on the blkcg's css allowing
1050 * blkcg_css_free to eventually be called.
1051 *
1052 * This is the blkcg counterpart of ioc_release_fn().
1053 */
1054void blkcg_destroy_blkgs(struct blkcg *blkcg)
1055{
Tejun Heo9f13ef62012-03-05 13:15:21 -08001056 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001057
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001058 while (!hlist_empty(&blkcg->blkg_list)) {
1059 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1060 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -08001061 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001062
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001063 if (spin_trylock(&q->queue_lock)) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001064 blkg_destroy(blkg);
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001065 spin_unlock(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001066 } else {
1067 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001068 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +02001069 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001070 }
Tejun Heo9f13ef62012-03-05 13:15:21 -08001071 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001072
Tejun Heo9f13ef62012-03-05 13:15:21 -08001073 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001074}
1075
Tejun Heoeb954192013-08-08 20:11:23 -04001076static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -08001077{
Tejun Heoeb954192013-08-08 20:11:23 -04001078 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -07001079 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -08001080
Tejun Heo7876f932015-07-09 16:39:49 -04001081 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001082
Tejun Heo7876f932015-07-09 16:39:49 -04001083 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -04001084
Tejun Heobc915e62015-08-18 14:55:08 -07001085 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001086 if (blkcg->cpd[i])
1087 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1088
1089 mutex_unlock(&blkcg_pol_mutex);
1090
Tejun Heobc915e62015-08-18 14:55:08 -07001091 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001092}
1093
Tejun Heoeb954192013-08-08 20:11:23 -04001094static struct cgroup_subsys_state *
1095blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001096{
Tejun Heo3c798392012-04-16 13:57:25 -07001097 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001098 struct cgroup_subsys_state *ret;
1099 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001100
Tejun Heo7876f932015-07-09 16:39:49 -04001101 mutex_lock(&blkcg_pol_mutex);
1102
Tejun Heoeb954192013-08-08 20:11:23 -04001103 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -07001104 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -07001105 } else {
1106 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1107 if (!blkcg) {
1108 ret = ERR_PTR(-ENOMEM);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001109 goto unlock;
Tejun Heobc915e62015-08-18 14:55:08 -07001110 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001111 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001112
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001113 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1114 struct blkcg_policy *pol = blkcg_policy[i];
1115 struct blkcg_policy_data *cpd;
1116
1117 /*
1118 * If the policy hasn't been attached yet, wait for it
1119 * to be attached before doing anything else. Otherwise,
1120 * check if the policy requires any specific per-cgroup
1121 * data: if it does, allocate and initialize it.
1122 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001123 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001124 continue;
1125
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001126 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001127 if (!cpd) {
1128 ret = ERR_PTR(-ENOMEM);
1129 goto free_pd_blkcg;
1130 }
Tejun Heo81437642015-08-18 14:55:15 -07001131 blkcg->cpd[i] = cpd;
1132 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001133 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001134 if (pol->cpd_init_fn)
1135 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001136 }
1137
Vivek Goyal31e4c282009-12-03 12:59:42 -05001138 spin_lock_init(&blkcg->lock);
Tejun Heoe00f4f42016-11-21 18:03:32 -05001139 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001140 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -04001141#ifdef CONFIG_CGROUP_WRITEBACK
1142 INIT_LIST_HEAD(&blkcg->cgwb_list);
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001143 refcount_set(&blkcg->cgwb_refcnt, 1);
Tejun Heo52ebea72015-05-22 17:13:37 -04001144#endif
Tejun Heo7876f932015-07-09 16:39:49 -04001145 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1146
1147 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001148 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001149
1150free_pd_blkcg:
1151 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001152 if (blkcg->cpd[i])
1153 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001154
1155 if (blkcg != &blkcg_root)
1156 kfree(blkcg);
1157unlock:
Tejun Heo7876f932015-07-09 16:39:49 -04001158 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001159 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001160}
1161
Tejun Heo5efd6112012-03-05 13:15:12 -08001162/**
1163 * blkcg_init_queue - initialize blkcg part of request queue
1164 * @q: request_queue to initialize
1165 *
1166 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1167 * part of new request_queue @q.
1168 *
1169 * RETURNS:
1170 * 0 on success, -errno on failure.
1171 */
1172int blkcg_init_queue(struct request_queue *q)
1173{
Jens Axboed708f0d2017-03-29 11:25:48 -06001174 struct blkcg_gq *new_blkg, *blkg;
1175 bool preloaded;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001176 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001177
Jens Axboed708f0d2017-03-29 11:25:48 -06001178 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1179 if (!new_blkg)
1180 return -ENOMEM;
1181
1182 preloaded = !radix_tree_preload(GFP_KERNEL);
1183
Jiang Biaobea54882018-04-19 12:04:26 +08001184 /* Make sure the root blkg exists. */
Tejun Heoec13b1d2015-05-22 17:13:19 -04001185 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001186 spin_lock_irq(&q->queue_lock);
Jens Axboed708f0d2017-03-29 11:25:48 -06001187 blkg = blkg_create(&blkcg_root, q, new_blkg);
Jiang Biao901932a2018-04-19 12:06:09 +08001188 if (IS_ERR(blkg))
1189 goto err_unlock;
1190 q->root_blkg = blkg;
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001191 spin_unlock_irq(&q->queue_lock);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001192 rcu_read_unlock();
1193
Jens Axboed708f0d2017-03-29 11:25:48 -06001194 if (preloaded)
1195 radix_tree_preload_end();
1196
Josef Bacikd7067512018-07-03 11:15:01 -04001197 ret = blk_iolatency_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001198 if (ret)
1199 goto err_destroy_all;
Josef Bacikd7067512018-07-03 11:15:01 -04001200
Tejun Heoec13b1d2015-05-22 17:13:19 -04001201 ret = blk_throtl_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001202 if (ret)
1203 goto err_destroy_all;
1204 return 0;
Jiang Biao901932a2018-04-19 12:06:09 +08001205
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001206err_destroy_all:
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001207 blkg_destroy_all(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001208 return ret;
Jiang Biao901932a2018-04-19 12:06:09 +08001209err_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001210 spin_unlock_irq(&q->queue_lock);
Jiang Biao901932a2018-04-19 12:06:09 +08001211 rcu_read_unlock();
1212 if (preloaded)
1213 radix_tree_preload_end();
1214 return PTR_ERR(blkg);
Tejun Heo5efd6112012-03-05 13:15:12 -08001215}
1216
1217/**
1218 * blkcg_drain_queue - drain blkcg part of request_queue
1219 * @q: request_queue to drain
1220 *
1221 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1222 */
1223void blkcg_drain_queue(struct request_queue *q)
1224{
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001225 lockdep_assert_held(&q->queue_lock);
Tejun Heo5efd6112012-03-05 13:15:12 -08001226
Tejun Heo0b462c82014-07-05 18:43:21 -04001227 /*
1228 * @q could be exiting and already have destroyed all blkgs as
1229 * indicated by NULL root_blkg. If so, don't confuse policies.
1230 */
1231 if (!q->root_blkg)
1232 return;
1233
Tejun Heo5efd6112012-03-05 13:15:12 -08001234 blk_throtl_drain(q);
1235}
1236
1237/**
1238 * blkcg_exit_queue - exit and release blkcg part of request_queue
1239 * @q: request_queue being released
1240 *
1241 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1242 */
1243void blkcg_exit_queue(struct request_queue *q)
1244{
Tejun Heo3c96cb32012-04-13 13:11:34 -07001245 blkg_destroy_all(q);
Tejun Heo5efd6112012-03-05 13:15:12 -08001246 blk_throtl_exit(q);
1247}
1248
Vivek Goyal31e4c282009-12-03 12:59:42 -05001249/*
1250 * We cannot support shared io contexts, as we have no mean to support
1251 * two tasks with the same ioc in two different groups without major rework
1252 * of the main cic data structures. For now we allow a task to change
1253 * its cgroup only if it's the only owner of its ioc.
1254 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001255static int blkcg_can_attach(struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001256{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001257 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001258 struct cgroup_subsys_state *dst_css;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001259 struct io_context *ioc;
1260 int ret = 0;
1261
1262 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001263 cgroup_taskset_for_each(task, dst_css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001264 task_lock(task);
1265 ioc = task->io_context;
1266 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1267 ret = -EINVAL;
1268 task_unlock(task);
1269 if (ret)
1270 break;
1271 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001272 return ret;
1273}
1274
Tejun Heo69d7fde2015-08-18 14:55:36 -07001275static void blkcg_bind(struct cgroup_subsys_state *root_css)
1276{
1277 int i;
1278
1279 mutex_lock(&blkcg_pol_mutex);
1280
1281 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1282 struct blkcg_policy *pol = blkcg_policy[i];
1283 struct blkcg *blkcg;
1284
1285 if (!pol || !pol->cpd_bind_fn)
1286 continue;
1287
1288 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1289 if (blkcg->cpd[pol->plid])
1290 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1291 }
1292 mutex_unlock(&blkcg_pol_mutex);
1293}
1294
Josef Bacikd09d8df2018-07-03 11:14:55 -04001295static void blkcg_exit(struct task_struct *tsk)
1296{
1297 if (tsk->throttle_queue)
1298 blk_put_queue(tsk->throttle_queue);
1299 tsk->throttle_queue = NULL;
1300}
1301
Tejun Heoc165b3e2015-08-18 14:55:29 -07001302struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001303 .css_alloc = blkcg_css_alloc,
1304 .css_offline = blkcg_css_offline,
1305 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001306 .can_attach = blkcg_can_attach,
Tejun Heo69d7fde2015-08-18 14:55:36 -07001307 .bind = blkcg_bind,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001308 .dfl_cftypes = blkcg_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001309 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001310 .legacy_name = "blkio",
Josef Bacikd09d8df2018-07-03 11:14:55 -04001311 .exit = blkcg_exit,
Tejun Heo1ced9532014-07-08 18:02:57 -04001312#ifdef CONFIG_MEMCG
1313 /*
1314 * This ensures that, if available, memcg is automatically enabled
1315 * together on the default hierarchy so that the owner cgroup can
1316 * be retrieved from writeback pages.
1317 */
1318 .depends_on = 1 << memory_cgrp_id,
1319#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001320};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001321EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001322
Tejun Heo8bd435b2012-04-13 13:11:28 -07001323/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001324 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1325 * @q: request_queue of interest
1326 * @pol: blkcg policy to activate
1327 *
1328 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1329 * bypass mode to populate its blkgs with policy_data for @pol.
1330 *
1331 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1332 * from IO path. Update of each blkg is protected by both queue and blkcg
1333 * locks so that holding either lock and testing blkcg_policy_enabled() is
1334 * always enough for dereferencing policy data.
1335 *
1336 * The caller is responsible for synchronizing [de]activations and policy
1337 * [un]registerations. Returns 0 on success, -errno on failure.
1338 */
1339int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001340 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001341{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001342 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001343 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001344 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001345
1346 if (blkcg_policy_enabled(q, pol))
1347 return 0;
1348
Jens Axboe344e9ff2018-11-15 12:22:51 -07001349 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001350 blk_mq_freeze_queue(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001351pd_prealloc:
1352 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001353 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001354 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001355 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001356 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001357 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001358 }
1359
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001360 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001361
1362 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001363 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001364
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001365 if (blkg->pd[pol->plid])
1366 continue;
1367
Tejun Heoe00f4f42016-11-21 18:03:32 -05001368 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001369 if (!pd)
1370 swap(pd, pd_prealloc);
1371 if (!pd) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001372 spin_unlock_irq(&q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001373 goto pd_prealloc;
1374 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001375
1376 blkg->pd[pol->plid] = pd;
1377 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001378 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001379 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001380 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001381 }
1382
1383 __set_bit(pol->plid, q->blkcg_pols);
1384 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001385
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001386 spin_unlock_irq(&q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001387out_bypass_end:
Jens Axboe344e9ff2018-11-15 12:22:51 -07001388 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001389 blk_mq_unfreeze_queue(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001390 if (pd_prealloc)
1391 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001392 return ret;
1393}
1394EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1395
1396/**
1397 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1398 * @q: request_queue of interest
1399 * @pol: blkcg policy to deactivate
1400 *
1401 * Deactivate @pol on @q. Follows the same synchronization rules as
1402 * blkcg_activate_policy().
1403 */
1404void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001405 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001406{
Tejun Heo3c798392012-04-16 13:57:25 -07001407 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001408
1409 if (!blkcg_policy_enabled(q, pol))
1410 return;
1411
Jens Axboe344e9ff2018-11-15 12:22:51 -07001412 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001413 blk_mq_freeze_queue(q);
Jens Axboebd166ef2017-01-17 06:03:22 -07001414
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001415 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001416
1417 __clear_bit(pol->plid, q->blkcg_pols);
1418
1419 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo001bea72015-08-18 14:55:11 -07001420 if (blkg->pd[pol->plid]) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001421 if (pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001422 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001423 pol->pd_free_fn(blkg->pd[pol->plid]);
1424 blkg->pd[pol->plid] = NULL;
1425 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001426 }
1427
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001428 spin_unlock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001429
Jens Axboe344e9ff2018-11-15 12:22:51 -07001430 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001431 blk_mq_unfreeze_queue(q);
Tejun Heoa2b16932012-04-13 13:11:33 -07001432}
1433EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1434
1435/**
Tejun Heo3c798392012-04-16 13:57:25 -07001436 * blkcg_policy_register - register a blkcg policy
1437 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001438 *
Tejun Heo3c798392012-04-16 13:57:25 -07001439 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1440 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001441 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001442int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001443{
Tejun Heo06b285b2015-07-09 16:39:50 -04001444 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001445 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001446
Tejun Heo838f13b2015-07-09 16:39:47 -04001447 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001448 mutex_lock(&blkcg_pol_mutex);
1449
Tejun Heo8bd435b2012-04-13 13:11:28 -07001450 /* find an empty slot */
1451 ret = -ENOSPC;
1452 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001453 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001454 break;
Jens Axboe01c5f852018-09-11 10:59:53 -06001455 if (i >= BLKCG_MAX_POLS) {
1456 pr_warn("blkcg_policy_register: BLKCG_MAX_POLS too small\n");
Tejun Heo838f13b2015-07-09 16:39:47 -04001457 goto err_unlock;
Jens Axboe01c5f852018-09-11 10:59:53 -06001458 }
Tejun Heo035d10b2012-03-05 13:15:04 -08001459
weiping zhange8401072017-10-17 23:56:21 +08001460 /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1461 if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1462 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1463 goto err_unlock;
1464
Tejun Heo06b285b2015-07-09 16:39:50 -04001465 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001466 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001467 blkcg_policy[pol->plid] = pol;
1468
1469 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001470 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001471 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1472 struct blkcg_policy_data *cpd;
1473
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001474 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Bart Van Asschebbb427e2016-09-29 08:33:30 -07001475 if (!cpd)
Tejun Heo06b285b2015-07-09 16:39:50 -04001476 goto err_free_cpds;
Tejun Heo06b285b2015-07-09 16:39:50 -04001477
Tejun Heo81437642015-08-18 14:55:15 -07001478 blkcg->cpd[pol->plid] = cpd;
1479 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001480 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001481 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001482 }
1483 }
1484
Tejun Heo838f13b2015-07-09 16:39:47 -04001485 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001486
Tejun Heo8bd435b2012-04-13 13:11:28 -07001487 /* everything is in place, add intf files for the new policy */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001488 if (pol->dfl_cftypes)
1489 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1490 pol->dfl_cftypes));
Tejun Heo880f50e2015-08-18 14:55:30 -07001491 if (pol->legacy_cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001492 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo880f50e2015-08-18 14:55:30 -07001493 pol->legacy_cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001494 mutex_unlock(&blkcg_pol_register_mutex);
1495 return 0;
1496
Tejun Heo06b285b2015-07-09 16:39:50 -04001497err_free_cpds:
weiping zhang58a9edc2017-10-10 22:53:46 +08001498 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001499 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001500 if (blkcg->cpd[pol->plid]) {
1501 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1502 blkcg->cpd[pol->plid] = NULL;
1503 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001504 }
1505 }
1506 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001507err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001508 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001509 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001510 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001511}
Tejun Heo3c798392012-04-16 13:57:25 -07001512EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001513
Tejun Heo8bd435b2012-04-13 13:11:28 -07001514/**
Tejun Heo3c798392012-04-16 13:57:25 -07001515 * blkcg_policy_unregister - unregister a blkcg policy
1516 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001517 *
Tejun Heo3c798392012-04-16 13:57:25 -07001518 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001519 */
Tejun Heo3c798392012-04-16 13:57:25 -07001520void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001521{
Tejun Heo06b285b2015-07-09 16:39:50 -04001522 struct blkcg *blkcg;
1523
Tejun Heo838f13b2015-07-09 16:39:47 -04001524 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001525
Tejun Heo3c798392012-04-16 13:57:25 -07001526 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001527 goto out_unlock;
1528
1529 /* kill the intf files first */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001530 if (pol->dfl_cftypes)
1531 cgroup_rm_cftypes(pol->dfl_cftypes);
Tejun Heo880f50e2015-08-18 14:55:30 -07001532 if (pol->legacy_cftypes)
1533 cgroup_rm_cftypes(pol->legacy_cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001534
Tejun Heo06b285b2015-07-09 16:39:50 -04001535 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001536 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001537
weiping zhang58a9edc2017-10-10 22:53:46 +08001538 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001539 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001540 if (blkcg->cpd[pol->plid]) {
1541 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1542 blkcg->cpd[pol->plid] = NULL;
1543 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001544 }
1545 }
Tejun Heo3c798392012-04-16 13:57:25 -07001546 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001547
Tejun Heobc0d6502012-04-13 13:11:26 -07001548 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001549out_unlock:
1550 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001551}
Tejun Heo3c798392012-04-16 13:57:25 -07001552EXPORT_SYMBOL_GPL(blkcg_policy_unregister);
Josef Bacik903d23f2018-07-03 11:14:52 -04001553
Josef Bacikd09d8df2018-07-03 11:14:55 -04001554/*
1555 * Scale the accumulated delay based on how long it has been since we updated
1556 * the delay. We only call this when we are adding delay, in case it's been a
1557 * while since we added delay, and when we are checking to see if we need to
1558 * delay a task, to account for any delays that may have occurred.
1559 */
1560static void blkcg_scale_delay(struct blkcg_gq *blkg, u64 now)
1561{
1562 u64 old = atomic64_read(&blkg->delay_start);
1563
1564 /*
1565 * We only want to scale down every second. The idea here is that we
1566 * want to delay people for min(delay_nsec, NSEC_PER_SEC) in a certain
1567 * time window. We only want to throttle tasks for recent delay that
1568 * has occurred, in 1 second time windows since that's the maximum
1569 * things can be throttled. We save the current delay window in
1570 * blkg->last_delay so we know what amount is still left to be charged
1571 * to the blkg from this point onward. blkg->last_use keeps track of
1572 * the use_delay counter. The idea is if we're unthrottling the blkg we
1573 * are ok with whatever is happening now, and we can take away more of
1574 * the accumulated delay as we've already throttled enough that
1575 * everybody is happy with their IO latencies.
1576 */
1577 if (time_before64(old + NSEC_PER_SEC, now) &&
1578 atomic64_cmpxchg(&blkg->delay_start, old, now) == old) {
1579 u64 cur = atomic64_read(&blkg->delay_nsec);
1580 u64 sub = min_t(u64, blkg->last_delay, now - old);
1581 int cur_use = atomic_read(&blkg->use_delay);
1582
1583 /*
1584 * We've been unthrottled, subtract a larger chunk of our
1585 * accumulated delay.
1586 */
1587 if (cur_use < blkg->last_use)
1588 sub = max_t(u64, sub, blkg->last_delay >> 1);
1589
1590 /*
1591 * This shouldn't happen, but handle it anyway. Our delay_nsec
1592 * should only ever be growing except here where we subtract out
1593 * min(last_delay, 1 second), but lord knows bugs happen and I'd
1594 * rather not end up with negative numbers.
1595 */
1596 if (unlikely(cur < sub)) {
1597 atomic64_set(&blkg->delay_nsec, 0);
1598 blkg->last_delay = 0;
1599 } else {
1600 atomic64_sub(sub, &blkg->delay_nsec);
1601 blkg->last_delay = cur - sub;
1602 }
1603 blkg->last_use = cur_use;
1604 }
1605}
1606
1607/*
1608 * This is called when we want to actually walk up the hierarchy and check to
1609 * see if we need to throttle, and then actually throttle if there is some
1610 * accumulated delay. This should only be called upon return to user space so
1611 * we're not holding some lock that would induce a priority inversion.
1612 */
1613static void blkcg_maybe_throttle_blkg(struct blkcg_gq *blkg, bool use_memdelay)
1614{
1615 u64 now = ktime_to_ns(ktime_get());
1616 u64 exp;
1617 u64 delay_nsec = 0;
1618 int tok;
1619
1620 while (blkg->parent) {
1621 if (atomic_read(&blkg->use_delay)) {
1622 blkcg_scale_delay(blkg, now);
1623 delay_nsec = max_t(u64, delay_nsec,
1624 atomic64_read(&blkg->delay_nsec));
1625 }
1626 blkg = blkg->parent;
1627 }
1628
1629 if (!delay_nsec)
1630 return;
1631
1632 /*
1633 * Let's not sleep for all eternity if we've amassed a huge delay.
1634 * Swapping or metadata IO can accumulate 10's of seconds worth of
1635 * delay, and we want userspace to be able to do _something_ so cap the
1636 * delays at 1 second. If there's 10's of seconds worth of delay then
1637 * the tasks will be delayed for 1 second for every syscall.
1638 */
1639 delay_nsec = min_t(u64, delay_nsec, 250 * NSEC_PER_MSEC);
1640
1641 /*
1642 * TODO: the use_memdelay flag is going to be for the upcoming psi stuff
1643 * that hasn't landed upstream yet. Once that stuff is in place we need
1644 * to do a psi_memstall_enter/leave if memdelay is set.
1645 */
1646
1647 exp = ktime_add_ns(now, delay_nsec);
1648 tok = io_schedule_prepare();
1649 do {
1650 __set_current_state(TASK_KILLABLE);
1651 if (!schedule_hrtimeout(&exp, HRTIMER_MODE_ABS))
1652 break;
1653 } while (!fatal_signal_pending(current));
1654 io_schedule_finish(tok);
1655}
1656
1657/**
1658 * blkcg_maybe_throttle_current - throttle the current task if it has been marked
1659 *
1660 * This is only called if we've been marked with set_notify_resume(). Obviously
1661 * we can be set_notify_resume() for reasons other than blkcg throttling, so we
1662 * check to see if current->throttle_queue is set and if not this doesn't do
1663 * anything. This should only ever be called by the resume code, it's not meant
1664 * to be called by people willy-nilly as it will actually do the work to
1665 * throttle the task if it is setup for throttling.
1666 */
1667void blkcg_maybe_throttle_current(void)
1668{
1669 struct request_queue *q = current->throttle_queue;
1670 struct cgroup_subsys_state *css;
1671 struct blkcg *blkcg;
1672 struct blkcg_gq *blkg;
1673 bool use_memdelay = current->use_memdelay;
1674
1675 if (!q)
1676 return;
1677
1678 current->throttle_queue = NULL;
1679 current->use_memdelay = false;
1680
1681 rcu_read_lock();
1682 css = kthread_blkcg();
1683 if (css)
1684 blkcg = css_to_blkcg(css);
1685 else
1686 blkcg = css_to_blkcg(task_css(current, io_cgrp_id));
1687
1688 if (!blkcg)
1689 goto out;
1690 blkg = blkg_lookup(blkcg, q);
1691 if (!blkg)
1692 goto out;
Dennis Zhoub5f29542018-11-01 17:24:10 -04001693 blkg = blkg_try_get(blkg);
1694 if (!blkg)
Josef Bacikd09d8df2018-07-03 11:14:55 -04001695 goto out;
1696 rcu_read_unlock();
Josef Bacikd09d8df2018-07-03 11:14:55 -04001697
1698 blkcg_maybe_throttle_blkg(blkg, use_memdelay);
1699 blkg_put(blkg);
Josef Bacikcc7ecc252018-07-31 12:39:03 -04001700 blk_put_queue(q);
Josef Bacikd09d8df2018-07-03 11:14:55 -04001701 return;
1702out:
1703 rcu_read_unlock();
1704 blk_put_queue(q);
1705}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001706
1707/**
1708 * blkcg_schedule_throttle - this task needs to check for throttling
1709 * @q - the request queue IO was submitted on
1710 * @use_memdelay - do we charge this to memory delay for PSI
1711 *
1712 * This is called by the IO controller when we know there's delay accumulated
1713 * for the blkg for this task. We do not pass the blkg because there are places
1714 * we call this that may not have that information, the swapping code for
1715 * instance will only have a request_queue at that point. This set's the
1716 * notify_resume for the task to check and see if it requires throttling before
1717 * returning to user space.
1718 *
1719 * We will only schedule once per syscall. You can call this over and over
1720 * again and it will only do the check once upon return to user space, and only
1721 * throttle once. If the task needs to be throttled again it'll need to be
1722 * re-set at the next time we see the task.
1723 */
1724void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay)
1725{
1726 if (unlikely(current->flags & PF_KTHREAD))
1727 return;
1728
1729 if (!blk_get_queue(q))
1730 return;
1731
1732 if (current->throttle_queue)
1733 blk_put_queue(current->throttle_queue);
1734 current->throttle_queue = q;
1735 if (use_memdelay)
1736 current->use_memdelay = use_memdelay;
1737 set_notify_resume(current);
1738}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001739
1740/**
1741 * blkcg_add_delay - add delay to this blkg
1742 * @now - the current time in nanoseconds
1743 * @delta - how many nanoseconds of delay to add
1744 *
1745 * Charge @delta to the blkg's current delay accumulation. This is used to
1746 * throttle tasks if an IO controller thinks we need more throttling.
1747 */
1748void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta)
1749{
1750 blkcg_scale_delay(blkg, now);
1751 atomic64_add(delta, &blkg->delay_nsec);
1752}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001753
Josef Bacik903d23f2018-07-03 11:14:52 -04001754module_param(blkcg_debug_stats, bool, 0644);
1755MODULE_PARM_DESC(blkcg_debug_stats, "True if you want debug stats, false if not");