common.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * common.h - Common definitions for both Kernel and user-mode utilities
  3. *
  4. * Copyright (C) 2005, 2006
  5. * Avishay Traeger (avishay@gmail.com)
  6. * Copyright (C) 2008, 2009
  7. * Boaz Harrosh <bharrosh@panasas.com>
  8. *
  9. * Copyrights for code taken from ext2:
  10. * Copyright (C) 1992, 1993, 1994, 1995
  11. * Remy Card (card@masi.ibp.fr)
  12. * Laboratoire MASI - Institut Blaise Pascal
  13. * Universite Pierre et Marie Curie (Paris VI)
  14. * from
  15. * linux/fs/minix/inode.c
  16. * Copyright (C) 1991, 1992 Linus Torvalds
  17. *
  18. * This file is part of exofs.
  19. *
  20. * exofs is free software; you can redistribute it and/or modify
  21. * it under the terms of the GNU General Public License as published by
  22. * the Free Software Foundation. Since it is based on ext2, and the only
  23. * valid version of GPL for the Linux kernel is version 2, the only valid
  24. * version of GPL for exofs is version 2.
  25. *
  26. * exofs is distributed in the hope that it will be useful,
  27. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  28. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  29. * GNU General Public License for more details.
  30. *
  31. * You should have received a copy of the GNU General Public License
  32. * along with exofs; if not, write to the Free Software
  33. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  34. */
  35. #ifndef __EXOFS_COM_H__
  36. #define __EXOFS_COM_H__
  37. #include <linux/types.h>
  38. #include <scsi/osd_attributes.h>
  39. #include <scsi/osd_initiator.h>
  40. #include <scsi/osd_sec.h>
  41. /****************************************************************************
  42. * Object ID related defines
  43. * NOTE: inode# = object ID - EXOFS_OBJ_OFF
  44. ****************************************************************************/
  45. #define EXOFS_MIN_PID 0x10000 /* Smallest partition ID */
  46. #define EXOFS_OBJ_OFF 0x10000 /* offset for objects */
  47. #define EXOFS_SUPER_ID 0x10000 /* object ID for on-disk superblock */
  48. #define EXOFS_DEVTABLE_ID 0x10001 /* object ID for on-disk device table */
  49. #define EXOFS_ROOT_ID 0x10002 /* object ID for root directory */
  50. /* exofs Application specific page/attribute */
  51. # define EXOFS_APAGE_FS_DATA (OSD_APAGE_APP_DEFINED_FIRST + 3)
  52. # define EXOFS_ATTR_INODE_DATA 1
  53. /*
  54. * The maximum number of files we can have is limited by the size of the
  55. * inode number. This is the largest object ID that the file system supports.
  56. * Object IDs 0, 1, and 2 are always in use (see above defines).
  57. */
  58. enum {
  59. EXOFS_MAX_INO_ID = (sizeof(ino_t) * 8 == 64) ? ULLONG_MAX :
  60. (1ULL << (sizeof(ino_t) * 8ULL - 1ULL)),
  61. EXOFS_MAX_ID = (EXOFS_MAX_INO_ID - 1 - EXOFS_OBJ_OFF),
  62. };
  63. /****************************************************************************
  64. * Misc.
  65. ****************************************************************************/
  66. #define EXOFS_BLKSHIFT 12
  67. #define EXOFS_BLKSIZE (1UL << EXOFS_BLKSHIFT)
  68. /****************************************************************************
  69. * superblock-related things
  70. ****************************************************************************/
  71. #define EXOFS_SUPER_MAGIC 0x5DF5
  72. /*
  73. * The file system control block - stored in object EXOFS_SUPER_ID's data.
  74. * This is where the in-memory superblock is stored on disk.
  75. */
  76. enum {EXOFS_FSCB_VER = 1, EXOFS_DT_VER = 1};
  77. struct exofs_fscb {
  78. __le64 s_nextid; /* Highest object ID used */
  79. __le64 s_numfiles; /* Number of files on fs */
  80. __le32 s_version; /* == EXOFS_FSCB_VER */
  81. __le16 s_magic; /* Magic signature */
  82. __le16 s_newfs; /* Non-zero if this is a new fs */
  83. /* From here on it's a static part, only written by mkexofs */
  84. __le64 s_dev_table_oid; /* Resurved, not used */
  85. __le64 s_dev_table_count; /* == 0 means no dev_table */
  86. } __packed;
  87. /*
  88. * Describes the raid used in the FS. It is part of the device table.
  89. * This here is taken from the pNFS-objects definition. In exofs we
  90. * use one raid policy through-out the filesystem. (NOTE: the funny
  91. * alignment at begining. We take care of it at exofs_device_table.
  92. */
  93. struct exofs_dt_data_map {
  94. __le32 cb_num_comps;
  95. __le64 cb_stripe_unit;
  96. __le32 cb_group_width;
  97. __le32 cb_group_depth;
  98. __le32 cb_mirror_cnt;
  99. __le32 cb_raid_algorithm;
  100. } __packed;
  101. /*
  102. * This is an osd device information descriptor. It is a single entry in
  103. * the exofs device table. It describes an osd target lun which
  104. * contains data belonging to this FS. (Same partition_id on all devices)
  105. */
  106. struct exofs_dt_device_info {
  107. __le32 systemid_len;
  108. u8 systemid[OSD_SYSTEMID_LEN];
  109. __le64 long_name_offset; /* If !0 then offset-in-file */
  110. __le32 osdname_len; /* */
  111. u8 osdname[44]; /* Embbeded, Ususally an asci uuid */
  112. } __packed;
  113. /*
  114. * The EXOFS device table - stored in object EXOFS_DEVTABLE_ID's data.
  115. * It contains the raid used for this multy-device FS and an array of
  116. * participating devices.
  117. */
  118. struct exofs_device_table {
  119. __le32 dt_version; /* == EXOFS_DT_VER */
  120. struct exofs_dt_data_map dt_data_map; /* Raid policy to use */
  121. /* Resurved space For future use. Total includeing this:
  122. * (8 * sizeof(le64))
  123. */
  124. __le64 __Resurved[4];
  125. __le64 dt_num_devices; /* Array size */
  126. struct exofs_dt_device_info dt_dev_table[]; /* Array of devices */
  127. } __packed;
  128. /****************************************************************************
  129. * inode-related things
  130. ****************************************************************************/
  131. #define EXOFS_IDATA 5
  132. /*
  133. * The file control block - stored in an object's attributes. This is where
  134. * the in-memory inode is stored on disk.
  135. */
  136. struct exofs_fcb {
  137. __le64 i_size; /* Size of the file */
  138. __le16 i_mode; /* File mode */
  139. __le16 i_links_count; /* Links count */
  140. __le32 i_uid; /* Owner Uid */
  141. __le32 i_gid; /* Group Id */
  142. __le32 i_atime; /* Access time */
  143. __le32 i_ctime; /* Creation time */
  144. __le32 i_mtime; /* Modification time */
  145. __le32 i_flags; /* File flags (unused for now)*/
  146. __le32 i_generation; /* File version (for NFS) */
  147. __le32 i_data[EXOFS_IDATA]; /* Short symlink names and device #s */
  148. };
  149. #define EXOFS_INO_ATTR_SIZE sizeof(struct exofs_fcb)
  150. /* This is the Attribute the fcb is stored in */
  151. static const struct __weak osd_attr g_attr_inode_data = ATTR_DEF(
  152. EXOFS_APAGE_FS_DATA,
  153. EXOFS_ATTR_INODE_DATA,
  154. EXOFS_INO_ATTR_SIZE);
  155. /****************************************************************************
  156. * dentry-related things
  157. ****************************************************************************/
  158. #define EXOFS_NAME_LEN 255
  159. /*
  160. * The on-disk directory entry
  161. */
  162. struct exofs_dir_entry {
  163. __le64 inode_no; /* inode number */
  164. __le16 rec_len; /* directory entry length */
  165. u8 name_len; /* name length */
  166. u8 file_type; /* umm...file type */
  167. char name[EXOFS_NAME_LEN]; /* file name */
  168. };
  169. enum {
  170. EXOFS_FT_UNKNOWN,
  171. EXOFS_FT_REG_FILE,
  172. EXOFS_FT_DIR,
  173. EXOFS_FT_CHRDEV,
  174. EXOFS_FT_BLKDEV,
  175. EXOFS_FT_FIFO,
  176. EXOFS_FT_SOCK,
  177. EXOFS_FT_SYMLINK,
  178. EXOFS_FT_MAX
  179. };
  180. #define EXOFS_DIR_PAD 4
  181. #define EXOFS_DIR_ROUND (EXOFS_DIR_PAD - 1)
  182. #define EXOFS_DIR_REC_LEN(name_len) \
  183. (((name_len) + offsetof(struct exofs_dir_entry, name) + \
  184. EXOFS_DIR_ROUND) & ~EXOFS_DIR_ROUND)
  185. #endif /*ifndef __EXOFS_COM_H__*/