Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * nilfs2_fs.h - NILFS2 on-disk structures and common declarations. |
| 3 | * |
| 4 | * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
Ryusuke Konishi | c486f38 | 2010-10-03 17:44:03 +0900 | [diff] [blame] | 7 | * it under the terms of the GNU Lesser General Public License as published |
| 8 | * by the Free Software Foundation; either version 2.1 of the License, or |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Ryusuke Konishi | c486f38 | 2010-10-03 17:44:03 +0900 | [diff] [blame] | 14 | * GNU Lesser General Public License for more details. |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 15 | * |
Ryusuke Konishi | c486f38 | 2010-10-03 17:44:03 +0900 | [diff] [blame] | 16 | * You should have received a copy of the GNU Lesser General Public License |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | * |
| 20 | * Written by Koji Sato <koji@osrg.net> |
| 21 | * Ryusuke Konishi <ryusuke@osrg.net> |
| 22 | */ |
| 23 | /* |
| 24 | * linux/include/linux/ext2_fs.h |
| 25 | * |
| 26 | * Copyright (C) 1992, 1993, 1994, 1995 |
| 27 | * Remy Card (card@masi.ibp.fr) |
| 28 | * Laboratoire MASI - Institut Blaise Pascal |
| 29 | * Universite Pierre et Marie Curie (Paris VI) |
| 30 | * |
| 31 | * from |
| 32 | * |
| 33 | * linux/include/linux/minix_fs.h |
| 34 | * |
| 35 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 36 | */ |
| 37 | |
| 38 | #ifndef _LINUX_NILFS_FS_H |
| 39 | #define _LINUX_NILFS_FS_H |
| 40 | |
| 41 | #include <linux/types.h> |
| 42 | #include <linux/ioctl.h> |
Jiro SEKIBA | 4d3cf1b | 2011-03-10 16:54:15 +0900 | [diff] [blame] | 43 | #include <linux/magic.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 44 | #include <linux/bug.h> |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 45 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 46 | |
| 47 | #define NILFS_INODE_BMAP_SIZE 7 |
| 48 | /** |
| 49 | * struct nilfs_inode - structure of an inode on disk |
| 50 | * @i_blocks: blocks count |
| 51 | * @i_size: size in bytes |
Ryusuke Konishi | 6123923 | 2009-04-06 19:02:00 -0700 | [diff] [blame] | 52 | * @i_ctime: creation time (seconds) |
| 53 | * @i_mtime: modification time (seconds) |
| 54 | * @i_ctime_nsec: creation time (nano seconds) |
| 55 | * @i_mtime_nsec: modification time (nano seconds) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 56 | * @i_uid: user id |
| 57 | * @i_gid: group id |
| 58 | * @i_mode: file mode |
| 59 | * @i_links_count: links count |
| 60 | * @i_flags: file flags |
| 61 | * @i_bmap: block mapping |
| 62 | * @i_xattr: extended attributes |
| 63 | * @i_generation: file generation (for NFS) |
| 64 | * @i_pad: padding |
| 65 | */ |
| 66 | struct nilfs_inode { |
| 67 | __le64 i_blocks; |
| 68 | __le64 i_size; |
| 69 | __le64 i_ctime; |
| 70 | __le64 i_mtime; |
Ryusuke Konishi | 6123923 | 2009-04-06 19:02:00 -0700 | [diff] [blame] | 71 | __le32 i_ctime_nsec; |
| 72 | __le32 i_mtime_nsec; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 73 | __le32 i_uid; |
| 74 | __le32 i_gid; |
| 75 | __le16 i_mode; |
| 76 | __le16 i_links_count; |
| 77 | __le32 i_flags; |
| 78 | __le64 i_bmap[NILFS_INODE_BMAP_SIZE]; |
| 79 | #define i_device_code i_bmap[0] |
| 80 | __le64 i_xattr; |
| 81 | __le32 i_generation; |
| 82 | __le32 i_pad; |
| 83 | }; |
| 84 | |
Ryusuke Konishi | 0ec060d | 2014-04-03 14:50:31 -0700 | [diff] [blame] | 85 | #define NILFS_MIN_INODE_SIZE 128 |
| 86 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 87 | /** |
| 88 | * struct nilfs_super_root - structure of super root |
| 89 | * @sr_sum: check sum |
| 90 | * @sr_bytes: byte count of the structure |
| 91 | * @sr_flags: flags (reserved) |
| 92 | * @sr_nongc_ctime: write time of the last segment not for cleaner operation |
| 93 | * @sr_dat: DAT file inode |
| 94 | * @sr_cpfile: checkpoint file inode |
| 95 | * @sr_sufile: segment usage file inode |
| 96 | */ |
| 97 | struct nilfs_super_root { |
| 98 | __le32 sr_sum; |
| 99 | __le16 sr_bytes; |
| 100 | __le16 sr_flags; |
| 101 | __le64 sr_nongc_ctime; |
| 102 | struct nilfs_inode sr_dat; |
| 103 | struct nilfs_inode sr_cpfile; |
| 104 | struct nilfs_inode sr_sufile; |
| 105 | }; |
| 106 | |
| 107 | #define NILFS_SR_MDT_OFFSET(inode_size, i) \ |
| 108 | ((unsigned long)&((struct nilfs_super_root *)0)->sr_dat + \ |
| 109 | (inode_size) * (i)) |
| 110 | #define NILFS_SR_DAT_OFFSET(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 0) |
| 111 | #define NILFS_SR_CPFILE_OFFSET(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 1) |
| 112 | #define NILFS_SR_SUFILE_OFFSET(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 2) |
Ryusuke Konishi | 6c6de1a | 2011-04-30 18:56:12 +0900 | [diff] [blame] | 113 | #define NILFS_SR_BYTES(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 3) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 114 | |
| 115 | /* |
| 116 | * Maximal mount counts |
| 117 | */ |
| 118 | #define NILFS_DFL_MAX_MNT_COUNT 50 /* 50 mounts */ |
| 119 | |
| 120 | /* |
| 121 | * File system states (sbp->s_state, nilfs->ns_mount_state) |
| 122 | */ |
| 123 | #define NILFS_VALID_FS 0x0001 /* Unmounted cleanly */ |
| 124 | #define NILFS_ERROR_FS 0x0002 /* Errors detected */ |
| 125 | #define NILFS_RESIZE_FS 0x0004 /* Resize required */ |
| 126 | |
| 127 | /* |
| 128 | * Mount flags (sbi->s_mount_opt) |
| 129 | */ |
| 130 | #define NILFS_MOUNT_ERROR_MODE 0x0070 /* Error mode mask */ |
| 131 | #define NILFS_MOUNT_ERRORS_CONT 0x0010 /* Continue on errors */ |
| 132 | #define NILFS_MOUNT_ERRORS_RO 0x0020 /* Remount fs ro on errors */ |
| 133 | #define NILFS_MOUNT_ERRORS_PANIC 0x0040 /* Panic on errors */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 134 | #define NILFS_MOUNT_BARRIER 0x1000 /* Use block barriers */ |
| 135 | #define NILFS_MOUNT_STRICT_ORDER 0x2000 /* Apply strict in-order |
| 136 | semantics also for data */ |
Ryusuke Konishi | 0234576 | 2009-11-20 03:28:01 +0900 | [diff] [blame] | 137 | #define NILFS_MOUNT_NORECOVERY 0x4000 /* Disable write access during |
| 138 | mount-time recovery */ |
Jiro SEKIBA | e902ec9 | 2010-01-30 18:06:35 +0900 | [diff] [blame] | 139 | #define NILFS_MOUNT_DISCARD 0x8000 /* Issue DISCARD requests */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 140 | |
| 141 | |
| 142 | /** |
| 143 | * struct nilfs_super_block - structure of super block on disk |
| 144 | */ |
| 145 | struct nilfs_super_block { |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 146 | /*00*/ __le32 s_rev_level; /* Revision level */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 147 | __le16 s_minor_rev_level; /* minor revision level */ |
| 148 | __le16 s_magic; /* Magic signature */ |
| 149 | |
| 150 | __le16 s_bytes; /* Bytes count of CRC calculation |
| 151 | for this structure. s_reserved |
| 152 | is excluded. */ |
| 153 | __le16 s_flags; /* flags */ |
| 154 | __le32 s_crc_seed; /* Seed value of CRC calculation */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 155 | /*10*/ __le32 s_sum; /* Check sum of super block */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 156 | |
| 157 | __le32 s_log_block_size; /* Block size represented as follows |
| 158 | blocksize = |
| 159 | 1 << (s_log_block_size + 10) */ |
| 160 | __le64 s_nsegments; /* Number of segments in filesystem */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 161 | /*20*/ __le64 s_dev_size; /* block device size in bytes */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 162 | __le64 s_first_data_block; /* 1st seg disk block number */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 163 | /*30*/ __le32 s_blocks_per_segment; /* number of blocks per full segment */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 164 | __le32 s_r_segments_percentage; /* Reserved segments percentage */ |
| 165 | |
| 166 | __le64 s_last_cno; /* Last checkpoint number */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 167 | /*40*/ __le64 s_last_pseg; /* disk block addr pseg written last */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 168 | __le64 s_last_seq; /* seq. number of seg written last */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 169 | /*50*/ __le64 s_free_blocks_count; /* Free blocks count */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 170 | |
| 171 | __le64 s_ctime; /* Creation time (execution time of |
| 172 | newfs) */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 173 | /*60*/ __le64 s_mtime; /* Mount time */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 174 | __le64 s_wtime; /* Write time */ |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 175 | /*70*/ __le16 s_mnt_count; /* Mount count */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 176 | __le16 s_max_mnt_count; /* Maximal mount count */ |
| 177 | __le16 s_state; /* File system state */ |
| 178 | __le16 s_errors; /* Behaviour when detecting errors */ |
| 179 | __le64 s_lastcheck; /* time of last check */ |
| 180 | |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 181 | /*80*/ __le32 s_checkinterval; /* max. time between checks */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 182 | __le32 s_creator_os; /* OS */ |
| 183 | __le16 s_def_resuid; /* Default uid for reserved blocks */ |
| 184 | __le16 s_def_resgid; /* Default gid for reserved blocks */ |
Ryusuke Konishi | 0d9cc23 | 2010-04-26 01:17:48 +0900 | [diff] [blame] | 185 | __le32 s_first_ino; /* First non-reserved inode */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 186 | |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 187 | /*90*/ __le16 s_inode_size; /* Size of an inode */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 188 | __le16 s_dat_entry_size; /* Size of a dat entry */ |
| 189 | __le16 s_checkpoint_size; /* Size of a checkpoint */ |
| 190 | __le16 s_segment_usage_size; /* Size of a segment usage */ |
| 191 | |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 192 | /*98*/ __u8 s_uuid[16]; /* 128-bit uuid for volume */ |
| 193 | /*A8*/ char s_volume_name[80]; /* volume name */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 194 | |
Ryusuke Konishi | 2f1b7cd | 2010-07-22 03:22:18 +0900 | [diff] [blame] | 195 | /*F8*/ __le32 s_c_interval; /* Commit interval of segment */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 196 | __le32 s_c_block_max; /* Threshold of data amount for |
| 197 | the segment construction */ |
Ryusuke Konishi | 1a80a17 | 2010-07-22 03:22:19 +0900 | [diff] [blame] | 198 | /*100*/ __le64 s_feature_compat; /* Compatible feature set */ |
| 199 | __le64 s_feature_compat_ro; /* Read-only compatible feature set */ |
| 200 | __le64 s_feature_incompat; /* Incompatible feature set */ |
| 201 | __u32 s_reserved[186]; /* padding to the end of the block */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 202 | }; |
| 203 | |
| 204 | /* |
| 205 | * Codes for operating systems |
| 206 | */ |
| 207 | #define NILFS_OS_LINUX 0 |
| 208 | /* Codes from 1 to 4 are reserved to keep compatibility with ext2 creator-OS */ |
| 209 | |
| 210 | /* |
| 211 | * Revision levels |
| 212 | */ |
| 213 | #define NILFS_CURRENT_REV 2 /* current major revision */ |
| 214 | #define NILFS_MINOR_REV 0 /* minor revision */ |
Ryusuke Konishi | 9566a7a | 2010-08-10 00:58:41 +0900 | [diff] [blame] | 215 | #define NILFS_MIN_SUPP_REV 2 /* minimum supported revision */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 216 | |
| 217 | /* |
Ryusuke Konishi | 1a80a17 | 2010-07-22 03:22:19 +0900 | [diff] [blame] | 218 | * Feature set definitions |
| 219 | * |
| 220 | * If there is a bit set in the incompatible feature set that the kernel |
| 221 | * doesn't know about, it should refuse to mount the filesystem. |
| 222 | */ |
Ryusuke Konishi | be66737 | 2011-03-05 00:19:32 +0900 | [diff] [blame] | 223 | #define NILFS_FEATURE_COMPAT_RO_BLOCK_COUNT 0x00000001ULL |
| 224 | |
Ryusuke Konishi | 1a80a17 | 2010-07-22 03:22:19 +0900 | [diff] [blame] | 225 | #define NILFS_FEATURE_COMPAT_SUPP 0ULL |
Ryusuke Konishi | be66737 | 2011-03-05 00:19:32 +0900 | [diff] [blame] | 226 | #define NILFS_FEATURE_COMPAT_RO_SUPP NILFS_FEATURE_COMPAT_RO_BLOCK_COUNT |
Ryusuke Konishi | 1a80a17 | 2010-07-22 03:22:19 +0900 | [diff] [blame] | 227 | #define NILFS_FEATURE_INCOMPAT_SUPP 0ULL |
| 228 | |
| 229 | /* |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 230 | * Bytes count of super_block for CRC-calculation |
| 231 | */ |
| 232 | #define NILFS_SB_BYTES \ |
| 233 | ((long)&((struct nilfs_super_block *)0)->s_reserved) |
| 234 | |
| 235 | /* |
| 236 | * Special inode number |
| 237 | */ |
| 238 | #define NILFS_ROOT_INO 2 /* Root file inode */ |
| 239 | #define NILFS_DAT_INO 3 /* DAT file */ |
| 240 | #define NILFS_CPFILE_INO 4 /* checkpoint file */ |
| 241 | #define NILFS_SUFILE_INO 5 /* segment usage file */ |
| 242 | #define NILFS_IFILE_INO 6 /* ifile */ |
| 243 | #define NILFS_ATIME_INO 7 /* Atime file (reserved) */ |
| 244 | #define NILFS_XATTR_INO 8 /* Xattribute file (reserved) */ |
| 245 | #define NILFS_SKETCH_INO 10 /* Sketch file */ |
| 246 | #define NILFS_USER_INO 11 /* Fisrt user's file inode number */ |
| 247 | |
| 248 | #define NILFS_SB_OFFSET_BYTES 1024 /* byte offset of nilfs superblock */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 249 | |
| 250 | #define NILFS_SEG_MIN_BLOCKS 16 /* Minimum number of blocks in |
| 251 | a full segment */ |
| 252 | #define NILFS_PSEG_MIN_BLOCKS 2 /* Minimum number of blocks in |
| 253 | a partial segment */ |
| 254 | #define NILFS_MIN_NRSVSEGS 8 /* Minimum number of reserved |
| 255 | segments */ |
| 256 | |
Ryusuke Konishi | e339ad3 | 2009-04-06 19:01:59 -0700 | [diff] [blame] | 257 | /* |
Ryusuke Konishi | 6c43f41 | 2010-08-20 20:10:38 +0900 | [diff] [blame] | 258 | * We call DAT, cpfile, and sufile root metadata files. Inodes of |
| 259 | * these files are written in super root block instead of ifile, and |
| 260 | * garbage collector doesn't keep any past versions of these files. |
| 261 | */ |
| 262 | #define NILFS_ROOT_METADATA_FILE(ino) \ |
| 263 | ((ino) >= NILFS_DAT_INO && (ino) <= NILFS_SUFILE_INO) |
| 264 | |
| 265 | /* |
Ryusuke Konishi | e339ad3 | 2009-04-06 19:01:59 -0700 | [diff] [blame] | 266 | * bytes offset of secondary super block |
| 267 | */ |
| 268 | #define NILFS_SB2_OFFSET_BYTES(devsize) ((((devsize) >> 12) - 1) << 12) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 269 | |
| 270 | /* |
| 271 | * Maximal count of links to a file |
| 272 | */ |
| 273 | #define NILFS_LINK_MAX 32000 |
| 274 | |
| 275 | /* |
| 276 | * Structure of a directory entry |
| 277 | * (Same as ext2) |
| 278 | */ |
| 279 | |
| 280 | #define NILFS_NAME_LEN 255 |
| 281 | |
| 282 | /* |
Ryusuke Konishi | 89c0fd0 | 2010-07-25 22:44:53 +0900 | [diff] [blame] | 283 | * Block size limitations |
| 284 | */ |
| 285 | #define NILFS_MIN_BLOCK_SIZE 1024 |
| 286 | #define NILFS_MAX_BLOCK_SIZE 65536 |
| 287 | |
| 288 | /* |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 289 | * The new version of the directory entry. Since V0 structures are |
| 290 | * stored in intel byte order, and the name_len field could never be |
| 291 | * bigger than 255 chars, it's safe to reclaim the extra byte for the |
| 292 | * file_type field. |
| 293 | */ |
| 294 | struct nilfs_dir_entry { |
| 295 | __le64 inode; /* Inode number */ |
| 296 | __le16 rec_len; /* Directory entry length */ |
| 297 | __u8 name_len; /* Name length */ |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 298 | __u8 file_type; /* Dir entry type (file, dir, etc) */ |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 299 | char name[NILFS_NAME_LEN]; /* File name */ |
| 300 | char pad; |
| 301 | }; |
| 302 | |
| 303 | /* |
| 304 | * NILFS directory file types. Only the low 3 bits are used. The |
| 305 | * other bits are reserved for now. |
| 306 | */ |
| 307 | enum { |
| 308 | NILFS_FT_UNKNOWN, |
| 309 | NILFS_FT_REG_FILE, |
| 310 | NILFS_FT_DIR, |
| 311 | NILFS_FT_CHRDEV, |
| 312 | NILFS_FT_BLKDEV, |
| 313 | NILFS_FT_FIFO, |
| 314 | NILFS_FT_SOCK, |
| 315 | NILFS_FT_SYMLINK, |
| 316 | NILFS_FT_MAX |
| 317 | }; |
| 318 | |
| 319 | /* |
| 320 | * NILFS_DIR_PAD defines the directory entries boundaries |
| 321 | * |
| 322 | * NOTE: It must be a multiple of 8 |
| 323 | */ |
| 324 | #define NILFS_DIR_PAD 8 |
| 325 | #define NILFS_DIR_ROUND (NILFS_DIR_PAD - 1) |
| 326 | #define NILFS_DIR_REC_LEN(name_len) (((name_len) + 12 + NILFS_DIR_ROUND) & \ |
| 327 | ~NILFS_DIR_ROUND) |
Ryusuke Konishi | 6cda9fa | 2010-07-25 20:39:03 +0900 | [diff] [blame] | 328 | #define NILFS_MAX_REC_LEN ((1<<16)-1) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 329 | |
Ryusuke Konishi | 6cda9fa | 2010-07-25 20:39:03 +0900 | [diff] [blame] | 330 | static inline unsigned nilfs_rec_len_from_disk(__le16 dlen) |
| 331 | { |
| 332 | unsigned len = le16_to_cpu(dlen); |
| 333 | |
Ryusuke Konishi | ae19183 | 2011-02-04 01:19:38 +0900 | [diff] [blame] | 334 | #if !defined(__KERNEL__) || (PAGE_CACHE_SIZE >= 65536) |
Ryusuke Konishi | 6cda9fa | 2010-07-25 20:39:03 +0900 | [diff] [blame] | 335 | if (len == NILFS_MAX_REC_LEN) |
| 336 | return 1 << 16; |
Ryusuke Konishi | ae19183 | 2011-02-04 01:19:38 +0900 | [diff] [blame] | 337 | #endif |
Ryusuke Konishi | 6cda9fa | 2010-07-25 20:39:03 +0900 | [diff] [blame] | 338 | return len; |
| 339 | } |
| 340 | |
| 341 | static inline __le16 nilfs_rec_len_to_disk(unsigned len) |
| 342 | { |
Ryusuke Konishi | ae19183 | 2011-02-04 01:19:38 +0900 | [diff] [blame] | 343 | #if !defined(__KERNEL__) || (PAGE_CACHE_SIZE >= 65536) |
Ryusuke Konishi | 6cda9fa | 2010-07-25 20:39:03 +0900 | [diff] [blame] | 344 | if (len == (1 << 16)) |
| 345 | return cpu_to_le16(NILFS_MAX_REC_LEN); |
| 346 | else if (len > (1 << 16)) |
| 347 | BUG(); |
Ryusuke Konishi | ae19183 | 2011-02-04 01:19:38 +0900 | [diff] [blame] | 348 | #endif |
Ryusuke Konishi | 6cda9fa | 2010-07-25 20:39:03 +0900 | [diff] [blame] | 349 | return cpu_to_le16(len); |
| 350 | } |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 351 | |
| 352 | /** |
| 353 | * struct nilfs_finfo - file information |
| 354 | * @fi_ino: inode number |
| 355 | * @fi_cno: checkpoint number |
| 356 | * @fi_nblocks: number of blocks (including intermediate blocks) |
| 357 | * @fi_ndatablk: number of file data blocks |
| 358 | */ |
| 359 | struct nilfs_finfo { |
| 360 | __le64 fi_ino; |
| 361 | __le64 fi_cno; |
| 362 | __le32 fi_nblocks; |
| 363 | __le32 fi_ndatablk; |
| 364 | /* array of virtual block numbers */ |
| 365 | }; |
| 366 | |
| 367 | /** |
| 368 | * struct nilfs_binfo_v - information for the block to which a virtual block number is assigned |
| 369 | * @bi_vblocknr: virtual block number |
| 370 | * @bi_blkoff: block offset |
| 371 | */ |
| 372 | struct nilfs_binfo_v { |
| 373 | __le64 bi_vblocknr; |
| 374 | __le64 bi_blkoff; |
| 375 | }; |
| 376 | |
| 377 | /** |
| 378 | * struct nilfs_binfo_dat - information for the block which belongs to the DAT file |
| 379 | * @bi_blkoff: block offset |
| 380 | * @bi_level: level |
| 381 | * @bi_pad: padding |
| 382 | */ |
| 383 | struct nilfs_binfo_dat { |
| 384 | __le64 bi_blkoff; |
| 385 | __u8 bi_level; |
| 386 | __u8 bi_pad[7]; |
| 387 | }; |
| 388 | |
| 389 | /** |
| 390 | * union nilfs_binfo: block information |
| 391 | * @bi_v: nilfs_binfo_v structure |
| 392 | * @bi_dat: nilfs_binfo_dat structure |
| 393 | */ |
| 394 | union nilfs_binfo { |
| 395 | struct nilfs_binfo_v bi_v; |
| 396 | struct nilfs_binfo_dat bi_dat; |
| 397 | }; |
| 398 | |
| 399 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 400 | * struct nilfs_segment_summary - segment summary header |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 401 | * @ss_datasum: checksum of data |
| 402 | * @ss_sumsum: checksum of segment summary |
| 403 | * @ss_magic: magic number |
| 404 | * @ss_bytes: size of this structure in bytes |
| 405 | * @ss_flags: flags |
| 406 | * @ss_seq: sequence number |
| 407 | * @ss_create: creation timestamp |
| 408 | * @ss_next: next segment |
| 409 | * @ss_nblocks: number of blocks |
| 410 | * @ss_nfinfo: number of finfo structures |
| 411 | * @ss_sumbytes: total size of segment summary in bytes |
| 412 | * @ss_pad: padding |
Ryusuke Konishi | 50614bc | 2010-04-10 17:59:15 +0900 | [diff] [blame] | 413 | * @ss_cno: checkpoint number |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 414 | */ |
| 415 | struct nilfs_segment_summary { |
| 416 | __le32 ss_datasum; |
| 417 | __le32 ss_sumsum; |
| 418 | __le32 ss_magic; |
| 419 | __le16 ss_bytes; |
| 420 | __le16 ss_flags; |
| 421 | __le64 ss_seq; |
| 422 | __le64 ss_create; |
| 423 | __le64 ss_next; |
| 424 | __le32 ss_nblocks; |
| 425 | __le32 ss_nfinfo; |
| 426 | __le32 ss_sumbytes; |
| 427 | __le32 ss_pad; |
Ryusuke Konishi | 50614bc | 2010-04-10 17:59:15 +0900 | [diff] [blame] | 428 | __le64 ss_cno; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 429 | /* array of finfo structures */ |
| 430 | }; |
| 431 | |
| 432 | #define NILFS_SEGSUM_MAGIC 0x1eaffa11 /* segment summary magic number */ |
| 433 | |
| 434 | /* |
| 435 | * Segment summary flags |
| 436 | */ |
| 437 | #define NILFS_SS_LOGBGN 0x0001 /* begins a logical segment */ |
| 438 | #define NILFS_SS_LOGEND 0x0002 /* ends a logical segment */ |
| 439 | #define NILFS_SS_SR 0x0004 /* has super root */ |
| 440 | #define NILFS_SS_SYNDT 0x0008 /* includes data only updates */ |
| 441 | #define NILFS_SS_GC 0x0010 /* segment written for cleaner operation */ |
| 442 | |
| 443 | /** |
Jiro SEKIBA | 6600b9d | 2009-11-09 19:10:11 +0900 | [diff] [blame] | 444 | * struct nilfs_btree_node - B-tree node |
| 445 | * @bn_flags: flags |
| 446 | * @bn_level: level |
| 447 | * @bn_nchildren: number of children |
| 448 | * @bn_pad: padding |
| 449 | */ |
| 450 | struct nilfs_btree_node { |
| 451 | __u8 bn_flags; |
| 452 | __u8 bn_level; |
| 453 | __le16 bn_nchildren; |
| 454 | __le32 bn_pad; |
| 455 | }; |
| 456 | |
| 457 | /* flags */ |
| 458 | #define NILFS_BTREE_NODE_ROOT 0x01 |
| 459 | |
| 460 | /* level */ |
| 461 | #define NILFS_BTREE_LEVEL_DATA 0 |
| 462 | #define NILFS_BTREE_LEVEL_NODE_MIN (NILFS_BTREE_LEVEL_DATA + 1) |
| 463 | #define NILFS_BTREE_LEVEL_MAX 14 |
| 464 | |
| 465 | /** |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 466 | * struct nilfs_palloc_group_desc - block group descriptor |
| 467 | * @pg_nfrees: number of free entries in block group |
| 468 | */ |
| 469 | struct nilfs_palloc_group_desc { |
| 470 | __le32 pg_nfrees; |
| 471 | }; |
| 472 | |
| 473 | /** |
| 474 | * struct nilfs_dat_entry - disk address translation entry |
Qinghuang Feng | 37e11f3 | 2010-04-25 20:17:25 +0800 | [diff] [blame] | 475 | * @de_blocknr: block number |
| 476 | * @de_start: start checkpoint number |
| 477 | * @de_end: end checkpoint number |
| 478 | * @de_rsv: reserved for future use |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 479 | */ |
| 480 | struct nilfs_dat_entry { |
| 481 | __le64 de_blocknr; |
| 482 | __le64 de_start; |
| 483 | __le64 de_end; |
| 484 | __le64 de_rsv; |
| 485 | }; |
| 486 | |
Ryusuke Konishi | 0ec060d | 2014-04-03 14:50:31 -0700 | [diff] [blame] | 487 | #define NILFS_MIN_DAT_ENTRY_SIZE 32 |
| 488 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 489 | /** |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 490 | * struct nilfs_snapshot_list - snapshot list |
| 491 | * @ssl_next: next checkpoint number on snapshot list |
| 492 | * @ssl_prev: previous checkpoint number on snapshot list |
| 493 | */ |
| 494 | struct nilfs_snapshot_list { |
| 495 | __le64 ssl_next; |
| 496 | __le64 ssl_prev; |
| 497 | }; |
| 498 | |
| 499 | /** |
| 500 | * struct nilfs_checkpoint - checkpoint structure |
| 501 | * @cp_flags: flags |
| 502 | * @cp_checkpoints_count: checkpoints count in a block |
| 503 | * @cp_snapshot_list: snapshot list |
| 504 | * @cp_cno: checkpoint number |
| 505 | * @cp_create: creation timestamp |
| 506 | * @cp_nblk_inc: number of blocks incremented by this checkpoint |
| 507 | * @cp_inodes_count: inodes count |
| 508 | * @cp_blocks_count: blocks count |
| 509 | * @cp_ifile_inode: inode of ifile |
| 510 | */ |
| 511 | struct nilfs_checkpoint { |
| 512 | __le32 cp_flags; |
| 513 | __le32 cp_checkpoints_count; |
| 514 | struct nilfs_snapshot_list cp_snapshot_list; |
| 515 | __le64 cp_cno; |
| 516 | __le64 cp_create; |
| 517 | __le64 cp_nblk_inc; |
| 518 | __le64 cp_inodes_count; |
Ryusuke Konishi | be66737 | 2011-03-05 00:19:32 +0900 | [diff] [blame] | 519 | __le64 cp_blocks_count; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 520 | |
| 521 | /* Do not change the byte offset of ifile inode. |
| 522 | To keep the compatibility of the disk format, |
| 523 | additional fields should be added behind cp_ifile_inode. */ |
| 524 | struct nilfs_inode cp_ifile_inode; |
| 525 | }; |
| 526 | |
Ryusuke Konishi | 0ec060d | 2014-04-03 14:50:31 -0700 | [diff] [blame] | 527 | #define NILFS_MIN_CHECKPOINT_SIZE (64 + NILFS_MIN_INODE_SIZE) |
| 528 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 529 | /* checkpoint flags */ |
| 530 | enum { |
| 531 | NILFS_CHECKPOINT_SNAPSHOT, |
| 532 | NILFS_CHECKPOINT_INVALID, |
| 533 | NILFS_CHECKPOINT_SKETCH, |
Ryusuke Konishi | c96fa46 | 2009-04-06 19:01:57 -0700 | [diff] [blame] | 534 | NILFS_CHECKPOINT_MINOR, |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 535 | }; |
| 536 | |
| 537 | #define NILFS_CHECKPOINT_FNS(flag, name) \ |
| 538 | static inline void \ |
| 539 | nilfs_checkpoint_set_##name(struct nilfs_checkpoint *cp) \ |
| 540 | { \ |
| 541 | cp->cp_flags = cpu_to_le32(le32_to_cpu(cp->cp_flags) | \ |
| 542 | (1UL << NILFS_CHECKPOINT_##flag)); \ |
| 543 | } \ |
| 544 | static inline void \ |
| 545 | nilfs_checkpoint_clear_##name(struct nilfs_checkpoint *cp) \ |
| 546 | { \ |
| 547 | cp->cp_flags = cpu_to_le32(le32_to_cpu(cp->cp_flags) & \ |
| 548 | ~(1UL << NILFS_CHECKPOINT_##flag)); \ |
| 549 | } \ |
| 550 | static inline int \ |
| 551 | nilfs_checkpoint_##name(const struct nilfs_checkpoint *cp) \ |
| 552 | { \ |
| 553 | return !!(le32_to_cpu(cp->cp_flags) & \ |
| 554 | (1UL << NILFS_CHECKPOINT_##flag)); \ |
| 555 | } |
| 556 | |
| 557 | NILFS_CHECKPOINT_FNS(SNAPSHOT, snapshot) |
| 558 | NILFS_CHECKPOINT_FNS(INVALID, invalid) |
Ryusuke Konishi | c96fa46 | 2009-04-06 19:01:57 -0700 | [diff] [blame] | 559 | NILFS_CHECKPOINT_FNS(MINOR, minor) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 560 | |
| 561 | /** |
| 562 | * struct nilfs_cpinfo - checkpoint information |
| 563 | * @ci_flags: flags |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 564 | * @ci_pad: padding |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 565 | * @ci_cno: checkpoint number |
| 566 | * @ci_create: creation timestamp |
| 567 | * @ci_nblk_inc: number of blocks incremented by this checkpoint |
| 568 | * @ci_inodes_count: inodes count |
| 569 | * @ci_blocks_count: blocks count |
| 570 | * @ci_next: next checkpoint number in snapshot list |
| 571 | */ |
| 572 | struct nilfs_cpinfo { |
| 573 | __u32 ci_flags; |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 574 | __u32 ci_pad; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 575 | __u64 ci_cno; |
| 576 | __u64 ci_create; |
| 577 | __u64 ci_nblk_inc; |
| 578 | __u64 ci_inodes_count; |
| 579 | __u64 ci_blocks_count; |
| 580 | __u64 ci_next; |
| 581 | }; |
| 582 | |
| 583 | #define NILFS_CPINFO_FNS(flag, name) \ |
| 584 | static inline int \ |
| 585 | nilfs_cpinfo_##name(const struct nilfs_cpinfo *cpinfo) \ |
| 586 | { \ |
| 587 | return !!(cpinfo->ci_flags & (1UL << NILFS_CHECKPOINT_##flag)); \ |
| 588 | } |
| 589 | |
| 590 | NILFS_CPINFO_FNS(SNAPSHOT, snapshot) |
| 591 | NILFS_CPINFO_FNS(INVALID, invalid) |
Ryusuke Konishi | c96fa46 | 2009-04-06 19:01:57 -0700 | [diff] [blame] | 592 | NILFS_CPINFO_FNS(MINOR, minor) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 593 | |
| 594 | |
| 595 | /** |
| 596 | * struct nilfs_cpfile_header - checkpoint file header |
| 597 | * @ch_ncheckpoints: number of checkpoints |
| 598 | * @ch_nsnapshots: number of snapshots |
| 599 | * @ch_snapshot_list: snapshot list |
| 600 | */ |
| 601 | struct nilfs_cpfile_header { |
| 602 | __le64 ch_ncheckpoints; |
| 603 | __le64 ch_nsnapshots; |
| 604 | struct nilfs_snapshot_list ch_snapshot_list; |
| 605 | }; |
| 606 | |
| 607 | #define NILFS_CPFILE_FIRST_CHECKPOINT_OFFSET \ |
| 608 | ((sizeof(struct nilfs_cpfile_header) + \ |
| 609 | sizeof(struct nilfs_checkpoint) - 1) / \ |
| 610 | sizeof(struct nilfs_checkpoint)) |
| 611 | |
| 612 | /** |
| 613 | * struct nilfs_segment_usage - segment usage |
| 614 | * @su_lastmod: last modified timestamp |
| 615 | * @su_nblocks: number of blocks in segment |
| 616 | * @su_flags: flags |
| 617 | */ |
| 618 | struct nilfs_segment_usage { |
| 619 | __le64 su_lastmod; |
| 620 | __le32 su_nblocks; |
| 621 | __le32 su_flags; |
| 622 | }; |
| 623 | |
Ryusuke Konishi | 0ec060d | 2014-04-03 14:50:31 -0700 | [diff] [blame] | 624 | #define NILFS_MIN_SEGMENT_USAGE_SIZE 16 |
| 625 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 626 | /* segment usage flag */ |
| 627 | enum { |
| 628 | NILFS_SEGMENT_USAGE_ACTIVE, |
| 629 | NILFS_SEGMENT_USAGE_DIRTY, |
| 630 | NILFS_SEGMENT_USAGE_ERROR, |
| 631 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 632 | /* ... */ |
| 633 | }; |
| 634 | |
| 635 | #define NILFS_SEGMENT_USAGE_FNS(flag, name) \ |
| 636 | static inline void \ |
| 637 | nilfs_segment_usage_set_##name(struct nilfs_segment_usage *su) \ |
| 638 | { \ |
| 639 | su->su_flags = cpu_to_le32(le32_to_cpu(su->su_flags) | \ |
| 640 | (1UL << NILFS_SEGMENT_USAGE_##flag));\ |
| 641 | } \ |
| 642 | static inline void \ |
| 643 | nilfs_segment_usage_clear_##name(struct nilfs_segment_usage *su) \ |
| 644 | { \ |
| 645 | su->su_flags = \ |
| 646 | cpu_to_le32(le32_to_cpu(su->su_flags) & \ |
| 647 | ~(1UL << NILFS_SEGMENT_USAGE_##flag)); \ |
| 648 | } \ |
| 649 | static inline int \ |
| 650 | nilfs_segment_usage_##name(const struct nilfs_segment_usage *su) \ |
| 651 | { \ |
| 652 | return !!(le32_to_cpu(su->su_flags) & \ |
| 653 | (1UL << NILFS_SEGMENT_USAGE_##flag)); \ |
| 654 | } |
| 655 | |
| 656 | NILFS_SEGMENT_USAGE_FNS(ACTIVE, active) |
| 657 | NILFS_SEGMENT_USAGE_FNS(DIRTY, dirty) |
| 658 | NILFS_SEGMENT_USAGE_FNS(ERROR, error) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 659 | |
| 660 | static inline void |
| 661 | nilfs_segment_usage_set_clean(struct nilfs_segment_usage *su) |
| 662 | { |
| 663 | su->su_lastmod = cpu_to_le64(0); |
| 664 | su->su_nblocks = cpu_to_le32(0); |
| 665 | su->su_flags = cpu_to_le32(0); |
| 666 | } |
| 667 | |
| 668 | static inline int |
| 669 | nilfs_segment_usage_clean(const struct nilfs_segment_usage *su) |
| 670 | { |
| 671 | return !le32_to_cpu(su->su_flags); |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * struct nilfs_sufile_header - segment usage file header |
| 676 | * @sh_ncleansegs: number of clean segments |
| 677 | * @sh_ndirtysegs: number of dirty segments |
| 678 | * @sh_last_alloc: last allocated segment number |
| 679 | */ |
| 680 | struct nilfs_sufile_header { |
| 681 | __le64 sh_ncleansegs; |
| 682 | __le64 sh_ndirtysegs; |
| 683 | __le64 sh_last_alloc; |
| 684 | /* ... */ |
| 685 | }; |
| 686 | |
| 687 | #define NILFS_SUFILE_FIRST_SEGMENT_USAGE_OFFSET \ |
| 688 | ((sizeof(struct nilfs_sufile_header) + \ |
| 689 | sizeof(struct nilfs_segment_usage) - 1) / \ |
| 690 | sizeof(struct nilfs_segment_usage)) |
| 691 | |
| 692 | /** |
| 693 | * nilfs_suinfo - segment usage information |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 694 | * @sui_lastmod: timestamp of last modification |
| 695 | * @sui_nblocks: number of written blocks in segment |
| 696 | * @sui_flags: segment usage flags |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 697 | */ |
| 698 | struct nilfs_suinfo { |
| 699 | __u64 sui_lastmod; |
| 700 | __u32 sui_nblocks; |
| 701 | __u32 sui_flags; |
| 702 | }; |
| 703 | |
| 704 | #define NILFS_SUINFO_FNS(flag, name) \ |
| 705 | static inline int \ |
| 706 | nilfs_suinfo_##name(const struct nilfs_suinfo *si) \ |
| 707 | { \ |
| 708 | return si->sui_flags & (1UL << NILFS_SEGMENT_USAGE_##flag); \ |
| 709 | } |
| 710 | |
| 711 | NILFS_SUINFO_FNS(ACTIVE, active) |
| 712 | NILFS_SUINFO_FNS(DIRTY, dirty) |
| 713 | NILFS_SUINFO_FNS(ERROR, error) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 714 | |
| 715 | static inline int nilfs_suinfo_clean(const struct nilfs_suinfo *si) |
| 716 | { |
| 717 | return !si->sui_flags; |
| 718 | } |
| 719 | |
| 720 | /* ioctl */ |
Andreas Rohner | 90ccf7d | 2014-04-03 14:50:26 -0700 | [diff] [blame] | 721 | /** |
| 722 | * nilfs_suinfo_update - segment usage information update |
| 723 | * @sup_segnum: segment number |
| 724 | * @sup_flags: flags for which fields are active in sup_sui |
| 725 | * @sup_reserved: reserved necessary for alignment |
| 726 | * @sup_sui: segment usage information |
| 727 | */ |
| 728 | struct nilfs_suinfo_update { |
| 729 | __u64 sup_segnum; |
| 730 | __u32 sup_flags; |
| 731 | __u32 sup_reserved; |
| 732 | struct nilfs_suinfo sup_sui; |
| 733 | }; |
| 734 | |
| 735 | enum { |
| 736 | NILFS_SUINFO_UPDATE_LASTMOD, |
| 737 | NILFS_SUINFO_UPDATE_NBLOCKS, |
| 738 | NILFS_SUINFO_UPDATE_FLAGS, |
| 739 | __NR_NILFS_SUINFO_UPDATE_FIELDS, |
| 740 | }; |
| 741 | |
| 742 | #define NILFS_SUINFO_UPDATE_FNS(flag, name) \ |
| 743 | static inline void \ |
| 744 | nilfs_suinfo_update_set_##name(struct nilfs_suinfo_update *sup) \ |
| 745 | { \ |
| 746 | sup->sup_flags |= 1UL << NILFS_SUINFO_UPDATE_##flag; \ |
| 747 | } \ |
| 748 | static inline void \ |
| 749 | nilfs_suinfo_update_clear_##name(struct nilfs_suinfo_update *sup) \ |
| 750 | { \ |
| 751 | sup->sup_flags &= ~(1UL << NILFS_SUINFO_UPDATE_##flag); \ |
| 752 | } \ |
| 753 | static inline int \ |
| 754 | nilfs_suinfo_update_##name(const struct nilfs_suinfo_update *sup) \ |
| 755 | { \ |
| 756 | return !!(sup->sup_flags & (1UL << NILFS_SUINFO_UPDATE_##flag));\ |
| 757 | } |
| 758 | |
| 759 | NILFS_SUINFO_UPDATE_FNS(LASTMOD, lastmod) |
| 760 | NILFS_SUINFO_UPDATE_FNS(NBLOCKS, nblocks) |
| 761 | NILFS_SUINFO_UPDATE_FNS(FLAGS, flags) |
| 762 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 763 | enum { |
| 764 | NILFS_CHECKPOINT, |
| 765 | NILFS_SNAPSHOT, |
| 766 | }; |
| 767 | |
| 768 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 769 | * struct nilfs_cpmode - change checkpoint mode structure |
| 770 | * @cm_cno: checkpoint number |
| 771 | * @cm_mode: mode of checkpoint |
| 772 | * @cm_pad: padding |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 773 | */ |
| 774 | struct nilfs_cpmode { |
| 775 | __u64 cm_cno; |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 776 | __u32 cm_mode; |
| 777 | __u32 cm_pad; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 778 | }; |
| 779 | |
| 780 | /** |
| 781 | * struct nilfs_argv - argument vector |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 782 | * @v_base: pointer on data array from userspace |
| 783 | * @v_nmembs: number of members in data array |
| 784 | * @v_size: size of data array in bytes |
| 785 | * @v_flags: flags |
| 786 | * @v_index: start number of target data items |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 787 | */ |
| 788 | struct nilfs_argv { |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 789 | __u64 v_base; |
| 790 | __u32 v_nmembs; /* number of members */ |
| 791 | __u16 v_size; /* size of members */ |
| 792 | __u16 v_flags; |
| 793 | __u64 v_index; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 794 | }; |
| 795 | |
| 796 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 797 | * struct nilfs_period - period of checkpoint numbers |
| 798 | * @p_start: start checkpoint number (inclusive) |
| 799 | * @p_end: end checkpoint number (exclusive) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 800 | */ |
| 801 | struct nilfs_period { |
| 802 | __u64 p_start; |
| 803 | __u64 p_end; |
| 804 | }; |
| 805 | |
| 806 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 807 | * struct nilfs_cpstat - checkpoint statistics |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 808 | * @cs_cno: checkpoint number |
| 809 | * @cs_ncps: number of checkpoints |
| 810 | * @cs_nsss: number of snapshots |
| 811 | */ |
| 812 | struct nilfs_cpstat { |
| 813 | __u64 cs_cno; |
| 814 | __u64 cs_ncps; |
| 815 | __u64 cs_nsss; |
| 816 | }; |
| 817 | |
| 818 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 819 | * struct nilfs_sustat - segment usage statistics |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 820 | * @ss_nsegs: number of segments |
| 821 | * @ss_ncleansegs: number of clean segments |
| 822 | * @ss_ndirtysegs: number of dirty segments |
Ryusuke Konishi | 2c2e52f | 2009-04-06 19:01:54 -0700 | [diff] [blame] | 823 | * @ss_ctime: creation time of the last segment |
| 824 | * @ss_nongc_ctime: creation time of the last segment not for GC |
| 825 | * @ss_prot_seq: least sequence number of segments which must not be reclaimed |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 826 | */ |
| 827 | struct nilfs_sustat { |
| 828 | __u64 ss_nsegs; |
| 829 | __u64 ss_ncleansegs; |
| 830 | __u64 ss_ndirtysegs; |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 831 | __u64 ss_ctime; |
| 832 | __u64 ss_nongc_ctime; |
Ryusuke Konishi | 2c2e52f | 2009-04-06 19:01:54 -0700 | [diff] [blame] | 833 | __u64 ss_prot_seq; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 834 | }; |
| 835 | |
| 836 | /** |
| 837 | * struct nilfs_vinfo - virtual block number information |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 838 | * @vi_vblocknr: virtual block number |
| 839 | * @vi_start: start checkpoint number (inclusive) |
| 840 | * @vi_end: end checkpoint number (exclusive) |
| 841 | * @vi_blocknr: disk block number |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 842 | */ |
| 843 | struct nilfs_vinfo { |
| 844 | __u64 vi_vblocknr; |
| 845 | __u64 vi_start; |
| 846 | __u64 vi_end; |
| 847 | __u64 vi_blocknr; |
| 848 | }; |
| 849 | |
| 850 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 851 | * struct nilfs_vdesc - descriptor of virtual block number |
| 852 | * @vd_ino: inode number |
| 853 | * @vd_cno: checkpoint number |
| 854 | * @vd_vblocknr: virtual block number |
| 855 | * @vd_period: period of checkpoint numbers |
| 856 | * @vd_blocknr: disk block number |
| 857 | * @vd_offset: logical block offset inside a file |
| 858 | * @vd_flags: flags (data or node block) |
| 859 | * @vd_pad: padding |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 860 | */ |
| 861 | struct nilfs_vdesc { |
| 862 | __u64 vd_ino; |
| 863 | __u64 vd_cno; |
| 864 | __u64 vd_vblocknr; |
| 865 | struct nilfs_period vd_period; |
| 866 | __u64 vd_blocknr; |
| 867 | __u64 vd_offset; |
| 868 | __u32 vd_flags; |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 869 | __u32 vd_pad; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 870 | }; |
| 871 | |
| 872 | /** |
Vyacheslav Dubeyko | 8c74ac0 | 2012-07-30 14:42:09 -0700 | [diff] [blame] | 873 | * struct nilfs_bdesc - descriptor of disk block number |
| 874 | * @bd_ino: inode number |
| 875 | * @bd_oblocknr: disk block address (for skipping dead blocks) |
| 876 | * @bd_blocknr: disk block address |
| 877 | * @bd_offset: logical block offset inside a file |
| 878 | * @bd_level: level in the b-tree organization |
| 879 | * @bd_pad: padding |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 880 | */ |
| 881 | struct nilfs_bdesc { |
| 882 | __u64 bd_ino; |
| 883 | __u64 bd_oblocknr; |
| 884 | __u64 bd_blocknr; |
| 885 | __u64 bd_offset; |
| 886 | __u32 bd_level; |
Ryusuke Konishi | dc498d0 | 2009-04-06 19:01:52 -0700 | [diff] [blame] | 887 | __u32 bd_pad; |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 888 | }; |
| 889 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 890 | #define NILFS_IOCTL_IDENT 'n' |
| 891 | |
| 892 | #define NILFS_IOCTL_CHANGE_CPMODE \ |
| 893 | _IOW(NILFS_IOCTL_IDENT, 0x80, struct nilfs_cpmode) |
| 894 | #define NILFS_IOCTL_DELETE_CHECKPOINT \ |
| 895 | _IOW(NILFS_IOCTL_IDENT, 0x81, __u64) |
| 896 | #define NILFS_IOCTL_GET_CPINFO \ |
| 897 | _IOR(NILFS_IOCTL_IDENT, 0x82, struct nilfs_argv) |
| 898 | #define NILFS_IOCTL_GET_CPSTAT \ |
| 899 | _IOR(NILFS_IOCTL_IDENT, 0x83, struct nilfs_cpstat) |
| 900 | #define NILFS_IOCTL_GET_SUINFO \ |
| 901 | _IOR(NILFS_IOCTL_IDENT, 0x84, struct nilfs_argv) |
| 902 | #define NILFS_IOCTL_GET_SUSTAT \ |
| 903 | _IOR(NILFS_IOCTL_IDENT, 0x85, struct nilfs_sustat) |
| 904 | #define NILFS_IOCTL_GET_VINFO \ |
| 905 | _IOWR(NILFS_IOCTL_IDENT, 0x86, struct nilfs_argv) |
| 906 | #define NILFS_IOCTL_GET_BDESCS \ |
| 907 | _IOWR(NILFS_IOCTL_IDENT, 0x87, struct nilfs_argv) |
| 908 | #define NILFS_IOCTL_CLEAN_SEGMENTS \ |
| 909 | _IOW(NILFS_IOCTL_IDENT, 0x88, struct nilfs_argv[5]) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 910 | #define NILFS_IOCTL_SYNC \ |
| 911 | _IOR(NILFS_IOCTL_IDENT, 0x8A, __u64) |
| 912 | #define NILFS_IOCTL_RESIZE \ |
| 913 | _IOW(NILFS_IOCTL_IDENT, 0x8B, __u64) |
Ryusuke Konishi | 619205d | 2011-05-05 01:23:57 +0900 | [diff] [blame] | 914 | #define NILFS_IOCTL_SET_ALLOC_RANGE \ |
| 915 | _IOW(NILFS_IOCTL_IDENT, 0x8C, __u64[2]) |
Andreas Rohner | 2cc88f3 | 2014-04-03 14:50:28 -0700 | [diff] [blame] | 916 | #define NILFS_IOCTL_SET_SUINFO \ |
| 917 | _IOW(NILFS_IOCTL_IDENT, 0x8D, struct nilfs_argv) |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 918 | |
Koji Sato | eed10e3 | 2009-04-06 19:01:21 -0700 | [diff] [blame] | 919 | #endif /* _LINUX_NILFS_FS_H */ |