123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158 |
- /*
- * Copyright (C) 2013 Fusion IO. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public
- * License v2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
- */
- #include <linux/types.h>
- #include "btrfs-tests.h"
- #include "../ctree.h"
- #include "../btrfs_inode.h"
- #include "../disk-io.h"
- #include "../extent_io.h"
- #include "../volumes.h"
- #include "../compression.h"
- static void insert_extent(struct btrfs_root *root, u64 start, u64 len,
- u64 ram_bytes, u64 offset, u64 disk_bytenr,
- u64 disk_len, u32 type, u8 compression, int slot)
- {
- struct btrfs_path path;
- struct btrfs_file_extent_item *fi;
- struct extent_buffer *leaf = root->node;
- struct btrfs_key key;
- u32 value_len = sizeof(struct btrfs_file_extent_item);
- if (type == BTRFS_FILE_EXTENT_INLINE)
- value_len += len;
- memset(&path, 0, sizeof(path));
- path.nodes[0] = leaf;
- path.slots[0] = slot;
- key.objectid = BTRFS_FIRST_FREE_OBJECTID;
- key.type = BTRFS_EXTENT_DATA_KEY;
- key.offset = start;
- setup_items_for_insert(root, &path, &key, &value_len, value_len,
- value_len + sizeof(struct btrfs_item), 1);
- fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
- btrfs_set_file_extent_generation(leaf, fi, 1);
- btrfs_set_file_extent_type(leaf, fi, type);
- btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
- btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_len);
- btrfs_set_file_extent_offset(leaf, fi, offset);
- btrfs_set_file_extent_num_bytes(leaf, fi, len);
- btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
- btrfs_set_file_extent_compression(leaf, fi, compression);
- btrfs_set_file_extent_encryption(leaf, fi, 0);
- btrfs_set_file_extent_other_encoding(leaf, fi, 0);
- }
- static void insert_inode_item_key(struct btrfs_root *root)
- {
- struct btrfs_path path;
- struct extent_buffer *leaf = root->node;
- struct btrfs_key key;
- u32 value_len = 0;
- memset(&path, 0, sizeof(path));
- path.nodes[0] = leaf;
- path.slots[0] = 0;
- key.objectid = BTRFS_INODE_ITEM_KEY;
- key.type = BTRFS_INODE_ITEM_KEY;
- key.offset = 0;
- setup_items_for_insert(root, &path, &key, &value_len, value_len,
- value_len + sizeof(struct btrfs_item), 1);
- }
- /*
- * Build the most complicated map of extents the earth has ever seen. We want
- * this so we can test all of the corner cases of btrfs_get_extent. Here is a
- * diagram of how the extents will look though this may not be possible we still
- * want to make sure everything acts normally (the last number is not inclusive)
- *
- * [0 - 5][5 - 6][ 6 - 4096 ][ 4096 - 4100][4100 - 8195][8195 - 12291]
- * [hole ][inline][hole but no extent][ hole ][ regular ][regular1 split]
- *
- * [12291 - 16387][16387 - 24579][24579 - 28675][ 28675 - 32771][32771 - 36867 ]
- * [ hole ][regular1 split][ prealloc ][ prealloc1 ][prealloc1 written]
- *
- * [36867 - 45059][45059 - 53251][53251 - 57347][57347 - 61443][61443- 69635]
- * [ prealloc1 ][ compressed ][ compressed1 ][ regular ][ compressed1]
- *
- * [69635-73731][ 73731 - 86019 ][86019-90115]
- * [ regular ][ hole but no extent][ regular ]
- */
- static void setup_file_extents(struct btrfs_root *root, u32 sectorsize)
- {
- int slot = 0;
- u64 disk_bytenr = SZ_1M;
- u64 offset = 0;
- /* First we want a hole */
- insert_extent(root, offset, 5, 5, 0, 0, 0, BTRFS_FILE_EXTENT_REG, 0,
- slot);
- slot++;
- offset += 5;
- /*
- * Now we want an inline extent, I don't think this is possible but hey
- * why not? Also keep in mind if we have an inline extent it counts as
- * the whole first page. If we were to expand it we would have to cow
- * and we wouldn't have an inline extent anymore.
- */
- insert_extent(root, offset, 1, 1, 0, 0, 0, BTRFS_FILE_EXTENT_INLINE, 0,
- slot);
- slot++;
- offset = sectorsize;
- /* Now another hole */
- insert_extent(root, offset, 4, 4, 0, 0, 0, BTRFS_FILE_EXTENT_REG, 0,
- slot);
- slot++;
- offset += 4;
- /* Now for a regular extent */
- insert_extent(root, offset, sectorsize - 1, sectorsize - 1, 0,
- disk_bytenr, sectorsize, BTRFS_FILE_EXTENT_REG, 0, slot);
- slot++;
- disk_bytenr += sectorsize;
- offset += sectorsize - 1;
- /*
- * Now for 3 extents that were split from a hole punch so we test
- * offsets properly.
- */
- insert_extent(root, offset, sectorsize, 4 * sectorsize, 0, disk_bytenr,
- 4 * sectorsize, BTRFS_FILE_EXTENT_REG, 0, slot);
- slot++;
- offset += sectorsize;
- insert_extent(root, offset, sectorsize, sectorsize, 0, 0, 0,
- BTRFS_FILE_EXTENT_REG, 0, slot);
- slot++;
- offset += sectorsize;
- insert_extent(root, offset, 2 * sectorsize, 4 * sectorsize,
- 2 * sectorsize, disk_bytenr, 4 * sectorsize,
- BTRFS_FILE_EXTENT_REG, 0, slot);
- slot++;
- offset += 2 * sectorsize;
- disk_bytenr += 4 * sectorsize;
- /* Now for a unwritten prealloc extent */
- insert_extent(root, offset, sectorsize, sectorsize, 0, disk_bytenr,
- sectorsize, BTRFS_FILE_EXTENT_PREALLOC, 0, slot);
- slot++;
- offset += sectorsize;
- /*
- * We want to jack up disk_bytenr a little more so the em stuff doesn't
- * merge our records.
- */
- disk_bytenr += 2 * sectorsize;
- /*
- * Now for a partially written prealloc extent, basically the same as
- * the hole punch example above. Ram_bytes never changes when you mark
- * extents written btw.
- */
- insert_extent(root, offset, sectorsize, 4 * sectorsize, 0, disk_bytenr,
- 4 * sectorsize, BTRFS_FILE_EXTENT_PREALLOC, 0, slot);
- slot++;
- offset += sectorsize;
- insert_extent(root, offset, sectorsize, 4 * sectorsize, sectorsize,
- disk_bytenr, 4 * sectorsize, BTRFS_FILE_EXTENT_REG, 0,
- slot);
- slot++;
- offset += sectorsize;
- insert_extent(root, offset, 2 * sectorsize, 4 * sectorsize,
- 2 * sectorsize, disk_bytenr, 4 * sectorsize,
- BTRFS_FILE_EXTENT_PREALLOC, 0, slot);
- slot++;
- offset += 2 * sectorsize;
- disk_bytenr += 4 * sectorsize;
- /* Now a normal compressed extent */
- insert_extent(root, offset, 2 * sectorsize, 2 * sectorsize, 0,
- disk_bytenr, sectorsize, BTRFS_FILE_EXTENT_REG,
- BTRFS_COMPRESS_ZLIB, slot);
- slot++;
- offset += 2 * sectorsize;
- /* No merges */
- disk_bytenr += 2 * sectorsize;
- /* Now a split compressed extent */
- insert_extent(root, offset, sectorsize, 4 * sectorsize, 0, disk_bytenr,
- sectorsize, BTRFS_FILE_EXTENT_REG,
- BTRFS_COMPRESS_ZLIB, slot);
- slot++;
- offset += sectorsize;
- insert_extent(root, offset, sectorsize, sectorsize, 0,
- disk_bytenr + sectorsize, sectorsize,
- BTRFS_FILE_EXTENT_REG, 0, slot);
- slot++;
- offset += sectorsize;
- insert_extent(root, offset, 2 * sectorsize, 4 * sectorsize,
- 2 * sectorsize, disk_bytenr, sectorsize,
- BTRFS_FILE_EXTENT_REG, BTRFS_COMPRESS_ZLIB, slot);
- slot++;
- offset += 2 * sectorsize;
- disk_bytenr += 2 * sectorsize;
- /* Now extents that have a hole but no hole extent */
- insert_extent(root, offset, sectorsize, sectorsize, 0, disk_bytenr,
- sectorsize, BTRFS_FILE_EXTENT_REG, 0, slot);
- slot++;
- offset += 4 * sectorsize;
- disk_bytenr += sectorsize;
- insert_extent(root, offset, sectorsize, sectorsize, 0, disk_bytenr,
- sectorsize, BTRFS_FILE_EXTENT_REG, 0, slot);
- }
- static unsigned long prealloc_only = 0;
- static unsigned long compressed_only = 0;
- static unsigned long vacancy_only = 0;
- static noinline int test_btrfs_get_extent(u32 sectorsize, u32 nodesize)
- {
- struct btrfs_fs_info *fs_info = NULL;
- struct inode *inode = NULL;
- struct btrfs_root *root = NULL;
- struct extent_map *em = NULL;
- u64 orig_start;
- u64 disk_bytenr;
- u64 offset;
- int ret = -ENOMEM;
- inode = btrfs_new_test_inode();
- if (!inode) {
- test_msg("Couldn't allocate inode\n");
- return ret;
- }
- BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
- BTRFS_I(inode)->location.objectid = BTRFS_FIRST_FREE_OBJECTID;
- BTRFS_I(inode)->location.offset = 0;
- fs_info = btrfs_alloc_dummy_fs_info();
- if (!fs_info) {
- test_msg("Couldn't allocate dummy fs info\n");
- goto out;
- }
- root = btrfs_alloc_dummy_root(fs_info, sectorsize, nodesize);
- if (IS_ERR(root)) {
- test_msg("Couldn't allocate root\n");
- goto out;
- }
- root->node = alloc_dummy_extent_buffer(NULL, nodesize, nodesize);
- if (!root->node) {
- test_msg("Couldn't allocate dummy buffer\n");
- goto out;
- }
- /*
- * We will just free a dummy node if it's ref count is 2 so we need an
- * extra ref so our searches don't accidentally release our page.
- */
- extent_buffer_get(root->node);
- btrfs_set_header_nritems(root->node, 0);
- btrfs_set_header_level(root->node, 0);
- ret = -EINVAL;
- /* First with no extents */
- BTRFS_I(inode)->root = root;
- em = btrfs_get_extent(inode, NULL, 0, 0, sectorsize, 0);
- if (IS_ERR(em)) {
- em = NULL;
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_HOLE) {
- test_msg("Expected a hole, got %llu\n", em->block_start);
- goto out;
- }
- if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
- test_msg("Vacancy flag wasn't set properly\n");
- goto out;
- }
- free_extent_map(em);
- btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
- /*
- * All of the magic numbers are based on the mapping setup in
- * setup_file_extents, so if you change anything there you need to
- * update the comment and update the expected values below.
- */
- setup_file_extents(root, sectorsize);
- em = btrfs_get_extent(inode, NULL, 0, 0, (u64)-1, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_HOLE) {
- test_msg("Expected a hole, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != 0 || em->len != 5) {
- test_msg("Unexpected extent wanted start 0 len 5, got start "
- "%llu len %llu\n", em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_INLINE) {
- test_msg("Expected an inline, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != (sectorsize - 5)) {
- test_msg("Unexpected extent wanted start %llu len 1, got start "
- "%llu len %llu\n", offset, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- /*
- * We don't test anything else for inline since it doesn't get set
- * unless we have a page for it to write into. Maybe we should change
- * this?
- */
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_HOLE) {
- test_msg("Expected a hole, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != 4) {
- test_msg("Unexpected extent wanted start %llu len 4, got start "
- "%llu len %llu\n", offset, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* Regular extent */
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize - 1) {
- test_msg("Unexpected extent wanted start %llu len 4095, got "
- "start %llu len %llu\n", offset, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* The next 3 are split extents */
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- disk_bytenr = em->block_start;
- orig_start = em->start;
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_HOLE) {
- test_msg("Expected a hole, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != 2 * sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, 2 * sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != orig_start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n",
- orig_start, em->orig_start);
- goto out;
- }
- disk_bytenr += (em->start - orig_start);
- if (em->block_start != disk_bytenr) {
- test_msg("Wrong block start, want %llu, have %llu\n",
- disk_bytenr, em->block_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* Prealloc extent */
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != prealloc_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- prealloc_only, em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* The next 3 are a half written prealloc extent */
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != prealloc_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- prealloc_only, em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- disk_bytenr = em->block_start;
- orig_start = em->start;
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_HOLE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != orig_start) {
- test_msg("Unexpected orig offset, wanted %llu, have %llu\n",
- orig_start, em->orig_start);
- goto out;
- }
- if (em->block_start != (disk_bytenr + (em->start - em->orig_start))) {
- test_msg("Unexpected block start, wanted %llu, have %llu\n",
- disk_bytenr + (em->start - em->orig_start),
- em->block_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != 2 * sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, 2 * sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != prealloc_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- prealloc_only, em->flags);
- goto out;
- }
- if (em->orig_start != orig_start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", orig_start,
- em->orig_start);
- goto out;
- }
- if (em->block_start != (disk_bytenr + (em->start - em->orig_start))) {
- test_msg("Unexpected block start, wanted %llu, have %llu\n",
- disk_bytenr + (em->start - em->orig_start),
- em->block_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* Now for the compressed extent */
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != 2 * sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u,"
- "got start %llu len %llu\n",
- offset, 2 * sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != compressed_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- compressed_only, em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n",
- em->start, em->orig_start);
- goto out;
- }
- if (em->compress_type != BTRFS_COMPRESS_ZLIB) {
- test_msg("Unexpected compress type, wanted %d, got %d\n",
- BTRFS_COMPRESS_ZLIB, em->compress_type);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* Split compressed extent */
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u,"
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != compressed_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- compressed_only, em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n",
- em->start, em->orig_start);
- goto out;
- }
- if (em->compress_type != BTRFS_COMPRESS_ZLIB) {
- test_msg("Unexpected compress type, wanted %d, got %d\n",
- BTRFS_COMPRESS_ZLIB, em->compress_type);
- goto out;
- }
- disk_bytenr = em->block_start;
- orig_start = em->start;
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != disk_bytenr) {
- test_msg("Block start does not match, want %llu got %llu\n",
- disk_bytenr, em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != 2 * sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, 2 * sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != compressed_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- compressed_only, em->flags);
- goto out;
- }
- if (em->orig_start != orig_start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n",
- em->start, orig_start);
- goto out;
- }
- if (em->compress_type != BTRFS_COMPRESS_ZLIB) {
- test_msg("Unexpected compress type, wanted %d, got %d\n",
- BTRFS_COMPRESS_ZLIB, em->compress_type);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- /* A hole between regular extents but no hole extent */
- em = btrfs_get_extent(inode, NULL, 0, offset + 6, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, 4096 * 1024, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_HOLE) {
- test_msg("Expected a hole extent, got %llu\n", em->block_start);
- goto out;
- }
- /*
- * Currently we just return a length that we requested rather than the
- * length of the actual hole, if this changes we'll have to change this
- * test.
- */
- if (em->start != offset || em->len != 3 * sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u, "
- "got start %llu len %llu\n",
- offset, 3 * sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != vacancy_only) {
- test_msg("Unexpected flags set, want %lu have %lu\n",
- vacancy_only, em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- offset = em->start + em->len;
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != offset || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %llu len %u,"
- "got start %llu len %llu\n",
- offset, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, want 0 have %lu\n", em->flags);
- goto out;
- }
- if (em->orig_start != em->start) {
- test_msg("Wrong orig offset, want %llu, have %llu\n", em->start,
- em->orig_start);
- goto out;
- }
- ret = 0;
- out:
- if (!IS_ERR(em))
- free_extent_map(em);
- iput(inode);
- btrfs_free_dummy_root(root);
- btrfs_free_dummy_fs_info(fs_info);
- return ret;
- }
- static int test_hole_first(u32 sectorsize, u32 nodesize)
- {
- struct btrfs_fs_info *fs_info = NULL;
- struct inode *inode = NULL;
- struct btrfs_root *root = NULL;
- struct extent_map *em = NULL;
- int ret = -ENOMEM;
- inode = btrfs_new_test_inode();
- if (!inode) {
- test_msg("Couldn't allocate inode\n");
- return ret;
- }
- BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
- BTRFS_I(inode)->location.objectid = BTRFS_FIRST_FREE_OBJECTID;
- BTRFS_I(inode)->location.offset = 0;
- fs_info = btrfs_alloc_dummy_fs_info();
- if (!fs_info) {
- test_msg("Couldn't allocate dummy fs info\n");
- goto out;
- }
- root = btrfs_alloc_dummy_root(fs_info, sectorsize, nodesize);
- if (IS_ERR(root)) {
- test_msg("Couldn't allocate root\n");
- goto out;
- }
- root->node = alloc_dummy_extent_buffer(NULL, nodesize, nodesize);
- if (!root->node) {
- test_msg("Couldn't allocate dummy buffer\n");
- goto out;
- }
- extent_buffer_get(root->node);
- btrfs_set_header_nritems(root->node, 0);
- btrfs_set_header_level(root->node, 0);
- BTRFS_I(inode)->root = root;
- ret = -EINVAL;
- /*
- * Need a blank inode item here just so we don't confuse
- * btrfs_get_extent.
- */
- insert_inode_item_key(root);
- insert_extent(root, sectorsize, sectorsize, sectorsize, 0, sectorsize,
- sectorsize, BTRFS_FILE_EXTENT_REG, 0, 1);
- em = btrfs_get_extent(inode, NULL, 0, 0, 2 * sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != EXTENT_MAP_HOLE) {
- test_msg("Expected a hole, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != 0 || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start 0 len %u, "
- "got start %llu len %llu\n",
- sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != vacancy_only) {
- test_msg("Wrong flags, wanted %lu, have %lu\n", vacancy_only,
- em->flags);
- goto out;
- }
- free_extent_map(em);
- em = btrfs_get_extent(inode, NULL, 0, sectorsize, 2 * sectorsize, 0);
- if (IS_ERR(em)) {
- test_msg("Got an error when we shouldn't have\n");
- goto out;
- }
- if (em->block_start != sectorsize) {
- test_msg("Expected a real extent, got %llu\n", em->block_start);
- goto out;
- }
- if (em->start != sectorsize || em->len != sectorsize) {
- test_msg("Unexpected extent wanted start %u len %u, "
- "got start %llu len %llu\n",
- sectorsize, sectorsize, em->start, em->len);
- goto out;
- }
- if (em->flags != 0) {
- test_msg("Unexpected flags set, wanted 0 got %lu\n",
- em->flags);
- goto out;
- }
- ret = 0;
- out:
- if (!IS_ERR(em))
- free_extent_map(em);
- iput(inode);
- btrfs_free_dummy_root(root);
- btrfs_free_dummy_fs_info(fs_info);
- return ret;
- }
- static int test_extent_accounting(u32 sectorsize, u32 nodesize)
- {
- struct btrfs_fs_info *fs_info = NULL;
- struct inode *inode = NULL;
- struct btrfs_root *root = NULL;
- int ret = -ENOMEM;
- inode = btrfs_new_test_inode();
- if (!inode) {
- test_msg("Couldn't allocate inode\n");
- return ret;
- }
- fs_info = btrfs_alloc_dummy_fs_info();
- if (!fs_info) {
- test_msg("Couldn't allocate dummy fs info\n");
- goto out;
- }
- root = btrfs_alloc_dummy_root(fs_info, sectorsize, nodesize);
- if (IS_ERR(root)) {
- test_msg("Couldn't allocate root\n");
- goto out;
- }
- BTRFS_I(inode)->root = root;
- btrfs_test_inode_set_ops(inode);
- /* [BTRFS_MAX_EXTENT_SIZE] */
- BTRFS_I(inode)->outstanding_extents++;
- ret = btrfs_set_extent_delalloc(inode, 0, BTRFS_MAX_EXTENT_SIZE - 1,
- NULL, 0);
- if (ret) {
- test_msg("btrfs_set_extent_delalloc returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 1) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 1, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /* [BTRFS_MAX_EXTENT_SIZE][sectorsize] */
- BTRFS_I(inode)->outstanding_extents++;
- ret = btrfs_set_extent_delalloc(inode, BTRFS_MAX_EXTENT_SIZE,
- BTRFS_MAX_EXTENT_SIZE + sectorsize - 1,
- NULL, 0);
- if (ret) {
- test_msg("btrfs_set_extent_delalloc returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 2) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 2, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /* [BTRFS_MAX_EXTENT_SIZE/2][sectorsize HOLE][the rest] */
- ret = clear_extent_bit(&BTRFS_I(inode)->io_tree,
- BTRFS_MAX_EXTENT_SIZE >> 1,
- (BTRFS_MAX_EXTENT_SIZE >> 1) + sectorsize - 1,
- EXTENT_DELALLOC | EXTENT_DIRTY |
- EXTENT_UPTODATE | EXTENT_DO_ACCOUNTING, 0, 0,
- NULL, GFP_KERNEL);
- if (ret) {
- test_msg("clear_extent_bit returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 2) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 2, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /* [BTRFS_MAX_EXTENT_SIZE][sectorsize] */
- BTRFS_I(inode)->outstanding_extents++;
- ret = btrfs_set_extent_delalloc(inode, BTRFS_MAX_EXTENT_SIZE >> 1,
- (BTRFS_MAX_EXTENT_SIZE >> 1)
- + sectorsize - 1,
- NULL, 0);
- if (ret) {
- test_msg("btrfs_set_extent_delalloc returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 2) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 2, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /*
- * [BTRFS_MAX_EXTENT_SIZE+sectorsize][sectorsize HOLE][BTRFS_MAX_EXTENT_SIZE+sectorsize]
- *
- * I'm artificially adding 2 to outstanding_extents because in the
- * buffered IO case we'd add things up as we go, but I don't feel like
- * doing that here, this isn't the interesting case we want to test.
- */
- BTRFS_I(inode)->outstanding_extents += 2;
- ret = btrfs_set_extent_delalloc(inode,
- BTRFS_MAX_EXTENT_SIZE + 2 * sectorsize,
- (BTRFS_MAX_EXTENT_SIZE << 1) + 3 * sectorsize - 1,
- NULL, 0);
- if (ret) {
- test_msg("btrfs_set_extent_delalloc returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 4) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 4, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /*
- * [BTRFS_MAX_EXTENT_SIZE+sectorsize][sectorsize][BTRFS_MAX_EXTENT_SIZE+sectorsize]
- */
- BTRFS_I(inode)->outstanding_extents++;
- ret = btrfs_set_extent_delalloc(inode,
- BTRFS_MAX_EXTENT_SIZE + sectorsize,
- BTRFS_MAX_EXTENT_SIZE + 2 * sectorsize - 1, NULL, 0);
- if (ret) {
- test_msg("btrfs_set_extent_delalloc returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 3) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 3, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /* [BTRFS_MAX_EXTENT_SIZE+4k][4K HOLE][BTRFS_MAX_EXTENT_SIZE+4k] */
- ret = clear_extent_bit(&BTRFS_I(inode)->io_tree,
- BTRFS_MAX_EXTENT_SIZE + sectorsize,
- BTRFS_MAX_EXTENT_SIZE + 2 * sectorsize - 1,
- EXTENT_DIRTY | EXTENT_DELALLOC |
- EXTENT_DO_ACCOUNTING | EXTENT_UPTODATE, 0, 0,
- NULL, GFP_KERNEL);
- if (ret) {
- test_msg("clear_extent_bit returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 4) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 4, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /*
- * Refill the hole again just for good measure, because I thought it
- * might fail and I'd rather satisfy my paranoia at this point.
- */
- BTRFS_I(inode)->outstanding_extents++;
- ret = btrfs_set_extent_delalloc(inode,
- BTRFS_MAX_EXTENT_SIZE + sectorsize,
- BTRFS_MAX_EXTENT_SIZE + 2 * sectorsize - 1, NULL, 0);
- if (ret) {
- test_msg("btrfs_set_extent_delalloc returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents != 3) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 3, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- /* Empty */
- ret = clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
- EXTENT_DIRTY | EXTENT_DELALLOC |
- EXTENT_DO_ACCOUNTING | EXTENT_UPTODATE, 0, 0,
- NULL, GFP_KERNEL);
- if (ret) {
- test_msg("clear_extent_bit returned %d\n", ret);
- goto out;
- }
- if (BTRFS_I(inode)->outstanding_extents) {
- ret = -EINVAL;
- test_msg("Miscount, wanted 0, got %u\n",
- BTRFS_I(inode)->outstanding_extents);
- goto out;
- }
- ret = 0;
- out:
- if (ret)
- clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
- EXTENT_DIRTY | EXTENT_DELALLOC |
- EXTENT_DO_ACCOUNTING | EXTENT_UPTODATE, 0, 0,
- NULL, GFP_KERNEL);
- iput(inode);
- btrfs_free_dummy_root(root);
- btrfs_free_dummy_fs_info(fs_info);
- return ret;
- }
- int btrfs_test_inodes(u32 sectorsize, u32 nodesize)
- {
- int ret;
- set_bit(EXTENT_FLAG_COMPRESSED, &compressed_only);
- set_bit(EXTENT_FLAG_VACANCY, &vacancy_only);
- set_bit(EXTENT_FLAG_PREALLOC, &prealloc_only);
- test_msg("Running btrfs_get_extent tests\n");
- ret = test_btrfs_get_extent(sectorsize, nodesize);
- if (ret)
- return ret;
- test_msg("Running hole first btrfs_get_extent test\n");
- ret = test_hole_first(sectorsize, nodesize);
- if (ret)
- return ret;
- test_msg("Running outstanding_extents tests\n");
- return test_extent_accounting(sectorsize, nodesize);
- }
|