superblock duplication
[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 struct map_lookup {
39         struct cache_extent ce;
40         u64 type;
41         int io_align;
42         int io_width;
43         int stripe_len;
44         int sector_size;
45         int num_stripes;
46         int sub_stripes;
47         struct btrfs_bio_stripe stripes[];
48 };
49
50 #define map_lookup_size(n) (sizeof(struct map_lookup) + \
51                             (sizeof(struct btrfs_bio_stripe) * (n)))
52
53 static LIST_HEAD(fs_uuids);
54
55 static struct btrfs_device *__find_device(struct list_head *head, u64 devid,
56                                           u8 *uuid)
57 {
58         struct btrfs_device *dev;
59         struct list_head *cur;
60
61         list_for_each(cur, head) {
62                 dev = list_entry(cur, struct btrfs_device, dev_list);
63                 if (dev->devid == devid &&
64                     !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE)) {
65                         return dev;
66                 }
67         }
68         return NULL;
69 }
70
71 static struct btrfs_fs_devices *find_fsid(u8 *fsid)
72 {
73         struct list_head *cur;
74         struct btrfs_fs_devices *fs_devices;
75
76         list_for_each(cur, &fs_uuids) {
77                 fs_devices = list_entry(cur, struct btrfs_fs_devices, list);
78                 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
79                         return fs_devices;
80         }
81         return NULL;
82 }
83
84 static int device_list_add(const char *path,
85                            struct btrfs_super_block *disk_super,
86                            u64 devid, struct btrfs_fs_devices **fs_devices_ret)
87 {
88         struct btrfs_device *device;
89         struct btrfs_fs_devices *fs_devices;
90         u64 found_transid = btrfs_super_generation(disk_super);
91
92         fs_devices = find_fsid(disk_super->fsid);
93         if (!fs_devices) {
94                 fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
95                 if (!fs_devices)
96                         return -ENOMEM;
97                 INIT_LIST_HEAD(&fs_devices->devices);
98                 list_add(&fs_devices->list, &fs_uuids);
99                 memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
100                 fs_devices->latest_devid = devid;
101                 fs_devices->latest_trans = found_transid;
102                 fs_devices->lowest_devid = (u64)-1;
103                 device = NULL;
104         } else {
105                 device = __find_device(&fs_devices->devices, devid,
106                                        disk_super->dev_item.uuid);
107         }
108         if (!device) {
109                 device = kzalloc(sizeof(*device), GFP_NOFS);
110                 if (!device) {
111                         /* we can safely leave the fs_devices entry around */
112                         return -ENOMEM;
113                 }
114                 device->devid = devid;
115                 memcpy(device->uuid, disk_super->dev_item.uuid,
116                        BTRFS_UUID_SIZE);
117                 device->name = kstrdup(path, GFP_NOFS);
118                 if (!device->name) {
119                         kfree(device);
120                         return -ENOMEM;
121                 }
122                 device->label = kstrdup(disk_super->label, GFP_NOFS);
123                 device->total_devs = btrfs_super_num_devices(disk_super);
124                 device->super_bytes_used = btrfs_super_bytes_used(disk_super);
125                 device->total_bytes =
126                         btrfs_stack_device_total_bytes(&disk_super->dev_item);
127                 device->bytes_used =
128                         btrfs_stack_device_bytes_used(&disk_super->dev_item);
129                 list_add(&device->dev_list, &fs_devices->devices);
130                 device->fs_devices = fs_devices;
131         }
132
133         if (found_transid > fs_devices->latest_trans) {
134                 fs_devices->latest_devid = devid;
135                 fs_devices->latest_trans = found_transid;
136         }
137         if (fs_devices->lowest_devid > devid) {
138                 fs_devices->lowest_devid = devid;
139         }
140         *fs_devices_ret = fs_devices;
141         return 0;
142 }
143
144 int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
145 {
146         struct btrfs_fs_devices *seed_devices;
147         struct list_head *cur;
148         struct btrfs_device *device;
149 again:
150         list_for_each(cur, &fs_devices->devices) {
151                 device = list_entry(cur, struct btrfs_device, dev_list);
152                 close(device->fd);
153                 device->fd = -1;
154                 device->writeable = 0;
155         }
156
157         seed_devices = fs_devices->seed;
158         fs_devices->seed = NULL;
159         if (seed_devices) {
160                 fs_devices = seed_devices;
161                 goto again;
162         }
163
164         return 0;
165 }
166
167 int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, int flags)
168 {
169         int fd;
170         struct list_head *head = &fs_devices->devices;
171         struct list_head *cur;
172         struct btrfs_device *device;
173         int ret;
174
175         list_for_each(cur, head) {
176                 device = list_entry(cur, struct btrfs_device, dev_list);
177
178                 fd = open(device->name, flags);
179                 if (fd < 0) {
180                         ret = -errno;
181                         goto fail;
182                 }
183
184                 if (device->devid == fs_devices->latest_devid)
185                         fs_devices->latest_bdev = fd;
186                 if (device->devid == fs_devices->lowest_devid)
187                         fs_devices->lowest_bdev = fd;
188                 device->fd = fd;
189                 if (flags == O_RDWR)
190                         device->writeable = 1;
191         }
192         return 0;
193 fail:
194         btrfs_close_devices(fs_devices);
195         return ret;
196 }
197
198 int btrfs_scan_one_device(int fd, const char *path,
199                           struct btrfs_fs_devices **fs_devices_ret,
200                           u64 *total_devs, u64 super_offset)
201 {
202         struct btrfs_super_block *disk_super;
203         char *buf;
204         int ret;
205         u64 devid;
206         char uuidbuf[37];
207
208         buf = malloc(4096);
209         if (!buf) {
210                 ret = -ENOMEM;
211                 goto error;
212         }
213         ret = pread(fd, buf, 4096, super_offset);
214         if (ret != 4096) {
215                 ret = -EIO;
216                 goto error;
217         }
218         disk_super = (struct btrfs_super_block *)buf;
219         if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
220             sizeof(disk_super->magic))) {
221                 ret = -ENOENT;
222                 goto error_brelse;
223         }
224         devid = le64_to_cpu(disk_super->dev_item.devid);
225         if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_METADUMP)
226                 *total_devs = 1;
227         else
228                 *total_devs = btrfs_super_num_devices(disk_super);
229         uuid_unparse(disk_super->fsid, uuidbuf);
230
231         ret = device_list_add(path, disk_super, devid, fs_devices_ret);
232
233 error_brelse:
234         free(buf);
235 error:
236         return ret;
237 }
238
239 /*
240  * this uses a pretty simple search, the expectation is that it is
241  * called very infrequently and that a given device has a small number
242  * of extents
243  */
244 static int find_free_dev_extent(struct btrfs_trans_handle *trans,
245                                 struct btrfs_device *device,
246                                 struct btrfs_path *path,
247                                 u64 num_bytes, u64 *start)
248 {
249         struct btrfs_key key;
250         struct btrfs_root *root = device->dev_root;
251         struct btrfs_dev_extent *dev_extent = NULL;
252         u64 hole_size = 0;
253         u64 last_byte = 0;
254         u64 search_start = 0;
255         u64 search_end = device->total_bytes;
256         int ret;
257         int slot = 0;
258         int start_found;
259         struct extent_buffer *l;
260
261         start_found = 0;
262         path->reada = 2;
263
264         /* FIXME use last free of some kind */
265
266         /* we don't want to overwrite the superblock on the drive,
267          * so we make sure to start at an offset of at least 1MB
268          */
269         search_start = max((u64)1024 * 1024, search_start);
270
271         if (root->fs_info->alloc_start + num_bytes <= device->total_bytes)
272                 search_start = max(root->fs_info->alloc_start, search_start);
273
274         key.objectid = device->devid;
275         key.offset = search_start;
276         key.type = BTRFS_DEV_EXTENT_KEY;
277         ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
278         if (ret < 0)
279                 goto error;
280         ret = btrfs_previous_item(root, path, 0, key.type);
281         if (ret < 0)
282                 goto error;
283         l = path->nodes[0];
284         btrfs_item_key_to_cpu(l, &key, path->slots[0]);
285         while (1) {
286                 l = path->nodes[0];
287                 slot = path->slots[0];
288                 if (slot >= btrfs_header_nritems(l)) {
289                         ret = btrfs_next_leaf(root, path);
290                         if (ret == 0)
291                                 continue;
292                         if (ret < 0)
293                                 goto error;
294 no_more_items:
295                         if (!start_found) {
296                                 if (search_start >= search_end) {
297                                         ret = -ENOSPC;
298                                         goto error;
299                                 }
300                                 *start = search_start;
301                                 start_found = 1;
302                                 goto check_pending;
303                         }
304                         *start = last_byte > search_start ?
305                                 last_byte : search_start;
306                         if (search_end <= *start) {
307                                 ret = -ENOSPC;
308                                 goto error;
309                         }
310                         goto check_pending;
311                 }
312                 btrfs_item_key_to_cpu(l, &key, slot);
313
314                 if (key.objectid < device->devid)
315                         goto next;
316
317                 if (key.objectid > device->devid)
318                         goto no_more_items;
319
320                 if (key.offset >= search_start && key.offset > last_byte &&
321                     start_found) {
322                         if (last_byte < search_start)
323                                 last_byte = search_start;
324                         hole_size = key.offset - last_byte;
325                         if (key.offset > last_byte &&
326                             hole_size >= num_bytes) {
327                                 *start = last_byte;
328                                 goto check_pending;
329                         }
330                 }
331                 if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY) {
332                         goto next;
333                 }
334
335                 start_found = 1;
336                 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
337                 last_byte = key.offset + btrfs_dev_extent_length(l, dev_extent);
338 next:
339                 path->slots[0]++;
340                 cond_resched();
341         }
342 check_pending:
343         /* we have to make sure we didn't find an extent that has already
344          * been allocated by the map tree or the original allocation
345          */
346         btrfs_release_path(root, path);
347         BUG_ON(*start < search_start);
348
349         if (*start + num_bytes > search_end) {
350                 ret = -ENOSPC;
351                 goto error;
352         }
353         /* check for pending inserts here */
354         return 0;
355
356 error:
357         btrfs_release_path(root, path);
358         return ret;
359 }
360
361 int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
362                            struct btrfs_device *device,
363                            u64 chunk_tree, u64 chunk_objectid,
364                            u64 chunk_offset,
365                            u64 num_bytes, u64 *start)
366 {
367         int ret;
368         struct btrfs_path *path;
369         struct btrfs_root *root = device->dev_root;
370         struct btrfs_dev_extent *extent;
371         struct extent_buffer *leaf;
372         struct btrfs_key key;
373
374         path = btrfs_alloc_path();
375         if (!path)
376                 return -ENOMEM;
377
378         ret = find_free_dev_extent(trans, device, path, num_bytes, start);
379         if (ret) {
380                 goto err;
381         }
382
383         key.objectid = device->devid;
384         key.offset = *start;
385         key.type = BTRFS_DEV_EXTENT_KEY;
386         ret = btrfs_insert_empty_item(trans, root, path, &key,
387                                       sizeof(*extent));
388         BUG_ON(ret);
389
390         leaf = path->nodes[0];
391         extent = btrfs_item_ptr(leaf, path->slots[0],
392                                 struct btrfs_dev_extent);
393         btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
394         btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
395         btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
396
397         write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
398                     (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
399                     BTRFS_UUID_SIZE);
400
401         btrfs_set_dev_extent_length(leaf, extent, num_bytes);
402         btrfs_mark_buffer_dirty(leaf);
403 err:
404         btrfs_free_path(path);
405         return ret;
406 }
407
408 static int find_next_chunk(struct btrfs_root *root, u64 objectid, u64 *offset)
409 {
410         struct btrfs_path *path;
411         int ret;
412         struct btrfs_key key;
413         struct btrfs_chunk *chunk;
414         struct btrfs_key found_key;
415
416         path = btrfs_alloc_path();
417         BUG_ON(!path);
418
419         key.objectid = objectid;
420         key.offset = (u64)-1;
421         key.type = BTRFS_CHUNK_ITEM_KEY;
422
423         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
424         if (ret < 0)
425                 goto error;
426
427         BUG_ON(ret == 0);
428
429         ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
430         if (ret) {
431                 *offset = 0;
432         } else {
433                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
434                                       path->slots[0]);
435                 if (found_key.objectid != objectid)
436                         *offset = 0;
437                 else {
438                         chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
439                                                struct btrfs_chunk);
440                         *offset = found_key.offset +
441                                 btrfs_chunk_length(path->nodes[0], chunk);
442                 }
443         }
444         ret = 0;
445 error:
446         btrfs_free_path(path);
447         return ret;
448 }
449
450 static int find_next_devid(struct btrfs_root *root, struct btrfs_path *path,
451                            u64 *objectid)
452 {
453         int ret;
454         struct btrfs_key key;
455         struct btrfs_key found_key;
456
457         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
458         key.type = BTRFS_DEV_ITEM_KEY;
459         key.offset = (u64)-1;
460
461         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
462         if (ret < 0)
463                 goto error;
464
465         BUG_ON(ret == 0);
466
467         ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
468                                   BTRFS_DEV_ITEM_KEY);
469         if (ret) {
470                 *objectid = 1;
471         } else {
472                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
473                                       path->slots[0]);
474                 *objectid = found_key.offset + 1;
475         }
476         ret = 0;
477 error:
478         btrfs_release_path(root, path);
479         return ret;
480 }
481
482 /*
483  * the device information is stored in the chunk root
484  * the btrfs_device struct should be fully filled in
485  */
486 int btrfs_add_device(struct btrfs_trans_handle *trans,
487                      struct btrfs_root *root,
488                      struct btrfs_device *device)
489 {
490         int ret;
491         struct btrfs_path *path;
492         struct btrfs_dev_item *dev_item;
493         struct extent_buffer *leaf;
494         struct btrfs_key key;
495         unsigned long ptr;
496         u64 free_devid = 0;
497
498         root = root->fs_info->chunk_root;
499
500         path = btrfs_alloc_path();
501         if (!path)
502                 return -ENOMEM;
503
504         ret = find_next_devid(root, path, &free_devid);
505         if (ret)
506                 goto out;
507
508         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
509         key.type = BTRFS_DEV_ITEM_KEY;
510         key.offset = free_devid;
511
512         ret = btrfs_insert_empty_item(trans, root, path, &key,
513                                       sizeof(*dev_item));
514         if (ret)
515                 goto out;
516
517         leaf = path->nodes[0];
518         dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
519
520         device->devid = free_devid;
521         btrfs_set_device_id(leaf, dev_item, device->devid);
522         btrfs_set_device_generation(leaf, dev_item, 0);
523         btrfs_set_device_type(leaf, dev_item, device->type);
524         btrfs_set_device_io_align(leaf, dev_item, device->io_align);
525         btrfs_set_device_io_width(leaf, dev_item, device->io_width);
526         btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
527         btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
528         btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
529         btrfs_set_device_group(leaf, dev_item, 0);
530         btrfs_set_device_seek_speed(leaf, dev_item, 0);
531         btrfs_set_device_bandwidth(leaf, dev_item, 0);
532
533         ptr = (unsigned long)btrfs_device_uuid(dev_item);
534         write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
535         ptr = (unsigned long)btrfs_device_fsid(dev_item);
536         write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
537         btrfs_mark_buffer_dirty(leaf);
538         ret = 0;
539
540 out:
541         btrfs_free_path(path);
542         return ret;
543 }
544
545 int btrfs_update_device(struct btrfs_trans_handle *trans,
546                         struct btrfs_device *device)
547 {
548         int ret;
549         struct btrfs_path *path;
550         struct btrfs_root *root;
551         struct btrfs_dev_item *dev_item;
552         struct extent_buffer *leaf;
553         struct btrfs_key key;
554
555         root = device->dev_root->fs_info->chunk_root;
556
557         path = btrfs_alloc_path();
558         if (!path)
559                 return -ENOMEM;
560
561         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
562         key.type = BTRFS_DEV_ITEM_KEY;
563         key.offset = device->devid;
564
565         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
566         if (ret < 0)
567                 goto out;
568
569         if (ret > 0) {
570                 ret = -ENOENT;
571                 goto out;
572         }
573
574         leaf = path->nodes[0];
575         dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
576
577         btrfs_set_device_id(leaf, dev_item, device->devid);
578         btrfs_set_device_type(leaf, dev_item, device->type);
579         btrfs_set_device_io_align(leaf, dev_item, device->io_align);
580         btrfs_set_device_io_width(leaf, dev_item, device->io_width);
581         btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
582         btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
583         btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
584         btrfs_mark_buffer_dirty(leaf);
585
586 out:
587         btrfs_free_path(path);
588         return ret;
589 }
590
591 int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
592                            struct btrfs_root *root,
593                            struct btrfs_key *key,
594                            struct btrfs_chunk *chunk, int item_size)
595 {
596         struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
597         struct btrfs_disk_key disk_key;
598         u32 array_size;
599         u8 *ptr;
600
601         array_size = btrfs_super_sys_array_size(super_copy);
602         if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
603                 return -EFBIG;
604
605         ptr = super_copy->sys_chunk_array + array_size;
606         btrfs_cpu_key_to_disk(&disk_key, key);
607         memcpy(ptr, &disk_key, sizeof(disk_key));
608         ptr += sizeof(disk_key);
609         memcpy(ptr, chunk, item_size);
610         item_size += sizeof(disk_key);
611         btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
612         return 0;
613 }
614
615 static u64 div_factor(u64 num, int factor)
616 {
617         if (factor == 10)
618                 return num;
619         num *= factor;
620         return num / 10;
621 }
622
623 static u64 chunk_bytes_by_type(u64 type, u64 calc_size, int num_stripes,
624                                int sub_stripes)
625 {
626         if (type & (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP))
627                 return calc_size;
628         else if (type & BTRFS_BLOCK_GROUP_RAID10)
629                 return calc_size * (num_stripes / sub_stripes);
630         else
631                 return calc_size * num_stripes;
632 }
633
634
635 int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
636                       struct btrfs_root *extent_root, u64 *start,
637                       u64 *num_bytes, u64 type)
638 {
639         u64 dev_offset;
640         struct btrfs_fs_info *info = extent_root->fs_info;
641         struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
642         struct btrfs_stripe *stripes;
643         struct btrfs_device *device = NULL;
644         struct btrfs_chunk *chunk;
645         struct list_head private_devs;
646         struct list_head *dev_list = &extent_root->fs_info->fs_devices->devices;
647         struct list_head *cur;
648         struct map_lookup *map;
649         int min_stripe_size = 1 * 1024 * 1024;
650         u64 physical;
651         u64 calc_size = 8 * 1024 * 1024;
652         u64 min_free;
653         u64 max_chunk_size = 4 * calc_size;
654         u64 avail;
655         u64 max_avail = 0;
656         u64 percent_max;
657         int num_stripes = 1;
658         int min_stripes = 1;
659         int sub_stripes = 0;
660         int looped = 0;
661         int ret;
662         int index;
663         int stripe_len = 64 * 1024;
664         struct btrfs_key key;
665
666         if (list_empty(dev_list)) {
667                 return -ENOSPC;
668         }
669
670         if (type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
671                     BTRFS_BLOCK_GROUP_RAID10 |
672                     BTRFS_BLOCK_GROUP_DUP)) {
673                 if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
674                         calc_size = 8 * 1024 * 1024;
675                         max_chunk_size = calc_size * 2;
676                         min_stripe_size = 1 * 1024 * 1024;
677                 } else if (type & BTRFS_BLOCK_GROUP_DATA) {
678                         calc_size = 1024 * 1024 * 1024;
679                         max_chunk_size = 10 * calc_size;
680                         min_stripe_size = 64 * 1024 * 1024;
681                 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
682                         calc_size = 1024 * 1024 * 1024;
683                         max_chunk_size = 4 * calc_size;
684                         min_stripe_size = 32 * 1024 * 1024;
685                 }
686         }
687         if (type & BTRFS_BLOCK_GROUP_RAID1) {
688                 num_stripes = min_t(u64, 2,
689                                   btrfs_super_num_devices(&info->super_copy));
690                 if (num_stripes < 2)
691                         return -ENOSPC;
692                 min_stripes = 2;
693         }
694         if (type & BTRFS_BLOCK_GROUP_DUP) {
695                 num_stripes = 2;
696                 min_stripes = 2;
697         }
698         if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
699                 num_stripes = btrfs_super_num_devices(&info->super_copy);
700                 min_stripes = 2;
701         }
702         if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
703                 num_stripes = btrfs_super_num_devices(&info->super_copy);
704                 if (num_stripes < 4)
705                         return -ENOSPC;
706                 num_stripes &= ~(u32)1;
707                 sub_stripes = 2;
708                 min_stripes = 4;
709         }
710
711         /* we don't want a chunk larger than 10% of the FS */
712         percent_max = div_factor(btrfs_super_total_bytes(&info->super_copy), 1);
713         max_chunk_size = min(percent_max, max_chunk_size);
714
715 again:
716         if (chunk_bytes_by_type(type, calc_size, num_stripes, sub_stripes) >
717             max_chunk_size) {
718                 calc_size = max_chunk_size;
719                 calc_size /= num_stripes;
720                 calc_size /= stripe_len;
721                 calc_size *= stripe_len;
722         }
723         /* we don't want tiny stripes */
724         calc_size = max_t(u64, calc_size, min_stripe_size);
725
726         calc_size /= stripe_len;
727         calc_size *= stripe_len;
728         INIT_LIST_HEAD(&private_devs);
729         cur = dev_list->next;
730         index = 0;
731
732         if (type & BTRFS_BLOCK_GROUP_DUP)
733                 min_free = calc_size * 2;
734         else
735                 min_free = calc_size;
736
737         /* build a private list of devices we will allocate from */
738         while(index < num_stripes) {
739                 device = list_entry(cur, struct btrfs_device, dev_list);
740                 avail = device->total_bytes - device->bytes_used;
741                 cur = cur->next;
742                 if (avail >= min_free) {
743                         list_move_tail(&device->dev_list, &private_devs);
744                         index++;
745                         if (type & BTRFS_BLOCK_GROUP_DUP)
746                                 index++;
747                 } else if (avail > max_avail)
748                         max_avail = avail;
749                 if (cur == dev_list)
750                         break;
751         }
752         if (index < num_stripes) {
753                 list_splice(&private_devs, dev_list);
754                 if (index >= min_stripes) {
755                         num_stripes = index;
756                         if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
757                                 num_stripes /= sub_stripes;
758                                 num_stripes *= sub_stripes;
759                         }
760                         looped = 1;
761                         goto again;
762                 }
763                 if (!looped && max_avail > 0) {
764                         looped = 1;
765                         calc_size = max_avail;
766                         goto again;
767                 }
768                 return -ENOSPC;
769         }
770         key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
771         key.type = BTRFS_CHUNK_ITEM_KEY;
772         ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
773                               &key.offset);
774         if (ret)
775                 return ret;
776
777         chunk = kmalloc(btrfs_chunk_item_size(num_stripes), GFP_NOFS);
778         if (!chunk)
779                 return -ENOMEM;
780
781         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
782         if (!map) {
783                 kfree(chunk);
784                 return -ENOMEM;
785         }
786
787         stripes = &chunk->stripe;
788         *num_bytes = chunk_bytes_by_type(type, calc_size,
789                                          num_stripes, sub_stripes);
790         index = 0;
791         while(index < num_stripes) {
792                 struct btrfs_stripe *stripe;
793                 BUG_ON(list_empty(&private_devs));
794                 cur = private_devs.next;
795                 device = list_entry(cur, struct btrfs_device, dev_list);
796
797                 /* loop over this device again if we're doing a dup group */
798                 if (!(type & BTRFS_BLOCK_GROUP_DUP) ||
799                     (index == num_stripes - 1))
800                         list_move_tail(&device->dev_list, dev_list);
801
802                 ret = btrfs_alloc_dev_extent(trans, device,
803                              info->chunk_root->root_key.objectid,
804                              BTRFS_FIRST_CHUNK_TREE_OBJECTID, key.offset,
805                              calc_size, &dev_offset);
806                 BUG_ON(ret);
807
808                 device->bytes_used += calc_size;
809                 ret = btrfs_update_device(trans, device);
810                 BUG_ON(ret);
811
812                 map->stripes[index].dev = device;
813                 map->stripes[index].physical = dev_offset;
814                 stripe = stripes + index;
815                 btrfs_set_stack_stripe_devid(stripe, device->devid);
816                 btrfs_set_stack_stripe_offset(stripe, dev_offset);
817                 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
818                 physical = dev_offset;
819                 index++;
820         }
821         BUG_ON(!list_empty(&private_devs));
822
823         /* key was set above */
824         btrfs_set_stack_chunk_length(chunk, *num_bytes);
825         btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
826         btrfs_set_stack_chunk_stripe_len(chunk, stripe_len);
827         btrfs_set_stack_chunk_type(chunk, type);
828         btrfs_set_stack_chunk_num_stripes(chunk, num_stripes);
829         btrfs_set_stack_chunk_io_align(chunk, stripe_len);
830         btrfs_set_stack_chunk_io_width(chunk, stripe_len);
831         btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
832         btrfs_set_stack_chunk_sub_stripes(chunk, sub_stripes);
833         map->sector_size = extent_root->sectorsize;
834         map->stripe_len = stripe_len;
835         map->io_align = stripe_len;
836         map->io_width = stripe_len;
837         map->type = type;
838         map->num_stripes = num_stripes;
839         map->sub_stripes = sub_stripes;
840
841         ret = btrfs_insert_item(trans, chunk_root, &key, chunk,
842                                 btrfs_chunk_item_size(num_stripes));
843         BUG_ON(ret);
844         *start = key.offset;;
845
846         map->ce.start = key.offset;
847         map->ce.size = *num_bytes;
848
849         ret = insert_existing_cache_extent(
850                            &extent_root->fs_info->mapping_tree.cache_tree,
851                            &map->ce);
852         BUG_ON(ret);
853
854         if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
855                 ret = btrfs_add_system_chunk(trans, chunk_root, &key,
856                                     chunk, btrfs_chunk_item_size(num_stripes));
857                 BUG_ON(ret);
858         }
859
860         kfree(chunk);
861         return ret;
862 }
863
864 void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
865 {
866         cache_tree_init(&tree->cache_tree);
867 }
868
869 int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
870 {
871         struct cache_extent *ce;
872         struct map_lookup *map;
873         int ret;
874         u64 offset;
875
876         ce = find_first_cache_extent(&map_tree->cache_tree, logical);
877         BUG_ON(!ce);
878         BUG_ON(ce->start > logical || ce->start + ce->size < logical);
879         map = container_of(ce, struct map_lookup, ce);
880
881         offset = logical - ce->start;
882         if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
883                 ret = map->num_stripes;
884         else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
885                 ret = map->sub_stripes;
886         else
887                 ret = 1;
888         return ret;
889 }
890
891 int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
892                      u64 chunk_start, u64 physical, u64 devid,
893                      u64 **logical, int *naddrs, int *stripe_len)
894 {
895         struct cache_extent *ce;
896         struct map_lookup *map;
897         u64 *buf;
898         u64 bytenr;
899         u64 length;
900         u64 stripe_nr;
901         int i, j, nr = 0;
902
903         ce = find_first_cache_extent(&map_tree->cache_tree, chunk_start);
904         BUG_ON(!ce || ce->start != chunk_start);
905         map = container_of(ce, struct map_lookup, ce);
906
907                 length = ce->size;
908         if (map->type & BTRFS_BLOCK_GROUP_RAID10)
909                 length = ce->size / (map->num_stripes / map->sub_stripes);
910         else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
911                 length = ce->size / map->num_stripes;
912
913         buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
914
915         for (i = 0; i < map->num_stripes; i++) {
916                 if (devid && map->stripes[i].dev->devid != devid)
917                         continue;
918                 if (map->stripes[i].physical > physical ||
919                     map->stripes[i].physical + length <= physical)
920                         continue;
921
922                 stripe_nr = (physical - map->stripes[i].physical) /
923                             map->stripe_len;
924
925                 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
926                         stripe_nr = (stripe_nr * map->num_stripes + i) /
927                                     map->sub_stripes;
928                 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
929                         stripe_nr = stripe_nr * map->num_stripes + i;
930                 }
931                 bytenr = chunk_start + stripe_nr * map->stripe_len;
932                 for (j = 0; j < nr; j++) {
933                         if (buf[j] == bytenr)
934                                 break;
935                 }
936                 if (j == nr)
937                         buf[nr++] = bytenr;
938         }
939
940         *logical = buf;
941         *naddrs = nr;
942         *stripe_len = map->stripe_len;
943
944         return 0;
945 }
946
947 int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
948                     u64 logical, u64 *length,
949                     struct btrfs_multi_bio **multi_ret, int mirror_num)
950 {
951         struct cache_extent *ce;
952         struct map_lookup *map;
953         u64 offset;
954         u64 stripe_offset;
955         u64 stripe_nr;
956         int stripes_allocated = 8;
957         int stripes_required = 1;
958         int stripe_index;
959         int i;
960         struct btrfs_multi_bio *multi = NULL;
961
962         if (multi_ret && rw == READ) {
963                 stripes_allocated = 1;
964         }
965 again:
966         if (multi_ret) {
967                 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
968                                 GFP_NOFS);
969                 if (!multi)
970                         return -ENOMEM;
971         }
972
973         ce = find_first_cache_extent(&map_tree->cache_tree, logical);
974         BUG_ON(!ce);
975         BUG_ON(ce->start > logical || ce->start + ce->size < logical);
976         map = container_of(ce, struct map_lookup, ce);
977         offset = logical - ce->start;
978
979         if (rw == WRITE) {
980                 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
981                                  BTRFS_BLOCK_GROUP_DUP)) {
982                         stripes_required = map->num_stripes;
983                 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
984                         stripes_required = map->sub_stripes;
985                 }
986         }
987         /* if our multi bio struct is too small, back off and try again */
988         if (multi_ret && rw == WRITE &&
989             stripes_allocated < stripes_required) {
990                 stripes_allocated = map->num_stripes;
991                 kfree(multi);
992                 goto again;
993         }
994         stripe_nr = offset;
995         /*
996          * stripe_nr counts the total number of stripes we have to stride
997          * to get to this block
998          */
999         stripe_nr = stripe_nr / map->stripe_len;
1000
1001         stripe_offset = stripe_nr * map->stripe_len;
1002         BUG_ON(offset < stripe_offset);
1003
1004         /* stripe_offset is the offset of this block in its stripe*/
1005         stripe_offset = offset - stripe_offset;
1006
1007         if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
1008                          BTRFS_BLOCK_GROUP_RAID10 |
1009                          BTRFS_BLOCK_GROUP_DUP)) {
1010                 /* we limit the length of each bio to what fits in a stripe */
1011                 *length = min_t(u64, ce->size - offset,
1012                               map->stripe_len - stripe_offset);
1013         } else {
1014                 *length = ce->size - offset;
1015         }
1016
1017         if (!multi_ret)
1018                 goto out;
1019
1020         multi->num_stripes = 1;
1021         stripe_index = 0;
1022         if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
1023                 if (rw == WRITE)
1024                         multi->num_stripes = map->num_stripes;
1025                 else if (mirror_num)
1026                         stripe_index = mirror_num - 1;
1027                 else
1028                         stripe_index = stripe_nr % map->num_stripes;
1029         } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
1030                 int factor = map->num_stripes / map->sub_stripes;
1031
1032                 stripe_index = stripe_nr % factor;
1033                 stripe_index *= map->sub_stripes;
1034
1035                 if (rw == WRITE)
1036                         multi->num_stripes = map->sub_stripes;
1037                 else if (mirror_num)
1038                         stripe_index += mirror_num - 1;
1039                 else
1040                         stripe_index = stripe_nr % map->sub_stripes;
1041
1042                 stripe_nr = stripe_nr / factor;
1043         } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
1044                 if (rw == WRITE)
1045                         multi->num_stripes = map->num_stripes;
1046                 else if (mirror_num)
1047                         stripe_index = mirror_num - 1;
1048         } else {
1049                 /*
1050                  * after this do_div call, stripe_nr is the number of stripes
1051                  * on this device we have to walk to find the data, and
1052                  * stripe_index is the number of our device in the stripe array
1053                  */
1054                 stripe_index = stripe_nr % map->num_stripes;
1055                 stripe_nr = stripe_nr / map->num_stripes;
1056         }
1057         BUG_ON(stripe_index >= map->num_stripes);
1058
1059         for (i = 0; i < multi->num_stripes; i++) {
1060                 multi->stripes[i].physical =
1061                         map->stripes[stripe_index].physical + stripe_offset +
1062                         stripe_nr * map->stripe_len;
1063                 multi->stripes[i].dev = map->stripes[stripe_index].dev;
1064                 stripe_index++;
1065         }
1066         *multi_ret = multi;
1067 out:
1068         return 0;
1069 }
1070
1071 struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
1072                                        u8 *uuid, u8 *fsid)
1073 {
1074         struct btrfs_device *device;
1075         struct btrfs_fs_devices *cur_devices;
1076
1077         cur_devices = root->fs_info->fs_devices;
1078         while (cur_devices) {
1079                 if (!fsid ||
1080                     !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
1081                         device = __find_device(&cur_devices->devices,
1082                                                devid, uuid);
1083                         if (device)
1084                                 return device;
1085                 }
1086                 cur_devices = cur_devices->seed;
1087         }
1088         return NULL;
1089 }
1090
1091 int btrfs_bootstrap_super_map(struct btrfs_mapping_tree *map_tree,
1092                               struct btrfs_fs_devices *fs_devices)
1093 {
1094         struct map_lookup *map;
1095         u64 logical = BTRFS_SUPER_INFO_OFFSET;
1096         u64 length = BTRFS_SUPER_INFO_SIZE;
1097         int num_stripes = 0;
1098         int sub_stripes = 0;
1099         int ret;
1100         int i;
1101         struct list_head *cur;
1102
1103         list_for_each(cur, &fs_devices->devices) {
1104                 num_stripes++;
1105         }
1106         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
1107         if (!map)
1108                 return -ENOMEM;
1109
1110         map->ce.start = logical;
1111         map->ce.size = length;
1112         map->num_stripes = num_stripes;
1113         map->sub_stripes = sub_stripes;
1114         map->io_width = length;
1115         map->io_align = length;
1116         map->sector_size = length;
1117         map->stripe_len = length;
1118         map->type = BTRFS_BLOCK_GROUP_RAID1;
1119
1120         i = 0;
1121         list_for_each(cur, &fs_devices->devices) {
1122                 struct btrfs_device *device = list_entry(cur,
1123                                                          struct btrfs_device,
1124                                                          dev_list);
1125                 map->stripes[i].physical = logical;
1126                 map->stripes[i].dev = device;
1127                 i++;
1128         }
1129         ret = insert_existing_cache_extent(&map_tree->cache_tree, &map->ce);
1130         if (ret == -EEXIST) {
1131                 struct cache_extent *old;
1132                 struct map_lookup *old_map;
1133                 old = find_cache_extent(&map_tree->cache_tree, logical, length);
1134                 old_map = container_of(old, struct map_lookup, ce);
1135                 remove_cache_extent(&map_tree->cache_tree, old);
1136                 kfree(old_map);
1137                 ret = insert_existing_cache_extent(&map_tree->cache_tree,
1138                                                    &map->ce);
1139         }
1140         BUG_ON(ret);
1141         return 0;
1142 }
1143
1144 int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
1145 {
1146         struct cache_extent *ce;
1147         struct map_lookup *map;
1148         struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
1149         int readonly = 0;
1150         int i;
1151
1152         ce = find_first_cache_extent(&map_tree->cache_tree, chunk_offset);
1153         BUG_ON(!ce);
1154
1155         map = container_of(ce, struct map_lookup, ce);
1156         for (i = 0; i < map->num_stripes; i++) {
1157                 if (!map->stripes[i].dev->writeable) {
1158                         readonly = 1;
1159                         break;
1160                 }
1161         }
1162
1163         return readonly;
1164 }
1165
1166 static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
1167                           struct extent_buffer *leaf,
1168                           struct btrfs_chunk *chunk)
1169 {
1170         struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
1171         struct map_lookup *map;
1172         struct cache_extent *ce;
1173         u64 logical;
1174         u64 length;
1175         u64 devid;
1176         u8 uuid[BTRFS_UUID_SIZE];
1177         int num_stripes;
1178         int ret;
1179         int i;
1180
1181         logical = key->offset;
1182         length = btrfs_chunk_length(leaf, chunk);
1183
1184         ce = find_first_cache_extent(&map_tree->cache_tree, logical);
1185
1186         /* already mapped? */
1187         if (ce && ce->start <= logical && ce->start + ce->size > logical) {
1188                 return 0;
1189         }
1190
1191         num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
1192         map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
1193         if (!map)
1194                 return -ENOMEM;
1195
1196         map->ce.start = logical;
1197         map->ce.size = length;
1198         map->num_stripes = num_stripes;
1199         map->io_width = btrfs_chunk_io_width(leaf, chunk);
1200         map->io_align = btrfs_chunk_io_align(leaf, chunk);
1201         map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
1202         map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
1203         map->type = btrfs_chunk_type(leaf, chunk);
1204         map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
1205
1206         for (i = 0; i < num_stripes; i++) {
1207                 map->stripes[i].physical =
1208                         btrfs_stripe_offset_nr(leaf, chunk, i);
1209                 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
1210                 read_extent_buffer(leaf, uuid, (unsigned long)
1211                                    btrfs_stripe_dev_uuid_nr(chunk, i),
1212                                    BTRFS_UUID_SIZE);
1213                 map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
1214                                                         NULL);
1215                 if (!map->stripes[i].dev) {
1216                         kfree(map);
1217                         return -EIO;
1218                 }
1219
1220         }
1221         ret = insert_existing_cache_extent(&map_tree->cache_tree, &map->ce);
1222         BUG_ON(ret);
1223
1224         return 0;
1225 }
1226
1227 static int fill_device_from_item(struct extent_buffer *leaf,
1228                                  struct btrfs_dev_item *dev_item,
1229                                  struct btrfs_device *device)
1230 {
1231         unsigned long ptr;
1232
1233         device->devid = btrfs_device_id(leaf, dev_item);
1234         device->total_bytes = btrfs_device_total_bytes(leaf, dev_item);
1235         device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
1236         device->type = btrfs_device_type(leaf, dev_item);
1237         device->io_align = btrfs_device_io_align(leaf, dev_item);
1238         device->io_width = btrfs_device_io_width(leaf, dev_item);
1239         device->sector_size = btrfs_device_sector_size(leaf, dev_item);
1240
1241         ptr = (unsigned long)btrfs_device_uuid(dev_item);
1242         read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
1243
1244         return 0;
1245 }
1246
1247 static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
1248 {
1249         struct btrfs_fs_devices *fs_devices;
1250         int ret;
1251
1252         fs_devices = root->fs_info->fs_devices->seed;
1253         while (fs_devices) {
1254                 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
1255                         ret = 0;
1256                         goto out;
1257                 }
1258                 fs_devices = fs_devices->seed;
1259         }
1260
1261         fs_devices = find_fsid(fsid);
1262         if (!fs_devices) {
1263                 ret = -ENOENT;
1264                 goto out;
1265         }
1266
1267         ret = btrfs_open_devices(fs_devices, O_RDONLY);
1268         if (ret)
1269                 goto out;
1270
1271         fs_devices->seed = root->fs_info->fs_devices->seed;
1272         root->fs_info->fs_devices->seed = fs_devices;
1273 out:
1274         return ret;
1275 }
1276
1277 static int read_one_dev(struct btrfs_root *root,
1278                         struct extent_buffer *leaf,
1279                         struct btrfs_dev_item *dev_item)
1280 {
1281         struct btrfs_device *device;
1282         u64 devid;
1283         int ret = 0;
1284         u8 fs_uuid[BTRFS_UUID_SIZE];
1285         u8 dev_uuid[BTRFS_UUID_SIZE];
1286
1287         devid = btrfs_device_id(leaf, dev_item);
1288         read_extent_buffer(leaf, dev_uuid,
1289                            (unsigned long)btrfs_device_uuid(dev_item),
1290                            BTRFS_UUID_SIZE);
1291         read_extent_buffer(leaf, fs_uuid,
1292                            (unsigned long)btrfs_device_fsid(dev_item),
1293                            BTRFS_UUID_SIZE);
1294
1295         if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
1296                 ret = open_seed_devices(root, fs_uuid);
1297                 if (ret)
1298                         return ret;
1299         }
1300
1301         device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
1302         if (!device) {
1303                 printk("warning devid %llu not found already\n",
1304                         (unsigned long long)devid);
1305                 device = kmalloc(sizeof(*device), GFP_NOFS);
1306                 if (!device)
1307                         return -ENOMEM;
1308                 device->total_ios = 0;
1309                 list_add(&device->dev_list,
1310                          &root->fs_info->fs_devices->devices);
1311         }
1312
1313         fill_device_from_item(leaf, dev_item, device);
1314         device->dev_root = root->fs_info->dev_root;
1315         return ret;
1316 }
1317
1318 int btrfs_read_super_device(struct btrfs_root *root, struct extent_buffer *buf)
1319 {
1320         struct btrfs_dev_item *dev_item;
1321
1322         dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
1323                                                      dev_item);
1324         return read_one_dev(root, buf, dev_item);
1325 }
1326
1327 int btrfs_read_sys_array(struct btrfs_root *root)
1328 {
1329         struct btrfs_super_block *super_copy = &root->fs_info->super_copy;
1330         struct extent_buffer *sb = root->fs_info->sb_buffer;
1331         struct btrfs_disk_key *disk_key;
1332         struct btrfs_chunk *chunk;
1333         struct btrfs_key key;
1334         u32 num_stripes;
1335         u32 array_size;
1336         u32 len = 0;
1337         u8 *ptr;
1338         unsigned long sb_ptr;
1339         u32 cur;
1340         int ret;
1341
1342         array_size = btrfs_super_sys_array_size(super_copy);
1343
1344         /*
1345          * we do this loop twice, once for the device items and
1346          * once for all of the chunks.  This way there are device
1347          * structs filled in for every chunk
1348          */
1349         ptr = super_copy->sys_chunk_array;
1350         sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
1351         cur = 0;
1352
1353         while (cur < array_size) {
1354                 disk_key = (struct btrfs_disk_key *)ptr;
1355                 btrfs_disk_key_to_cpu(&key, disk_key);
1356
1357                 len = sizeof(*disk_key);
1358                 ptr += len;
1359                 sb_ptr += len;
1360                 cur += len;
1361
1362                 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1363                         chunk = (struct btrfs_chunk *)sb_ptr;
1364                         ret = read_one_chunk(root, &key, sb, chunk);
1365                         BUG_ON(ret);
1366                         num_stripes = btrfs_chunk_num_stripes(sb, chunk);
1367                         len = btrfs_chunk_item_size(num_stripes);
1368                 } else {
1369                         BUG();
1370                 }
1371                 ptr += len;
1372                 sb_ptr += len;
1373                 cur += len;
1374         }
1375         return 0;
1376 }
1377
1378 int btrfs_read_chunk_tree(struct btrfs_root *root)
1379 {
1380         struct btrfs_path *path;
1381         struct extent_buffer *leaf;
1382         struct btrfs_key key;
1383         struct btrfs_key found_key;
1384         int ret;
1385         int slot;
1386
1387         root = root->fs_info->chunk_root;
1388
1389         path = btrfs_alloc_path();
1390         if (!path)
1391                 return -ENOMEM;
1392
1393         /* first we search for all of the device items, and then we
1394          * read in all of the chunk items.  This way we can create chunk
1395          * mappings that reference all of the devices that are afound
1396          */
1397         key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1398         key.offset = 0;
1399         key.type = 0;
1400 again:
1401         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1402         while(1) {
1403                 leaf = path->nodes[0];
1404                 slot = path->slots[0];
1405                 if (slot >= btrfs_header_nritems(leaf)) {
1406                         ret = btrfs_next_leaf(root, path);
1407                         if (ret == 0)
1408                                 continue;
1409                         if (ret < 0)
1410                                 goto error;
1411                         break;
1412                 }
1413                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1414                 if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
1415                         if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
1416                                 break;
1417                         if (found_key.type == BTRFS_DEV_ITEM_KEY) {
1418                                 struct btrfs_dev_item *dev_item;
1419                                 dev_item = btrfs_item_ptr(leaf, slot,
1420                                                   struct btrfs_dev_item);
1421                                 ret = read_one_dev(root, leaf, dev_item);
1422                                 BUG_ON(ret);
1423                         }
1424                 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
1425                         struct btrfs_chunk *chunk;
1426                         chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
1427                         ret = read_one_chunk(root, &found_key, leaf, chunk);
1428                         BUG_ON(ret);
1429                 }
1430                 path->slots[0]++;
1431         }
1432         if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
1433                 key.objectid = 0;
1434                 btrfs_release_path(root, path);
1435                 goto again;
1436         }
1437
1438         btrfs_free_path(path);
1439         ret = 0;
1440 error:
1441         return ret;
1442 }
1443
1444 struct list_head *btrfs_scanned_uuids(void)
1445 {
1446         return &fs_uuids;
1447 }