blob: bb816bc1a906eb4a916ec2985c302bcabfc723e5 [file] [log] [blame]
Vishal Verma5212e112015-06-25 04:20:32 -04001/*
2 * Block Translation Table
3 * Copyright (c) 2014-2015, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 */
14#include <linux/highmem.h>
15#include <linux/debugfs.h>
16#include <linux/blkdev.h>
17#include <linux/module.h>
18#include <linux/device.h>
19#include <linux/mutex.h>
20#include <linux/hdreg.h>
21#include <linux/genhd.h>
22#include <linux/sizes.h>
23#include <linux/ndctl.h>
24#include <linux/fs.h>
25#include <linux/nd.h>
26#include "btt.h"
27#include "nd.h"
28
29enum log_ent_request {
30 LOG_NEW_ENT = 0,
31 LOG_OLD_ENT
32};
33
Vishal Verma5212e112015-06-25 04:20:32 -040034static int arena_read_bytes(struct arena_info *arena, resource_size_t offset,
Vishal Verma3ae3d672017-05-10 15:01:30 -060035 void *buf, size_t n, unsigned long flags)
Vishal Verma5212e112015-06-25 04:20:32 -040036{
37 struct nd_btt *nd_btt = arena->nd_btt;
38 struct nd_namespace_common *ndns = nd_btt->ndns;
39
Vishal Verma14e49452017-06-28 14:25:00 -060040 /* arena offsets may be shifted from the base of the device */
41 offset += arena->nd_btt->initial_offset;
Vishal Verma3ae3d672017-05-10 15:01:30 -060042 return nvdimm_read_bytes(ndns, offset, buf, n, flags);
Vishal Verma5212e112015-06-25 04:20:32 -040043}
44
45static int arena_write_bytes(struct arena_info *arena, resource_size_t offset,
Vishal Verma3ae3d672017-05-10 15:01:30 -060046 void *buf, size_t n, unsigned long flags)
Vishal Verma5212e112015-06-25 04:20:32 -040047{
48 struct nd_btt *nd_btt = arena->nd_btt;
49 struct nd_namespace_common *ndns = nd_btt->ndns;
50
Vishal Verma14e49452017-06-28 14:25:00 -060051 /* arena offsets may be shifted from the base of the device */
52 offset += arena->nd_btt->initial_offset;
Vishal Verma3ae3d672017-05-10 15:01:30 -060053 return nvdimm_write_bytes(ndns, offset, buf, n, flags);
Vishal Verma5212e112015-06-25 04:20:32 -040054}
55
56static int btt_info_write(struct arena_info *arena, struct btt_sb *super)
57{
58 int ret;
59
Vishal Vermab177fe82017-05-10 15:01:31 -060060 /*
61 * infooff and info2off should always be at least 512B aligned.
62 * We rely on that to make sure rw_bytes does error clearing
63 * correctly, so make sure that is the case.
64 */
65 WARN_ON_ONCE(!IS_ALIGNED(arena->infooff, 512));
66 WARN_ON_ONCE(!IS_ALIGNED(arena->info2off, 512));
67
Vishal Verma5212e112015-06-25 04:20:32 -040068 ret = arena_write_bytes(arena, arena->info2off, super,
Vishal Verma3ae3d672017-05-10 15:01:30 -060069 sizeof(struct btt_sb), 0);
Vishal Verma5212e112015-06-25 04:20:32 -040070 if (ret)
71 return ret;
72
73 return arena_write_bytes(arena, arena->infooff, super,
Vishal Verma3ae3d672017-05-10 15:01:30 -060074 sizeof(struct btt_sb), 0);
Vishal Verma5212e112015-06-25 04:20:32 -040075}
76
77static int btt_info_read(struct arena_info *arena, struct btt_sb *super)
78{
79 WARN_ON(!super);
80 return arena_read_bytes(arena, arena->infooff, super,
Vishal Verma3ae3d672017-05-10 15:01:30 -060081 sizeof(struct btt_sb), 0);
Vishal Verma5212e112015-06-25 04:20:32 -040082}
83
84/*
85 * 'raw' version of btt_map write
86 * Assumptions:
87 * mapping is in little-endian
88 * mapping contains 'E' and 'Z' flags as desired
89 */
Vishal Verma3ae3d672017-05-10 15:01:30 -060090static int __btt_map_write(struct arena_info *arena, u32 lba, __le32 mapping,
91 unsigned long flags)
Vishal Verma5212e112015-06-25 04:20:32 -040092{
93 u64 ns_off = arena->mapoff + (lba * MAP_ENT_SIZE);
94
95 WARN_ON(lba >= arena->external_nlba);
Vishal Verma3ae3d672017-05-10 15:01:30 -060096 return arena_write_bytes(arena, ns_off, &mapping, MAP_ENT_SIZE, flags);
Vishal Verma5212e112015-06-25 04:20:32 -040097}
98
99static int btt_map_write(struct arena_info *arena, u32 lba, u32 mapping,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600100 u32 z_flag, u32 e_flag, unsigned long rwb_flags)
Vishal Verma5212e112015-06-25 04:20:32 -0400101{
102 u32 ze;
103 __le32 mapping_le;
104
105 /*
106 * This 'mapping' is supposed to be just the LBA mapping, without
107 * any flags set, so strip the flag bits.
108 */
Vishal Verma0595d532017-08-30 19:35:59 -0600109 mapping = ent_lba(mapping);
Vishal Verma5212e112015-06-25 04:20:32 -0400110
111 ze = (z_flag << 1) + e_flag;
112 switch (ze) {
113 case 0:
114 /*
115 * We want to set neither of the Z or E flags, and
116 * in the actual layout, this means setting the bit
117 * positions of both to '1' to indicate a 'normal'
118 * map entry
119 */
120 mapping |= MAP_ENT_NORMAL;
121 break;
122 case 1:
123 mapping |= (1 << MAP_ERR_SHIFT);
124 break;
125 case 2:
126 mapping |= (1 << MAP_TRIM_SHIFT);
127 break;
128 default:
129 /*
130 * The case where Z and E are both sent in as '1' could be
131 * construed as a valid 'normal' case, but we decide not to,
132 * to avoid confusion
133 */
134 WARN_ONCE(1, "Invalid use of Z and E flags\n");
135 return -EIO;
136 }
137
138 mapping_le = cpu_to_le32(mapping);
Vishal Verma3ae3d672017-05-10 15:01:30 -0600139 return __btt_map_write(arena, lba, mapping_le, rwb_flags);
Vishal Verma5212e112015-06-25 04:20:32 -0400140}
141
142static int btt_map_read(struct arena_info *arena, u32 lba, u32 *mapping,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600143 int *trim, int *error, unsigned long rwb_flags)
Vishal Verma5212e112015-06-25 04:20:32 -0400144{
145 int ret;
146 __le32 in;
147 u32 raw_mapping, postmap, ze, z_flag, e_flag;
148 u64 ns_off = arena->mapoff + (lba * MAP_ENT_SIZE);
149
150 WARN_ON(lba >= arena->external_nlba);
151
Vishal Verma3ae3d672017-05-10 15:01:30 -0600152 ret = arena_read_bytes(arena, ns_off, &in, MAP_ENT_SIZE, rwb_flags);
Vishal Verma5212e112015-06-25 04:20:32 -0400153 if (ret)
154 return ret;
155
156 raw_mapping = le32_to_cpu(in);
157
Vishal Verma0595d532017-08-30 19:35:59 -0600158 z_flag = ent_z_flag(raw_mapping);
159 e_flag = ent_e_flag(raw_mapping);
Vishal Verma5212e112015-06-25 04:20:32 -0400160 ze = (z_flag << 1) + e_flag;
Vishal Verma0595d532017-08-30 19:35:59 -0600161 postmap = ent_lba(raw_mapping);
Vishal Verma5212e112015-06-25 04:20:32 -0400162
163 /* Reuse the {z,e}_flag variables for *trim and *error */
164 z_flag = 0;
165 e_flag = 0;
166
167 switch (ze) {
168 case 0:
169 /* Initial state. Return postmap = premap */
170 *mapping = lba;
171 break;
172 case 1:
173 *mapping = postmap;
174 e_flag = 1;
175 break;
176 case 2:
177 *mapping = postmap;
178 z_flag = 1;
179 break;
180 case 3:
181 *mapping = postmap;
182 break;
183 default:
184 return -EIO;
185 }
186
187 if (trim)
188 *trim = z_flag;
189 if (error)
190 *error = e_flag;
191
192 return ret;
193}
194
195static int btt_log_read_pair(struct arena_info *arena, u32 lane,
196 struct log_entry *ent)
197{
198 WARN_ON(!ent);
199 return arena_read_bytes(arena,
200 arena->logoff + (2 * lane * LOG_ENT_SIZE), ent,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600201 2 * LOG_ENT_SIZE, 0);
Vishal Verma5212e112015-06-25 04:20:32 -0400202}
203
204static struct dentry *debugfs_root;
205
206static void arena_debugfs_init(struct arena_info *a, struct dentry *parent,
207 int idx)
208{
209 char dirname[32];
210 struct dentry *d;
211
212 /* If for some reason, parent bttN was not created, exit */
213 if (!parent)
214 return;
215
216 snprintf(dirname, 32, "arena%d", idx);
217 d = debugfs_create_dir(dirname, parent);
218 if (IS_ERR_OR_NULL(d))
219 return;
220 a->debugfs_dir = d;
221
222 debugfs_create_x64("size", S_IRUGO, d, &a->size);
223 debugfs_create_x64("external_lba_start", S_IRUGO, d,
224 &a->external_lba_start);
225 debugfs_create_x32("internal_nlba", S_IRUGO, d, &a->internal_nlba);
226 debugfs_create_u32("internal_lbasize", S_IRUGO, d,
227 &a->internal_lbasize);
228 debugfs_create_x32("external_nlba", S_IRUGO, d, &a->external_nlba);
229 debugfs_create_u32("external_lbasize", S_IRUGO, d,
230 &a->external_lbasize);
231 debugfs_create_u32("nfree", S_IRUGO, d, &a->nfree);
232 debugfs_create_u16("version_major", S_IRUGO, d, &a->version_major);
233 debugfs_create_u16("version_minor", S_IRUGO, d, &a->version_minor);
234 debugfs_create_x64("nextoff", S_IRUGO, d, &a->nextoff);
235 debugfs_create_x64("infooff", S_IRUGO, d, &a->infooff);
236 debugfs_create_x64("dataoff", S_IRUGO, d, &a->dataoff);
237 debugfs_create_x64("mapoff", S_IRUGO, d, &a->mapoff);
238 debugfs_create_x64("logoff", S_IRUGO, d, &a->logoff);
239 debugfs_create_x64("info2off", S_IRUGO, d, &a->info2off);
240 debugfs_create_x32("flags", S_IRUGO, d, &a->flags);
241}
242
243static void btt_debugfs_init(struct btt *btt)
244{
245 int i = 0;
246 struct arena_info *arena;
247
248 btt->debugfs_dir = debugfs_create_dir(dev_name(&btt->nd_btt->dev),
249 debugfs_root);
250 if (IS_ERR_OR_NULL(btt->debugfs_dir))
251 return;
252
253 list_for_each_entry(arena, &btt->arena_list, list) {
254 arena_debugfs_init(arena, btt->debugfs_dir, i);
255 i++;
256 }
257}
258
259/*
260 * This function accepts two log entries, and uses the
261 * sequence number to find the 'older' entry.
262 * It also updates the sequence number in this old entry to
263 * make it the 'new' one if the mark_flag is set.
264 * Finally, it returns which of the entries was the older one.
265 *
266 * TODO The logic feels a bit kludge-y. make it better..
267 */
268static int btt_log_get_old(struct log_entry *ent)
269{
270 int old;
271
272 /*
273 * the first ever time this is seen, the entry goes into [0]
274 * the next time, the following logic works out to put this
275 * (next) entry into [1]
276 */
277 if (ent[0].seq == 0) {
278 ent[0].seq = cpu_to_le32(1);
279 return 0;
280 }
281
282 if (ent[0].seq == ent[1].seq)
283 return -EINVAL;
284 if (le32_to_cpu(ent[0].seq) + le32_to_cpu(ent[1].seq) > 5)
285 return -EINVAL;
286
287 if (le32_to_cpu(ent[0].seq) < le32_to_cpu(ent[1].seq)) {
288 if (le32_to_cpu(ent[1].seq) - le32_to_cpu(ent[0].seq) == 1)
289 old = 0;
290 else
291 old = 1;
292 } else {
293 if (le32_to_cpu(ent[0].seq) - le32_to_cpu(ent[1].seq) == 1)
294 old = 1;
295 else
296 old = 0;
297 }
298
299 return old;
300}
301
302static struct device *to_dev(struct arena_info *arena)
303{
304 return &arena->nd_btt->dev;
305}
306
307/*
308 * This function copies the desired (old/new) log entry into ent if
309 * it is not NULL. It returns the sub-slot number (0 or 1)
310 * where the desired log entry was found. Negative return values
311 * indicate errors.
312 */
313static int btt_log_read(struct arena_info *arena, u32 lane,
314 struct log_entry *ent, int old_flag)
315{
316 int ret;
317 int old_ent, ret_ent;
318 struct log_entry log[2];
319
320 ret = btt_log_read_pair(arena, lane, log);
321 if (ret)
322 return -EIO;
323
324 old_ent = btt_log_get_old(log);
325 if (old_ent < 0 || old_ent > 1) {
Vishal Vermae6be2dc2017-06-30 18:32:51 -0600326 dev_err(to_dev(arena),
Vishal Verma5212e112015-06-25 04:20:32 -0400327 "log corruption (%d): lane %d seq [%d, %d]\n",
328 old_ent, lane, log[0].seq, log[1].seq);
329 /* TODO set error state? */
330 return -EIO;
331 }
332
333 ret_ent = (old_flag ? old_ent : (1 - old_ent));
334
335 if (ent != NULL)
336 memcpy(ent, &log[ret_ent], LOG_ENT_SIZE);
337
338 return ret_ent;
339}
340
341/*
342 * This function commits a log entry to media
343 * It does _not_ prepare the freelist entry for the next write
344 * btt_flog_write is the wrapper for updating the freelist elements
345 */
346static int __btt_log_write(struct arena_info *arena, u32 lane,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600347 u32 sub, struct log_entry *ent, unsigned long flags)
Vishal Verma5212e112015-06-25 04:20:32 -0400348{
349 int ret;
350 /*
351 * Ignore the padding in log_entry for calculating log_half.
352 * The entry is 'committed' when we write the sequence number,
353 * and we want to ensure that that is the last thing written.
354 * We don't bother writing the padding as that would be extra
355 * media wear and write amplification
356 */
357 unsigned int log_half = (LOG_ENT_SIZE - 2 * sizeof(u64)) / 2;
358 u64 ns_off = arena->logoff + (((2 * lane) + sub) * LOG_ENT_SIZE);
359 void *src = ent;
360
361 /* split the 16B write into atomic, durable halves */
Vishal Verma3ae3d672017-05-10 15:01:30 -0600362 ret = arena_write_bytes(arena, ns_off, src, log_half, flags);
Vishal Verma5212e112015-06-25 04:20:32 -0400363 if (ret)
364 return ret;
365
366 ns_off += log_half;
367 src += log_half;
Vishal Verma3ae3d672017-05-10 15:01:30 -0600368 return arena_write_bytes(arena, ns_off, src, log_half, flags);
Vishal Verma5212e112015-06-25 04:20:32 -0400369}
370
371static int btt_flog_write(struct arena_info *arena, u32 lane, u32 sub,
372 struct log_entry *ent)
373{
374 int ret;
375
Vishal Verma3ae3d672017-05-10 15:01:30 -0600376 ret = __btt_log_write(arena, lane, sub, ent, NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -0400377 if (ret)
378 return ret;
379
380 /* prepare the next free entry */
381 arena->freelist[lane].sub = 1 - arena->freelist[lane].sub;
382 if (++(arena->freelist[lane].seq) == 4)
383 arena->freelist[lane].seq = 1;
384 arena->freelist[lane].block = le32_to_cpu(ent->old_map);
385
386 return ret;
387}
388
389/*
390 * This function initializes the BTT map to the initial state, which is
391 * all-zeroes, and indicates an identity mapping
392 */
393static int btt_map_init(struct arena_info *arena)
394{
395 int ret = -EINVAL;
396 void *zerobuf;
397 size_t offset = 0;
398 size_t chunk_size = SZ_2M;
399 size_t mapsize = arena->logoff - arena->mapoff;
400
401 zerobuf = kzalloc(chunk_size, GFP_KERNEL);
402 if (!zerobuf)
403 return -ENOMEM;
404
Vishal Vermab177fe82017-05-10 15:01:31 -0600405 /*
406 * mapoff should always be at least 512B aligned. We rely on that to
407 * make sure rw_bytes does error clearing correctly, so make sure that
408 * is the case.
409 */
410 WARN_ON_ONCE(!IS_ALIGNED(arena->mapoff, 512));
411
Vishal Verma5212e112015-06-25 04:20:32 -0400412 while (mapsize) {
413 size_t size = min(mapsize, chunk_size);
414
Vishal Vermab177fe82017-05-10 15:01:31 -0600415 WARN_ON_ONCE(size < 512);
Vishal Verma5212e112015-06-25 04:20:32 -0400416 ret = arena_write_bytes(arena, arena->mapoff + offset, zerobuf,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600417 size, 0);
Vishal Verma5212e112015-06-25 04:20:32 -0400418 if (ret)
419 goto free;
420
421 offset += size;
422 mapsize -= size;
423 cond_resched();
424 }
425
426 free:
427 kfree(zerobuf);
428 return ret;
429}
430
431/*
432 * This function initializes the BTT log with 'fake' entries pointing
433 * to the initial reserved set of blocks as being free
434 */
435static int btt_log_init(struct arena_info *arena)
436{
Vishal Vermab177fe82017-05-10 15:01:31 -0600437 size_t logsize = arena->info2off - arena->logoff;
438 size_t chunk_size = SZ_4K, offset = 0;
439 struct log_entry log;
440 void *zerobuf;
Vishal Verma5212e112015-06-25 04:20:32 -0400441 int ret;
442 u32 i;
Vishal Verma5212e112015-06-25 04:20:32 -0400443
Vishal Vermab177fe82017-05-10 15:01:31 -0600444 zerobuf = kzalloc(chunk_size, GFP_KERNEL);
445 if (!zerobuf)
446 return -ENOMEM;
447 /*
448 * logoff should always be at least 512B aligned. We rely on that to
449 * make sure rw_bytes does error clearing correctly, so make sure that
450 * is the case.
451 */
452 WARN_ON_ONCE(!IS_ALIGNED(arena->logoff, 512));
453
454 while (logsize) {
455 size_t size = min(logsize, chunk_size);
456
457 WARN_ON_ONCE(size < 512);
458 ret = arena_write_bytes(arena, arena->logoff + offset, zerobuf,
459 size, 0);
460 if (ret)
461 goto free;
462
463 offset += size;
464 logsize -= size;
465 cond_resched();
466 }
Vishal Verma5212e112015-06-25 04:20:32 -0400467
468 for (i = 0; i < arena->nfree; i++) {
469 log.lba = cpu_to_le32(i);
470 log.old_map = cpu_to_le32(arena->external_nlba + i);
471 log.new_map = cpu_to_le32(arena->external_nlba + i);
472 log.seq = cpu_to_le32(LOG_SEQ_INIT);
Vishal Verma3ae3d672017-05-10 15:01:30 -0600473 ret = __btt_log_write(arena, i, 0, &log, 0);
Vishal Verma5212e112015-06-25 04:20:32 -0400474 if (ret)
Vishal Vermab177fe82017-05-10 15:01:31 -0600475 goto free;
Vishal Verma5212e112015-06-25 04:20:32 -0400476 }
477
Vishal Vermab177fe82017-05-10 15:01:31 -0600478 free:
479 kfree(zerobuf);
480 return ret;
Vishal Verma5212e112015-06-25 04:20:32 -0400481}
482
483static int btt_freelist_init(struct arena_info *arena)
484{
485 int old, new, ret;
486 u32 i, map_entry;
487 struct log_entry log_new, log_old;
488
489 arena->freelist = kcalloc(arena->nfree, sizeof(struct free_entry),
490 GFP_KERNEL);
491 if (!arena->freelist)
492 return -ENOMEM;
493
494 for (i = 0; i < arena->nfree; i++) {
495 old = btt_log_read(arena, i, &log_old, LOG_OLD_ENT);
496 if (old < 0)
497 return old;
498
499 new = btt_log_read(arena, i, &log_new, LOG_NEW_ENT);
500 if (new < 0)
501 return new;
502
503 /* sub points to the next one to be overwritten */
504 arena->freelist[i].sub = 1 - new;
505 arena->freelist[i].seq = nd_inc_seq(le32_to_cpu(log_new.seq));
506 arena->freelist[i].block = le32_to_cpu(log_new.old_map);
507
508 /* This implies a newly created or untouched flog entry */
509 if (log_new.old_map == log_new.new_map)
510 continue;
511
512 /* Check if map recovery is needed */
513 ret = btt_map_read(arena, le32_to_cpu(log_new.lba), &map_entry,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600514 NULL, NULL, 0);
Vishal Verma5212e112015-06-25 04:20:32 -0400515 if (ret)
516 return ret;
517 if ((le32_to_cpu(log_new.new_map) != map_entry) &&
518 (le32_to_cpu(log_new.old_map) == map_entry)) {
519 /*
520 * Last transaction wrote the flog, but wasn't able
521 * to complete the map write. So fix up the map.
522 */
523 ret = btt_map_write(arena, le32_to_cpu(log_new.lba),
Vishal Verma3ae3d672017-05-10 15:01:30 -0600524 le32_to_cpu(log_new.new_map), 0, 0, 0);
Vishal Verma5212e112015-06-25 04:20:32 -0400525 if (ret)
526 return ret;
527 }
528
529 }
530
531 return 0;
532}
533
534static int btt_rtt_init(struct arena_info *arena)
535{
536 arena->rtt = kcalloc(arena->nfree, sizeof(u32), GFP_KERNEL);
537 if (arena->rtt == NULL)
538 return -ENOMEM;
539
540 return 0;
541}
542
543static int btt_maplocks_init(struct arena_info *arena)
544{
545 u32 i;
546
547 arena->map_locks = kcalloc(arena->nfree, sizeof(struct aligned_lock),
548 GFP_KERNEL);
549 if (!arena->map_locks)
550 return -ENOMEM;
551
552 for (i = 0; i < arena->nfree; i++)
553 spin_lock_init(&arena->map_locks[i].lock);
554
555 return 0;
556}
557
558static struct arena_info *alloc_arena(struct btt *btt, size_t size,
559 size_t start, size_t arena_off)
560{
561 struct arena_info *arena;
562 u64 logsize, mapsize, datasize;
563 u64 available = size;
564
565 arena = kzalloc(sizeof(struct arena_info), GFP_KERNEL);
566 if (!arena)
567 return NULL;
568 arena->nd_btt = btt->nd_btt;
569
570 if (!size)
571 return arena;
572
573 arena->size = size;
574 arena->external_lba_start = start;
575 arena->external_lbasize = btt->lbasize;
576 arena->internal_lbasize = roundup(arena->external_lbasize,
577 INT_LBASIZE_ALIGNMENT);
578 arena->nfree = BTT_DEFAULT_NFREE;
Vishal Verma14e49452017-06-28 14:25:00 -0600579 arena->version_major = btt->nd_btt->version_major;
580 arena->version_minor = btt->nd_btt->version_minor;
Vishal Verma5212e112015-06-25 04:20:32 -0400581
582 if (available % BTT_PG_SIZE)
583 available -= (available % BTT_PG_SIZE);
584
585 /* Two pages are reserved for the super block and its copy */
586 available -= 2 * BTT_PG_SIZE;
587
588 /* The log takes a fixed amount of space based on nfree */
589 logsize = roundup(2 * arena->nfree * sizeof(struct log_entry),
590 BTT_PG_SIZE);
591 available -= logsize;
592
593 /* Calculate optimal split between map and data area */
594 arena->internal_nlba = div_u64(available - BTT_PG_SIZE,
595 arena->internal_lbasize + MAP_ENT_SIZE);
596 arena->external_nlba = arena->internal_nlba - arena->nfree;
597
598 mapsize = roundup((arena->external_nlba * MAP_ENT_SIZE), BTT_PG_SIZE);
599 datasize = available - mapsize;
600
601 /* 'Absolute' values, relative to start of storage space */
602 arena->infooff = arena_off;
603 arena->dataoff = arena->infooff + BTT_PG_SIZE;
604 arena->mapoff = arena->dataoff + datasize;
605 arena->logoff = arena->mapoff + mapsize;
606 arena->info2off = arena->logoff + logsize;
607 return arena;
608}
609
610static void free_arenas(struct btt *btt)
611{
612 struct arena_info *arena, *next;
613
614 list_for_each_entry_safe(arena, next, &btt->arena_list, list) {
615 list_del(&arena->list);
616 kfree(arena->rtt);
617 kfree(arena->map_locks);
618 kfree(arena->freelist);
619 debugfs_remove_recursive(arena->debugfs_dir);
620 kfree(arena);
621 }
622}
623
624/*
Vishal Verma5212e112015-06-25 04:20:32 -0400625 * This function reads an existing valid btt superblock and
626 * populates the corresponding arena_info struct
627 */
628static void parse_arena_meta(struct arena_info *arena, struct btt_sb *super,
629 u64 arena_off)
630{
631 arena->internal_nlba = le32_to_cpu(super->internal_nlba);
632 arena->internal_lbasize = le32_to_cpu(super->internal_lbasize);
633 arena->external_nlba = le32_to_cpu(super->external_nlba);
634 arena->external_lbasize = le32_to_cpu(super->external_lbasize);
635 arena->nfree = le32_to_cpu(super->nfree);
636 arena->version_major = le16_to_cpu(super->version_major);
637 arena->version_minor = le16_to_cpu(super->version_minor);
638
639 arena->nextoff = (super->nextoff == 0) ? 0 : (arena_off +
640 le64_to_cpu(super->nextoff));
641 arena->infooff = arena_off;
642 arena->dataoff = arena_off + le64_to_cpu(super->dataoff);
643 arena->mapoff = arena_off + le64_to_cpu(super->mapoff);
644 arena->logoff = arena_off + le64_to_cpu(super->logoff);
645 arena->info2off = arena_off + le64_to_cpu(super->info2off);
646
Dan Williams5e329402015-07-11 10:02:46 -0400647 arena->size = (le64_to_cpu(super->nextoff) > 0)
648 ? (le64_to_cpu(super->nextoff))
649 : (arena->info2off - arena->infooff + BTT_PG_SIZE);
Vishal Verma5212e112015-06-25 04:20:32 -0400650
651 arena->flags = le32_to_cpu(super->flags);
652}
653
654static int discover_arenas(struct btt *btt)
655{
656 int ret = 0;
657 struct arena_info *arena;
658 struct btt_sb *super;
659 size_t remaining = btt->rawsize;
660 u64 cur_nlba = 0;
661 size_t cur_off = 0;
662 int num_arenas = 0;
663
664 super = kzalloc(sizeof(*super), GFP_KERNEL);
665 if (!super)
666 return -ENOMEM;
667
668 while (remaining) {
669 /* Alloc memory for arena */
670 arena = alloc_arena(btt, 0, 0, 0);
671 if (!arena) {
672 ret = -ENOMEM;
673 goto out_super;
674 }
675
676 arena->infooff = cur_off;
677 ret = btt_info_read(arena, super);
678 if (ret)
679 goto out;
680
Vishal Vermaab45e762015-07-29 14:58:08 -0600681 if (!nd_btt_arena_is_valid(btt->nd_btt, super)) {
Vishal Verma5212e112015-06-25 04:20:32 -0400682 if (remaining == btt->rawsize) {
683 btt->init_state = INIT_NOTFOUND;
684 dev_info(to_dev(arena), "No existing arenas\n");
685 goto out;
686 } else {
Vishal Vermae6be2dc2017-06-30 18:32:51 -0600687 dev_err(to_dev(arena),
Vishal Verma5212e112015-06-25 04:20:32 -0400688 "Found corrupted metadata!\n");
689 ret = -ENODEV;
690 goto out;
691 }
692 }
693
694 arena->external_lba_start = cur_nlba;
695 parse_arena_meta(arena, super, cur_off);
696
697 ret = btt_freelist_init(arena);
698 if (ret)
699 goto out;
700
701 ret = btt_rtt_init(arena);
702 if (ret)
703 goto out;
704
705 ret = btt_maplocks_init(arena);
706 if (ret)
707 goto out;
708
709 list_add_tail(&arena->list, &btt->arena_list);
710
711 remaining -= arena->size;
712 cur_off += arena->size;
713 cur_nlba += arena->external_nlba;
714 num_arenas++;
715
716 if (arena->nextoff == 0)
717 break;
718 }
719 btt->num_arenas = num_arenas;
720 btt->nlba = cur_nlba;
721 btt->init_state = INIT_READY;
722
723 kfree(super);
724 return ret;
725
726 out:
727 kfree(arena);
728 free_arenas(btt);
729 out_super:
730 kfree(super);
731 return ret;
732}
733
734static int create_arenas(struct btt *btt)
735{
736 size_t remaining = btt->rawsize;
737 size_t cur_off = 0;
738
739 while (remaining) {
740 struct arena_info *arena;
741 size_t arena_size = min_t(u64, ARENA_MAX_SIZE, remaining);
742
743 remaining -= arena_size;
744 if (arena_size < ARENA_MIN_SIZE)
745 break;
746
747 arena = alloc_arena(btt, arena_size, btt->nlba, cur_off);
748 if (!arena) {
749 free_arenas(btt);
750 return -ENOMEM;
751 }
752 btt->nlba += arena->external_nlba;
753 if (remaining >= ARENA_MIN_SIZE)
754 arena->nextoff = arena->size;
755 else
756 arena->nextoff = 0;
757 cur_off += arena_size;
758 list_add_tail(&arena->list, &btt->arena_list);
759 }
760
761 return 0;
762}
763
764/*
765 * This function completes arena initialization by writing
766 * all the metadata.
767 * It is only called for an uninitialized arena when a write
768 * to that arena occurs for the first time.
769 */
Vishal Vermafbde1412015-07-29 14:58:07 -0600770static int btt_arena_write_layout(struct arena_info *arena)
Vishal Verma5212e112015-06-25 04:20:32 -0400771{
772 int ret;
Dan Williamse1455742015-07-30 17:57:47 -0400773 u64 sum;
Vishal Verma5212e112015-06-25 04:20:32 -0400774 struct btt_sb *super;
Vishal Vermafbde1412015-07-29 14:58:07 -0600775 struct nd_btt *nd_btt = arena->nd_btt;
Vishal Verma6ec68952015-07-29 14:58:09 -0600776 const u8 *parent_uuid = nd_dev_to_uuid(&nd_btt->ndns->dev);
Vishal Verma5212e112015-06-25 04:20:32 -0400777
778 ret = btt_map_init(arena);
779 if (ret)
780 return ret;
781
782 ret = btt_log_init(arena);
783 if (ret)
784 return ret;
785
786 super = kzalloc(sizeof(struct btt_sb), GFP_NOIO);
787 if (!super)
788 return -ENOMEM;
789
790 strncpy(super->signature, BTT_SIG, BTT_SIG_LEN);
Vishal Vermafbde1412015-07-29 14:58:07 -0600791 memcpy(super->uuid, nd_btt->uuid, 16);
Vishal Verma6ec68952015-07-29 14:58:09 -0600792 memcpy(super->parent_uuid, parent_uuid, 16);
Vishal Verma5212e112015-06-25 04:20:32 -0400793 super->flags = cpu_to_le32(arena->flags);
794 super->version_major = cpu_to_le16(arena->version_major);
795 super->version_minor = cpu_to_le16(arena->version_minor);
796 super->external_lbasize = cpu_to_le32(arena->external_lbasize);
797 super->external_nlba = cpu_to_le32(arena->external_nlba);
798 super->internal_lbasize = cpu_to_le32(arena->internal_lbasize);
799 super->internal_nlba = cpu_to_le32(arena->internal_nlba);
800 super->nfree = cpu_to_le32(arena->nfree);
801 super->infosize = cpu_to_le32(sizeof(struct btt_sb));
802 super->nextoff = cpu_to_le64(arena->nextoff);
803 /*
804 * Subtract arena->infooff (arena start) so numbers are relative
805 * to 'this' arena
806 */
807 super->dataoff = cpu_to_le64(arena->dataoff - arena->infooff);
808 super->mapoff = cpu_to_le64(arena->mapoff - arena->infooff);
809 super->logoff = cpu_to_le64(arena->logoff - arena->infooff);
810 super->info2off = cpu_to_le64(arena->info2off - arena->infooff);
811
812 super->flags = 0;
Dan Williamse1455742015-07-30 17:57:47 -0400813 sum = nd_sb_checksum((struct nd_gen_sb *) super);
814 super->checksum = cpu_to_le64(sum);
Vishal Verma5212e112015-06-25 04:20:32 -0400815
816 ret = btt_info_write(arena, super);
817
818 kfree(super);
819 return ret;
820}
821
822/*
823 * This function completes the initialization for the BTT namespace
824 * such that it is ready to accept IOs
825 */
826static int btt_meta_init(struct btt *btt)
827{
828 int ret = 0;
829 struct arena_info *arena;
830
831 mutex_lock(&btt->init_lock);
832 list_for_each_entry(arena, &btt->arena_list, list) {
Vishal Vermafbde1412015-07-29 14:58:07 -0600833 ret = btt_arena_write_layout(arena);
Vishal Verma5212e112015-06-25 04:20:32 -0400834 if (ret)
835 goto unlock;
836
837 ret = btt_freelist_init(arena);
838 if (ret)
839 goto unlock;
840
841 ret = btt_rtt_init(arena);
842 if (ret)
843 goto unlock;
844
845 ret = btt_maplocks_init(arena);
846 if (ret)
847 goto unlock;
848 }
849
850 btt->init_state = INIT_READY;
851
852 unlock:
853 mutex_unlock(&btt->init_lock);
854 return ret;
855}
856
Vishal Verma41cd8b72015-06-25 04:21:52 -0400857static u32 btt_meta_size(struct btt *btt)
858{
859 return btt->lbasize - btt->sector_size;
860}
861
Vishal Verma5212e112015-06-25 04:20:32 -0400862/*
863 * This function calculates the arena in which the given LBA lies
864 * by doing a linear walk. This is acceptable since we expect only
865 * a few arenas. If we have backing devices that get much larger,
866 * we can construct a balanced binary tree of arenas at init time
867 * so that this range search becomes faster.
868 */
869static int lba_to_arena(struct btt *btt, sector_t sector, __u32 *premap,
870 struct arena_info **arena)
871{
872 struct arena_info *arena_list;
873 __u64 lba = div_u64(sector << SECTOR_SHIFT, btt->sector_size);
874
875 list_for_each_entry(arena_list, &btt->arena_list, list) {
876 if (lba < arena_list->external_nlba) {
877 *arena = arena_list;
878 *premap = lba;
879 return 0;
880 }
881 lba -= arena_list->external_nlba;
882 }
883
884 return -EIO;
885}
886
887/*
888 * The following (lock_map, unlock_map) are mostly just to improve
889 * readability, since they index into an array of locks
890 */
891static void lock_map(struct arena_info *arena, u32 premap)
892 __acquires(&arena->map_locks[idx].lock)
893{
894 u32 idx = (premap * MAP_ENT_SIZE / L1_CACHE_BYTES) % arena->nfree;
895
896 spin_lock(&arena->map_locks[idx].lock);
897}
898
899static void unlock_map(struct arena_info *arena, u32 premap)
900 __releases(&arena->map_locks[idx].lock)
901{
902 u32 idx = (premap * MAP_ENT_SIZE / L1_CACHE_BYTES) % arena->nfree;
903
904 spin_unlock(&arena->map_locks[idx].lock);
905}
906
907static u64 to_namespace_offset(struct arena_info *arena, u64 lba)
908{
909 return arena->dataoff + ((u64)lba * arena->internal_lbasize);
910}
911
912static int btt_data_read(struct arena_info *arena, struct page *page,
913 unsigned int off, u32 lba, u32 len)
914{
915 int ret;
916 u64 nsoff = to_namespace_offset(arena, lba);
917 void *mem = kmap_atomic(page);
918
Vishal Verma3ae3d672017-05-10 15:01:30 -0600919 ret = arena_read_bytes(arena, nsoff, mem + off, len, NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -0400920 kunmap_atomic(mem);
921
922 return ret;
923}
924
925static int btt_data_write(struct arena_info *arena, u32 lba,
926 struct page *page, unsigned int off, u32 len)
927{
928 int ret;
929 u64 nsoff = to_namespace_offset(arena, lba);
930 void *mem = kmap_atomic(page);
931
Vishal Verma3ae3d672017-05-10 15:01:30 -0600932 ret = arena_write_bytes(arena, nsoff, mem + off, len, NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -0400933 kunmap_atomic(mem);
934
935 return ret;
936}
937
938static void zero_fill_data(struct page *page, unsigned int off, u32 len)
939{
940 void *mem = kmap_atomic(page);
941
942 memset(mem + off, 0, len);
943 kunmap_atomic(mem);
944}
945
Vishal Verma41cd8b72015-06-25 04:21:52 -0400946#ifdef CONFIG_BLK_DEV_INTEGRITY
947static int btt_rw_integrity(struct btt *btt, struct bio_integrity_payload *bip,
948 struct arena_info *arena, u32 postmap, int rw)
949{
950 unsigned int len = btt_meta_size(btt);
951 u64 meta_nsoff;
952 int ret = 0;
953
954 if (bip == NULL)
955 return 0;
956
957 meta_nsoff = to_namespace_offset(arena, postmap) + btt->sector_size;
958
959 while (len) {
960 unsigned int cur_len;
961 struct bio_vec bv;
962 void *mem;
963
964 bv = bvec_iter_bvec(bip->bip_vec, bip->bip_iter);
965 /*
966 * The 'bv' obtained from bvec_iter_bvec has its .bv_len and
967 * .bv_offset already adjusted for iter->bi_bvec_done, and we
968 * can use those directly
969 */
970
971 cur_len = min(len, bv.bv_len);
972 mem = kmap_atomic(bv.bv_page);
973 if (rw)
974 ret = arena_write_bytes(arena, meta_nsoff,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600975 mem + bv.bv_offset, cur_len,
976 NVDIMM_IO_ATOMIC);
Vishal Verma41cd8b72015-06-25 04:21:52 -0400977 else
978 ret = arena_read_bytes(arena, meta_nsoff,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600979 mem + bv.bv_offset, cur_len,
980 NVDIMM_IO_ATOMIC);
Vishal Verma41cd8b72015-06-25 04:21:52 -0400981
982 kunmap_atomic(mem);
983 if (ret)
984 return ret;
985
986 len -= cur_len;
987 meta_nsoff += cur_len;
Dmitry Monakhovb1fb2c52017-06-29 11:31:13 -0700988 if (!bvec_iter_advance(bip->bip_vec, &bip->bip_iter, cur_len))
989 return -EIO;
Vishal Verma41cd8b72015-06-25 04:21:52 -0400990 }
991
992 return ret;
993}
994
995#else /* CONFIG_BLK_DEV_INTEGRITY */
996static int btt_rw_integrity(struct btt *btt, struct bio_integrity_payload *bip,
997 struct arena_info *arena, u32 postmap, int rw)
998{
999 return 0;
1000}
1001#endif
1002
1003static int btt_read_pg(struct btt *btt, struct bio_integrity_payload *bip,
1004 struct page *page, unsigned int off, sector_t sector,
1005 unsigned int len)
Vishal Verma5212e112015-06-25 04:20:32 -04001006{
1007 int ret = 0;
1008 int t_flag, e_flag;
1009 struct arena_info *arena = NULL;
1010 u32 lane = 0, premap, postmap;
1011
1012 while (len) {
1013 u32 cur_len;
1014
1015 lane = nd_region_acquire_lane(btt->nd_region);
1016
1017 ret = lba_to_arena(btt, sector, &premap, &arena);
1018 if (ret)
1019 goto out_lane;
1020
1021 cur_len = min(btt->sector_size, len);
1022
Vishal Verma3ae3d672017-05-10 15:01:30 -06001023 ret = btt_map_read(arena, premap, &postmap, &t_flag, &e_flag,
1024 NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -04001025 if (ret)
1026 goto out_lane;
1027
1028 /*
1029 * We loop to make sure that the post map LBA didn't change
1030 * from under us between writing the RTT and doing the actual
1031 * read.
1032 */
1033 while (1) {
1034 u32 new_map;
1035
1036 if (t_flag) {
1037 zero_fill_data(page, off, cur_len);
1038 goto out_lane;
1039 }
1040
1041 if (e_flag) {
1042 ret = -EIO;
1043 goto out_lane;
1044 }
1045
1046 arena->rtt[lane] = RTT_VALID | postmap;
1047 /*
1048 * Barrier to make sure this write is not reordered
1049 * to do the verification map_read before the RTT store
1050 */
1051 barrier();
1052
1053 ret = btt_map_read(arena, premap, &new_map, &t_flag,
Vishal Verma3ae3d672017-05-10 15:01:30 -06001054 &e_flag, NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -04001055 if (ret)
1056 goto out_rtt;
1057
1058 if (postmap == new_map)
1059 break;
1060
1061 postmap = new_map;
1062 }
1063
1064 ret = btt_data_read(arena, page, off, postmap, cur_len);
1065 if (ret)
1066 goto out_rtt;
1067
Vishal Verma41cd8b72015-06-25 04:21:52 -04001068 if (bip) {
1069 ret = btt_rw_integrity(btt, bip, arena, postmap, READ);
1070 if (ret)
1071 goto out_rtt;
1072 }
1073
Vishal Verma5212e112015-06-25 04:20:32 -04001074 arena->rtt[lane] = RTT_INVALID;
1075 nd_region_release_lane(btt->nd_region, lane);
1076
1077 len -= cur_len;
1078 off += cur_len;
1079 sector += btt->sector_size >> SECTOR_SHIFT;
1080 }
1081
1082 return 0;
1083
1084 out_rtt:
1085 arena->rtt[lane] = RTT_INVALID;
1086 out_lane:
1087 nd_region_release_lane(btt->nd_region, lane);
1088 return ret;
1089}
1090
Vishal Verma41cd8b72015-06-25 04:21:52 -04001091static int btt_write_pg(struct btt *btt, struct bio_integrity_payload *bip,
1092 sector_t sector, struct page *page, unsigned int off,
1093 unsigned int len)
Vishal Verma5212e112015-06-25 04:20:32 -04001094{
1095 int ret = 0;
1096 struct arena_info *arena = NULL;
1097 u32 premap = 0, old_postmap, new_postmap, lane = 0, i;
1098 struct log_entry log;
1099 int sub;
1100
1101 while (len) {
1102 u32 cur_len;
1103
1104 lane = nd_region_acquire_lane(btt->nd_region);
1105
1106 ret = lba_to_arena(btt, sector, &premap, &arena);
1107 if (ret)
1108 goto out_lane;
1109 cur_len = min(btt->sector_size, len);
1110
1111 if ((arena->flags & IB_FLAG_ERROR_MASK) != 0) {
1112 ret = -EIO;
1113 goto out_lane;
1114 }
1115
1116 new_postmap = arena->freelist[lane].block;
1117
1118 /* Wait if the new block is being read from */
1119 for (i = 0; i < arena->nfree; i++)
1120 while (arena->rtt[i] == (RTT_VALID | new_postmap))
1121 cpu_relax();
1122
1123
1124 if (new_postmap >= arena->internal_nlba) {
1125 ret = -EIO;
1126 goto out_lane;
Vishal Verma41cd8b72015-06-25 04:21:52 -04001127 }
1128
1129 ret = btt_data_write(arena, new_postmap, page, off, cur_len);
Vishal Verma5212e112015-06-25 04:20:32 -04001130 if (ret)
1131 goto out_lane;
1132
Vishal Verma41cd8b72015-06-25 04:21:52 -04001133 if (bip) {
1134 ret = btt_rw_integrity(btt, bip, arena, new_postmap,
1135 WRITE);
1136 if (ret)
1137 goto out_lane;
1138 }
1139
Vishal Verma5212e112015-06-25 04:20:32 -04001140 lock_map(arena, premap);
Vishal Verma3ae3d672017-05-10 15:01:30 -06001141 ret = btt_map_read(arena, premap, &old_postmap, NULL, NULL,
1142 NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -04001143 if (ret)
1144 goto out_map;
1145 if (old_postmap >= arena->internal_nlba) {
1146 ret = -EIO;
1147 goto out_map;
1148 }
1149
1150 log.lba = cpu_to_le32(premap);
1151 log.old_map = cpu_to_le32(old_postmap);
1152 log.new_map = cpu_to_le32(new_postmap);
1153 log.seq = cpu_to_le32(arena->freelist[lane].seq);
1154 sub = arena->freelist[lane].sub;
1155 ret = btt_flog_write(arena, lane, sub, &log);
1156 if (ret)
1157 goto out_map;
1158
Vishal Verma1db1f3c2017-08-30 19:35:58 -06001159 ret = btt_map_write(arena, premap, new_postmap, 0, 0,
1160 NVDIMM_IO_ATOMIC);
Vishal Verma5212e112015-06-25 04:20:32 -04001161 if (ret)
1162 goto out_map;
1163
1164 unlock_map(arena, premap);
1165 nd_region_release_lane(btt->nd_region, lane);
1166
1167 len -= cur_len;
1168 off += cur_len;
1169 sector += btt->sector_size >> SECTOR_SHIFT;
1170 }
1171
1172 return 0;
1173
1174 out_map:
1175 unlock_map(arena, premap);
1176 out_lane:
1177 nd_region_release_lane(btt->nd_region, lane);
1178 return ret;
1179}
1180
Vishal Verma41cd8b72015-06-25 04:21:52 -04001181static int btt_do_bvec(struct btt *btt, struct bio_integrity_payload *bip,
1182 struct page *page, unsigned int len, unsigned int off,
Jens Axboec11f0c02016-08-05 08:11:04 -06001183 bool is_write, sector_t sector)
Vishal Verma5212e112015-06-25 04:20:32 -04001184{
1185 int ret;
1186
Jens Axboec11f0c02016-08-05 08:11:04 -06001187 if (!is_write) {
Vishal Verma41cd8b72015-06-25 04:21:52 -04001188 ret = btt_read_pg(btt, bip, page, off, sector, len);
Vishal Verma5212e112015-06-25 04:20:32 -04001189 flush_dcache_page(page);
1190 } else {
1191 flush_dcache_page(page);
Vishal Verma41cd8b72015-06-25 04:21:52 -04001192 ret = btt_write_pg(btt, bip, sector, page, off, len);
Vishal Verma5212e112015-06-25 04:20:32 -04001193 }
1194
1195 return ret;
1196}
1197
Jens Axboedece1632015-11-05 10:41:16 -07001198static blk_qc_t btt_make_request(struct request_queue *q, struct bio *bio)
Vishal Verma5212e112015-06-25 04:20:32 -04001199{
Vishal Verma41cd8b72015-06-25 04:21:52 -04001200 struct bio_integrity_payload *bip = bio_integrity(bio);
Vishal Verma5212e112015-06-25 04:20:32 -04001201 struct btt *btt = q->queuedata;
1202 struct bvec_iter iter;
Dan Williamsf0dc0892015-05-16 12:28:53 -04001203 unsigned long start;
Vishal Verma5212e112015-06-25 04:20:32 -04001204 struct bio_vec bvec;
Mike Christieabf54542016-08-04 14:23:34 -06001205 int err = 0;
Dan Williamsf0dc0892015-05-16 12:28:53 -04001206 bool do_acct;
Vishal Verma5212e112015-06-25 04:20:32 -04001207
Dmitry Monakhove23947b2017-06-29 11:31:11 -07001208 if (!bio_integrity_prep(bio))
1209 return BLK_QC_T_NONE;
Vishal Verma41cd8b72015-06-25 04:21:52 -04001210
Dan Williamsf0dc0892015-05-16 12:28:53 -04001211 do_acct = nd_iostat_start(bio, &start);
Vishal Verma5212e112015-06-25 04:20:32 -04001212 bio_for_each_segment(bvec, bio, iter) {
1213 unsigned int len = bvec.bv_len;
1214
1215 BUG_ON(len > PAGE_SIZE);
1216 /* Make sure len is in multiples of sector size. */
1217 /* XXX is this right? */
1218 BUG_ON(len < btt->sector_size);
1219 BUG_ON(len % btt->sector_size);
1220
Vishal Verma41cd8b72015-06-25 04:21:52 -04001221 err = btt_do_bvec(btt, bip, bvec.bv_page, len, bvec.bv_offset,
Jens Axboec11f0c02016-08-05 08:11:04 -06001222 op_is_write(bio_op(bio)), iter.bi_sector);
Vishal Verma5212e112015-06-25 04:20:32 -04001223 if (err) {
Vishal Vermae6be2dc2017-06-30 18:32:51 -06001224 dev_err(&btt->nd_btt->dev,
Vishal Verma5212e112015-06-25 04:20:32 -04001225 "io error in %s sector %lld, len %d,\n",
Mike Christieabf54542016-08-04 14:23:34 -06001226 (op_is_write(bio_op(bio))) ? "WRITE" :
1227 "READ",
Vishal Verma5212e112015-06-25 04:20:32 -04001228 (unsigned long long) iter.bi_sector, len);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001229 bio->bi_status = errno_to_blk_status(err);
Dan Williamsf0dc0892015-05-16 12:28:53 -04001230 break;
Vishal Verma5212e112015-06-25 04:20:32 -04001231 }
1232 }
Dan Williamsf0dc0892015-05-16 12:28:53 -04001233 if (do_acct)
1234 nd_iostat_end(bio, start);
Vishal Verma5212e112015-06-25 04:20:32 -04001235
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001236 bio_endio(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001237 return BLK_QC_T_NONE;
Vishal Verma5212e112015-06-25 04:20:32 -04001238}
1239
1240static int btt_rw_page(struct block_device *bdev, sector_t sector,
Jens Axboec11f0c02016-08-05 08:11:04 -06001241 struct page *page, bool is_write)
Vishal Verma5212e112015-06-25 04:20:32 -04001242{
1243 struct btt *btt = bdev->bd_disk->private_data;
Vishal Vermac13c43d2017-06-29 16:59:11 -06001244 int rc;
Vishal Verma5212e112015-06-25 04:20:32 -04001245
Vishal Vermac13c43d2017-06-29 16:59:11 -06001246 rc = btt_do_bvec(btt, NULL, page, PAGE_SIZE, 0, is_write, sector);
1247 if (rc == 0)
1248 page_endio(page, is_write, 0);
1249
1250 return rc;
Vishal Verma5212e112015-06-25 04:20:32 -04001251}
1252
1253
1254static int btt_getgeo(struct block_device *bd, struct hd_geometry *geo)
1255{
1256 /* some standard values */
1257 geo->heads = 1 << 6;
1258 geo->sectors = 1 << 5;
1259 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1260 return 0;
1261}
1262
1263static const struct block_device_operations btt_fops = {
1264 .owner = THIS_MODULE,
1265 .rw_page = btt_rw_page,
1266 .getgeo = btt_getgeo,
Dan Williams58138822015-06-23 20:08:34 -04001267 .revalidate_disk = nvdimm_revalidate_disk,
Vishal Verma5212e112015-06-25 04:20:32 -04001268};
1269
1270static int btt_blk_init(struct btt *btt)
1271{
1272 struct nd_btt *nd_btt = btt->nd_btt;
1273 struct nd_namespace_common *ndns = nd_btt->ndns;
1274
1275 /* create a new disk and request queue for btt */
1276 btt->btt_queue = blk_alloc_queue(GFP_KERNEL);
1277 if (!btt->btt_queue)
1278 return -ENOMEM;
1279
1280 btt->btt_disk = alloc_disk(0);
1281 if (!btt->btt_disk) {
1282 blk_cleanup_queue(btt->btt_queue);
1283 return -ENOMEM;
1284 }
1285
1286 nvdimm_namespace_disk_name(ndns, btt->btt_disk->disk_name);
Vishal Verma5212e112015-06-25 04:20:32 -04001287 btt->btt_disk->first_minor = 0;
1288 btt->btt_disk->fops = &btt_fops;
1289 btt->btt_disk->private_data = btt;
1290 btt->btt_disk->queue = btt->btt_queue;
1291 btt->btt_disk->flags = GENHD_FL_EXT_DEVT;
1292
1293 blk_queue_make_request(btt->btt_queue, btt_make_request);
1294 blk_queue_logical_block_size(btt->btt_queue, btt->sector_size);
1295 blk_queue_max_hw_sectors(btt->btt_queue, UINT_MAX);
Vishal Verma5212e112015-06-25 04:20:32 -04001296 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, btt->btt_queue);
1297 btt->btt_queue->queuedata = btt;
1298
Vishal Verma41cd8b72015-06-25 04:21:52 -04001299 set_capacity(btt->btt_disk, 0);
Dan Williams0d52c7562016-06-15 19:44:20 -07001300 device_add_disk(&btt->nd_btt->dev, btt->btt_disk);
Vishal Verma41cd8b72015-06-25 04:21:52 -04001301 if (btt_meta_size(btt)) {
1302 int rc = nd_integrity_init(btt->btt_disk, btt_meta_size(btt));
1303
1304 if (rc) {
1305 del_gendisk(btt->btt_disk);
1306 put_disk(btt->btt_disk);
1307 blk_cleanup_queue(btt->btt_queue);
1308 return rc;
1309 }
1310 }
1311 set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >> 9);
Vishal Vermaabe8b4e2016-07-27 16:38:59 -06001312 btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
Dan Williams58138822015-06-23 20:08:34 -04001313 revalidate_disk(btt->btt_disk);
Vishal Verma5212e112015-06-25 04:20:32 -04001314
1315 return 0;
1316}
1317
1318static void btt_blk_cleanup(struct btt *btt)
1319{
Vishal Verma5212e112015-06-25 04:20:32 -04001320 del_gendisk(btt->btt_disk);
1321 put_disk(btt->btt_disk);
1322 blk_cleanup_queue(btt->btt_queue);
1323}
1324
1325/**
1326 * btt_init - initialize a block translation table for the given device
1327 * @nd_btt: device with BTT geometry and backing device info
1328 * @rawsize: raw size in bytes of the backing device
1329 * @lbasize: lba size of the backing device
1330 * @uuid: A uuid for the backing device - this is stored on media
1331 * @maxlane: maximum number of parallel requests the device can handle
1332 *
1333 * Initialize a Block Translation Table on a backing device to provide
1334 * single sector power fail atomicity.
1335 *
1336 * Context:
1337 * Might sleep.
1338 *
1339 * Returns:
1340 * Pointer to a new struct btt on success, NULL on failure.
1341 */
1342static struct btt *btt_init(struct nd_btt *nd_btt, unsigned long long rawsize,
1343 u32 lbasize, u8 *uuid, struct nd_region *nd_region)
1344{
1345 int ret;
1346 struct btt *btt;
1347 struct device *dev = &nd_btt->dev;
1348
Dan Williamse32bc722016-03-17 18:23:09 -07001349 btt = devm_kzalloc(dev, sizeof(struct btt), GFP_KERNEL);
Vishal Verma5212e112015-06-25 04:20:32 -04001350 if (!btt)
1351 return NULL;
1352
1353 btt->nd_btt = nd_btt;
1354 btt->rawsize = rawsize;
1355 btt->lbasize = lbasize;
1356 btt->sector_size = ((lbasize >= 4096) ? 4096 : 512);
1357 INIT_LIST_HEAD(&btt->arena_list);
1358 mutex_init(&btt->init_lock);
1359 btt->nd_region = nd_region;
1360
1361 ret = discover_arenas(btt);
1362 if (ret) {
1363 dev_err(dev, "init: error in arena_discover: %d\n", ret);
Dan Williamse32bc722016-03-17 18:23:09 -07001364 return NULL;
Vishal Verma5212e112015-06-25 04:20:32 -04001365 }
1366
Dan Williams58138822015-06-23 20:08:34 -04001367 if (btt->init_state != INIT_READY && nd_region->ro) {
Vishal Vermae6be2dc2017-06-30 18:32:51 -06001368 dev_warn(dev, "%s is read-only, unable to init btt metadata\n",
Dan Williams58138822015-06-23 20:08:34 -04001369 dev_name(&nd_region->dev));
Dan Williamse32bc722016-03-17 18:23:09 -07001370 return NULL;
Dan Williams58138822015-06-23 20:08:34 -04001371 } else if (btt->init_state != INIT_READY) {
Vishal Verma5212e112015-06-25 04:20:32 -04001372 btt->num_arenas = (rawsize / ARENA_MAX_SIZE) +
1373 ((rawsize % ARENA_MAX_SIZE) ? 1 : 0);
1374 dev_dbg(dev, "init: %d arenas for %llu rawsize\n",
1375 btt->num_arenas, rawsize);
1376
1377 ret = create_arenas(btt);
1378 if (ret) {
1379 dev_info(dev, "init: create_arenas: %d\n", ret);
Dan Williamse32bc722016-03-17 18:23:09 -07001380 return NULL;
Vishal Verma5212e112015-06-25 04:20:32 -04001381 }
1382
1383 ret = btt_meta_init(btt);
1384 if (ret) {
1385 dev_err(dev, "init: error in meta_init: %d\n", ret);
Dan Williamse32bc722016-03-17 18:23:09 -07001386 return NULL;
Vishal Verma5212e112015-06-25 04:20:32 -04001387 }
1388 }
1389
1390 ret = btt_blk_init(btt);
1391 if (ret) {
1392 dev_err(dev, "init: error in blk_init: %d\n", ret);
Dan Williamse32bc722016-03-17 18:23:09 -07001393 return NULL;
Vishal Verma5212e112015-06-25 04:20:32 -04001394 }
1395
1396 btt_debugfs_init(btt);
1397
1398 return btt;
Vishal Verma5212e112015-06-25 04:20:32 -04001399}
1400
1401/**
1402 * btt_fini - de-initialize a BTT
1403 * @btt: the BTT handle that was generated by btt_init
1404 *
1405 * De-initialize a Block Translation Table on device removal
1406 *
1407 * Context:
1408 * Might sleep.
1409 */
1410static void btt_fini(struct btt *btt)
1411{
1412 if (btt) {
1413 btt_blk_cleanup(btt);
1414 free_arenas(btt);
1415 debugfs_remove_recursive(btt->debugfs_dir);
Vishal Verma5212e112015-06-25 04:20:32 -04001416 }
1417}
1418
1419int nvdimm_namespace_attach_btt(struct nd_namespace_common *ndns)
1420{
1421 struct nd_btt *nd_btt = to_nd_btt(ndns->claim);
1422 struct nd_region *nd_region;
Vishal Verma14e49452017-06-28 14:25:00 -06001423 struct btt_sb *btt_sb;
Vishal Verma5212e112015-06-25 04:20:32 -04001424 struct btt *btt;
1425 size_t rawsize;
1426
Dan Williams9dec4892016-04-22 12:26:05 -07001427 if (!nd_btt->uuid || !nd_btt->ndns || !nd_btt->lbasize) {
1428 dev_dbg(&nd_btt->dev, "incomplete btt configuration\n");
Vishal Verma5212e112015-06-25 04:20:32 -04001429 return -ENODEV;
Dan Williams9dec4892016-04-22 12:26:05 -07001430 }
Vishal Verma5212e112015-06-25 04:20:32 -04001431
Vishal Verma14e49452017-06-28 14:25:00 -06001432 btt_sb = devm_kzalloc(&nd_btt->dev, sizeof(*btt_sb), GFP_KERNEL);
Christophe Jailleted36b4d2017-08-27 08:30:34 +02001433 if (!btt_sb)
1434 return -ENOMEM;
Vishal Verma14e49452017-06-28 14:25:00 -06001435
1436 /*
1437 * If this returns < 0, that is ok as it just means there wasn't
1438 * an existing BTT, and we're creating a new one. We still need to
1439 * call this as we need the version dependent fields in nd_btt to be
1440 * set correctly based on the holder class
1441 */
1442 nd_btt_version(nd_btt, ndns, btt_sb);
1443
1444 rawsize = nvdimm_namespace_capacity(ndns) - nd_btt->initial_offset;
Vishal Verma5212e112015-06-25 04:20:32 -04001445 if (rawsize < ARENA_MIN_SIZE) {
Dan Williams9dec4892016-04-22 12:26:05 -07001446 dev_dbg(&nd_btt->dev, "%s must be at least %ld bytes\n",
Vishal Verma14e49452017-06-28 14:25:00 -06001447 dev_name(&ndns->dev),
1448 ARENA_MIN_SIZE + nd_btt->initial_offset);
Vishal Verma5212e112015-06-25 04:20:32 -04001449 return -ENXIO;
1450 }
1451 nd_region = to_nd_region(nd_btt->dev.parent);
1452 btt = btt_init(nd_btt, rawsize, nd_btt->lbasize, nd_btt->uuid,
1453 nd_region);
1454 if (!btt)
1455 return -ENOMEM;
1456 nd_btt->btt = btt;
1457
1458 return 0;
1459}
1460EXPORT_SYMBOL(nvdimm_namespace_attach_btt);
1461
Dan Williams298f2bc2016-03-15 16:41:04 -07001462int nvdimm_namespace_detach_btt(struct nd_btt *nd_btt)
Vishal Verma5212e112015-06-25 04:20:32 -04001463{
Vishal Verma5212e112015-06-25 04:20:32 -04001464 struct btt *btt = nd_btt->btt;
1465
1466 btt_fini(btt);
1467 nd_btt->btt = NULL;
1468
1469 return 0;
1470}
1471EXPORT_SYMBOL(nvdimm_namespace_detach_btt);
1472
1473static int __init nd_btt_init(void)
1474{
NeilBrownff8e92d2016-03-10 08:59:28 +11001475 int rc = 0;
Vishal Verma5212e112015-06-25 04:20:32 -04001476
1477 debugfs_root = debugfs_create_dir("btt", NULL);
NeilBrownff8e92d2016-03-10 08:59:28 +11001478 if (IS_ERR_OR_NULL(debugfs_root))
Vishal Verma5212e112015-06-25 04:20:32 -04001479 rc = -ENXIO;
Vishal Verma5212e112015-06-25 04:20:32 -04001480
1481 return rc;
1482}
1483
1484static void __exit nd_btt_exit(void)
1485{
1486 debugfs_remove_recursive(debugfs_root);
Vishal Verma5212e112015-06-25 04:20:32 -04001487}
1488
1489MODULE_ALIAS_ND_DEVICE(ND_DEVICE_BTT);
1490MODULE_AUTHOR("Vishal Verma <vishal.l.verma@linux.intel.com>");
1491MODULE_LICENSE("GPL v2");
1492module_init(nd_btt_init);
1493module_exit(nd_btt_exit);