blob: bdf87f0c1b1ba6d1c3ca4150c4577498a75f70c9 [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>
Tejun Heo5efd6112012-03-05 13:15:12 -080030#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050031
Divyesh Shah84c124d2010-04-09 08:31:19 +020032#define MAX_KEY_LEN 100
33
Tejun Heo838f13b2015-07-09 16:39:47 -040034/*
35 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
36 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
37 * policy [un]register operations including cgroup file additions /
38 * removals. Putting cgroup file registration outside blkcg_pol_mutex
39 * allows grabbing it from cgroup callbacks.
40 */
41static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070042static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080043
Arianna Avanzinie48453c2015-06-05 23:38:42 +020044struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070045EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050046
Tejun Heo496d5e72015-05-22 17:13:21 -040047struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
48
Tejun Heo3c798392012-04-16 13:57:25 -070049static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080050
Tejun Heo7876f932015-07-09 16:39:49 -040051static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
52
Tejun Heoa2b16932012-04-13 13:11:33 -070053static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070054 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070055{
56 return pol && test_bit(pol->plid, q->blkcg_pols);
57}
58
Tejun Heo03814112012-03-05 13:15:14 -080059/**
60 * blkg_free - free a blkg
61 * @blkg: blkg to free
62 *
63 * Free @blkg which may be partially allocated.
64 */
Tejun Heo3c798392012-04-16 13:57:25 -070065static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080066{
Tejun Heoe8989fa2012-03-05 13:15:20 -080067 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080068
69 if (!blkg)
70 return;
71
Tejun Heodb613672013-05-14 13:52:31 -070072 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070073 if (blkg->pd[i])
74 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080075
Tejun Heo994b7832015-08-18 14:55:07 -070076 if (blkg->blkcg != &blkcg_root)
77 blk_exit_rl(&blkg->rl);
Tejun Heo77ea7332015-08-18 14:55:24 -070078
79 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;
Tejun Heoa5049a82014-06-19 17:42:57 -0400110 atomic_set(&blkg->refcnt, 1);
Tejun Heo03814112012-03-05 13:15:14 -0800111
Tejun Heoa0516612012-06-26 15:05:44 -0700112 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
113 if (blkcg != &blkcg_root) {
114 if (blk_init_rl(&blkg->rl, q, gfp_mask))
115 goto err_free;
116 blkg->rl.blkg = blkg;
117 }
118
Tejun Heo8bd435b2012-04-13 13:11:28 -0700119 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700120 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800121 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800122
Tejun Heoa2b16932012-04-13 13:11:33 -0700123 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800124 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800125
Tejun Heoe8989fa2012-03-05 13:15:20 -0800126 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700127 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700128 if (!pd)
129 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800130
Tejun Heoe8989fa2012-03-05 13:15:20 -0800131 blkg->pd[i] = pd;
132 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800133 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800134 }
135
Tejun Heo03814112012-03-05 13:15:14 -0800136 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700137
138err_free:
139 blkg_free(blkg);
140 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800141}
142
Tejun Heo24f29042015-08-18 14:55:17 -0700143struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
144 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700145{
Tejun Heo3c798392012-04-16 13:57:25 -0700146 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700147
Tejun Heoa6371202012-04-19 16:29:24 -0700148 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800149 * Hint didn't match. Look up from the radix tree. Note that the
150 * hint can only be updated under queue_lock as otherwise @blkg
151 * could have already been removed from blkg_tree. The caller is
152 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700153 */
154 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800155 if (blkg && blkg->q == q) {
156 if (update_hint) {
157 lockdep_assert_held(q->queue_lock);
158 rcu_assign_pointer(blkcg->blkg_hint, blkg);
159 }
Tejun Heoa6371202012-04-19 16:29:24 -0700160 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800161 }
Tejun Heoa6371202012-04-19 16:29:24 -0700162
Tejun Heo80fd9972012-04-13 14:50:53 -0700163 return NULL;
164}
Tejun Heoae118892015-08-18 14:55:20 -0700165EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700166
Tejun Heo15974992012-06-04 20:40:52 -0700167/*
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800168 * If gfp mask allows blocking, this function temporarily drops rcu and queue
169 * locks to allocate memory.
Tejun Heo15974992012-06-04 20:40:52 -0700170 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800171static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800172 struct request_queue *q, gfp_t gfp,
173 const struct blkcg_policy *pol)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400174{
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800175 struct blkcg_gq *blkg = NULL;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400176 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800177 int i, ret;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800178 const bool drop_locks = gfpflags_allow_blocking(gfp);
179 bool preloaded = false;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400180
Tejun Heocd1604f2012-03-05 13:15:06 -0800181 WARN_ON_ONCE(!rcu_read_lock_held());
182 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500183
Tejun Heo7ee9c562012-03-05 13:15:11 -0800184 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400185 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700186 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800187 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700188 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800189
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800190 if (drop_locks) {
191 spin_unlock_irq(q->queue_lock);
192 rcu_read_unlock();
Tejun Heoce7acfe2015-05-22 17:13:38 -0400193 }
194
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800195 wb_congested = wb_congested_get_create(q->backing_dev_info,
196 blkcg->css.id, gfp);
197 blkg = blkg_alloc(blkcg, q, gfp);
198
199 if (drop_locks) {
200 preloaded = !radix_tree_preload(gfp);
201 rcu_read_lock();
202 spin_lock_irq(q->queue_lock);
203 }
204
205 if (unlikely(!wb_congested || !blkg)) {
206 ret = -ENOMEM;
207 goto err_put;
208 }
209
210 blkg->wb_congested = wb_congested;
211
212 if (pol) {
213 WARN_ON(!drop_locks);
214
215 if (!blkcg_policy_enabled(q, pol)) {
216 ret = -EOPNOTSUPP;
217 goto err_put;
218 }
219
220 /*
221 * This could be the first entry point of blkcg implementation
222 * and we shouldn't allow anything to go through for a bypassing
223 * queue.
224 */
225 if (unlikely(blk_queue_bypass(q))) {
226 ret = blk_queue_dying(q) ? -ENODEV : -EBUSY;
227 goto err_put;
Tejun Heo15974992012-06-04 20:40:52 -0700228 }
229 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800230
Tejun Heodb613672013-05-14 13:52:31 -0700231 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800232 if (blkcg_parent(blkcg)) {
233 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
234 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700235 ret = -ENODEV;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800236 goto err_put;
Tejun Heo3c547862013-01-09 08:05:10 -0800237 }
238 blkg_get(blkg->parent);
239 }
240
Tejun Heodb613672013-05-14 13:52:31 -0700241 /* invoke per-policy init */
242 for (i = 0; i < BLKCG_MAX_POLS; i++) {
243 struct blkcg_policy *pol = blkcg_policy[i];
244
245 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700246 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700247 }
248
249 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700250 spin_lock(&blkcg->lock);
251 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
252 if (likely(!ret)) {
253 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
254 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800255
256 for (i = 0; i < BLKCG_MAX_POLS; i++) {
257 struct blkcg_policy *pol = blkcg_policy[i];
258
259 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700260 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800261 }
Tejun Heoa6371202012-04-19 16:29:24 -0700262 }
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800263
264 if (preloaded)
265 radix_tree_preload_end();
Tejun Heof427d902013-01-09 08:05:12 -0800266 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700267 spin_unlock(&blkcg->lock);
268
Tejun Heoec13b1d2015-05-22 17:13:19 -0400269 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700270 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700271
Tejun Heo3c547862013-01-09 08:05:10 -0800272 /* @blkg failed fully initialized, use the usual release path */
273 blkg_put(blkg);
274 return ERR_PTR(ret);
275
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800276err_put:
277 if (preloaded)
278 radix_tree_preload_end();
279 if (wb_congested)
280 wb_congested_put(wb_congested);
Tejun Heo496fb782012-04-19 16:29:23 -0700281 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800282err_free_blkg:
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800283 blkg_free(blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800284 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500285}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700286
Tejun Heo86cde6b2013-01-09 08:05:10 -0800287/**
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800288 * __blkg_lookup_create - lookup blkg, try to create one if not there
Tejun Heo86cde6b2013-01-09 08:05:10 -0800289 * @blkcg: blkcg of interest
290 * @q: request_queue of interest
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800291 * @gfp: gfp mask
292 * @pol: blkcg policy (optional)
Tejun Heo86cde6b2013-01-09 08:05:10 -0800293 *
294 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800295 * create one. blkg creation is performed recursively from blkcg_root such
296 * that all non-root blkg's have access to the parent blkg. This function
297 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800298 *
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800299 * When gfp mask allows blocking, rcu and queue locks may be dropped for
300 * allocating memory. In this case, the locks will be reacquired on return.
301 *
Tejun Heo86cde6b2013-01-09 08:05:10 -0800302 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
303 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
304 * dead and bypassing, returns ERR_PTR(-EBUSY).
305 */
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800306struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
307 struct request_queue *q, gfp_t gfp,
308 const struct blkcg_policy *pol)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700309{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800310 struct blkcg_gq *blkg;
311
312 WARN_ON_ONCE(!rcu_read_lock_held());
313 lockdep_assert_held(q->queue_lock);
314
Tejun Heo86cde6b2013-01-09 08:05:10 -0800315 blkg = __blkg_lookup(blkcg, q, true);
316 if (blkg)
317 return blkg;
318
Tejun Heo3c547862013-01-09 08:05:10 -0800319 /*
320 * Create blkgs walking down from blkcg_root to @blkcg, so that all
321 * non-root blkgs have access to their parents.
322 */
323 while (true) {
324 struct blkcg *pos = blkcg;
325 struct blkcg *parent = blkcg_parent(blkcg);
326
327 while (parent && !__blkg_lookup(parent, q, false)) {
328 pos = parent;
329 parent = blkcg_parent(parent);
330 }
331
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800332 blkg = blkg_create(pos, q, gfp, pol);
Tejun Heo3c547862013-01-09 08:05:10 -0800333 if (pos == blkcg || IS_ERR(blkg))
334 return blkg;
335 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700336}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500337
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800338/**
339 * blkg_lookup_create - lookup blkg, try to create one if not there
340 *
341 * Performs an initial queue bypass check and then passes control to
342 * __blkg_lookup_create().
343 */
344struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
345 struct request_queue *q, gfp_t gfp,
346 const struct blkcg_policy *pol)
347{
348 WARN_ON_ONCE(!rcu_read_lock_held());
349 lockdep_assert_held(q->queue_lock);
350
351 /*
352 * This could be the first entry point of blkcg implementation and
353 * we shouldn't allow anything to go through for a bypassing queue.
354 */
355 if (unlikely(blk_queue_bypass(q)))
356 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
357
358 return __blkg_lookup_create(blkcg, q, gfp, pol);
359}
360
Tejun Heo3c798392012-04-16 13:57:25 -0700361static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800362{
Tejun Heo3c798392012-04-16 13:57:25 -0700363 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700364 struct blkcg_gq *parent = blkg->parent;
Tejun Heof427d902013-01-09 08:05:12 -0800365 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800366
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200367 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800368 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800369
370 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800371 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800372 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700373
Tejun Heof427d902013-01-09 08:05:12 -0800374 for (i = 0; i < BLKCG_MAX_POLS; i++) {
375 struct blkcg_policy *pol = blkcg_policy[i];
376
377 if (blkg->pd[i] && pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700378 pol->pd_offline_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800379 }
Tejun Heo77ea7332015-08-18 14:55:24 -0700380
381 if (parent) {
382 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
383 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
384 }
385
Tejun Heof427d902013-01-09 08:05:12 -0800386 blkg->online = false;
387
Tejun Heoa6371202012-04-19 16:29:24 -0700388 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800389 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800390 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800391
Tejun Heo03aa2642012-03-05 13:15:19 -0800392 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700393 * Both setting lookup hint to and clearing it from @blkg are done
394 * under queue_lock. If it's not pointing to @blkg now, it never
395 * will. Hint assignment itself can race safely.
396 */
Paul E. McKenneyec6c676a2014-02-17 13:35:57 -0800397 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700398 rcu_assign_pointer(blkcg->blkg_hint, NULL);
399
400 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800401 * Put the reference taken at the time of creation so that when all
402 * queues are gone, group can be destroyed.
403 */
404 blkg_put(blkg);
405}
406
Tejun Heo9f13ef62012-03-05 13:15:21 -0800407/**
408 * blkg_destroy_all - destroy all blkgs associated with a request_queue
409 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800410 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700411 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800412 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700413static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800414{
Tejun Heo3c798392012-04-16 13:57:25 -0700415 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800416
Tejun Heo6d18b002012-04-13 13:11:35 -0700417 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800418
Tejun Heo9f13ef62012-03-05 13:15:21 -0800419 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700420 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800421
Tejun Heo9f13ef62012-03-05 13:15:21 -0800422 spin_lock(&blkcg->lock);
423 blkg_destroy(blkg);
424 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800425 }
Tejun Heo6fe810b2015-09-05 15:47:36 -0400426
427 q->root_blkg = NULL;
428 q->root_rl.blkg = NULL;
Tejun Heo72e06c22012-03-05 13:15:00 -0800429}
430
Tejun Heo2a4fd072013-05-14 13:52:31 -0700431/*
432 * A group is RCU protected, but having an rcu lock does not mean that one
433 * can access all the fields of blkg and assume these are valid. For
434 * example, don't try to follow throtl_data and request queue links.
435 *
436 * Having a reference to blkg under an rcu allows accesses to only values
437 * local to groups like group stats and group rate limits.
438 */
439void __blkg_release_rcu(struct rcu_head *rcu_head)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800440{
Tejun Heo2a4fd072013-05-14 13:52:31 -0700441 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
Tejun Heodb613672013-05-14 13:52:31 -0700442
Tejun Heo3c547862013-01-09 08:05:10 -0800443 /* release the blkcg and parent blkg refs this blkg has been holding */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800444 css_put(&blkg->blkcg->css);
Tejun Heoa5049a82014-06-19 17:42:57 -0400445 if (blkg->parent)
Tejun Heo3c547862013-01-09 08:05:10 -0800446 blkg_put(blkg->parent);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800447
Tejun Heoce7acfe2015-05-22 17:13:38 -0400448 wb_congested_put(blkg->wb_congested);
449
Tejun Heo2a4fd072013-05-14 13:52:31 -0700450 blkg_free(blkg);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800451}
Tejun Heo2a4fd072013-05-14 13:52:31 -0700452EXPORT_SYMBOL_GPL(__blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800453
Tejun Heoa0516612012-06-26 15:05:44 -0700454/*
455 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
456 * because the root blkg uses @q->root_rl instead of its own rl.
457 */
458struct request_list *__blk_queue_next_rl(struct request_list *rl,
459 struct request_queue *q)
460{
461 struct list_head *ent;
462 struct blkcg_gq *blkg;
463
464 /*
465 * Determine the current blkg list_head. The first entry is
466 * root_rl which is off @q->blkg_list and mapped to the head.
467 */
468 if (rl == &q->root_rl) {
469 ent = &q->blkg_list;
Jun'ichi Nomura65c77fd2012-10-22 10:15:37 +0900470 /* There are no more block groups, hence no request lists */
471 if (list_empty(ent))
472 return NULL;
Tejun Heoa0516612012-06-26 15:05:44 -0700473 } else {
474 blkg = container_of(rl, struct blkcg_gq, rl);
475 ent = &blkg->q_node;
476 }
477
478 /* walk to the next list_head, skip root blkcg */
479 ent = ent->next;
480 if (ent == &q->root_blkg->q_node)
481 ent = ent->next;
482 if (ent == &q->blkg_list)
483 return NULL;
484
485 blkg = container_of(ent, struct blkcg_gq, q_node);
486 return &blkg->rl;
487}
488
Tejun Heo182446d2013-08-08 20:11:24 -0400489static int blkcg_reset_stats(struct cgroup_subsys_state *css,
490 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700491{
Tejun Heo182446d2013-08-08 20:11:24 -0400492 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700493 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700494 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700495
Tejun Heo838f13b2015-07-09 16:39:47 -0400496 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700497 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800498
499 /*
500 * Note that stat reset is racy - it doesn't synchronize against
501 * stat updates. This is a debug feature which shouldn't exist
502 * anyway. If you get hit by a race, retry.
503 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800504 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700505 blkg_rwstat_reset(&blkg->stat_bytes);
506 blkg_rwstat_reset(&blkg->stat_ios);
507
Tejun Heo8bd435b2012-04-13 13:11:28 -0700508 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700509 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800510
Tejun Heoa9520cd2015-08-18 14:55:14 -0700511 if (blkg->pd[i] && pol->pd_reset_stats_fn)
512 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700513 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700514 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400515
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700516 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700517 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700518 return 0;
519}
520
Tejun Heodd165eb2015-08-18 14:55:33 -0700521const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700522{
Tejun Heod3d32e62012-04-01 14:38:42 -0700523 /* some drivers (floppy) instantiate a queue w/o disk registered */
Jan Karadc3b17c2017-02-02 15:56:50 +0100524 if (blkg->q->backing_dev_info->dev)
525 return dev_name(blkg->q->backing_dev_info->dev);
Tejun Heod3d32e62012-04-01 14:38:42 -0700526 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700527}
Tejun Heodd165eb2015-08-18 14:55:33 -0700528EXPORT_SYMBOL_GPL(blkg_dev_name);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700529
Tejun Heod3d32e62012-04-01 14:38:42 -0700530/**
531 * blkcg_print_blkgs - helper for printing per-blkg data
532 * @sf: seq_file to print to
533 * @blkcg: blkcg of interest
534 * @prfill: fill function to print out a blkg
535 * @pol: policy in question
536 * @data: data to be passed to @prfill
537 * @show_total: to print out sum of prfill return values or not
538 *
539 * This function invokes @prfill on each blkg of @blkcg if pd for the
540 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800541 * policy data and @data and the matching queue lock held. If @show_total
542 * is %true, the sum of the return values from @prfill is printed with
543 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700544 *
545 * This is to be used to construct print functions for
546 * cftype->read_seq_string method.
547 */
Tejun Heo3c798392012-04-16 13:57:25 -0700548void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700549 u64 (*prfill)(struct seq_file *,
550 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700551 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700552 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400553{
Tejun Heo3c798392012-04-16 13:57:25 -0700554 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700555 u64 total = 0;
556
Tejun Heo810ecfa2013-01-09 08:05:13 -0800557 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800558 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo810ecfa2013-01-09 08:05:13 -0800559 spin_lock_irq(blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700560 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700561 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800562 spin_unlock_irq(blkg->q->queue_lock);
563 }
564 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700565
566 if (show_total)
567 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
568}
Tejun Heo829fdb52012-04-01 14:38:43 -0700569EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700570
571/**
572 * __blkg_prfill_u64 - prfill helper for a single u64 value
573 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700574 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700575 * @v: value to print
576 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700577 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700578 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700579u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700580{
Tejun Heof95a04a2012-04-16 13:57:26 -0700581 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700582
583 if (!dname)
584 return 0;
585
586 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
587 return v;
588}
Tejun Heo829fdb52012-04-01 14:38:43 -0700589EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700590
591/**
592 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
593 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700594 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700595 * @rwstat: rwstat to print
596 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700597 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700598 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700599u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700600 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700601{
602 static const char *rwstr[] = {
603 [BLKG_RWSTAT_READ] = "Read",
604 [BLKG_RWSTAT_WRITE] = "Write",
605 [BLKG_RWSTAT_SYNC] = "Sync",
606 [BLKG_RWSTAT_ASYNC] = "Async",
607 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700608 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700609 u64 v;
610 int i;
611
612 if (!dname)
613 return 0;
614
615 for (i = 0; i < BLKG_RWSTAT_NR; i++)
616 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700617 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700618
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700619 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
620 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700621 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
622 return v;
623}
Tejun Heob50da392013-01-09 08:05:12 -0800624EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700625
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700626/**
627 * blkg_prfill_stat - prfill callback for blkg_stat
628 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700629 * @pd: policy private data of interest
630 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700631 *
632 * prfill callback for printing a blkg_stat.
633 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700634u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700635{
Tejun Heof95a04a2012-04-16 13:57:26 -0700636 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700637}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700638EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700639
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700640/**
641 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
642 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700643 * @pd: policy private data of interest
644 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700645 *
646 * prfill callback for printing a blkg_rwstat.
647 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700648u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
649 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700650{
Tejun Heof95a04a2012-04-16 13:57:26 -0700651 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700652
Tejun Heof95a04a2012-04-16 13:57:26 -0700653 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700654}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700655EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700656
Tejun Heo77ea7332015-08-18 14:55:24 -0700657static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
658 struct blkg_policy_data *pd, int off)
659{
660 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
661
662 return __blkg_prfill_rwstat(sf, pd, &rwstat);
663}
664
665/**
666 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
667 * @sf: seq_file to print to
668 * @v: unused
669 *
670 * To be used as cftype->seq_show to print blkg->stat_bytes.
671 * cftype->private must be set to the blkcg_policy.
672 */
673int blkg_print_stat_bytes(struct seq_file *sf, void *v)
674{
675 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
676 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
677 offsetof(struct blkcg_gq, stat_bytes), true);
678 return 0;
679}
680EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
681
682/**
683 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
684 * @sf: seq_file to print to
685 * @v: unused
686 *
687 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
688 * must be set to the blkcg_policy.
689 */
690int blkg_print_stat_ios(struct seq_file *sf, void *v)
691{
692 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
693 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
694 offsetof(struct blkcg_gq, stat_ios), true);
695 return 0;
696}
697EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
698
699static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
700 struct blkg_policy_data *pd,
701 int off)
702{
703 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
704 NULL, off);
705 return __blkg_prfill_rwstat(sf, pd, &rwstat);
706}
707
708/**
709 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
710 * @sf: seq_file to print to
711 * @v: unused
712 */
713int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
714{
715 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
716 blkg_prfill_rwstat_field_recursive,
717 (void *)seq_cft(sf)->private,
718 offsetof(struct blkcg_gq, stat_bytes), true);
719 return 0;
720}
721EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
722
723/**
724 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
725 * @sf: seq_file to print to
726 * @v: unused
727 */
728int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
729{
730 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
731 blkg_prfill_rwstat_field_recursive,
732 (void *)seq_cft(sf)->private,
733 offsetof(struct blkcg_gq, stat_ios), true);
734 return 0;
735}
736EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
737
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700738/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800739 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700740 * @blkg: blkg of interest
741 * @pol: blkcg_policy which contains the blkg_stat
742 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800743 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700744 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
745 * online descendants and their aux counts. The caller must be holding the
746 * queue lock for online tests.
747 *
748 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
749 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800750 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700751u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
752 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800753{
Tejun Heo16b3de62013-01-09 08:05:12 -0800754 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400755 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400756 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800757
Tejun Heof12c74c2015-08-18 14:55:23 -0700758 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800759
Tejun Heo16b3de62013-01-09 08:05:12 -0800760 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700761 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
762 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800763
Tejun Heof12c74c2015-08-18 14:55:23 -0700764 if (!pos_blkg->online)
765 continue;
766
767 if (pol)
768 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
769 else
770 stat = (void *)blkg + off;
771
772 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800773 }
774 rcu_read_unlock();
775
776 return sum;
777}
778EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
779
780/**
781 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700782 * @blkg: blkg of interest
783 * @pol: blkcg_policy which contains the blkg_rwstat
784 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800785 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700786 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
787 * online descendants and their aux counts. The caller must be holding the
788 * queue lock for online tests.
789 *
790 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
791 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800792 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700793struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
794 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800795{
Tejun Heo16b3de62013-01-09 08:05:12 -0800796 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400797 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400798 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800799 int i;
800
Tejun Heof12c74c2015-08-18 14:55:23 -0700801 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800802
Tejun Heo16b3de62013-01-09 08:05:12 -0800803 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700804 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700805 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800806
807 if (!pos_blkg->online)
808 continue;
809
Tejun Heof12c74c2015-08-18 14:55:23 -0700810 if (pol)
811 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
812 else
813 rwstat = (void *)pos_blkg + off;
814
Tejun Heo16b3de62013-01-09 08:05:12 -0800815 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700816 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
817 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
818 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800819 }
820 rcu_read_unlock();
821
822 return sum;
823}
824EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
825
826/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700827 * blkg_conf_prep - parse and prepare for per-blkg config update
828 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700829 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700830 * @input: input string
831 * @ctx: blkg_conf_ctx to be filled
832 *
833 * Parse per-blkg config update from @input and initialize @ctx with the
Tejun Heo36aa9e52015-08-18 14:55:31 -0700834 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
835 * part of @input following MAJ:MIN. This function returns with RCU read
836 * lock and queue lock held and must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700837 */
Tejun Heo3c798392012-04-16 13:57:25 -0700838int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700839 char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700840 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800841{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700842 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700843 struct blkcg_gq *blkg;
Roman Pen39a169b2016-02-09 12:33:35 -0700844 struct module *owner;
Tejun Heo726fa692012-04-01 14:38:43 -0700845 unsigned int major, minor;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700846 int key_len, part, ret;
847 char *body;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800848
Tejun Heo36aa9e52015-08-18 14:55:31 -0700849 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
Tejun Heo726fa692012-04-01 14:38:43 -0700850 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700851
Tejun Heo36aa9e52015-08-18 14:55:31 -0700852 body = input + key_len;
853 if (!isspace(*body))
854 return -EINVAL;
855 body = skip_spaces(body);
856
Tejun Heo726fa692012-04-01 14:38:43 -0700857 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400858 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700859 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400860 if (part) {
Roman Pen39a169b2016-02-09 12:33:35 -0700861 owner = disk->fops->owner;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400862 put_disk(disk);
Roman Pen39a169b2016-02-09 12:33:35 -0700863 module_put(owner);
Tejun Heo20386ce2015-08-18 14:55:28 -0700864 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400865 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800866
867 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800868 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700869
Tejun Heoa2b16932012-04-13 13:11:33 -0700870 if (blkcg_policy_enabled(disk->queue, pol))
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800871 blkg = blkg_lookup_create(blkcg, disk->queue, GFP_KERNEL, pol);
Tejun Heoa2b16932012-04-13 13:11:33 -0700872 else
Tejun Heo20386ce2015-08-18 14:55:28 -0700873 blkg = ERR_PTR(-EOPNOTSUPP);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800874
Tejun Heo4bfd4822012-03-05 13:15:08 -0800875 if (IS_ERR(blkg)) {
876 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700877 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700878 spin_unlock_irq(disk->queue->queue_lock);
Roman Pen39a169b2016-02-09 12:33:35 -0700879 owner = disk->fops->owner;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700880 put_disk(disk);
Roman Pen39a169b2016-02-09 12:33:35 -0700881 module_put(owner);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700882 /*
883 * If queue was bypassing, we should retry. Do so after a
884 * short msleep(). It isn't strictly necessary but queue
885 * can be bypassing for some time and it's always nice to
886 * avoid busy looping.
887 */
888 if (ret == -EBUSY) {
889 msleep(10);
890 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400891 }
Tejun Heo726fa692012-04-01 14:38:43 -0700892 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400893 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800894
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700895 ctx->disk = disk;
896 ctx->blkg = blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700897 ctx->body = body;
Tejun Heo726fa692012-04-01 14:38:43 -0700898 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800899}
Tejun Heo829fdb52012-04-01 14:38:43 -0700900EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800901
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700902/**
903 * blkg_conf_finish - finish up per-blkg config update
904 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
905 *
906 * Finish up after per-blkg config update. This function must be paired
907 * with blkg_conf_prep().
908 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700909void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700910 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800911{
Roman Pen39a169b2016-02-09 12:33:35 -0700912 struct module *owner;
913
Tejun Heoda8b0662012-04-13 13:11:29 -0700914 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700915 rcu_read_unlock();
Roman Pen39a169b2016-02-09 12:33:35 -0700916 owner = ctx->disk->fops->owner;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700917 put_disk(ctx->disk);
Roman Pen39a169b2016-02-09 12:33:35 -0700918 module_put(owner);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800919}
Tejun Heo829fdb52012-04-01 14:38:43 -0700920EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800921
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700922static int blkcg_print_stat(struct seq_file *sf, void *v)
923{
924 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
925 struct blkcg_gq *blkg;
926
927 rcu_read_lock();
928
929 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
930 const char *dname;
931 struct blkg_rwstat rwstat;
932 u64 rbytes, wbytes, rios, wios;
933
934 dname = blkg_dev_name(blkg);
935 if (!dname)
936 continue;
937
938 spin_lock_irq(blkg->q->queue_lock);
939
940 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
941 offsetof(struct blkcg_gq, stat_bytes));
942 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
943 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
944
945 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
946 offsetof(struct blkcg_gq, stat_ios));
947 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
948 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
949
950 spin_unlock_irq(blkg->q->queue_lock);
951
952 if (rbytes || wbytes || rios || wios)
953 seq_printf(sf, "%s rbytes=%llu wbytes=%llu rios=%llu wios=%llu\n",
954 dname, rbytes, wbytes, rios, wios);
955 }
956
957 rcu_read_unlock();
958 return 0;
959}
960
Bart Van Asschee1f3b942016-06-14 17:04:32 +0200961static struct cftype blkcg_files[] = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700962 {
963 .name = "stat",
Tejun Heoca0752c2015-10-22 09:48:37 +0900964 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700965 .seq_show = blkcg_print_stat,
966 },
967 { } /* terminate */
968};
969
Bart Van Asschee1f3b942016-06-14 17:04:32 +0200970static struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500971 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200972 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700973 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500974 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700975 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500976};
977
Tejun Heo9f13ef62012-03-05 13:15:21 -0800978/**
Tejun Heo92fb9742012-11-19 08:13:38 -0800979 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -0400980 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800981 *
Tejun Heoeb954192013-08-08 20:11:23 -0400982 * This function is called when @css is about to go away and responsible
983 * for shooting down all blkgs associated with @css. blkgs should be
Tejun Heo9f13ef62012-03-05 13:15:21 -0800984 * removed while holding both q and blkcg locks. As blkcg lock is nested
985 * inside q lock, this function performs reverse double lock dancing.
986 *
987 * This is the blkcg counterpart of ioc_release_fn().
988 */
Tejun Heoeb954192013-08-08 20:11:23 -0400989static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500990{
Tejun Heoeb954192013-08-08 20:11:23 -0400991 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500992
Tejun Heo9f13ef62012-03-05 13:15:21 -0800993 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800994
Tejun Heo9f13ef62012-03-05 13:15:21 -0800995 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700996 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
997 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800998 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500999
Tejun Heo9f13ef62012-03-05 13:15:21 -08001000 if (spin_trylock(q->queue_lock)) {
1001 blkg_destroy(blkg);
1002 spin_unlock(q->queue_lock);
1003 } else {
1004 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001005 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +02001006 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001007 }
Tejun Heo9f13ef62012-03-05 13:15:21 -08001008 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001009
Tejun Heo9f13ef62012-03-05 13:15:21 -08001010 spin_unlock_irq(&blkcg->lock);
Tejun Heo52ebea72015-05-22 17:13:37 -04001011
1012 wb_blkcg_offline(blkcg);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001013}
1014
Tejun Heoeb954192013-08-08 20:11:23 -04001015static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -08001016{
Tejun Heoeb954192013-08-08 20:11:23 -04001017 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -07001018 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -08001019
Tejun Heo7876f932015-07-09 16:39:49 -04001020 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001021
Tejun Heo7876f932015-07-09 16:39:49 -04001022 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -04001023
Tejun Heobc915e62015-08-18 14:55:08 -07001024 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001025 if (blkcg->cpd[i])
1026 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1027
1028 mutex_unlock(&blkcg_pol_mutex);
1029
Tejun Heobc915e62015-08-18 14:55:08 -07001030 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001031}
1032
Tejun Heoeb954192013-08-08 20:11:23 -04001033static struct cgroup_subsys_state *
1034blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001035{
Tejun Heo3c798392012-04-16 13:57:25 -07001036 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001037 struct cgroup_subsys_state *ret;
1038 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001039
Tejun Heo7876f932015-07-09 16:39:49 -04001040 mutex_lock(&blkcg_pol_mutex);
1041
Tejun Heoeb954192013-08-08 20:11:23 -04001042 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -07001043 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -07001044 } else {
1045 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1046 if (!blkcg) {
1047 ret = ERR_PTR(-ENOMEM);
1048 goto free_blkcg;
1049 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001050 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001051
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001052 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1053 struct blkcg_policy *pol = blkcg_policy[i];
1054 struct blkcg_policy_data *cpd;
1055
1056 /*
1057 * If the policy hasn't been attached yet, wait for it
1058 * to be attached before doing anything else. Otherwise,
1059 * check if the policy requires any specific per-cgroup
1060 * data: if it does, allocate and initialize it.
1061 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001062 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001063 continue;
1064
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001065 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001066 if (!cpd) {
1067 ret = ERR_PTR(-ENOMEM);
1068 goto free_pd_blkcg;
1069 }
Tejun Heo81437642015-08-18 14:55:15 -07001070 blkcg->cpd[i] = cpd;
1071 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001072 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001073 if (pol->cpd_init_fn)
1074 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001075 }
1076
Vivek Goyal31e4c282009-12-03 12:59:42 -05001077 spin_lock_init(&blkcg->lock);
Tejun Heoe00f4f42016-11-21 18:03:32 -05001078 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001079 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -04001080#ifdef CONFIG_CGROUP_WRITEBACK
1081 INIT_LIST_HEAD(&blkcg->cgwb_list);
1082#endif
Tejun Heo7876f932015-07-09 16:39:49 -04001083 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1084
1085 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001086 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001087
1088free_pd_blkcg:
1089 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001090 if (blkcg->cpd[i])
1091 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001092free_blkcg:
1093 kfree(blkcg);
Tejun Heo7876f932015-07-09 16:39:49 -04001094 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001095 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001096}
1097
Tejun Heo5efd6112012-03-05 13:15:12 -08001098/**
1099 * blkcg_init_queue - initialize blkcg part of request queue
1100 * @q: request_queue to initialize
1101 *
1102 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1103 * part of new request_queue @q.
1104 *
1105 * RETURNS:
1106 * 0 on success, -errno on failure.
1107 */
1108int blkcg_init_queue(struct request_queue *q)
1109{
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -08001110 struct blkcg_gq *blkg;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001111 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001112
Tejun Heoec13b1d2015-05-22 17:13:19 -04001113 rcu_read_lock();
1114 spin_lock_irq(q->queue_lock);
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -08001115 blkg = __blkg_lookup_create(&blkcg_root, q, GFP_KERNEL, NULL);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001116 spin_unlock_irq(q->queue_lock);
1117 rcu_read_unlock();
1118
Hou Tao9b54d812017-02-03 17:19:07 +08001119 if (IS_ERR(blkg))
Tejun Heoec13b1d2015-05-22 17:13:19 -04001120 return PTR_ERR(blkg);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001121
1122 q->root_blkg = blkg;
1123 q->root_rl.blkg = blkg;
1124
1125 ret = blk_throtl_init(q);
1126 if (ret) {
1127 spin_lock_irq(q->queue_lock);
1128 blkg_destroy_all(q);
1129 spin_unlock_irq(q->queue_lock);
1130 }
1131 return ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001132}
1133
1134/**
1135 * blkcg_drain_queue - drain blkcg part of request_queue
1136 * @q: request_queue to drain
1137 *
1138 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1139 */
1140void blkcg_drain_queue(struct request_queue *q)
1141{
1142 lockdep_assert_held(q->queue_lock);
1143
Tejun Heo0b462c82014-07-05 18:43:21 -04001144 /*
1145 * @q could be exiting and already have destroyed all blkgs as
1146 * indicated by NULL root_blkg. If so, don't confuse policies.
1147 */
1148 if (!q->root_blkg)
1149 return;
1150
Tejun Heo5efd6112012-03-05 13:15:12 -08001151 blk_throtl_drain(q);
1152}
1153
1154/**
1155 * blkcg_exit_queue - exit and release blkcg part of request_queue
1156 * @q: request_queue being released
1157 *
1158 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1159 */
1160void blkcg_exit_queue(struct request_queue *q)
1161{
Tejun Heo6d18b002012-04-13 13:11:35 -07001162 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -07001163 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -07001164 spin_unlock_irq(q->queue_lock);
1165
Tejun Heo5efd6112012-03-05 13:15:12 -08001166 blk_throtl_exit(q);
1167}
1168
Vivek Goyal31e4c282009-12-03 12:59:42 -05001169/*
1170 * We cannot support shared io contexts, as we have no mean to support
1171 * two tasks with the same ioc in two different groups without major rework
1172 * of the main cic data structures. For now we allow a task to change
1173 * its cgroup only if it's the only owner of its ioc.
1174 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001175static int blkcg_can_attach(struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001176{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001177 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001178 struct cgroup_subsys_state *dst_css;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001179 struct io_context *ioc;
1180 int ret = 0;
1181
1182 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001183 cgroup_taskset_for_each(task, dst_css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001184 task_lock(task);
1185 ioc = task->io_context;
1186 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1187 ret = -EINVAL;
1188 task_unlock(task);
1189 if (ret)
1190 break;
1191 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001192 return ret;
1193}
1194
Tejun Heo69d7fde2015-08-18 14:55:36 -07001195static void blkcg_bind(struct cgroup_subsys_state *root_css)
1196{
1197 int i;
1198
1199 mutex_lock(&blkcg_pol_mutex);
1200
1201 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1202 struct blkcg_policy *pol = blkcg_policy[i];
1203 struct blkcg *blkcg;
1204
1205 if (!pol || !pol->cpd_bind_fn)
1206 continue;
1207
1208 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1209 if (blkcg->cpd[pol->plid])
1210 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1211 }
1212 mutex_unlock(&blkcg_pol_mutex);
1213}
1214
Tejun Heoc165b3e2015-08-18 14:55:29 -07001215struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001216 .css_alloc = blkcg_css_alloc,
1217 .css_offline = blkcg_css_offline,
1218 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001219 .can_attach = blkcg_can_attach,
Tejun Heo69d7fde2015-08-18 14:55:36 -07001220 .bind = blkcg_bind,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001221 .dfl_cftypes = blkcg_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001222 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001223 .legacy_name = "blkio",
Tejun Heo1ced9532014-07-08 18:02:57 -04001224#ifdef CONFIG_MEMCG
1225 /*
1226 * This ensures that, if available, memcg is automatically enabled
1227 * together on the default hierarchy so that the owner cgroup can
1228 * be retrieved from writeback pages.
1229 */
1230 .depends_on = 1 << memory_cgrp_id,
1231#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001232};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001233EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001234
Tejun Heo8bd435b2012-04-13 13:11:28 -07001235/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001236 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1237 * @q: request_queue of interest
1238 * @pol: blkcg policy to activate
1239 *
1240 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1241 * bypass mode to populate its blkgs with policy_data for @pol.
1242 *
1243 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1244 * from IO path. Update of each blkg is protected by both queue and blkcg
1245 * locks so that holding either lock and testing blkcg_policy_enabled() is
1246 * always enough for dereferencing policy data.
1247 *
1248 * The caller is responsible for synchronizing [de]activations and policy
1249 * [un]registerations. Returns 0 on success, -errno on failure.
1250 */
1251int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001252 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001253{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001254 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001255 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001256 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001257
1258 if (blkcg_policy_enabled(q, pol))
1259 return 0;
1260
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001261 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001262 blk_mq_freeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001263 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001264 blk_queue_bypass_start(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001265pd_prealloc:
1266 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001267 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001268 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001269 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001270 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001271 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001272 }
1273
Tejun Heoa2b16932012-04-13 13:11:33 -07001274 spin_lock_irq(q->queue_lock);
1275
1276 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001277 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001278
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001279 if (blkg->pd[pol->plid])
1280 continue;
1281
Tejun Heoe00f4f42016-11-21 18:03:32 -05001282 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001283 if (!pd)
1284 swap(pd, pd_prealloc);
1285 if (!pd) {
1286 spin_unlock_irq(q->queue_lock);
1287 goto pd_prealloc;
1288 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001289
1290 blkg->pd[pol->plid] = pd;
1291 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001292 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001293 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001294 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001295 }
1296
1297 __set_bit(pol->plid, q->blkcg_pols);
1298 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001299
Tejun Heoa2b16932012-04-13 13:11:33 -07001300 spin_unlock_irq(q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001301out_bypass_end:
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001302 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001303 blk_mq_unfreeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001304 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001305 blk_queue_bypass_end(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001306 if (pd_prealloc)
1307 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001308 return ret;
1309}
1310EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1311
1312/**
1313 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1314 * @q: request_queue of interest
1315 * @pol: blkcg policy to deactivate
1316 *
1317 * Deactivate @pol on @q. Follows the same synchronization rules as
1318 * blkcg_activate_policy().
1319 */
1320void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001321 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001322{
Tejun Heo3c798392012-04-16 13:57:25 -07001323 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001324
1325 if (!blkcg_policy_enabled(q, pol))
1326 return;
1327
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001328 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001329 blk_mq_freeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001330 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001331 blk_queue_bypass_start(q);
1332
Tejun Heoa2b16932012-04-13 13:11:33 -07001333 spin_lock_irq(q->queue_lock);
1334
1335 __clear_bit(pol->plid, q->blkcg_pols);
1336
1337 list_for_each_entry(blkg, &q->blkg_list, q_node) {
1338 /* grab blkcg lock too while removing @pd from @blkg */
1339 spin_lock(&blkg->blkcg->lock);
1340
Tejun Heo001bea72015-08-18 14:55:11 -07001341 if (blkg->pd[pol->plid]) {
Tejun Heoa9520cd2015-08-18 14:55:14 -07001342 if (pol->pd_offline_fn)
1343 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001344 pol->pd_free_fn(blkg->pd[pol->plid]);
1345 blkg->pd[pol->plid] = NULL;
1346 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001347
1348 spin_unlock(&blkg->blkcg->lock);
1349 }
1350
1351 spin_unlock_irq(q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001352
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001353 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001354 blk_mq_unfreeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001355 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001356 blk_queue_bypass_end(q);
Tejun Heoa2b16932012-04-13 13:11:33 -07001357}
1358EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1359
1360/**
Tejun Heo3c798392012-04-16 13:57:25 -07001361 * blkcg_policy_register - register a blkcg policy
1362 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001363 *
Tejun Heo3c798392012-04-16 13:57:25 -07001364 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1365 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001366 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001367int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001368{
Tejun Heo06b285b2015-07-09 16:39:50 -04001369 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001370 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001371
Tejun Heo838f13b2015-07-09 16:39:47 -04001372 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001373 mutex_lock(&blkcg_pol_mutex);
1374
Tejun Heo8bd435b2012-04-13 13:11:28 -07001375 /* find an empty slot */
1376 ret = -ENOSPC;
1377 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001378 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001379 break;
1380 if (i >= BLKCG_MAX_POLS)
Tejun Heo838f13b2015-07-09 16:39:47 -04001381 goto err_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -08001382
Tejun Heo06b285b2015-07-09 16:39:50 -04001383 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001384 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001385 blkcg_policy[pol->plid] = pol;
1386
1387 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001388 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001389 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1390 struct blkcg_policy_data *cpd;
1391
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001392 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Bart Van Asschebbb427e2016-09-29 08:33:30 -07001393 if (!cpd)
Tejun Heo06b285b2015-07-09 16:39:50 -04001394 goto err_free_cpds;
Tejun Heo06b285b2015-07-09 16:39:50 -04001395
Tejun Heo81437642015-08-18 14:55:15 -07001396 blkcg->cpd[pol->plid] = cpd;
1397 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001398 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001399 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001400 }
1401 }
1402
Tejun Heo838f13b2015-07-09 16:39:47 -04001403 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001404
Tejun Heo8bd435b2012-04-13 13:11:28 -07001405 /* everything is in place, add intf files for the new policy */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001406 if (pol->dfl_cftypes)
1407 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1408 pol->dfl_cftypes));
Tejun Heo880f50e2015-08-18 14:55:30 -07001409 if (pol->legacy_cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001410 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo880f50e2015-08-18 14:55:30 -07001411 pol->legacy_cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001412 mutex_unlock(&blkcg_pol_register_mutex);
1413 return 0;
1414
Tejun Heo06b285b2015-07-09 16:39:50 -04001415err_free_cpds:
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001416 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001417 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001418 if (blkcg->cpd[pol->plid]) {
1419 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1420 blkcg->cpd[pol->plid] = NULL;
1421 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001422 }
1423 }
1424 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001425err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001426 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001427 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001428 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001429}
Tejun Heo3c798392012-04-16 13:57:25 -07001430EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001431
Tejun Heo8bd435b2012-04-13 13:11:28 -07001432/**
Tejun Heo3c798392012-04-16 13:57:25 -07001433 * blkcg_policy_unregister - unregister a blkcg policy
1434 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001435 *
Tejun Heo3c798392012-04-16 13:57:25 -07001436 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001437 */
Tejun Heo3c798392012-04-16 13:57:25 -07001438void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001439{
Tejun Heo06b285b2015-07-09 16:39:50 -04001440 struct blkcg *blkcg;
1441
Tejun Heo838f13b2015-07-09 16:39:47 -04001442 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001443
Tejun Heo3c798392012-04-16 13:57:25 -07001444 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001445 goto out_unlock;
1446
1447 /* kill the intf files first */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001448 if (pol->dfl_cftypes)
1449 cgroup_rm_cftypes(pol->dfl_cftypes);
Tejun Heo880f50e2015-08-18 14:55:30 -07001450 if (pol->legacy_cftypes)
1451 cgroup_rm_cftypes(pol->legacy_cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001452
Tejun Heo06b285b2015-07-09 16:39:50 -04001453 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001454 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001455
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001456 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001457 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001458 if (blkcg->cpd[pol->plid]) {
1459 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1460 blkcg->cpd[pol->plid] = NULL;
1461 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001462 }
1463 }
Tejun Heo3c798392012-04-16 13:57:25 -07001464 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001465
Tejun Heobc0d6502012-04-13 13:11:26 -07001466 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001467out_unlock:
1468 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001469}
Tejun Heo3c798392012-04-16 13:57:25 -07001470EXPORT_SYMBOL_GPL(blkcg_policy_unregister);