blob: b97b479e4f64f6800cf1ca8d0937019fea0f1489 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Vivek Goyal31e4c282009-12-03 12:59:42 -05002/*
3 * Common Block IO controller cgroup interface
4 *
5 * Based on ideas and code from CFQ, CFS and BFQ:
6 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
7 *
8 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
9 * Paolo Valente <paolo.valente@unimore.it>
10 *
11 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
12 * Nauman Rafique <nauman@google.com>
Arianna Avanzinie48453c2015-06-05 23:38:42 +020013 *
14 * For policy-specific per-blkcg data:
15 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
16 * Arianna Avanzini <avanzini.arianna@gmail.com>
Vivek Goyal31e4c282009-12-03 12:59:42 -050017 */
18#include <linux/ioprio.h>
Vivek Goyal22084192009-12-03 12:59:49 -050019#include <linux/kdev_t.h>
Vivek Goyal9d6a9862009-12-04 10:36:41 -050020#include <linux/module.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010021#include <linux/sched/signal.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110022#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070023#include <linux/blkdev.h>
Tejun Heo52ebea72015-05-22 17:13:37 -040024#include <linux/backing-dev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080026#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080027#include <linux/delay.h>
Tejun Heo9a9e8a22012-03-19 15:10:56 -070028#include <linux/atomic.h>
Tejun Heo36aa9e52015-08-18 14:55:31 -070029#include <linux/ctype.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040030#include <linux/blk-cgroup.h>
Josef Bacikd09d8df2018-07-03 11:14:55 -040031#include <linux/tracehook.h>
Tejun Heo5efd6112012-03-05 13:15:12 -080032#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050033
Divyesh Shah84c124d2010-04-09 08:31:19 +020034#define MAX_KEY_LEN 100
35
Tejun Heo838f13b2015-07-09 16:39:47 -040036/*
37 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
38 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
39 * policy [un]register operations including cgroup file additions /
40 * removals. Putting cgroup file registration outside blkcg_pol_mutex
41 * allows grabbing it from cgroup callbacks.
42 */
43static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070044static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080045
Arianna Avanzinie48453c2015-06-05 23:38:42 +020046struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070047EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050048
Tejun Heo496d5e72015-05-22 17:13:21 -040049struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
50
Tejun Heo3c798392012-04-16 13:57:25 -070051static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080052
Tejun Heo7876f932015-07-09 16:39:49 -040053static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
54
Josef Bacik903d23f2018-07-03 11:14:52 -040055static bool blkcg_debug_stats = false;
56
Tejun Heoa2b16932012-04-13 13:11:33 -070057static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070058 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070059{
60 return pol && test_bit(pol->plid, q->blkcg_pols);
61}
62
Tejun Heo03814112012-03-05 13:15:14 -080063/**
64 * blkg_free - free a blkg
65 * @blkg: blkg to free
66 *
67 * Free @blkg which may be partially allocated.
68 */
Tejun Heo3c798392012-04-16 13:57:25 -070069static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080070{
Tejun Heoe8989fa2012-03-05 13:15:20 -080071 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080072
73 if (!blkg)
74 return;
75
Tejun Heodb613672013-05-14 13:52:31 -070076 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070077 if (blkg->pd[i])
78 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080079
Tejun Heo77ea7332015-08-18 14:55:24 -070080 blkg_rwstat_exit(&blkg->stat_ios);
81 blkg_rwstat_exit(&blkg->stat_bytes);
Tejun Heo549d3aa2012-03-05 13:15:16 -080082 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080083}
84
Dennis Zhou7fcf2b02018-12-05 12:10:38 -050085static void __blkg_release(struct rcu_head *rcu)
86{
87 struct blkcg_gq *blkg = container_of(rcu, struct blkcg_gq, rcu_head);
88
89 percpu_ref_exit(&blkg->refcnt);
90
91 /* release the blkcg and parent blkg refs this blkg has been holding */
92 css_put(&blkg->blkcg->css);
93 if (blkg->parent)
94 blkg_put(blkg->parent);
95
96 wb_congested_put(blkg->wb_congested);
97
98 blkg_free(blkg);
99}
100
101/*
102 * A group is RCU protected, but having an rcu lock does not mean that one
103 * can access all the fields of blkg and assume these are valid. For
104 * example, don't try to follow throtl_data and request queue links.
105 *
106 * Having a reference to blkg under an rcu allows accesses to only values
107 * local to groups like group stats and group rate limits.
108 */
109static void blkg_release(struct percpu_ref *ref)
110{
111 struct blkcg_gq *blkg = container_of(ref, struct blkcg_gq, refcnt);
112
113 call_rcu(&blkg->rcu_head, __blkg_release);
114}
115
Tejun Heo03814112012-03-05 13:15:14 -0800116/**
117 * blkg_alloc - allocate a blkg
118 * @blkcg: block cgroup the new blkg is associated with
119 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -0700120 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -0800121 *
Tejun Heoe8989fa2012-03-05 13:15:20 -0800122 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -0800123 */
Tejun Heo15974992012-06-04 20:40:52 -0700124static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
125 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -0800126{
Tejun Heo3c798392012-04-16 13:57:25 -0700127 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800128 int i;
Tejun Heo03814112012-03-05 13:15:14 -0800129
130 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -0700131 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -0800132 if (!blkg)
133 return NULL;
134
Tejun Heo77ea7332015-08-18 14:55:24 -0700135 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
136 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
137 goto err_free;
138
Tejun Heoc875f4d2012-03-05 13:15:22 -0800139 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800140 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800141 blkg->blkcg = blkcg;
Tejun Heo03814112012-03-05 13:15:14 -0800142
Tejun Heo8bd435b2012-04-13 13:11:28 -0700143 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700144 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800145 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800146
Tejun Heoa2b16932012-04-13 13:11:33 -0700147 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800148 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800149
Tejun Heoe8989fa2012-03-05 13:15:20 -0800150 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700151 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700152 if (!pd)
153 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800154
Tejun Heoe8989fa2012-03-05 13:15:20 -0800155 blkg->pd[i] = pd;
156 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800157 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800158 }
159
Tejun Heo03814112012-03-05 13:15:14 -0800160 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700161
162err_free:
163 blkg_free(blkg);
164 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800165}
166
Tejun Heo24f29042015-08-18 14:55:17 -0700167struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
168 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700169{
Tejun Heo3c798392012-04-16 13:57:25 -0700170 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700171
Tejun Heoa6371202012-04-19 16:29:24 -0700172 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800173 * Hint didn't match. Look up from the radix tree. Note that the
174 * hint can only be updated under queue_lock as otherwise @blkg
175 * could have already been removed from blkg_tree. The caller is
176 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700177 */
178 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800179 if (blkg && blkg->q == q) {
180 if (update_hint) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700181 lockdep_assert_held(&q->queue_lock);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800182 rcu_assign_pointer(blkcg->blkg_hint, blkg);
183 }
Tejun Heoa6371202012-04-19 16:29:24 -0700184 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800185 }
Tejun Heoa6371202012-04-19 16:29:24 -0700186
Tejun Heo80fd9972012-04-13 14:50:53 -0700187 return NULL;
188}
Tejun Heoae118892015-08-18 14:55:20 -0700189EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700190
Tejun Heo15974992012-06-04 20:40:52 -0700191/*
Jens Axboed708f0d2017-03-29 11:25:48 -0600192 * If @new_blkg is %NULL, this function tries to allocate a new one as
193 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700194 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800195static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
Jens Axboed708f0d2017-03-29 11:25:48 -0600196 struct request_queue *q,
197 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400198{
Jens Axboed708f0d2017-03-29 11:25:48 -0600199 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400200 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800201 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400202
Tejun Heocd1604f2012-03-05 13:15:06 -0800203 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700204 lockdep_assert_held(&q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500205
Dennis Zhou0273ac32018-12-11 18:03:08 -0500206 /* request_queue is dying, do not create/recreate a blkg */
207 if (blk_queue_dying(q)) {
208 ret = -ENODEV;
209 goto err_free_blkg;
210 }
211
Tejun Heo7ee9c562012-03-05 13:15:11 -0800212 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400213 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700214 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800215 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700216 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800217
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800218 wb_congested = wb_congested_get_create(q->backing_dev_info,
Jens Axboed708f0d2017-03-29 11:25:48 -0600219 blkcg->css.id,
220 GFP_NOWAIT | __GFP_NOWARN);
221 if (!wb_congested) {
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800222 ret = -ENOMEM;
Jens Axboed708f0d2017-03-29 11:25:48 -0600223 goto err_put_css;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800224 }
225
Jens Axboed708f0d2017-03-29 11:25:48 -0600226 /* allocate */
227 if (!new_blkg) {
228 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
229 if (unlikely(!new_blkg)) {
230 ret = -ENOMEM;
231 goto err_put_congested;
232 }
233 }
234 blkg = new_blkg;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800235 blkg->wb_congested = wb_congested;
236
Tejun Heodb613672013-05-14 13:52:31 -0700237 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800238 if (blkcg_parent(blkcg)) {
239 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
240 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700241 ret = -ENODEV;
Jens Axboed708f0d2017-03-29 11:25:48 -0600242 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800243 }
244 blkg_get(blkg->parent);
245 }
246
Dennis Zhou7fcf2b02018-12-05 12:10:38 -0500247 ret = percpu_ref_init(&blkg->refcnt, blkg_release, 0,
248 GFP_NOWAIT | __GFP_NOWARN);
249 if (ret)
250 goto err_cancel_ref;
251
Tejun Heodb613672013-05-14 13:52:31 -0700252 /* invoke per-policy init */
253 for (i = 0; i < BLKCG_MAX_POLS; i++) {
254 struct blkcg_policy *pol = blkcg_policy[i];
255
256 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700257 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700258 }
259
260 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700261 spin_lock(&blkcg->lock);
262 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
263 if (likely(!ret)) {
264 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
265 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800266
267 for (i = 0; i < BLKCG_MAX_POLS; i++) {
268 struct blkcg_policy *pol = blkcg_policy[i];
269
270 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700271 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800272 }
Tejun Heoa6371202012-04-19 16:29:24 -0700273 }
Tejun Heof427d902013-01-09 08:05:12 -0800274 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700275 spin_unlock(&blkcg->lock);
276
Tejun Heoec13b1d2015-05-22 17:13:19 -0400277 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700278 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700279
Tejun Heo3c547862013-01-09 08:05:10 -0800280 /* @blkg failed fully initialized, use the usual release path */
281 blkg_put(blkg);
282 return ERR_PTR(ret);
283
Dennis Zhou7fcf2b02018-12-05 12:10:38 -0500284err_cancel_ref:
285 percpu_ref_exit(&blkg->refcnt);
Jens Axboed708f0d2017-03-29 11:25:48 -0600286err_put_congested:
287 wb_congested_put(wb_congested);
288err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700289 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800290err_free_blkg:
Jens Axboed708f0d2017-03-29 11:25:48 -0600291 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800292 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500293}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700294
Tejun Heo86cde6b2013-01-09 08:05:10 -0800295/**
Dennis Zhoub9789622018-12-05 12:10:27 -0500296 * __blkg_lookup_create - lookup blkg, try to create one if not there
Tejun Heo86cde6b2013-01-09 08:05:10 -0800297 * @blkcg: blkcg of interest
298 * @q: request_queue of interest
299 *
300 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800301 * create one. blkg creation is performed recursively from blkcg_root such
302 * that all non-root blkg's have access to the parent blkg. This function
303 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800304 *
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500305 * Returns the blkg or the closest blkg if blkg_create() fails as it walks
306 * down from root.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800307 */
Dennis Zhoub9789622018-12-05 12:10:27 -0500308struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
309 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700310{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800311 struct blkcg_gq *blkg;
312
313 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700314 lockdep_assert_held(&q->queue_lock);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800315
Tejun Heo86cde6b2013-01-09 08:05:10 -0800316 blkg = __blkg_lookup(blkcg, q, true);
317 if (blkg)
318 return blkg;
319
Tejun Heo3c547862013-01-09 08:05:10 -0800320 /*
321 * Create blkgs walking down from blkcg_root to @blkcg, so that all
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500322 * non-root blkgs have access to their parents. Returns the closest
323 * blkg to the intended blkg should blkg_create() fail.
Tejun Heo3c547862013-01-09 08:05:10 -0800324 */
325 while (true) {
326 struct blkcg *pos = blkcg;
327 struct blkcg *parent = blkcg_parent(blkcg);
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500328 struct blkcg_gq *ret_blkg = q->root_blkg;
Tejun Heo3c547862013-01-09 08:05:10 -0800329
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500330 while (parent) {
331 blkg = __blkg_lookup(parent, q, false);
332 if (blkg) {
333 /* remember closest blkg */
334 ret_blkg = blkg;
335 break;
336 }
Tejun Heo3c547862013-01-09 08:05:10 -0800337 pos = parent;
338 parent = blkcg_parent(parent);
339 }
340
Jens Axboed708f0d2017-03-29 11:25:48 -0600341 blkg = blkg_create(pos, q, NULL);
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500342 if (IS_ERR(blkg))
343 return ret_blkg;
344 if (pos == blkcg)
Tejun Heo3c547862013-01-09 08:05:10 -0800345 return blkg;
346 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700347}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500348
Dennis Zhoub9789622018-12-05 12:10:27 -0500349/**
350 * blkg_lookup_create - find or create a blkg
351 * @blkcg: target block cgroup
352 * @q: target request_queue
353 *
354 * This looks up or creates the blkg representing the unique pair
355 * of the blkcg and the request_queue.
356 */
357struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
358 struct request_queue *q)
359{
360 struct blkcg_gq *blkg = blkg_lookup(blkcg, q);
361
362 if (unlikely(!blkg)) {
Ming Lei3a762de2018-12-20 00:29:15 +0800363 unsigned long flags;
364
365 spin_lock_irqsave(&q->queue_lock, flags);
Dennis Zhoub9789622018-12-05 12:10:27 -0500366 blkg = __blkg_lookup_create(blkcg, q);
Ming Lei3a762de2018-12-20 00:29:15 +0800367 spin_unlock_irqrestore(&q->queue_lock, flags);
Dennis Zhoub9789622018-12-05 12:10:27 -0500368 }
369
370 return blkg;
371}
372
Tejun Heo3c798392012-04-16 13:57:25 -0700373static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800374{
Tejun Heo3c798392012-04-16 13:57:25 -0700375 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700376 struct blkcg_gq *parent = blkg->parent;
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -0400377 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800378
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700379 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800380 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800381
382 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800383 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800384 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700385
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -0400386 for (i = 0; i < BLKCG_MAX_POLS; i++) {
387 struct blkcg_policy *pol = blkcg_policy[i];
388
389 if (blkg->pd[i] && pol->pd_offline_fn)
390 pol->pd_offline_fn(blkg->pd[i]);
391 }
392
Tejun Heo77ea7332015-08-18 14:55:24 -0700393 if (parent) {
394 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
395 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
396 }
397
Tejun Heof427d902013-01-09 08:05:12 -0800398 blkg->online = false;
399
Tejun Heoa6371202012-04-19 16:29:24 -0700400 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800401 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800402 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800403
Tejun Heo03aa2642012-03-05 13:15:19 -0800404 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700405 * Both setting lookup hint to and clearing it from @blkg are done
406 * under queue_lock. If it's not pointing to @blkg now, it never
407 * will. Hint assignment itself can race safely.
408 */
Paul E. McKenneyec6c676a2014-02-17 13:35:57 -0800409 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700410 rcu_assign_pointer(blkcg->blkg_hint, NULL);
411
412 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800413 * Put the reference taken at the time of creation so that when all
414 * queues are gone, group can be destroyed.
415 */
Dennis Zhou7fcf2b02018-12-05 12:10:38 -0500416 percpu_ref_kill(&blkg->refcnt);
Tejun Heo03aa2642012-03-05 13:15:19 -0800417}
418
Tejun Heo9f13ef62012-03-05 13:15:21 -0800419/**
420 * blkg_destroy_all - destroy all blkgs associated with a request_queue
421 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800422 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700423 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800424 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700425static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800426{
Tejun Heo3c798392012-04-16 13:57:25 -0700427 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800428
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700429 spin_lock_irq(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800430 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700431 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800432
Tejun Heo9f13ef62012-03-05 13:15:21 -0800433 spin_lock(&blkcg->lock);
434 blkg_destroy(blkg);
435 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800436 }
Tejun Heo6fe810b2015-09-05 15:47:36 -0400437
438 q->root_blkg = NULL;
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700439 spin_unlock_irq(&q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800440}
441
Tejun Heo182446d2013-08-08 20:11:24 -0400442static int blkcg_reset_stats(struct cgroup_subsys_state *css,
443 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700444{
Tejun Heo182446d2013-08-08 20:11:24 -0400445 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700446 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700447 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700448
Tejun Heo838f13b2015-07-09 16:39:47 -0400449 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700450 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800451
452 /*
453 * Note that stat reset is racy - it doesn't synchronize against
454 * stat updates. This is a debug feature which shouldn't exist
455 * anyway. If you get hit by a race, retry.
456 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800457 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700458 blkg_rwstat_reset(&blkg->stat_bytes);
459 blkg_rwstat_reset(&blkg->stat_ios);
460
Tejun Heo8bd435b2012-04-13 13:11:28 -0700461 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700462 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800463
Tejun Heoa9520cd2015-08-18 14:55:14 -0700464 if (blkg->pd[i] && pol->pd_reset_stats_fn)
465 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700466 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700467 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400468
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700469 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700470 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700471 return 0;
472}
473
Tejun Heodd165eb2015-08-18 14:55:33 -0700474const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700475{
Tejun Heod3d32e62012-04-01 14:38:42 -0700476 /* some drivers (floppy) instantiate a queue w/o disk registered */
Jan Karadc3b17c2017-02-02 15:56:50 +0100477 if (blkg->q->backing_dev_info->dev)
478 return dev_name(blkg->q->backing_dev_info->dev);
Tejun Heod3d32e62012-04-01 14:38:42 -0700479 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700480}
481
Tejun Heod3d32e62012-04-01 14:38:42 -0700482/**
483 * blkcg_print_blkgs - helper for printing per-blkg data
484 * @sf: seq_file to print to
485 * @blkcg: blkcg of interest
486 * @prfill: fill function to print out a blkg
487 * @pol: policy in question
488 * @data: data to be passed to @prfill
489 * @show_total: to print out sum of prfill return values or not
490 *
491 * This function invokes @prfill on each blkg of @blkcg if pd for the
492 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800493 * policy data and @data and the matching queue lock held. If @show_total
494 * is %true, the sum of the return values from @prfill is printed with
495 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700496 *
497 * This is to be used to construct print functions for
498 * cftype->read_seq_string method.
499 */
Tejun Heo3c798392012-04-16 13:57:25 -0700500void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700501 u64 (*prfill)(struct seq_file *,
502 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700503 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700504 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400505{
Tejun Heo3c798392012-04-16 13:57:25 -0700506 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700507 u64 total = 0;
508
Tejun Heo810ecfa2013-01-09 08:05:13 -0800509 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800510 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700511 spin_lock_irq(&blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700512 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700513 total += prfill(sf, blkg->pd[pol->plid], data);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700514 spin_unlock_irq(&blkg->q->queue_lock);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800515 }
516 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700517
518 if (show_total)
519 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
520}
Tejun Heo829fdb52012-04-01 14:38:43 -0700521EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700522
523/**
524 * __blkg_prfill_u64 - prfill helper for a single u64 value
525 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700526 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700527 * @v: value to print
528 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700529 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700530 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700531u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700532{
Tejun Heof95a04a2012-04-16 13:57:26 -0700533 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700534
535 if (!dname)
536 return 0;
537
538 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
539 return v;
540}
Tejun Heo829fdb52012-04-01 14:38:43 -0700541EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700542
543/**
544 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
545 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700546 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700547 * @rwstat: rwstat to print
548 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700549 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700550 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700551u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700552 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700553{
554 static const char *rwstr[] = {
555 [BLKG_RWSTAT_READ] = "Read",
556 [BLKG_RWSTAT_WRITE] = "Write",
557 [BLKG_RWSTAT_SYNC] = "Sync",
558 [BLKG_RWSTAT_ASYNC] = "Async",
Tejun Heo636620b2018-07-18 04:47:41 -0700559 [BLKG_RWSTAT_DISCARD] = "Discard",
Tejun Heod3d32e62012-04-01 14:38:42 -0700560 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700561 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700562 u64 v;
563 int i;
564
565 if (!dname)
566 return 0;
567
568 for (i = 0; i < BLKG_RWSTAT_NR; i++)
569 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700570 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700571
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700572 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
Tejun Heo636620b2018-07-18 04:47:41 -0700573 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]) +
574 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700575 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
576 return v;
577}
Tejun Heob50da392013-01-09 08:05:12 -0800578EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700579
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700580/**
581 * blkg_prfill_stat - prfill callback for blkg_stat
582 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700583 * @pd: policy private data of interest
584 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700585 *
586 * prfill callback for printing a blkg_stat.
587 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700588u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700589{
Tejun Heof95a04a2012-04-16 13:57:26 -0700590 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700591}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700592EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700593
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700594/**
595 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
596 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700597 * @pd: policy private data of interest
598 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700599 *
600 * prfill callback for printing a blkg_rwstat.
601 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700602u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
603 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700604{
Tejun Heof95a04a2012-04-16 13:57:26 -0700605 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700606
Tejun Heof95a04a2012-04-16 13:57:26 -0700607 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700608}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700609EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700610
Tejun Heo77ea7332015-08-18 14:55:24 -0700611static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
612 struct blkg_policy_data *pd, int off)
613{
614 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
615
616 return __blkg_prfill_rwstat(sf, pd, &rwstat);
617}
618
619/**
620 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
621 * @sf: seq_file to print to
622 * @v: unused
623 *
624 * To be used as cftype->seq_show to print blkg->stat_bytes.
625 * cftype->private must be set to the blkcg_policy.
626 */
627int blkg_print_stat_bytes(struct seq_file *sf, void *v)
628{
629 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
630 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
631 offsetof(struct blkcg_gq, stat_bytes), true);
632 return 0;
633}
634EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
635
636/**
637 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
638 * @sf: seq_file to print to
639 * @v: unused
640 *
641 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
642 * must be set to the blkcg_policy.
643 */
644int blkg_print_stat_ios(struct seq_file *sf, void *v)
645{
646 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
647 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
648 offsetof(struct blkcg_gq, stat_ios), true);
649 return 0;
650}
651EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
652
653static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
654 struct blkg_policy_data *pd,
655 int off)
656{
657 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
658 NULL, off);
659 return __blkg_prfill_rwstat(sf, pd, &rwstat);
660}
661
662/**
663 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
664 * @sf: seq_file to print to
665 * @v: unused
666 */
667int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
668{
669 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
670 blkg_prfill_rwstat_field_recursive,
671 (void *)seq_cft(sf)->private,
672 offsetof(struct blkcg_gq, stat_bytes), true);
673 return 0;
674}
675EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
676
677/**
678 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
679 * @sf: seq_file to print to
680 * @v: unused
681 */
682int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
683{
684 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
685 blkg_prfill_rwstat_field_recursive,
686 (void *)seq_cft(sf)->private,
687 offsetof(struct blkcg_gq, stat_ios), true);
688 return 0;
689}
690EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
691
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700692/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800693 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700694 * @blkg: blkg of interest
695 * @pol: blkcg_policy which contains the blkg_stat
696 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800697 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700698 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
699 * online descendants and their aux counts. The caller must be holding the
700 * queue lock for online tests.
701 *
702 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
703 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800704 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700705u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
706 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800707{
Tejun Heo16b3de62013-01-09 08:05:12 -0800708 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400709 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400710 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800711
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700712 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800713
Tejun Heo16b3de62013-01-09 08:05:12 -0800714 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700715 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
716 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800717
Tejun Heof12c74c2015-08-18 14:55:23 -0700718 if (!pos_blkg->online)
719 continue;
720
721 if (pol)
722 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
723 else
724 stat = (void *)blkg + off;
725
726 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800727 }
728 rcu_read_unlock();
729
730 return sum;
731}
732EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
733
734/**
735 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700736 * @blkg: blkg of interest
737 * @pol: blkcg_policy which contains the blkg_rwstat
738 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800739 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700740 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
741 * online descendants and their aux counts. The caller must be holding the
742 * queue lock for online tests.
743 *
744 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
745 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800746 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700747struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
748 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800749{
Tejun Heo16b3de62013-01-09 08:05:12 -0800750 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400751 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400752 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800753 int i;
754
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700755 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800756
Tejun Heo16b3de62013-01-09 08:05:12 -0800757 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700758 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700759 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800760
761 if (!pos_blkg->online)
762 continue;
763
Tejun Heof12c74c2015-08-18 14:55:23 -0700764 if (pol)
765 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
766 else
767 rwstat = (void *)pos_blkg + off;
768
Tejun Heo16b3de62013-01-09 08:05:12 -0800769 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700770 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
771 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
772 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800773 }
774 rcu_read_unlock();
775
776 return sum;
777}
778EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
779
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600780/* Performs queue bypass and policy enabled checks then looks up blkg. */
781static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
782 const struct blkcg_policy *pol,
783 struct request_queue *q)
784{
785 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700786 lockdep_assert_held(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600787
788 if (!blkcg_policy_enabled(q, pol))
789 return ERR_PTR(-EOPNOTSUPP);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600790 return __blkg_lookup(blkcg, q, true /* update_hint */);
791}
792
Tejun Heo16b3de62013-01-09 08:05:12 -0800793/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700794 * blkg_conf_prep - parse and prepare for per-blkg config update
795 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700796 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700797 * @input: input string
798 * @ctx: blkg_conf_ctx to be filled
799 *
800 * Parse per-blkg config update from @input and initialize @ctx with the
Tejun Heo36aa9e52015-08-18 14:55:31 -0700801 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
802 * part of @input following MAJ:MIN. This function returns with RCU read
803 * lock and queue lock held and must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700804 */
Tejun Heo3c798392012-04-16 13:57:25 -0700805int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700806 char *input, struct blkg_conf_ctx *ctx)
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700807 __acquires(rcu) __acquires(&disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800808{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700809 struct gendisk *disk;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600810 struct request_queue *q;
Tejun Heo3c798392012-04-16 13:57:25 -0700811 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700812 unsigned int major, minor;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700813 int key_len, part, ret;
814 char *body;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800815
Tejun Heo36aa9e52015-08-18 14:55:31 -0700816 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
Tejun Heo726fa692012-04-01 14:38:43 -0700817 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700818
Tejun Heo36aa9e52015-08-18 14:55:31 -0700819 body = input + key_len;
820 if (!isspace(*body))
821 return -EINVAL;
822 body = skip_spaces(body);
823
Tejun Heo726fa692012-04-01 14:38:43 -0700824 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400825 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700826 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400827 if (part) {
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600828 ret = -ENODEV;
829 goto fail;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400830 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800831
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600832 q = disk->queue;
833
Tejun Heoe56da7e2012-03-05 13:15:07 -0800834 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700835 spin_lock_irq(&q->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700836
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600837 blkg = blkg_lookup_check(blkcg, pol, q);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800838 if (IS_ERR(blkg)) {
839 ret = PTR_ERR(blkg);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600840 goto fail_unlock;
Vivek Goyal062a6442010-09-15 17:06:33 -0400841 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800842
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600843 if (blkg)
844 goto success;
845
846 /*
847 * Create blkgs walking down from blkcg_root to @blkcg, so that all
848 * non-root blkgs have access to their parents.
849 */
850 while (true) {
851 struct blkcg *pos = blkcg;
852 struct blkcg *parent;
853 struct blkcg_gq *new_blkg;
854
855 parent = blkcg_parent(blkcg);
856 while (parent && !__blkg_lookup(parent, q, false)) {
857 pos = parent;
858 parent = blkcg_parent(parent);
859 }
860
861 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700862 spin_unlock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600863 rcu_read_unlock();
864
865 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
866 if (unlikely(!new_blkg)) {
867 ret = -ENOMEM;
868 goto fail;
869 }
870
871 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700872 spin_lock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600873
874 blkg = blkg_lookup_check(pos, pol, q);
875 if (IS_ERR(blkg)) {
876 ret = PTR_ERR(blkg);
877 goto fail_unlock;
878 }
879
880 if (blkg) {
881 blkg_free(new_blkg);
882 } else {
883 blkg = blkg_create(pos, q, new_blkg);
884 if (unlikely(IS_ERR(blkg))) {
885 ret = PTR_ERR(blkg);
886 goto fail_unlock;
887 }
888 }
889
890 if (pos == blkcg)
891 goto success;
892 }
893success:
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700894 ctx->disk = disk;
895 ctx->blkg = blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700896 ctx->body = body;
Tejun Heo726fa692012-04-01 14:38:43 -0700897 return 0;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600898
899fail_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700900 spin_unlock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600901 rcu_read_unlock();
902fail:
Jan Kara9df6c292018-02-26 13:01:39 +0100903 put_disk_and_module(disk);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600904 /*
905 * If queue was bypassing, we should retry. Do so after a
906 * short msleep(). It isn't strictly necessary but queue
907 * can be bypassing for some time and it's always nice to
908 * avoid busy looping.
909 */
910 if (ret == -EBUSY) {
911 msleep(10);
912 ret = restart_syscall();
913 }
914 return ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800915}
916
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700917/**
918 * blkg_conf_finish - finish up per-blkg config update
919 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
920 *
921 * Finish up after per-blkg config update. This function must be paired
922 * with blkg_conf_prep().
923 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700924void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700925 __releases(&ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800926{
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700927 spin_unlock_irq(&ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700928 rcu_read_unlock();
Jan Kara9df6c292018-02-26 13:01:39 +0100929 put_disk_and_module(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800930}
931
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700932static int blkcg_print_stat(struct seq_file *sf, void *v)
933{
934 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
935 struct blkcg_gq *blkg;
936
937 rcu_read_lock();
938
939 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
940 const char *dname;
Josef Bacik903d23f2018-07-03 11:14:52 -0400941 char *buf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700942 struct blkg_rwstat rwstat;
Tejun Heo636620b2018-07-18 04:47:41 -0700943 u64 rbytes, wbytes, rios, wios, dbytes, dios;
Josef Bacik903d23f2018-07-03 11:14:52 -0400944 size_t size = seq_get_buf(sf, &buf), off = 0;
945 int i;
946 bool has_stats = false;
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700947
948 dname = blkg_dev_name(blkg);
949 if (!dname)
950 continue;
951
Josef Bacik903d23f2018-07-03 11:14:52 -0400952 /*
953 * Hooray string manipulation, count is the size written NOT
954 * INCLUDING THE \0, so size is now count+1 less than what we
955 * had before, but we want to start writing the next bit from
956 * the \0 so we only add count to buf.
957 */
958 off += scnprintf(buf+off, size-off, "%s ", dname);
959
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700960 spin_lock_irq(&blkg->q->queue_lock);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700961
962 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
963 offsetof(struct blkcg_gq, stat_bytes));
964 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
965 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heo636620b2018-07-18 04:47:41 -0700966 dbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700967
968 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
969 offsetof(struct blkcg_gq, stat_ios));
970 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
971 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heo636620b2018-07-18 04:47:41 -0700972 dios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700973
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700974 spin_unlock_irq(&blkg->q->queue_lock);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700975
Josef Bacik903d23f2018-07-03 11:14:52 -0400976 if (rbytes || wbytes || rios || wios) {
977 has_stats = true;
978 off += scnprintf(buf+off, size-off,
Tejun Heo636620b2018-07-18 04:47:41 -0700979 "rbytes=%llu wbytes=%llu rios=%llu wios=%llu dbytes=%llu dios=%llu",
980 rbytes, wbytes, rios, wios,
981 dbytes, dios);
Josef Bacik903d23f2018-07-03 11:14:52 -0400982 }
983
984 if (!blkcg_debug_stats)
985 goto next;
986
Josef Bacikd09d8df2018-07-03 11:14:55 -0400987 if (atomic_read(&blkg->use_delay)) {
988 has_stats = true;
989 off += scnprintf(buf+off, size-off,
990 " use_delay=%d delay_nsec=%llu",
991 atomic_read(&blkg->use_delay),
992 (unsigned long long)atomic64_read(&blkg->delay_nsec));
993 }
994
Josef Bacik903d23f2018-07-03 11:14:52 -0400995 for (i = 0; i < BLKCG_MAX_POLS; i++) {
996 struct blkcg_policy *pol = blkcg_policy[i];
997 size_t written;
998
999 if (!blkg->pd[i] || !pol->pd_stat_fn)
1000 continue;
1001
1002 written = pol->pd_stat_fn(blkg->pd[i], buf+off, size-off);
1003 if (written)
1004 has_stats = true;
1005 off += written;
1006 }
1007next:
1008 if (has_stats) {
1009 off += scnprintf(buf+off, size-off, "\n");
1010 seq_commit(sf, off);
1011 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001012 }
1013
1014 rcu_read_unlock();
1015 return 0;
1016}
1017
Bart Van Asschee1f3b942016-06-14 17:04:32 +02001018static struct cftype blkcg_files[] = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001019 {
1020 .name = "stat",
Tejun Heoca0752c2015-10-22 09:48:37 +09001021 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001022 .seq_show = blkcg_print_stat,
1023 },
1024 { } /* terminate */
1025};
1026
Bart Van Asschee1f3b942016-06-14 17:04:32 +02001027static struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001028 {
Divyesh Shah84c124d2010-04-09 08:31:19 +02001029 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -07001030 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -05001031 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001032 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -05001033};
1034
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001035/*
1036 * blkcg destruction is a three-stage process.
1037 *
1038 * 1. Destruction starts. The blkcg_css_offline() callback is invoked
1039 * which offlines writeback. Here we tie the next stage of blkg destruction
1040 * to the completion of writeback associated with the blkcg. This lets us
1041 * avoid punting potentially large amounts of outstanding writeback to root
1042 * while maintaining any ongoing policies. The next stage is triggered when
1043 * the nr_cgwbs count goes to zero.
1044 *
1045 * 2. When the nr_cgwbs count goes to zero, blkcg_destroy_blkgs() is called
1046 * and handles the destruction of blkgs. Here the css reference held by
1047 * the blkg is put back eventually allowing blkcg_css_free() to be called.
1048 * This work may occur in cgwb_release_workfn() on the cgwb_release
1049 * workqueue. Any submitted ios that fail to get the blkg ref will be
1050 * punted to the root_blkg.
1051 *
1052 * 3. Once the blkcg ref count goes to zero, blkcg_css_free() is called.
1053 * This finally frees the blkcg.
1054 */
1055
Tejun Heo9f13ef62012-03-05 13:15:21 -08001056/**
Tejun Heo92fb9742012-11-19 08:13:38 -08001057 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -04001058 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -08001059 *
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001060 * This function is called when @css is about to go away. Here the cgwbs are
1061 * offlined first and only once writeback associated with the blkcg has
1062 * finished do we start step 2 (see above).
Tejun Heo9f13ef62012-03-05 13:15:21 -08001063 */
Tejun Heoeb954192013-08-08 20:11:23 -04001064static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001065{
Tejun Heoeb954192013-08-08 20:11:23 -04001066 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001067
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001068 /* this prevents anyone from attaching or migrating to this blkcg */
1069 wb_blkcg_offline(blkcg);
1070
1071 /* put the base cgwb reference allowing step 2 to be triggered */
1072 blkcg_cgwb_put(blkcg);
1073}
1074
1075/**
1076 * blkcg_destroy_blkgs - responsible for shooting down blkgs
1077 * @blkcg: blkcg of interest
1078 *
1079 * blkgs should be removed while holding both q and blkcg locks. As blkcg lock
1080 * is nested inside q lock, this function performs reverse double lock dancing.
1081 * Destroying the blkgs releases the reference held on the blkcg's css allowing
1082 * blkcg_css_free to eventually be called.
1083 *
1084 * This is the blkcg counterpart of ioc_release_fn().
1085 */
1086void blkcg_destroy_blkgs(struct blkcg *blkcg)
1087{
Tejun Heo9f13ef62012-03-05 13:15:21 -08001088 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001089
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001090 while (!hlist_empty(&blkcg->blkg_list)) {
1091 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1092 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -08001093 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001094
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001095 if (spin_trylock(&q->queue_lock)) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001096 blkg_destroy(blkg);
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001097 spin_unlock(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001098 } else {
1099 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001100 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +02001101 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001102 }
Tejun Heo9f13ef62012-03-05 13:15:21 -08001103 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001104
Tejun Heo9f13ef62012-03-05 13:15:21 -08001105 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001106}
1107
Tejun Heoeb954192013-08-08 20:11:23 -04001108static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -08001109{
Tejun Heoeb954192013-08-08 20:11:23 -04001110 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -07001111 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -08001112
Tejun Heo7876f932015-07-09 16:39:49 -04001113 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001114
Tejun Heo7876f932015-07-09 16:39:49 -04001115 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -04001116
Tejun Heobc915e62015-08-18 14:55:08 -07001117 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001118 if (blkcg->cpd[i])
1119 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1120
1121 mutex_unlock(&blkcg_pol_mutex);
1122
Tejun Heobc915e62015-08-18 14:55:08 -07001123 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001124}
1125
Tejun Heoeb954192013-08-08 20:11:23 -04001126static struct cgroup_subsys_state *
1127blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001128{
Tejun Heo3c798392012-04-16 13:57:25 -07001129 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001130 struct cgroup_subsys_state *ret;
1131 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001132
Tejun Heo7876f932015-07-09 16:39:49 -04001133 mutex_lock(&blkcg_pol_mutex);
1134
Tejun Heoeb954192013-08-08 20:11:23 -04001135 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -07001136 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -07001137 } else {
1138 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1139 if (!blkcg) {
1140 ret = ERR_PTR(-ENOMEM);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001141 goto unlock;
Tejun Heobc915e62015-08-18 14:55:08 -07001142 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001143 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001144
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001145 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1146 struct blkcg_policy *pol = blkcg_policy[i];
1147 struct blkcg_policy_data *cpd;
1148
1149 /*
1150 * If the policy hasn't been attached yet, wait for it
1151 * to be attached before doing anything else. Otherwise,
1152 * check if the policy requires any specific per-cgroup
1153 * data: if it does, allocate and initialize it.
1154 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001155 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001156 continue;
1157
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001158 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001159 if (!cpd) {
1160 ret = ERR_PTR(-ENOMEM);
1161 goto free_pd_blkcg;
1162 }
Tejun Heo81437642015-08-18 14:55:15 -07001163 blkcg->cpd[i] = cpd;
1164 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001165 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001166 if (pol->cpd_init_fn)
1167 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001168 }
1169
Vivek Goyal31e4c282009-12-03 12:59:42 -05001170 spin_lock_init(&blkcg->lock);
Tejun Heoe00f4f42016-11-21 18:03:32 -05001171 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001172 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -04001173#ifdef CONFIG_CGROUP_WRITEBACK
1174 INIT_LIST_HEAD(&blkcg->cgwb_list);
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001175 refcount_set(&blkcg->cgwb_refcnt, 1);
Tejun Heo52ebea72015-05-22 17:13:37 -04001176#endif
Tejun Heo7876f932015-07-09 16:39:49 -04001177 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1178
1179 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001180 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001181
1182free_pd_blkcg:
1183 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001184 if (blkcg->cpd[i])
1185 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001186
1187 if (blkcg != &blkcg_root)
1188 kfree(blkcg);
1189unlock:
Tejun Heo7876f932015-07-09 16:39:49 -04001190 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001191 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001192}
1193
Tejun Heo5efd6112012-03-05 13:15:12 -08001194/**
1195 * blkcg_init_queue - initialize blkcg part of request queue
1196 * @q: request_queue to initialize
1197 *
1198 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1199 * part of new request_queue @q.
1200 *
1201 * RETURNS:
1202 * 0 on success, -errno on failure.
1203 */
1204int blkcg_init_queue(struct request_queue *q)
1205{
Jens Axboed708f0d2017-03-29 11:25:48 -06001206 struct blkcg_gq *new_blkg, *blkg;
1207 bool preloaded;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001208 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001209
Jens Axboed708f0d2017-03-29 11:25:48 -06001210 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1211 if (!new_blkg)
1212 return -ENOMEM;
1213
1214 preloaded = !radix_tree_preload(GFP_KERNEL);
1215
Jiang Biaobea54882018-04-19 12:04:26 +08001216 /* Make sure the root blkg exists. */
Tejun Heoec13b1d2015-05-22 17:13:19 -04001217 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001218 spin_lock_irq(&q->queue_lock);
Jens Axboed708f0d2017-03-29 11:25:48 -06001219 blkg = blkg_create(&blkcg_root, q, new_blkg);
Jiang Biao901932a2018-04-19 12:06:09 +08001220 if (IS_ERR(blkg))
1221 goto err_unlock;
1222 q->root_blkg = blkg;
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001223 spin_unlock_irq(&q->queue_lock);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001224 rcu_read_unlock();
1225
Jens Axboed708f0d2017-03-29 11:25:48 -06001226 if (preloaded)
1227 radix_tree_preload_end();
1228
Josef Bacikd7067512018-07-03 11:15:01 -04001229 ret = blk_iolatency_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001230 if (ret)
1231 goto err_destroy_all;
Josef Bacikd7067512018-07-03 11:15:01 -04001232
Tejun Heoec13b1d2015-05-22 17:13:19 -04001233 ret = blk_throtl_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001234 if (ret)
1235 goto err_destroy_all;
1236 return 0;
Jiang Biao901932a2018-04-19 12:06:09 +08001237
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001238err_destroy_all:
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001239 blkg_destroy_all(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001240 return ret;
Jiang Biao901932a2018-04-19 12:06:09 +08001241err_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001242 spin_unlock_irq(&q->queue_lock);
Jiang Biao901932a2018-04-19 12:06:09 +08001243 rcu_read_unlock();
1244 if (preloaded)
1245 radix_tree_preload_end();
1246 return PTR_ERR(blkg);
Tejun Heo5efd6112012-03-05 13:15:12 -08001247}
1248
1249/**
1250 * blkcg_drain_queue - drain blkcg part of request_queue
1251 * @q: request_queue to drain
1252 *
1253 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1254 */
1255void blkcg_drain_queue(struct request_queue *q)
1256{
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001257 lockdep_assert_held(&q->queue_lock);
Tejun Heo5efd6112012-03-05 13:15:12 -08001258
Tejun Heo0b462c82014-07-05 18:43:21 -04001259 /*
1260 * @q could be exiting and already have destroyed all blkgs as
1261 * indicated by NULL root_blkg. If so, don't confuse policies.
1262 */
1263 if (!q->root_blkg)
1264 return;
1265
Tejun Heo5efd6112012-03-05 13:15:12 -08001266 blk_throtl_drain(q);
1267}
1268
1269/**
1270 * blkcg_exit_queue - exit and release blkcg part of request_queue
1271 * @q: request_queue being released
1272 *
Marcos Paulo de Souza7585d502019-01-25 00:01:42 -02001273 * Called from blk_exit_queue(). Responsible for exiting blkcg part.
Tejun Heo5efd6112012-03-05 13:15:12 -08001274 */
1275void blkcg_exit_queue(struct request_queue *q)
1276{
Tejun Heo3c96cb32012-04-13 13:11:34 -07001277 blkg_destroy_all(q);
Tejun Heo5efd6112012-03-05 13:15:12 -08001278 blk_throtl_exit(q);
1279}
1280
Vivek Goyal31e4c282009-12-03 12:59:42 -05001281/*
1282 * We cannot support shared io contexts, as we have no mean to support
1283 * two tasks with the same ioc in two different groups without major rework
1284 * of the main cic data structures. For now we allow a task to change
1285 * its cgroup only if it's the only owner of its ioc.
1286 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001287static int blkcg_can_attach(struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001288{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001289 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001290 struct cgroup_subsys_state *dst_css;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001291 struct io_context *ioc;
1292 int ret = 0;
1293
1294 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001295 cgroup_taskset_for_each(task, dst_css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001296 task_lock(task);
1297 ioc = task->io_context;
1298 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1299 ret = -EINVAL;
1300 task_unlock(task);
1301 if (ret)
1302 break;
1303 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001304 return ret;
1305}
1306
Tejun Heo69d7fde2015-08-18 14:55:36 -07001307static void blkcg_bind(struct cgroup_subsys_state *root_css)
1308{
1309 int i;
1310
1311 mutex_lock(&blkcg_pol_mutex);
1312
1313 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1314 struct blkcg_policy *pol = blkcg_policy[i];
1315 struct blkcg *blkcg;
1316
1317 if (!pol || !pol->cpd_bind_fn)
1318 continue;
1319
1320 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1321 if (blkcg->cpd[pol->plid])
1322 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1323 }
1324 mutex_unlock(&blkcg_pol_mutex);
1325}
1326
Josef Bacikd09d8df2018-07-03 11:14:55 -04001327static void blkcg_exit(struct task_struct *tsk)
1328{
1329 if (tsk->throttle_queue)
1330 blk_put_queue(tsk->throttle_queue);
1331 tsk->throttle_queue = NULL;
1332}
1333
Tejun Heoc165b3e2015-08-18 14:55:29 -07001334struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001335 .css_alloc = blkcg_css_alloc,
1336 .css_offline = blkcg_css_offline,
1337 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001338 .can_attach = blkcg_can_attach,
Tejun Heo69d7fde2015-08-18 14:55:36 -07001339 .bind = blkcg_bind,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001340 .dfl_cftypes = blkcg_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001341 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001342 .legacy_name = "blkio",
Josef Bacikd09d8df2018-07-03 11:14:55 -04001343 .exit = blkcg_exit,
Tejun Heo1ced9532014-07-08 18:02:57 -04001344#ifdef CONFIG_MEMCG
1345 /*
1346 * This ensures that, if available, memcg is automatically enabled
1347 * together on the default hierarchy so that the owner cgroup can
1348 * be retrieved from writeback pages.
1349 */
1350 .depends_on = 1 << memory_cgrp_id,
1351#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001352};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001353EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001354
Tejun Heo8bd435b2012-04-13 13:11:28 -07001355/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001356 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1357 * @q: request_queue of interest
1358 * @pol: blkcg policy to activate
1359 *
1360 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1361 * bypass mode to populate its blkgs with policy_data for @pol.
1362 *
1363 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1364 * from IO path. Update of each blkg is protected by both queue and blkcg
1365 * locks so that holding either lock and testing blkcg_policy_enabled() is
1366 * always enough for dereferencing policy data.
1367 *
1368 * The caller is responsible for synchronizing [de]activations and policy
1369 * [un]registerations. Returns 0 on success, -errno on failure.
1370 */
1371int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001372 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001373{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001374 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001375 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001376 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001377
1378 if (blkcg_policy_enabled(q, pol))
1379 return 0;
1380
Jens Axboe344e9ff2018-11-15 12:22:51 -07001381 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001382 blk_mq_freeze_queue(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001383pd_prealloc:
1384 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001385 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001386 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001387 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001388 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001389 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001390 }
1391
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001392 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001393
1394 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001395 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001396
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001397 if (blkg->pd[pol->plid])
1398 continue;
1399
Tejun Heoe00f4f42016-11-21 18:03:32 -05001400 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001401 if (!pd)
1402 swap(pd, pd_prealloc);
1403 if (!pd) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001404 spin_unlock_irq(&q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001405 goto pd_prealloc;
1406 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001407
1408 blkg->pd[pol->plid] = pd;
1409 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001410 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001411 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001412 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001413 }
1414
1415 __set_bit(pol->plid, q->blkcg_pols);
1416 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001417
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001418 spin_unlock_irq(&q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001419out_bypass_end:
Jens Axboe344e9ff2018-11-15 12:22:51 -07001420 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001421 blk_mq_unfreeze_queue(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001422 if (pd_prealloc)
1423 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001424 return ret;
1425}
1426EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1427
1428/**
1429 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1430 * @q: request_queue of interest
1431 * @pol: blkcg policy to deactivate
1432 *
1433 * Deactivate @pol on @q. Follows the same synchronization rules as
1434 * blkcg_activate_policy().
1435 */
1436void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001437 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001438{
Tejun Heo3c798392012-04-16 13:57:25 -07001439 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001440
1441 if (!blkcg_policy_enabled(q, pol))
1442 return;
1443
Jens Axboe344e9ff2018-11-15 12:22:51 -07001444 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001445 blk_mq_freeze_queue(q);
Jens Axboebd166ef2017-01-17 06:03:22 -07001446
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001447 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001448
1449 __clear_bit(pol->plid, q->blkcg_pols);
1450
1451 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo001bea72015-08-18 14:55:11 -07001452 if (blkg->pd[pol->plid]) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001453 if (pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001454 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001455 pol->pd_free_fn(blkg->pd[pol->plid]);
1456 blkg->pd[pol->plid] = NULL;
1457 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001458 }
1459
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001460 spin_unlock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001461
Jens Axboe344e9ff2018-11-15 12:22:51 -07001462 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001463 blk_mq_unfreeze_queue(q);
Tejun Heoa2b16932012-04-13 13:11:33 -07001464}
1465EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1466
1467/**
Tejun Heo3c798392012-04-16 13:57:25 -07001468 * blkcg_policy_register - register a blkcg policy
1469 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001470 *
Tejun Heo3c798392012-04-16 13:57:25 -07001471 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1472 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001473 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001474int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001475{
Tejun Heo06b285b2015-07-09 16:39:50 -04001476 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001477 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001478
Tejun Heo838f13b2015-07-09 16:39:47 -04001479 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001480 mutex_lock(&blkcg_pol_mutex);
1481
Tejun Heo8bd435b2012-04-13 13:11:28 -07001482 /* find an empty slot */
1483 ret = -ENOSPC;
1484 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001485 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001486 break;
Jens Axboe01c5f852018-09-11 10:59:53 -06001487 if (i >= BLKCG_MAX_POLS) {
1488 pr_warn("blkcg_policy_register: BLKCG_MAX_POLS too small\n");
Tejun Heo838f13b2015-07-09 16:39:47 -04001489 goto err_unlock;
Jens Axboe01c5f852018-09-11 10:59:53 -06001490 }
Tejun Heo035d10b2012-03-05 13:15:04 -08001491
weiping zhange8401072017-10-17 23:56:21 +08001492 /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1493 if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1494 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1495 goto err_unlock;
1496
Tejun Heo06b285b2015-07-09 16:39:50 -04001497 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001498 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001499 blkcg_policy[pol->plid] = pol;
1500
1501 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001502 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001503 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1504 struct blkcg_policy_data *cpd;
1505
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001506 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Bart Van Asschebbb427e2016-09-29 08:33:30 -07001507 if (!cpd)
Tejun Heo06b285b2015-07-09 16:39:50 -04001508 goto err_free_cpds;
Tejun Heo06b285b2015-07-09 16:39:50 -04001509
Tejun Heo81437642015-08-18 14:55:15 -07001510 blkcg->cpd[pol->plid] = cpd;
1511 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001512 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001513 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001514 }
1515 }
1516
Tejun Heo838f13b2015-07-09 16:39:47 -04001517 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001518
Tejun Heo8bd435b2012-04-13 13:11:28 -07001519 /* everything is in place, add intf files for the new policy */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001520 if (pol->dfl_cftypes)
1521 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1522 pol->dfl_cftypes));
Tejun Heo880f50e2015-08-18 14:55:30 -07001523 if (pol->legacy_cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001524 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo880f50e2015-08-18 14:55:30 -07001525 pol->legacy_cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001526 mutex_unlock(&blkcg_pol_register_mutex);
1527 return 0;
1528
Tejun Heo06b285b2015-07-09 16:39:50 -04001529err_free_cpds:
weiping zhang58a9edc2017-10-10 22:53:46 +08001530 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001531 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001532 if (blkcg->cpd[pol->plid]) {
1533 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1534 blkcg->cpd[pol->plid] = NULL;
1535 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001536 }
1537 }
1538 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001539err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001540 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001541 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001542 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001543}
Tejun Heo3c798392012-04-16 13:57:25 -07001544EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001545
Tejun Heo8bd435b2012-04-13 13:11:28 -07001546/**
Tejun Heo3c798392012-04-16 13:57:25 -07001547 * blkcg_policy_unregister - unregister a blkcg policy
1548 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001549 *
Tejun Heo3c798392012-04-16 13:57:25 -07001550 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001551 */
Tejun Heo3c798392012-04-16 13:57:25 -07001552void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001553{
Tejun Heo06b285b2015-07-09 16:39:50 -04001554 struct blkcg *blkcg;
1555
Tejun Heo838f13b2015-07-09 16:39:47 -04001556 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001557
Tejun Heo3c798392012-04-16 13:57:25 -07001558 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001559 goto out_unlock;
1560
1561 /* kill the intf files first */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001562 if (pol->dfl_cftypes)
1563 cgroup_rm_cftypes(pol->dfl_cftypes);
Tejun Heo880f50e2015-08-18 14:55:30 -07001564 if (pol->legacy_cftypes)
1565 cgroup_rm_cftypes(pol->legacy_cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001566
Tejun Heo06b285b2015-07-09 16:39:50 -04001567 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001568 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001569
weiping zhang58a9edc2017-10-10 22:53:46 +08001570 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001571 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001572 if (blkcg->cpd[pol->plid]) {
1573 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1574 blkcg->cpd[pol->plid] = NULL;
1575 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001576 }
1577 }
Tejun Heo3c798392012-04-16 13:57:25 -07001578 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001579
Tejun Heobc0d6502012-04-13 13:11:26 -07001580 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001581out_unlock:
1582 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001583}
Tejun Heo3c798392012-04-16 13:57:25 -07001584EXPORT_SYMBOL_GPL(blkcg_policy_unregister);
Josef Bacik903d23f2018-07-03 11:14:52 -04001585
Josef Bacikd09d8df2018-07-03 11:14:55 -04001586/*
1587 * Scale the accumulated delay based on how long it has been since we updated
1588 * the delay. We only call this when we are adding delay, in case it's been a
1589 * while since we added delay, and when we are checking to see if we need to
1590 * delay a task, to account for any delays that may have occurred.
1591 */
1592static void blkcg_scale_delay(struct blkcg_gq *blkg, u64 now)
1593{
1594 u64 old = atomic64_read(&blkg->delay_start);
1595
1596 /*
1597 * We only want to scale down every second. The idea here is that we
1598 * want to delay people for min(delay_nsec, NSEC_PER_SEC) in a certain
1599 * time window. We only want to throttle tasks for recent delay that
1600 * has occurred, in 1 second time windows since that's the maximum
1601 * things can be throttled. We save the current delay window in
1602 * blkg->last_delay so we know what amount is still left to be charged
1603 * to the blkg from this point onward. blkg->last_use keeps track of
1604 * the use_delay counter. The idea is if we're unthrottling the blkg we
1605 * are ok with whatever is happening now, and we can take away more of
1606 * the accumulated delay as we've already throttled enough that
1607 * everybody is happy with their IO latencies.
1608 */
1609 if (time_before64(old + NSEC_PER_SEC, now) &&
1610 atomic64_cmpxchg(&blkg->delay_start, old, now) == old) {
1611 u64 cur = atomic64_read(&blkg->delay_nsec);
1612 u64 sub = min_t(u64, blkg->last_delay, now - old);
1613 int cur_use = atomic_read(&blkg->use_delay);
1614
1615 /*
1616 * We've been unthrottled, subtract a larger chunk of our
1617 * accumulated delay.
1618 */
1619 if (cur_use < blkg->last_use)
1620 sub = max_t(u64, sub, blkg->last_delay >> 1);
1621
1622 /*
1623 * This shouldn't happen, but handle it anyway. Our delay_nsec
1624 * should only ever be growing except here where we subtract out
1625 * min(last_delay, 1 second), but lord knows bugs happen and I'd
1626 * rather not end up with negative numbers.
1627 */
1628 if (unlikely(cur < sub)) {
1629 atomic64_set(&blkg->delay_nsec, 0);
1630 blkg->last_delay = 0;
1631 } else {
1632 atomic64_sub(sub, &blkg->delay_nsec);
1633 blkg->last_delay = cur - sub;
1634 }
1635 blkg->last_use = cur_use;
1636 }
1637}
1638
1639/*
1640 * This is called when we want to actually walk up the hierarchy and check to
1641 * see if we need to throttle, and then actually throttle if there is some
1642 * accumulated delay. This should only be called upon return to user space so
1643 * we're not holding some lock that would induce a priority inversion.
1644 */
1645static void blkcg_maybe_throttle_blkg(struct blkcg_gq *blkg, bool use_memdelay)
1646{
1647 u64 now = ktime_to_ns(ktime_get());
1648 u64 exp;
1649 u64 delay_nsec = 0;
1650 int tok;
1651
1652 while (blkg->parent) {
1653 if (atomic_read(&blkg->use_delay)) {
1654 blkcg_scale_delay(blkg, now);
1655 delay_nsec = max_t(u64, delay_nsec,
1656 atomic64_read(&blkg->delay_nsec));
1657 }
1658 blkg = blkg->parent;
1659 }
1660
1661 if (!delay_nsec)
1662 return;
1663
1664 /*
1665 * Let's not sleep for all eternity if we've amassed a huge delay.
1666 * Swapping or metadata IO can accumulate 10's of seconds worth of
1667 * delay, and we want userspace to be able to do _something_ so cap the
1668 * delays at 1 second. If there's 10's of seconds worth of delay then
1669 * the tasks will be delayed for 1 second for every syscall.
1670 */
1671 delay_nsec = min_t(u64, delay_nsec, 250 * NSEC_PER_MSEC);
1672
1673 /*
1674 * TODO: the use_memdelay flag is going to be for the upcoming psi stuff
1675 * that hasn't landed upstream yet. Once that stuff is in place we need
1676 * to do a psi_memstall_enter/leave if memdelay is set.
1677 */
1678
1679 exp = ktime_add_ns(now, delay_nsec);
1680 tok = io_schedule_prepare();
1681 do {
1682 __set_current_state(TASK_KILLABLE);
1683 if (!schedule_hrtimeout(&exp, HRTIMER_MODE_ABS))
1684 break;
1685 } while (!fatal_signal_pending(current));
1686 io_schedule_finish(tok);
1687}
1688
1689/**
1690 * blkcg_maybe_throttle_current - throttle the current task if it has been marked
1691 *
1692 * This is only called if we've been marked with set_notify_resume(). Obviously
1693 * we can be set_notify_resume() for reasons other than blkcg throttling, so we
1694 * check to see if current->throttle_queue is set and if not this doesn't do
1695 * anything. This should only ever be called by the resume code, it's not meant
1696 * to be called by people willy-nilly as it will actually do the work to
1697 * throttle the task if it is setup for throttling.
1698 */
1699void blkcg_maybe_throttle_current(void)
1700{
1701 struct request_queue *q = current->throttle_queue;
1702 struct cgroup_subsys_state *css;
1703 struct blkcg *blkcg;
1704 struct blkcg_gq *blkg;
1705 bool use_memdelay = current->use_memdelay;
1706
1707 if (!q)
1708 return;
1709
1710 current->throttle_queue = NULL;
1711 current->use_memdelay = false;
1712
1713 rcu_read_lock();
1714 css = kthread_blkcg();
1715 if (css)
1716 blkcg = css_to_blkcg(css);
1717 else
1718 blkcg = css_to_blkcg(task_css(current, io_cgrp_id));
1719
1720 if (!blkcg)
1721 goto out;
1722 blkg = blkg_lookup(blkcg, q);
1723 if (!blkg)
1724 goto out;
Dennis Zhou7754f662018-12-05 12:10:39 -05001725 if (!blkg_tryget(blkg))
Josef Bacikd09d8df2018-07-03 11:14:55 -04001726 goto out;
1727 rcu_read_unlock();
Josef Bacikd09d8df2018-07-03 11:14:55 -04001728
1729 blkcg_maybe_throttle_blkg(blkg, use_memdelay);
1730 blkg_put(blkg);
Josef Bacikcc7ecc252018-07-31 12:39:03 -04001731 blk_put_queue(q);
Josef Bacikd09d8df2018-07-03 11:14:55 -04001732 return;
1733out:
1734 rcu_read_unlock();
1735 blk_put_queue(q);
1736}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001737
1738/**
1739 * blkcg_schedule_throttle - this task needs to check for throttling
Bart Van Assche537d71b2019-03-20 13:18:45 -07001740 * @q: the request queue IO was submitted on
1741 * @use_memdelay: do we charge this to memory delay for PSI
Josef Bacikd09d8df2018-07-03 11:14:55 -04001742 *
1743 * This is called by the IO controller when we know there's delay accumulated
1744 * for the blkg for this task. We do not pass the blkg because there are places
1745 * we call this that may not have that information, the swapping code for
1746 * instance will only have a request_queue at that point. This set's the
1747 * notify_resume for the task to check and see if it requires throttling before
1748 * returning to user space.
1749 *
1750 * We will only schedule once per syscall. You can call this over and over
1751 * again and it will only do the check once upon return to user space, and only
1752 * throttle once. If the task needs to be throttled again it'll need to be
1753 * re-set at the next time we see the task.
1754 */
1755void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay)
1756{
1757 if (unlikely(current->flags & PF_KTHREAD))
1758 return;
1759
1760 if (!blk_get_queue(q))
1761 return;
1762
1763 if (current->throttle_queue)
1764 blk_put_queue(current->throttle_queue);
1765 current->throttle_queue = q;
1766 if (use_memdelay)
1767 current->use_memdelay = use_memdelay;
1768 set_notify_resume(current);
1769}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001770
1771/**
1772 * blkcg_add_delay - add delay to this blkg
Bart Van Assche537d71b2019-03-20 13:18:45 -07001773 * @blkg: blkg of interest
1774 * @now: the current time in nanoseconds
1775 * @delta: how many nanoseconds of delay to add
Josef Bacikd09d8df2018-07-03 11:14:55 -04001776 *
1777 * Charge @delta to the blkg's current delay accumulation. This is used to
1778 * throttle tasks if an IO controller thinks we need more throttling.
1779 */
1780void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta)
1781{
1782 blkcg_scale_delay(blkg, now);
1783 atomic64_add(delta, &blkg->delay_nsec);
1784}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001785
Josef Bacik903d23f2018-07-03 11:14:52 -04001786module_param(blkcg_debug_stats, bool, 0644);
1787MODULE_PARM_DESC(blkcg_debug_stats, "True if you want debug stats, false if not");