squashfs.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Squashfs - a compressed read only filesystem for Linux
  4. *
  5. * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
  6. * Phillip Lougher <phillip@squashfs.org.uk>
  7. *
  8. * squashfs.h
  9. */
  10. #define TRACE(s, args...) pr_debug("SQUASHFS: "s, ## args)
  11. #define ERROR(s, args...) pr_err("SQUASHFS error: "s, ## args)
  12. #define WARNING(s, args...) pr_warn("SQUASHFS: "s, ## args)
  13. #ifdef CONFIG_SQUASHFS_FILE_CACHE
  14. #define SQUASHFS_READ_PAGES msblk->max_thread_num
  15. #else
  16. #define SQUASHFS_READ_PAGES 0
  17. #endif
  18. /* block.c */
  19. extern int squashfs_read_data(struct super_block *, u64, int, u64 *,
  20. struct squashfs_page_actor *);
  21. /* cache.c */
  22. extern struct squashfs_cache *squashfs_cache_init(char *, int, int);
  23. extern void squashfs_cache_delete(struct squashfs_cache *);
  24. extern struct squashfs_cache_entry *squashfs_cache_get(struct super_block *,
  25. struct squashfs_cache *, u64, int);
  26. extern void squashfs_cache_put(struct squashfs_cache_entry *);
  27. extern int squashfs_copy_data(void *, struct squashfs_cache_entry *, int, int);
  28. extern int squashfs_read_metadata(struct super_block *, void *, u64 *,
  29. int *, int);
  30. extern struct squashfs_cache_entry *squashfs_get_fragment(struct super_block *,
  31. u64, int);
  32. extern struct squashfs_cache_entry *squashfs_get_datablock(struct super_block *,
  33. u64, int);
  34. extern void *squashfs_read_table(struct super_block *, u64, int);
  35. /* decompressor.c */
  36. extern const struct squashfs_decompressor *squashfs_lookup_decompressor(int);
  37. extern void *squashfs_decompressor_setup(struct super_block *, unsigned short);
  38. /* decompressor_xxx.c */
  39. struct squashfs_decompressor_thread_ops {
  40. void * (*create)(struct squashfs_sb_info *msblk, void *comp_opts);
  41. void (*destroy)(struct squashfs_sb_info *msblk);
  42. int (*decompress)(struct squashfs_sb_info *msblk, struct bio *bio,
  43. int offset, int length, struct squashfs_page_actor *output);
  44. int (*max_decompressors)(void);
  45. };
  46. #ifdef CONFIG_SQUASHFS_DECOMP_SINGLE
  47. extern const struct squashfs_decompressor_thread_ops squashfs_decompressor_single;
  48. #endif
  49. #ifdef CONFIG_SQUASHFS_DECOMP_MULTI
  50. extern const struct squashfs_decompressor_thread_ops squashfs_decompressor_multi;
  51. #endif
  52. #ifdef CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU
  53. extern const struct squashfs_decompressor_thread_ops squashfs_decompressor_percpu;
  54. #endif
  55. /* export.c */
  56. extern __le64 *squashfs_read_inode_lookup_table(struct super_block *, u64, u64,
  57. unsigned int);
  58. /* fragment.c */
  59. extern int squashfs_frag_lookup(struct super_block *, unsigned int, u64 *);
  60. extern __le64 *squashfs_read_fragment_index_table(struct super_block *,
  61. u64, u64, unsigned int);
  62. /* file.c */
  63. void squashfs_copy_cache(struct folio *, struct squashfs_cache_entry *,
  64. size_t bytes, size_t offset);
  65. /* file_xxx.c */
  66. int squashfs_readpage_block(struct folio *, u64 block, int bsize, int expected);
  67. /* id.c */
  68. extern int squashfs_get_id(struct super_block *, unsigned int, unsigned int *);
  69. extern __le64 *squashfs_read_id_index_table(struct super_block *, u64, u64,
  70. unsigned short);
  71. /* inode.c */
  72. extern struct inode *squashfs_iget(struct super_block *, long long,
  73. unsigned int);
  74. extern int squashfs_read_inode(struct inode *, long long);
  75. /* xattr.c */
  76. extern ssize_t squashfs_listxattr(struct dentry *, char *, size_t);
  77. /*
  78. * Inodes, files, decompressor and xattr operations
  79. */
  80. /* dir.c */
  81. extern const struct file_operations squashfs_dir_ops;
  82. /* export.c */
  83. extern const struct export_operations squashfs_export_ops;
  84. /* file.c */
  85. extern const struct address_space_operations squashfs_aops;
  86. /* inode.c */
  87. extern const struct inode_operations squashfs_inode_ops;
  88. extern const struct file_operations squashfs_file_operations;
  89. /* namei.c */
  90. extern const struct inode_operations squashfs_dir_inode_ops;
  91. /* symlink.c */
  92. extern const struct address_space_operations squashfs_symlink_aops;
  93. extern const struct inode_operations squashfs_symlink_inode_ops;
  94. /* xattr.c */
  95. extern const struct xattr_handler * const squashfs_xattr_handlers[];