bcache.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238
  1. #ifndef _BCACHE_H
  2. #define _BCACHE_H
  3. /*
  4. * SOME HIGH LEVEL CODE DOCUMENTATION:
  5. *
  6. * Bcache mostly works with cache sets, cache devices, and backing devices.
  7. *
  8. * Support for multiple cache devices hasn't quite been finished off yet, but
  9. * it's about 95% plumbed through. A cache set and its cache devices is sort of
  10. * like a md raid array and its component devices. Most of the code doesn't care
  11. * about individual cache devices, the main abstraction is the cache set.
  12. *
  13. * Multiple cache devices is intended to give us the ability to mirror dirty
  14. * cached data and metadata, without mirroring clean cached data.
  15. *
  16. * Backing devices are different, in that they have a lifetime independent of a
  17. * cache set. When you register a newly formatted backing device it'll come up
  18. * in passthrough mode, and then you can attach and detach a backing device from
  19. * a cache set at runtime - while it's mounted and in use. Detaching implicitly
  20. * invalidates any cached data for that backing device.
  21. *
  22. * A cache set can have multiple (many) backing devices attached to it.
  23. *
  24. * There's also flash only volumes - this is the reason for the distinction
  25. * between struct cached_dev and struct bcache_device. A flash only volume
  26. * works much like a bcache device that has a backing device, except the
  27. * "cached" data is always dirty. The end result is that we get thin
  28. * provisioning with very little additional code.
  29. *
  30. * Flash only volumes work but they're not production ready because the moving
  31. * garbage collector needs more work. More on that later.
  32. *
  33. * BUCKETS/ALLOCATION:
  34. *
  35. * Bcache is primarily designed for caching, which means that in normal
  36. * operation all of our available space will be allocated. Thus, we need an
  37. * efficient way of deleting things from the cache so we can write new things to
  38. * it.
  39. *
  40. * To do this, we first divide the cache device up into buckets. A bucket is the
  41. * unit of allocation; they're typically around 1 mb - anywhere from 128k to 2M+
  42. * works efficiently.
  43. *
  44. * Each bucket has a 16 bit priority, and an 8 bit generation associated with
  45. * it. The gens and priorities for all the buckets are stored contiguously and
  46. * packed on disk (in a linked list of buckets - aside from the superblock, all
  47. * of bcache's metadata is stored in buckets).
  48. *
  49. * The priority is used to implement an LRU. We reset a bucket's priority when
  50. * we allocate it or on cache it, and every so often we decrement the priority
  51. * of each bucket. It could be used to implement something more sophisticated,
  52. * if anyone ever gets around to it.
  53. *
  54. * The generation is used for invalidating buckets. Each pointer also has an 8
  55. * bit generation embedded in it; for a pointer to be considered valid, its gen
  56. * must match the gen of the bucket it points into. Thus, to reuse a bucket all
  57. * we have to do is increment its gen (and write its new gen to disk; we batch
  58. * this up).
  59. *
  60. * Bcache is entirely COW - we never write twice to a bucket, even buckets that
  61. * contain metadata (including btree nodes).
  62. *
  63. * THE BTREE:
  64. *
  65. * Bcache is in large part design around the btree.
  66. *
  67. * At a high level, the btree is just an index of key -> ptr tuples.
  68. *
  69. * Keys represent extents, and thus have a size field. Keys also have a variable
  70. * number of pointers attached to them (potentially zero, which is handy for
  71. * invalidating the cache).
  72. *
  73. * The key itself is an inode:offset pair. The inode number corresponds to a
  74. * backing device or a flash only volume. The offset is the ending offset of the
  75. * extent within the inode - not the starting offset; this makes lookups
  76. * slightly more convenient.
  77. *
  78. * Pointers contain the cache device id, the offset on that device, and an 8 bit
  79. * generation number. More on the gen later.
  80. *
  81. * Index lookups are not fully abstracted - cache lookups in particular are
  82. * still somewhat mixed in with the btree code, but things are headed in that
  83. * direction.
  84. *
  85. * Updates are fairly well abstracted, though. There are two different ways of
  86. * updating the btree; insert and replace.
  87. *
  88. * BTREE_INSERT will just take a list of keys and insert them into the btree -
  89. * overwriting (possibly only partially) any extents they overlap with. This is
  90. * used to update the index after a write.
  91. *
  92. * BTREE_REPLACE is really cmpxchg(); it inserts a key into the btree iff it is
  93. * overwriting a key that matches another given key. This is used for inserting
  94. * data into the cache after a cache miss, and for background writeback, and for
  95. * the moving garbage collector.
  96. *
  97. * There is no "delete" operation; deleting things from the index is
  98. * accomplished by either by invalidating pointers (by incrementing a bucket's
  99. * gen) or by inserting a key with 0 pointers - which will overwrite anything
  100. * previously present at that location in the index.
  101. *
  102. * This means that there are always stale/invalid keys in the btree. They're
  103. * filtered out by the code that iterates through a btree node, and removed when
  104. * a btree node is rewritten.
  105. *
  106. * BTREE NODES:
  107. *
  108. * Our unit of allocation is a bucket, and we we can't arbitrarily allocate and
  109. * free smaller than a bucket - so, that's how big our btree nodes are.
  110. *
  111. * (If buckets are really big we'll only use part of the bucket for a btree node
  112. * - no less than 1/4th - but a bucket still contains no more than a single
  113. * btree node. I'd actually like to change this, but for now we rely on the
  114. * bucket's gen for deleting btree nodes when we rewrite/split a node.)
  115. *
  116. * Anyways, btree nodes are big - big enough to be inefficient with a textbook
  117. * btree implementation.
  118. *
  119. * The way this is solved is that btree nodes are internally log structured; we
  120. * can append new keys to an existing btree node without rewriting it. This
  121. * means each set of keys we write is sorted, but the node is not.
  122. *
  123. * We maintain this log structure in memory - keeping 1Mb of keys sorted would
  124. * be expensive, and we have to distinguish between the keys we have written and
  125. * the keys we haven't. So to do a lookup in a btree node, we have to search
  126. * each sorted set. But we do merge written sets together lazily, so the cost of
  127. * these extra searches is quite low (normally most of the keys in a btree node
  128. * will be in one big set, and then there'll be one or two sets that are much
  129. * smaller).
  130. *
  131. * This log structure makes bcache's btree more of a hybrid between a
  132. * conventional btree and a compacting data structure, with some of the
  133. * advantages of both.
  134. *
  135. * GARBAGE COLLECTION:
  136. *
  137. * We can't just invalidate any bucket - it might contain dirty data or
  138. * metadata. If it once contained dirty data, other writes might overwrite it
  139. * later, leaving no valid pointers into that bucket in the index.
  140. *
  141. * Thus, the primary purpose of garbage collection is to find buckets to reuse.
  142. * It also counts how much valid data it each bucket currently contains, so that
  143. * allocation can reuse buckets sooner when they've been mostly overwritten.
  144. *
  145. * It also does some things that are really internal to the btree
  146. * implementation. If a btree node contains pointers that are stale by more than
  147. * some threshold, it rewrites the btree node to avoid the bucket's generation
  148. * wrapping around. It also merges adjacent btree nodes if they're empty enough.
  149. *
  150. * THE JOURNAL:
  151. *
  152. * Bcache's journal is not necessary for consistency; we always strictly
  153. * order metadata writes so that the btree and everything else is consistent on
  154. * disk in the event of an unclean shutdown, and in fact bcache had writeback
  155. * caching (with recovery from unclean shutdown) before journalling was
  156. * implemented.
  157. *
  158. * Rather, the journal is purely a performance optimization; we can't complete a
  159. * write until we've updated the index on disk, otherwise the cache would be
  160. * inconsistent in the event of an unclean shutdown. This means that without the
  161. * journal, on random write workloads we constantly have to update all the leaf
  162. * nodes in the btree, and those writes will be mostly empty (appending at most
  163. * a few keys each) - highly inefficient in terms of amount of metadata writes,
  164. * and it puts more strain on the various btree resorting/compacting code.
  165. *
  166. * The journal is just a log of keys we've inserted; on startup we just reinsert
  167. * all the keys in the open journal entries. That means that when we're updating
  168. * a node in the btree, we can wait until a 4k block of keys fills up before
  169. * writing them out.
  170. *
  171. * For simplicity, we only journal updates to leaf nodes; updates to parent
  172. * nodes are rare enough (since our leaf nodes are huge) that it wasn't worth
  173. * the complexity to deal with journalling them (in particular, journal replay)
  174. * - updates to non leaf nodes just happen synchronously (see btree_split()).
  175. */
  176. #define pr_fmt(fmt) "bcache: %s() " fmt "\n", __func__
  177. #include <linux/bio.h>
  178. #include <linux/kobject.h>
  179. #include <linux/list.h>
  180. #include <linux/mutex.h>
  181. #include <linux/rbtree.h>
  182. #include <linux/rwsem.h>
  183. #include <linux/types.h>
  184. #include <linux/workqueue.h>
  185. #include "util.h"
  186. #include "closure.h"
  187. struct bucket {
  188. atomic_t pin;
  189. uint16_t prio;
  190. uint8_t gen;
  191. uint8_t disk_gen;
  192. uint8_t last_gc; /* Most out of date gen in the btree */
  193. uint8_t gc_gen;
  194. uint16_t gc_mark;
  195. };
  196. /*
  197. * I'd use bitfields for these, but I don't trust the compiler not to screw me
  198. * as multiple threads touch struct bucket without locking
  199. */
  200. BITMASK(GC_MARK, struct bucket, gc_mark, 0, 2);
  201. #define GC_MARK_RECLAIMABLE 0
  202. #define GC_MARK_DIRTY 1
  203. #define GC_MARK_METADATA 2
  204. BITMASK(GC_SECTORS_USED, struct bucket, gc_mark, 2, 14);
  205. struct bkey {
  206. uint64_t high;
  207. uint64_t low;
  208. uint64_t ptr[];
  209. };
  210. /* Enough for a key with 6 pointers */
  211. #define BKEY_PAD 8
  212. #define BKEY_PADDED(key) \
  213. union { struct bkey key; uint64_t key ## _pad[BKEY_PAD]; }
  214. /* Version 0: Cache device
  215. * Version 1: Backing device
  216. * Version 2: Seed pointer into btree node checksum
  217. * Version 3: Cache device with new UUID format
  218. * Version 4: Backing device with data offset
  219. */
  220. #define BCACHE_SB_VERSION_CDEV 0
  221. #define BCACHE_SB_VERSION_BDEV 1
  222. #define BCACHE_SB_VERSION_CDEV_WITH_UUID 3
  223. #define BCACHE_SB_VERSION_BDEV_WITH_OFFSET 4
  224. #define BCACHE_SB_MAX_VERSION 4
  225. #define SB_SECTOR 8
  226. #define SB_SIZE 4096
  227. #define SB_LABEL_SIZE 32
  228. #define SB_JOURNAL_BUCKETS 256U
  229. /* SB_JOURNAL_BUCKETS must be divisible by BITS_PER_LONG */
  230. #define MAX_CACHES_PER_SET 8
  231. #define BDEV_DATA_START_DEFAULT 16 /* sectors */
  232. struct cache_sb {
  233. uint64_t csum;
  234. uint64_t offset; /* sector where this sb was written */
  235. uint64_t version;
  236. uint8_t magic[16];
  237. uint8_t uuid[16];
  238. union {
  239. uint8_t set_uuid[16];
  240. uint64_t set_magic;
  241. };
  242. uint8_t label[SB_LABEL_SIZE];
  243. uint64_t flags;
  244. uint64_t seq;
  245. uint64_t pad[8];
  246. union {
  247. struct {
  248. /* Cache devices */
  249. uint64_t nbuckets; /* device size */
  250. uint16_t block_size; /* sectors */
  251. uint16_t bucket_size; /* sectors */
  252. uint16_t nr_in_set;
  253. uint16_t nr_this_dev;
  254. };
  255. struct {
  256. /* Backing devices */
  257. uint64_t data_offset;
  258. /*
  259. * block_size from the cache device section is still used by
  260. * backing devices, so don't add anything here until we fix
  261. * things to not need it for backing devices anymore
  262. */
  263. };
  264. };
  265. uint32_t last_mount; /* time_t */
  266. uint16_t first_bucket;
  267. union {
  268. uint16_t njournal_buckets;
  269. uint16_t keys;
  270. };
  271. uint64_t d[SB_JOURNAL_BUCKETS]; /* journal buckets */
  272. };
  273. BITMASK(CACHE_SYNC, struct cache_sb, flags, 0, 1);
  274. BITMASK(CACHE_DISCARD, struct cache_sb, flags, 1, 1);
  275. BITMASK(CACHE_REPLACEMENT, struct cache_sb, flags, 2, 3);
  276. #define CACHE_REPLACEMENT_LRU 0U
  277. #define CACHE_REPLACEMENT_FIFO 1U
  278. #define CACHE_REPLACEMENT_RANDOM 2U
  279. BITMASK(BDEV_CACHE_MODE, struct cache_sb, flags, 0, 4);
  280. #define CACHE_MODE_WRITETHROUGH 0U
  281. #define CACHE_MODE_WRITEBACK 1U
  282. #define CACHE_MODE_WRITEAROUND 2U
  283. #define CACHE_MODE_NONE 3U
  284. BITMASK(BDEV_STATE, struct cache_sb, flags, 61, 2);
  285. #define BDEV_STATE_NONE 0U
  286. #define BDEV_STATE_CLEAN 1U
  287. #define BDEV_STATE_DIRTY 2U
  288. #define BDEV_STATE_STALE 3U
  289. /* Version 1: Seed pointer into btree node checksum
  290. */
  291. #define BCACHE_BSET_VERSION 1
  292. /*
  293. * This is the on disk format for btree nodes - a btree node on disk is a list
  294. * of these; within each set the keys are sorted
  295. */
  296. struct bset {
  297. uint64_t csum;
  298. uint64_t magic;
  299. uint64_t seq;
  300. uint32_t version;
  301. uint32_t keys;
  302. union {
  303. struct bkey start[0];
  304. uint64_t d[0];
  305. };
  306. };
  307. /*
  308. * On disk format for priorities and gens - see super.c near prio_write() for
  309. * more.
  310. */
  311. struct prio_set {
  312. uint64_t csum;
  313. uint64_t magic;
  314. uint64_t seq;
  315. uint32_t version;
  316. uint32_t pad;
  317. uint64_t next_bucket;
  318. struct bucket_disk {
  319. uint16_t prio;
  320. uint8_t gen;
  321. } __attribute((packed)) data[];
  322. };
  323. struct uuid_entry {
  324. union {
  325. struct {
  326. uint8_t uuid[16];
  327. uint8_t label[32];
  328. uint32_t first_reg;
  329. uint32_t last_reg;
  330. uint32_t invalidated;
  331. uint32_t flags;
  332. /* Size of flash only volumes */
  333. uint64_t sectors;
  334. };
  335. uint8_t pad[128];
  336. };
  337. };
  338. BITMASK(UUID_FLASH_ONLY, struct uuid_entry, flags, 0, 1);
  339. #include "journal.h"
  340. #include "stats.h"
  341. struct search;
  342. struct btree;
  343. struct keybuf;
  344. struct keybuf_key {
  345. struct rb_node node;
  346. BKEY_PADDED(key);
  347. void *private;
  348. };
  349. typedef bool (keybuf_pred_fn)(struct keybuf *, struct bkey *);
  350. struct keybuf {
  351. struct bkey last_scanned;
  352. spinlock_t lock;
  353. /*
  354. * Beginning and end of range in rb tree - so that we can skip taking
  355. * lock and checking the rb tree when we need to check for overlapping
  356. * keys.
  357. */
  358. struct bkey start;
  359. struct bkey end;
  360. struct rb_root keys;
  361. #define KEYBUF_NR 100
  362. DECLARE_ARRAY_ALLOCATOR(struct keybuf_key, freelist, KEYBUF_NR);
  363. };
  364. struct bio_split_pool {
  365. struct bio_set *bio_split;
  366. mempool_t *bio_split_hook;
  367. };
  368. struct bio_split_hook {
  369. struct closure cl;
  370. struct bio_split_pool *p;
  371. struct bio *bio;
  372. bio_end_io_t *bi_end_io;
  373. void *bi_private;
  374. };
  375. struct bcache_device {
  376. struct closure cl;
  377. struct kobject kobj;
  378. struct cache_set *c;
  379. unsigned id;
  380. #define BCACHEDEVNAME_SIZE 12
  381. char name[BCACHEDEVNAME_SIZE];
  382. struct gendisk *disk;
  383. /* If nonzero, we're closing */
  384. atomic_t closing;
  385. /* If nonzero, we're detaching/unregistering from cache set */
  386. atomic_t detaching;
  387. int flush_done;
  388. uint64_t nr_stripes;
  389. unsigned stripe_size_bits;
  390. atomic_t *stripe_sectors_dirty;
  391. unsigned long sectors_dirty_last;
  392. long sectors_dirty_derivative;
  393. mempool_t *unaligned_bvec;
  394. struct bio_set *bio_split;
  395. unsigned data_csum:1;
  396. int (*cache_miss)(struct btree *, struct search *,
  397. struct bio *, unsigned);
  398. int (*ioctl) (struct bcache_device *, fmode_t, unsigned, unsigned long);
  399. struct bio_split_pool bio_split_hook;
  400. };
  401. struct io {
  402. /* Used to track sequential IO so it can be skipped */
  403. struct hlist_node hash;
  404. struct list_head lru;
  405. unsigned long jiffies;
  406. unsigned sequential;
  407. sector_t last;
  408. };
  409. struct cached_dev {
  410. struct list_head list;
  411. struct bcache_device disk;
  412. struct block_device *bdev;
  413. struct cache_sb sb;
  414. struct bio sb_bio;
  415. struct bio_vec sb_bv[1];
  416. struct closure_with_waitlist sb_write;
  417. /* Refcount on the cache set. Always nonzero when we're caching. */
  418. atomic_t count;
  419. struct work_struct detach;
  420. /*
  421. * Device might not be running if it's dirty and the cache set hasn't
  422. * showed up yet.
  423. */
  424. atomic_t running;
  425. /*
  426. * Writes take a shared lock from start to finish; scanning for dirty
  427. * data to refill the rb tree requires an exclusive lock.
  428. */
  429. struct rw_semaphore writeback_lock;
  430. /*
  431. * Nonzero, and writeback has a refcount (d->count), iff there is dirty
  432. * data in the cache. Protected by writeback_lock; must have an
  433. * shared lock to set and exclusive lock to clear.
  434. */
  435. atomic_t has_dirty;
  436. struct ratelimit writeback_rate;
  437. struct delayed_work writeback_rate_update;
  438. /*
  439. * Internal to the writeback code, so read_dirty() can keep track of
  440. * where it's at.
  441. */
  442. sector_t last_read;
  443. /* Number of writeback bios in flight */
  444. atomic_t in_flight;
  445. struct closure_with_timer writeback;
  446. struct closure_waitlist writeback_wait;
  447. struct keybuf writeback_keys;
  448. /* For tracking sequential IO */
  449. #define RECENT_IO_BITS 7
  450. #define RECENT_IO (1 << RECENT_IO_BITS)
  451. struct io io[RECENT_IO];
  452. struct hlist_head io_hash[RECENT_IO + 1];
  453. struct list_head io_lru;
  454. spinlock_t io_lock;
  455. struct cache_accounting accounting;
  456. /* The rest of this all shows up in sysfs */
  457. unsigned sequential_cutoff;
  458. unsigned readahead;
  459. unsigned sequential_merge:1;
  460. unsigned verify:1;
  461. unsigned partial_stripes_expensive:1;
  462. unsigned writeback_metadata:1;
  463. unsigned writeback_running:1;
  464. unsigned char writeback_percent;
  465. unsigned writeback_delay;
  466. int writeback_rate_change;
  467. int64_t writeback_rate_derivative;
  468. uint64_t writeback_rate_target;
  469. unsigned writeback_rate_update_seconds;
  470. unsigned writeback_rate_d_term;
  471. unsigned writeback_rate_p_term_inverse;
  472. unsigned writeback_rate_d_smooth;
  473. };
  474. enum alloc_watermarks {
  475. WATERMARK_PRIO,
  476. WATERMARK_METADATA,
  477. WATERMARK_MOVINGGC,
  478. WATERMARK_NONE,
  479. WATERMARK_MAX
  480. };
  481. struct cache {
  482. struct cache_set *set;
  483. struct cache_sb sb;
  484. struct bio sb_bio;
  485. struct bio_vec sb_bv[1];
  486. struct kobject kobj;
  487. struct block_device *bdev;
  488. unsigned watermark[WATERMARK_MAX];
  489. struct task_struct *alloc_thread;
  490. struct closure prio;
  491. struct prio_set *disk_buckets;
  492. /*
  493. * When allocating new buckets, prio_write() gets first dibs - since we
  494. * may not be allocate at all without writing priorities and gens.
  495. * prio_buckets[] contains the last buckets we wrote priorities to (so
  496. * gc can mark them as metadata), prio_next[] contains the buckets
  497. * allocated for the next prio write.
  498. */
  499. uint64_t *prio_buckets;
  500. uint64_t *prio_last_buckets;
  501. /*
  502. * free: Buckets that are ready to be used
  503. *
  504. * free_inc: Incoming buckets - these are buckets that currently have
  505. * cached data in them, and we can't reuse them until after we write
  506. * their new gen to disk. After prio_write() finishes writing the new
  507. * gens/prios, they'll be moved to the free list (and possibly discarded
  508. * in the process)
  509. *
  510. * unused: GC found nothing pointing into these buckets (possibly
  511. * because all the data they contained was overwritten), so we only
  512. * need to discard them before they can be moved to the free list.
  513. */
  514. DECLARE_FIFO(long, free);
  515. DECLARE_FIFO(long, free_inc);
  516. DECLARE_FIFO(long, unused);
  517. size_t fifo_last_bucket;
  518. /* Allocation stuff: */
  519. struct bucket *buckets;
  520. DECLARE_HEAP(struct bucket *, heap);
  521. /*
  522. * max(gen - disk_gen) for all buckets. When it gets too big we have to
  523. * call prio_write() to keep gens from wrapping.
  524. */
  525. uint8_t need_save_prio;
  526. unsigned gc_move_threshold;
  527. /*
  528. * If nonzero, we know we aren't going to find any buckets to invalidate
  529. * until a gc finishes - otherwise we could pointlessly burn a ton of
  530. * cpu
  531. */
  532. unsigned invalidate_needs_gc:1;
  533. bool discard; /* Get rid of? */
  534. /*
  535. * We preallocate structs for issuing discards to buckets, and keep them
  536. * on this list when they're not in use; do_discard() issues discards
  537. * whenever there's work to do and is called by free_some_buckets() and
  538. * when a discard finishes.
  539. */
  540. atomic_t discards_in_flight;
  541. struct list_head discards;
  542. struct journal_device journal;
  543. /* The rest of this all shows up in sysfs */
  544. #define IO_ERROR_SHIFT 20
  545. atomic_t io_errors;
  546. atomic_t io_count;
  547. atomic_long_t meta_sectors_written;
  548. atomic_long_t btree_sectors_written;
  549. atomic_long_t sectors_written;
  550. struct bio_split_pool bio_split_hook;
  551. };
  552. struct gc_stat {
  553. size_t nodes;
  554. size_t key_bytes;
  555. size_t nkeys;
  556. uint64_t data; /* sectors */
  557. uint64_t dirty; /* sectors */
  558. unsigned in_use; /* percent */
  559. };
  560. /*
  561. * Flag bits, for how the cache set is shutting down, and what phase it's at:
  562. *
  563. * CACHE_SET_UNREGISTERING means we're not just shutting down, we're detaching
  564. * all the backing devices first (their cached data gets invalidated, and they
  565. * won't automatically reattach).
  566. *
  567. * CACHE_SET_STOPPING always gets set first when we're closing down a cache set;
  568. * we'll continue to run normally for awhile with CACHE_SET_STOPPING set (i.e.
  569. * flushing dirty data).
  570. */
  571. #define CACHE_SET_UNREGISTERING 0
  572. #define CACHE_SET_STOPPING 1
  573. struct cache_set {
  574. struct closure cl;
  575. struct list_head list;
  576. struct kobject kobj;
  577. struct kobject internal;
  578. struct dentry *debug;
  579. struct cache_accounting accounting;
  580. unsigned long flags;
  581. struct cache_sb sb;
  582. struct cache *cache[MAX_CACHES_PER_SET];
  583. struct cache *cache_by_alloc[MAX_CACHES_PER_SET];
  584. int caches_loaded;
  585. struct bcache_device **devices;
  586. struct list_head cached_devs;
  587. uint64_t cached_dev_sectors;
  588. struct closure caching;
  589. struct closure_with_waitlist sb_write;
  590. mempool_t *search;
  591. mempool_t *bio_meta;
  592. struct bio_set *bio_split;
  593. /* For the btree cache */
  594. struct shrinker shrink;
  595. /* For the btree cache and anything allocation related */
  596. struct mutex bucket_lock;
  597. /* log2(bucket_size), in sectors */
  598. unsigned short bucket_bits;
  599. /* log2(block_size), in sectors */
  600. unsigned short block_bits;
  601. /*
  602. * Default number of pages for a new btree node - may be less than a
  603. * full bucket
  604. */
  605. unsigned btree_pages;
  606. /*
  607. * Lists of struct btrees; lru is the list for structs that have memory
  608. * allocated for actual btree node, freed is for structs that do not.
  609. *
  610. * We never free a struct btree, except on shutdown - we just put it on
  611. * the btree_cache_freed list and reuse it later. This simplifies the
  612. * code, and it doesn't cost us much memory as the memory usage is
  613. * dominated by buffers that hold the actual btree node data and those
  614. * can be freed - and the number of struct btrees allocated is
  615. * effectively bounded.
  616. *
  617. * btree_cache_freeable effectively is a small cache - we use it because
  618. * high order page allocations can be rather expensive, and it's quite
  619. * common to delete and allocate btree nodes in quick succession. It
  620. * should never grow past ~2-3 nodes in practice.
  621. */
  622. struct list_head btree_cache;
  623. struct list_head btree_cache_freeable;
  624. struct list_head btree_cache_freed;
  625. /* Number of elements in btree_cache + btree_cache_freeable lists */
  626. unsigned bucket_cache_used;
  627. /*
  628. * If we need to allocate memory for a new btree node and that
  629. * allocation fails, we can cannibalize another node in the btree cache
  630. * to satisfy the allocation. However, only one thread can be doing this
  631. * at a time, for obvious reasons - try_harder and try_wait are
  632. * basically a lock for this that we can wait on asynchronously. The
  633. * btree_root() macro releases the lock when it returns.
  634. */
  635. struct closure *try_harder;
  636. struct closure_waitlist try_wait;
  637. uint64_t try_harder_start;
  638. /*
  639. * When we free a btree node, we increment the gen of the bucket the
  640. * node is in - but we can't rewrite the prios and gens until we
  641. * finished whatever it is we were doing, otherwise after a crash the
  642. * btree node would be freed but for say a split, we might not have the
  643. * pointers to the new nodes inserted into the btree yet.
  644. *
  645. * This is a refcount that blocks prio_write() until the new keys are
  646. * written.
  647. */
  648. atomic_t prio_blocked;
  649. struct closure_waitlist bucket_wait;
  650. /*
  651. * For any bio we don't skip we subtract the number of sectors from
  652. * rescale; when it hits 0 we rescale all the bucket priorities.
  653. */
  654. atomic_t rescale;
  655. /*
  656. * When we invalidate buckets, we use both the priority and the amount
  657. * of good data to determine which buckets to reuse first - to weight
  658. * those together consistently we keep track of the smallest nonzero
  659. * priority of any bucket.
  660. */
  661. uint16_t min_prio;
  662. /*
  663. * max(gen - gc_gen) for all buckets. When it gets too big we have to gc
  664. * to keep gens from wrapping around.
  665. */
  666. uint8_t need_gc;
  667. struct gc_stat gc_stats;
  668. size_t nbuckets;
  669. struct closure_with_waitlist gc;
  670. /* Where in the btree gc currently is */
  671. struct bkey gc_done;
  672. /*
  673. * The allocation code needs gc_mark in struct bucket to be correct, but
  674. * it's not while a gc is in progress. Protected by bucket_lock.
  675. */
  676. int gc_mark_valid;
  677. /* Counts how many sectors bio_insert has added to the cache */
  678. atomic_t sectors_to_gc;
  679. struct closure moving_gc;
  680. struct closure_waitlist moving_gc_wait;
  681. struct keybuf moving_gc_keys;
  682. /* Number of moving GC bios in flight */
  683. atomic_t in_flight;
  684. struct btree *root;
  685. #ifdef CONFIG_BCACHE_DEBUG
  686. struct btree *verify_data;
  687. struct mutex verify_lock;
  688. #endif
  689. unsigned nr_uuids;
  690. struct uuid_entry *uuids;
  691. BKEY_PADDED(uuid_bucket);
  692. struct closure_with_waitlist uuid_write;
  693. /*
  694. * A btree node on disk could have too many bsets for an iterator to fit
  695. * on the stack - have to dynamically allocate them
  696. */
  697. mempool_t *fill_iter;
  698. /*
  699. * btree_sort() is a merge sort and requires temporary space - single
  700. * element mempool
  701. */
  702. struct mutex sort_lock;
  703. struct bset *sort;
  704. unsigned sort_crit_factor;
  705. /* List of buckets we're currently writing data to */
  706. struct list_head data_buckets;
  707. spinlock_t data_bucket_lock;
  708. struct journal journal;
  709. #define CONGESTED_MAX 1024
  710. unsigned congested_last_us;
  711. atomic_t congested;
  712. /* The rest of this all shows up in sysfs */
  713. unsigned congested_read_threshold_us;
  714. unsigned congested_write_threshold_us;
  715. spinlock_t sort_time_lock;
  716. struct time_stats sort_time;
  717. struct time_stats btree_gc_time;
  718. struct time_stats btree_split_time;
  719. spinlock_t btree_read_time_lock;
  720. struct time_stats btree_read_time;
  721. struct time_stats try_harder_time;
  722. atomic_long_t cache_read_races;
  723. atomic_long_t writeback_keys_done;
  724. atomic_long_t writeback_keys_failed;
  725. unsigned error_limit;
  726. unsigned error_decay;
  727. unsigned short journal_delay_ms;
  728. unsigned verify:1;
  729. unsigned key_merging_disabled:1;
  730. unsigned gc_always_rewrite:1;
  731. unsigned shrinker_disabled:1;
  732. unsigned copy_gc_enabled:1;
  733. #define BUCKET_HASH_BITS 12
  734. struct hlist_head bucket_hash[1 << BUCKET_HASH_BITS];
  735. };
  736. static inline bool key_merging_disabled(struct cache_set *c)
  737. {
  738. #ifdef CONFIG_BCACHE_DEBUG
  739. return c->key_merging_disabled;
  740. #else
  741. return 0;
  742. #endif
  743. }
  744. static inline bool SB_IS_BDEV(const struct cache_sb *sb)
  745. {
  746. return sb->version == BCACHE_SB_VERSION_BDEV
  747. || sb->version == BCACHE_SB_VERSION_BDEV_WITH_OFFSET;
  748. }
  749. struct bbio {
  750. unsigned submit_time_us;
  751. union {
  752. struct bkey key;
  753. uint64_t _pad[3];
  754. /*
  755. * We only need pad = 3 here because we only ever carry around a
  756. * single pointer - i.e. the pointer we're doing io to/from.
  757. */
  758. };
  759. struct bio bio;
  760. };
  761. static inline unsigned local_clock_us(void)
  762. {
  763. return local_clock() >> 10;
  764. }
  765. #define BTREE_PRIO USHRT_MAX
  766. #define INITIAL_PRIO 32768
  767. #define btree_bytes(c) ((c)->btree_pages * PAGE_SIZE)
  768. #define btree_blocks(b) \
  769. ((unsigned) (KEY_SIZE(&b->key) >> (b)->c->block_bits))
  770. #define btree_default_blocks(c) \
  771. ((unsigned) ((PAGE_SECTORS * (c)->btree_pages) >> (c)->block_bits))
  772. #define bucket_pages(c) ((c)->sb.bucket_size / PAGE_SECTORS)
  773. #define bucket_bytes(c) ((c)->sb.bucket_size << 9)
  774. #define block_bytes(c) ((c)->sb.block_size << 9)
  775. #define __set_bytes(i, k) (sizeof(*(i)) + (k) * sizeof(uint64_t))
  776. #define set_bytes(i) __set_bytes(i, i->keys)
  777. #define __set_blocks(i, k, c) DIV_ROUND_UP(__set_bytes(i, k), block_bytes(c))
  778. #define set_blocks(i, c) __set_blocks(i, (i)->keys, c)
  779. #define node(i, j) ((struct bkey *) ((i)->d + (j)))
  780. #define end(i) node(i, (i)->keys)
  781. #define index(i, b) \
  782. ((size_t) (((void *) i - (void *) (b)->sets[0].data) / \
  783. block_bytes(b->c)))
  784. #define btree_data_space(b) (PAGE_SIZE << (b)->page_order)
  785. #define prios_per_bucket(c) \
  786. ((bucket_bytes(c) - sizeof(struct prio_set)) / \
  787. sizeof(struct bucket_disk))
  788. #define prio_buckets(c) \
  789. DIV_ROUND_UP((size_t) (c)->sb.nbuckets, prios_per_bucket(c))
  790. #define JSET_MAGIC 0x245235c1a3625032ULL
  791. #define PSET_MAGIC 0x6750e15f87337f91ULL
  792. #define BSET_MAGIC 0x90135c78b99e07f5ULL
  793. #define jset_magic(c) ((c)->sb.set_magic ^ JSET_MAGIC)
  794. #define pset_magic(c) ((c)->sb.set_magic ^ PSET_MAGIC)
  795. #define bset_magic(c) ((c)->sb.set_magic ^ BSET_MAGIC)
  796. /* Bkey fields: all units are in sectors */
  797. #define KEY_FIELD(name, field, offset, size) \
  798. BITMASK(name, struct bkey, field, offset, size)
  799. #define PTR_FIELD(name, offset, size) \
  800. static inline uint64_t name(const struct bkey *k, unsigned i) \
  801. { return (k->ptr[i] >> offset) & ~(((uint64_t) ~0) << size); } \
  802. \
  803. static inline void SET_##name(struct bkey *k, unsigned i, uint64_t v)\
  804. { \
  805. k->ptr[i] &= ~(~((uint64_t) ~0 << size) << offset); \
  806. k->ptr[i] |= v << offset; \
  807. }
  808. KEY_FIELD(KEY_PTRS, high, 60, 3)
  809. KEY_FIELD(HEADER_SIZE, high, 58, 2)
  810. KEY_FIELD(KEY_CSUM, high, 56, 2)
  811. KEY_FIELD(KEY_PINNED, high, 55, 1)
  812. KEY_FIELD(KEY_DIRTY, high, 36, 1)
  813. KEY_FIELD(KEY_SIZE, high, 20, 16)
  814. KEY_FIELD(KEY_INODE, high, 0, 20)
  815. /* Next time I change the on disk format, KEY_OFFSET() won't be 64 bits */
  816. static inline uint64_t KEY_OFFSET(const struct bkey *k)
  817. {
  818. return k->low;
  819. }
  820. static inline void SET_KEY_OFFSET(struct bkey *k, uint64_t v)
  821. {
  822. k->low = v;
  823. }
  824. PTR_FIELD(PTR_DEV, 51, 12)
  825. PTR_FIELD(PTR_OFFSET, 8, 43)
  826. PTR_FIELD(PTR_GEN, 0, 8)
  827. #define PTR_CHECK_DEV ((1 << 12) - 1)
  828. #define PTR(gen, offset, dev) \
  829. ((((uint64_t) dev) << 51) | ((uint64_t) offset) << 8 | gen)
  830. static inline size_t sector_to_bucket(struct cache_set *c, sector_t s)
  831. {
  832. return s >> c->bucket_bits;
  833. }
  834. static inline sector_t bucket_to_sector(struct cache_set *c, size_t b)
  835. {
  836. return ((sector_t) b) << c->bucket_bits;
  837. }
  838. static inline sector_t bucket_remainder(struct cache_set *c, sector_t s)
  839. {
  840. return s & (c->sb.bucket_size - 1);
  841. }
  842. static inline struct cache *PTR_CACHE(struct cache_set *c,
  843. const struct bkey *k,
  844. unsigned ptr)
  845. {
  846. return c->cache[PTR_DEV(k, ptr)];
  847. }
  848. static inline size_t PTR_BUCKET_NR(struct cache_set *c,
  849. const struct bkey *k,
  850. unsigned ptr)
  851. {
  852. return sector_to_bucket(c, PTR_OFFSET(k, ptr));
  853. }
  854. static inline struct bucket *PTR_BUCKET(struct cache_set *c,
  855. const struct bkey *k,
  856. unsigned ptr)
  857. {
  858. return PTR_CACHE(c, k, ptr)->buckets + PTR_BUCKET_NR(c, k, ptr);
  859. }
  860. /* Btree key macros */
  861. /*
  862. * The high bit being set is a relic from when we used it to do binary
  863. * searches - it told you where a key started. It's not used anymore,
  864. * and can probably be safely dropped.
  865. */
  866. #define KEY(dev, sector, len) \
  867. ((struct bkey) { \
  868. .high = (1ULL << 63) | ((uint64_t) (len) << 20) | (dev), \
  869. .low = (sector) \
  870. })
  871. static inline void bkey_init(struct bkey *k)
  872. {
  873. *k = KEY(0, 0, 0);
  874. }
  875. #define KEY_START(k) (KEY_OFFSET(k) - KEY_SIZE(k))
  876. #define START_KEY(k) KEY(KEY_INODE(k), KEY_START(k), 0)
  877. #define MAX_KEY KEY(~(~0 << 20), ((uint64_t) ~0) >> 1, 0)
  878. #define ZERO_KEY KEY(0, 0, 0)
  879. /*
  880. * This is used for various on disk data structures - cache_sb, prio_set, bset,
  881. * jset: The checksum is _always_ the first 8 bytes of these structs
  882. */
  883. #define csum_set(i) \
  884. bch_crc64(((void *) (i)) + sizeof(uint64_t), \
  885. ((void *) end(i)) - (((void *) (i)) + sizeof(uint64_t)))
  886. /* Error handling macros */
  887. #define btree_bug(b, ...) \
  888. do { \
  889. if (bch_cache_set_error((b)->c, __VA_ARGS__)) \
  890. dump_stack(); \
  891. } while (0)
  892. #define cache_bug(c, ...) \
  893. do { \
  894. if (bch_cache_set_error(c, __VA_ARGS__)) \
  895. dump_stack(); \
  896. } while (0)
  897. #define btree_bug_on(cond, b, ...) \
  898. do { \
  899. if (cond) \
  900. btree_bug(b, __VA_ARGS__); \
  901. } while (0)
  902. #define cache_bug_on(cond, c, ...) \
  903. do { \
  904. if (cond) \
  905. cache_bug(c, __VA_ARGS__); \
  906. } while (0)
  907. #define cache_set_err_on(cond, c, ...) \
  908. do { \
  909. if (cond) \
  910. bch_cache_set_error(c, __VA_ARGS__); \
  911. } while (0)
  912. /* Looping macros */
  913. #define for_each_cache(ca, cs, iter) \
  914. for (iter = 0; ca = cs->cache[iter], iter < (cs)->sb.nr_in_set; iter++)
  915. #define for_each_bucket(b, ca) \
  916. for (b = (ca)->buckets + (ca)->sb.first_bucket; \
  917. b < (ca)->buckets + (ca)->sb.nbuckets; b++)
  918. static inline void __bkey_put(struct cache_set *c, struct bkey *k)
  919. {
  920. unsigned i;
  921. for (i = 0; i < KEY_PTRS(k); i++)
  922. atomic_dec_bug(&PTR_BUCKET(c, k, i)->pin);
  923. }
  924. static inline void cached_dev_put(struct cached_dev *dc)
  925. {
  926. if (atomic_dec_and_test(&dc->count))
  927. schedule_work(&dc->detach);
  928. }
  929. static inline bool cached_dev_get(struct cached_dev *dc)
  930. {
  931. if (!atomic_inc_not_zero(&dc->count))
  932. return false;
  933. /* Paired with the mb in cached_dev_attach */
  934. smp_mb__after_atomic_inc();
  935. return true;
  936. }
  937. /*
  938. * bucket_gc_gen() returns the difference between the bucket's current gen and
  939. * the oldest gen of any pointer into that bucket in the btree (last_gc).
  940. *
  941. * bucket_disk_gen() returns the difference between the current gen and the gen
  942. * on disk; they're both used to make sure gens don't wrap around.
  943. */
  944. static inline uint8_t bucket_gc_gen(struct bucket *b)
  945. {
  946. return b->gen - b->last_gc;
  947. }
  948. static inline uint8_t bucket_disk_gen(struct bucket *b)
  949. {
  950. return b->gen - b->disk_gen;
  951. }
  952. #define BUCKET_GC_GEN_MAX 96U
  953. #define BUCKET_DISK_GEN_MAX 64U
  954. #define kobj_attribute_write(n, fn) \
  955. static struct kobj_attribute ksysfs_##n = __ATTR(n, S_IWUSR, NULL, fn)
  956. #define kobj_attribute_rw(n, show, store) \
  957. static struct kobj_attribute ksysfs_##n = \
  958. __ATTR(n, S_IWUSR|S_IRUSR, show, store)
  959. static inline void wake_up_allocators(struct cache_set *c)
  960. {
  961. struct cache *ca;
  962. unsigned i;
  963. for_each_cache(ca, c, i)
  964. wake_up_process(ca->alloc_thread);
  965. }
  966. /* Forward declarations */
  967. void bch_count_io_errors(struct cache *, int, const char *);
  968. void bch_bbio_count_io_errors(struct cache_set *, struct bio *,
  969. int, const char *);
  970. void bch_bbio_endio(struct cache_set *, struct bio *, int, const char *);
  971. void bch_bbio_free(struct bio *, struct cache_set *);
  972. struct bio *bch_bbio_alloc(struct cache_set *);
  973. struct bio *bch_bio_split(struct bio *, int, gfp_t, struct bio_set *);
  974. void bch_generic_make_request(struct bio *, struct bio_split_pool *);
  975. void __bch_submit_bbio(struct bio *, struct cache_set *);
  976. void bch_submit_bbio(struct bio *, struct cache_set *, struct bkey *, unsigned);
  977. uint8_t bch_inc_gen(struct cache *, struct bucket *);
  978. void bch_rescale_priorities(struct cache_set *, int);
  979. bool bch_bucket_add_unused(struct cache *, struct bucket *);
  980. long bch_bucket_alloc(struct cache *, unsigned, struct closure *);
  981. void bch_bucket_free(struct cache_set *, struct bkey *);
  982. int __bch_bucket_alloc_set(struct cache_set *, unsigned,
  983. struct bkey *, int, struct closure *);
  984. int bch_bucket_alloc_set(struct cache_set *, unsigned,
  985. struct bkey *, int, struct closure *);
  986. __printf(2, 3)
  987. bool bch_cache_set_error(struct cache_set *, const char *, ...);
  988. void bch_prio_write(struct cache *);
  989. void bch_write_bdev_super(struct cached_dev *, struct closure *);
  990. extern struct workqueue_struct *bcache_wq, *bch_gc_wq;
  991. extern const char * const bch_cache_modes[];
  992. extern struct mutex bch_register_lock;
  993. extern struct list_head bch_cache_sets;
  994. extern struct kobj_type bch_cached_dev_ktype;
  995. extern struct kobj_type bch_flash_dev_ktype;
  996. extern struct kobj_type bch_cache_set_ktype;
  997. extern struct kobj_type bch_cache_set_internal_ktype;
  998. extern struct kobj_type bch_cache_ktype;
  999. void bch_cached_dev_release(struct kobject *);
  1000. void bch_flash_dev_release(struct kobject *);
  1001. void bch_cache_set_release(struct kobject *);
  1002. void bch_cache_release(struct kobject *);
  1003. int bch_uuid_write(struct cache_set *);
  1004. void bcache_write_super(struct cache_set *);
  1005. int bch_flash_dev_create(struct cache_set *c, uint64_t size);
  1006. int bch_cached_dev_attach(struct cached_dev *, struct cache_set *);
  1007. void bch_cached_dev_detach(struct cached_dev *);
  1008. void bch_cached_dev_run(struct cached_dev *);
  1009. void bcache_device_stop(struct bcache_device *);
  1010. void bch_cache_set_unregister(struct cache_set *);
  1011. void bch_cache_set_stop(struct cache_set *);
  1012. struct cache_set *bch_cache_set_alloc(struct cache_sb *);
  1013. void bch_btree_cache_free(struct cache_set *);
  1014. int bch_btree_cache_alloc(struct cache_set *);
  1015. void bch_moving_init_cache_set(struct cache_set *);
  1016. int bch_cache_allocator_start(struct cache *ca);
  1017. void bch_cache_allocator_exit(struct cache *ca);
  1018. int bch_cache_allocator_init(struct cache *ca);
  1019. void bch_debug_exit(void);
  1020. int bch_debug_init(struct kobject *);
  1021. void bch_writeback_exit(void);
  1022. int bch_writeback_init(void);
  1023. void bch_request_exit(void);
  1024. int bch_request_init(void);
  1025. void bch_btree_exit(void);
  1026. int bch_btree_init(void);
  1027. #endif /* _BCACHE_H */