~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/iomap/seek.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * Copyright (C) 2017 Red Hat, Inc.
  4  * Copyright (c) 2018-2021 Christoph Hellwig.
  5  */
  6 #include <linux/module.h>
  7 #include <linux/compiler.h>
  8 #include <linux/fs.h>
  9 #include <linux/iomap.h>
 10 #include <linux/pagemap.h>
 11 #include <linux/pagevec.h>
 12 
 13 static loff_t iomap_seek_hole_iter(const struct iomap_iter *iter,
 14                 loff_t *hole_pos)
 15 {
 16         loff_t length = iomap_length(iter);
 17 
 18         switch (iter->iomap.type) {
 19         case IOMAP_UNWRITTEN:
 20                 *hole_pos = mapping_seek_hole_data(iter->inode->i_mapping,
 21                                 iter->pos, iter->pos + length, SEEK_HOLE);
 22                 if (*hole_pos == iter->pos + length)
 23                         return length;
 24                 return 0;
 25         case IOMAP_HOLE:
 26                 *hole_pos = iter->pos;
 27                 return 0;
 28         default:
 29                 return length;
 30         }
 31 }
 32 
 33 loff_t
 34 iomap_seek_hole(struct inode *inode, loff_t pos, const struct iomap_ops *ops)
 35 {
 36         loff_t size = i_size_read(inode);
 37         struct iomap_iter iter = {
 38                 .inode  = inode,
 39                 .pos    = pos,
 40                 .flags  = IOMAP_REPORT,
 41         };
 42         int ret;
 43 
 44         /* Nothing to be found before or beyond the end of the file. */
 45         if (pos < 0 || pos >= size)
 46                 return -ENXIO;
 47 
 48         iter.len = size - pos;
 49         while ((ret = iomap_iter(&iter, ops)) > 0)
 50                 iter.processed = iomap_seek_hole_iter(&iter, &pos);
 51         if (ret < 0)
 52                 return ret;
 53         if (iter.len) /* found hole before EOF */
 54                 return pos;
 55         return size;
 56 }
 57 EXPORT_SYMBOL_GPL(iomap_seek_hole);
 58 
 59 static loff_t iomap_seek_data_iter(const struct iomap_iter *iter,
 60                 loff_t *hole_pos)
 61 {
 62         loff_t length = iomap_length(iter);
 63 
 64         switch (iter->iomap.type) {
 65         case IOMAP_HOLE:
 66                 return length;
 67         case IOMAP_UNWRITTEN:
 68                 *hole_pos = mapping_seek_hole_data(iter->inode->i_mapping,
 69                                 iter->pos, iter->pos + length, SEEK_DATA);
 70                 if (*hole_pos < 0)
 71                         return length;
 72                 return 0;
 73         default:
 74                 *hole_pos = iter->pos;
 75                 return 0;
 76         }
 77 }
 78 
 79 loff_t
 80 iomap_seek_data(struct inode *inode, loff_t pos, const struct iomap_ops *ops)
 81 {
 82         loff_t size = i_size_read(inode);
 83         struct iomap_iter iter = {
 84                 .inode  = inode,
 85                 .pos    = pos,
 86                 .flags  = IOMAP_REPORT,
 87         };
 88         int ret;
 89 
 90         /* Nothing to be found before or beyond the end of the file. */
 91         if (pos < 0 || pos >= size)
 92                 return -ENXIO;
 93 
 94         iter.len = size - pos;
 95         while ((ret = iomap_iter(&iter, ops)) > 0)
 96                 iter.processed = iomap_seek_data_iter(&iter, &pos);
 97         if (ret < 0)
 98                 return ret;
 99         if (iter.len) /* found data before EOF */
100                 return pos;
101         /* We've reached the end of the file without finding data */
102         return -ENXIO;
103 }
104 EXPORT_SYMBOL_GPL(iomap_seek_data);
105 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php