Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 2 | #ifndef MM_SLAB_H |
| 3 | #define MM_SLAB_H |
| 4 | /* |
| 5 | * Internal slab definitions |
| 6 | */ |
| 7 | |
Matthew Wilcox (Oracle) | d122019 | 2021-10-04 14:45:51 +0100 | [diff] [blame] | 8 | /* Reuses the bits in struct page */ |
| 9 | struct slab { |
| 10 | unsigned long __page_flags; |
| 11 | union { |
| 12 | struct list_head slab_list; |
| 13 | struct { /* Partial pages */ |
| 14 | struct slab *next; |
| 15 | #ifdef CONFIG_64BIT |
| 16 | int slabs; /* Nr of slabs left */ |
| 17 | #else |
| 18 | short int slabs; |
| 19 | #endif |
| 20 | }; |
| 21 | struct rcu_head rcu_head; |
| 22 | }; |
| 23 | struct kmem_cache *slab_cache; /* not slob */ |
| 24 | /* Double-word boundary */ |
| 25 | void *freelist; /* first free object */ |
| 26 | union { |
| 27 | void *s_mem; /* slab: first object */ |
| 28 | unsigned long counters; /* SLUB */ |
| 29 | struct { /* SLUB */ |
| 30 | unsigned inuse:16; |
| 31 | unsigned objects:15; |
| 32 | unsigned frozen:1; |
| 33 | }; |
| 34 | }; |
| 35 | |
| 36 | union { |
| 37 | unsigned int active; /* SLAB */ |
| 38 | int units; /* SLOB */ |
| 39 | }; |
| 40 | atomic_t __page_refcount; |
| 41 | #ifdef CONFIG_MEMCG |
| 42 | unsigned long memcg_data; |
| 43 | #endif |
| 44 | }; |
| 45 | |
| 46 | #define SLAB_MATCH(pg, sl) \ |
| 47 | static_assert(offsetof(struct page, pg) == offsetof(struct slab, sl)) |
| 48 | SLAB_MATCH(flags, __page_flags); |
| 49 | SLAB_MATCH(compound_head, slab_list); /* Ensure bit 0 is clear */ |
| 50 | SLAB_MATCH(slab_list, slab_list); |
| 51 | SLAB_MATCH(rcu_head, rcu_head); |
| 52 | SLAB_MATCH(slab_cache, slab_cache); |
| 53 | SLAB_MATCH(s_mem, s_mem); |
| 54 | SLAB_MATCH(active, active); |
| 55 | SLAB_MATCH(_refcount, __page_refcount); |
| 56 | #ifdef CONFIG_MEMCG |
| 57 | SLAB_MATCH(memcg_data, memcg_data); |
| 58 | #endif |
| 59 | #undef SLAB_MATCH |
| 60 | static_assert(sizeof(struct slab) <= sizeof(struct page)); |
| 61 | |
| 62 | /** |
| 63 | * folio_slab - Converts from folio to slab. |
| 64 | * @folio: The folio. |
| 65 | * |
| 66 | * Currently struct slab is a different representation of a folio where |
| 67 | * folio_test_slab() is true. |
| 68 | * |
| 69 | * Return: The slab which contains this folio. |
| 70 | */ |
| 71 | #define folio_slab(folio) (_Generic((folio), \ |
| 72 | const struct folio *: (const struct slab *)(folio), \ |
| 73 | struct folio *: (struct slab *)(folio))) |
| 74 | |
| 75 | /** |
| 76 | * slab_folio - The folio allocated for a slab |
| 77 | * @slab: The slab. |
| 78 | * |
| 79 | * Slabs are allocated as folios that contain the individual objects and are |
| 80 | * using some fields in the first struct page of the folio - those fields are |
| 81 | * now accessed by struct slab. It is occasionally necessary to convert back to |
| 82 | * a folio in order to communicate with the rest of the mm. Please use this |
| 83 | * helper function instead of casting yourself, as the implementation may change |
| 84 | * in the future. |
| 85 | */ |
| 86 | #define slab_folio(s) (_Generic((s), \ |
| 87 | const struct slab *: (const struct folio *)s, \ |
| 88 | struct slab *: (struct folio *)s)) |
| 89 | |
| 90 | /** |
| 91 | * page_slab - Converts from first struct page to slab. |
| 92 | * @p: The first (either head of compound or single) page of slab. |
| 93 | * |
| 94 | * A temporary wrapper to convert struct page to struct slab in situations where |
| 95 | * we know the page is the compound head, or single order-0 page. |
| 96 | * |
| 97 | * Long-term ideally everything would work with struct slab directly or go |
| 98 | * through folio to struct slab. |
| 99 | * |
| 100 | * Return: The slab which contains this page |
| 101 | */ |
| 102 | #define page_slab(p) (_Generic((p), \ |
| 103 | const struct page *: (const struct slab *)(p), \ |
| 104 | struct page *: (struct slab *)(p))) |
| 105 | |
| 106 | /** |
| 107 | * slab_page - The first struct page allocated for a slab |
| 108 | * @slab: The slab. |
| 109 | * |
| 110 | * A convenience wrapper for converting slab to the first struct page of the |
| 111 | * underlying folio, to communicate with code not yet converted to folio or |
| 112 | * struct slab. |
| 113 | */ |
| 114 | #define slab_page(s) folio_page(slab_folio(s), 0) |
| 115 | |
| 116 | /* |
| 117 | * If network-based swap is enabled, sl*b must keep track of whether pages |
| 118 | * were allocated from pfmemalloc reserves. |
| 119 | */ |
| 120 | static inline bool slab_test_pfmemalloc(const struct slab *slab) |
| 121 | { |
| 122 | return folio_test_active((struct folio *)slab_folio(slab)); |
| 123 | } |
| 124 | |
| 125 | static inline void slab_set_pfmemalloc(struct slab *slab) |
| 126 | { |
| 127 | folio_set_active(slab_folio(slab)); |
| 128 | } |
| 129 | |
| 130 | static inline void slab_clear_pfmemalloc(struct slab *slab) |
| 131 | { |
| 132 | folio_clear_active(slab_folio(slab)); |
| 133 | } |
| 134 | |
| 135 | static inline void __slab_clear_pfmemalloc(struct slab *slab) |
| 136 | { |
| 137 | __folio_clear_active(slab_folio(slab)); |
| 138 | } |
| 139 | |
| 140 | static inline void *slab_address(const struct slab *slab) |
| 141 | { |
| 142 | return folio_address(slab_folio(slab)); |
| 143 | } |
| 144 | |
| 145 | static inline int slab_nid(const struct slab *slab) |
| 146 | { |
| 147 | return folio_nid(slab_folio(slab)); |
| 148 | } |
| 149 | |
| 150 | static inline pg_data_t *slab_pgdat(const struct slab *slab) |
| 151 | { |
| 152 | return folio_pgdat(slab_folio(slab)); |
| 153 | } |
| 154 | |
| 155 | static inline struct slab *virt_to_slab(const void *addr) |
| 156 | { |
| 157 | struct folio *folio = virt_to_folio(addr); |
| 158 | |
| 159 | if (!folio_test_slab(folio)) |
| 160 | return NULL; |
| 161 | |
| 162 | return folio_slab(folio); |
| 163 | } |
| 164 | |
| 165 | static inline int slab_order(const struct slab *slab) |
| 166 | { |
| 167 | return folio_order((struct folio *)slab_folio(slab)); |
| 168 | } |
| 169 | |
| 170 | static inline size_t slab_size(const struct slab *slab) |
| 171 | { |
| 172 | return PAGE_SIZE << slab_order(slab); |
| 173 | } |
| 174 | |
Joonsoo Kim | 07f361b | 2014-10-09 15:26:00 -0700 | [diff] [blame] | 175 | #ifdef CONFIG_SLOB |
| 176 | /* |
| 177 | * Common fields provided in kmem_cache by all slab allocators |
| 178 | * This struct is either used directly by the allocator (SLOB) |
| 179 | * or the allocator must include definitions for all fields |
| 180 | * provided in kmem_cache_common in their definition of kmem_cache. |
| 181 | * |
| 182 | * Once we can do anonymous structs (C11 standard) we could put a |
| 183 | * anonymous struct definition in these allocators so that the |
| 184 | * separate allocations in the kmem_cache structure of SLAB and |
| 185 | * SLUB is no longer needed. |
| 186 | */ |
| 187 | struct kmem_cache { |
| 188 | unsigned int object_size;/* The original size of the object */ |
| 189 | unsigned int size; /* The aligned/padded/added on size */ |
| 190 | unsigned int align; /* Alignment as calculated */ |
Alexey Dobriyan | d50112e | 2017-11-15 17:32:18 -0800 | [diff] [blame] | 191 | slab_flags_t flags; /* Active flags on the slab */ |
Alexey Dobriyan | 7bbdb81 | 2018-04-05 16:21:31 -0700 | [diff] [blame] | 192 | unsigned int useroffset;/* Usercopy region offset */ |
| 193 | unsigned int usersize; /* Usercopy region size */ |
Joonsoo Kim | 07f361b | 2014-10-09 15:26:00 -0700 | [diff] [blame] | 194 | const char *name; /* Slab name for sysfs */ |
| 195 | int refcount; /* Use counter */ |
| 196 | void (*ctor)(void *); /* Called on object slot creation */ |
| 197 | struct list_head list; /* List of all slab caches on the system */ |
| 198 | }; |
| 199 | |
| 200 | #endif /* CONFIG_SLOB */ |
| 201 | |
| 202 | #ifdef CONFIG_SLAB |
| 203 | #include <linux/slab_def.h> |
| 204 | #endif |
| 205 | |
| 206 | #ifdef CONFIG_SLUB |
| 207 | #include <linux/slub_def.h> |
| 208 | #endif |
| 209 | |
| 210 | #include <linux/memcontrol.h> |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 211 | #include <linux/fault-inject.h> |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 212 | #include <linux/kasan.h> |
| 213 | #include <linux/kmemleak.h> |
Thomas Garnier | 7c00fce | 2016-07-26 15:21:56 -0700 | [diff] [blame] | 214 | #include <linux/random.h> |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 215 | #include <linux/sched/mm.h> |
Joonsoo Kim | 07f361b | 2014-10-09 15:26:00 -0700 | [diff] [blame] | 216 | |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 217 | /* |
| 218 | * State of the slab allocator. |
| 219 | * |
| 220 | * This is used to describe the states of the allocator during bootup. |
| 221 | * Allocators use this to gradually bootstrap themselves. Most allocators |
| 222 | * have the problem that the structures used for managing slab caches are |
| 223 | * allocated from slab caches themselves. |
| 224 | */ |
| 225 | enum slab_state { |
| 226 | DOWN, /* No slab functionality yet */ |
| 227 | PARTIAL, /* SLUB: kmem_cache_node available */ |
Christoph Lameter | ce8eb6c | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 228 | PARTIAL_NODE, /* SLAB: kmalloc size for node struct available */ |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 229 | UP, /* Slab caches usable but not all extras yet */ |
| 230 | FULL /* Everything is working */ |
| 231 | }; |
| 232 | |
| 233 | extern enum slab_state slab_state; |
| 234 | |
Christoph Lameter | 18004c5 | 2012-07-06 15:25:12 -0500 | [diff] [blame] | 235 | /* The slab cache mutex protects the management structures during changes */ |
| 236 | extern struct mutex slab_mutex; |
Christoph Lameter | 9b030cb | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 237 | |
| 238 | /* The list of all slab caches on the system */ |
Christoph Lameter | 18004c5 | 2012-07-06 15:25:12 -0500 | [diff] [blame] | 239 | extern struct list_head slab_caches; |
| 240 | |
Christoph Lameter | 9b030cb | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 241 | /* The slab cache that manages slab cache information */ |
| 242 | extern struct kmem_cache *kmem_cache; |
| 243 | |
Vlastimil Babka | af3b5f8 | 2017-02-22 15:41:05 -0800 | [diff] [blame] | 244 | /* A table of kmalloc cache names and sizes */ |
| 245 | extern const struct kmalloc_info_struct { |
Pengfei Li | cb5d9fb | 2019-11-30 17:49:21 -0800 | [diff] [blame] | 246 | const char *name[NR_KMALLOC_TYPES]; |
Alexey Dobriyan | 55de8b9 | 2018-04-05 16:20:29 -0700 | [diff] [blame] | 247 | unsigned int size; |
Vlastimil Babka | af3b5f8 | 2017-02-22 15:41:05 -0800 | [diff] [blame] | 248 | } kmalloc_info[]; |
| 249 | |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 250 | #ifndef CONFIG_SLOB |
| 251 | /* Kmalloc array related functions */ |
Daniel Sanders | 34cc699 | 2015-06-24 16:55:57 -0700 | [diff] [blame] | 252 | void setup_kmalloc_cache_index_table(void); |
Alexey Dobriyan | d50112e | 2017-11-15 17:32:18 -0800 | [diff] [blame] | 253 | void create_kmalloc_caches(slab_flags_t); |
Christoph Lameter | 2c59dd6 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 254 | |
| 255 | /* Find the kmalloc slab corresponding for a certain size */ |
| 256 | struct kmem_cache *kmalloc_slab(size_t, gfp_t); |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 257 | #endif |
| 258 | |
Long Li | 4440509 | 2020-08-06 23:18:28 -0700 | [diff] [blame] | 259 | gfp_t kmalloc_fix_flags(gfp_t flags); |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 260 | |
Christoph Lameter | 9b030cb | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 261 | /* Functions provided by the slab allocators */ |
Alexey Dobriyan | d50112e | 2017-11-15 17:32:18 -0800 | [diff] [blame] | 262 | int __kmem_cache_create(struct kmem_cache *, slab_flags_t flags); |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 263 | |
Alexey Dobriyan | 55de8b9 | 2018-04-05 16:20:29 -0700 | [diff] [blame] | 264 | struct kmem_cache *create_kmalloc_cache(const char *name, unsigned int size, |
| 265 | slab_flags_t flags, unsigned int useroffset, |
| 266 | unsigned int usersize); |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 267 | extern void create_boot_cache(struct kmem_cache *, const char *name, |
Alexey Dobriyan | 361d575 | 2018-04-05 16:20:33 -0700 | [diff] [blame] | 268 | unsigned int size, slab_flags_t flags, |
| 269 | unsigned int useroffset, unsigned int usersize); |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 270 | |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 271 | int slab_unmergeable(struct kmem_cache *s); |
Alexey Dobriyan | f4957d5 | 2018-04-05 16:20:37 -0700 | [diff] [blame] | 272 | struct kmem_cache *find_mergeable(unsigned size, unsigned align, |
Alexey Dobriyan | d50112e | 2017-11-15 17:32:18 -0800 | [diff] [blame] | 273 | slab_flags_t flags, const char *name, void (*ctor)(void *)); |
Joonsoo Kim | 12220de | 2014-10-09 15:26:24 -0700 | [diff] [blame] | 274 | #ifndef CONFIG_SLOB |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 275 | struct kmem_cache * |
Alexey Dobriyan | f4957d5 | 2018-04-05 16:20:37 -0700 | [diff] [blame] | 276 | __kmem_cache_alias(const char *name, unsigned int size, unsigned int align, |
Alexey Dobriyan | d50112e | 2017-11-15 17:32:18 -0800 | [diff] [blame] | 277 | slab_flags_t flags, void (*ctor)(void *)); |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 278 | |
Alexey Dobriyan | 0293d1f | 2018-04-05 16:21:24 -0700 | [diff] [blame] | 279 | slab_flags_t kmem_cache_flags(unsigned int object_size, |
Nikolay Borisov | 3754000 | 2021-02-24 12:00:58 -0800 | [diff] [blame] | 280 | slab_flags_t flags, const char *name); |
Christoph Lameter | cbb7969 | 2012-09-05 00:18:32 +0000 | [diff] [blame] | 281 | #else |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 282 | static inline struct kmem_cache * |
Alexey Dobriyan | f4957d5 | 2018-04-05 16:20:37 -0700 | [diff] [blame] | 283 | __kmem_cache_alias(const char *name, unsigned int size, unsigned int align, |
Alexey Dobriyan | d50112e | 2017-11-15 17:32:18 -0800 | [diff] [blame] | 284 | slab_flags_t flags, void (*ctor)(void *)) |
Christoph Lameter | cbb7969 | 2012-09-05 00:18:32 +0000 | [diff] [blame] | 285 | { return NULL; } |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 286 | |
Alexey Dobriyan | 0293d1f | 2018-04-05 16:21:24 -0700 | [diff] [blame] | 287 | static inline slab_flags_t kmem_cache_flags(unsigned int object_size, |
Nikolay Borisov | 3754000 | 2021-02-24 12:00:58 -0800 | [diff] [blame] | 288 | slab_flags_t flags, const char *name) |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 289 | { |
| 290 | return flags; |
| 291 | } |
Christoph Lameter | cbb7969 | 2012-09-05 00:18:32 +0000 | [diff] [blame] | 292 | #endif |
| 293 | |
| 294 | |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 295 | /* Legal flag mask for kmem_cache_create(), for various configurations */ |
Nicolas Boichat | 6d6ea1e | 2019-03-28 20:43:42 -0700 | [diff] [blame] | 296 | #define SLAB_CORE_FLAGS (SLAB_HWCACHE_ALIGN | SLAB_CACHE_DMA | \ |
| 297 | SLAB_CACHE_DMA32 | SLAB_PANIC | \ |
Paul E. McKenney | 5f0d5a3 | 2017-01-18 02:53:44 -0800 | [diff] [blame] | 298 | SLAB_TYPESAFE_BY_RCU | SLAB_DEBUG_OBJECTS ) |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 299 | |
| 300 | #if defined(CONFIG_DEBUG_SLAB) |
| 301 | #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER) |
| 302 | #elif defined(CONFIG_SLUB_DEBUG) |
| 303 | #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \ |
Laura Abbott | becfda6 | 2016-03-15 14:55:06 -0700 | [diff] [blame] | 304 | SLAB_TRACE | SLAB_CONSISTENCY_CHECKS) |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 305 | #else |
| 306 | #define SLAB_DEBUG_FLAGS (0) |
| 307 | #endif |
| 308 | |
| 309 | #if defined(CONFIG_SLAB) |
| 310 | #define SLAB_CACHE_FLAGS (SLAB_MEM_SPREAD | SLAB_NOLEAKTRACE | \ |
Vladimir Davydov | 230e9fc | 2016-01-14 15:18:15 -0800 | [diff] [blame] | 311 | SLAB_RECLAIM_ACCOUNT | SLAB_TEMPORARY | \ |
Levin, Alexander (Sasha Levin) | 75f296d | 2017-11-15 17:35:54 -0800 | [diff] [blame] | 312 | SLAB_ACCOUNT) |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 313 | #elif defined(CONFIG_SLUB) |
| 314 | #define SLAB_CACHE_FLAGS (SLAB_NOLEAKTRACE | SLAB_RECLAIM_ACCOUNT | \ |
Levin, Alexander (Sasha Levin) | 75f296d | 2017-11-15 17:35:54 -0800 | [diff] [blame] | 315 | SLAB_TEMPORARY | SLAB_ACCOUNT) |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 316 | #else |
Rustam Kovhaev | 34dbc3aa | 2021-11-19 16:43:37 -0800 | [diff] [blame] | 317 | #define SLAB_CACHE_FLAGS (SLAB_NOLEAKTRACE) |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 318 | #endif |
| 319 | |
Thomas Garnier | e70954f | 2016-12-12 16:41:38 -0800 | [diff] [blame] | 320 | /* Common flags available with current configuration */ |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 321 | #define CACHE_CREATE_MASK (SLAB_CORE_FLAGS | SLAB_DEBUG_FLAGS | SLAB_CACHE_FLAGS) |
| 322 | |
Thomas Garnier | e70954f | 2016-12-12 16:41:38 -0800 | [diff] [blame] | 323 | /* Common flags permitted for kmem_cache_create */ |
| 324 | #define SLAB_FLAGS_PERMITTED (SLAB_CORE_FLAGS | \ |
| 325 | SLAB_RED_ZONE | \ |
| 326 | SLAB_POISON | \ |
| 327 | SLAB_STORE_USER | \ |
| 328 | SLAB_TRACE | \ |
| 329 | SLAB_CONSISTENCY_CHECKS | \ |
| 330 | SLAB_MEM_SPREAD | \ |
| 331 | SLAB_NOLEAKTRACE | \ |
| 332 | SLAB_RECLAIM_ACCOUNT | \ |
| 333 | SLAB_TEMPORARY | \ |
Thomas Garnier | e70954f | 2016-12-12 16:41:38 -0800 | [diff] [blame] | 334 | SLAB_ACCOUNT) |
| 335 | |
Shakeel Butt | f9e13c0 | 2018-04-05 16:21:57 -0700 | [diff] [blame] | 336 | bool __kmem_cache_empty(struct kmem_cache *); |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 337 | int __kmem_cache_shutdown(struct kmem_cache *); |
Dmitry Safonov | 52b4b95 | 2016-02-17 13:11:37 -0800 | [diff] [blame] | 338 | void __kmem_cache_release(struct kmem_cache *); |
Tejun Heo | c9fc586 | 2017-02-22 15:41:27 -0800 | [diff] [blame] | 339 | int __kmem_cache_shrink(struct kmem_cache *); |
Christoph Lameter | 41a2128 | 2014-05-06 12:50:08 -0700 | [diff] [blame] | 340 | void slab_kmem_cache_release(struct kmem_cache *); |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 341 | |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 342 | struct seq_file; |
| 343 | struct file; |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 344 | |
Glauber Costa | 0d7561c | 2012-10-19 18:20:27 +0400 | [diff] [blame] | 345 | struct slabinfo { |
| 346 | unsigned long active_objs; |
| 347 | unsigned long num_objs; |
| 348 | unsigned long active_slabs; |
| 349 | unsigned long num_slabs; |
| 350 | unsigned long shared_avail; |
| 351 | unsigned int limit; |
| 352 | unsigned int batchcount; |
| 353 | unsigned int shared; |
| 354 | unsigned int objects_per_slab; |
| 355 | unsigned int cache_order; |
| 356 | }; |
| 357 | |
| 358 | void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo); |
| 359 | void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s); |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 360 | ssize_t slabinfo_write(struct file *file, const char __user *buffer, |
| 361 | size_t count, loff_t *ppos); |
Glauber Costa | ba6c496 | 2012-12-18 14:22:27 -0800 | [diff] [blame] | 362 | |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 363 | /* |
| 364 | * Generic implementation of bulk operations |
| 365 | * These are useful for situations in which the allocator cannot |
Jesper Dangaard Brouer | 9f706d6 | 2016-03-15 14:54:03 -0700 | [diff] [blame] | 366 | * perform optimizations. In that case segments of the object listed |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 367 | * may be allocated or freed using these operations. |
| 368 | */ |
| 369 | void __kmem_cache_free_bulk(struct kmem_cache *, size_t, void **); |
Jesper Dangaard Brouer | 865762a | 2015-11-20 15:57:58 -0800 | [diff] [blame] | 370 | int __kmem_cache_alloc_bulk(struct kmem_cache *, gfp_t, size_t, void **); |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 371 | |
Muchun Song | 1a984c4 | 2020-12-14 19:06:24 -0800 | [diff] [blame] | 372 | static inline enum node_stat_item cache_vmstat_idx(struct kmem_cache *s) |
Roman Gushchin | 6cea1d5 | 2019-07-11 20:56:16 -0700 | [diff] [blame] | 373 | { |
| 374 | return (s->flags & SLAB_RECLAIM_ACCOUNT) ? |
Roman Gushchin | d42f324 | 2020-08-06 23:20:39 -0700 | [diff] [blame] | 375 | NR_SLAB_RECLAIMABLE_B : NR_SLAB_UNRECLAIMABLE_B; |
Roman Gushchin | 6cea1d5 | 2019-07-11 20:56:16 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 378 | #ifdef CONFIG_SLUB_DEBUG |
| 379 | #ifdef CONFIG_SLUB_DEBUG_ON |
| 380 | DECLARE_STATIC_KEY_TRUE(slub_debug_enabled); |
| 381 | #else |
| 382 | DECLARE_STATIC_KEY_FALSE(slub_debug_enabled); |
| 383 | #endif |
| 384 | extern void print_tracking(struct kmem_cache *s, void *object); |
Oliver Glitta | 1f9f78b | 2021-06-28 19:34:33 -0700 | [diff] [blame] | 385 | long validate_slab_cache(struct kmem_cache *s); |
Marco Elver | 0d4a062 | 2021-07-14 21:26:34 -0700 | [diff] [blame] | 386 | static inline bool __slub_debug_enabled(void) |
| 387 | { |
| 388 | return static_branch_unlikely(&slub_debug_enabled); |
| 389 | } |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 390 | #else |
| 391 | static inline void print_tracking(struct kmem_cache *s, void *object) |
| 392 | { |
| 393 | } |
Marco Elver | 0d4a062 | 2021-07-14 21:26:34 -0700 | [diff] [blame] | 394 | static inline bool __slub_debug_enabled(void) |
| 395 | { |
| 396 | return false; |
| 397 | } |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 398 | #endif |
| 399 | |
| 400 | /* |
| 401 | * Returns true if any of the specified slub_debug flags is enabled for the |
| 402 | * cache. Use only for flags parsed by setup_slub_debug() as it also enables |
| 403 | * the static key. |
| 404 | */ |
| 405 | static inline bool kmem_cache_debug_flags(struct kmem_cache *s, slab_flags_t flags) |
| 406 | { |
Marco Elver | 0d4a062 | 2021-07-14 21:26:34 -0700 | [diff] [blame] | 407 | if (IS_ENABLED(CONFIG_SLUB_DEBUG)) |
| 408 | VM_WARN_ON_ONCE(!(flags & SLAB_DEBUG_FLAGS)); |
| 409 | if (__slub_debug_enabled()) |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 410 | return s->flags & flags; |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 411 | return false; |
| 412 | } |
| 413 | |
Kirill Tkhai | 84c07d1 | 2018-08-17 15:47:25 -0700 | [diff] [blame] | 414 | #ifdef CONFIG_MEMCG_KMEM |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 415 | int memcg_alloc_page_obj_cgroups(struct page *page, struct kmem_cache *s, |
Roman Gushchin | 2e9bd48 | 2021-02-24 12:03:11 -0800 | [diff] [blame] | 416 | gfp_t gfp, bool new_page); |
Waiman Long | fdbcb2a | 2021-06-28 19:37:19 -0700 | [diff] [blame] | 417 | void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat, |
| 418 | enum node_stat_item idx, int nr); |
Roman Gushchin | 286e04b | 2020-08-06 23:20:52 -0700 | [diff] [blame] | 419 | |
| 420 | static inline void memcg_free_page_obj_cgroups(struct page *page) |
| 421 | { |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 422 | kfree(page_objcgs(page)); |
Roman Gushchin | bcfe06b | 2020-12-01 13:58:27 -0800 | [diff] [blame] | 423 | page->memcg_data = 0; |
Roman Gushchin | 286e04b | 2020-08-06 23:20:52 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 426 | static inline size_t obj_full_size(struct kmem_cache *s) |
| 427 | { |
| 428 | /* |
| 429 | * For each accounted object there is an extra space which is used |
| 430 | * to store obj_cgroup membership. Charge it too. |
| 431 | */ |
| 432 | return s->size + sizeof(struct obj_cgroup *); |
| 433 | } |
| 434 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 435 | /* |
| 436 | * Returns false if the allocation should fail. |
| 437 | */ |
| 438 | static inline bool memcg_slab_pre_alloc_hook(struct kmem_cache *s, |
| 439 | struct obj_cgroup **objcgp, |
| 440 | size_t objects, gfp_t flags) |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 441 | { |
Roman Gushchin | 9855609 | 2020-08-06 23:21:10 -0700 | [diff] [blame] | 442 | struct obj_cgroup *objcg; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 443 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 444 | if (!memcg_kmem_enabled()) |
| 445 | return true; |
| 446 | |
| 447 | if (!(flags & __GFP_ACCOUNT) && !(s->flags & SLAB_ACCOUNT)) |
| 448 | return true; |
| 449 | |
Roman Gushchin | 9855609 | 2020-08-06 23:21:10 -0700 | [diff] [blame] | 450 | objcg = get_obj_cgroup_from_current(); |
| 451 | if (!objcg) |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 452 | return true; |
Roman Gushchin | 9855609 | 2020-08-06 23:21:10 -0700 | [diff] [blame] | 453 | |
| 454 | if (obj_cgroup_charge(objcg, flags, objects * obj_full_size(s))) { |
| 455 | obj_cgroup_put(objcg); |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 456 | return false; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 459 | *objcgp = objcg; |
| 460 | return true; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 463 | static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s, |
| 464 | struct obj_cgroup *objcg, |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 465 | gfp_t flags, size_t size, |
| 466 | void **p) |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 467 | { |
| 468 | struct page *page; |
| 469 | unsigned long off; |
| 470 | size_t i; |
| 471 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 472 | if (!memcg_kmem_enabled() || !objcg) |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 473 | return; |
| 474 | |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 475 | for (i = 0; i < size; i++) { |
| 476 | if (likely(p[i])) { |
| 477 | page = virt_to_head_page(p[i]); |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 478 | |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 479 | if (!page_objcgs(page) && |
Roman Gushchin | 2e9bd48 | 2021-02-24 12:03:11 -0800 | [diff] [blame] | 480 | memcg_alloc_page_obj_cgroups(page, s, flags, |
| 481 | false)) { |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 482 | obj_cgroup_uncharge(objcg, obj_full_size(s)); |
| 483 | continue; |
| 484 | } |
| 485 | |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 486 | off = obj_to_index(s, page, p[i]); |
| 487 | obj_cgroup_get(objcg); |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 488 | page_objcgs(page)[off] = objcg; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 489 | mod_objcg_state(objcg, page_pgdat(page), |
| 490 | cache_vmstat_idx(s), obj_full_size(s)); |
| 491 | } else { |
| 492 | obj_cgroup_uncharge(objcg, obj_full_size(s)); |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 493 | } |
| 494 | } |
| 495 | obj_cgroup_put(objcg); |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 496 | } |
| 497 | |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 498 | static inline void memcg_slab_free_hook(struct kmem_cache *s_orig, |
| 499 | void **p, int objects) |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 500 | { |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 501 | struct kmem_cache *s; |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 502 | struct obj_cgroup **objcgs; |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 503 | struct obj_cgroup *objcg; |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 504 | struct page *page; |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 505 | unsigned int off; |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 506 | int i; |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 507 | |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 508 | if (!memcg_kmem_enabled()) |
| 509 | return; |
| 510 | |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 511 | for (i = 0; i < objects; i++) { |
| 512 | if (unlikely(!p[i])) |
| 513 | continue; |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 514 | |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 515 | page = virt_to_head_page(p[i]); |
Wang Hai | 121dffe | 2021-07-29 14:53:54 -0700 | [diff] [blame] | 516 | objcgs = page_objcgs_check(page); |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 517 | if (!objcgs) |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 518 | continue; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 519 | |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 520 | if (!s_orig) |
| 521 | s = page->slab_cache; |
| 522 | else |
| 523 | s = s_orig; |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 524 | |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 525 | off = obj_to_index(s, page, p[i]); |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 526 | objcg = objcgs[off]; |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 527 | if (!objcg) |
| 528 | continue; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 529 | |
Roman Gushchin | 270c6a7 | 2020-12-01 13:58:28 -0800 | [diff] [blame] | 530 | objcgs[off] = NULL; |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 531 | obj_cgroup_uncharge(objcg, obj_full_size(s)); |
| 532 | mod_objcg_state(objcg, page_pgdat(page), cache_vmstat_idx(s), |
| 533 | -obj_full_size(s)); |
| 534 | obj_cgroup_put(objcg); |
| 535 | } |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 536 | } |
| 537 | |
Kirill Tkhai | 84c07d1 | 2018-08-17 15:47:25 -0700 | [diff] [blame] | 538 | #else /* CONFIG_MEMCG_KMEM */ |
Roman Gushchin | 9855609 | 2020-08-06 23:21:10 -0700 | [diff] [blame] | 539 | static inline struct mem_cgroup *memcg_from_slab_obj(void *ptr) |
Roman Gushchin | 4d96ba3 | 2019-07-11 20:56:31 -0700 | [diff] [blame] | 540 | { |
| 541 | return NULL; |
| 542 | } |
| 543 | |
Roman Gushchin | 286e04b | 2020-08-06 23:20:52 -0700 | [diff] [blame] | 544 | static inline int memcg_alloc_page_obj_cgroups(struct page *page, |
Roman Gushchin | 2e9bd48 | 2021-02-24 12:03:11 -0800 | [diff] [blame] | 545 | struct kmem_cache *s, gfp_t gfp, |
| 546 | bool new_page) |
Roman Gushchin | 286e04b | 2020-08-06 23:20:52 -0700 | [diff] [blame] | 547 | { |
| 548 | return 0; |
| 549 | } |
| 550 | |
| 551 | static inline void memcg_free_page_obj_cgroups(struct page *page) |
| 552 | { |
| 553 | } |
| 554 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 555 | static inline bool memcg_slab_pre_alloc_hook(struct kmem_cache *s, |
| 556 | struct obj_cgroup **objcgp, |
| 557 | size_t objects, gfp_t flags) |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 558 | { |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 559 | return true; |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 562 | static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s, |
| 563 | struct obj_cgroup *objcg, |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 564 | gfp_t flags, size_t size, |
| 565 | void **p) |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 566 | { |
| 567 | } |
| 568 | |
Bharata B Rao | d1b2cf6 | 2020-10-13 16:53:09 -0700 | [diff] [blame] | 569 | static inline void memcg_slab_free_hook(struct kmem_cache *s, |
| 570 | void **p, int objects) |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 571 | { |
| 572 | } |
Kirill Tkhai | 84c07d1 | 2018-08-17 15:47:25 -0700 | [diff] [blame] | 573 | #endif /* CONFIG_MEMCG_KMEM */ |
Glauber Costa | b9ce5ef | 2012-12-18 14:22:46 -0800 | [diff] [blame] | 574 | |
Kees Cook | a64b537 | 2019-07-11 20:53:26 -0700 | [diff] [blame] | 575 | static inline struct kmem_cache *virt_to_cache(const void *obj) |
| 576 | { |
Matthew Wilcox (Oracle) | 82c1775 | 2021-10-04 14:45:53 +0100 | [diff] [blame^] | 577 | struct slab *slab; |
Kees Cook | a64b537 | 2019-07-11 20:53:26 -0700 | [diff] [blame] | 578 | |
Matthew Wilcox (Oracle) | 82c1775 | 2021-10-04 14:45:53 +0100 | [diff] [blame^] | 579 | slab = virt_to_slab(obj); |
| 580 | if (WARN_ONCE(!slab, "%s: Object is not a Slab page!\n", |
Kees Cook | a64b537 | 2019-07-11 20:53:26 -0700 | [diff] [blame] | 581 | __func__)) |
| 582 | return NULL; |
Matthew Wilcox (Oracle) | 82c1775 | 2021-10-04 14:45:53 +0100 | [diff] [blame^] | 583 | return slab->slab_cache; |
Kees Cook | a64b537 | 2019-07-11 20:53:26 -0700 | [diff] [blame] | 584 | } |
| 585 | |
Matthew Wilcox (Oracle) | b918653 | 2021-10-04 14:45:52 +0100 | [diff] [blame] | 586 | static __always_inline void account_slab(struct slab *slab, int order, |
| 587 | struct kmem_cache *s, gfp_t gfp) |
Roman Gushchin | 6cea1d5 | 2019-07-11 20:56:16 -0700 | [diff] [blame] | 588 | { |
Roman Gushchin | 2e9bd48 | 2021-02-24 12:03:11 -0800 | [diff] [blame] | 589 | if (memcg_kmem_enabled() && (s->flags & SLAB_ACCOUNT)) |
Matthew Wilcox (Oracle) | b918653 | 2021-10-04 14:45:52 +0100 | [diff] [blame] | 590 | memcg_alloc_page_obj_cgroups(slab_page(slab), s, gfp, true); |
Roman Gushchin | 2e9bd48 | 2021-02-24 12:03:11 -0800 | [diff] [blame] | 591 | |
Matthew Wilcox (Oracle) | b918653 | 2021-10-04 14:45:52 +0100 | [diff] [blame] | 592 | mod_node_page_state(slab_pgdat(slab), cache_vmstat_idx(s), |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 593 | PAGE_SIZE << order); |
Roman Gushchin | 6cea1d5 | 2019-07-11 20:56:16 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Matthew Wilcox (Oracle) | b918653 | 2021-10-04 14:45:52 +0100 | [diff] [blame] | 596 | static __always_inline void unaccount_slab(struct slab *slab, int order, |
| 597 | struct kmem_cache *s) |
Roman Gushchin | 6cea1d5 | 2019-07-11 20:56:16 -0700 | [diff] [blame] | 598 | { |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 599 | if (memcg_kmem_enabled()) |
Matthew Wilcox (Oracle) | b918653 | 2021-10-04 14:45:52 +0100 | [diff] [blame] | 600 | memcg_free_page_obj_cgroups(slab_page(slab)); |
Roman Gushchin | 9855609 | 2020-08-06 23:21:10 -0700 | [diff] [blame] | 601 | |
Matthew Wilcox (Oracle) | b918653 | 2021-10-04 14:45:52 +0100 | [diff] [blame] | 602 | mod_node_page_state(slab_pgdat(slab), cache_vmstat_idx(s), |
Roman Gushchin | f2fe7b0 | 2020-08-06 23:20:59 -0700 | [diff] [blame] | 603 | -(PAGE_SIZE << order)); |
Roman Gushchin | 6cea1d5 | 2019-07-11 20:56:16 -0700 | [diff] [blame] | 604 | } |
| 605 | |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 606 | static inline struct kmem_cache *cache_from_obj(struct kmem_cache *s, void *x) |
| 607 | { |
| 608 | struct kmem_cache *cachep; |
| 609 | |
| 610 | if (!IS_ENABLED(CONFIG_SLAB_FREELIST_HARDENED) && |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 611 | !kmem_cache_debug_flags(s, SLAB_CONSISTENCY_CHECKS)) |
| 612 | return s; |
| 613 | |
| 614 | cachep = virt_to_cache(x); |
Roman Gushchin | 10befea | 2020-08-06 23:21:27 -0700 | [diff] [blame] | 615 | if (WARN(cachep && cachep != s, |
Vlastimil Babka | e42f174 | 2020-08-06 23:19:05 -0700 | [diff] [blame] | 616 | "%s: Wrong slab cache. %s but object is from %s\n", |
| 617 | __func__, s->name, cachep->name)) |
| 618 | print_tracking(cachep, x); |
| 619 | return cachep; |
| 620 | } |
| 621 | |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 622 | static inline size_t slab_ksize(const struct kmem_cache *s) |
| 623 | { |
| 624 | #ifndef CONFIG_SLUB |
| 625 | return s->object_size; |
| 626 | |
| 627 | #else /* CONFIG_SLUB */ |
| 628 | # ifdef CONFIG_SLUB_DEBUG |
| 629 | /* |
| 630 | * Debugging requires use of the padding between object |
| 631 | * and whatever may come after it. |
| 632 | */ |
| 633 | if (s->flags & (SLAB_RED_ZONE | SLAB_POISON)) |
| 634 | return s->object_size; |
| 635 | # endif |
Alexander Potapenko | 80a9201 | 2016-07-28 15:49:07 -0700 | [diff] [blame] | 636 | if (s->flags & SLAB_KASAN) |
| 637 | return s->object_size; |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 638 | /* |
| 639 | * If we have the need to store the freelist pointer |
| 640 | * back there or track user information then we can |
| 641 | * only use the space before that information. |
| 642 | */ |
Paul E. McKenney | 5f0d5a3 | 2017-01-18 02:53:44 -0800 | [diff] [blame] | 643 | if (s->flags & (SLAB_TYPESAFE_BY_RCU | SLAB_STORE_USER)) |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 644 | return s->inuse; |
| 645 | /* |
| 646 | * Else we can use all the padding etc for the allocation |
| 647 | */ |
| 648 | return s->size; |
| 649 | #endif |
| 650 | } |
| 651 | |
| 652 | static inline struct kmem_cache *slab_pre_alloc_hook(struct kmem_cache *s, |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 653 | struct obj_cgroup **objcgp, |
| 654 | size_t size, gfp_t flags) |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 655 | { |
| 656 | flags &= gfp_allowed_mask; |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 657 | |
Daniel Vetter | 95d6c70 | 2020-12-14 19:08:34 -0800 | [diff] [blame] | 658 | might_alloc(flags); |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 659 | |
Jesper Dangaard Brouer | fab9963 | 2016-03-15 14:53:38 -0700 | [diff] [blame] | 660 | if (should_failslab(s, flags)) |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 661 | return NULL; |
| 662 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 663 | if (!memcg_slab_pre_alloc_hook(s, objcgp, size, flags)) |
| 664 | return NULL; |
Vladimir Davydov | 4526477 | 2016-07-26 15:24:21 -0700 | [diff] [blame] | 665 | |
| 666 | return s; |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 667 | } |
| 668 | |
Roman Gushchin | 964d4bd | 2020-08-06 23:20:56 -0700 | [diff] [blame] | 669 | static inline void slab_post_alloc_hook(struct kmem_cache *s, |
Andrey Konovalov | da844b7 | 2021-04-29 23:00:06 -0700 | [diff] [blame] | 670 | struct obj_cgroup *objcg, gfp_t flags, |
| 671 | size_t size, void **p, bool init) |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 672 | { |
| 673 | size_t i; |
| 674 | |
| 675 | flags &= gfp_allowed_mask; |
Andrey Konovalov | da844b7 | 2021-04-29 23:00:06 -0700 | [diff] [blame] | 676 | |
| 677 | /* |
| 678 | * As memory initialization might be integrated into KASAN, |
| 679 | * kasan_slab_alloc and initialization memset must be |
| 680 | * kept together to avoid discrepancies in behavior. |
| 681 | * |
| 682 | * As p[i] might get tagged, memset and kmemleak hook come after KASAN. |
| 683 | */ |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 684 | for (i = 0; i < size; i++) { |
Andrey Konovalov | da844b7 | 2021-04-29 23:00:06 -0700 | [diff] [blame] | 685 | p[i] = kasan_slab_alloc(s, p[i], flags, init); |
| 686 | if (p[i] && init && !kasan_has_integrated_init()) |
| 687 | memset(p[i], 0, s->object_size); |
Andrey Konovalov | 5312824 | 2019-02-20 22:19:11 -0800 | [diff] [blame] | 688 | kmemleak_alloc_recursive(p[i], s->object_size, 1, |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 689 | s->flags, flags); |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 690 | } |
Vladimir Davydov | 4526477 | 2016-07-26 15:24:21 -0700 | [diff] [blame] | 691 | |
Roman Gushchin | becaba6 | 2020-12-05 22:14:45 -0800 | [diff] [blame] | 692 | memcg_slab_post_alloc_hook(s, objcg, flags, size, p); |
Jesper Dangaard Brouer | 11c7aec | 2016-03-15 14:53:35 -0700 | [diff] [blame] | 693 | } |
| 694 | |
Christoph Lameter | 44c5356 | 2014-08-06 16:04:07 -0700 | [diff] [blame] | 695 | #ifndef CONFIG_SLOB |
Christoph Lameter | ca34956 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 696 | /* |
| 697 | * The slab lists for all objects. |
| 698 | */ |
| 699 | struct kmem_cache_node { |
| 700 | spinlock_t list_lock; |
| 701 | |
| 702 | #ifdef CONFIG_SLAB |
| 703 | struct list_head slabs_partial; /* partial list first, better asm code */ |
| 704 | struct list_head slabs_full; |
| 705 | struct list_head slabs_free; |
David Rientjes | bf00bd3 | 2016-12-12 16:41:44 -0800 | [diff] [blame] | 706 | unsigned long total_slabs; /* length of all slab lists */ |
| 707 | unsigned long free_slabs; /* length of free slab list only */ |
Christoph Lameter | ca34956 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 708 | unsigned long free_objects; |
| 709 | unsigned int free_limit; |
| 710 | unsigned int colour_next; /* Per-node cache coloring */ |
| 711 | struct array_cache *shared; /* shared per node */ |
Joonsoo Kim | c8522a3 | 2014-08-06 16:04:29 -0700 | [diff] [blame] | 712 | struct alien_cache **alien; /* on other nodes */ |
Christoph Lameter | ca34956 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 713 | unsigned long next_reap; /* updated without locking */ |
| 714 | int free_touched; /* updated without locking */ |
| 715 | #endif |
| 716 | |
| 717 | #ifdef CONFIG_SLUB |
| 718 | unsigned long nr_partial; |
| 719 | struct list_head partial; |
| 720 | #ifdef CONFIG_SLUB_DEBUG |
| 721 | atomic_long_t nr_slabs; |
| 722 | atomic_long_t total_objects; |
| 723 | struct list_head full; |
| 724 | #endif |
| 725 | #endif |
| 726 | |
| 727 | }; |
Wanpeng Li | e25839f | 2013-07-04 08:33:23 +0800 | [diff] [blame] | 728 | |
Christoph Lameter | 44c5356 | 2014-08-06 16:04:07 -0700 | [diff] [blame] | 729 | static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node) |
| 730 | { |
| 731 | return s->node[node]; |
| 732 | } |
| 733 | |
| 734 | /* |
| 735 | * Iterator over all nodes. The body will be executed for each node that has |
| 736 | * a kmem_cache_node structure allocated (which is true for all online nodes) |
| 737 | */ |
| 738 | #define for_each_kmem_cache_node(__s, __node, __n) \ |
Mikulas Patocka | 9163582 | 2014-10-09 15:26:20 -0700 | [diff] [blame] | 739 | for (__node = 0; __node < nr_node_ids; __node++) \ |
| 740 | if ((__n = get_node(__s, __node))) |
Christoph Lameter | 44c5356 | 2014-08-06 16:04:07 -0700 | [diff] [blame] | 741 | |
| 742 | #endif |
| 743 | |
Vladimir Davydov | 1df3b26 | 2014-12-10 15:42:16 -0800 | [diff] [blame] | 744 | void *slab_start(struct seq_file *m, loff_t *pos); |
Wanpeng Li | 276a243 | 2013-07-08 08:08:28 +0800 | [diff] [blame] | 745 | void *slab_next(struct seq_file *m, void *p, loff_t *pos); |
| 746 | void slab_stop(struct seq_file *m, void *p); |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 747 | int memcg_slab_show(struct seq_file *m, void *p); |
Andrey Ryabinin | 5240ab4 | 2014-08-06 16:04:14 -0700 | [diff] [blame] | 748 | |
Yang Shi | 852d8be | 2017-11-15 17:32:07 -0800 | [diff] [blame] | 749 | #if defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG) |
| 750 | void dump_unreclaimable_slab(void); |
| 751 | #else |
| 752 | static inline void dump_unreclaimable_slab(void) |
| 753 | { |
| 754 | } |
| 755 | #endif |
| 756 | |
Alexander Potapenko | 55834c5 | 2016-05-20 16:59:11 -0700 | [diff] [blame] | 757 | void ___cache_free(struct kmem_cache *cache, void *x, unsigned long addr); |
| 758 | |
Thomas Garnier | 7c00fce | 2016-07-26 15:21:56 -0700 | [diff] [blame] | 759 | #ifdef CONFIG_SLAB_FREELIST_RANDOM |
| 760 | int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count, |
| 761 | gfp_t gfp); |
| 762 | void cache_random_seq_destroy(struct kmem_cache *cachep); |
| 763 | #else |
| 764 | static inline int cache_random_seq_create(struct kmem_cache *cachep, |
| 765 | unsigned int count, gfp_t gfp) |
| 766 | { |
| 767 | return 0; |
| 768 | } |
| 769 | static inline void cache_random_seq_destroy(struct kmem_cache *cachep) { } |
| 770 | #endif /* CONFIG_SLAB_FREELIST_RANDOM */ |
| 771 | |
Alexander Potapenko | 6471384 | 2019-07-11 20:59:19 -0700 | [diff] [blame] | 772 | static inline bool slab_want_init_on_alloc(gfp_t flags, struct kmem_cache *c) |
| 773 | { |
Kees Cook | 51cba1e | 2021-04-01 16:23:43 -0700 | [diff] [blame] | 774 | if (static_branch_maybe(CONFIG_INIT_ON_ALLOC_DEFAULT_ON, |
| 775 | &init_on_alloc)) { |
Alexander Potapenko | 6471384 | 2019-07-11 20:59:19 -0700 | [diff] [blame] | 776 | if (c->ctor) |
| 777 | return false; |
| 778 | if (c->flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON)) |
| 779 | return flags & __GFP_ZERO; |
| 780 | return true; |
| 781 | } |
| 782 | return flags & __GFP_ZERO; |
| 783 | } |
| 784 | |
| 785 | static inline bool slab_want_init_on_free(struct kmem_cache *c) |
| 786 | { |
Kees Cook | 51cba1e | 2021-04-01 16:23:43 -0700 | [diff] [blame] | 787 | if (static_branch_maybe(CONFIG_INIT_ON_FREE_DEFAULT_ON, |
| 788 | &init_on_free)) |
Alexander Potapenko | 6471384 | 2019-07-11 20:59:19 -0700 | [diff] [blame] | 789 | return !(c->ctor || |
| 790 | (c->flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON))); |
| 791 | return false; |
| 792 | } |
| 793 | |
Faiyaz Mohammed | 64dd684 | 2021-06-28 19:34:55 -0700 | [diff] [blame] | 794 | #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_SLUB_DEBUG) |
| 795 | void debugfs_slab_release(struct kmem_cache *); |
| 796 | #else |
| 797 | static inline void debugfs_slab_release(struct kmem_cache *s) { } |
| 798 | #endif |
| 799 | |
Paul E. McKenney | 5bb1bb3 | 2021-01-07 13:46:11 -0800 | [diff] [blame] | 800 | #ifdef CONFIG_PRINTK |
Paul E. McKenney | 8e7f37f | 2020-12-07 17:41:02 -0800 | [diff] [blame] | 801 | #define KS_ADDRS_COUNT 16 |
| 802 | struct kmem_obj_info { |
| 803 | void *kp_ptr; |
| 804 | struct page *kp_page; |
| 805 | void *kp_objp; |
| 806 | unsigned long kp_data_offset; |
| 807 | struct kmem_cache *kp_slab_cache; |
| 808 | void *kp_ret; |
| 809 | void *kp_stack[KS_ADDRS_COUNT]; |
Maninder Singh | e548eaa | 2021-03-16 16:07:11 +0530 | [diff] [blame] | 810 | void *kp_free_stack[KS_ADDRS_COUNT]; |
Paul E. McKenney | 8e7f37f | 2020-12-07 17:41:02 -0800 | [diff] [blame] | 811 | }; |
| 812 | void kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page); |
Paul E. McKenney | 5bb1bb3 | 2021-01-07 13:46:11 -0800 | [diff] [blame] | 813 | #endif |
Paul E. McKenney | 8e7f37f | 2020-12-07 17:41:02 -0800 | [diff] [blame] | 814 | |
Andrey Ryabinin | 5240ab4 | 2014-08-06 16:04:14 -0700 | [diff] [blame] | 815 | #endif /* MM_SLAB_H */ |