LCOV - code coverage report
Current view: top level - fs/ext4 - fsmap.c (source / functions) Hit Total Coverage
Test: fstests of 6.5.0-rc4-xfsx @ Mon Jul 31 20:08:34 PDT 2023 Lines: 285 339 84.1 %
Date: 2023-07-31 20:08:34 Functions: 15 16 93.8 %

          Line data    Source code
       1             : // SPDX-License-Identifier: GPL-2.0+
       2             : /*
       3             :  * Copyright (C) 2017 Oracle.  All Rights Reserved.
       4             :  *
       5             :  * Author: Darrick J. Wong <darrick.wong@oracle.com>
       6             :  */
       7             : #include "ext4.h"
       8             : #include <linux/fsmap.h>
       9             : #include "fsmap.h"
      10             : #include "mballoc.h"
      11             : #include <linux/sort.h>
      12             : #include <linux/list_sort.h>
      13             : #include <trace/events/ext4.h>
      14             : 
      15             : /* Convert an ext4_fsmap to an fsmap. */
      16        2171 : void ext4_fsmap_from_internal(struct super_block *sb, struct fsmap *dest,
      17             :                               struct ext4_fsmap *src)
      18             : {
      19        2171 :         dest->fmr_device = src->fmr_device;
      20        2171 :         dest->fmr_flags = src->fmr_flags;
      21        2171 :         dest->fmr_physical = src->fmr_physical << sb->s_blocksize_bits;
      22        2171 :         dest->fmr_owner = src->fmr_owner;
      23        2171 :         dest->fmr_offset = 0;
      24        2171 :         dest->fmr_length = src->fmr_length << sb->s_blocksize_bits;
      25        2171 :         dest->fmr_reserved[0] = 0;
      26        2171 :         dest->fmr_reserved[1] = 0;
      27        2171 :         dest->fmr_reserved[2] = 0;
      28        2171 : }
      29             : 
      30             : /* Convert an fsmap to an ext4_fsmap. */
      31        1626 : void ext4_fsmap_to_internal(struct super_block *sb, struct ext4_fsmap *dest,
      32             :                             struct fsmap *src)
      33             : {
      34        1626 :         dest->fmr_device = src->fmr_device;
      35        1626 :         dest->fmr_flags = src->fmr_flags;
      36        1626 :         dest->fmr_physical = src->fmr_physical >> sb->s_blocksize_bits;
      37        1626 :         dest->fmr_owner = src->fmr_owner;
      38        1626 :         dest->fmr_length = src->fmr_length >> sb->s_blocksize_bits;
      39        1626 : }
      40             : 
      41             : /* getfsmap query state */
      42             : struct ext4_getfsmap_info {
      43             :         struct ext4_fsmap_head  *gfi_head;
      44             :         ext4_fsmap_format_t     gfi_formatter;  /* formatting fn */
      45             :         void                    *gfi_format_arg;/* format buffer */
      46             :         ext4_fsblk_t            gfi_next_fsblk; /* next fsblock we expect */
      47             :         u32                     gfi_dev;        /* device id */
      48             :         ext4_group_t            gfi_agno;       /* bg number, if applicable */
      49             :         struct ext4_fsmap       gfi_low;        /* low rmap key */
      50             :         struct ext4_fsmap       gfi_high;       /* high rmap key */
      51             :         struct ext4_fsmap       gfi_lastfree;   /* free ext at end of last bg */
      52             :         struct list_head        gfi_meta_list;  /* fixed metadata list */
      53             :         bool                    gfi_last;       /* last extent? */
      54             : };
      55             : 
      56             : /* Associate a device with a getfsmap handler. */
      57             : struct ext4_getfsmap_dev {
      58             :         int                     (*gfd_fn)(struct super_block *sb,
      59             :                                       struct ext4_fsmap *keys,
      60             :                                       struct ext4_getfsmap_info *info);
      61             :         u32                     gfd_dev;
      62             : };
      63             : 
      64             : /* Compare two getfsmap device handlers. */
      65         813 : static int ext4_getfsmap_dev_compare(const void *p1, const void *p2)
      66             : {
      67         813 :         const struct ext4_getfsmap_dev *d1 = p1;
      68         813 :         const struct ext4_getfsmap_dev *d2 = p2;
      69             : 
      70         813 :         return d1->gfd_dev - d2->gfd_dev;
      71             : }
      72             : 
      73             : /* Compare a record against our starting point */
      74             : static bool ext4_getfsmap_rec_before_low_key(struct ext4_getfsmap_info *info,
      75             :                                              struct ext4_fsmap *rec)
      76             : {
      77        2175 :         return rec->fmr_physical < info->gfi_low.fmr_physical;
      78             : }
      79             : 
      80             : /*
      81             :  * Format a reverse mapping for getfsmap, having translated rm_startblock
      82             :  * into the appropriate daddr units.
      83             :  */
      84        2175 : static int ext4_getfsmap_helper(struct super_block *sb,
      85             :                                 struct ext4_getfsmap_info *info,
      86             :                                 struct ext4_fsmap *rec)
      87             : {
      88        2175 :         struct ext4_fsmap fmr;
      89        2175 :         struct ext4_sb_info *sbi = EXT4_SB(sb);
      90        2175 :         ext4_fsblk_t rec_fsblk = rec->fmr_physical;
      91        2175 :         ext4_group_t agno;
      92        2175 :         ext4_grpblk_t cno;
      93        2175 :         int error;
      94             : 
      95        2175 :         if (fatal_signal_pending(current))
      96             :                 return -EINTR;
      97             : 
      98             :         /*
      99             :          * Filter out records that start before our startpoint, if the
     100             :          * caller requested that.
     101             :          */
     102        2175 :         if (ext4_getfsmap_rec_before_low_key(info, rec)) {
     103           0 :                 rec_fsblk += rec->fmr_length;
     104           0 :                 if (info->gfi_next_fsblk < rec_fsblk)
     105           0 :                         info->gfi_next_fsblk = rec_fsblk;
     106           0 :                 return EXT4_QUERY_RANGE_CONTINUE;
     107             :         }
     108             : 
     109             :         /* Are we just counting mappings? */
     110        2175 :         if (info->gfi_head->fmh_count == 0) {
     111           0 :                 if (info->gfi_head->fmh_entries == UINT_MAX)
     112             :                         return EXT4_QUERY_RANGE_ABORT;
     113             : 
     114           0 :                 if (rec_fsblk > info->gfi_next_fsblk)
     115           0 :                         info->gfi_head->fmh_entries++;
     116             : 
     117           0 :                 if (info->gfi_last)
     118             :                         return EXT4_QUERY_RANGE_CONTINUE;
     119             : 
     120           0 :                 info->gfi_head->fmh_entries++;
     121             : 
     122           0 :                 rec_fsblk += rec->fmr_length;
     123           0 :                 if (info->gfi_next_fsblk < rec_fsblk)
     124           0 :                         info->gfi_next_fsblk = rec_fsblk;
     125           0 :                 return EXT4_QUERY_RANGE_CONTINUE;
     126             :         }
     127             : 
     128             :         /*
     129             :          * If the record starts past the last physical block we saw,
     130             :          * then we've found a gap.  Report the gap as being owned by
     131             :          * whatever the caller specified is the missing owner.
     132             :          */
     133        2175 :         if (rec_fsblk > info->gfi_next_fsblk) {
     134        1164 :                 if (info->gfi_head->fmh_entries >= info->gfi_head->fmh_count)
     135             :                         return EXT4_QUERY_RANGE_ABORT;
     136             : 
     137         814 :                 ext4_get_group_no_and_offset(sb, info->gfi_next_fsblk,
     138             :                                 &agno, &cno);
     139        1628 :                 trace_ext4_fsmap_mapping(sb, info->gfi_dev, agno,
     140         814 :                                 EXT4_C2B(sbi, cno),
     141         814 :                                 rec_fsblk - info->gfi_next_fsblk,
     142             :                                 EXT4_FMR_OWN_UNKNOWN);
     143             : 
     144         814 :                 fmr.fmr_device = info->gfi_dev;
     145         814 :                 fmr.fmr_physical = info->gfi_next_fsblk;
     146         814 :                 fmr.fmr_owner = EXT4_FMR_OWN_UNKNOWN;
     147         814 :                 fmr.fmr_length = rec_fsblk - info->gfi_next_fsblk;
     148         814 :                 fmr.fmr_flags = FMR_OF_SPECIAL_OWNER;
     149         814 :                 error = info->gfi_formatter(&fmr, info->gfi_format_arg);
     150         814 :                 if (error)
     151             :                         return error;
     152         814 :                 info->gfi_head->fmh_entries++;
     153             :         }
     154             : 
     155        1825 :         if (info->gfi_last)
     156          10 :                 goto out;
     157             : 
     158             :         /* Fill out the extent we found */
     159        1815 :         if (info->gfi_head->fmh_entries >= info->gfi_head->fmh_count)
     160             :                 return EXT4_QUERY_RANGE_ABORT;
     161             : 
     162        1357 :         ext4_get_group_no_and_offset(sb, rec_fsblk, &agno, &cno);
     163        1357 :         trace_ext4_fsmap_mapping(sb, info->gfi_dev, agno, EXT4_C2B(sbi, cno),
     164             :                         rec->fmr_length, rec->fmr_owner);
     165             : 
     166        1357 :         fmr.fmr_device = info->gfi_dev;
     167        1357 :         fmr.fmr_physical = rec_fsblk;
     168        1357 :         fmr.fmr_owner = rec->fmr_owner;
     169        1357 :         fmr.fmr_flags = FMR_OF_SPECIAL_OWNER;
     170        1357 :         fmr.fmr_length = rec->fmr_length;
     171        1357 :         error = info->gfi_formatter(&fmr, info->gfi_format_arg);
     172        1357 :         if (error)
     173             :                 return error;
     174        1357 :         info->gfi_head->fmh_entries++;
     175             : 
     176        1367 : out:
     177        1367 :         rec_fsblk += rec->fmr_length;
     178        1367 :         if (info->gfi_next_fsblk < rec_fsblk)
     179        1357 :                 info->gfi_next_fsblk = rec_fsblk;
     180             :         return EXT4_QUERY_RANGE_CONTINUE;
     181             : }
     182             : 
     183             : static inline ext4_fsblk_t ext4_fsmap_next_pblk(struct ext4_fsmap *fmr)
     184             : {
     185        3302 :         return fmr->fmr_physical + fmr->fmr_length;
     186             : }
     187             : 
     188             : /* Transform a blockgroup's free record into a fsmap */
     189        3234 : static int ext4_getfsmap_datadev_helper(struct super_block *sb,
     190             :                                         ext4_group_t agno, ext4_grpblk_t start,
     191             :                                         ext4_grpblk_t len, void *priv)
     192             : {
     193        3234 :         struct ext4_fsmap irec;
     194        3234 :         struct ext4_getfsmap_info *info = priv;
     195        3234 :         struct ext4_fsmap *p;
     196        3234 :         struct ext4_fsmap *tmp;
     197        3234 :         struct ext4_sb_info *sbi = EXT4_SB(sb);
     198        3234 :         ext4_fsblk_t fsb;
     199        3234 :         ext4_fsblk_t fslen;
     200        3234 :         int error;
     201             : 
     202        3234 :         fsb = (EXT4_C2B(sbi, start) + ext4_group_first_block_no(sb, agno));
     203        3234 :         fslen = EXT4_C2B(sbi, len);
     204             : 
     205             :         /* If the retained free extent record is set... */
     206        3234 :         if (info->gfi_lastfree.fmr_owner) {
     207             :                 /* ...and abuts this one, lengthen it and return. */
     208        1653 :                 if (ext4_fsmap_next_pblk(&info->gfi_lastfree) == fsb) {
     209        1464 :                         info->gfi_lastfree.fmr_length += fslen;
     210        1464 :                         return 0;
     211             :                 }
     212             : 
     213             :                 /*
     214             :                  * There's a gap between the two free extents; emit the
     215             :                  * retained extent prior to merging the meta_list.
     216             :                  */
     217         189 :                 error = ext4_getfsmap_helper(sb, info, &info->gfi_lastfree);
     218         189 :                 if (error)
     219             :                         return error;
     220         154 :                 info->gfi_lastfree.fmr_owner = 0;
     221             :         }
     222             : 
     223             :         /* Merge in any relevant extents from the meta_list */
     224      133609 :         list_for_each_entry_safe(p, tmp, &info->gfi_meta_list, fmr_list) {
     225      131960 :                 if (p->fmr_physical + p->fmr_length <= info->gfi_next_fsblk) {
     226       11601 :                         list_del(&p->fmr_list);
     227       11601 :                         kfree(p);
     228      120359 :                 } else if (p->fmr_physical < fsb) {
     229         521 :                         error = ext4_getfsmap_helper(sb, info, p);
     230         521 :                         if (error)
     231          86 :                                 return error;
     232             : 
     233         435 :                         list_del(&p->fmr_list);
     234         435 :                         kfree(p);
     235             :                 }
     236             :         }
     237             : 
     238        1649 :         irec.fmr_device = 0;
     239        1649 :         irec.fmr_physical = fsb;
     240        1649 :         irec.fmr_length = fslen;
     241        1649 :         irec.fmr_owner = EXT4_FMR_OWN_FREE;
     242        1649 :         irec.fmr_flags = 0;
     243             : 
     244             :         /* If this is a free extent at the end of a bg, buffer it. */
     245        1649 :         if (ext4_fsmap_next_pblk(&irec) ==
     246        1649 :                         ext4_group_first_block_no(sb, agno + 1)) {
     247         190 :                 info->gfi_lastfree = irec;
     248         190 :                 return 0;
     249             :         }
     250             : 
     251             :         /* Otherwise, emit it */
     252        1459 :         return ext4_getfsmap_helper(sb, info, &irec);
     253             : }
     254             : 
     255             : /* Execute a getfsmap query against the log device. */
     256           0 : static int ext4_getfsmap_logdev(struct super_block *sb, struct ext4_fsmap *keys,
     257             :                                 struct ext4_getfsmap_info *info)
     258             : {
     259           0 :         journal_t *journal = EXT4_SB(sb)->s_journal;
     260           0 :         struct ext4_fsmap irec;
     261             : 
     262             :         /* Set up search keys */
     263           0 :         info->gfi_low = keys[0];
     264           0 :         info->gfi_low.fmr_length = 0;
     265             : 
     266           0 :         memset(&info->gfi_high, 0xFF, sizeof(info->gfi_high));
     267             : 
     268           0 :         trace_ext4_fsmap_low_key(sb, info->gfi_dev, 0,
     269             :                         info->gfi_low.fmr_physical,
     270             :                         info->gfi_low.fmr_length,
     271             :                         info->gfi_low.fmr_owner);
     272             : 
     273           0 :         trace_ext4_fsmap_high_key(sb, info->gfi_dev, 0,
     274             :                         info->gfi_high.fmr_physical,
     275             :                         info->gfi_high.fmr_length,
     276             :                         info->gfi_high.fmr_owner);
     277             : 
     278           0 :         if (keys[0].fmr_physical > 0)
     279             :                 return 0;
     280             : 
     281             :         /* Fabricate an rmap entry for the external log device. */
     282           0 :         irec.fmr_physical = journal->j_blk_offset;
     283           0 :         irec.fmr_length = journal->j_total_len;
     284           0 :         irec.fmr_owner = EXT4_FMR_OWN_LOG;
     285           0 :         irec.fmr_flags = 0;
     286             : 
     287           0 :         return ext4_getfsmap_helper(sb, info, &irec);
     288             : }
     289             : 
     290             : /* Helper to fill out an ext4_fsmap. */
     291      680481 : static inline int ext4_getfsmap_fill(struct list_head *meta_list,
     292             :                                      ext4_fsblk_t fsb, ext4_fsblk_t len,
     293             :                                      uint64_t owner)
     294             : {
     295      680481 :         struct ext4_fsmap *fsm;
     296             : 
     297      680481 :         fsm = kmalloc(sizeof(*fsm), GFP_NOFS);
     298      680481 :         if (!fsm)
     299             :                 return -ENOMEM;
     300      680481 :         fsm->fmr_device = 0;
     301      680481 :         fsm->fmr_flags = 0;
     302      680481 :         fsm->fmr_physical = fsb;
     303      680481 :         fsm->fmr_owner = owner;
     304      680481 :         fsm->fmr_length = len;
     305      680481 :         list_add_tail(&fsm->fmr_list, meta_list);
     306             : 
     307      680481 :         return 0;
     308             : }
     309             : 
     310             : /*
     311             :  * This function returns the number of file system metadata blocks at
     312             :  * the beginning of a block group, including the reserved gdt blocks.
     313             :  */
     314      217071 : static unsigned int ext4_getfsmap_find_sb(struct super_block *sb,
     315             :                                           ext4_group_t agno,
     316             :                                           struct list_head *meta_list)
     317             : {
     318      217071 :         struct ext4_sb_info *sbi = EXT4_SB(sb);
     319      217071 :         ext4_fsblk_t fsb = ext4_group_first_block_no(sb, agno);
     320      217071 :         ext4_fsblk_t len;
     321      217071 :         unsigned long first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
     322      217071 :         unsigned long metagroup = agno / EXT4_DESC_PER_BLOCK(sb);
     323      217071 :         int error;
     324             : 
     325             :         /* Record the superblock. */
     326      217071 :         if (ext4_bg_has_super(sb, agno)) {
     327        9756 :                 error = ext4_getfsmap_fill(meta_list, fsb, 1, EXT4_FMR_OWN_FS);
     328        9756 :                 if (error)
     329           0 :                         return error;
     330        9756 :                 fsb++;
     331             :         }
     332             : 
     333             :         /* Record the group descriptors. */
     334      217071 :         len = ext4_bg_num_gdb(sb, agno);
     335      217071 :         if (!len)
     336             :                 return 0;
     337        9756 :         error = ext4_getfsmap_fill(meta_list, fsb, len,
     338             :                                    EXT4_FMR_OWN_GDT);
     339        9756 :         if (error)
     340           0 :                 return error;
     341        9756 :         fsb += len;
     342             : 
     343             :         /* Reserved GDT blocks */
     344        9756 :         if (!ext4_has_feature_meta_bg(sb) || metagroup < first_meta_bg) {
     345        9756 :                 len = le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks);
     346        9756 :                 error = ext4_getfsmap_fill(meta_list, fsb, len,
     347             :                                            EXT4_FMR_OWN_RESV_GDT);
     348        9756 :                 if (error)
     349           0 :                         return error;
     350             :         }
     351             : 
     352             :         return 0;
     353             : }
     354             : 
     355             : /* Compare two fsmap items. */
     356     4436541 : static int ext4_getfsmap_compare(void *priv,
     357             :                                  const struct list_head *a,
     358             :                                  const struct list_head *b)
     359             : {
     360     4436541 :         struct ext4_fsmap *fa;
     361     4436541 :         struct ext4_fsmap *fb;
     362             : 
     363     4436541 :         fa = container_of(a, struct ext4_fsmap, fmr_list);
     364     4436541 :         fb = container_of(b, struct ext4_fsmap, fmr_list);
     365     4436541 :         if (fa->fmr_physical < fb->fmr_physical)
     366             :                 return -1;
     367     1217061 :         else if (fa->fmr_physical > fb->fmr_physical)
     368     1216248 :                 return 1;
     369             :         return 0;
     370             : }
     371             : 
     372             : /* Merge adjacent extents of fixed metadata. */
     373         813 : static void ext4_getfsmap_merge_fixed_metadata(struct list_head *meta_list)
     374             : {
     375         813 :         struct ext4_fsmap *p;
     376         813 :         struct ext4_fsmap *prev = NULL;
     377         813 :         struct ext4_fsmap *tmp;
     378             : 
     379      681294 :         list_for_each_entry_safe(p, tmp, meta_list, fmr_list) {
     380      680481 :                 if (!prev) {
     381         813 :                         prev = p;
     382         813 :                         continue;
     383             :                 }
     384             : 
     385      679668 :                 if (prev->fmr_owner == p->fmr_owner &&
     386      609750 :                     prev->fmr_physical + prev->fmr_length == p->fmr_physical) {
     387      609750 :                         prev->fmr_length += p->fmr_length;
     388      609750 :                         list_del(&p->fmr_list);
     389      609750 :                         kfree(p);
     390             :                 } else
     391             :                         prev = p;
     392             :         }
     393         813 : }
     394             : 
     395             : /* Free a list of fixed metadata. */
     396         813 : static void ext4_getfsmap_free_fixed_metadata(struct list_head *meta_list)
     397             : {
     398         813 :         struct ext4_fsmap *p;
     399         813 :         struct ext4_fsmap *tmp;
     400             : 
     401       59508 :         list_for_each_entry_safe(p, tmp, meta_list, fmr_list) {
     402       58695 :                 list_del(&p->fmr_list);
     403       58695 :                 kfree(p);
     404             :         }
     405         813 : }
     406             : 
     407             : /* Find all the fixed metadata in the filesystem. */
     408         813 : static int ext4_getfsmap_find_fixed_metadata(struct super_block *sb,
     409             :                                              struct list_head *meta_list)
     410             : {
     411         813 :         struct ext4_group_desc *gdp;
     412         813 :         ext4_group_t agno;
     413         813 :         int error;
     414             : 
     415         813 :         INIT_LIST_HEAD(meta_list);
     416             : 
     417             :         /* Collect everything. */
     418      217884 :         for (agno = 0; agno < EXT4_SB(sb)->s_groups_count; agno++) {
     419      217071 :                 gdp = ext4_get_group_desc(sb, agno, NULL);
     420      217071 :                 if (!gdp) {
     421           0 :                         error = -EFSCORRUPTED;
     422           0 :                         goto err;
     423             :                 }
     424             : 
     425             :                 /* Superblock & GDT */
     426      217071 :                 error = ext4_getfsmap_find_sb(sb, agno, meta_list);
     427      217071 :                 if (error)
     428           0 :                         goto err;
     429             : 
     430             :                 /* Block bitmap */
     431      217071 :                 error = ext4_getfsmap_fill(meta_list,
     432             :                                            ext4_block_bitmap(sb, gdp), 1,
     433             :                                            EXT4_FMR_OWN_BLKBM);
     434      217071 :                 if (error)
     435           0 :                         goto err;
     436             : 
     437             :                 /* Inode bitmap */
     438      217071 :                 error = ext4_getfsmap_fill(meta_list,
     439             :                                            ext4_inode_bitmap(sb, gdp), 1,
     440             :                                            EXT4_FMR_OWN_INOBM);
     441      217071 :                 if (error)
     442           0 :                         goto err;
     443             : 
     444             :                 /* Inodes */
     445      217071 :                 error = ext4_getfsmap_fill(meta_list,
     446             :                                            ext4_inode_table(sb, gdp),
     447      217071 :                                            EXT4_SB(sb)->s_itb_per_group,
     448             :                                            EXT4_FMR_OWN_INODES);
     449      217071 :                 if (error)
     450           0 :                         goto err;
     451             :         }
     452             : 
     453             :         /* Sort the list */
     454         813 :         list_sort(NULL, meta_list, ext4_getfsmap_compare);
     455             : 
     456             :         /* Merge adjacent extents */
     457         813 :         ext4_getfsmap_merge_fixed_metadata(meta_list);
     458             : 
     459         813 :         return 0;
     460           0 : err:
     461           0 :         ext4_getfsmap_free_fixed_metadata(meta_list);
     462           0 :         return error;
     463             : }
     464             : 
     465             : /* Execute a getfsmap query against the buddy bitmaps */
     466         813 : static int ext4_getfsmap_datadev(struct super_block *sb,
     467             :                                  struct ext4_fsmap *keys,
     468             :                                  struct ext4_getfsmap_info *info)
     469             : {
     470         813 :         struct ext4_sb_info *sbi = EXT4_SB(sb);
     471         813 :         ext4_fsblk_t start_fsb;
     472         813 :         ext4_fsblk_t end_fsb;
     473         813 :         ext4_fsblk_t bofs;
     474         813 :         ext4_fsblk_t eofs;
     475         813 :         ext4_group_t start_ag;
     476         813 :         ext4_group_t end_ag;
     477         813 :         ext4_grpblk_t first_cluster;
     478         813 :         ext4_grpblk_t last_cluster;
     479         813 :         int error = 0;
     480             : 
     481         813 :         bofs = le32_to_cpu(sbi->s_es->s_first_data_block);
     482         813 :         eofs = ext4_blocks_count(sbi->s_es);
     483         813 :         if (keys[0].fmr_physical >= eofs)
     484             :                 return 0;
     485         813 :         else if (keys[0].fmr_physical < bofs)
     486           0 :                 keys[0].fmr_physical = bofs;
     487         813 :         if (keys[1].fmr_physical >= eofs)
     488         813 :                 keys[1].fmr_physical = eofs - 1;
     489         813 :         if (keys[1].fmr_physical < keys[0].fmr_physical)
     490             :                 return 0;
     491         813 :         start_fsb = keys[0].fmr_physical;
     492         813 :         end_fsb = keys[1].fmr_physical;
     493             : 
     494             :         /* Determine first and last group to examine based on start and end */
     495         813 :         ext4_get_group_no_and_offset(sb, start_fsb, &start_ag, &first_cluster);
     496         813 :         ext4_get_group_no_and_offset(sb, end_fsb, &end_ag, &last_cluster);
     497             : 
     498             :         /*
     499             :          * Convert the fsmap low/high keys to bg based keys.  Initialize
     500             :          * low to the fsmap low key and max out the high key to the end
     501             :          * of the bg.
     502             :          */
     503         813 :         info->gfi_low = keys[0];
     504         813 :         info->gfi_low.fmr_physical = EXT4_C2B(sbi, first_cluster);
     505         813 :         info->gfi_low.fmr_length = 0;
     506             : 
     507         813 :         memset(&info->gfi_high, 0xFF, sizeof(info->gfi_high));
     508             : 
     509             :         /* Assemble a list of all the fixed-location metadata. */
     510         813 :         error = ext4_getfsmap_find_fixed_metadata(sb, &info->gfi_meta_list);
     511         813 :         if (error)
     512           0 :                 goto err;
     513             : 
     514             :         /* Query each bg */
     515         813 :         for (info->gfi_agno = start_ag;
     516        2481 :              info->gfi_agno <= end_ag;
     517        1668 :              info->gfi_agno++) {
     518             :                 /*
     519             :                  * Set the bg high key from the fsmap high key if this
     520             :                  * is the last bg that we're querying.
     521             :                  */
     522        2475 :                 if (info->gfi_agno == end_ag) {
     523           6 :                         info->gfi_high = keys[1];
     524           6 :                         info->gfi_high.fmr_physical = EXT4_C2B(sbi,
     525             :                                         last_cluster);
     526           6 :                         info->gfi_high.fmr_length = 0;
     527             :                 }
     528             : 
     529        2475 :                 trace_ext4_fsmap_low_key(sb, info->gfi_dev, info->gfi_agno,
     530             :                                 info->gfi_low.fmr_physical,
     531             :                                 info->gfi_low.fmr_length,
     532             :                                 info->gfi_low.fmr_owner);
     533             : 
     534        2475 :                 trace_ext4_fsmap_high_key(sb, info->gfi_dev, info->gfi_agno,
     535             :                                 info->gfi_high.fmr_physical,
     536             :                                 info->gfi_high.fmr_length,
     537             :                                 info->gfi_high.fmr_owner);
     538             : 
     539        7425 :                 error = ext4_mballoc_query_range(sb, info->gfi_agno,
     540        2475 :                                 EXT4_B2C(sbi, info->gfi_low.fmr_physical),
     541        2475 :                                 EXT4_B2C(sbi, info->gfi_high.fmr_physical),
     542             :                                 ext4_getfsmap_datadev_helper, info);
     543        2475 :                 if (error)
     544         807 :                         goto err;
     545             : 
     546             :                 /*
     547             :                  * Set the bg low key to the start of the bg prior to
     548             :                  * moving on to the next bg.
     549             :                  */
     550        1668 :                 if (info->gfi_agno == start_ag)
     551         136 :                         memset(&info->gfi_low, 0, sizeof(info->gfi_low));
     552             :         }
     553             : 
     554             :         /* Do we have a retained free extent? */
     555           6 :         if (info->gfi_lastfree.fmr_owner) {
     556           6 :                 error = ext4_getfsmap_helper(sb, info, &info->gfi_lastfree);
     557           6 :                 if (error)
     558           1 :                         goto err;
     559             :         }
     560             : 
     561             :         /* Report any gaps at the end of the bg */
     562           5 :         info->gfi_last = true;
     563           5 :         error = ext4_getfsmap_datadev_helper(sb, end_ag, last_cluster, 0, info);
     564           5 :         if (error)
     565           0 :                 goto err;
     566             : 
     567           5 : err:
     568         813 :         ext4_getfsmap_free_fixed_metadata(&info->gfi_meta_list);
     569         813 :         return error;
     570             : }
     571             : 
     572             : /* Do we recognize the device? */
     573        1626 : static bool ext4_getfsmap_is_valid_device(struct super_block *sb,
     574             :                                           struct ext4_fsmap *fm)
     575             : {
     576        1626 :         if (fm->fmr_device == 0 || fm->fmr_device == UINT_MAX ||
     577         808 :             fm->fmr_device == new_encode_dev(sb->s_bdev->bd_dev))
     578             :                 return true;
     579           0 :         if (EXT4_SB(sb)->s_journal_bdev &&
     580           0 :             fm->fmr_device == new_encode_dev(EXT4_SB(sb)->s_journal_bdev->bd_dev))
     581           0 :                 return true;
     582             :         return false;
     583             : }
     584             : 
     585             : /* Ensure that the low key is less than the high key. */
     586         813 : static bool ext4_getfsmap_check_keys(struct ext4_fsmap *low_key,
     587             :                                      struct ext4_fsmap *high_key)
     588             : {
     589         813 :         if (low_key->fmr_device > high_key->fmr_device)
     590             :                 return false;
     591         813 :         if (low_key->fmr_device < high_key->fmr_device)
     592             :                 return true;
     593             : 
     594           0 :         if (low_key->fmr_physical > high_key->fmr_physical)
     595             :                 return false;
     596           0 :         if (low_key->fmr_physical < high_key->fmr_physical)
     597             :                 return true;
     598             : 
     599           0 :         if (low_key->fmr_owner > high_key->fmr_owner)
     600             :                 return false;
     601           0 :         if (low_key->fmr_owner < high_key->fmr_owner)
     602           0 :                 return true;
     603             : 
     604             :         return false;
     605             : }
     606             : 
     607             : #define EXT4_GETFSMAP_DEVS      2
     608             : /*
     609             :  * Get filesystem's extents as described in head, and format for
     610             :  * output.  Calls formatter to fill the user's buffer until all
     611             :  * extents are mapped, until the passed-in head->fmh_count slots have
     612             :  * been filled, or until the formatter short-circuits the loop, if it
     613             :  * is tracking filled-in extents on its own.
     614             :  *
     615             :  * Key to Confusion
     616             :  * ----------------
     617             :  * There are multiple levels of keys and counters at work here:
     618             :  * _fsmap_head.fmh_keys         -- low and high fsmap keys passed in;
     619             :  *                                 these reflect fs-wide block addrs.
     620             :  * dkeys                        -- fmh_keys used to query each device;
     621             :  *                                 these are fmh_keys but w/ the low key
     622             :  *                                 bumped up by fmr_length.
     623             :  * _getfsmap_info.gfi_next_fsblk-- next fs block we expect to see; this
     624             :  *                                 is how we detect gaps in the fsmap
     625             :  *                                 records and report them.
     626             :  * _getfsmap_info.gfi_low/high  -- per-bg low/high keys computed from
     627             :  *                                 dkeys; used to query the free space.
     628             :  */
     629         813 : int ext4_getfsmap(struct super_block *sb, struct ext4_fsmap_head *head,
     630             :                   ext4_fsmap_format_t formatter, void *arg)
     631             : {
     632         813 :         struct ext4_fsmap dkeys[2];     /* per-dev keys */
     633         813 :         struct ext4_getfsmap_dev handlers[EXT4_GETFSMAP_DEVS];
     634         813 :         struct ext4_getfsmap_info info = { NULL };
     635         813 :         int i;
     636         813 :         int error = 0;
     637             : 
     638         813 :         if (head->fmh_iflags & ~FMH_IF_VALID)
     639             :                 return -EINVAL;
     640         813 :         if (!ext4_getfsmap_is_valid_device(sb, &head->fmh_keys[0]) ||
     641         813 :             !ext4_getfsmap_is_valid_device(sb, &head->fmh_keys[1]))
     642             :                 return -EINVAL;
     643             : 
     644         813 :         head->fmh_entries = 0;
     645             : 
     646             :         /* Set up our device handlers. */
     647         813 :         memset(handlers, 0, sizeof(handlers));
     648         813 :         handlers[0].gfd_dev = new_encode_dev(sb->s_bdev->bd_dev);
     649         813 :         handlers[0].gfd_fn = ext4_getfsmap_datadev;
     650         813 :         if (EXT4_SB(sb)->s_journal_bdev) {
     651           0 :                 handlers[1].gfd_dev = new_encode_dev(
     652             :                                 EXT4_SB(sb)->s_journal_bdev->bd_dev);
     653           0 :                 handlers[1].gfd_fn = ext4_getfsmap_logdev;
     654             :         }
     655             : 
     656         813 :         sort(handlers, EXT4_GETFSMAP_DEVS, sizeof(struct ext4_getfsmap_dev),
     657             :                         ext4_getfsmap_dev_compare, NULL);
     658             : 
     659             :         /*
     660             :          * To continue where we left off, we allow userspace to use the
     661             :          * last mapping from a previous call as the low key of the next.
     662             :          * This is identified by a non-zero length in the low key. We
     663             :          * have to increment the low key in this scenario to ensure we
     664             :          * don't return the same mapping again, and instead return the
     665             :          * very next mapping.
     666             :          *
     667             :          * Bump the physical offset as there can be no other mapping for
     668             :          * the same physical block range.
     669             :          */
     670         813 :         dkeys[0] = head->fmh_keys[0];
     671         813 :         dkeys[0].fmr_physical += dkeys[0].fmr_length;
     672         813 :         dkeys[0].fmr_owner = 0;
     673         813 :         dkeys[0].fmr_length = 0;
     674         813 :         memset(&dkeys[1], 0xFF, sizeof(struct ext4_fsmap));
     675             : 
     676         813 :         if (!ext4_getfsmap_check_keys(dkeys, &head->fmh_keys[1]))
     677             :                 return -EINVAL;
     678             : 
     679         813 :         info.gfi_next_fsblk = head->fmh_keys[0].fmr_physical +
     680         813 :                           head->fmh_keys[0].fmr_length;
     681         813 :         info.gfi_formatter = formatter;
     682         813 :         info.gfi_format_arg = arg;
     683         813 :         info.gfi_head = head;
     684             : 
     685             :         /* For each device we support... */
     686        1631 :         for (i = 0; i < EXT4_GETFSMAP_DEVS; i++) {
     687             :                 /* Is this device within the range the user asked for? */
     688        1626 :                 if (!handlers[i].gfd_fn)
     689         813 :                         continue;
     690         813 :                 if (head->fmh_keys[0].fmr_device > handlers[i].gfd_dev)
     691           0 :                         continue;
     692         813 :                 if (head->fmh_keys[1].fmr_device < handlers[i].gfd_dev)
     693             :                         break;
     694             : 
     695             :                 /*
     696             :                  * If this device number matches the high key, we have
     697             :                  * to pass the high key to the handler to limit the
     698             :                  * query results.  If the device number exceeds the
     699             :                  * low key, zero out the low key so that we get
     700             :                  * everything from the beginning.
     701             :                  */
     702         813 :                 if (handlers[i].gfd_dev == head->fmh_keys[1].fmr_device)
     703           0 :                         dkeys[1] = head->fmh_keys[1];
     704         813 :                 if (handlers[i].gfd_dev > head->fmh_keys[0].fmr_device)
     705           5 :                         memset(&dkeys[0], 0, sizeof(struct ext4_fsmap));
     706             : 
     707         813 :                 info.gfi_dev = handlers[i].gfd_dev;
     708         813 :                 info.gfi_last = false;
     709         813 :                 info.gfi_agno = -1;
     710         813 :                 error = handlers[i].gfd_fn(sb, dkeys, &info);
     711         813 :                 if (error)
     712             :                         break;
     713           5 :                 info.gfi_next_fsblk = 0;
     714             :         }
     715             : 
     716         813 :         head->fmh_oflags = FMH_OF_DEV_T;
     717         813 :         return error;
     718             : }

Generated by: LCOV version 1.14