blob: 440797293235e8e1a477ac975144d9d3dd19e253 [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 Heoef069b92019-06-13 15:30:39 -070082 percpu_ref_exit(&blkg->refcnt);
Tejun Heo549d3aa2012-03-05 13:15:16 -080083 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080084}
85
Dennis Zhou7fcf2b02018-12-05 12:10:38 -050086static void __blkg_release(struct rcu_head *rcu)
87{
88 struct blkcg_gq *blkg = container_of(rcu, struct blkcg_gq, rcu_head);
89
Dennis Zhou7fcf2b02018-12-05 12:10:38 -050090 /* release the blkcg and parent blkg refs this blkg has been holding */
91 css_put(&blkg->blkcg->css);
92 if (blkg->parent)
93 blkg_put(blkg->parent);
94
95 wb_congested_put(blkg->wb_congested);
96
97 blkg_free(blkg);
98}
99
100/*
101 * A group is RCU protected, but having an rcu lock does not mean that one
102 * can access all the fields of blkg and assume these are valid. For
103 * example, don't try to follow throtl_data and request queue links.
104 *
105 * Having a reference to blkg under an rcu allows accesses to only values
106 * local to groups like group stats and group rate limits.
107 */
108static void blkg_release(struct percpu_ref *ref)
109{
110 struct blkcg_gq *blkg = container_of(ref, struct blkcg_gq, refcnt);
111
112 call_rcu(&blkg->rcu_head, __blkg_release);
113}
114
Tejun Heo03814112012-03-05 13:15:14 -0800115/**
116 * blkg_alloc - allocate a blkg
117 * @blkcg: block cgroup the new blkg is associated with
118 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -0700119 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -0800120 *
Tejun Heoe8989fa2012-03-05 13:15:20 -0800121 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -0800122 */
Tejun Heo15974992012-06-04 20:40:52 -0700123static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
124 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -0800125{
Tejun Heo3c798392012-04-16 13:57:25 -0700126 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800127 int i;
Tejun Heo03814112012-03-05 13:15:14 -0800128
129 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -0700130 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -0800131 if (!blkg)
132 return NULL;
133
Tejun Heoef069b92019-06-13 15:30:39 -0700134 if (percpu_ref_init(&blkg->refcnt, blkg_release, 0, gfp_mask))
135 goto err_free;
136
Tejun Heo77ea7332015-08-18 14:55:24 -0700137 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
138 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
139 goto err_free;
140
Tejun Heoc875f4d2012-03-05 13:15:22 -0800141 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800142 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800143 blkg->blkcg = blkcg;
Tejun Heo03814112012-03-05 13:15:14 -0800144
Tejun Heo8bd435b2012-04-13 13:11:28 -0700145 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700146 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800147 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800148
Tejun Heoa2b16932012-04-13 13:11:33 -0700149 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800150 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800151
Tejun Heoe8989fa2012-03-05 13:15:20 -0800152 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700153 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700154 if (!pd)
155 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800156
Tejun Heoe8989fa2012-03-05 13:15:20 -0800157 blkg->pd[i] = pd;
158 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800159 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800160 }
161
Tejun Heo03814112012-03-05 13:15:14 -0800162 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700163
164err_free:
165 blkg_free(blkg);
166 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800167}
168
Tejun Heo24f29042015-08-18 14:55:17 -0700169struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
170 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700171{
Tejun Heo3c798392012-04-16 13:57:25 -0700172 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700173
Tejun Heoa6371202012-04-19 16:29:24 -0700174 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800175 * Hint didn't match. Look up from the radix tree. Note that the
176 * hint can only be updated under queue_lock as otherwise @blkg
177 * could have already been removed from blkg_tree. The caller is
178 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700179 */
180 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800181 if (blkg && blkg->q == q) {
182 if (update_hint) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700183 lockdep_assert_held(&q->queue_lock);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800184 rcu_assign_pointer(blkcg->blkg_hint, blkg);
185 }
Tejun Heoa6371202012-04-19 16:29:24 -0700186 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800187 }
Tejun Heoa6371202012-04-19 16:29:24 -0700188
Tejun Heo80fd9972012-04-13 14:50:53 -0700189 return NULL;
190}
Tejun Heoae118892015-08-18 14:55:20 -0700191EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700192
Tejun Heo15974992012-06-04 20:40:52 -0700193/*
Jens Axboed708f0d2017-03-29 11:25:48 -0600194 * If @new_blkg is %NULL, this function tries to allocate a new one as
195 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700196 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800197static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
Jens Axboed708f0d2017-03-29 11:25:48 -0600198 struct request_queue *q,
199 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400200{
Jens Axboed708f0d2017-03-29 11:25:48 -0600201 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400202 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800203 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400204
Tejun Heocd1604f2012-03-05 13:15:06 -0800205 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700206 lockdep_assert_held(&q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500207
Dennis Zhou0273ac32018-12-11 18:03:08 -0500208 /* request_queue is dying, do not create/recreate a blkg */
209 if (blk_queue_dying(q)) {
210 ret = -ENODEV;
211 goto err_free_blkg;
212 }
213
Tejun Heo7ee9c562012-03-05 13:15:11 -0800214 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400215 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700216 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800217 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700218 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800219
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800220 wb_congested = wb_congested_get_create(q->backing_dev_info,
Jens Axboed708f0d2017-03-29 11:25:48 -0600221 blkcg->css.id,
222 GFP_NOWAIT | __GFP_NOWARN);
223 if (!wb_congested) {
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800224 ret = -ENOMEM;
Jens Axboed708f0d2017-03-29 11:25:48 -0600225 goto err_put_css;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800226 }
227
Jens Axboed708f0d2017-03-29 11:25:48 -0600228 /* allocate */
229 if (!new_blkg) {
230 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
231 if (unlikely(!new_blkg)) {
232 ret = -ENOMEM;
233 goto err_put_congested;
234 }
235 }
236 blkg = new_blkg;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800237 blkg->wb_congested = wb_congested;
238
Tejun Heodb613672013-05-14 13:52:31 -0700239 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800240 if (blkcg_parent(blkcg)) {
241 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
242 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700243 ret = -ENODEV;
Jens Axboed708f0d2017-03-29 11:25:48 -0600244 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800245 }
246 blkg_get(blkg->parent);
247 }
248
Tejun Heodb613672013-05-14 13:52:31 -0700249 /* invoke per-policy init */
250 for (i = 0; i < BLKCG_MAX_POLS; i++) {
251 struct blkcg_policy *pol = blkcg_policy[i];
252
253 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700254 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700255 }
256
257 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700258 spin_lock(&blkcg->lock);
259 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
260 if (likely(!ret)) {
261 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
262 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800263
264 for (i = 0; i < BLKCG_MAX_POLS; i++) {
265 struct blkcg_policy *pol = blkcg_policy[i];
266
267 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700268 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800269 }
Tejun Heoa6371202012-04-19 16:29:24 -0700270 }
Tejun Heof427d902013-01-09 08:05:12 -0800271 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700272 spin_unlock(&blkcg->lock);
273
Tejun Heoec13b1d2015-05-22 17:13:19 -0400274 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700275 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700276
Tejun Heo3c547862013-01-09 08:05:10 -0800277 /* @blkg failed fully initialized, use the usual release path */
278 blkg_put(blkg);
279 return ERR_PTR(ret);
280
Jens Axboed708f0d2017-03-29 11:25:48 -0600281err_put_congested:
282 wb_congested_put(wb_congested);
283err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700284 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800285err_free_blkg:
Jens Axboed708f0d2017-03-29 11:25:48 -0600286 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800287 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500288}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700289
Tejun Heo86cde6b2013-01-09 08:05:10 -0800290/**
Dennis Zhoub9789622018-12-05 12:10:27 -0500291 * __blkg_lookup_create - lookup blkg, try to create one if not there
Tejun Heo86cde6b2013-01-09 08:05:10 -0800292 * @blkcg: blkcg of interest
293 * @q: request_queue of interest
294 *
295 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800296 * create one. blkg creation is performed recursively from blkcg_root such
297 * that all non-root blkg's have access to the parent blkg. This function
298 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800299 *
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500300 * Returns the blkg or the closest blkg if blkg_create() fails as it walks
301 * down from root.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800302 */
Dennis Zhoub9789622018-12-05 12:10:27 -0500303struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
304 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700305{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800306 struct blkcg_gq *blkg;
307
308 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700309 lockdep_assert_held(&q->queue_lock);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800310
Tejun Heo86cde6b2013-01-09 08:05:10 -0800311 blkg = __blkg_lookup(blkcg, q, true);
312 if (blkg)
313 return blkg;
314
Tejun Heo3c547862013-01-09 08:05:10 -0800315 /*
316 * Create blkgs walking down from blkcg_root to @blkcg, so that all
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500317 * non-root blkgs have access to their parents. Returns the closest
318 * blkg to the intended blkg should blkg_create() fail.
Tejun Heo3c547862013-01-09 08:05:10 -0800319 */
320 while (true) {
321 struct blkcg *pos = blkcg;
322 struct blkcg *parent = blkcg_parent(blkcg);
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500323 struct blkcg_gq *ret_blkg = q->root_blkg;
Tejun Heo3c547862013-01-09 08:05:10 -0800324
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500325 while (parent) {
326 blkg = __blkg_lookup(parent, q, false);
327 if (blkg) {
328 /* remember closest blkg */
329 ret_blkg = blkg;
330 break;
331 }
Tejun Heo3c547862013-01-09 08:05:10 -0800332 pos = parent;
333 parent = blkcg_parent(parent);
334 }
335
Jens Axboed708f0d2017-03-29 11:25:48 -0600336 blkg = blkg_create(pos, q, NULL);
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500337 if (IS_ERR(blkg))
338 return ret_blkg;
339 if (pos == blkcg)
Tejun Heo3c547862013-01-09 08:05:10 -0800340 return blkg;
341 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700342}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500343
Dennis Zhoub9789622018-12-05 12:10:27 -0500344/**
345 * blkg_lookup_create - find or create a blkg
346 * @blkcg: target block cgroup
347 * @q: target request_queue
348 *
349 * This looks up or creates the blkg representing the unique pair
350 * of the blkcg and the request_queue.
351 */
352struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
353 struct request_queue *q)
354{
355 struct blkcg_gq *blkg = blkg_lookup(blkcg, q);
356
357 if (unlikely(!blkg)) {
Ming Lei3a762de2018-12-20 00:29:15 +0800358 unsigned long flags;
359
360 spin_lock_irqsave(&q->queue_lock, flags);
Dennis Zhoub9789622018-12-05 12:10:27 -0500361 blkg = __blkg_lookup_create(blkcg, q);
Ming Lei3a762de2018-12-20 00:29:15 +0800362 spin_unlock_irqrestore(&q->queue_lock, flags);
Dennis Zhoub9789622018-12-05 12:10:27 -0500363 }
364
365 return blkg;
366}
367
Tejun Heo3c798392012-04-16 13:57:25 -0700368static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800369{
Tejun Heo3c798392012-04-16 13:57:25 -0700370 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700371 struct blkcg_gq *parent = blkg->parent;
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -0400372 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800373
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700374 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800375 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800376
377 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800378 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800379 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700380
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -0400381 for (i = 0; i < BLKCG_MAX_POLS; i++) {
382 struct blkcg_policy *pol = blkcg_policy[i];
383
384 if (blkg->pd[i] && pol->pd_offline_fn)
385 pol->pd_offline_fn(blkg->pd[i]);
386 }
387
Tejun Heo77ea7332015-08-18 14:55:24 -0700388 if (parent) {
389 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
390 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
391 }
392
Tejun Heof427d902013-01-09 08:05:12 -0800393 blkg->online = false;
394
Tejun Heoa6371202012-04-19 16:29:24 -0700395 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800396 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800397 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800398
Tejun Heo03aa2642012-03-05 13:15:19 -0800399 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700400 * Both setting lookup hint to and clearing it from @blkg are done
401 * under queue_lock. If it's not pointing to @blkg now, it never
402 * will. Hint assignment itself can race safely.
403 */
Paul E. McKenneyec6c676a2014-02-17 13:35:57 -0800404 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700405 rcu_assign_pointer(blkcg->blkg_hint, NULL);
406
407 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800408 * Put the reference taken at the time of creation so that when all
409 * queues are gone, group can be destroyed.
410 */
Dennis Zhou7fcf2b02018-12-05 12:10:38 -0500411 percpu_ref_kill(&blkg->refcnt);
Tejun Heo03aa2642012-03-05 13:15:19 -0800412}
413
Tejun Heo9f13ef62012-03-05 13:15:21 -0800414/**
415 * blkg_destroy_all - destroy all blkgs associated with a request_queue
416 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800417 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700418 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800419 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700420static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800421{
Tejun Heo3c798392012-04-16 13:57:25 -0700422 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800423
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700424 spin_lock_irq(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800425 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700426 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800427
Tejun Heo9f13ef62012-03-05 13:15:21 -0800428 spin_lock(&blkcg->lock);
429 blkg_destroy(blkg);
430 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800431 }
Tejun Heo6fe810b2015-09-05 15:47:36 -0400432
433 q->root_blkg = NULL;
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700434 spin_unlock_irq(&q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800435}
436
Tejun Heo182446d2013-08-08 20:11:24 -0400437static int blkcg_reset_stats(struct cgroup_subsys_state *css,
438 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700439{
Tejun Heo182446d2013-08-08 20:11:24 -0400440 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700441 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700442 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700443
Tejun Heo838f13b2015-07-09 16:39:47 -0400444 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700445 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800446
447 /*
448 * Note that stat reset is racy - it doesn't synchronize against
449 * stat updates. This is a debug feature which shouldn't exist
450 * anyway. If you get hit by a race, retry.
451 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800452 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700453 blkg_rwstat_reset(&blkg->stat_bytes);
454 blkg_rwstat_reset(&blkg->stat_ios);
455
Tejun Heo8bd435b2012-04-13 13:11:28 -0700456 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700457 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800458
Tejun Heoa9520cd2015-08-18 14:55:14 -0700459 if (blkg->pd[i] && pol->pd_reset_stats_fn)
460 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700461 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700462 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400463
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700464 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700465 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700466 return 0;
467}
468
Tejun Heodd165eb2015-08-18 14:55:33 -0700469const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700470{
Tejun Heod3d32e62012-04-01 14:38:42 -0700471 /* some drivers (floppy) instantiate a queue w/o disk registered */
Jan Karadc3b17c2017-02-02 15:56:50 +0100472 if (blkg->q->backing_dev_info->dev)
473 return dev_name(blkg->q->backing_dev_info->dev);
Tejun Heod3d32e62012-04-01 14:38:42 -0700474 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700475}
476
Tejun Heod3d32e62012-04-01 14:38:42 -0700477/**
478 * blkcg_print_blkgs - helper for printing per-blkg data
479 * @sf: seq_file to print to
480 * @blkcg: blkcg of interest
481 * @prfill: fill function to print out a blkg
482 * @pol: policy in question
483 * @data: data to be passed to @prfill
484 * @show_total: to print out sum of prfill return values or not
485 *
486 * This function invokes @prfill on each blkg of @blkcg if pd for the
487 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800488 * policy data and @data and the matching queue lock held. If @show_total
489 * is %true, the sum of the return values from @prfill is printed with
490 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700491 *
492 * This is to be used to construct print functions for
493 * cftype->read_seq_string method.
494 */
Tejun Heo3c798392012-04-16 13:57:25 -0700495void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700496 u64 (*prfill)(struct seq_file *,
497 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700498 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700499 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400500{
Tejun Heo3c798392012-04-16 13:57:25 -0700501 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700502 u64 total = 0;
503
Tejun Heo810ecfa2013-01-09 08:05:13 -0800504 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800505 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700506 spin_lock_irq(&blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700507 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700508 total += prfill(sf, blkg->pd[pol->plid], data);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700509 spin_unlock_irq(&blkg->q->queue_lock);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800510 }
511 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700512
513 if (show_total)
514 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
515}
Tejun Heo829fdb52012-04-01 14:38:43 -0700516EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700517
518/**
519 * __blkg_prfill_u64 - prfill helper for a single u64 value
520 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700521 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700522 * @v: value to print
523 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700524 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700525 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700526u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700527{
Tejun Heof95a04a2012-04-16 13:57:26 -0700528 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700529
530 if (!dname)
531 return 0;
532
533 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
534 return v;
535}
Tejun Heo829fdb52012-04-01 14:38:43 -0700536EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700537
538/**
539 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
540 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700541 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700542 * @rwstat: rwstat to print
543 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700544 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700545 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700546u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700547 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700548{
549 static const char *rwstr[] = {
550 [BLKG_RWSTAT_READ] = "Read",
551 [BLKG_RWSTAT_WRITE] = "Write",
552 [BLKG_RWSTAT_SYNC] = "Sync",
553 [BLKG_RWSTAT_ASYNC] = "Async",
Tejun Heo636620b2018-07-18 04:47:41 -0700554 [BLKG_RWSTAT_DISCARD] = "Discard",
Tejun Heod3d32e62012-04-01 14:38:42 -0700555 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700556 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700557 u64 v;
558 int i;
559
560 if (!dname)
561 return 0;
562
563 for (i = 0; i < BLKG_RWSTAT_NR; i++)
564 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700565 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700566
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700567 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
Tejun Heo636620b2018-07-18 04:47:41 -0700568 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]) +
569 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700570 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
571 return v;
572}
Tejun Heob50da392013-01-09 08:05:12 -0800573EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700574
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700575/**
576 * blkg_prfill_stat - prfill callback for blkg_stat
577 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700578 * @pd: policy private data of interest
579 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700580 *
581 * prfill callback for printing a blkg_stat.
582 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700583u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700584{
Tejun Heof95a04a2012-04-16 13:57:26 -0700585 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700586}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700587EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700588
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700589/**
590 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
591 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700592 * @pd: policy private data of interest
593 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700594 *
595 * prfill callback for printing a blkg_rwstat.
596 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700597u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
598 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700599{
Tejun Heof95a04a2012-04-16 13:57:26 -0700600 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700601
Tejun Heof95a04a2012-04-16 13:57:26 -0700602 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700603}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700604EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700605
Tejun Heo77ea7332015-08-18 14:55:24 -0700606static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
607 struct blkg_policy_data *pd, int off)
608{
609 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
610
611 return __blkg_prfill_rwstat(sf, pd, &rwstat);
612}
613
614/**
615 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
616 * @sf: seq_file to print to
617 * @v: unused
618 *
619 * To be used as cftype->seq_show to print blkg->stat_bytes.
620 * cftype->private must be set to the blkcg_policy.
621 */
622int blkg_print_stat_bytes(struct seq_file *sf, void *v)
623{
624 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
625 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
626 offsetof(struct blkcg_gq, stat_bytes), true);
627 return 0;
628}
629EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
630
631/**
632 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
633 * @sf: seq_file to print to
634 * @v: unused
635 *
636 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
637 * must be set to the blkcg_policy.
638 */
639int blkg_print_stat_ios(struct seq_file *sf, void *v)
640{
641 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
642 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
643 offsetof(struct blkcg_gq, stat_ios), true);
644 return 0;
645}
646EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
647
648static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
649 struct blkg_policy_data *pd,
650 int off)
651{
652 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
653 NULL, off);
654 return __blkg_prfill_rwstat(sf, pd, &rwstat);
655}
656
657/**
658 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
659 * @sf: seq_file to print to
660 * @v: unused
661 */
662int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
663{
664 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
665 blkg_prfill_rwstat_field_recursive,
666 (void *)seq_cft(sf)->private,
667 offsetof(struct blkcg_gq, stat_bytes), true);
668 return 0;
669}
670EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
671
672/**
673 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
674 * @sf: seq_file to print to
675 * @v: unused
676 */
677int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
678{
679 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
680 blkg_prfill_rwstat_field_recursive,
681 (void *)seq_cft(sf)->private,
682 offsetof(struct blkcg_gq, stat_ios), true);
683 return 0;
684}
685EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
686
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700687/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800688 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700689 * @blkg: blkg of interest
690 * @pol: blkcg_policy which contains the blkg_stat
691 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800692 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700693 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
694 * online descendants and their aux counts. The caller must be holding the
695 * queue lock for online tests.
696 *
697 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
698 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800699 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700700u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
701 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800702{
Tejun Heo16b3de62013-01-09 08:05:12 -0800703 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400704 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400705 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800706
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700707 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800708
Tejun Heo16b3de62013-01-09 08:05:12 -0800709 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700710 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
711 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800712
Tejun Heof12c74c2015-08-18 14:55:23 -0700713 if (!pos_blkg->online)
714 continue;
715
716 if (pol)
717 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
718 else
719 stat = (void *)blkg + off;
720
721 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800722 }
723 rcu_read_unlock();
724
725 return sum;
726}
727EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
728
729/**
730 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700731 * @blkg: blkg of interest
732 * @pol: blkcg_policy which contains the blkg_rwstat
733 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800734 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700735 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
736 * online descendants and their aux counts. The caller must be holding the
737 * queue lock for online tests.
738 *
739 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
740 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800741 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700742struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
743 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800744{
Tejun Heo16b3de62013-01-09 08:05:12 -0800745 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400746 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400747 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800748 int i;
749
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700750 lockdep_assert_held(&blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800751
Tejun Heo16b3de62013-01-09 08:05:12 -0800752 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700753 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700754 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800755
756 if (!pos_blkg->online)
757 continue;
758
Tejun Heof12c74c2015-08-18 14:55:23 -0700759 if (pol)
760 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
761 else
762 rwstat = (void *)pos_blkg + off;
763
Tejun Heo16b3de62013-01-09 08:05:12 -0800764 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700765 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
766 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
767 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800768 }
769 rcu_read_unlock();
770
771 return sum;
772}
773EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
774
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600775/* Performs queue bypass and policy enabled checks then looks up blkg. */
776static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
777 const struct blkcg_policy *pol,
778 struct request_queue *q)
779{
780 WARN_ON_ONCE(!rcu_read_lock_held());
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700781 lockdep_assert_held(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600782
783 if (!blkcg_policy_enabled(q, pol))
784 return ERR_PTR(-EOPNOTSUPP);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600785 return __blkg_lookup(blkcg, q, true /* update_hint */);
786}
787
Tejun Heo16b3de62013-01-09 08:05:12 -0800788/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700789 * blkg_conf_prep - parse and prepare for per-blkg config update
790 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700791 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700792 * @input: input string
793 * @ctx: blkg_conf_ctx to be filled
794 *
795 * Parse per-blkg config update from @input and initialize @ctx with the
Tejun Heo36aa9e52015-08-18 14:55:31 -0700796 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
797 * part of @input following MAJ:MIN. This function returns with RCU read
798 * lock and queue lock held and must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700799 */
Tejun Heo3c798392012-04-16 13:57:25 -0700800int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700801 char *input, struct blkg_conf_ctx *ctx)
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700802 __acquires(rcu) __acquires(&disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800803{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700804 struct gendisk *disk;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600805 struct request_queue *q;
Tejun Heo3c798392012-04-16 13:57:25 -0700806 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700807 unsigned int major, minor;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700808 int key_len, part, ret;
809 char *body;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800810
Tejun Heo36aa9e52015-08-18 14:55:31 -0700811 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
Tejun Heo726fa692012-04-01 14:38:43 -0700812 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700813
Tejun Heo36aa9e52015-08-18 14:55:31 -0700814 body = input + key_len;
815 if (!isspace(*body))
816 return -EINVAL;
817 body = skip_spaces(body);
818
Tejun Heo726fa692012-04-01 14:38:43 -0700819 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400820 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700821 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400822 if (part) {
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600823 ret = -ENODEV;
824 goto fail;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400825 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800826
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600827 q = disk->queue;
828
Tejun Heoe56da7e2012-03-05 13:15:07 -0800829 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700830 spin_lock_irq(&q->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700831
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600832 blkg = blkg_lookup_check(blkcg, pol, q);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800833 if (IS_ERR(blkg)) {
834 ret = PTR_ERR(blkg);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600835 goto fail_unlock;
Vivek Goyal062a6442010-09-15 17:06:33 -0400836 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800837
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600838 if (blkg)
839 goto success;
840
841 /*
842 * Create blkgs walking down from blkcg_root to @blkcg, so that all
843 * non-root blkgs have access to their parents.
844 */
845 while (true) {
846 struct blkcg *pos = blkcg;
847 struct blkcg *parent;
848 struct blkcg_gq *new_blkg;
849
850 parent = blkcg_parent(blkcg);
851 while (parent && !__blkg_lookup(parent, q, false)) {
852 pos = parent;
853 parent = blkcg_parent(parent);
854 }
855
856 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700857 spin_unlock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600858 rcu_read_unlock();
859
860 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
861 if (unlikely(!new_blkg)) {
862 ret = -ENOMEM;
863 goto fail;
864 }
865
866 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700867 spin_lock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600868
869 blkg = blkg_lookup_check(pos, pol, q);
870 if (IS_ERR(blkg)) {
871 ret = PTR_ERR(blkg);
872 goto fail_unlock;
873 }
874
875 if (blkg) {
876 blkg_free(new_blkg);
877 } else {
878 blkg = blkg_create(pos, q, new_blkg);
Kefeng Wang98d669b2019-06-05 22:24:27 +0800879 if (IS_ERR(blkg)) {
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600880 ret = PTR_ERR(blkg);
881 goto fail_unlock;
882 }
883 }
884
885 if (pos == blkcg)
886 goto success;
887 }
888success:
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700889 ctx->disk = disk;
890 ctx->blkg = blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700891 ctx->body = body;
Tejun Heo726fa692012-04-01 14:38:43 -0700892 return 0;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600893
894fail_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700895 spin_unlock_irq(&q->queue_lock);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600896 rcu_read_unlock();
897fail:
Jan Kara9df6c292018-02-26 13:01:39 +0100898 put_disk_and_module(disk);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600899 /*
900 * If queue was bypassing, we should retry. Do so after a
901 * short msleep(). It isn't strictly necessary but queue
902 * can be bypassing for some time and it's always nice to
903 * avoid busy looping.
904 */
905 if (ret == -EBUSY) {
906 msleep(10);
907 ret = restart_syscall();
908 }
909 return ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800910}
911
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700912/**
913 * blkg_conf_finish - finish up per-blkg config update
914 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
915 *
916 * Finish up after per-blkg config update. This function must be paired
917 * with blkg_conf_prep().
918 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700919void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700920 __releases(&ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800921{
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700922 spin_unlock_irq(&ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700923 rcu_read_unlock();
Jan Kara9df6c292018-02-26 13:01:39 +0100924 put_disk_and_module(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800925}
926
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700927static int blkcg_print_stat(struct seq_file *sf, void *v)
928{
929 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
930 struct blkcg_gq *blkg;
931
932 rcu_read_lock();
933
934 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
935 const char *dname;
Josef Bacik903d23f2018-07-03 11:14:52 -0400936 char *buf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700937 struct blkg_rwstat rwstat;
Tejun Heo636620b2018-07-18 04:47:41 -0700938 u64 rbytes, wbytes, rios, wios, dbytes, dios;
Josef Bacik903d23f2018-07-03 11:14:52 -0400939 size_t size = seq_get_buf(sf, &buf), off = 0;
940 int i;
941 bool has_stats = false;
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700942
943 dname = blkg_dev_name(blkg);
944 if (!dname)
945 continue;
946
Josef Bacik903d23f2018-07-03 11:14:52 -0400947 /*
948 * Hooray string manipulation, count is the size written NOT
949 * INCLUDING THE \0, so size is now count+1 less than what we
950 * had before, but we want to start writing the next bit from
951 * the \0 so we only add count to buf.
952 */
953 off += scnprintf(buf+off, size-off, "%s ", dname);
954
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700955 spin_lock_irq(&blkg->q->queue_lock);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700956
957 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
958 offsetof(struct blkcg_gq, stat_bytes));
959 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
960 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heo636620b2018-07-18 04:47:41 -0700961 dbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700962
963 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
964 offsetof(struct blkcg_gq, stat_ios));
965 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
966 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heo636620b2018-07-18 04:47:41 -0700967 dios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700968
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700969 spin_unlock_irq(&blkg->q->queue_lock);
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700970
Josef Bacik903d23f2018-07-03 11:14:52 -0400971 if (rbytes || wbytes || rios || wios) {
972 has_stats = true;
973 off += scnprintf(buf+off, size-off,
Tejun Heo636620b2018-07-18 04:47:41 -0700974 "rbytes=%llu wbytes=%llu rios=%llu wios=%llu dbytes=%llu dios=%llu",
975 rbytes, wbytes, rios, wios,
976 dbytes, dios);
Josef Bacik903d23f2018-07-03 11:14:52 -0400977 }
978
979 if (!blkcg_debug_stats)
980 goto next;
981
Josef Bacikd09d8df2018-07-03 11:14:55 -0400982 if (atomic_read(&blkg->use_delay)) {
983 has_stats = true;
984 off += scnprintf(buf+off, size-off,
985 " use_delay=%d delay_nsec=%llu",
986 atomic_read(&blkg->use_delay),
987 (unsigned long long)atomic64_read(&blkg->delay_nsec));
988 }
989
Josef Bacik903d23f2018-07-03 11:14:52 -0400990 for (i = 0; i < BLKCG_MAX_POLS; i++) {
991 struct blkcg_policy *pol = blkcg_policy[i];
992 size_t written;
993
994 if (!blkg->pd[i] || !pol->pd_stat_fn)
995 continue;
996
997 written = pol->pd_stat_fn(blkg->pd[i], buf+off, size-off);
998 if (written)
999 has_stats = true;
1000 off += written;
1001 }
1002next:
1003 if (has_stats) {
Tejun Heof539da82019-06-13 15:30:38 -07001004 if (off < size - 1) {
1005 off += scnprintf(buf+off, size-off, "\n");
1006 seq_commit(sf, off);
1007 } else {
1008 seq_commit(sf, -1);
1009 }
Josef Bacik903d23f2018-07-03 11:14:52 -04001010 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001011 }
1012
1013 rcu_read_unlock();
1014 return 0;
1015}
1016
Bart Van Asschee1f3b942016-06-14 17:04:32 +02001017static struct cftype blkcg_files[] = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001018 {
1019 .name = "stat",
Tejun Heoca0752c2015-10-22 09:48:37 +09001020 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001021 .seq_show = blkcg_print_stat,
1022 },
1023 { } /* terminate */
1024};
1025
Bart Van Asschee1f3b942016-06-14 17:04:32 +02001026static struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001027 {
Divyesh Shah84c124d2010-04-09 08:31:19 +02001028 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -07001029 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -05001030 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001031 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -05001032};
1033
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001034/*
1035 * blkcg destruction is a three-stage process.
1036 *
1037 * 1. Destruction starts. The blkcg_css_offline() callback is invoked
1038 * which offlines writeback. Here we tie the next stage of blkg destruction
1039 * to the completion of writeback associated with the blkcg. This lets us
1040 * avoid punting potentially large amounts of outstanding writeback to root
1041 * while maintaining any ongoing policies. The next stage is triggered when
1042 * the nr_cgwbs count goes to zero.
1043 *
1044 * 2. When the nr_cgwbs count goes to zero, blkcg_destroy_blkgs() is called
1045 * and handles the destruction of blkgs. Here the css reference held by
1046 * the blkg is put back eventually allowing blkcg_css_free() to be called.
1047 * This work may occur in cgwb_release_workfn() on the cgwb_release
1048 * workqueue. Any submitted ios that fail to get the blkg ref will be
1049 * punted to the root_blkg.
1050 *
1051 * 3. Once the blkcg ref count goes to zero, blkcg_css_free() is called.
1052 * This finally frees the blkcg.
1053 */
1054
Tejun Heo9f13ef62012-03-05 13:15:21 -08001055/**
Tejun Heo92fb9742012-11-19 08:13:38 -08001056 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -04001057 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -08001058 *
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001059 * This function is called when @css is about to go away. Here the cgwbs are
1060 * offlined first and only once writeback associated with the blkcg has
1061 * finished do we start step 2 (see above).
Tejun Heo9f13ef62012-03-05 13:15:21 -08001062 */
Tejun Heoeb954192013-08-08 20:11:23 -04001063static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001064{
Tejun Heoeb954192013-08-08 20:11:23 -04001065 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001066
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001067 /* this prevents anyone from attaching or migrating to this blkcg */
1068 wb_blkcg_offline(blkcg);
1069
1070 /* put the base cgwb reference allowing step 2 to be triggered */
1071 blkcg_cgwb_put(blkcg);
1072}
1073
1074/**
1075 * blkcg_destroy_blkgs - responsible for shooting down blkgs
1076 * @blkcg: blkcg of interest
1077 *
1078 * blkgs should be removed while holding both q and blkcg locks. As blkcg lock
1079 * is nested inside q lock, this function performs reverse double lock dancing.
1080 * Destroying the blkgs releases the reference held on the blkcg's css allowing
1081 * blkcg_css_free to eventually be called.
1082 *
1083 * This is the blkcg counterpart of ioc_release_fn().
1084 */
1085void blkcg_destroy_blkgs(struct blkcg *blkcg)
1086{
Tejun Heo9f13ef62012-03-05 13:15:21 -08001087 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001088
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001089 while (!hlist_empty(&blkcg->blkg_list)) {
1090 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1091 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -08001092 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001093
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001094 if (spin_trylock(&q->queue_lock)) {
Dennis Zhou (Facebook)6b065462018-08-31 16:22:42 -04001095 blkg_destroy(blkg);
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001096 spin_unlock(&q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001097 } else {
1098 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001099 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +02001100 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001101 }
Tejun Heo9f13ef62012-03-05 13:15:21 -08001102 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001103
Tejun Heo9f13ef62012-03-05 13:15:21 -08001104 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001105}
1106
Tejun Heoeb954192013-08-08 20:11:23 -04001107static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -08001108{
Tejun Heoeb954192013-08-08 20:11:23 -04001109 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -07001110 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -08001111
Tejun Heo7876f932015-07-09 16:39:49 -04001112 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001113
Tejun Heo7876f932015-07-09 16:39:49 -04001114 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -04001115
Tejun Heobc915e62015-08-18 14:55:08 -07001116 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001117 if (blkcg->cpd[i])
1118 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1119
1120 mutex_unlock(&blkcg_pol_mutex);
1121
Tejun Heobc915e62015-08-18 14:55:08 -07001122 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001123}
1124
Tejun Heoeb954192013-08-08 20:11:23 -04001125static struct cgroup_subsys_state *
1126blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001127{
Tejun Heo3c798392012-04-16 13:57:25 -07001128 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001129 struct cgroup_subsys_state *ret;
1130 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001131
Tejun Heo7876f932015-07-09 16:39:49 -04001132 mutex_lock(&blkcg_pol_mutex);
1133
Tejun Heoeb954192013-08-08 20:11:23 -04001134 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -07001135 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -07001136 } else {
1137 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1138 if (!blkcg) {
1139 ret = ERR_PTR(-ENOMEM);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001140 goto unlock;
Tejun Heobc915e62015-08-18 14:55:08 -07001141 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001142 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001143
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001144 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1145 struct blkcg_policy *pol = blkcg_policy[i];
1146 struct blkcg_policy_data *cpd;
1147
1148 /*
1149 * If the policy hasn't been attached yet, wait for it
1150 * to be attached before doing anything else. Otherwise,
1151 * check if the policy requires any specific per-cgroup
1152 * data: if it does, allocate and initialize it.
1153 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001154 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001155 continue;
1156
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001157 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001158 if (!cpd) {
1159 ret = ERR_PTR(-ENOMEM);
1160 goto free_pd_blkcg;
1161 }
Tejun Heo81437642015-08-18 14:55:15 -07001162 blkcg->cpd[i] = cpd;
1163 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001164 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001165 if (pol->cpd_init_fn)
1166 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001167 }
1168
Vivek Goyal31e4c282009-12-03 12:59:42 -05001169 spin_lock_init(&blkcg->lock);
Tejun Heoe00f4f42016-11-21 18:03:32 -05001170 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001171 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -04001172#ifdef CONFIG_CGROUP_WRITEBACK
1173 INIT_LIST_HEAD(&blkcg->cgwb_list);
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -04001174 refcount_set(&blkcg->cgwb_refcnt, 1);
Tejun Heo52ebea72015-05-22 17:13:37 -04001175#endif
Tejun Heo7876f932015-07-09 16:39:49 -04001176 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1177
1178 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001179 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001180
1181free_pd_blkcg:
1182 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001183 if (blkcg->cpd[i])
1184 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001185
1186 if (blkcg != &blkcg_root)
1187 kfree(blkcg);
1188unlock:
Tejun Heo7876f932015-07-09 16:39:49 -04001189 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001190 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001191}
1192
Tejun Heo5efd6112012-03-05 13:15:12 -08001193/**
1194 * blkcg_init_queue - initialize blkcg part of request queue
1195 * @q: request_queue to initialize
1196 *
1197 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1198 * part of new request_queue @q.
1199 *
1200 * RETURNS:
1201 * 0 on success, -errno on failure.
1202 */
1203int blkcg_init_queue(struct request_queue *q)
1204{
Jens Axboed708f0d2017-03-29 11:25:48 -06001205 struct blkcg_gq *new_blkg, *blkg;
1206 bool preloaded;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001207 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001208
Jens Axboed708f0d2017-03-29 11:25:48 -06001209 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1210 if (!new_blkg)
1211 return -ENOMEM;
1212
1213 preloaded = !radix_tree_preload(GFP_KERNEL);
1214
Jiang Biaobea54882018-04-19 12:04:26 +08001215 /* Make sure the root blkg exists. */
Tejun Heoec13b1d2015-05-22 17:13:19 -04001216 rcu_read_lock();
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001217 spin_lock_irq(&q->queue_lock);
Jens Axboed708f0d2017-03-29 11:25:48 -06001218 blkg = blkg_create(&blkcg_root, q, new_blkg);
Jiang Biao901932a2018-04-19 12:06:09 +08001219 if (IS_ERR(blkg))
1220 goto err_unlock;
1221 q->root_blkg = blkg;
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001222 spin_unlock_irq(&q->queue_lock);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001223 rcu_read_unlock();
1224
Jens Axboed708f0d2017-03-29 11:25:48 -06001225 if (preloaded)
1226 radix_tree_preload_end();
1227
Josef Bacikd7067512018-07-03 11:15:01 -04001228 ret = blk_iolatency_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001229 if (ret)
1230 goto err_destroy_all;
Josef Bacikd7067512018-07-03 11:15:01 -04001231
Tejun Heoec13b1d2015-05-22 17:13:19 -04001232 ret = blk_throtl_init(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001233 if (ret)
1234 goto err_destroy_all;
1235 return 0;
Jiang Biao901932a2018-04-19 12:06:09 +08001236
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001237err_destroy_all:
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001238 blkg_destroy_all(q);
Christoph Hellwig04be60b2018-11-14 17:02:12 +01001239 return ret;
Jiang Biao901932a2018-04-19 12:06:09 +08001240err_unlock:
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001241 spin_unlock_irq(&q->queue_lock);
Jiang Biao901932a2018-04-19 12:06:09 +08001242 rcu_read_unlock();
1243 if (preloaded)
1244 radix_tree_preload_end();
1245 return PTR_ERR(blkg);
Tejun Heo5efd6112012-03-05 13:15:12 -08001246}
1247
1248/**
1249 * blkcg_drain_queue - drain blkcg part of request_queue
1250 * @q: request_queue to drain
1251 *
1252 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1253 */
1254void blkcg_drain_queue(struct request_queue *q)
1255{
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001256 lockdep_assert_held(&q->queue_lock);
Tejun Heo5efd6112012-03-05 13:15:12 -08001257
Tejun Heo0b462c82014-07-05 18:43:21 -04001258 /*
1259 * @q could be exiting and already have destroyed all blkgs as
1260 * indicated by NULL root_blkg. If so, don't confuse policies.
1261 */
1262 if (!q->root_blkg)
1263 return;
1264
Tejun Heo5efd6112012-03-05 13:15:12 -08001265 blk_throtl_drain(q);
1266}
1267
1268/**
1269 * blkcg_exit_queue - exit and release blkcg part of request_queue
1270 * @q: request_queue being released
1271 *
Marcos Paulo de Souza7585d502019-01-25 00:01:42 -02001272 * Called from blk_exit_queue(). Responsible for exiting blkcg part.
Tejun Heo5efd6112012-03-05 13:15:12 -08001273 */
1274void blkcg_exit_queue(struct request_queue *q)
1275{
Tejun Heo3c96cb32012-04-13 13:11:34 -07001276 blkg_destroy_all(q);
Tejun Heo5efd6112012-03-05 13:15:12 -08001277 blk_throtl_exit(q);
1278}
1279
Vivek Goyal31e4c282009-12-03 12:59:42 -05001280/*
1281 * We cannot support shared io contexts, as we have no mean to support
1282 * two tasks with the same ioc in two different groups without major rework
1283 * of the main cic data structures. For now we allow a task to change
1284 * its cgroup only if it's the only owner of its ioc.
1285 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001286static int blkcg_can_attach(struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001287{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001288 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001289 struct cgroup_subsys_state *dst_css;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001290 struct io_context *ioc;
1291 int ret = 0;
1292
1293 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001294 cgroup_taskset_for_each(task, dst_css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001295 task_lock(task);
1296 ioc = task->io_context;
1297 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1298 ret = -EINVAL;
1299 task_unlock(task);
1300 if (ret)
1301 break;
1302 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001303 return ret;
1304}
1305
Tejun Heo69d7fde2015-08-18 14:55:36 -07001306static void blkcg_bind(struct cgroup_subsys_state *root_css)
1307{
1308 int i;
1309
1310 mutex_lock(&blkcg_pol_mutex);
1311
1312 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1313 struct blkcg_policy *pol = blkcg_policy[i];
1314 struct blkcg *blkcg;
1315
1316 if (!pol || !pol->cpd_bind_fn)
1317 continue;
1318
1319 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1320 if (blkcg->cpd[pol->plid])
1321 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1322 }
1323 mutex_unlock(&blkcg_pol_mutex);
1324}
1325
Josef Bacikd09d8df2018-07-03 11:14:55 -04001326static void blkcg_exit(struct task_struct *tsk)
1327{
1328 if (tsk->throttle_queue)
1329 blk_put_queue(tsk->throttle_queue);
1330 tsk->throttle_queue = NULL;
1331}
1332
Tejun Heoc165b3e2015-08-18 14:55:29 -07001333struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001334 .css_alloc = blkcg_css_alloc,
1335 .css_offline = blkcg_css_offline,
1336 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001337 .can_attach = blkcg_can_attach,
Tejun Heo69d7fde2015-08-18 14:55:36 -07001338 .bind = blkcg_bind,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001339 .dfl_cftypes = blkcg_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001340 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001341 .legacy_name = "blkio",
Josef Bacikd09d8df2018-07-03 11:14:55 -04001342 .exit = blkcg_exit,
Tejun Heo1ced9532014-07-08 18:02:57 -04001343#ifdef CONFIG_MEMCG
1344 /*
1345 * This ensures that, if available, memcg is automatically enabled
1346 * together on the default hierarchy so that the owner cgroup can
1347 * be retrieved from writeback pages.
1348 */
1349 .depends_on = 1 << memory_cgrp_id,
1350#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001351};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001352EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001353
Tejun Heo8bd435b2012-04-13 13:11:28 -07001354/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001355 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1356 * @q: request_queue of interest
1357 * @pol: blkcg policy to activate
1358 *
1359 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1360 * bypass mode to populate its blkgs with policy_data for @pol.
1361 *
1362 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1363 * from IO path. Update of each blkg is protected by both queue and blkcg
1364 * locks so that holding either lock and testing blkcg_policy_enabled() is
1365 * always enough for dereferencing policy data.
1366 *
1367 * The caller is responsible for synchronizing [de]activations and policy
1368 * [un]registerations. Returns 0 on success, -errno on failure.
1369 */
1370int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001371 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001372{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001373 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001374 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001375 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001376
1377 if (blkcg_policy_enabled(q, pol))
1378 return 0;
1379
Jens Axboe344e9ff2018-11-15 12:22:51 -07001380 if (queue_is_mq(q))
Jens Axboebd166ef2017-01-17 06:03:22 -07001381 blk_mq_freeze_queue(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001382pd_prealloc:
1383 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001384 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001385 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001386 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001387 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001388 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001389 }
1390
Christoph Hellwig0d945c12018-11-15 12:17:28 -07001391 spin_lock_irq(&q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -07001392
Tejun Heo71c81402019-06-13 15:30:40 -07001393 /* blkg_list is pushed at the head, reverse walk to init parents first */
1394 list_for_each_entry_reverse(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");