Blame view

mm/zpool.c 11.2 KB
09c434b8a   Thomas Gleixner   treewide: Add SPD...
1
  // SPDX-License-Identifier: GPL-2.0-only
af8d417a0   Dan Streetman   mm/zpool: impleme...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * zpool memory storage api
   *
   * Copyright (C) 2014 Dan Streetman
   *
   * This is a common frontend for memory storage pool implementations.
   * Typically, this is used to store compressed memory.
   */
  
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  
  #include <linux/list.h>
  #include <linux/types.h>
  #include <linux/mm.h>
  #include <linux/slab.h>
  #include <linux/spinlock.h>
  #include <linux/module.h>
  #include <linux/zpool.h>
  
  struct zpool {
af8d417a0   Dan Streetman   mm/zpool: impleme...
22
23
  	struct zpool_driver *driver;
  	void *pool;
786727799   Krzysztof Kozlowski   mm: zpool: consti...
24
  	const struct zpool_ops *ops;
9c3760eb8   Yu Zhao   zswap: only save ...
25
  	bool evictable;
af8d417a0   Dan Streetman   mm/zpool: impleme...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  
  	struct list_head list;
  };
  
  static LIST_HEAD(drivers_head);
  static DEFINE_SPINLOCK(drivers_lock);
  
  static LIST_HEAD(pools_head);
  static DEFINE_SPINLOCK(pools_lock);
  
  /**
   * zpool_register_driver() - register a zpool implementation.
   * @driver:	driver to register
   */
  void zpool_register_driver(struct zpool_driver *driver)
  {
  	spin_lock(&drivers_lock);
  	atomic_set(&driver->refcount, 0);
  	list_add(&driver->list, &drivers_head);
  	spin_unlock(&drivers_lock);
  }
  EXPORT_SYMBOL(zpool_register_driver);
  
  /**
   * zpool_unregister_driver() - unregister a zpool implementation.
   * @driver:	driver to unregister.
   *
   * Module usage counting is used to prevent using a driver
   * while/after unloading, so if this is called from module
   * exit function, this should never fail; if called from
   * other than the module exit function, and this returns
   * failure, the driver is in use and must remain available.
   */
  int zpool_unregister_driver(struct zpool_driver *driver)
  {
  	int ret = 0, refcount;
  
  	spin_lock(&drivers_lock);
  	refcount = atomic_read(&driver->refcount);
  	WARN_ON(refcount < 0);
  	if (refcount > 0)
  		ret = -EBUSY;
  	else
  		list_del(&driver->list);
  	spin_unlock(&drivers_lock);
  
  	return ret;
  }
  EXPORT_SYMBOL(zpool_unregister_driver);
69e18f4db   Dan Streetman   zpool: remove red...
75
  /* this assumes @type is null-terminated. */
6f3526d6d   Sergey SENOZHATSKY   mm: zsmalloc: con...
76
  static struct zpool_driver *zpool_get_driver(const char *type)
af8d417a0   Dan Streetman   mm/zpool: impleme...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  {
  	struct zpool_driver *driver;
  
  	spin_lock(&drivers_lock);
  	list_for_each_entry(driver, &drivers_head, list) {
  		if (!strcmp(driver->type, type)) {
  			bool got = try_module_get(driver->owner);
  
  			if (got)
  				atomic_inc(&driver->refcount);
  			spin_unlock(&drivers_lock);
  			return got ? driver : NULL;
  		}
  	}
  
  	spin_unlock(&drivers_lock);
  	return NULL;
  }
  
  static void zpool_put_driver(struct zpool_driver *driver)
  {
  	atomic_dec(&driver->refcount);
  	module_put(driver->owner);
  }
  
  /**
3f0e13122   Dan Streetman   zpool: add zpool_...
103
   * zpool_has_pool() - Check if the pool driver is available
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
104
   * @type:	The type of the zpool to check (e.g. zbud, zsmalloc)
3f0e13122   Dan Streetman   zpool: add zpool_...
105
106
107
108
109
110
111
112
113
114
115
   *
   * This checks if the @type pool driver is available.  This will try to load
   * the requested module, if needed, but there is no guarantee the module will
   * still be loaded and available immediately after calling.  If this returns
   * true, the caller should assume the pool is available, but must be prepared
   * to handle the @zpool_create_pool() returning failure.  However if this
   * returns false, the caller should assume the requested pool type is not
   * available; either the requested pool type module does not exist, or could
   * not be loaded, and calling @zpool_create_pool() with the pool type will
   * fail.
   *
69e18f4db   Dan Streetman   zpool: remove red...
116
117
   * The @type string must be null-terminated.
   *
3f0e13122   Dan Streetman   zpool: add zpool_...
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
   * Returns: true if @type pool is available, false if not
   */
  bool zpool_has_pool(char *type)
  {
  	struct zpool_driver *driver = zpool_get_driver(type);
  
  	if (!driver) {
  		request_module("zpool-%s", type);
  		driver = zpool_get_driver(type);
  	}
  
  	if (!driver)
  		return false;
  
  	zpool_put_driver(driver);
  	return true;
  }
  EXPORT_SYMBOL(zpool_has_pool);
  
  /**
af8d417a0   Dan Streetman   mm/zpool: impleme...
138
   * zpool_create_pool() - Create a new zpool
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
139
140
141
142
   * @type:	The type of the zpool to create (e.g. zbud, zsmalloc)
   * @name:	The name of the zpool (e.g. zram0, zswap)
   * @gfp:	The GFP flags to use when allocating the pool.
   * @ops:	The optional ops callback.
af8d417a0   Dan Streetman   mm/zpool: impleme...
143
144
145
   *
   * This creates a new zpool of the specified type.  The gfp flags will be
   * used when allocating memory, if the implementation supports it.  If the
9c3760eb8   Yu Zhao   zswap: only save ...
146
   * ops param is NULL, then the created zpool will not be evictable.
af8d417a0   Dan Streetman   mm/zpool: impleme...
147
148
149
   *
   * Implementations must guarantee this to be thread-safe.
   *
69e18f4db   Dan Streetman   zpool: remove red...
150
151
   * The @type and @name strings must be null-terminated.
   *
af8d417a0   Dan Streetman   mm/zpool: impleme...
152
153
   * Returns: New zpool on success, NULL on failure.
   */
6f3526d6d   Sergey SENOZHATSKY   mm: zsmalloc: con...
154
  struct zpool *zpool_create_pool(const char *type, const char *name, gfp_t gfp,
786727799   Krzysztof Kozlowski   mm: zpool: consti...
155
  		const struct zpool_ops *ops)
af8d417a0   Dan Streetman   mm/zpool: impleme...
156
157
158
  {
  	struct zpool_driver *driver;
  	struct zpool *zpool;
cf41f5f49   Dan Streetman   zpool: change pr_...
159
160
  	pr_debug("creating pool type %s
  ", type);
af8d417a0   Dan Streetman   mm/zpool: impleme...
161
162
163
164
  
  	driver = zpool_get_driver(type);
  
  	if (!driver) {
137f8cff5   Kees Cook   mm/zpool: use pre...
165
  		request_module("zpool-%s", type);
af8d417a0   Dan Streetman   mm/zpool: impleme...
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  		driver = zpool_get_driver(type);
  	}
  
  	if (!driver) {
  		pr_err("no driver for type %s
  ", type);
  		return NULL;
  	}
  
  	zpool = kmalloc(sizeof(*zpool), gfp);
  	if (!zpool) {
  		pr_err("couldn't create zpool - out of memory
  ");
  		zpool_put_driver(driver);
  		return NULL;
  	}
af8d417a0   Dan Streetman   mm/zpool: impleme...
182
  	zpool->driver = driver;
479305fd7   Dan Streetman   zpool: remove zpo...
183
  	zpool->pool = driver->create(name, gfp, ops, zpool);
af8d417a0   Dan Streetman   mm/zpool: impleme...
184
  	zpool->ops = ops;
9c3760eb8   Yu Zhao   zswap: only save ...
185
  	zpool->evictable = driver->shrink && ops && ops->evict;
af8d417a0   Dan Streetman   mm/zpool: impleme...
186
187
188
189
190
191
192
193
  
  	if (!zpool->pool) {
  		pr_err("couldn't create %s pool
  ", type);
  		zpool_put_driver(driver);
  		kfree(zpool);
  		return NULL;
  	}
cf41f5f49   Dan Streetman   zpool: change pr_...
194
195
  	pr_debug("created pool type %s
  ", type);
af8d417a0   Dan Streetman   mm/zpool: impleme...
196
197
198
199
200
201
202
203
204
205
  
  	spin_lock(&pools_lock);
  	list_add(&zpool->list, &pools_head);
  	spin_unlock(&pools_lock);
  
  	return zpool;
  }
  
  /**
   * zpool_destroy_pool() - Destroy a zpool
f144c390f   Mike Rapoport   mm: docs: fix par...
206
   * @zpool:	The zpool to destroy.
af8d417a0   Dan Streetman   mm/zpool: impleme...
207
208
209
210
211
212
213
214
215
216
   *
   * Implementations must guarantee this to be thread-safe,
   * however only when destroying different pools.  The same
   * pool should only be destroyed once, and should not be used
   * after it is destroyed.
   *
   * This destroys an existing zpool.  The zpool should not be in use.
   */
  void zpool_destroy_pool(struct zpool *zpool)
  {
69e18f4db   Dan Streetman   zpool: remove red...
217
218
  	pr_debug("destroying pool type %s
  ", zpool->driver->type);
af8d417a0   Dan Streetman   mm/zpool: impleme...
219
220
221
222
223
224
225
226
227
228
229
  
  	spin_lock(&pools_lock);
  	list_del(&zpool->list);
  	spin_unlock(&pools_lock);
  	zpool->driver->destroy(zpool->pool);
  	zpool_put_driver(zpool->driver);
  	kfree(zpool);
  }
  
  /**
   * zpool_get_type() - Get the type of the zpool
f144c390f   Mike Rapoport   mm: docs: fix par...
230
   * @zpool:	The zpool to check
af8d417a0   Dan Streetman   mm/zpool: impleme...
231
232
233
234
235
236
237
   *
   * This returns the type of the pool.
   *
   * Implementations must guarantee this to be thread-safe.
   *
   * Returns: The type of zpool.
   */
69e18f4db   Dan Streetman   zpool: remove red...
238
  const char *zpool_get_type(struct zpool *zpool)
af8d417a0   Dan Streetman   mm/zpool: impleme...
239
  {
69e18f4db   Dan Streetman   zpool: remove red...
240
  	return zpool->driver->type;
af8d417a0   Dan Streetman   mm/zpool: impleme...
241
242
243
  }
  
  /**
b6aa2c834   Randy Dunlap   mm/zpool.c: delet...
244
245
   * zpool_malloc_support_movable() - Check if the zpool supports
   *	allocating movable memory
c165f25d2   Hui Zhu   zpool: add malloc...
246
247
   * @zpool:	The zpool to check
   *
b6aa2c834   Randy Dunlap   mm/zpool.c: delet...
248
   * This returns if the zpool supports allocating movable memory.
c165f25d2   Hui Zhu   zpool: add malloc...
249
250
251
   *
   * Implementations must guarantee this to be thread-safe.
   *
b6aa2c834   Randy Dunlap   mm/zpool.c: delet...
252
   * Returns: true if the zpool supports allocating movable memory, false if not
c165f25d2   Hui Zhu   zpool: add malloc...
253
254
255
256
257
258
259
   */
  bool zpool_malloc_support_movable(struct zpool *zpool)
  {
  	return zpool->driver->malloc_support_movable;
  }
  
  /**
af8d417a0   Dan Streetman   mm/zpool: impleme...
260
   * zpool_malloc() - Allocate memory
f144c390f   Mike Rapoport   mm: docs: fix par...
261
   * @zpool:	The zpool to allocate from.
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
262
263
264
   * @size:	The amount of memory to allocate.
   * @gfp:	The GFP flags to use when allocating memory.
   * @handle:	Pointer to the handle to set
af8d417a0   Dan Streetman   mm/zpool: impleme...
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
   *
   * This allocates the requested amount of memory from the pool.
   * The gfp flags will be used when allocating memory, if the
   * implementation supports it.  The provided @handle will be
   * set to the allocated object handle.
   *
   * Implementations must guarantee this to be thread-safe.
   *
   * Returns: 0 on success, negative value on error.
   */
  int zpool_malloc(struct zpool *zpool, size_t size, gfp_t gfp,
  			unsigned long *handle)
  {
  	return zpool->driver->malloc(zpool->pool, size, gfp, handle);
  }
  
  /**
   * zpool_free() - Free previously allocated memory
f144c390f   Mike Rapoport   mm: docs: fix par...
283
   * @zpool:	The zpool that allocated the memory.
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
284
   * @handle:	The handle to the memory to free.
af8d417a0   Dan Streetman   mm/zpool: impleme...
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
   *
   * This frees previously allocated memory.  This does not guarantee
   * that the pool will actually free memory, only that the memory
   * in the pool will become available for use by the pool.
   *
   * Implementations must guarantee this to be thread-safe,
   * however only when freeing different handles.  The same
   * handle should only be freed once, and should not be used
   * after freeing.
   */
  void zpool_free(struct zpool *zpool, unsigned long handle)
  {
  	zpool->driver->free(zpool->pool, handle);
  }
  
  /**
   * zpool_shrink() - Shrink the pool size
f144c390f   Mike Rapoport   mm: docs: fix par...
302
   * @zpool:	The zpool to shrink.
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
303
304
   * @pages:	The number of pages to shrink the pool.
   * @reclaimed:	The number of pages successfully evicted.
af8d417a0   Dan Streetman   mm/zpool: impleme...
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
   *
   * This attempts to shrink the actual memory size of the pool
   * by evicting currently used handle(s).  If the pool was
   * created with no zpool_ops, or the evict call fails for any
   * of the handles, this will fail.  If non-NULL, the @reclaimed
   * parameter will be set to the number of pages reclaimed,
   * which may be more than the number of pages requested.
   *
   * Implementations must guarantee this to be thread-safe.
   *
   * Returns: 0 on success, negative value on error/failure.
   */
  int zpool_shrink(struct zpool *zpool, unsigned int pages,
  			unsigned int *reclaimed)
  {
9c3760eb8   Yu Zhao   zswap: only save ...
320
321
  	return zpool->driver->shrink ?
  	       zpool->driver->shrink(zpool->pool, pages, reclaimed) : -EINVAL;
af8d417a0   Dan Streetman   mm/zpool: impleme...
322
323
324
325
  }
  
  /**
   * zpool_map_handle() - Map a previously allocated handle into memory
f144c390f   Mike Rapoport   mm: docs: fix par...
326
   * @zpool:	The zpool that the handle was allocated from
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
327
   * @handle:	The handle to map
f144c390f   Mike Rapoport   mm: docs: fix par...
328
   * @mapmode:	How the memory should be mapped
af8d417a0   Dan Streetman   mm/zpool: impleme...
329
   *
f144c390f   Mike Rapoport   mm: docs: fix par...
330
   * This maps a previously allocated handle into memory.  The @mapmode
af8d417a0   Dan Streetman   mm/zpool: impleme...
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
   * param indicates to the implementation how the memory will be
   * used, i.e. read-only, write-only, read-write.  If the
   * implementation does not support it, the memory will be treated
   * as read-write.
   *
   * This may hold locks, disable interrupts, and/or preemption,
   * and the zpool_unmap_handle() must be called to undo those
   * actions.  The code that uses the mapped handle should complete
   * its operatons on the mapped handle memory quickly and unmap
   * as soon as possible.  As the implementation may use per-cpu
   * data, multiple handles should not be mapped concurrently on
   * any cpu.
   *
   * Returns: A pointer to the handle's mapped memory area.
   */
  void *zpool_map_handle(struct zpool *zpool, unsigned long handle,
  			enum zpool_mapmode mapmode)
  {
  	return zpool->driver->map(zpool->pool, handle, mapmode);
  }
  
  /**
   * zpool_unmap_handle() - Unmap a previously mapped handle
f144c390f   Mike Rapoport   mm: docs: fix par...
354
   * @zpool:	The zpool that the handle was allocated from
b7701a5f2   Mike Rapoport   mm: docs: fixup p...
355
   * @handle:	The handle to unmap
af8d417a0   Dan Streetman   mm/zpool: impleme...
356
357
358
359
360
361
362
363
364
365
366
367
368
   *
   * This unmaps a previously mapped handle.  Any locks or other
   * actions that the implementation took in zpool_map_handle()
   * will be undone here.  The memory area returned from
   * zpool_map_handle() should no longer be used after this.
   */
  void zpool_unmap_handle(struct zpool *zpool, unsigned long handle)
  {
  	zpool->driver->unmap(zpool->pool, handle);
  }
  
  /**
   * zpool_get_total_size() - The total size of the pool
f144c390f   Mike Rapoport   mm: docs: fix par...
369
   * @zpool:	The zpool to check
af8d417a0   Dan Streetman   mm/zpool: impleme...
370
371
372
373
374
375
376
377
378
   *
   * This returns the total size in bytes of the pool.
   *
   * Returns: Total size of the zpool in bytes.
   */
  u64 zpool_get_total_size(struct zpool *zpool)
  {
  	return zpool->driver->total_size(zpool->pool);
  }
9c3760eb8   Yu Zhao   zswap: only save ...
379
380
  /**
   * zpool_evictable() - Test if zpool is potentially evictable
14fec9eba   Mike Rapoport   mm/zpool.c: zpool...
381
   * @zpool:	The zpool to test
9c3760eb8   Yu Zhao   zswap: only save ...
382
383
384
385
386
387
388
389
390
391
392
393
394
395
   *
   * Zpool is only potentially evictable when it's created with struct
   * zpool_ops.evict and its driver implements struct zpool_driver.shrink.
   *
   * However, it doesn't necessarily mean driver will use zpool_ops.evict
   * in its implementation of zpool_driver.shrink. It could do internal
   * defragmentation instead.
   *
   * Returns: true if potentially evictable; false otherwise.
   */
  bool zpool_evictable(struct zpool *zpool)
  {
  	return zpool->evictable;
  }
af8d417a0   Dan Streetman   mm/zpool: impleme...
396
397
398
  MODULE_LICENSE("GPL");
  MODULE_AUTHOR("Dan Streetman <ddstreet@ieee.org>");
  MODULE_DESCRIPTION("Common API for compressed memory storage");