dm-space-map-disk.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /*
  2. * Copyright (C) 2011 Red Hat, Inc.
  3. *
  4. * This file is released under the GPL.
  5. */
  6. #include "dm-space-map-common.h"
  7. #include "dm-space-map-disk.h"
  8. #include "dm-space-map.h"
  9. #include "dm-transaction-manager.h"
  10. #include <linux/list.h>
  11. #include <linux/slab.h>
  12. #include <linux/export.h>
  13. #include <linux/device-mapper.h>
  14. #define DM_MSG_PREFIX "space map disk"
  15. /*----------------------------------------------------------------*/
  16. /*
  17. * Space map interface.
  18. */
  19. struct sm_disk {
  20. struct dm_space_map sm;
  21. struct ll_disk ll;
  22. struct ll_disk old_ll;
  23. dm_block_t begin;
  24. dm_block_t nr_allocated_this_transaction;
  25. };
  26. static void sm_disk_destroy(struct dm_space_map *sm)
  27. {
  28. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  29. kfree(smd);
  30. }
  31. static int sm_disk_extend(struct dm_space_map *sm, dm_block_t extra_blocks)
  32. {
  33. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  34. return sm_ll_extend(&smd->ll, extra_blocks);
  35. }
  36. static int sm_disk_get_nr_blocks(struct dm_space_map *sm, dm_block_t *count)
  37. {
  38. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  39. *count = smd->old_ll.nr_blocks;
  40. return 0;
  41. }
  42. static int sm_disk_get_nr_free(struct dm_space_map *sm, dm_block_t *count)
  43. {
  44. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  45. *count = (smd->old_ll.nr_blocks - smd->old_ll.nr_allocated) - smd->nr_allocated_this_transaction;
  46. return 0;
  47. }
  48. static int sm_disk_get_count(struct dm_space_map *sm, dm_block_t b,
  49. uint32_t *result)
  50. {
  51. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  52. return sm_ll_lookup(&smd->ll, b, result);
  53. }
  54. static int sm_disk_count_is_more_than_one(struct dm_space_map *sm, dm_block_t b,
  55. int *result)
  56. {
  57. int r;
  58. uint32_t count;
  59. r = sm_disk_get_count(sm, b, &count);
  60. if (r)
  61. return r;
  62. return count > 1;
  63. }
  64. static int sm_disk_set_count(struct dm_space_map *sm, dm_block_t b,
  65. uint32_t count)
  66. {
  67. int r;
  68. uint32_t old_count;
  69. enum allocation_event ev;
  70. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  71. r = sm_ll_insert(&smd->ll, b, count, &ev);
  72. if (!r) {
  73. switch (ev) {
  74. case SM_NONE:
  75. break;
  76. case SM_ALLOC:
  77. /*
  78. * This _must_ be free in the prior transaction
  79. * otherwise we've lost atomicity.
  80. */
  81. smd->nr_allocated_this_transaction++;
  82. break;
  83. case SM_FREE:
  84. /*
  85. * It's only free if it's also free in the last
  86. * transaction.
  87. */
  88. r = sm_ll_lookup(&smd->old_ll, b, &old_count);
  89. if (r)
  90. return r;
  91. if (!old_count)
  92. smd->nr_allocated_this_transaction--;
  93. break;
  94. }
  95. }
  96. return r;
  97. }
  98. static int sm_disk_inc_block(struct dm_space_map *sm, dm_block_t b)
  99. {
  100. int r;
  101. enum allocation_event ev;
  102. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  103. r = sm_ll_inc(&smd->ll, b, &ev);
  104. if (!r && (ev == SM_ALLOC))
  105. /*
  106. * This _must_ be free in the prior transaction
  107. * otherwise we've lost atomicity.
  108. */
  109. smd->nr_allocated_this_transaction++;
  110. return r;
  111. }
  112. static int sm_disk_dec_block(struct dm_space_map *sm, dm_block_t b)
  113. {
  114. enum allocation_event ev;
  115. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  116. return sm_ll_dec(&smd->ll, b, &ev);
  117. }
  118. static int sm_disk_new_block(struct dm_space_map *sm, dm_block_t *b)
  119. {
  120. int r;
  121. enum allocation_event ev;
  122. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  123. /* FIXME: we should loop round a couple of times */
  124. r = sm_ll_find_free_block(&smd->old_ll, smd->begin, smd->old_ll.nr_blocks, b);
  125. if (r)
  126. return r;
  127. smd->begin = *b + 1;
  128. r = sm_ll_inc(&smd->ll, *b, &ev);
  129. if (!r) {
  130. BUG_ON(ev != SM_ALLOC);
  131. smd->nr_allocated_this_transaction++;
  132. }
  133. return r;
  134. }
  135. static int sm_disk_commit(struct dm_space_map *sm)
  136. {
  137. int r;
  138. dm_block_t nr_free;
  139. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  140. r = sm_disk_get_nr_free(sm, &nr_free);
  141. if (r)
  142. return r;
  143. r = sm_ll_commit(&smd->ll);
  144. if (r)
  145. return r;
  146. memcpy(&smd->old_ll, &smd->ll, sizeof(smd->old_ll));
  147. smd->begin = 0;
  148. smd->nr_allocated_this_transaction = 0;
  149. r = sm_disk_get_nr_free(sm, &nr_free);
  150. if (r)
  151. return r;
  152. return 0;
  153. }
  154. static int sm_disk_root_size(struct dm_space_map *sm, size_t *result)
  155. {
  156. *result = sizeof(struct disk_sm_root);
  157. return 0;
  158. }
  159. static int sm_disk_copy_root(struct dm_space_map *sm, void *where_le, size_t max)
  160. {
  161. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  162. struct disk_sm_root root_le;
  163. root_le.nr_blocks = cpu_to_le64(smd->ll.nr_blocks);
  164. root_le.nr_allocated = cpu_to_le64(smd->ll.nr_allocated);
  165. root_le.bitmap_root = cpu_to_le64(smd->ll.bitmap_root);
  166. root_le.ref_count_root = cpu_to_le64(smd->ll.ref_count_root);
  167. if (max < sizeof(root_le))
  168. return -ENOSPC;
  169. memcpy(where_le, &root_le, sizeof(root_le));
  170. return 0;
  171. }
  172. /*----------------------------------------------------------------*/
  173. static struct dm_space_map ops = {
  174. .destroy = sm_disk_destroy,
  175. .extend = sm_disk_extend,
  176. .get_nr_blocks = sm_disk_get_nr_blocks,
  177. .get_nr_free = sm_disk_get_nr_free,
  178. .get_count = sm_disk_get_count,
  179. .count_is_more_than_one = sm_disk_count_is_more_than_one,
  180. .set_count = sm_disk_set_count,
  181. .inc_block = sm_disk_inc_block,
  182. .dec_block = sm_disk_dec_block,
  183. .new_block = sm_disk_new_block,
  184. .commit = sm_disk_commit,
  185. .root_size = sm_disk_root_size,
  186. .copy_root = sm_disk_copy_root,
  187. .register_threshold_callback = NULL
  188. };
  189. struct dm_space_map *dm_sm_disk_create(struct dm_transaction_manager *tm,
  190. dm_block_t nr_blocks)
  191. {
  192. int r;
  193. struct sm_disk *smd;
  194. smd = kmalloc(sizeof(*smd), GFP_KERNEL);
  195. if (!smd)
  196. return ERR_PTR(-ENOMEM);
  197. smd->begin = 0;
  198. smd->nr_allocated_this_transaction = 0;
  199. memcpy(&smd->sm, &ops, sizeof(smd->sm));
  200. r = sm_ll_new_disk(&smd->ll, tm);
  201. if (r)
  202. goto bad;
  203. r = sm_ll_extend(&smd->ll, nr_blocks);
  204. if (r)
  205. goto bad;
  206. r = sm_disk_commit(&smd->sm);
  207. if (r)
  208. goto bad;
  209. return &smd->sm;
  210. bad:
  211. kfree(smd);
  212. return ERR_PTR(r);
  213. }
  214. EXPORT_SYMBOL_GPL(dm_sm_disk_create);
  215. struct dm_space_map *dm_sm_disk_open(struct dm_transaction_manager *tm,
  216. void *root_le, size_t len)
  217. {
  218. int r;
  219. struct sm_disk *smd;
  220. smd = kmalloc(sizeof(*smd), GFP_KERNEL);
  221. if (!smd)
  222. return ERR_PTR(-ENOMEM);
  223. smd->begin = 0;
  224. smd->nr_allocated_this_transaction = 0;
  225. memcpy(&smd->sm, &ops, sizeof(smd->sm));
  226. r = sm_ll_open_disk(&smd->ll, tm, root_le, len);
  227. if (r)
  228. goto bad;
  229. r = sm_disk_commit(&smd->sm);
  230. if (r)
  231. goto bad;
  232. return &smd->sm;
  233. bad:
  234. kfree(smd);
  235. return ERR_PTR(r);
  236. }
  237. EXPORT_SYMBOL_GPL(dm_sm_disk_open);
  238. /*----------------------------------------------------------------*/