volume.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * volume.h - Defines for volume structures in NTFS Linux kernel driver. Part
  3. * of the Linux-NTFS project.
  4. *
  5. * Copyright (c) 2001-2006 Anton Altaparmakov
  6. * Copyright (c) 2002 Richard Russon
  7. *
  8. * This program/include file is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as published
  10. * by the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program/include file is distributed in the hope that it will be
  14. * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  15. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program (in the main directory of the Linux-NTFS
  20. * distribution in the file COPYING); if not, write to the Free Software
  21. * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. #ifndef _LINUX_NTFS_VOLUME_H
  24. #define _LINUX_NTFS_VOLUME_H
  25. #include <linux/rwsem.h>
  26. #include <linux/uidgid.h>
  27. #include "types.h"
  28. #include "layout.h"
  29. /*
  30. * The NTFS in memory super block structure.
  31. */
  32. typedef struct {
  33. /*
  34. * FIXME: Reorder to have commonly used together element within the
  35. * same cache line, aiming at a cache line size of 32 bytes. Aim for
  36. * 64 bytes for less commonly used together elements. Put most commonly
  37. * used elements to front of structure. Obviously do this only when the
  38. * structure has stabilized... (AIA)
  39. */
  40. /* Device specifics. */
  41. struct super_block *sb; /* Pointer back to the super_block. */
  42. LCN nr_blocks; /* Number of sb->s_blocksize bytes
  43. sized blocks on the device. */
  44. /* Configuration provided by user at mount time. */
  45. unsigned long flags; /* Miscellaneous flags, see below. */
  46. kuid_t uid; /* uid that files will be mounted as. */
  47. kgid_t gid; /* gid that files will be mounted as. */
  48. umode_t fmask; /* The mask for file permissions. */
  49. umode_t dmask; /* The mask for directory
  50. permissions. */
  51. u8 mft_zone_multiplier; /* Initial mft zone multiplier. */
  52. u8 on_errors; /* What to do on filesystem errors. */
  53. /* NTFS bootsector provided information. */
  54. u16 sector_size; /* in bytes */
  55. u8 sector_size_bits; /* log2(sector_size) */
  56. u32 cluster_size; /* in bytes */
  57. u32 cluster_size_mask; /* cluster_size - 1 */
  58. u8 cluster_size_bits; /* log2(cluster_size) */
  59. u32 mft_record_size; /* in bytes */
  60. u32 mft_record_size_mask; /* mft_record_size - 1 */
  61. u8 mft_record_size_bits; /* log2(mft_record_size) */
  62. u32 index_record_size; /* in bytes */
  63. u32 index_record_size_mask; /* index_record_size - 1 */
  64. u8 index_record_size_bits; /* log2(index_record_size) */
  65. LCN nr_clusters; /* Volume size in clusters == number of
  66. bits in lcn bitmap. */
  67. LCN mft_lcn; /* Cluster location of mft data. */
  68. LCN mftmirr_lcn; /* Cluster location of copy of mft. */
  69. u64 serial_no; /* The volume serial number. */
  70. /* Mount specific NTFS information. */
  71. u32 upcase_len; /* Number of entries in upcase[]. */
  72. ntfschar *upcase; /* The upcase table. */
  73. s32 attrdef_size; /* Size of the attribute definition
  74. table in bytes. */
  75. ATTR_DEF *attrdef; /* Table of attribute definitions.
  76. Obtained from FILE_AttrDef. */
  77. #ifdef NTFS_RW
  78. /* Variables used by the cluster and mft allocators. */
  79. s64 mft_data_pos; /* Mft record number at which to
  80. allocate the next mft record. */
  81. LCN mft_zone_start; /* First cluster of the mft zone. */
  82. LCN mft_zone_end; /* First cluster beyond the mft zone. */
  83. LCN mft_zone_pos; /* Current position in the mft zone. */
  84. LCN data1_zone_pos; /* Current position in the first data
  85. zone. */
  86. LCN data2_zone_pos; /* Current position in the second data
  87. zone. */
  88. #endif /* NTFS_RW */
  89. struct inode *mft_ino; /* The VFS inode of $MFT. */
  90. struct inode *mftbmp_ino; /* Attribute inode for $MFT/$BITMAP. */
  91. struct rw_semaphore mftbmp_lock; /* Lock for serializing accesses to the
  92. mft record bitmap ($MFT/$BITMAP). */
  93. #ifdef NTFS_RW
  94. struct inode *mftmirr_ino; /* The VFS inode of $MFTMirr. */
  95. int mftmirr_size; /* Size of mft mirror in mft records. */
  96. struct inode *logfile_ino; /* The VFS inode of $LogFile. */
  97. #endif /* NTFS_RW */
  98. struct inode *lcnbmp_ino; /* The VFS inode of $Bitmap. */
  99. struct rw_semaphore lcnbmp_lock; /* Lock for serializing accesses to the
  100. cluster bitmap ($Bitmap/$DATA). */
  101. struct inode *vol_ino; /* The VFS inode of $Volume. */
  102. VOLUME_FLAGS vol_flags; /* Volume flags. */
  103. u8 major_ver; /* Ntfs major version of volume. */
  104. u8 minor_ver; /* Ntfs minor version of volume. */
  105. struct inode *root_ino; /* The VFS inode of the root
  106. directory. */
  107. struct inode *secure_ino; /* The VFS inode of $Secure (NTFS3.0+
  108. only, otherwise NULL). */
  109. struct inode *extend_ino; /* The VFS inode of $Extend (NTFS3.0+
  110. only, otherwise NULL). */
  111. #ifdef NTFS_RW
  112. /* $Quota stuff is NTFS3.0+ specific. Unused/NULL otherwise. */
  113. struct inode *quota_ino; /* The VFS inode of $Quota. */
  114. struct inode *quota_q_ino; /* Attribute inode for $Quota/$Q. */
  115. /* $UsnJrnl stuff is NTFS3.0+ specific. Unused/NULL otherwise. */
  116. struct inode *usnjrnl_ino; /* The VFS inode of $UsnJrnl. */
  117. struct inode *usnjrnl_max_ino; /* Attribute inode for $UsnJrnl/$Max. */
  118. struct inode *usnjrnl_j_ino; /* Attribute inode for $UsnJrnl/$J. */
  119. #endif /* NTFS_RW */
  120. struct nls_table *nls_map;
  121. } ntfs_volume;
  122. /*
  123. * Defined bits for the flags field in the ntfs_volume structure.
  124. */
  125. typedef enum {
  126. NV_Errors, /* 1: Volume has errors, prevent remount rw. */
  127. NV_ShowSystemFiles, /* 1: Return system files in ntfs_readdir(). */
  128. NV_CaseSensitive, /* 1: Treat file names as case sensitive and
  129. create filenames in the POSIX namespace.
  130. Otherwise be case insensitive but still
  131. create file names in POSIX namespace. */
  132. NV_LogFileEmpty, /* 1: $LogFile journal is empty. */
  133. NV_QuotaOutOfDate, /* 1: $Quota is out of date. */
  134. NV_UsnJrnlStamped, /* 1: $UsnJrnl has been stamped. */
  135. NV_SparseEnabled, /* 1: May create sparse files. */
  136. } ntfs_volume_flags;
  137. /*
  138. * Macro tricks to expand the NVolFoo(), NVolSetFoo(), and NVolClearFoo()
  139. * functions.
  140. */
  141. #define DEFINE_NVOL_BIT_OPS(flag) \
  142. static inline int NVol##flag(ntfs_volume *vol) \
  143. { \
  144. return test_bit(NV_##flag, &(vol)->flags); \
  145. } \
  146. static inline void NVolSet##flag(ntfs_volume *vol) \
  147. { \
  148. set_bit(NV_##flag, &(vol)->flags); \
  149. } \
  150. static inline void NVolClear##flag(ntfs_volume *vol) \
  151. { \
  152. clear_bit(NV_##flag, &(vol)->flags); \
  153. }
  154. /* Emit the ntfs volume bitops functions. */
  155. DEFINE_NVOL_BIT_OPS(Errors)
  156. DEFINE_NVOL_BIT_OPS(ShowSystemFiles)
  157. DEFINE_NVOL_BIT_OPS(CaseSensitive)
  158. DEFINE_NVOL_BIT_OPS(LogFileEmpty)
  159. DEFINE_NVOL_BIT_OPS(QuotaOutOfDate)
  160. DEFINE_NVOL_BIT_OPS(UsnJrnlStamped)
  161. DEFINE_NVOL_BIT_OPS(SparseEnabled)
  162. #endif /* _LINUX_NTFS_VOLUME_H */