sysv.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _SYSV_H
  3. #define _SYSV_H
  4. #include <linux/buffer_head.h>
  5. typedef __u16 __bitwise __fs16;
  6. typedef __u32 __bitwise __fs32;
  7. #include <linux/sysv_fs.h>
  8. /*
  9. * SystemV/V7/Coherent super-block data in memory
  10. *
  11. * The SystemV/V7/Coherent superblock contains dynamic data (it gets modified
  12. * while the system is running). This is in contrast to the Minix and Berkeley
  13. * filesystems (where the superblock is never modified). This affects the
  14. * sync() operation: we must keep the superblock in a disk buffer and use this
  15. * one as our "working copy".
  16. */
  17. struct sysv_sb_info {
  18. struct super_block *s_sb; /* VFS superblock */
  19. int s_type; /* file system type: FSTYPE_{XENIX|SYSV|COH} */
  20. char s_bytesex; /* bytesex (le/be/pdp) */
  21. char s_truncate; /* if 1: names > SYSV_NAMELEN chars are truncated */
  22. /* if 0: they are disallowed (ENAMETOOLONG) */
  23. unsigned int s_inodes_per_block; /* number of inodes per block */
  24. unsigned int s_inodes_per_block_1; /* inodes_per_block - 1 */
  25. unsigned int s_inodes_per_block_bits; /* log2(inodes_per_block) */
  26. unsigned int s_ind_per_block; /* number of indirections per block */
  27. unsigned int s_ind_per_block_bits; /* log2(ind_per_block) */
  28. unsigned int s_ind_per_block_2; /* ind_per_block ^ 2 */
  29. unsigned int s_toobig_block; /* 10 + ipb + ipb^2 + ipb^3 */
  30. unsigned int s_block_base; /* physical block number of block 0 */
  31. unsigned short s_fic_size; /* free inode cache size, NICINOD */
  32. unsigned short s_flc_size; /* free block list chunk size, NICFREE */
  33. /* The superblock is kept in one or two disk buffers: */
  34. struct buffer_head *s_bh1;
  35. struct buffer_head *s_bh2;
  36. /* These are pointers into the disk buffer, to compensate for
  37. different superblock layout. */
  38. char * s_sbd1; /* entire superblock data, for part 1 */
  39. char * s_sbd2; /* entire superblock data, for part 2 */
  40. __fs16 *s_sb_fic_count; /* pointer to s_sbd->s_ninode */
  41. sysv_ino_t *s_sb_fic_inodes; /* pointer to s_sbd->s_inode */
  42. __fs16 *s_sb_total_free_inodes; /* pointer to s_sbd->s_tinode */
  43. __fs16 *s_bcache_count; /* pointer to s_sbd->s_nfree */
  44. sysv_zone_t *s_bcache; /* pointer to s_sbd->s_free */
  45. __fs32 *s_free_blocks; /* pointer to s_sbd->s_tfree */
  46. __fs32 *s_sb_time; /* pointer to s_sbd->s_time */
  47. __fs32 *s_sb_state; /* pointer to s_sbd->s_state, only FSTYPE_SYSV */
  48. /* We keep those superblock entities that don't change here;
  49. this saves us an indirection and perhaps a conversion. */
  50. u32 s_firstinodezone; /* index of first inode zone */
  51. u32 s_firstdatazone; /* same as s_sbd->s_isize */
  52. u32 s_ninodes; /* total number of inodes */
  53. u32 s_ndatazones; /* total number of data zones */
  54. u32 s_nzones; /* same as s_sbd->s_fsize */
  55. u16 s_namelen; /* max length of dir entry */
  56. int s_forced_ro;
  57. struct mutex s_lock;
  58. };
  59. /*
  60. * SystemV/V7/Coherent FS inode data in memory
  61. */
  62. struct sysv_inode_info {
  63. __fs32 i_data[13];
  64. u32 i_dir_start_lookup;
  65. struct inode vfs_inode;
  66. };
  67. static inline struct sysv_inode_info *SYSV_I(struct inode *inode)
  68. {
  69. return container_of(inode, struct sysv_inode_info, vfs_inode);
  70. }
  71. static inline struct sysv_sb_info *SYSV_SB(struct super_block *sb)
  72. {
  73. return sb->s_fs_info;
  74. }
  75. /* identify the FS in memory */
  76. enum {
  77. FSTYPE_NONE = 0,
  78. FSTYPE_XENIX,
  79. FSTYPE_SYSV4,
  80. FSTYPE_SYSV2,
  81. FSTYPE_COH,
  82. FSTYPE_V7,
  83. FSTYPE_AFS,
  84. FSTYPE_END,
  85. };
  86. #define SYSV_MAGIC_BASE 0x012FF7B3
  87. #define XENIX_SUPER_MAGIC (SYSV_MAGIC_BASE+FSTYPE_XENIX)
  88. #define SYSV4_SUPER_MAGIC (SYSV_MAGIC_BASE+FSTYPE_SYSV4)
  89. #define SYSV2_SUPER_MAGIC (SYSV_MAGIC_BASE+FSTYPE_SYSV2)
  90. #define COH_SUPER_MAGIC (SYSV_MAGIC_BASE+FSTYPE_COH)
  91. /* Admissible values for i_nlink: 0.._LINK_MAX */
  92. enum {
  93. XENIX_LINK_MAX = 126, /* ?? */
  94. SYSV_LINK_MAX = 126, /* 127? 251? */
  95. V7_LINK_MAX = 126, /* ?? */
  96. COH_LINK_MAX = 10000,
  97. };
  98. static inline void dirty_sb(struct super_block *sb)
  99. {
  100. struct sysv_sb_info *sbi = SYSV_SB(sb);
  101. mark_buffer_dirty(sbi->s_bh1);
  102. if (sbi->s_bh1 != sbi->s_bh2)
  103. mark_buffer_dirty(sbi->s_bh2);
  104. }
  105. /* ialloc.c */
  106. extern struct sysv_inode *sysv_raw_inode(struct super_block *, unsigned,
  107. struct buffer_head **);
  108. extern struct inode * sysv_new_inode(const struct inode *, umode_t);
  109. extern void sysv_free_inode(struct inode *);
  110. extern unsigned long sysv_count_free_inodes(struct super_block *);
  111. /* balloc.c */
  112. extern sysv_zone_t sysv_new_block(struct super_block *);
  113. extern void sysv_free_block(struct super_block *, sysv_zone_t);
  114. extern unsigned long sysv_count_free_blocks(struct super_block *);
  115. /* itree.c */
  116. extern void sysv_truncate(struct inode *);
  117. extern int sysv_prepare_chunk(struct page *page, loff_t pos, unsigned len);
  118. /* inode.c */
  119. extern struct inode *sysv_iget(struct super_block *, unsigned int);
  120. extern int sysv_write_inode(struct inode *, struct writeback_control *wbc);
  121. extern int sysv_sync_inode(struct inode *);
  122. extern void sysv_set_inode(struct inode *, dev_t);
  123. extern int sysv_getattr(const struct path *, struct kstat *, u32, unsigned int);
  124. extern int sysv_init_icache(void);
  125. extern void sysv_destroy_icache(void);
  126. /* dir.c */
  127. extern struct sysv_dir_entry *sysv_find_entry(struct dentry *, struct page **);
  128. extern int sysv_add_link(struct dentry *, struct inode *);
  129. extern int sysv_delete_entry(struct sysv_dir_entry *, struct page *);
  130. extern int sysv_make_empty(struct inode *, struct inode *);
  131. extern int sysv_empty_dir(struct inode *);
  132. extern void sysv_set_link(struct sysv_dir_entry *, struct page *,
  133. struct inode *);
  134. extern struct sysv_dir_entry *sysv_dotdot(struct inode *, struct page **);
  135. extern ino_t sysv_inode_by_name(struct dentry *);
  136. extern const struct inode_operations sysv_file_inode_operations;
  137. extern const struct inode_operations sysv_dir_inode_operations;
  138. extern const struct file_operations sysv_file_operations;
  139. extern const struct file_operations sysv_dir_operations;
  140. extern const struct address_space_operations sysv_aops;
  141. extern const struct super_operations sysv_sops;
  142. extern const struct dentry_operations sysv_dentry_operations;
  143. enum {
  144. BYTESEX_LE,
  145. BYTESEX_PDP,
  146. BYTESEX_BE,
  147. };
  148. static inline u32 PDP_swab(u32 x)
  149. {
  150. #ifdef __LITTLE_ENDIAN
  151. return ((x & 0xffff) << 16) | ((x & 0xffff0000) >> 16);
  152. #else
  153. #ifdef __BIG_ENDIAN
  154. return ((x & 0xff00ff) << 8) | ((x & 0xff00ff00) >> 8);
  155. #else
  156. #error BYTESEX
  157. #endif
  158. #endif
  159. }
  160. static inline __u32 fs32_to_cpu(struct sysv_sb_info *sbi, __fs32 n)
  161. {
  162. if (sbi->s_bytesex == BYTESEX_PDP)
  163. return PDP_swab((__force __u32)n);
  164. else if (sbi->s_bytesex == BYTESEX_LE)
  165. return le32_to_cpu((__force __le32)n);
  166. else
  167. return be32_to_cpu((__force __be32)n);
  168. }
  169. static inline __fs32 cpu_to_fs32(struct sysv_sb_info *sbi, __u32 n)
  170. {
  171. if (sbi->s_bytesex == BYTESEX_PDP)
  172. return (__force __fs32)PDP_swab(n);
  173. else if (sbi->s_bytesex == BYTESEX_LE)
  174. return (__force __fs32)cpu_to_le32(n);
  175. else
  176. return (__force __fs32)cpu_to_be32(n);
  177. }
  178. static inline __fs32 fs32_add(struct sysv_sb_info *sbi, __fs32 *n, int d)
  179. {
  180. if (sbi->s_bytesex == BYTESEX_PDP)
  181. *(__u32*)n = PDP_swab(PDP_swab(*(__u32*)n)+d);
  182. else if (sbi->s_bytesex == BYTESEX_LE)
  183. le32_add_cpu((__le32 *)n, d);
  184. else
  185. be32_add_cpu((__be32 *)n, d);
  186. return *n;
  187. }
  188. static inline __u16 fs16_to_cpu(struct sysv_sb_info *sbi, __fs16 n)
  189. {
  190. if (sbi->s_bytesex != BYTESEX_BE)
  191. return le16_to_cpu((__force __le16)n);
  192. else
  193. return be16_to_cpu((__force __be16)n);
  194. }
  195. static inline __fs16 cpu_to_fs16(struct sysv_sb_info *sbi, __u16 n)
  196. {
  197. if (sbi->s_bytesex != BYTESEX_BE)
  198. return (__force __fs16)cpu_to_le16(n);
  199. else
  200. return (__force __fs16)cpu_to_be16(n);
  201. }
  202. static inline __fs16 fs16_add(struct sysv_sb_info *sbi, __fs16 *n, int d)
  203. {
  204. if (sbi->s_bytesex != BYTESEX_BE)
  205. le16_add_cpu((__le16 *)n, d);
  206. else
  207. be16_add_cpu((__be16 *)n, d);
  208. return *n;
  209. }
  210. #endif /* _SYSV_H */