dm-space-map-disk.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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. *result = count > 1;
  63. return 0;
  64. }
  65. static int sm_disk_set_count(struct dm_space_map *sm, dm_block_t b,
  66. uint32_t count)
  67. {
  68. int r;
  69. uint32_t old_count;
  70. enum allocation_event ev;
  71. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  72. r = sm_ll_insert(&smd->ll, b, count, &ev);
  73. if (!r) {
  74. switch (ev) {
  75. case SM_NONE:
  76. break;
  77. case SM_ALLOC:
  78. /*
  79. * This _must_ be free in the prior transaction
  80. * otherwise we've lost atomicity.
  81. */
  82. smd->nr_allocated_this_transaction++;
  83. break;
  84. case SM_FREE:
  85. /*
  86. * It's only free if it's also free in the last
  87. * transaction.
  88. */
  89. r = sm_ll_lookup(&smd->old_ll, b, &old_count);
  90. if (r)
  91. return r;
  92. if (!old_count)
  93. smd->nr_allocated_this_transaction--;
  94. break;
  95. }
  96. }
  97. return r;
  98. }
  99. static int sm_disk_inc_block(struct dm_space_map *sm, dm_block_t b)
  100. {
  101. int r;
  102. enum allocation_event ev;
  103. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  104. r = sm_ll_inc(&smd->ll, b, &ev);
  105. if (!r && (ev == SM_ALLOC))
  106. /*
  107. * This _must_ be free in the prior transaction
  108. * otherwise we've lost atomicity.
  109. */
  110. smd->nr_allocated_this_transaction++;
  111. return r;
  112. }
  113. static int sm_disk_dec_block(struct dm_space_map *sm, dm_block_t b)
  114. {
  115. enum allocation_event ev;
  116. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  117. return sm_ll_dec(&smd->ll, b, &ev);
  118. }
  119. static int sm_disk_new_block(struct dm_space_map *sm, dm_block_t *b)
  120. {
  121. int r;
  122. enum allocation_event ev;
  123. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  124. /* FIXME: we should loop round a couple of times */
  125. r = sm_ll_find_free_block(&smd->old_ll, smd->begin, smd->old_ll.nr_blocks, b);
  126. if (r)
  127. return r;
  128. smd->begin = *b + 1;
  129. r = sm_ll_inc(&smd->ll, *b, &ev);
  130. if (!r) {
  131. BUG_ON(ev != SM_ALLOC);
  132. smd->nr_allocated_this_transaction++;
  133. }
  134. return r;
  135. }
  136. static int sm_disk_commit(struct dm_space_map *sm)
  137. {
  138. int r;
  139. dm_block_t nr_free;
  140. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  141. r = sm_disk_get_nr_free(sm, &nr_free);
  142. if (r)
  143. return r;
  144. r = sm_ll_commit(&smd->ll);
  145. if (r)
  146. return r;
  147. memcpy(&smd->old_ll, &smd->ll, sizeof(smd->old_ll));
  148. smd->begin = 0;
  149. smd->nr_allocated_this_transaction = 0;
  150. r = sm_disk_get_nr_free(sm, &nr_free);
  151. if (r)
  152. return r;
  153. return 0;
  154. }
  155. static int sm_disk_root_size(struct dm_space_map *sm, size_t *result)
  156. {
  157. *result = sizeof(struct disk_sm_root);
  158. return 0;
  159. }
  160. static int sm_disk_copy_root(struct dm_space_map *sm, void *where_le, size_t max)
  161. {
  162. struct sm_disk *smd = container_of(sm, struct sm_disk, sm);
  163. struct disk_sm_root root_le;
  164. root_le.nr_blocks = cpu_to_le64(smd->ll.nr_blocks);
  165. root_le.nr_allocated = cpu_to_le64(smd->ll.nr_allocated);
  166. root_le.bitmap_root = cpu_to_le64(smd->ll.bitmap_root);
  167. root_le.ref_count_root = cpu_to_le64(smd->ll.ref_count_root);
  168. if (max < sizeof(root_le))
  169. return -ENOSPC;
  170. memcpy(where_le, &root_le, sizeof(root_le));
  171. return 0;
  172. }
  173. /*----------------------------------------------------------------*/
  174. static struct dm_space_map ops = {
  175. .destroy = sm_disk_destroy,
  176. .extend = sm_disk_extend,
  177. .get_nr_blocks = sm_disk_get_nr_blocks,
  178. .get_nr_free = sm_disk_get_nr_free,
  179. .get_count = sm_disk_get_count,
  180. .count_is_more_than_one = sm_disk_count_is_more_than_one,
  181. .set_count = sm_disk_set_count,
  182. .inc_block = sm_disk_inc_block,
  183. .dec_block = sm_disk_dec_block,
  184. .new_block = sm_disk_new_block,
  185. .commit = sm_disk_commit,
  186. .root_size = sm_disk_root_size,
  187. .copy_root = sm_disk_copy_root,
  188. .register_threshold_callback = NULL
  189. };
  190. struct dm_space_map *dm_sm_disk_create(struct dm_transaction_manager *tm,
  191. dm_block_t nr_blocks)
  192. {
  193. int r;
  194. struct sm_disk *smd;
  195. smd = kmalloc(sizeof(*smd), GFP_KERNEL);
  196. if (!smd)
  197. return ERR_PTR(-ENOMEM);
  198. smd->begin = 0;
  199. smd->nr_allocated_this_transaction = 0;
  200. memcpy(&smd->sm, &ops, sizeof(smd->sm));
  201. r = sm_ll_new_disk(&smd->ll, tm);
  202. if (r)
  203. goto bad;
  204. r = sm_ll_extend(&smd->ll, nr_blocks);
  205. if (r)
  206. goto bad;
  207. r = sm_disk_commit(&smd->sm);
  208. if (r)
  209. goto bad;
  210. return &smd->sm;
  211. bad:
  212. kfree(smd);
  213. return ERR_PTR(r);
  214. }
  215. EXPORT_SYMBOL_GPL(dm_sm_disk_create);
  216. struct dm_space_map *dm_sm_disk_open(struct dm_transaction_manager *tm,
  217. void *root_le, size_t len)
  218. {
  219. int r;
  220. struct sm_disk *smd;
  221. smd = kmalloc(sizeof(*smd), GFP_KERNEL);
  222. if (!smd)
  223. return ERR_PTR(-ENOMEM);
  224. smd->begin = 0;
  225. smd->nr_allocated_this_transaction = 0;
  226. memcpy(&smd->sm, &ops, sizeof(smd->sm));
  227. r = sm_ll_open_disk(&smd->ll, tm, root_le, len);
  228. if (r)
  229. goto bad;
  230. r = sm_disk_commit(&smd->sm);
  231. if (r)
  232. goto bad;
  233. return &smd->sm;
  234. bad:
  235. kfree(smd);
  236. return ERR_PTR(r);
  237. }
  238. EXPORT_SYMBOL_GPL(dm_sm_disk_open);
  239. /*----------------------------------------------------------------*/