summaryrefslogtreecommitdiff
path: root/drivers/md/bcache/bkey.h
blob: 6ab9203b2fb0945192f6128a18981ef4eab75764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
75
76
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
#ifndef _BCACHE_BKEY_H
#define _BCACHE_BKEY_H

#include <asm/bug.h>
#include <linux/bcache.h>
#include <linux/bcache-kernel.h>

#include "util.h"

int bch_bkey_to_text(char *, size_t, const struct bkey *);

static inline unsigned bkey_val_u64s(const struct bkey *k)
{
	return k->u64s - BKEY_U64s;
}

static inline size_t bkey_val_bytes(const struct bkey *k)
{
	return bkey_val_u64s(k) * sizeof(u64);
}

static inline void set_bkey_val_u64s(struct bkey *k, unsigned val_u64s)
{
	k->u64s = BKEY_U64s + val_u64s;
}

static inline void set_bkey_val_bytes(struct bkey *k, unsigned bytes)
{
	k->u64s = BKEY_U64s + DIV_ROUND_UP(bytes, sizeof(u64));
}

/*
 * Mark a key as deleted without changing the size of the value (i.e. modifying
 * keys in the btree in place)
 */
static inline void __set_bkey_deleted(struct bkey *k)
{
	k->type = KEY_TYPE_DELETED;
}

static inline void set_bkey_deleted(struct bkey *k)
{
	__set_bkey_deleted(k);
	set_bkey_val_u64s(k, 0);
}

#define bkey_deleted(_k)	((_k)->type == KEY_TYPE_DELETED)

struct btree_keys;

struct bkey_format_state {
	u64 field_min[BKEY_NR_FIELDS];
	u64 field_max[BKEY_NR_FIELDS];
};

void bch_bkey_format_init(struct bkey_format_state *);
void bch_bkey_format_add_key(struct bkey_format_state *, struct bkey *);
void bch_bkey_format_add_pos(struct bkey_format_state *, struct bpos);
struct bkey_format bch_bkey_format_done(struct bkey_format_state *);
const char *bch_bkey_format_validate(struct bkey_format *);

unsigned bkey_greatest_differing_bit(const struct bkey_format *,
				     const struct bkey_packed *,
				     const struct bkey_packed *);

int __bkey_cmp_left_packed(const struct bkey_format *,
			   const struct bkey_packed *,
			   struct bpos);

#define bkey_cmp_left_packed(_format, _l, _r)			\
({								\
	const struct bkey *_l_unpacked;				\
								\
	unlikely(_l_unpacked = packed_to_bkey_c(_l))		\
		? bkey_cmp(_l_unpacked->p, _r)			\
		: __bkey_cmp_left_packed(_format, _l, _r);	\
})

int __bkey_cmp_packed(const struct bkey_format *,
		      const struct bkey_packed *,
		      const struct bkey_packed *);

#if 1
static __always_inline int bkey_cmp(struct bpos l, struct bpos r)
{
	if (l.inode != r.inode)
		return l.inode < r.inode ? -1 : 1;
	if (l.offset != r.offset)
		return l.offset < r.offset ? -1 : 1;
	if (l.snapshot != r.snapshot)
		return l.snapshot < r.snapshot ? -1 : 1;
	return 0;
}
#else
int bkey_cmp(struct bpos l, struct bpos r);
#endif

static inline bool bkey_packed(const struct bkey_packed *k)
{
	EBUG_ON(k->format > KEY_FORMAT_CURRENT);
	return k->format != KEY_FORMAT_CURRENT;
}

/*
 * It's safe to treat an unpacked bkey as a packed one, but not the reverse
 */
static inline struct bkey_packed *bkey_to_packed(struct bkey_i *k)
{
	return (struct bkey_packed *) k;
}

static inline const struct bkey_packed *bkey_to_packed_c(const struct bkey_i *k)
{
	return (const struct bkey_packed *) k;
}

static inline struct bkey_i *packed_to_bkey(struct bkey_packed *k)
{
	return bkey_packed(k) ? NULL : (struct bkey_i *) k;
}

static inline const struct bkey *packed_to_bkey_c(const struct bkey_packed *k)
{
	return bkey_packed(k) ? NULL : (const struct bkey *) k;
}

static inline unsigned bkey_format_key_bits(const struct bkey_format *format)
{
	return format->bits_per_field[BKEY_FIELD_INODE] +
		format->bits_per_field[BKEY_FIELD_OFFSET] +
		format->bits_per_field[BKEY_FIELD_SNAPSHOT];
}

#define bkey_packed_typecheck(_k)					\
({									\
	BUILD_BUG_ON(!type_is(_k, struct bkey *) &&			\
		     !type_is(_k, struct bkey_packed *));		\
	type_is(_k, struct bkey_packed *) && bkey_packed((void *) (_k));\
})

/*
 * If @_l and @_r are in the same format, does the comparison without unpacking.
 * Otherwise, unpacks whichever one is packed.
 */
#define bkey_cmp_packed(_f, _l, _r)					\
	((bkey_packed_typecheck(_l) && bkey_packed_typecheck(_r))	\
	 ? __bkey_cmp_packed(_f, (void *) _l, (void *) _r)		\
	 : bkey_packed_typecheck(_l)					\
	 ? __bkey_cmp_left_packed(_f,					\
				  (struct bkey_packed *) _l,		\
				  ((struct bkey *) _r)->p)		\
	 : bkey_packed_typecheck(_r)					\
	 ? -__bkey_cmp_left_packed(_f,					\
				   (struct bkey_packed *) _r,		\
				   ((struct bkey *) _l)->p)		\
	 : bkey_cmp(((struct bkey *) _l)->p,				\
		    ((struct bkey *) _r)->p))

/* packed or unpacked */
static inline int bkey_cmp_p_or_unp(const struct bkey_format *format,
				    const struct bkey_packed *l,
				    const struct bkey_packed *r_packed,
				    struct bpos r)
{
	const struct bkey *l_unpacked;

	EBUG_ON(r_packed && !bkey_packed(r_packed));

	if (unlikely(l_unpacked = packed_to_bkey_c(l)))
		return bkey_cmp(l_unpacked->p, r);

	if (likely(r_packed))
		return __bkey_cmp_packed(format, l, r_packed);

	return __bkey_cmp_left_packed(format, l, r);
}

static inline struct bpos bkey_successor(struct bpos p)
{
	struct bpos ret = p;

	if (!++ret.offset)
		BUG_ON(!++ret.inode);

	return ret;
}

static inline u64 bkey_start_offset(const struct bkey *k)
{
	return k->p.offset - k->size;
}

static inline struct bpos bkey_start_pos(const struct bkey *k)
{
	return (struct bpos) {
		.inode		= k->p.inode,
		.offset		= bkey_start_offset(k),
		.snapshot	= k->p.snapshot,
	};
}

/* Packed helpers */

static inline unsigned bkeyp_key_u64s(const struct bkey_format *format,
				      const struct bkey_packed *k)
{
	return bkey_packed(k) ? format->key_u64s : BKEY_U64s;
}

static inline unsigned bkeyp_key_bytes(const struct bkey_format *format,
				       const struct bkey_packed *k)
{
	return bkeyp_key_u64s(format, k) * sizeof(u64);
}

static inline unsigned bkeyp_val_u64s(const struct bkey_format *format,
				      const struct bkey_packed *k)
{
	return k->u64s - bkeyp_key_u64s(format, k);
}

static inline size_t bkeyp_val_bytes(const struct bkey_format *format,
				     const struct bkey_packed *k)
{
	return bkeyp_val_u64s(format, k) * sizeof(u64);
}

#define bkeyp_val(_format, _k)						\
	 ((struct bch_val *) ((_k)->_data + bkeyp_key_u64s(_format, _k)))

extern const struct bkey_format bch_bkey_format_current;

bool bch_bkey_format_transform(const struct bkey_format *,
			       struct bkey_packed *,
			       const struct bkey_format *,
			       const struct bkey_packed *);

static inline struct bkey __bkey_unpack_key(const struct bkey_format *format,
					    const struct bkey_packed *in)
{
	struct bkey out;
	bool s;

	EBUG_ON(in->format != KEY_FORMAT_LOCAL_BTREE);

	out.format = KEY_FORMAT_CURRENT;

	s = bch_bkey_format_transform(&bch_bkey_format_current, (void *) &out,
				      format, in);
	EBUG_ON(!s);

	return out;
}

static inline struct bkey bkey_unpack_key(const struct bkey_format *format,
					  const struct bkey_packed *src)
{
	const struct bkey *src_unpacked;

	return (src_unpacked = packed_to_bkey_c(src))
		? *src_unpacked
		: __bkey_unpack_key(format, src);
}

static inline bool bkey_pack_key(struct bkey_packed *out, const struct bkey *in,
				 const struct bkey_format *format)
{
	EBUG_ON(in->format != KEY_FORMAT_CURRENT);

	out->format	= KEY_FORMAT_LOCAL_BTREE;

	return bch_bkey_format_transform(format, out,
					 &bch_bkey_format_current, (void *) in);
}

bool bkey_pack_pos(struct bkey_packed *, struct bpos,
		   const struct bkey_format *);
bool bkey_pack_pos_lossy(struct bkey_packed *, struct bpos,
			 const struct bkey_format *);
void bkey_unpack(struct bkey_i *, const struct bkey_format *,
		 const struct bkey_packed *);
bool bkey_pack(struct bkey_packed *, const struct bkey_i *,
	       const struct bkey_format *);

/* Disassembled bkeys */

struct bkey_tup {
	struct bkey	k;
	struct bch_val	*v;
};

static inline void bkey_disassemble(struct bkey_tup *tup,
				    const struct bkey_format *f,
				    const struct bkey_packed *k)
{
	tup->k = bkey_unpack_key(f, k);
	tup->v = bkeyp_val(f, k);
}

static inline void bkey_reassemble(struct bkey_i *dst,
				   struct bkey_s_c src)
{
	dst->k = *src.k;
	memcpy(&dst->v, src.v, bkey_val_bytes(src.k));
}

#define bkey_s_null		((struct bkey_s)   { .k = NULL, .v = NULL })
#define bkey_s_c_null		((struct bkey_s_c) { .k = NULL, .v = NULL })

static inline struct bkey_s bkey_to_s(struct bkey *k)
{
	return (struct bkey_s) { .k = k, .v = NULL };
}

static inline struct bkey_s_c bkey_to_s_c(const struct bkey *k)
{
	return (struct bkey_s_c) { .k = k, .v = NULL };
}

static inline struct bkey_s bkey_tup_to_s(struct bkey_tup *tup)
{
	return (struct bkey_s) { .k = &tup->k, .v = tup->v };
}

static inline struct bkey_s_c bkey_tup_to_s_c(const struct bkey_tup *tup)
{
	return (struct bkey_s_c) { .k = &tup->k, .v = tup->v };
}

static inline struct bkey_s bkey_i_to_s(struct bkey_i *k)
{
	return (struct bkey_s) { .k = &k->k, .v = &k->v };
}

static inline struct bkey_s_c bkey_i_to_s_c(const struct bkey_i *k)
{
	return (struct bkey_s_c) { .k = &k->k, .v = &k->v };
}

static inline struct bkey_s_c bkey_s_to_s_c(const struct bkey_s k)
{
	return (struct bkey_s_c) { .k = k.k, .v = k.v };
}

#define to_bkey_s_c(_k)							\
	((struct bkey_s_c) {						\
		.k = (_k).k,						\
		.v = &(_k).v->v,					\
	})

/*
 * For a given type of value (e.g. struct bch_extent), generates the types for
 * bkey + bch_extent - inline, split, split const - and also all the conversion
 * functions, which also check that the value is of the correct type.
 *
 * We use anonymous unions for upcasting - e.g. converting from e.g. a
 * bkey_i_extent to a bkey_i - since that's always safe, instead of conversion
 * functions.
 */
#define BKEY_VAL_ACCESSORS(name, nr)					\
struct bkey_s_##name {							\
	union {								\
	struct {							\
		struct bkey		*k;				\
		struct bch_##name	*v;				\
	};								\
	struct bkey_s			s;				\
	};								\
};									\
									\
struct bkey_s_c_##name {						\
	union {								\
	struct {							\
		const struct bkey	*k;				\
		const struct bch_##name	*v;				\
	};								\
	struct bkey_s_c			s_c;				\
	};								\
};									\
									\
static inline struct bkey_i_##name *bkey_i_to_##name(struct bkey_i *k)	\
{									\
	EBUG_ON(k->k.type != nr);					\
	return container_of(&k->k, struct bkey_i_##name, k);		\
}									\
									\
static inline const struct bkey_i_##name *bkey_i_to_##name##_c(const struct bkey_i *k)\
{									\
	EBUG_ON(k->k.type != nr);					\
	return container_of(&k->k, struct bkey_i_##name, k);		\
}									\
									\
static inline struct bkey_s_##name bkey_s_to_##name(struct bkey_s k)	\
{									\
	EBUG_ON(k.k->type != nr);					\
	return (struct bkey_s_##name) {					\
		.k = k.k,						\
		.v = container_of(k.v, struct bch_##name, v),		\
	};								\
}									\
									\
static inline struct bkey_s_c_##name bkey_s_c_to_##name(struct bkey_s_c k)\
{									\
	EBUG_ON(k.k->type != nr);					\
	return (struct bkey_s_c_##name) {				\
		.k = k.k,						\
		.v = container_of(k.v, struct bch_##name, v),		\
	};								\
}									\
									\
static inline struct bkey_s_##name name##_i_to_s(struct bkey_i_##name *k)\
{									\
	return (struct bkey_s_##name) {					\
		.k = &k->k,						\
		.v = &k->v,						\
	};								\
}									\
									\
static inline struct bkey_s_c_##name name##_i_to_s_c(const struct bkey_i_##name *k)\
{									\
	return (struct bkey_s_c_##name) {				\
		.k = &k->k,						\
		.v = &k->v,						\
	};								\
}									\
									\
static inline struct bkey_s_c_##name name##_s_to_s_c(struct bkey_s_##name k)\
{									\
	return (struct bkey_s_c_##name) {				\
		.k = k.k,						\
		.v = k.v,						\
	};								\
}									\
									\
static inline struct bkey_s_##name bkey_i_to_s_##name(struct bkey_i *k)	\
{									\
	EBUG_ON(k->k.type != nr);					\
	return (struct bkey_s_##name) {					\
		.k = &k->k,						\
		.v = container_of(&k->v, struct bch_##name, v),		\
	};								\
}									\
									\
static inline struct bkey_s_c_##name bkey_i_to_s_c_##name(const struct bkey_i *k)\
{									\
	EBUG_ON(k->k.type != nr);					\
	return (struct bkey_s_c_##name) {				\
		.k = &k->k,						\
		.v = container_of(&k->v, struct bch_##name, v),		\
	};								\
}									\
									\
static inline struct bch_##name *bkey_p_##name##_val(const struct bkey_format *f,\
						     struct bkey_packed *k)\
{	return container_of(bkeyp_val(f, k), struct bch_##name, v);	\
}									\
									\
static inline const struct bch_##name *bkey_p_c_##name##_val(const struct bkey_format *f,\
							     const struct bkey_packed *k)\
{									\
	return container_of(bkeyp_val(f, k), struct bch_##name, v);	\
}									\
									\
static inline struct bkey_i_##name *bkey_##name##_init(struct bkey_i *_k)\
{									\
	struct bkey_i_##name *k = container_of(&_k->k, struct bkey_i_##name, k);\
									\
	bkey_init(&k->k);						\
	memset(&k->v, 0, sizeof(k->v));					\
	k->k.type = nr;							\
	set_bkey_val_bytes(&k->k, sizeof(k->v));			\
									\
	return k;							\
}

BKEY_VAL_ACCESSORS(cookie,		KEY_TYPE_COOKIE);

BKEY_VAL_ACCESSORS(extent,		BCH_EXTENT);

BKEY_VAL_ACCESSORS(inode,		BCH_INODE_FS);
BKEY_VAL_ACCESSORS(inode_blockdev,	BCH_INODE_BLOCKDEV);

BKEY_VAL_ACCESSORS(dirent,		BCH_DIRENT);

BKEY_VAL_ACCESSORS(xattr,		BCH_XATTR);

/* byte order helpers */

#if !defined(__LITTLE_ENDIAN) && !defined(__BIG_ENDIAN)
#error edit for your odd byteorder.
#endif

#ifdef __LITTLE_ENDIAN

#define high_bit_offset		0
#define low_bit_offset		KEY_PACKED_BITS_START

#define __high_word(u64s, k)	((k)->_data + (u64s) - 1)
#define __low_word(u64s, k)	((k)->_data)

#define nth_word(p, n)		((p) - (n))

#else

#define high_bit_offset		KEY_PACKED_BITS_START
#define low_bit_offset		0

#define __high_word(u64s, k)	((k)->_data)
#define __low_word(u64s, k)	((k)->_data + (u64s) - 1)

#define nth_word(p, n)		((p) + (n))

#endif

#define high_word(format, k)	__high_word((format)->key_u64s, k)
#define low_word(format, k)	__low_word((format)->key_u64s, k)

#define next_word(p)		nth_word(p, 1)

#endif /* _BCACHE_BKEY_H */