blob: 08291ed33e93af757e436b8e2efbe626d50c1f79 [file] [log] [blame]
Andrey Konovalove886bf92018-12-28 00:31:14 -08001// SPDX-License-Identifier: GPL-2.0
Alexander Potapenko55834c52016-05-20 16:59:11 -07002/*
3 * KASAN quarantine.
4 *
5 * Author: Alexander Potapenko <glider@google.com>
6 * Copyright (C) 2016 Google, Inc.
7 *
8 * Based on code by Dmitry Chernenkov.
Alexander Potapenko55834c52016-05-20 16:59:11 -07009 */
10
11#include <linux/gfp.h>
12#include <linux/hash.h>
13#include <linux/kernel.h>
14#include <linux/mm.h>
15#include <linux/percpu.h>
16#include <linux/printk.h>
17#include <linux/shrinker.h>
18#include <linux/slab.h>
Dmitry Vyukovce5bec52017-03-09 16:17:32 -080019#include <linux/srcu.h>
Alexander Potapenko55834c52016-05-20 16:59:11 -070020#include <linux/string.h>
21#include <linux/types.h>
Kuan-Ying Lee6c82d452020-12-11 13:36:49 -080022#include <linux/cpuhotplug.h>
Alexander Potapenko55834c52016-05-20 16:59:11 -070023
24#include "../slab.h"
25#include "kasan.h"
26
27/* Data structure and operations for quarantine queues. */
28
29/*
Ingo Molnarf0953a12021-05-06 18:06:47 -070030 * Each queue is a single-linked list, which also stores the total size of
Alexander Potapenko55834c52016-05-20 16:59:11 -070031 * objects inside of it.
32 */
33struct qlist_head {
34 struct qlist_node *head;
35 struct qlist_node *tail;
36 size_t bytes;
Kuan-Ying Lee6c82d452020-12-11 13:36:49 -080037 bool offline;
Alexander Potapenko55834c52016-05-20 16:59:11 -070038};
39
40#define QLIST_INIT { NULL, NULL, 0 }
41
42static bool qlist_empty(struct qlist_head *q)
43{
44 return !q->head;
45}
46
47static void qlist_init(struct qlist_head *q)
48{
49 q->head = q->tail = NULL;
50 q->bytes = 0;
51}
52
53static void qlist_put(struct qlist_head *q, struct qlist_node *qlink,
54 size_t size)
55{
56 if (unlikely(qlist_empty(q)))
57 q->head = qlink;
58 else
59 q->tail->next = qlink;
60 q->tail = qlink;
61 qlink->next = NULL;
62 q->bytes += size;
63}
64
65static void qlist_move_all(struct qlist_head *from, struct qlist_head *to)
66{
67 if (unlikely(qlist_empty(from)))
68 return;
69
70 if (qlist_empty(to)) {
71 *to = *from;
72 qlist_init(from);
73 return;
74 }
75
76 to->tail->next = from->head;
77 to->tail = from->tail;
78 to->bytes += from->bytes;
79
80 qlist_init(from);
81}
82
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -080083#define QUARANTINE_PERCPU_SIZE (1 << 20)
84#define QUARANTINE_BATCHES \
85 (1024 > 4 * CONFIG_NR_CPUS ? 1024 : 4 * CONFIG_NR_CPUS)
Alexander Potapenko55834c52016-05-20 16:59:11 -070086
87/*
88 * The object quarantine consists of per-cpu queues and a global queue,
89 * guarded by quarantine_lock.
90 */
91static DEFINE_PER_CPU(struct qlist_head, cpu_quarantine);
92
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -080093/* Round-robin FIFO array of batches. */
94static struct qlist_head global_quarantine[QUARANTINE_BATCHES];
95static int quarantine_head;
96static int quarantine_tail;
97/* Total size of all objects in global_quarantine across all batches. */
98static unsigned long quarantine_size;
Clark Williams026d1ea2018-10-26 15:10:32 -070099static DEFINE_RAW_SPINLOCK(quarantine_lock);
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800100DEFINE_STATIC_SRCU(remove_cache_srcu);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700101
102/* Maximum size of the global queue. */
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800103static unsigned long quarantine_max_size;
104
105/*
106 * Target size of a batch in global_quarantine.
107 * Usually equal to QUARANTINE_PERCPU_SIZE unless we have too much RAM.
108 */
109static unsigned long quarantine_batch_size;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700110
111/*
112 * The fraction of physical memory the quarantine is allowed to occupy.
113 * Quarantine doesn't support memory shrinker with SLAB allocator, so we keep
114 * the ratio low to avoid OOM.
115 */
116#define QUARANTINE_FRACTION 32
117
Alexander Potapenko55834c52016-05-20 16:59:11 -0700118static struct kmem_cache *qlink_to_cache(struct qlist_node *qlink)
119{
Matthew Wilcox (Oracle)6e48a962021-10-04 14:46:46 +0100120 return virt_to_slab(qlink)->slab_cache;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700121}
122
123static void *qlink_to_object(struct qlist_node *qlink, struct kmem_cache *cache)
124{
125 struct kasan_free_meta *free_info =
126 container_of(qlink, struct kasan_free_meta,
127 quarantine_link);
128
129 return ((void *)free_info) - cache->kasan_info.free_meta_offset;
130}
131
132static void qlink_free(struct qlist_node *qlink, struct kmem_cache *cache)
133{
134 void *object = qlink_to_object(qlink, cache);
Andrey Konovalov26dca992022-01-14 14:05:01 -0800135 struct kasan_free_meta *meta = kasan_get_free_meta(cache, object);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700136 unsigned long flags;
137
Andrey Ryabininf7376ae2016-08-02 14:02:46 -0700138 if (IS_ENABLED(CONFIG_SLAB))
139 local_irq_save(flags);
140
Andrey Konovalov97593ca2020-12-22 12:03:28 -0800141 /*
Andrey Konovalov26dca992022-01-14 14:05:01 -0800142 * If init_on_free is enabled and KASAN's free metadata is stored in
143 * the object, zero the metadata. Otherwise, the object's memory will
144 * not be properly zeroed, as KASAN saves the metadata after the slab
145 * allocator zeroes the object.
146 */
147 if (slab_want_init_on_free(cache) &&
148 cache->kasan_info.free_meta_offset == 0)
149 memzero_explicit(meta, sizeof(*meta));
150
151 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -0700152 * As the object now gets freed from the quarantine, assume that its
Andrey Konovalov97593ca2020-12-22 12:03:28 -0800153 * free track is no longer valid.
154 */
Walter Wue4b78182020-08-06 23:24:39 -0700155 *(u8 *)kasan_mem_to_shadow(object) = KASAN_KMALLOC_FREE;
Andrey Konovalov97593ca2020-12-22 12:03:28 -0800156
Alexander Potapenko55834c52016-05-20 16:59:11 -0700157 ___cache_free(cache, object, _THIS_IP_);
Andrey Ryabininf7376ae2016-08-02 14:02:46 -0700158
159 if (IS_ENABLED(CONFIG_SLAB))
160 local_irq_restore(flags);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700161}
162
163static void qlist_free_all(struct qlist_head *q, struct kmem_cache *cache)
164{
165 struct qlist_node *qlink;
166
167 if (unlikely(qlist_empty(q)))
168 return;
169
170 qlink = q->head;
171 while (qlink) {
172 struct kmem_cache *obj_cache =
173 cache ? cache : qlink_to_cache(qlink);
174 struct qlist_node *next = qlink->next;
175
176 qlink_free(qlink, obj_cache);
177 qlink = next;
178 }
179 qlist_init(q);
180}
181
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800182bool kasan_quarantine_put(struct kmem_cache *cache, void *object)
Alexander Potapenko55834c52016-05-20 16:59:11 -0700183{
184 unsigned long flags;
185 struct qlist_head *q;
186 struct qlist_head temp = QLIST_INIT;
Andrey Konovalov64767922020-12-22 12:02:34 -0800187 struct kasan_free_meta *meta = kasan_get_free_meta(cache, object);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700188
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800189 /*
Andrey Konovalov97593ca2020-12-22 12:03:28 -0800190 * If there's no metadata for this object, don't put it into
191 * quarantine.
192 */
193 if (!meta)
194 return false;
195
196 /*
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800197 * Note: irq must be disabled until after we move the batch to the
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800198 * global quarantine. Otherwise kasan_quarantine_remove_cache() can
199 * miss some objects belonging to the cache if they are in our local
200 * temp list. kasan_quarantine_remove_cache() executes on_each_cpu()
201 * at the beginning which ensures that it either sees the objects in
202 * per-cpu lists or in the global quarantine.
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800203 */
Alexander Potapenko55834c52016-05-20 16:59:11 -0700204 local_irq_save(flags);
205
206 q = this_cpu_ptr(&cpu_quarantine);
Kuan-Ying Lee6c82d452020-12-11 13:36:49 -0800207 if (q->offline) {
208 local_irq_restore(flags);
Andrey Konovalov97593ca2020-12-22 12:03:28 -0800209 return false;
Kuan-Ying Lee6c82d452020-12-11 13:36:49 -0800210 }
Andrey Konovalov64767922020-12-22 12:02:34 -0800211 qlist_put(q, &meta->quarantine_link, cache->size);
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800212 if (unlikely(q->bytes > QUARANTINE_PERCPU_SIZE)) {
Alexander Potapenko55834c52016-05-20 16:59:11 -0700213 qlist_move_all(q, &temp);
214
Clark Williams026d1ea2018-10-26 15:10:32 -0700215 raw_spin_lock(&quarantine_lock);
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800216 WRITE_ONCE(quarantine_size, quarantine_size + temp.bytes);
217 qlist_move_all(&temp, &global_quarantine[quarantine_tail]);
218 if (global_quarantine[quarantine_tail].bytes >=
219 READ_ONCE(quarantine_batch_size)) {
220 int new_tail;
221
222 new_tail = quarantine_tail + 1;
223 if (new_tail == QUARANTINE_BATCHES)
224 new_tail = 0;
225 if (new_tail != quarantine_head)
226 quarantine_tail = new_tail;
227 }
Clark Williams026d1ea2018-10-26 15:10:32 -0700228 raw_spin_unlock(&quarantine_lock);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700229 }
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800230
231 local_irq_restore(flags);
Andrey Konovalov97593ca2020-12-22 12:03:28 -0800232
233 return true;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700234}
235
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800236void kasan_quarantine_reduce(void)
Alexander Potapenko55834c52016-05-20 16:59:11 -0700237{
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800238 size_t total_size, new_quarantine_size, percpu_quarantines;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700239 unsigned long flags;
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800240 int srcu_idx;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700241 struct qlist_head to_free = QLIST_INIT;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700242
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800243 if (likely(READ_ONCE(quarantine_size) <=
244 READ_ONCE(quarantine_max_size)))
Alexander Potapenko55834c52016-05-20 16:59:11 -0700245 return;
246
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800247 /*
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800248 * srcu critical section ensures that kasan_quarantine_remove_cache()
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800249 * will not miss objects belonging to the cache while they are in our
250 * local to_free list. srcu is chosen because (1) it gives us private
251 * grace period domain that does not interfere with anything else,
252 * and (2) it allows synchronize_srcu() to return without waiting
253 * if there are no pending read critical sections (which is the
254 * expected case).
255 */
256 srcu_idx = srcu_read_lock(&remove_cache_srcu);
Clark Williams026d1ea2018-10-26 15:10:32 -0700257 raw_spin_lock_irqsave(&quarantine_lock, flags);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700258
259 /*
260 * Update quarantine size in case of hotplug. Allocate a fraction of
261 * the installed memory to quarantine minus per-cpu queue limits.
262 */
Arun KSca79b0c2018-12-28 00:34:29 -0800263 total_size = (totalram_pages() << PAGE_SHIFT) /
Alexander Potapenko55834c52016-05-20 16:59:11 -0700264 QUARANTINE_FRACTION;
Alexander Potapenkoc3cee372016-08-02 14:02:58 -0700265 percpu_quarantines = QUARANTINE_PERCPU_SIZE * num_online_cpus();
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800266 new_quarantine_size = (total_size < percpu_quarantines) ?
267 0 : total_size - percpu_quarantines;
268 WRITE_ONCE(quarantine_max_size, new_quarantine_size);
269 /* Aim at consuming at most 1/2 of slots in quarantine. */
270 WRITE_ONCE(quarantine_batch_size, max((size_t)QUARANTINE_PERCPU_SIZE,
271 2 * total_size / QUARANTINE_BATCHES));
Alexander Potapenko55834c52016-05-20 16:59:11 -0700272
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800273 if (likely(quarantine_size > quarantine_max_size)) {
274 qlist_move_all(&global_quarantine[quarantine_head], &to_free);
275 WRITE_ONCE(quarantine_size, quarantine_size - to_free.bytes);
276 quarantine_head++;
277 if (quarantine_head == QUARANTINE_BATCHES)
278 quarantine_head = 0;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700279 }
Alexander Potapenko55834c52016-05-20 16:59:11 -0700280
Clark Williams026d1ea2018-10-26 15:10:32 -0700281 raw_spin_unlock_irqrestore(&quarantine_lock, flags);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700282
283 qlist_free_all(&to_free, NULL);
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800284 srcu_read_unlock(&remove_cache_srcu, srcu_idx);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700285}
286
287static void qlist_move_cache(struct qlist_head *from,
288 struct qlist_head *to,
289 struct kmem_cache *cache)
290{
Joonsoo Kim0ab686d2016-07-14 12:07:17 -0700291 struct qlist_node *curr;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700292
293 if (unlikely(qlist_empty(from)))
294 return;
295
296 curr = from->head;
Joonsoo Kim0ab686d2016-07-14 12:07:17 -0700297 qlist_init(from);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700298 while (curr) {
Joonsoo Kim0ab686d2016-07-14 12:07:17 -0700299 struct qlist_node *next = curr->next;
300 struct kmem_cache *obj_cache = qlink_to_cache(curr);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700301
Joonsoo Kim0ab686d2016-07-14 12:07:17 -0700302 if (obj_cache == cache)
303 qlist_put(to, curr, obj_cache->size);
304 else
305 qlist_put(from, curr, obj_cache->size);
306
307 curr = next;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700308 }
309}
310
311static void per_cpu_remove_cache(void *arg)
312{
313 struct kmem_cache *cache = arg;
314 struct qlist_head to_free = QLIST_INIT;
315 struct qlist_head *q;
316
317 q = this_cpu_ptr(&cpu_quarantine);
318 qlist_move_cache(q, &to_free, cache);
319 qlist_free_all(&to_free, cache);
320}
321
Greg Thelenf9fa1d92017-02-24 15:00:05 -0800322/* Free all quarantined objects belonging to cache. */
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800323void kasan_quarantine_remove_cache(struct kmem_cache *cache)
Alexander Potapenko55834c52016-05-20 16:59:11 -0700324{
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800325 unsigned long flags, i;
Alexander Potapenko55834c52016-05-20 16:59:11 -0700326 struct qlist_head to_free = QLIST_INIT;
327
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800328 /*
329 * Must be careful to not miss any objects that are being moved from
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800330 * per-cpu list to the global quarantine in kasan_quarantine_put(),
331 * nor objects being freed in kasan_quarantine_reduce(). on_each_cpu()
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800332 * achieves the first goal, while synchronize_srcu() achieves the
333 * second.
334 */
Alexander Potapenko55834c52016-05-20 16:59:11 -0700335 on_each_cpu(per_cpu_remove_cache, cache, 1);
336
Clark Williams026d1ea2018-10-26 15:10:32 -0700337 raw_spin_lock_irqsave(&quarantine_lock, flags);
Dmitry Vyukov68fd8142017-03-09 16:17:28 -0800338 for (i = 0; i < QUARANTINE_BATCHES; i++) {
339 if (qlist_empty(&global_quarantine[i]))
340 continue;
Dmitry Vyukov64abdcb2016-12-12 16:44:56 -0800341 qlist_move_cache(&global_quarantine[i], &to_free, cache);
Dmitry Vyukov68fd8142017-03-09 16:17:28 -0800342 /* Scanning whole quarantine can take a while. */
Clark Williams026d1ea2018-10-26 15:10:32 -0700343 raw_spin_unlock_irqrestore(&quarantine_lock, flags);
Dmitry Vyukov68fd8142017-03-09 16:17:28 -0800344 cond_resched();
Clark Williams026d1ea2018-10-26 15:10:32 -0700345 raw_spin_lock_irqsave(&quarantine_lock, flags);
Dmitry Vyukov68fd8142017-03-09 16:17:28 -0800346 }
Clark Williams026d1ea2018-10-26 15:10:32 -0700347 raw_spin_unlock_irqrestore(&quarantine_lock, flags);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700348
349 qlist_free_all(&to_free, cache);
Dmitry Vyukovce5bec52017-03-09 16:17:32 -0800350
351 synchronize_srcu(&remove_cache_srcu);
Alexander Potapenko55834c52016-05-20 16:59:11 -0700352}
Kuan-Ying Lee6c82d452020-12-11 13:36:49 -0800353
354static int kasan_cpu_online(unsigned int cpu)
355{
356 this_cpu_ptr(&cpu_quarantine)->offline = false;
357 return 0;
358}
359
360static int kasan_cpu_offline(unsigned int cpu)
361{
362 struct qlist_head *q;
363
364 q = this_cpu_ptr(&cpu_quarantine);
365 /* Ensure the ordering between the writing to q->offline and
366 * qlist_free_all. Otherwise, cpu_quarantine may be corrupted
367 * by interrupt.
368 */
369 WRITE_ONCE(q->offline, true);
370 barrier();
371 qlist_free_all(q, NULL);
372 return 0;
373}
374
375static int __init kasan_cpu_quarantine_init(void)
376{
377 int ret = 0;
378
379 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "mm/kasan:online",
380 kasan_cpu_online, kasan_cpu_offline);
381 if (ret < 0)
382 pr_err("kasan cpu quarantine register failed [%d]\n", ret);
383 return ret;
384}
385late_initcall(kasan_cpu_quarantine_init);