b88385bb563a1f879e72e0b07059c75a09cf3586
[platform/upstream/btrfs-progs.git] / volumes.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18 #define _XOPEN_SOURCE 600
19 #define __USE_XOPEN2K
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <uuid/uuid.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include "ctree.h"
28 #include "disk-io.h"
29 #include "transaction.h"
30 #include "print-tree.h"
31 #include "volumes.h"
32
33 struct stripe {
34         struct btrfs_device *dev;
35         u64 physical;
36 };
37
38 static inline int nr_parity_stripes(struct map_lookup *map)
39 {
40         if (map->type & BTRFS_BLOCK_GROUP_RAID5)
41                 return 1;
42         else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
43                 return 2;
44         else
45                 return 0;
46 }
47
48 static inline int nr_data_stripes(struct map_lookup *map)
49 {
50         return map->num_stripes - nr_parity_stripes(map);
51 }
52
53 #define is_parity_stripe(x) ( ((x) == BTRFS_RAID5_P_STRIPE) || ((x) == BTRFS_RAID6_Q_STRIPE) )
54
55 #define map_lookup_size(n) (sizeof(struct map_lookup) + \
56                             (sizeof(struct btrfs_bio_stripe) * (n)))
57
58 static LIST_HEAD(fs_uuids);
59
60 static struct btrfs_device *__find_device(struct list_head *head, u64 devid,
61                                           u8 *uuid)
62 {
63         struct btrfs_device *dev;
64         struct list_head *cur;
65
66         list_for_each(cur, head) {
67                 dev = list_entry(cur, struct btrfs_device, dev_list);
68                 if (dev->devid == devid &&
69                     !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE)) {
70                         return dev;
71                 }
72         }
73         return NULL;
74 }
75
76 static struct btrfs_fs_devices *find_fsid(u8 *fsid)
77 {
78         struct list_head *cur;
79         struct btrfs_fs_devices *fs_devices;
80
81         list_for_each(cur, &fs_uuids) {
82                 fs_devices = list_entry(cur, struct btrfs_fs_devices, list);
83                 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
84                         return fs_devices;
85         }
86         return NULL;
87 }
88
89 static int device_list_add(const char *path,
90                            struct btrfs_super_block *disk_super,
91                            u64 devid, struct btrfs_fs_devices **fs_devices_ret)
92 {
93         struct btrfs_device *device;
94         struct btrfs_fs_devices *fs_devices;
95         u64 found_transid = btrfs_super_generation(disk_super);
96
97         fs_devices = find_fsid(disk_super->fsid);
98         if (!fs_devices) {
99                 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
100                 if (!fs_devices)
101                         return -ENOMEM;
102                 INIT_LIST_HEAD(&fs_devices->devices);
103                 list_add(&fs_devices->list, &fs_uuids);
104                 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
105                 fs_devices->latest_devid = devid;
106                 fs_devices->latest_trans = found_transid;
107                 fs_devices->lowest_devid = (u64)-1;
108                 device = NULL;
109         } else {
110                 device = __find_device(&fs_devices->devices, devid,
111                                        disk_super->dev_item.uuid);
112         }
113         if (!device) {
114                 device = kzalloc(sizeof(*device), GFP_NOFS);
115                 if (!device) {
116                         /* we can safely leave the fs_devices entry around */
117                         return -ENOMEM;
118                 }
119                 device->fd = -1;
120                 device->devid = devid;
121                 memcpy(device->uuid, disk_super->dev_item.uuid,
122                        BTRFS_UUID_SIZE);
123                 device->name = kstrdup(path, GFP_NOFS);
124                 if (!device->name) {
125                         kfree(device);
126                         return -ENOMEM;
127                 }
128                 device->label = kstrdup(disk_super->label, GFP_NOFS);
129                 device->total_devs = btrfs_super_num_devices(disk_super);
130                 device->super_bytes_used = btrfs_super_bytes_used(disk_super);
131                 device->total_bytes =
132                         btrfs_stack_device_total_bytes(&disk_super->dev_item);
133                 device->bytes_used =
134                         btrfs_stack_device_bytes_used(&disk_super->dev_item);
135                 list_add(&device->dev_list, &fs_devices->devices);
136                 device->fs_devices = fs_devices;
137         } else if (!device->name || strcmp(device->name, path)) {
138                 char *name = strdup(path);
139                 if (!name)
140                         return -ENOMEM;
141                 kfree(device->name);
142                 device->name = name;
143         }
144
145
146         if (found_transid > fs_devices->latest_trans) {
147                 fs_devices->latest_devid = devid;
148                 fs_devices->latest_trans = found_transid;
149         }
150         if (fs_devices->lowest_devid > devid) {
151                 fs_devices->lowest_devid = devid;
152         }
153         *fs_devices_ret = fs_devices;
154         return 0;
155 }
156
157 int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
158 {
159         struct btrfs_fs_devices *seed_devices;
160         struct list_head *cur;
161         struct btrfs_device *device;
162 again:
163         list_for_each(cur, &fs_devices->devices) {
164                 device = list_entry(cur, struct btrfs_device, dev_list);
165                 if (device->fd != -1) {
166                         close(device->fd);
167                         device->fd = -1;
168                 }
169                 device->writeable = 0;
170         }
171
172         seed_devices = fs_devices->seed;
173         fs_devices->seed = NULL;
174         if (seed_devices) {
175                 fs_devices = seed_devices;
176                 goto again;
177         }
178
179         return 0;
180 }
181
182 int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, int flags)
183 {
184         int fd;
185         struct list_head *head = &fs_devices->devices;
186         struct list_head *cur;
187         struct btrfs_device *device;
188         int ret;
189
190         list_for_each(cur, head) {
191                 device = list_entry(cur, struct btrfs_device, dev_list);
192
193                 fd = open(device->name, flags);
194                 if (fd < 0) {
195                         ret = -errno;
196                         goto fail;
197                 }
198
199                 if (posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED))
200                         fprintf(stderr, "Warning, could not drop caches\n");
201
202                 if (device->devid == fs_devices->latest_devid)
203                         fs_devices->latest_bdev = fd;
204                 if (device->devid == fs_devices->lowest_devid)
205                         fs_devices->lowest_bdev = fd;
206                 device->fd = fd;
207                 if (flags == O_RDWR)
208                         device->writeable = 1;
209         }
210         return 0;
211 fail:
212         btrfs_close_devices(fs_devices);
213         return ret;
214 }
215
216 int btrfs_scan_one_device(int fd, const char *path,
217                           struct btrfs_fs_devices **fs_devices_ret,
218                           u64 *total_devs, u64 super_offset)
219 {
220         struct btrfs_super_block *disk_super;
221         char *buf;
222         int ret;
223         u64 devid;
224         char uuidbuf[37];
225
226         buf = malloc(4096);
227         if (!buf) {
228                 ret = -ENOMEM;
229                 goto error;
230         }
231         disk_super = (struct btrfs_super_block *)buf;
232         ret = btrfs_read_dev_super(fd, disk_super, super_offset);
233         if (ret < 0) {
234                 ret = -EIO;
235                 goto error_brelse;
236         }
237         devid = le64_to_cpu(disk_super->dev_item.devid);
238         if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_METADUMP)
239                 *total_devs = 1;
240         else
241                 *total_devs = btrfs_super_num_devices(disk_super);
242         uuid_unparse(disk_super->fsid, uuidbuf);
243
244         ret = device_list_add(path, disk_super, devid, fs_devices_ret);
245
246 error_brelse:
247         free(buf);
248 error:
249         return ret;
250 }
251
252 /*
253  * this uses a pretty simple search, the expectation is that it is
254  * called very infrequently and that a given device has a small number
255  * of extents
256  */
257 static int find_free_dev_extent(struct btrfs_trans_handle *trans,
258                                 struct btrfs_device *device,
259                                 struct btrfs_path *path,
260                                 u64 num_bytes, u64 *start)
261 {
262         struct btrfs_key key;
263         struct btrfs_root *root = device->dev_root;
264         struct btrfs_dev_extent *dev_extent = NULL;
265         u64 hole_size = 0;
266         u64 last_byte = 0;
267         u64 search_start = 0;
268         u64 search_end = device->total_bytes;
269         int ret;
270         int slot = 0;
271         int start_found;
272         struct extent_buffer *l;
273
274         start_found = 0;
275         path->reada = 2;
276
277         /* FIXME use last free of some kind */
278
279         /* we don't want to overwrite the superblock on the drive,
280          * so we make sure to start at an offset of at least 1MB
281          */
282         search_start = max((u64)1024 * 1024, search_start);
283
284         if (root->fs_info->alloc_start + num_bytes <= device->total_bytes)
285                 search_start = max(root->fs_info->alloc_start, search_start);
286
287         key.objectid = device->devid;
288         key.offset = search_start;
289         key.type = BTRFS_DEV_EXTENT_KEY;
290         ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
291         if (ret < 0)
292                 goto error;
293         ret = btrfs_previous_item(root, path, 0, key.type);
294         if (ret < 0)
295                 goto error;
296         l = path->nodes[0];
297         btrfs_item_key_to_cpu(l, &key, path->slots[0]);
298         while (1) {
299                 l = path->nodes[0];
300                 slot = path->slots[0];
301                 if (slot >= btrfs_header_nritems(l)) {
302                         ret = btrfs_next_leaf(root, path);
303                         if (ret == 0)
304                                 continue;
305                         if (ret < 0)
306                                 goto error;
307 no_more_items:
308                         if (!start_found) {
309                                 if (search_start >= search_end) {
310                                         ret = -ENOSPC;
311                                         goto error;
312                                 }
313                                 *start = search_start;
314                                 start_found = 1;
315                                 goto check_pending;
316                         }
317                         *start = last_byte > search_start ?
318                                 last_byte : search_start;
319                         if (search_end <= *start) {
320                                 ret = -ENOSPC;
321                                 goto error;
322                         }
323                         goto check_pending;
324                 }
325                 btrfs_item_key_to_cpu(l, &key, slot);
326
327                 if (key.objectid < device->devid)
328                         goto next;
329
330                 if (key.objectid > device->devid)
331                         goto no_more_items;
332
333                 if (key.offset >= search_start && key.offset > last_byte &&
334                     start_found) {
335                         if (last_byte < search_start)
336                                 last_byte = search_start;
337                         hole_size = key.offset - last_byte;
338                         if (key.offset > last_byte &&
339                             hole_size >= num_bytes) {
340                                 *start = last_byte;
341                                 goto check_pending;
342                         }
343                 }
344                 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY) {
345                         goto next;
346                 }
347
348                 start_found = 1;
349                 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
350                 last_byte = key.offset + btrfs_dev_extent_length(l, dev_extent);
351 next:
352                 path->slots[0]++;
353                 cond_resched();
354         }
355 check_pending:
356         /* we have to make sure we didn't find an extent that has already
357          * been allocated by the map tree or the original allocation
358          */
359         btrfs_release_path(root, path);
360         BUG_ON(*start < search_start);
361
362         if (*start + num_bytes > search_end) {
363                 ret = -ENOSPC;
364                 goto error;
365         }
366         /* check for pending inserts here */
367         return 0;
368
369 error:
370         btrfs_release_path(root, path);
371         return ret;
372 }
373
374 int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
375                            struct btrfs_device *device,
376                            u64 chunk_tree, u64 chunk_objectid,
377                            u64 chunk_offset,
378                            u64 num_bytes, u64 *start)
379 {
380         int ret;
381         struct btrfs_path *path;
382         struct btrfs_root *root = device->dev_root;
383         struct btrfs_dev_extent *extent;
384         struct extent_buffer *leaf;
385         struct btrfs_key key;
386
387         path = btrfs_alloc_path();
388         if (!path)
389                 return -ENOMEM;
390
391         ret = find_free_dev_extent(trans, device, path, num_bytes, start);
392         if (ret) {
393                 goto err;
394         }
395
396         key.objectid = device->devid;
397         key.offset = *start;
398         key.type = BTRFS_DEV_EXTENT_KEY;
399         ret = btrfs_insert_empty_item(trans, root, path, &key,
400                                       sizeof(*extent));
401         BUG_ON(ret);
402
403         leaf = path->nodes[0];
404         extent = btrfs_item_ptr(leaf, path->slots[0],
405                                 struct btrfs_dev_extent);
406         btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
407         btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
408         btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
409
410         write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
411                     (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
412                     BTRFS_UUID_SIZE);
413
414         btrfs_set_dev_extent_length(leaf, extent, num_bytes);
415         btrfs_mark_buffer_dirty(leaf);
416 err:
417         btrfs_free_path(path);
418         return ret;
419 }
420
421 static int find_next_chunk(struct btrfs_root *root, u64 objectid, u64 *offset)
422 {
423         struct btrfs_path *path;
424         int ret;
425         struct btrfs_key key;
426         struct btrfs_chunk *chunk;
427         struct btrfs_key found_key;
428
429         path = btrfs_alloc_path();
430         BUG_ON(!path);
431
432         key.objectid = objectid;
433         key.offset = (u64)-1;
434         key.type = BTRFS_CHUNK_ITEM_KEY;
435
436         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
437         if (ret < 0)
438                 goto error;
439
440         BUG_ON(ret == 0);
441
442         ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
443         if (ret) {
444                 *offset = 0;
445         } else {
446                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
447                                       path->slots[0]);
448                 if (found_key.objectid != objectid)
449                         *offset = 0;
450                 else {
451                         chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
452                                                struct btrfs_chunk);
453                         *offset = found_key.offset +
454                                 btrfs_chunk_length(path->nodes[0], chunk);
455                 }
456         }
457         ret = 0;
458 error:
459         btrfs_free_path(path);
460         return ret;
461 }
462
463 static int find_next_devid(struct btrfs_root *root, struct btrfs_path *path,
464                            u64 *objectid)
465 {
466         int ret;
467         struct btrfs_key key;
468         struct btrfs_key found_key;
469
470         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
471         key.type = BTRFS_DEV_ITEM_KEY;
472         key.offset = (u64)-1;
473
474         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
475         if (ret < 0)
476                 goto error;
477
478         BUG_ON(ret == 0);
479
480         ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
481                                   BTRFS_DEV_ITEM_KEY);
482         if (ret) {
483                 *objectid = 1;
484         } else {
485                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
486                                       path->slots[0]);
487                 *objectid = found_key.offset + 1;
488         }
489         ret = 0;
490 error:
491         btrfs_release_path(root, path);
492         return ret;
493 }
494
495 /*
496  * the device information is stored in the chunk root
497  * the btrfs_device struct should be fully filled in
498  */
499 int btrfs_add_device(struct btrfs_trans_handle *trans,
500                      struct btrfs_root *root,
501                      struct btrfs_device *device)
502 {
503         int ret;
504         struct btrfs_path *path;
505         struct btrfs_dev_item *dev_item;
506         struct extent_buffer *leaf;
507         struct btrfs_key key;
508         unsigned long ptr;
509         u64 free_devid = 0;
510
511         root = root->fs_info->chunk_root;
512
513         path = btrfs_alloc_path();
514         if (!path)
515                 return -ENOMEM;
516
517         ret = find_next_devid(root, path, &free_devid);
518         if (ret)
519                 goto out;
520
521         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
522         key.type = BTRFS_DEV_ITEM_KEY;
523         key.offset = free_devid;
524
525         ret = btrfs_insert_empty_item(trans, root, path, &key,
526                                       sizeof(*dev_item));
527         if (ret)
528                 goto out;
529
530         leaf = path->nodes[0];
531         dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
532
533         device->devid = free_devid;
534         btrfs_set_device_id(leaf, dev_item, device->devid);
535         btrfs_set_device_generation(leaf, dev_item, 0);
536         btrfs_set_device_type(leaf, dev_item, device->type);
537         btrfs_set_device_io_align(leaf, dev_item, device->io_align);
538         btrfs_set_device_io_width(leaf, dev_item, device->io_width);
539         btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
540         btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
541         btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
542         btrfs_set_device_group(leaf, dev_item, 0);
543         btrfs_set_device_seek_speed(leaf, dev_item, 0);
544         btrfs_set_device_bandwidth(leaf, dev_item, 0);
545         btrfs_set_device_start_offset(leaf, dev_item, 0);
546
547         ptr = (unsigned long)btrfs_device_uuid(dev_item);
548         write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
549         ptr = (unsigned long)btrfs_device_fsid(dev_item);
550         write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
551         btrfs_mark_buffer_dirty(leaf);
552         ret = 0;
553
554 out:
555         btrfs_free_path(path);
556         return ret;
557 }
558
559 int btrfs_update_device(struct btrfs_trans_handle *trans,
560                         struct btrfs_device *device)
561 {
562         int ret;
563         struct btrfs_path *path;
564         struct btrfs_root *root;
565         struct btrfs_dev_item *dev_item;
566         struct extent_buffer *leaf;
567         struct btrfs_key key;
568
569         root = device->dev_root->fs_info->chunk_root;
570
571         path = btrfs_alloc_path();
572         if (!path)
573                 return -ENOMEM;
574
575         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
576         key.type = BTRFS_DEV_ITEM_KEY;
577         key.offset = device->devid;
578
579         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
580         if (ret < 0)
581                 goto out;
582
583         if (ret > 0) {
584                 ret = -ENOENT;
585                 goto out;
586         }
587
588         leaf = path->nodes[0];
589         dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
590
591         btrfs_set_device_id(leaf, dev_item, device->devid);
592         btrfs_set_device_type(leaf, dev_item, device->type);
593         btrfs_set_device_io_align(leaf, dev_item, device->io_align);
594         btrfs_set_device_io_width(leaf, dev_item, device->io_width);
595         btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
596         btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
597         btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
598         btrfs_mark_buffer_dirty(leaf);
599
600 out:
601         btrfs_free_path(path);
602         return ret;
603 }
604
605 int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
606                            struct btrfs_root *root,
607                            struct btrfs_key *key,
608                            struct btrfs_chunk *chunk, int item_size)
609 {
610         struct btrfs_super_block *super_copy = root->fs_info->super_copy;
611         struct btrfs_disk_key disk_key;
612         u32 array_size;
613         u8 *ptr;
614
615         array_size = btrfs_super_sys_array_size(super_copy);
616         if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
617                 return -EFBIG;
618
619         ptr = super_copy->sys_chunk_array + array_size;
620         btrfs_cpu_key_to_disk(&disk_key, key);
621         memcpy(ptr, &disk_key, sizeof(disk_key));
622         ptr += sizeof(disk_key);
623         memcpy(ptr, chunk, item_size);
624         item_size += sizeof(disk_key);
625         btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
626         return 0;
627 }
628
629 static u64 div_factor(u64 num, int factor)
630 {
631         if (factor == 10)
632                 return num;
633         num *= factor;
634         return num / 10;
635 }
636
637 static u64 chunk_bytes_by_type(u64 type, u64 calc_size, int num_stripes,
638                                int sub_stripes)
639 {
640         if (type & (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP))
641                 return calc_size;
642         else if (type & BTRFS_BLOCK_GROUP_RAID10)
643                 return calc_size * (num_stripes / sub_stripes);
644         else if (type & BTRFS_BLOCK_GROUP_RAID5)
645                 return calc_size * (num_stripes - 1);
646         else if (type & BTRFS_BLOCK_GROUP_RAID6)
647                 return calc_size * (num_stripes - 2);
648         else
649                 return calc_size * num_stripes;
650 }
651
652
653 static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
654 {
655         /* TODO, add a way to store the preferred stripe size */
656         return 64 * 1024;
657 }
658
659 int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
660                       struct btrfs_root *extent_root, u64 *start,
661                       u64 *num_bytes, u64 type)
662 {
663         u64 dev_offset;
664         struct btrfs_fs_info *info = extent_root->fs_info;
665         struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
666         struct btrfs_stripe *stripes;
667         struct btrfs_device *device = NULL;
668         struct btrfs_chunk *chunk;
669         struct list_head private_devs;
670         struct list_head *dev_list = &extent_root->fs_info->fs_devices->devices;
671         struct list_head *cur;
672         struct map_lookup *map;
673         int min_stripe_size = 1 * 1024 * 1024;
674         u64 calc_size = 8 * 1024 * 1024;
675         u64 min_free;
676         u64 max_chunk_size = 4 * calc_size;
677         u64 avail;
678         u64 max_avail = 0;
679         u64 percent_max;
680         int num_stripes = 1;
681         int min_stripes = 1;
682         int sub_stripes = 0;
683         int looped = 0;
684         int ret;
685         int index;
686         int stripe_len = 64 * 1024;
687         struct btrfs_key key;
688         u64 offset;
689
690         if (list_empty(dev_list)) {
691                 return -ENOSPC;
692         }
693
694         if (type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
695                     BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
696                     BTRFS_BLOCK_GROUP_RAID10 |
697                     BTRFS_BLOCK_GROUP_DUP)) {
698                 if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
699                         calc_size = 8 * 1024 * 1024;
700                         max_chunk_size = calc_size * 2;
701                         min_stripe_size = 1 * 1024 * 1024;
702                 } else if (type & BTRFS_BLOCK_GROUP_DATA) {
703                         calc_size = 1024 * 1024 * 1024;
704                         max_chunk_size = 10 * calc_size;
705                         min_stripe_size = 64 * 1024 * 1024;
706                 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
707                         calc_size = 1024 * 1024 * 1024;
708                         max_chunk_size = 4 * calc_size;
709                         min_stripe_size = 32 * 1024 * 1024;
710                 }
711         }
712         if (type & BTRFS_BLOCK_GROUP_RAID1) {
713                 num_stripes = min_t(u64, 2,
714                                   btrfs_super_num_devices(info->super_copy));
715                 if (num_stripes < 2)
716                         return -ENOSPC;
717                 min_stripes = 2;
718         }
719         if (type & BTRFS_BLOCK_GROUP_DUP) {
720                 num_stripes = 2;
721                 min_stripes = 2;
722         }
723         if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
724                 num_stripes = btrfs_super_num_devices(info->super_copy);
725                 min_stripes = 2;
726         }
727         if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
728                 num_stripes = btrfs_super_num_devices(info->super_copy);
729                 if (num_stripes < 4)
730                         return -ENOSPC;
731                 num_stripes &= ~(u32)1;
732                 sub_stripes = 2;
733                 min_stripes = 4;
734         }
735         if (type & (BTRFS_BLOCK_GROUP_RAID5)) {
736                 num_stripes = btrfs_super_num_devices(info->super_copy);
737                 if (num_stripes < 2)
738                         return -ENOSPC;
739                 min_stripes = 2;
740                 stripe_len = find_raid56_stripe_len(num_stripes - 1,
741                                     btrfs_super_stripesize(info->super_copy));
742         }
743         if (type & (BTRFS_BLOCK_GROUP_RAID6)) {
744                 num_stripes = btrfs_super_num_devices(info->super_copy);
745                 if (num_stripes < 3)
746                         return -ENOSPC;
747                 min_stripes = 3;
748                 stripe_len = find_raid56_stripe_len(num_stripes - 2,
749                                     btrfs_super_stripesize(info->super_copy));
750         }
751
752         /* we don't want a chunk larger than 10% of the FS */
753         percent_max = div_factor(btrfs_super_total_bytes(info->super_copy), 1);
754         max_chunk_size = min(percent_max, max_chunk_size);
755
756 again:
757         if (chunk_bytes_by_type(type, calc_size, num_stripes, sub_stripes) >
758             max_chunk_size) {
759                 calc_size = max_chunk_size;
760                 calc_size /= num_stripes;
761                 calc_size /= stripe_len;
762                 calc_size *= stripe_len;
763         }
764         /* we don't want tiny stripes */
765         calc_size = max_t(u64, calc_size, min_stripe_size);
766
767         calc_size /= stripe_len;
768         calc_size *= stripe_len;
769         INIT_LIST_HEAD(&private_devs);
770         cur = dev_list->next;
771         index = 0;
772
773         if (type & BTRFS_BLOCK_GROUP_DUP)
774                 min_free = calc_size * 2;
775         else
776                 min_free = calc_size;
777
778         /* build a private list of devices we will allocate from */
779         while(index < num_stripes) {
780                 device = list_entry(cur, struct btrfs_device, dev_list);
781                 avail = device->total_bytes - device->bytes_used;
782                 cur = cur->next;
783                 if (avail >= min_free) {
784                         list_move_tail(&device->dev_list, &private_devs);
785                         index++;
786                         if (type & BTRFS_BLOCK_GROUP_DUP)
787                                 index++;
788                 } else if (avail > max_avail)
789                         max_avail = avail;
790                 if (cur == dev_list)
791                         break;
792         }
793         if (index < num_stripes) {
794                 list_splice(&private_devs, dev_list);
795                 if (index >= min_stripes) {
796                         num_stripes = index;
797                         if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
798                                 num_stripes /= sub_stripes;
799                                 num_stripes *= sub_stripes;
800                         }
801                         looped = 1;
802                         goto again;
803                 }
804                 if (!looped && max_avail > 0) {
805                         looped = 1;
806                         calc_size = max_avail;
807                         goto again;
808                 }
809                 return -ENOSPC;
810         }
811         ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
812                               &offset);
813         if (ret)
814                 return ret;
815         key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
816         key.type = BTRFS_CHUNK_ITEM_KEY;
817         key.offset = offset;
818
819         chunk = kmalloc(btrfs_chunk_item_size(num_stripes), GFP_NOFS);
820         if (!chunk)
821                 return -ENOMEM;
822
823         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
824         if (!map) {
825                 kfree(chunk);
826                 return -ENOMEM;
827         }
828
829         stripes = &chunk->stripe;
830         *num_bytes = chunk_bytes_by_type(type, calc_size,
831                                          num_stripes, sub_stripes);
832         index = 0;
833         while(index < num_stripes) {
834                 struct btrfs_stripe *stripe;
835                 BUG_ON(list_empty(&private_devs));
836                 cur = private_devs.next;
837                 device = list_entry(cur, struct btrfs_device, dev_list);
838
839                 /* loop over this device again if we're doing a dup group */
840                 if (!(type & BTRFS_BLOCK_GROUP_DUP) ||
841                     (index == num_stripes - 1))
842                         list_move_tail(&device->dev_list, dev_list);
843
844                 ret = btrfs_alloc_dev_extent(trans, device,
845                              info->chunk_root->root_key.objectid,
846                              BTRFS_FIRST_CHUNK_TREE_OBJECTID, key.offset,
847                              calc_size, &dev_offset);
848                 BUG_ON(ret);
849
850                 device->bytes_used += calc_size;
851                 ret = btrfs_update_device(trans, device);
852                 BUG_ON(ret);
853
854                 map->stripes[index].dev = device;
855                 map->stripes[index].physical = dev_offset;
856                 stripe = stripes + index;
857                 btrfs_set_stack_stripe_devid(stripe, device->devid);
858                 btrfs_set_stack_stripe_offset(stripe, dev_offset);
859                 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
860                 index++;
861         }
862         BUG_ON(!list_empty(&private_devs));
863
864         /* key was set above */
865         btrfs_set_stack_chunk_length(chunk, *num_bytes);
866         btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
867         btrfs_set_stack_chunk_stripe_len(chunk, stripe_len);
868         btrfs_set_stack_chunk_type(chunk, type);
869         btrfs_set_stack_chunk_num_stripes(chunk, num_stripes);
870         btrfs_set_stack_chunk_io_align(chunk, stripe_len);
871         btrfs_set_stack_chunk_io_width(chunk, stripe_len);
872         btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
873         btrfs_set_stack_chunk_sub_stripes(chunk, sub_stripes);
874         map->sector_size = extent_root->sectorsize;
875         map->stripe_len = stripe_len;
876         map->io_align = stripe_len;
877         map->io_width = stripe_len;
878         map->type = type;
879         map->num_stripes = num_stripes;
880         map->sub_stripes = sub_stripes;
881
882         ret = btrfs_insert_item(trans, chunk_root, &key, chunk,
883                                 btrfs_chunk_item_size(num_stripes));
884         BUG_ON(ret);
885         *start = key.offset;;
886
887         map->ce.start = key.offset;
888         map->ce.size = *num_bytes;
889
890         ret = insert_existing_cache_extent(
891                            &extent_root->fs_info->mapping_tree.cache_tree,
892                            &map->ce);
893         BUG_ON(ret);
894
895         if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
896                 ret = btrfs_add_system_chunk(trans, chunk_root, &key,
897                                     chunk, btrfs_chunk_item_size(num_stripes));
898                 BUG_ON(ret);
899         }
900
901         kfree(chunk);
902         return ret;
903 }
904
905 int btrfs_alloc_data_chunk(struct btrfs_trans_handle *trans,
906                            struct btrfs_root *extent_root, u64 *start,
907                            u64 num_bytes, u64 type)
908 {
909         u64 dev_offset;
910         struct btrfs_fs_info *info = extent_root->fs_info;
911         struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
912         struct btrfs_stripe *stripes;
913         struct btrfs_device *device = NULL;
914         struct btrfs_chunk *chunk;
915         struct list_head *dev_list = &extent_root->fs_info->fs_devices->devices;
916         struct list_head *cur;
917         struct map_lookup *map;
918         u64 calc_size = 8 * 1024 * 1024;
919         int num_stripes = 1;
920         int sub_stripes = 0;
921         int ret;
922         int index;
923         int stripe_len = 64 * 1024;
924         struct btrfs_key key;
925
926         key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
927         key.type = BTRFS_CHUNK_ITEM_KEY;
928         ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
929                               &key.offset);
930         if (ret)
931                 return ret;
932
933         chunk = kmalloc(btrfs_chunk_item_size(num_stripes), GFP_NOFS);
934         if (!chunk)
935                 return -ENOMEM;
936
937         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
938         if (!map) {
939                 kfree(chunk);
940                 return -ENOMEM;
941         }
942
943         stripes = &chunk->stripe;
944         calc_size = num_bytes;
945
946         index = 0;
947         cur = dev_list->next;
948         device = list_entry(cur, struct btrfs_device, dev_list);
949
950         while (index < num_stripes) {
951                 struct btrfs_stripe *stripe;
952
953                 ret = btrfs_alloc_dev_extent(trans, device,
954                              info->chunk_root->root_key.objectid,
955                              BTRFS_FIRST_CHUNK_TREE_OBJECTID, key.offset,
956                              calc_size, &dev_offset);
957                 BUG_ON(ret);
958
959                 device->bytes_used += calc_size;
960                 ret = btrfs_update_device(trans, device);
961                 BUG_ON(ret);
962
963                 map->stripes[index].dev = device;
964                 map->stripes[index].physical = dev_offset;
965                 stripe = stripes + index;
966                 btrfs_set_stack_stripe_devid(stripe, device->devid);
967                 btrfs_set_stack_stripe_offset(stripe, dev_offset);
968                 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
969                 index++;
970         }
971
972         /* key was set above */
973         btrfs_set_stack_chunk_length(chunk, num_bytes);
974         btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
975         btrfs_set_stack_chunk_stripe_len(chunk, stripe_len);
976         btrfs_set_stack_chunk_type(chunk, type);
977         btrfs_set_stack_chunk_num_stripes(chunk, num_stripes);
978         btrfs_set_stack_chunk_io_align(chunk, stripe_len);
979         btrfs_set_stack_chunk_io_width(chunk, stripe_len);
980         btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
981         btrfs_set_stack_chunk_sub_stripes(chunk, sub_stripes);
982         map->sector_size = extent_root->sectorsize;
983         map->stripe_len = stripe_len;
984         map->io_align = stripe_len;
985         map->io_width = stripe_len;
986         map->type = type;
987         map->num_stripes = num_stripes;
988         map->sub_stripes = sub_stripes;
989
990         ret = btrfs_insert_item(trans, chunk_root, &key, chunk,
991                                 btrfs_chunk_item_size(num_stripes));
992         BUG_ON(ret);
993         *start = key.offset;
994
995         map->ce.start = key.offset;
996         map->ce.size = num_bytes;
997
998         ret = insert_existing_cache_extent(
999                            &extent_root->fs_info->mapping_tree.cache_tree,
1000                            &map->ce);
1001         BUG_ON(ret);
1002
1003         kfree(chunk);
1004         return ret;
1005 }
1006
1007 void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
1008 {
1009         cache_tree_init(&tree->cache_tree);
1010 }
1011
1012 int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
1013 {
1014         struct cache_extent *ce;
1015         struct map_lookup *map;
1016         int ret;
1017
1018         ce = find_first_cache_extent(&map_tree->cache_tree, logical);
1019         BUG_ON(!ce);
1020         BUG_ON(ce->start > logical || ce->start + ce->size < logical);
1021         map = container_of(ce, struct map_lookup, ce);
1022
1023         if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
1024                 ret = map->num_stripes;
1025         else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
1026                 ret = map->sub_stripes;
1027         else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
1028                 ret = 2;
1029         else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
1030                 ret = 3;
1031         else
1032                 ret = 1;
1033         return ret;
1034 }
1035
1036 int btrfs_next_metadata(struct btrfs_mapping_tree *map_tree, u64 *logical,
1037                         u64 *size)
1038 {
1039         struct cache_extent *ce;
1040         struct map_lookup *map;
1041
1042         ce = find_first_cache_extent(&map_tree->cache_tree, *logical);
1043
1044         while (ce) {
1045                 ce = next_cache_extent(ce);
1046                 if (!ce)
1047                         return -ENOENT;
1048
1049                 map = container_of(ce, struct map_lookup, ce);
1050                 if (map->type & BTRFS_BLOCK_GROUP_METADATA) {
1051                         *logical = ce->start;
1052                         *size = ce->size;
1053                         return 0;
1054                 }
1055         }
1056
1057         return -ENOENT;
1058 }
1059
1060 int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
1061                      u64 chunk_start, u64 physical, u64 devid,
1062                      u64 **logical, int *naddrs, int *stripe_len)
1063 {
1064         struct cache_extent *ce;
1065         struct map_lookup *map;
1066         u64 *buf;
1067         u64 bytenr;
1068         u64 length;
1069         u64 stripe_nr;
1070         u64 rmap_len;
1071         int i, j, nr = 0;
1072
1073         ce = find_first_cache_extent(&map_tree->cache_tree, chunk_start);
1074         BUG_ON(!ce);
1075         map = container_of(ce, struct map_lookup, ce);
1076
1077         length = ce->size;
1078         rmap_len = map->stripe_len;
1079         if (map->type & BTRFS_BLOCK_GROUP_RAID10)
1080                 length = ce->size / (map->num_stripes / map->sub_stripes);
1081         else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
1082                 length = ce->size / map->num_stripes;
1083         else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
1084                               BTRFS_BLOCK_GROUP_RAID6)) {
1085                 length = ce->size / nr_data_stripes(map);
1086                 rmap_len = map->stripe_len * nr_data_stripes(map);
1087         }
1088
1089         buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
1090
1091         for (i = 0; i < map->num_stripes; i++) {
1092                 if (devid && map->stripes[i].dev->devid != devid)
1093                         continue;
1094                 if (map->stripes[i].physical > physical ||
1095                     map->stripes[i].physical + length <= physical)
1096                         continue;
1097
1098                 stripe_nr = (physical - map->stripes[i].physical) /
1099                             map->stripe_len;
1100
1101                 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
1102                         stripe_nr = (stripe_nr * map->num_stripes + i) /
1103                                     map->sub_stripes;
1104                 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
1105                         stripe_nr = stripe_nr * map->num_stripes + i;
1106                 } /* else if RAID[56], multiply by nr_data_stripes().
1107                    * Alternatively, just use rmap_len below instead of
1108                    * map->stripe_len */
1109
1110                 bytenr = ce->start + stripe_nr * rmap_len;
1111                 for (j = 0; j < nr; j++) {
1112                         if (buf[j] == bytenr)
1113                                 break;
1114                 }
1115                 if (j == nr)
1116                         buf[nr++] = bytenr;
1117         }
1118
1119         *logical = buf;
1120         *naddrs = nr;
1121         *stripe_len = rmap_len;
1122
1123         return 0;
1124 }
1125
1126 static inline int parity_smaller(u64 a, u64 b)
1127 {
1128         return a > b;
1129 }
1130
1131 /* Bubble-sort the stripe set to put the parity/syndrome stripes last */
1132 static void sort_parity_stripes(struct btrfs_multi_bio *bbio, u64 *raid_map)
1133 {
1134         struct btrfs_bio_stripe s;
1135         int i;
1136         u64 l;
1137         int again = 1;
1138
1139         while (again) {
1140                 again = 0;
1141                 for (i = 0; i < bbio->num_stripes - 1; i++) {
1142                         if (parity_smaller(raid_map[i], raid_map[i+1])) {
1143                                 s = bbio->stripes[i];
1144                                 l = raid_map[i];
1145                                 bbio->stripes[i] = bbio->stripes[i+1];
1146                                 raid_map[i] = raid_map[i+1];
1147                                 bbio->stripes[i+1] = s;
1148                                 raid_map[i+1] = l;
1149                                 again = 1;
1150                         }
1151                 }
1152         }
1153 }
1154
1155 int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
1156                     u64 logical, u64 *length,
1157                     struct btrfs_multi_bio **multi_ret, int mirror_num,
1158                     u64 **raid_map_ret)
1159 {
1160         return __btrfs_map_block(map_tree, rw, logical, length, NULL,
1161                                  multi_ret, mirror_num, raid_map_ret);
1162 }
1163
1164 int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
1165                     u64 logical, u64 *length, u64 *type,
1166                     struct btrfs_multi_bio **multi_ret, int mirror_num,
1167                     u64 **raid_map_ret)
1168 {
1169         struct cache_extent *ce;
1170         struct map_lookup *map;
1171         u64 offset;
1172         u64 stripe_offset;
1173         u64 stripe_nr;
1174         u64 *raid_map = NULL;
1175         int stripes_allocated = 8;
1176         int stripes_required = 1;
1177         int stripe_index;
1178         int i;
1179         struct btrfs_multi_bio *multi = NULL;
1180
1181         if (multi_ret && rw == READ) {
1182                 stripes_allocated = 1;
1183         }
1184 again:
1185         ce = find_first_cache_extent(&map_tree->cache_tree, logical);
1186         if (!ce) {
1187                 if (multi)
1188                         kfree(multi);
1189                 return -ENOENT;
1190         }
1191         if (ce->start > logical || ce->start + ce->size < logical) {
1192                 if (multi)
1193                         kfree(multi);
1194                 return -ENOENT;
1195         }
1196
1197         if (multi_ret) {
1198                 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
1199                                 GFP_NOFS);
1200                 if (!multi)
1201                         return -ENOMEM;
1202         }
1203         map = container_of(ce, struct map_lookup, ce);
1204         offset = logical - ce->start;
1205
1206         if (rw == WRITE) {
1207                 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
1208                                  BTRFS_BLOCK_GROUP_DUP)) {
1209                         stripes_required = map->num_stripes;
1210                 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
1211                         stripes_required = map->sub_stripes;
1212                 }
1213         }
1214         if (map->type & (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)
1215             && multi_ret && ((rw & WRITE) || mirror_num > 1) && raid_map_ret) {
1216                     /* RAID[56] write or recovery. Return all stripes */
1217                     stripes_required = map->num_stripes;
1218
1219                     /* Only allocate the map if we've already got a large enough multi_ret */
1220                     if (stripes_allocated >= stripes_required) {
1221                             raid_map = kmalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
1222                             if (!raid_map) {
1223                                     kfree(multi);
1224                                     return -ENOMEM;
1225                             }
1226                     }
1227         }
1228
1229         /* if our multi bio struct is too small, back off and try again */
1230         if (multi_ret && stripes_allocated < stripes_required) {
1231                 stripes_allocated = stripes_required;
1232                 kfree(multi);
1233                 multi = NULL;
1234                 goto again;
1235         }
1236         stripe_nr = offset;
1237         /*
1238          * stripe_nr counts the total number of stripes we have to stride
1239          * to get to this block
1240          */
1241         stripe_nr = stripe_nr / map->stripe_len;
1242
1243         stripe_offset = stripe_nr * map->stripe_len;
1244         BUG_ON(offset < stripe_offset);
1245
1246         /* stripe_offset is the offset of this block in its stripe*/
1247         stripe_offset = offset - stripe_offset;
1248
1249         if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
1250                          BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
1251                          BTRFS_BLOCK_GROUP_RAID10 |
1252                          BTRFS_BLOCK_GROUP_DUP)) {
1253                 /* we limit the length of each bio to what fits in a stripe */
1254                 *length = min_t(u64, ce->size - offset,
1255                               map->stripe_len - stripe_offset);
1256         } else {
1257                 *length = ce->size - offset;
1258         }
1259
1260         if (!multi_ret)
1261                 goto out;
1262
1263         multi->num_stripes = 1;
1264         stripe_index = 0;
1265         if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
1266                 if (rw == WRITE)
1267                         multi->num_stripes = map->num_stripes;
1268                 else if (mirror_num)
1269                         stripe_index = mirror_num - 1;
1270                 else
1271                         stripe_index = stripe_nr % map->num_stripes;
1272         } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
1273                 int factor = map->num_stripes / map->sub_stripes;
1274
1275                 stripe_index = stripe_nr % factor;
1276                 stripe_index *= map->sub_stripes;
1277
1278                 if (rw == WRITE)
1279                         multi->num_stripes = map->sub_stripes;
1280                 else if (mirror_num)
1281                         stripe_index += mirror_num - 1;
1282
1283                 stripe_nr = stripe_nr / factor;
1284         } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
1285                 if (rw == WRITE)
1286                         multi->num_stripes = map->num_stripes;
1287                 else if (mirror_num)
1288                         stripe_index = mirror_num - 1;
1289         } else if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
1290                                 BTRFS_BLOCK_GROUP_RAID6)) {
1291
1292                 if (raid_map) {
1293                         int i, rot;
1294                         u64 tmp;
1295                         u64 raid56_full_stripe_start;
1296                         u64 full_stripe_len = nr_data_stripes(map) * map->stripe_len;
1297
1298                         /*
1299                          * align the start of our data stripe in the logical
1300                          * address space
1301                          */
1302                         raid56_full_stripe_start = offset / full_stripe_len;
1303                         raid56_full_stripe_start *= full_stripe_len;
1304
1305                         /* get the data stripe number */
1306                         stripe_nr = raid56_full_stripe_start / map->stripe_len;
1307                         stripe_nr = stripe_nr / nr_data_stripes(map);
1308
1309                         /* Work out the disk rotation on this stripe-set */
1310                         rot = stripe_nr % map->num_stripes;
1311
1312                         /* Fill in the logical address of each stripe */
1313                         tmp = stripe_nr * nr_data_stripes(map);
1314
1315                         for (i = 0; i < nr_data_stripes(map); i++)
1316                                 raid_map[(i+rot) % map->num_stripes] =
1317                                         ce->start + (tmp + i) * map->stripe_len;
1318
1319                         raid_map[(i+rot) % map->num_stripes] = BTRFS_RAID5_P_STRIPE;
1320                         if (map->type & BTRFS_BLOCK_GROUP_RAID6)
1321                                 raid_map[(i+rot+1) % map->num_stripes] = BTRFS_RAID6_Q_STRIPE;
1322
1323                         *length = map->stripe_len;
1324                         stripe_index = 0;
1325                         stripe_offset = 0;
1326                         multi->num_stripes = map->num_stripes;
1327                 } else {
1328                         stripe_index = stripe_nr % nr_data_stripes(map);
1329                         stripe_nr = stripe_nr / nr_data_stripes(map);
1330
1331                         /*
1332                          * Mirror #0 or #1 means the original data block.
1333                          * Mirror #2 is RAID5 parity block.
1334                          * Mirror #3 is RAID6 Q block.
1335                          */
1336                         if (mirror_num > 1)
1337                                 stripe_index = nr_data_stripes(map) + mirror_num - 2;
1338
1339                         /* We distribute the parity blocks across stripes */
1340                         stripe_index = (stripe_nr + stripe_index) % map->num_stripes;
1341                 }
1342         } else {
1343                 /*
1344                  * after this do_div call, stripe_nr is the number of stripes
1345                  * on this device we have to walk to find the data, and
1346                  * stripe_index is the number of our device in the stripe array
1347                  */
1348                 stripe_index = stripe_nr % map->num_stripes;
1349                 stripe_nr = stripe_nr / map->num_stripes;
1350         }
1351         BUG_ON(stripe_index >= map->num_stripes);
1352
1353         for (i = 0; i < multi->num_stripes; i++) {
1354                 multi->stripes[i].physical =
1355                         map->stripes[stripe_index].physical + stripe_offset +
1356                         stripe_nr * map->stripe_len;
1357                 multi->stripes[i].dev = map->stripes[stripe_index].dev;
1358                 stripe_index++;
1359         }
1360         *multi_ret = multi;
1361
1362         if (type)
1363                 *type = map->type;
1364
1365         if (raid_map) {
1366                 sort_parity_stripes(multi, raid_map);
1367                 *raid_map_ret = raid_map;
1368         }
1369 out:
1370         return 0;
1371 }
1372
1373 struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
1374                                        u8 *uuid, u8 *fsid)
1375 {
1376         struct btrfs_device *device;
1377         struct btrfs_fs_devices *cur_devices;
1378
1379         cur_devices = root->fs_info->fs_devices;
1380         while (cur_devices) {
1381                 if (!fsid ||
1382                     !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
1383                         device = __find_device(&cur_devices->devices,
1384                                                devid, uuid);
1385                         if (device)
1386                                 return device;
1387                 }
1388                 cur_devices = cur_devices->seed;
1389         }
1390         return NULL;
1391 }
1392
1393 struct btrfs_device *btrfs_find_device_by_devid(struct btrfs_root *root,
1394                                                 u64 devid, int instance)
1395 {
1396         struct list_head *head = &root->fs_info->fs_devices->devices;
1397         struct btrfs_device *dev;
1398         struct list_head *cur;
1399         int num_found = 0;
1400
1401         list_for_each(cur, head) {
1402                 dev = list_entry(cur, struct btrfs_device, dev_list);
1403                 if (dev->devid == devid && num_found++ == instance)
1404                         return dev;
1405         }
1406         return NULL;
1407 }
1408
1409 int btrfs_bootstrap_super_map(struct btrfs_mapping_tree *map_tree,
1410                               struct btrfs_fs_devices *fs_devices)
1411 {
1412         struct map_lookup *map;
1413         u64 logical = BTRFS_SUPER_INFO_OFFSET;
1414         u64 length = BTRFS_SUPER_INFO_SIZE;
1415         int num_stripes = 0;
1416         int sub_stripes = 0;
1417         int ret;
1418         int i;
1419         struct list_head *cur;
1420
1421         list_for_each(cur, &fs_devices->devices) {
1422                 num_stripes++;
1423         }
1424         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
1425         if (!map)
1426                 return -ENOMEM;
1427
1428         map->ce.start = logical;
1429         map->ce.size = length;
1430         map->num_stripes = num_stripes;
1431         map->sub_stripes = sub_stripes;
1432         map->io_width = length;
1433         map->io_align = length;
1434         map->sector_size = length;
1435         map->stripe_len = length;
1436         map->type = BTRFS_BLOCK_GROUP_RAID1;
1437
1438         i = 0;
1439         list_for_each(cur, &fs_devices->devices) {
1440                 struct btrfs_device *device = list_entry(cur,
1441                                                          struct btrfs_device,
1442                                                          dev_list);
1443                 map->stripes[i].physical = logical;
1444                 map->stripes[i].dev = device;
1445                 i++;
1446         }
1447         ret = insert_existing_cache_extent(&map_tree->cache_tree, &map->ce);
1448         if (ret == -EEXIST) {
1449                 struct cache_extent *old;
1450                 struct map_lookup *old_map;
1451                 old = find_cache_extent(&map_tree->cache_tree, logical, length);
1452                 old_map = container_of(old, struct map_lookup, ce);
1453                 remove_cache_extent(&map_tree->cache_tree, old);
1454                 kfree(old_map);
1455                 ret = insert_existing_cache_extent(&map_tree->cache_tree,
1456                                                    &map->ce);
1457         }
1458         BUG_ON(ret);
1459         return 0;
1460 }
1461
1462 int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
1463 {
1464         struct cache_extent *ce;
1465         struct map_lookup *map;
1466         struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
1467         int readonly = 0;
1468         int i;
1469
1470         ce = find_first_cache_extent(&map_tree->cache_tree, chunk_offset);
1471         BUG_ON(!ce);
1472
1473         map = container_of(ce, struct map_lookup, ce);
1474         for (i = 0; i < map->num_stripes; i++) {
1475                 if (!map->stripes[i].dev->writeable) {
1476                         readonly = 1;
1477                         break;
1478                 }
1479         }
1480
1481         return readonly;
1482 }
1483
1484 static struct btrfs_device *fill_missing_device(u64 devid)
1485 {
1486         struct btrfs_device *device;
1487
1488         device = kzalloc(sizeof(*device), GFP_NOFS);
1489         device->devid = devid;
1490         device->fd = -1;
1491         return device;
1492 }
1493
1494 static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
1495                           struct extent_buffer *leaf,
1496                           struct btrfs_chunk *chunk)
1497 {
1498         struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
1499         struct map_lookup *map;
1500         struct cache_extent *ce;
1501         u64 logical;
1502         u64 length;
1503         u64 devid;
1504         u8 uuid[BTRFS_UUID_SIZE];
1505         int num_stripes;
1506         int ret;
1507         int i;
1508
1509         logical = key->offset;
1510         length = btrfs_chunk_length(leaf, chunk);
1511
1512         ce = find_first_cache_extent(&map_tree->cache_tree, logical);
1513
1514         /* already mapped? */
1515         if (ce && ce->start <= logical && ce->start + ce->size > logical) {
1516                 return 0;
1517         }
1518
1519         num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
1520         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
1521         if (!map)
1522                 return -ENOMEM;
1523
1524         map->ce.start = logical;
1525         map->ce.size = length;
1526         map->num_stripes = num_stripes;
1527         map->io_width = btrfs_chunk_io_width(leaf, chunk);
1528         map->io_align = btrfs_chunk_io_align(leaf, chunk);
1529         map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
1530         map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
1531         map->type = btrfs_chunk_type(leaf, chunk);
1532         map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
1533
1534         for (i = 0; i < num_stripes; i++) {
1535                 map->stripes[i].physical =
1536                         btrfs_stripe_offset_nr(leaf, chunk, i);
1537                 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
1538                 read_extent_buffer(leaf, uuid, (unsigned long)
1539                                    btrfs_stripe_dev_uuid_nr(chunk, i),
1540                                    BTRFS_UUID_SIZE);
1541                 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
1542                                                         NULL);
1543                 if (!map->stripes[i].dev) {
1544                         map->stripes[i].dev = fill_missing_device(devid);
1545                         printf("warning, device %llu is missing\n",
1546                                (unsigned long long)devid);
1547                 }
1548
1549         }
1550         ret = insert_existing_cache_extent(&map_tree->cache_tree, &map->ce);
1551         BUG_ON(ret);
1552
1553         return 0;
1554 }
1555
1556 static int fill_device_from_item(struct extent_buffer *leaf,
1557                                  struct btrfs_dev_item *dev_item,
1558                                  struct btrfs_device *device)
1559 {
1560         unsigned long ptr;
1561
1562         device->devid = btrfs_device_id(leaf, dev_item);
1563         device->total_bytes = btrfs_device_total_bytes(leaf, dev_item);
1564         device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
1565         device->type = btrfs_device_type(leaf, dev_item);
1566         device->io_align = btrfs_device_io_align(leaf, dev_item);
1567         device->io_width = btrfs_device_io_width(leaf, dev_item);
1568         device->sector_size = btrfs_device_sector_size(leaf, dev_item);
1569
1570         ptr = (unsigned long)btrfs_device_uuid(dev_item);
1571         read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
1572
1573         return 0;
1574 }
1575
1576 static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
1577 {
1578         struct btrfs_fs_devices *fs_devices;
1579         int ret;
1580
1581         fs_devices = root->fs_info->fs_devices->seed;
1582         while (fs_devices) {
1583                 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
1584                         ret = 0;
1585                         goto out;
1586                 }
1587                 fs_devices = fs_devices->seed;
1588         }
1589
1590         fs_devices = find_fsid(fsid);
1591         if (!fs_devices) {
1592                 ret = -ENOENT;
1593                 goto out;
1594         }
1595
1596         ret = btrfs_open_devices(fs_devices, O_RDONLY);
1597         if (ret)
1598                 goto out;
1599
1600         fs_devices->seed = root->fs_info->fs_devices->seed;
1601         root->fs_info->fs_devices->seed = fs_devices;
1602 out:
1603         return ret;
1604 }
1605
1606 static int read_one_dev(struct btrfs_root *root,
1607                         struct extent_buffer *leaf,
1608                         struct btrfs_dev_item *dev_item)
1609 {
1610         struct btrfs_device *device;
1611         u64 devid;
1612         int ret = 0;
1613         u8 fs_uuid[BTRFS_UUID_SIZE];
1614         u8 dev_uuid[BTRFS_UUID_SIZE];
1615
1616         devid = btrfs_device_id(leaf, dev_item);
1617         read_extent_buffer(leaf, dev_uuid,
1618                            (unsigned long)btrfs_device_uuid(dev_item),
1619                            BTRFS_UUID_SIZE);
1620         read_extent_buffer(leaf, fs_uuid,
1621                            (unsigned long)btrfs_device_fsid(dev_item),
1622                            BTRFS_UUID_SIZE);
1623
1624         if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
1625                 ret = open_seed_devices(root, fs_uuid);
1626                 if (ret)
1627                         return ret;
1628         }
1629
1630         device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1631         if (!device) {
1632                 printk("warning devid %llu not found already\n",
1633                         (unsigned long long)devid);
1634                 device = kmalloc(sizeof(*device), GFP_NOFS);
1635                 if (!device)
1636                         return -ENOMEM;
1637                 device->total_ios = 0;
1638                 list_add(&device->dev_list,
1639                          &root->fs_info->fs_devices->devices);
1640         }
1641
1642         fill_device_from_item(leaf, dev_item, device);
1643         device->dev_root = root->fs_info->dev_root;
1644         return ret;
1645 }
1646
1647 int btrfs_read_sys_array(struct btrfs_root *root)
1648 {
1649         struct btrfs_super_block *super_copy = root->fs_info->super_copy;
1650         struct extent_buffer *sb;
1651         struct btrfs_disk_key *disk_key;
1652         struct btrfs_chunk *chunk;
1653         struct btrfs_key key;
1654         u32 num_stripes;
1655         u32 array_size;
1656         u32 len = 0;
1657         u8 *ptr;
1658         unsigned long sb_ptr;
1659         u32 cur;
1660         int ret = 0;
1661
1662         sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
1663                                           BTRFS_SUPER_INFO_SIZE);
1664         if (!sb)
1665                 return -ENOMEM;
1666         btrfs_set_buffer_uptodate(sb);
1667         write_extent_buffer(sb, super_copy, 0, sizeof(*super_copy));
1668         array_size = btrfs_super_sys_array_size(super_copy);
1669
1670         /*
1671          * we do this loop twice, once for the device items and
1672          * once for all of the chunks.  This way there are device
1673          * structs filled in for every chunk
1674          */
1675         ptr = super_copy->sys_chunk_array;
1676         sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
1677         cur = 0;
1678
1679         while (cur < array_size) {
1680                 disk_key = (struct btrfs_disk_key *)ptr;
1681                 btrfs_disk_key_to_cpu(&key, disk_key);
1682
1683                 len = sizeof(*disk_key);
1684                 ptr += len;
1685                 sb_ptr += len;
1686                 cur += len;
1687
1688                 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1689                         chunk = (struct btrfs_chunk *)sb_ptr;
1690                         ret = read_one_chunk(root, &key, sb, chunk);
1691                         if (ret)
1692                                 break;
1693                         num_stripes = btrfs_chunk_num_stripes(sb, chunk);
1694                         len = btrfs_chunk_item_size(num_stripes);
1695                 } else {
1696                         BUG();
1697                 }
1698                 ptr += len;
1699                 sb_ptr += len;
1700                 cur += len;
1701         }
1702         free_extent_buffer(sb);
1703         return ret;
1704 }
1705
1706 int btrfs_read_chunk_tree(struct btrfs_root *root)
1707 {
1708         struct btrfs_path *path;
1709         struct extent_buffer *leaf;
1710         struct btrfs_key key;
1711         struct btrfs_key found_key;
1712         int ret;
1713         int slot;
1714
1715         root = root->fs_info->chunk_root;
1716
1717         path = btrfs_alloc_path();
1718         if (!path)
1719                 return -ENOMEM;
1720
1721         /* first we search for all of the device items, and then we
1722          * read in all of the chunk items.  This way we can create chunk
1723          * mappings that reference all of the devices that are afound
1724          */
1725         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1726         key.offset = 0;
1727         key.type = 0;
1728 again:
1729         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1730         while(1) {
1731                 leaf = path->nodes[0];
1732                 slot = path->slots[0];
1733                 if (slot >= btrfs_header_nritems(leaf)) {
1734                         ret = btrfs_next_leaf(root, path);
1735                         if (ret == 0)
1736                                 continue;
1737                         if (ret < 0)
1738                                 goto error;
1739                         break;
1740                 }
1741                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1742                 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
1743                         if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
1744                                 break;
1745                         if (found_key.type == BTRFS_DEV_ITEM_KEY) {
1746                                 struct btrfs_dev_item *dev_item;
1747                                 dev_item = btrfs_item_ptr(leaf, slot,
1748                                                   struct btrfs_dev_item);
1749                                 ret = read_one_dev(root, leaf, dev_item);
1750                                 BUG_ON(ret);
1751                         }
1752                 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
1753                         struct btrfs_chunk *chunk;
1754                         chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
1755                         ret = read_one_chunk(root, &found_key, leaf, chunk);
1756                         BUG_ON(ret);
1757                 }
1758                 path->slots[0]++;
1759         }
1760         if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
1761                 key.objectid = 0;
1762                 btrfs_release_path(root, path);
1763                 goto again;
1764         }
1765
1766         ret = 0;
1767 error:
1768         btrfs_free_path(path);
1769         return ret;
1770 }
1771
1772 struct list_head *btrfs_scanned_uuids(void)
1773 {
1774         return &fs_uuids;
1775 }