blob: e4715b35d42c30704309547b6bc051e9b738ee0f [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);
Kefeng Wang98d669b2019-06-05 22:24:27 +0800884 if (IS_ERR(blkg)) {
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600885 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) {
Tejun Heof539da82019-06-13 15:30:38 -07001009 if (off < size - 1) {
1010 off += scnprintf(buf+off, size-off, "\n");
1011 seq_commit(sf, off);
1012 } else {
1013 seq_commit(sf, -1);
1014 }
Josef Bacik903d23f2018-07-03 11:14:52 -04001015 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001016 }
1017
1018 rcu_read_unlock();
1019 return 0;
1020}
1021
Bart Van Asschee1f3b942016-06-14 17:04:32 +02001022static struct cftype blkcg_files[] = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001023 {
1024 .name = "stat",
Tejun Heoca0752c2015-10-22 09:48:37 +09001025 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001026 .seq_show = blkcg_print_stat,
1027 },
1028 { } /* terminate */
1029};
1030
Bart Van Asschee1f3b942016-06-14 17:04:32 +02001031static struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001032 {
Divyesh Shah84c124d2010-04-09 08:31:19 +02001033 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -07001034 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -05001035 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001036 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -05001037};
1038
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001039/*
1040 * blkcg destruction is a three-stage process.
1041 *
1042 * 1. Destruction starts. The blkcg_css_offline() callback is invoked
1043 * which offlines writeback. Here we tie the next stage of blkg destruction
1044 * to the completion of writeback associated with the blkcg. This lets us
1045 * avoid punting potentially large amounts of outstanding writeback to root
1046 * while maintaining any ongoing policies. The next stage is triggered when
1047 * the nr_cgwbs count goes to zero.
1048 *
1049 * 2. When the nr_cgwbs count goes to zero, blkcg_destroy_blkgs() is called
1050 * and handles the destruction of blkgs. Here the css reference held by
1051 * the blkg is put back eventually allowing blkcg_css_free() to be called.
1052 * This work may occur in cgwb_release_workfn() on the cgwb_release
1053 * workqueue. Any submitted ios that fail to get the blkg ref will be
1054 * punted to the root_blkg.
1055 *
1056 * 3. Once the blkcg ref count goes to zero, blkcg_css_free() is called.
1057 * This finally frees the blkcg.
1058 */
1059
Tejun Heo9f13ef62012-03-05 13:15:21 -08001060/**
Tejun Heo92fb9742012-11-19 08:13:38 -08001061 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -04001062 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -08001063 *
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001064 * This function is called when @css is about to go away. Here the cgwbs are
1065 * offlined first and only once writeback associated with the blkcg has
1066 * finished do we start step 2 (see above).
Tejun Heo9f13ef62012-03-05 13:15:21 -08001067 */
Tejun Heoeb954192013-08-08 20:11:23 -04001068static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001069{
Tejun Heoeb954192013-08-08 20:11:23 -04001070 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001071
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001072 /* this prevents anyone from attaching or migrating to this blkcg */
1073 wb_blkcg_offline(blkcg);
1074
1075 /* put the base cgwb reference allowing step 2 to be triggered */
1076 blkcg_cgwb_put(blkcg);
1077}
1078
1079/**
1080 * blkcg_destroy_blkgs - responsible for shooting down blkgs
1081 * @blkcg: blkcg of interest
1082 *
1083 * blkgs should be removed while holding both q and blkcg locks. As blkcg lock
1084 * is nested inside q lock, this function performs reverse double lock dancing.
1085 * Destroying the blkgs releases the reference held on the blkcg's css allowing
1086 * blkcg_css_free to eventually be called.
1087 *
1088 * This is the blkcg counterpart of ioc_release_fn().
1089 */
1090void blkcg_destroy_blkgs(struct blkcg *blkcg)
1091{
Tejun Heo9f13ef62012-03-05 13:15:21 -08001092 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001093
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001094 while (!hlist_empty(&blkcg->blkg_list)) {
1095 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1096 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -08001097 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001098
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001099 if (spin_trylock(&q->queue_lock)) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001100 blkg_destroy(blkg);
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001101 spin_unlock(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001102 } else {
1103 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001104 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +02001105 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001106 }
Tejun Heo9f13ef62012-03-05 13:15:21 -08001107 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001108
Tejun Heo9f13ef62012-03-05 13:15:21 -08001109 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001110}
1111
Tejun Heoeb954192013-08-08 20:11:23 -04001112static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -08001113{
Tejun Heoeb954192013-08-08 20:11:23 -04001114 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -07001115 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -08001116
Tejun Heo7876f932015-07-09 16:39:49 -04001117 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001118
Tejun Heo7876f932015-07-09 16:39:49 -04001119 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -04001120
Tejun Heobc915e62015-08-18 14:55:08 -07001121 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001122 if (blkcg->cpd[i])
1123 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1124
1125 mutex_unlock(&blkcg_pol_mutex);
1126
Tejun Heobc915e62015-08-18 14:55:08 -07001127 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001128}
1129
Tejun Heoeb954192013-08-08 20:11:23 -04001130static struct cgroup_subsys_state *
1131blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001132{
Tejun Heo3c798392012-04-16 13:57:25 -07001133 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001134 struct cgroup_subsys_state *ret;
1135 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001136
Tejun Heo7876f932015-07-09 16:39:49 -04001137 mutex_lock(&blkcg_pol_mutex);
1138
Tejun Heoeb954192013-08-08 20:11:23 -04001139 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -07001140 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -07001141 } else {
1142 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1143 if (!blkcg) {
1144 ret = ERR_PTR(-ENOMEM);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001145 goto unlock;
Tejun Heobc915e62015-08-18 14:55:08 -07001146 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001147 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001148
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001149 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1150 struct blkcg_policy *pol = blkcg_policy[i];
1151 struct blkcg_policy_data *cpd;
1152
1153 /*
1154 * If the policy hasn't been attached yet, wait for it
1155 * to be attached before doing anything else. Otherwise,
1156 * check if the policy requires any specific per-cgroup
1157 * data: if it does, allocate and initialize it.
1158 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001159 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001160 continue;
1161
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001162 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001163 if (!cpd) {
1164 ret = ERR_PTR(-ENOMEM);
1165 goto free_pd_blkcg;
1166 }
Tejun Heo81437642015-08-18 14:55:15 -07001167 blkcg->cpd[i] = cpd;
1168 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001169 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001170 if (pol->cpd_init_fn)
1171 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001172 }
1173
Vivek Goyal31e4c282009-12-03 12:59:42 -05001174 spin_lock_init(&blkcg->lock);
Tejun Heoe00f4f42016-11-21 18:03:32 -05001175 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001176 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -04001177#ifdef CONFIG_CGROUP_WRITEBACK
1178 INIT_LIST_HEAD(&blkcg->cgwb_list);
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001179 refcount_set(&blkcg->cgwb_refcnt, 1);
Tejun Heo52ebea72015-05-22 17:13:37 -04001180#endif
Tejun Heo7876f932015-07-09 16:39:49 -04001181 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1182
1183 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001184 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001185
1186free_pd_blkcg:
1187 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001188 if (blkcg->cpd[i])
1189 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001190
1191 if (blkcg != &blkcg_root)
1192 kfree(blkcg);
1193unlock:
Tejun Heo7876f932015-07-09 16:39:49 -04001194 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001195 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001196}
1197
Tejun Heo5efd6112012-03-05 13:15:12 -08001198/**
1199 * blkcg_init_queue - initialize blkcg part of request queue
1200 * @q: request_queue to initialize
1201 *
1202 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1203 * part of new request_queue @q.
1204 *
1205 * RETURNS:
1206 * 0 on success, -errno on failure.
1207 */
1208int blkcg_init_queue(struct request_queue *q)
1209{
Jens Axboed708f0d2017-03-29 11:25:48 -06001210 struct blkcg_gq *new_blkg, *blkg;
1211 bool preloaded;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001212 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001213
Jens Axboed708f0d2017-03-29 11:25:48 -06001214 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1215 if (!new_blkg)
1216 return -ENOMEM;
1217
1218 preloaded = !radix_tree_preload(GFP_KERNEL);
1219
Jiang Biaobea54882018-04-19 12:04:26 +08001220 /* Make sure the root blkg exists. */
Tejun Heoec13b1d2015-05-22 17:13:19 -04001221 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001222 spin_lock_irq(&q->queue_lock);
Jens Axboed708f0d2017-03-29 11:25:48 -06001223 blkg = blkg_create(&blkcg_root, q, new_blkg);
Jiang Biao901932a2018-04-19 12:06:09 +08001224 if (IS_ERR(blkg))
1225 goto err_unlock;
1226 q->root_blkg = blkg;
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001227 spin_unlock_irq(&q->queue_lock);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001228 rcu_read_unlock();
1229
Jens Axboed708f0d2017-03-29 11:25:48 -06001230 if (preloaded)
1231 radix_tree_preload_end();
1232
Josef Bacikd7067512018-07-03 11:15:01 -04001233 ret = blk_iolatency_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001234 if (ret)
1235 goto err_destroy_all;
Josef Bacikd7067512018-07-03 11:15:01 -04001236
Tejun Heoec13b1d2015-05-22 17:13:19 -04001237 ret = blk_throtl_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001238 if (ret)
1239 goto err_destroy_all;
1240 return 0;
Jiang Biao901932a2018-04-19 12:06:09 +08001241
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001242err_destroy_all:
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001243 blkg_destroy_all(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001244 return ret;
Jiang Biao901932a2018-04-19 12:06:09 +08001245err_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001246 spin_unlock_irq(&q->queue_lock);
Jiang Biao901932a2018-04-19 12:06:09 +08001247 rcu_read_unlock();
1248 if (preloaded)
1249 radix_tree_preload_end();
1250 return PTR_ERR(blkg);
Tejun Heo5efd6112012-03-05 13:15:12 -08001251}
1252
1253/**
1254 * blkcg_drain_queue - drain blkcg part of request_queue
1255 * @q: request_queue to drain
1256 *
1257 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1258 */
1259void blkcg_drain_queue(struct request_queue *q)
1260{
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001261 lockdep_assert_held(&q->queue_lock);
Tejun Heo5efd6112012-03-05 13:15:12 -08001262
Tejun Heo0b462c82014-07-05 18:43:21 -04001263 /*
1264 * @q could be exiting and already have destroyed all blkgs as
1265 * indicated by NULL root_blkg. If so, don't confuse policies.
1266 */
1267 if (!q->root_blkg)
1268 return;
1269
Tejun Heo5efd6112012-03-05 13:15:12 -08001270 blk_throtl_drain(q);
1271}
1272
1273/**
1274 * blkcg_exit_queue - exit and release blkcg part of request_queue
1275 * @q: request_queue being released
1276 *
Marcos Paulo de Souza7585d502019-01-25 00:01:42 -02001277 * Called from blk_exit_queue(). Responsible for exiting blkcg part.
Tejun Heo5efd6112012-03-05 13:15:12 -08001278 */
1279void blkcg_exit_queue(struct request_queue *q)
1280{
Tejun Heo3c96cb32012-04-13 13:11:34 -07001281 blkg_destroy_all(q);
Tejun Heo5efd6112012-03-05 13:15:12 -08001282 blk_throtl_exit(q);
1283}
1284
Vivek Goyal31e4c282009-12-03 12:59:42 -05001285/*
1286 * We cannot support shared io contexts, as we have no mean to support
1287 * two tasks with the same ioc in two different groups without major rework
1288 * of the main cic data structures. For now we allow a task to change
1289 * its cgroup only if it's the only owner of its ioc.
1290 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001291static int blkcg_can_attach(struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001292{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001293 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001294 struct cgroup_subsys_state *dst_css;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001295 struct io_context *ioc;
1296 int ret = 0;
1297
1298 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001299 cgroup_taskset_for_each(task, dst_css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001300 task_lock(task);
1301 ioc = task->io_context;
1302 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1303 ret = -EINVAL;
1304 task_unlock(task);
1305 if (ret)
1306 break;
1307 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001308 return ret;
1309}
1310
Tejun Heo69d7fde2015-08-18 14:55:36 -07001311static void blkcg_bind(struct cgroup_subsys_state *root_css)
1312{
1313 int i;
1314
1315 mutex_lock(&blkcg_pol_mutex);
1316
1317 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1318 struct blkcg_policy *pol = blkcg_policy[i];
1319 struct blkcg *blkcg;
1320
1321 if (!pol || !pol->cpd_bind_fn)
1322 continue;
1323
1324 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1325 if (blkcg->cpd[pol->plid])
1326 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1327 }
1328 mutex_unlock(&blkcg_pol_mutex);
1329}
1330
Josef Bacikd09d8df2018-07-03 11:14:55 -04001331static void blkcg_exit(struct task_struct *tsk)
1332{
1333 if (tsk->throttle_queue)
1334 blk_put_queue(tsk->throttle_queue);
1335 tsk->throttle_queue = NULL;
1336}
1337
Tejun Heoc165b3e2015-08-18 14:55:29 -07001338struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001339 .css_alloc = blkcg_css_alloc,
1340 .css_offline = blkcg_css_offline,
1341 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001342 .can_attach = blkcg_can_attach,
Tejun Heo69d7fde2015-08-18 14:55:36 -07001343 .bind = blkcg_bind,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001344 .dfl_cftypes = blkcg_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001345 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001346 .legacy_name = "blkio",
Josef Bacikd09d8df2018-07-03 11:14:55 -04001347 .exit = blkcg_exit,
Tejun Heo1ced9532014-07-08 18:02:57 -04001348#ifdef CONFIG_MEMCG
1349 /*
1350 * This ensures that, if available, memcg is automatically enabled
1351 * together on the default hierarchy so that the owner cgroup can
1352 * be retrieved from writeback pages.
1353 */
1354 .depends_on = 1 << memory_cgrp_id,
1355#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001356};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001357EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001358
Tejun Heo8bd435b2012-04-13 13:11:28 -07001359/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001360 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1361 * @q: request_queue of interest
1362 * @pol: blkcg policy to activate
1363 *
1364 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1365 * bypass mode to populate its blkgs with policy_data for @pol.
1366 *
1367 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1368 * from IO path. Update of each blkg is protected by both queue and blkcg
1369 * locks so that holding either lock and testing blkcg_policy_enabled() is
1370 * always enough for dereferencing policy data.
1371 *
1372 * The caller is responsible for synchronizing [de]activations and policy
1373 * [un]registerations. Returns 0 on success, -errno on failure.
1374 */
1375int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001376 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001377{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001378 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001379 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001380 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001381
1382 if (blkcg_policy_enabled(q, pol))
1383 return 0;
1384
Jens Axboe344e9ff2018-11-15 12:22:51 -07001385 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001386 blk_mq_freeze_queue(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001387pd_prealloc:
1388 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001389 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001390 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001391 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001392 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001393 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001394 }
1395
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001396 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001397
1398 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001399 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001400
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001401 if (blkg->pd[pol->plid])
1402 continue;
1403
Tejun Heoe00f4f42016-11-21 18:03:32 -05001404 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001405 if (!pd)
1406 swap(pd, pd_prealloc);
1407 if (!pd) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001408 spin_unlock_irq(&q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001409 goto pd_prealloc;
1410 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001411
1412 blkg->pd[pol->plid] = pd;
1413 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001414 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001415 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001416 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001417 }
1418
1419 __set_bit(pol->plid, q->blkcg_pols);
1420 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001421
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001422 spin_unlock_irq(&q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001423out_bypass_end:
Jens Axboe344e9ff2018-11-15 12:22:51 -07001424 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001425 blk_mq_unfreeze_queue(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001426 if (pd_prealloc)
1427 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001428 return ret;
1429}
1430EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1431
1432/**
1433 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1434 * @q: request_queue of interest
1435 * @pol: blkcg policy to deactivate
1436 *
1437 * Deactivate @pol on @q. Follows the same synchronization rules as
1438 * blkcg_activate_policy().
1439 */
1440void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001441 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001442{
Tejun Heo3c798392012-04-16 13:57:25 -07001443 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001444
1445 if (!blkcg_policy_enabled(q, pol))
1446 return;
1447
Jens Axboe344e9ff2018-11-15 12:22:51 -07001448 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001449 blk_mq_freeze_queue(q);
Jens Axboebd166ef2017-01-17 06:03:22 -07001450
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001451 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001452
1453 __clear_bit(pol->plid, q->blkcg_pols);
1454
1455 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo001bea72015-08-18 14:55:11 -07001456 if (blkg->pd[pol->plid]) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001457 if (pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001458 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001459 pol->pd_free_fn(blkg->pd[pol->plid]);
1460 blkg->pd[pol->plid] = NULL;
1461 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001462 }
1463
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001464 spin_unlock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001465
Jens Axboe344e9ff2018-11-15 12:22:51 -07001466 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001467 blk_mq_unfreeze_queue(q);
Tejun Heoa2b16932012-04-13 13:11:33 -07001468}
1469EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1470
1471/**
Tejun Heo3c798392012-04-16 13:57:25 -07001472 * blkcg_policy_register - register a blkcg policy
1473 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001474 *
Tejun Heo3c798392012-04-16 13:57:25 -07001475 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1476 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001477 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001478int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001479{
Tejun Heo06b285b2015-07-09 16:39:50 -04001480 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001481 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001482
Tejun Heo838f13b2015-07-09 16:39:47 -04001483 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001484 mutex_lock(&blkcg_pol_mutex);
1485
Tejun Heo8bd435b2012-04-13 13:11:28 -07001486 /* find an empty slot */
1487 ret = -ENOSPC;
1488 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001489 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001490 break;
Jens Axboe01c5f852018-09-11 10:59:53 -06001491 if (i >= BLKCG_MAX_POLS) {
1492 pr_warn("blkcg_policy_register: BLKCG_MAX_POLS too small\n");
Tejun Heo838f13b2015-07-09 16:39:47 -04001493 goto err_unlock;
Jens Axboe01c5f852018-09-11 10:59:53 -06001494 }
Tejun Heo035d10b2012-03-05 13:15:04 -08001495
weiping zhange8401072017-10-17 23:56:21 +08001496 /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1497 if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1498 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1499 goto err_unlock;
1500
Tejun Heo06b285b2015-07-09 16:39:50 -04001501 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001502 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001503 blkcg_policy[pol->plid] = pol;
1504
1505 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001506 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001507 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1508 struct blkcg_policy_data *cpd;
1509
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001510 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Bart Van Asschebbb427e2016-09-29 08:33:30 -07001511 if (!cpd)
Tejun Heo06b285b2015-07-09 16:39:50 -04001512 goto err_free_cpds;
Tejun Heo06b285b2015-07-09 16:39:50 -04001513
Tejun Heo81437642015-08-18 14:55:15 -07001514 blkcg->cpd[pol->plid] = cpd;
1515 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001516 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001517 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001518 }
1519 }
1520
Tejun Heo838f13b2015-07-09 16:39:47 -04001521 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001522
Tejun Heo8bd435b2012-04-13 13:11:28 -07001523 /* everything is in place, add intf files for the new policy */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001524 if (pol->dfl_cftypes)
1525 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1526 pol->dfl_cftypes));
Tejun Heo880f50e2015-08-18 14:55:30 -07001527 if (pol->legacy_cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001528 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo880f50e2015-08-18 14:55:30 -07001529 pol->legacy_cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001530 mutex_unlock(&blkcg_pol_register_mutex);
1531 return 0;
1532
Tejun Heo06b285b2015-07-09 16:39:50 -04001533err_free_cpds:
weiping zhang58a9edc2017-10-10 22:53:46 +08001534 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001535 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001536 if (blkcg->cpd[pol->plid]) {
1537 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1538 blkcg->cpd[pol->plid] = NULL;
1539 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001540 }
1541 }
1542 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001543err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001544 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001545 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001546 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001547}
Tejun Heo3c798392012-04-16 13:57:25 -07001548EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001549
Tejun Heo8bd435b2012-04-13 13:11:28 -07001550/**
Tejun Heo3c798392012-04-16 13:57:25 -07001551 * blkcg_policy_unregister - unregister a blkcg policy
1552 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001553 *
Tejun Heo3c798392012-04-16 13:57:25 -07001554 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001555 */
Tejun Heo3c798392012-04-16 13:57:25 -07001556void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001557{
Tejun Heo06b285b2015-07-09 16:39:50 -04001558 struct blkcg *blkcg;
1559
Tejun Heo838f13b2015-07-09 16:39:47 -04001560 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001561
Tejun Heo3c798392012-04-16 13:57:25 -07001562 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001563 goto out_unlock;
1564
1565 /* kill the intf files first */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001566 if (pol->dfl_cftypes)
1567 cgroup_rm_cftypes(pol->dfl_cftypes);
Tejun Heo880f50e2015-08-18 14:55:30 -07001568 if (pol->legacy_cftypes)
1569 cgroup_rm_cftypes(pol->legacy_cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001570
Tejun Heo06b285b2015-07-09 16:39:50 -04001571 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001572 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001573
weiping zhang58a9edc2017-10-10 22:53:46 +08001574 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001575 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001576 if (blkcg->cpd[pol->plid]) {
1577 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1578 blkcg->cpd[pol->plid] = NULL;
1579 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001580 }
1581 }
Tejun Heo3c798392012-04-16 13:57:25 -07001582 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001583
Tejun Heobc0d6502012-04-13 13:11:26 -07001584 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001585out_unlock:
1586 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001587}
Tejun Heo3c798392012-04-16 13:57:25 -07001588EXPORT_SYMBOL_GPL(blkcg_policy_unregister);
Josef Bacik903d23f2018-07-03 11:14:52 -04001589
Josef Bacikd09d8df2018-07-03 11:14:55 -04001590/*
1591 * Scale the accumulated delay based on how long it has been since we updated
1592 * the delay. We only call this when we are adding delay, in case it's been a
1593 * while since we added delay, and when we are checking to see if we need to
1594 * delay a task, to account for any delays that may have occurred.
1595 */
1596static void blkcg_scale_delay(struct blkcg_gq *blkg, u64 now)
1597{
1598 u64 old = atomic64_read(&blkg->delay_start);
1599
1600 /*
1601 * We only want to scale down every second. The idea here is that we
1602 * want to delay people for min(delay_nsec, NSEC_PER_SEC) in a certain
1603 * time window. We only want to throttle tasks for recent delay that
1604 * has occurred, in 1 second time windows since that's the maximum
1605 * things can be throttled. We save the current delay window in
1606 * blkg->last_delay so we know what amount is still left to be charged
1607 * to the blkg from this point onward. blkg->last_use keeps track of
1608 * the use_delay counter. The idea is if we're unthrottling the blkg we
1609 * are ok with whatever is happening now, and we can take away more of
1610 * the accumulated delay as we've already throttled enough that
1611 * everybody is happy with their IO latencies.
1612 */
1613 if (time_before64(old + NSEC_PER_SEC, now) &&
1614 atomic64_cmpxchg(&blkg->delay_start, old, now) == old) {
1615 u64 cur = atomic64_read(&blkg->delay_nsec);
1616 u64 sub = min_t(u64, blkg->last_delay, now - old);
1617 int cur_use = atomic_read(&blkg->use_delay);
1618
1619 /*
1620 * We've been unthrottled, subtract a larger chunk of our
1621 * accumulated delay.
1622 */
1623 if (cur_use < blkg->last_use)
1624 sub = max_t(u64, sub, blkg->last_delay >> 1);
1625
1626 /*
1627 * This shouldn't happen, but handle it anyway. Our delay_nsec
1628 * should only ever be growing except here where we subtract out
1629 * min(last_delay, 1 second), but lord knows bugs happen and I'd
1630 * rather not end up with negative numbers.
1631 */
1632 if (unlikely(cur < sub)) {
1633 atomic64_set(&blkg->delay_nsec, 0);
1634 blkg->last_delay = 0;
1635 } else {
1636 atomic64_sub(sub, &blkg->delay_nsec);
1637 blkg->last_delay = cur - sub;
1638 }
1639 blkg->last_use = cur_use;
1640 }
1641}
1642
1643/*
1644 * This is called when we want to actually walk up the hierarchy and check to
1645 * see if we need to throttle, and then actually throttle if there is some
1646 * accumulated delay. This should only be called upon return to user space so
1647 * we're not holding some lock that would induce a priority inversion.
1648 */
1649static void blkcg_maybe_throttle_blkg(struct blkcg_gq *blkg, bool use_memdelay)
1650{
1651 u64 now = ktime_to_ns(ktime_get());
1652 u64 exp;
1653 u64 delay_nsec = 0;
1654 int tok;
1655
1656 while (blkg->parent) {
1657 if (atomic_read(&blkg->use_delay)) {
1658 blkcg_scale_delay(blkg, now);
1659 delay_nsec = max_t(u64, delay_nsec,
1660 atomic64_read(&blkg->delay_nsec));
1661 }
1662 blkg = blkg->parent;
1663 }
1664
1665 if (!delay_nsec)
1666 return;
1667
1668 /*
1669 * Let's not sleep for all eternity if we've amassed a huge delay.
1670 * Swapping or metadata IO can accumulate 10's of seconds worth of
1671 * delay, and we want userspace to be able to do _something_ so cap the
1672 * delays at 1 second. If there's 10's of seconds worth of delay then
1673 * the tasks will be delayed for 1 second for every syscall.
1674 */
1675 delay_nsec = min_t(u64, delay_nsec, 250 * NSEC_PER_MSEC);
1676
1677 /*
1678 * TODO: the use_memdelay flag is going to be for the upcoming psi stuff
1679 * that hasn't landed upstream yet. Once that stuff is in place we need
1680 * to do a psi_memstall_enter/leave if memdelay is set.
1681 */
1682
1683 exp = ktime_add_ns(now, delay_nsec);
1684 tok = io_schedule_prepare();
1685 do {
1686 __set_current_state(TASK_KILLABLE);
1687 if (!schedule_hrtimeout(&exp, HRTIMER_MODE_ABS))
1688 break;
1689 } while (!fatal_signal_pending(current));
1690 io_schedule_finish(tok);
1691}
1692
1693/**
1694 * blkcg_maybe_throttle_current - throttle the current task if it has been marked
1695 *
1696 * This is only called if we've been marked with set_notify_resume(). Obviously
1697 * we can be set_notify_resume() for reasons other than blkcg throttling, so we
1698 * check to see if current->throttle_queue is set and if not this doesn't do
1699 * anything. This should only ever be called by the resume code, it's not meant
1700 * to be called by people willy-nilly as it will actually do the work to
1701 * throttle the task if it is setup for throttling.
1702 */
1703void blkcg_maybe_throttle_current(void)
1704{
1705 struct request_queue *q = current->throttle_queue;
1706 struct cgroup_subsys_state *css;
1707 struct blkcg *blkcg;
1708 struct blkcg_gq *blkg;
1709 bool use_memdelay = current->use_memdelay;
1710
1711 if (!q)
1712 return;
1713
1714 current->throttle_queue = NULL;
1715 current->use_memdelay = false;
1716
1717 rcu_read_lock();
1718 css = kthread_blkcg();
1719 if (css)
1720 blkcg = css_to_blkcg(css);
1721 else
1722 blkcg = css_to_blkcg(task_css(current, io_cgrp_id));
1723
1724 if (!blkcg)
1725 goto out;
1726 blkg = blkg_lookup(blkcg, q);
1727 if (!blkg)
1728 goto out;
Dennis Zhou7754f662018-12-05 12:10:39 -05001729 if (!blkg_tryget(blkg))
Josef Bacikd09d8df2018-07-03 11:14:55 -04001730 goto out;
1731 rcu_read_unlock();
Josef Bacikd09d8df2018-07-03 11:14:55 -04001732
1733 blkcg_maybe_throttle_blkg(blkg, use_memdelay);
1734 blkg_put(blkg);
Josef Bacikcc7ecc252018-07-31 12:39:03 -04001735 blk_put_queue(q);
Josef Bacikd09d8df2018-07-03 11:14:55 -04001736 return;
1737out:
1738 rcu_read_unlock();
1739 blk_put_queue(q);
1740}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001741
1742/**
1743 * blkcg_schedule_throttle - this task needs to check for throttling
Bart Van Assche537d71b2019-03-20 13:18:45 -07001744 * @q: the request queue IO was submitted on
1745 * @use_memdelay: do we charge this to memory delay for PSI
Josef Bacikd09d8df2018-07-03 11:14:55 -04001746 *
1747 * This is called by the IO controller when we know there's delay accumulated
1748 * for the blkg for this task. We do not pass the blkg because there are places
1749 * we call this that may not have that information, the swapping code for
1750 * instance will only have a request_queue at that point. This set's the
1751 * notify_resume for the task to check and see if it requires throttling before
1752 * returning to user space.
1753 *
1754 * We will only schedule once per syscall. You can call this over and over
1755 * again and it will only do the check once upon return to user space, and only
1756 * throttle once. If the task needs to be throttled again it'll need to be
1757 * re-set at the next time we see the task.
1758 */
1759void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay)
1760{
1761 if (unlikely(current->flags & PF_KTHREAD))
1762 return;
1763
1764 if (!blk_get_queue(q))
1765 return;
1766
1767 if (current->throttle_queue)
1768 blk_put_queue(current->throttle_queue);
1769 current->throttle_queue = q;
1770 if (use_memdelay)
1771 current->use_memdelay = use_memdelay;
1772 set_notify_resume(current);
1773}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001774
1775/**
1776 * blkcg_add_delay - add delay to this blkg
Bart Van Assche537d71b2019-03-20 13:18:45 -07001777 * @blkg: blkg of interest
1778 * @now: the current time in nanoseconds
1779 * @delta: how many nanoseconds of delay to add
Josef Bacikd09d8df2018-07-03 11:14:55 -04001780 *
1781 * Charge @delta to the blkg's current delay accumulation. This is used to
1782 * throttle tasks if an IO controller thinks we need more throttling.
1783 */
1784void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta)
1785{
1786 blkcg_scale_delay(blkg, now);
1787 atomic64_add(delta, &blkg->delay_nsec);
1788}
Josef Bacikd09d8df2018-07-03 11:14:55 -04001789
Josef Bacik903d23f2018-07-03 11:14:52 -04001790module_param(blkcg_debug_stats, bool, 0644);
1791MODULE_PARM_DESC(blkcg_debug_stats, "True if you want debug stats, false if not");