blob: 3a65e5aa2d765770e4c33a6613f56a19ce3a5666 [file] [log] [blame]
Koji Satoeed10e32009-04-06 19:01:21 -07001/*
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 Konishic486f382010-10-03 17:44:03 +09007 * 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 Satoeed10e32009-04-06 19:01:21 -07009 * (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 Konishic486f382010-10-03 17:44:03 +090014 * GNU Lesser General Public License for more details.
Koji Satoeed10e32009-04-06 19:01:21 -070015 *
Ryusuke Konishic486f382010-10-03 17:44:03 +090016 * You should have received a copy of the GNU Lesser General Public License
Koji Satoeed10e32009-04-06 19:01:21 -070017 * 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>
43
Koji Satoeed10e32009-04-06 19:01:21 -070044
45#define NILFS_INODE_BMAP_SIZE 7
46/**
47 * struct nilfs_inode - structure of an inode on disk
48 * @i_blocks: blocks count
49 * @i_size: size in bytes
Ryusuke Konishi61239232009-04-06 19:02:00 -070050 * @i_ctime: creation time (seconds)
51 * @i_mtime: modification time (seconds)
52 * @i_ctime_nsec: creation time (nano seconds)
53 * @i_mtime_nsec: modification time (nano seconds)
Koji Satoeed10e32009-04-06 19:01:21 -070054 * @i_uid: user id
55 * @i_gid: group id
56 * @i_mode: file mode
57 * @i_links_count: links count
58 * @i_flags: file flags
59 * @i_bmap: block mapping
60 * @i_xattr: extended attributes
61 * @i_generation: file generation (for NFS)
62 * @i_pad: padding
63 */
64struct nilfs_inode {
65 __le64 i_blocks;
66 __le64 i_size;
67 __le64 i_ctime;
68 __le64 i_mtime;
Ryusuke Konishi61239232009-04-06 19:02:00 -070069 __le32 i_ctime_nsec;
70 __le32 i_mtime_nsec;
Koji Satoeed10e32009-04-06 19:01:21 -070071 __le32 i_uid;
72 __le32 i_gid;
73 __le16 i_mode;
74 __le16 i_links_count;
75 __le32 i_flags;
76 __le64 i_bmap[NILFS_INODE_BMAP_SIZE];
77#define i_device_code i_bmap[0]
78 __le64 i_xattr;
79 __le32 i_generation;
80 __le32 i_pad;
81};
82
83/**
84 * struct nilfs_super_root - structure of super root
85 * @sr_sum: check sum
86 * @sr_bytes: byte count of the structure
87 * @sr_flags: flags (reserved)
88 * @sr_nongc_ctime: write time of the last segment not for cleaner operation
89 * @sr_dat: DAT file inode
90 * @sr_cpfile: checkpoint file inode
91 * @sr_sufile: segment usage file inode
92 */
93struct nilfs_super_root {
94 __le32 sr_sum;
95 __le16 sr_bytes;
96 __le16 sr_flags;
97 __le64 sr_nongc_ctime;
98 struct nilfs_inode sr_dat;
99 struct nilfs_inode sr_cpfile;
100 struct nilfs_inode sr_sufile;
101};
102
103#define NILFS_SR_MDT_OFFSET(inode_size, i) \
104 ((unsigned long)&((struct nilfs_super_root *)0)->sr_dat + \
105 (inode_size) * (i))
106#define NILFS_SR_DAT_OFFSET(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 0)
107#define NILFS_SR_CPFILE_OFFSET(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 1)
108#define NILFS_SR_SUFILE_OFFSET(inode_size) NILFS_SR_MDT_OFFSET(inode_size, 2)
109#define NILFS_SR_BYTES (sizeof(struct nilfs_super_root))
110
111/*
112 * Maximal mount counts
113 */
114#define NILFS_DFL_MAX_MNT_COUNT 50 /* 50 mounts */
115
116/*
117 * File system states (sbp->s_state, nilfs->ns_mount_state)
118 */
119#define NILFS_VALID_FS 0x0001 /* Unmounted cleanly */
120#define NILFS_ERROR_FS 0x0002 /* Errors detected */
121#define NILFS_RESIZE_FS 0x0004 /* Resize required */
122
123/*
124 * Mount flags (sbi->s_mount_opt)
125 */
126#define NILFS_MOUNT_ERROR_MODE 0x0070 /* Error mode mask */
127#define NILFS_MOUNT_ERRORS_CONT 0x0010 /* Continue on errors */
128#define NILFS_MOUNT_ERRORS_RO 0x0020 /* Remount fs ro on errors */
129#define NILFS_MOUNT_ERRORS_PANIC 0x0040 /* Panic on errors */
Koji Satoeed10e32009-04-06 19:01:21 -0700130#define NILFS_MOUNT_BARRIER 0x1000 /* Use block barriers */
131#define NILFS_MOUNT_STRICT_ORDER 0x2000 /* Apply strict in-order
132 semantics also for data */
Ryusuke Konishi02345762009-11-20 03:28:01 +0900133#define NILFS_MOUNT_NORECOVERY 0x4000 /* Disable write access during
134 mount-time recovery */
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900135#define NILFS_MOUNT_DISCARD 0x8000 /* Issue DISCARD requests */
Koji Satoeed10e32009-04-06 19:01:21 -0700136
137
138/**
139 * struct nilfs_super_block - structure of super block on disk
140 */
141struct nilfs_super_block {
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900142/*00*/ __le32 s_rev_level; /* Revision level */
Koji Satoeed10e32009-04-06 19:01:21 -0700143 __le16 s_minor_rev_level; /* minor revision level */
144 __le16 s_magic; /* Magic signature */
145
146 __le16 s_bytes; /* Bytes count of CRC calculation
147 for this structure. s_reserved
148 is excluded. */
149 __le16 s_flags; /* flags */
150 __le32 s_crc_seed; /* Seed value of CRC calculation */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900151/*10*/ __le32 s_sum; /* Check sum of super block */
Koji Satoeed10e32009-04-06 19:01:21 -0700152
153 __le32 s_log_block_size; /* Block size represented as follows
154 blocksize =
155 1 << (s_log_block_size + 10) */
156 __le64 s_nsegments; /* Number of segments in filesystem */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900157/*20*/ __le64 s_dev_size; /* block device size in bytes */
Koji Satoeed10e32009-04-06 19:01:21 -0700158 __le64 s_first_data_block; /* 1st seg disk block number */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900159/*30*/ __le32 s_blocks_per_segment; /* number of blocks per full segment */
Koji Satoeed10e32009-04-06 19:01:21 -0700160 __le32 s_r_segments_percentage; /* Reserved segments percentage */
161
162 __le64 s_last_cno; /* Last checkpoint number */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900163/*40*/ __le64 s_last_pseg; /* disk block addr pseg written last */
Koji Satoeed10e32009-04-06 19:01:21 -0700164 __le64 s_last_seq; /* seq. number of seg written last */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900165/*50*/ __le64 s_free_blocks_count; /* Free blocks count */
Koji Satoeed10e32009-04-06 19:01:21 -0700166
167 __le64 s_ctime; /* Creation time (execution time of
168 newfs) */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900169/*60*/ __le64 s_mtime; /* Mount time */
Koji Satoeed10e32009-04-06 19:01:21 -0700170 __le64 s_wtime; /* Write time */
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900171/*70*/ __le16 s_mnt_count; /* Mount count */
Koji Satoeed10e32009-04-06 19:01:21 -0700172 __le16 s_max_mnt_count; /* Maximal mount count */
173 __le16 s_state; /* File system state */
174 __le16 s_errors; /* Behaviour when detecting errors */
175 __le64 s_lastcheck; /* time of last check */
176
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900177/*80*/ __le32 s_checkinterval; /* max. time between checks */
Koji Satoeed10e32009-04-06 19:01:21 -0700178 __le32 s_creator_os; /* OS */
179 __le16 s_def_resuid; /* Default uid for reserved blocks */
180 __le16 s_def_resgid; /* Default gid for reserved blocks */
Ryusuke Konishi0d9cc232010-04-26 01:17:48 +0900181 __le32 s_first_ino; /* First non-reserved inode */
Koji Satoeed10e32009-04-06 19:01:21 -0700182
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900183/*90*/ __le16 s_inode_size; /* Size of an inode */
Koji Satoeed10e32009-04-06 19:01:21 -0700184 __le16 s_dat_entry_size; /* Size of a dat entry */
185 __le16 s_checkpoint_size; /* Size of a checkpoint */
186 __le16 s_segment_usage_size; /* Size of a segment usage */
187
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900188/*98*/ __u8 s_uuid[16]; /* 128-bit uuid for volume */
189/*A8*/ char s_volume_name[80]; /* volume name */
Koji Satoeed10e32009-04-06 19:01:21 -0700190
Ryusuke Konishi2f1b7cd2010-07-22 03:22:18 +0900191/*F8*/ __le32 s_c_interval; /* Commit interval of segment */
Koji Satoeed10e32009-04-06 19:01:21 -0700192 __le32 s_c_block_max; /* Threshold of data amount for
193 the segment construction */
Ryusuke Konishi1a80a172010-07-22 03:22:19 +0900194/*100*/ __le64 s_feature_compat; /* Compatible feature set */
195 __le64 s_feature_compat_ro; /* Read-only compatible feature set */
196 __le64 s_feature_incompat; /* Incompatible feature set */
197 __u32 s_reserved[186]; /* padding to the end of the block */
Koji Satoeed10e32009-04-06 19:01:21 -0700198};
199
200/*
201 * Codes for operating systems
202 */
203#define NILFS_OS_LINUX 0
204/* Codes from 1 to 4 are reserved to keep compatibility with ext2 creator-OS */
205
206/*
207 * Revision levels
208 */
209#define NILFS_CURRENT_REV 2 /* current major revision */
210#define NILFS_MINOR_REV 0 /* minor revision */
Ryusuke Konishi9566a7a2010-08-10 00:58:41 +0900211#define NILFS_MIN_SUPP_REV 2 /* minimum supported revision */
Koji Satoeed10e32009-04-06 19:01:21 -0700212
213/*
Ryusuke Konishi1a80a172010-07-22 03:22:19 +0900214 * Feature set definitions
215 *
216 * If there is a bit set in the incompatible feature set that the kernel
217 * doesn't know about, it should refuse to mount the filesystem.
218 */
219#define NILFS_FEATURE_COMPAT_SUPP 0ULL
220#define NILFS_FEATURE_COMPAT_RO_SUPP 0ULL
221#define NILFS_FEATURE_INCOMPAT_SUPP 0ULL
222
223/*
Koji Satoeed10e32009-04-06 19:01:21 -0700224 * Bytes count of super_block for CRC-calculation
225 */
226#define NILFS_SB_BYTES \
227 ((long)&((struct nilfs_super_block *)0)->s_reserved)
228
229/*
230 * Special inode number
231 */
232#define NILFS_ROOT_INO 2 /* Root file inode */
233#define NILFS_DAT_INO 3 /* DAT file */
234#define NILFS_CPFILE_INO 4 /* checkpoint file */
235#define NILFS_SUFILE_INO 5 /* segment usage file */
236#define NILFS_IFILE_INO 6 /* ifile */
237#define NILFS_ATIME_INO 7 /* Atime file (reserved) */
238#define NILFS_XATTR_INO 8 /* Xattribute file (reserved) */
239#define NILFS_SKETCH_INO 10 /* Sketch file */
240#define NILFS_USER_INO 11 /* Fisrt user's file inode number */
241
242#define NILFS_SB_OFFSET_BYTES 1024 /* byte offset of nilfs superblock */
243#define NILFS_SUPER_MAGIC 0x3434 /* NILFS filesystem magic number */
244
245#define NILFS_SEG_MIN_BLOCKS 16 /* Minimum number of blocks in
246 a full segment */
247#define NILFS_PSEG_MIN_BLOCKS 2 /* Minimum number of blocks in
248 a partial segment */
249#define NILFS_MIN_NRSVSEGS 8 /* Minimum number of reserved
250 segments */
251
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700252/*
Ryusuke Konishi6c43f412010-08-20 20:10:38 +0900253 * We call DAT, cpfile, and sufile root metadata files. Inodes of
254 * these files are written in super root block instead of ifile, and
255 * garbage collector doesn't keep any past versions of these files.
256 */
257#define NILFS_ROOT_METADATA_FILE(ino) \
258 ((ino) >= NILFS_DAT_INO && (ino) <= NILFS_SUFILE_INO)
259
260/*
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700261 * bytes offset of secondary super block
262 */
263#define NILFS_SB2_OFFSET_BYTES(devsize) ((((devsize) >> 12) - 1) << 12)
Koji Satoeed10e32009-04-06 19:01:21 -0700264
265/*
266 * Maximal count of links to a file
267 */
268#define NILFS_LINK_MAX 32000
269
270/*
271 * Structure of a directory entry
272 * (Same as ext2)
273 */
274
275#define NILFS_NAME_LEN 255
276
277/*
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900278 * Block size limitations
279 */
280#define NILFS_MIN_BLOCK_SIZE 1024
281#define NILFS_MAX_BLOCK_SIZE 65536
282
283/*
Koji Satoeed10e32009-04-06 19:01:21 -0700284 * The new version of the directory entry. Since V0 structures are
285 * stored in intel byte order, and the name_len field could never be
286 * bigger than 255 chars, it's safe to reclaim the extra byte for the
287 * file_type field.
288 */
289struct nilfs_dir_entry {
290 __le64 inode; /* Inode number */
291 __le16 rec_len; /* Directory entry length */
292 __u8 name_len; /* Name length */
293 __u8 file_type;
294 char name[NILFS_NAME_LEN]; /* File name */
295 char pad;
296};
297
298/*
299 * NILFS directory file types. Only the low 3 bits are used. The
300 * other bits are reserved for now.
301 */
302enum {
303 NILFS_FT_UNKNOWN,
304 NILFS_FT_REG_FILE,
305 NILFS_FT_DIR,
306 NILFS_FT_CHRDEV,
307 NILFS_FT_BLKDEV,
308 NILFS_FT_FIFO,
309 NILFS_FT_SOCK,
310 NILFS_FT_SYMLINK,
311 NILFS_FT_MAX
312};
313
314/*
315 * NILFS_DIR_PAD defines the directory entries boundaries
316 *
317 * NOTE: It must be a multiple of 8
318 */
319#define NILFS_DIR_PAD 8
320#define NILFS_DIR_ROUND (NILFS_DIR_PAD - 1)
321#define NILFS_DIR_REC_LEN(name_len) (((name_len) + 12 + NILFS_DIR_ROUND) & \
322 ~NILFS_DIR_ROUND)
Ryusuke Konishi6cda9fa2010-07-25 20:39:03 +0900323#define NILFS_MAX_REC_LEN ((1<<16)-1)
Koji Satoeed10e32009-04-06 19:01:21 -0700324
Ryusuke Konishi6cda9fa2010-07-25 20:39:03 +0900325static inline unsigned nilfs_rec_len_from_disk(__le16 dlen)
326{
327 unsigned len = le16_to_cpu(dlen);
328
Ryusuke Konishiae191832011-02-04 01:19:38 +0900329#if !defined(__KERNEL__) || (PAGE_CACHE_SIZE >= 65536)
Ryusuke Konishi6cda9fa2010-07-25 20:39:03 +0900330 if (len == NILFS_MAX_REC_LEN)
331 return 1 << 16;
Ryusuke Konishiae191832011-02-04 01:19:38 +0900332#endif
Ryusuke Konishi6cda9fa2010-07-25 20:39:03 +0900333 return len;
334}
335
336static inline __le16 nilfs_rec_len_to_disk(unsigned len)
337{
Ryusuke Konishiae191832011-02-04 01:19:38 +0900338#if !defined(__KERNEL__) || (PAGE_CACHE_SIZE >= 65536)
Ryusuke Konishi6cda9fa2010-07-25 20:39:03 +0900339 if (len == (1 << 16))
340 return cpu_to_le16(NILFS_MAX_REC_LEN);
341 else if (len > (1 << 16))
342 BUG();
Ryusuke Konishiae191832011-02-04 01:19:38 +0900343#endif
Ryusuke Konishi6cda9fa2010-07-25 20:39:03 +0900344 return cpu_to_le16(len);
345}
Koji Satoeed10e32009-04-06 19:01:21 -0700346
347/**
348 * struct nilfs_finfo - file information
349 * @fi_ino: inode number
350 * @fi_cno: checkpoint number
351 * @fi_nblocks: number of blocks (including intermediate blocks)
352 * @fi_ndatablk: number of file data blocks
353 */
354struct nilfs_finfo {
355 __le64 fi_ino;
356 __le64 fi_cno;
357 __le32 fi_nblocks;
358 __le32 fi_ndatablk;
359 /* array of virtual block numbers */
360};
361
362/**
363 * struct nilfs_binfo_v - information for the block to which a virtual block number is assigned
364 * @bi_vblocknr: virtual block number
365 * @bi_blkoff: block offset
366 */
367struct nilfs_binfo_v {
368 __le64 bi_vblocknr;
369 __le64 bi_blkoff;
370};
371
372/**
373 * struct nilfs_binfo_dat - information for the block which belongs to the DAT file
374 * @bi_blkoff: block offset
375 * @bi_level: level
376 * @bi_pad: padding
377 */
378struct nilfs_binfo_dat {
379 __le64 bi_blkoff;
380 __u8 bi_level;
381 __u8 bi_pad[7];
382};
383
384/**
385 * union nilfs_binfo: block information
386 * @bi_v: nilfs_binfo_v structure
387 * @bi_dat: nilfs_binfo_dat structure
388 */
389union nilfs_binfo {
390 struct nilfs_binfo_v bi_v;
391 struct nilfs_binfo_dat bi_dat;
392};
393
394/**
395 * struct nilfs_segment_summary - segment summary
396 * @ss_datasum: checksum of data
397 * @ss_sumsum: checksum of segment summary
398 * @ss_magic: magic number
399 * @ss_bytes: size of this structure in bytes
400 * @ss_flags: flags
401 * @ss_seq: sequence number
402 * @ss_create: creation timestamp
403 * @ss_next: next segment
404 * @ss_nblocks: number of blocks
405 * @ss_nfinfo: number of finfo structures
406 * @ss_sumbytes: total size of segment summary in bytes
407 * @ss_pad: padding
Ryusuke Konishi50614bc2010-04-10 17:59:15 +0900408 * @ss_cno: checkpoint number
Koji Satoeed10e32009-04-06 19:01:21 -0700409 */
410struct nilfs_segment_summary {
411 __le32 ss_datasum;
412 __le32 ss_sumsum;
413 __le32 ss_magic;
414 __le16 ss_bytes;
415 __le16 ss_flags;
416 __le64 ss_seq;
417 __le64 ss_create;
418 __le64 ss_next;
419 __le32 ss_nblocks;
420 __le32 ss_nfinfo;
421 __le32 ss_sumbytes;
422 __le32 ss_pad;
Ryusuke Konishi50614bc2010-04-10 17:59:15 +0900423 __le64 ss_cno;
Koji Satoeed10e32009-04-06 19:01:21 -0700424 /* array of finfo structures */
425};
426
427#define NILFS_SEGSUM_MAGIC 0x1eaffa11 /* segment summary magic number */
428
429/*
430 * Segment summary flags
431 */
432#define NILFS_SS_LOGBGN 0x0001 /* begins a logical segment */
433#define NILFS_SS_LOGEND 0x0002 /* ends a logical segment */
434#define NILFS_SS_SR 0x0004 /* has super root */
435#define NILFS_SS_SYNDT 0x0008 /* includes data only updates */
436#define NILFS_SS_GC 0x0010 /* segment written for cleaner operation */
437
438/**
Jiro SEKIBA6600b9d2009-11-09 19:10:11 +0900439 * struct nilfs_btree_node - B-tree node
440 * @bn_flags: flags
441 * @bn_level: level
442 * @bn_nchildren: number of children
443 * @bn_pad: padding
444 */
445struct nilfs_btree_node {
446 __u8 bn_flags;
447 __u8 bn_level;
448 __le16 bn_nchildren;
449 __le32 bn_pad;
450};
451
452/* flags */
453#define NILFS_BTREE_NODE_ROOT 0x01
454
455/* level */
456#define NILFS_BTREE_LEVEL_DATA 0
457#define NILFS_BTREE_LEVEL_NODE_MIN (NILFS_BTREE_LEVEL_DATA + 1)
458#define NILFS_BTREE_LEVEL_MAX 14
459
460/**
Koji Satoeed10e32009-04-06 19:01:21 -0700461 * struct nilfs_palloc_group_desc - block group descriptor
462 * @pg_nfrees: number of free entries in block group
463 */
464struct nilfs_palloc_group_desc {
465 __le32 pg_nfrees;
466};
467
468/**
469 * struct nilfs_dat_entry - disk address translation entry
Qinghuang Feng37e11f32010-04-25 20:17:25 +0800470 * @de_blocknr: block number
471 * @de_start: start checkpoint number
472 * @de_end: end checkpoint number
473 * @de_rsv: reserved for future use
Koji Satoeed10e32009-04-06 19:01:21 -0700474 */
475struct nilfs_dat_entry {
476 __le64 de_blocknr;
477 __le64 de_start;
478 __le64 de_end;
479 __le64 de_rsv;
480};
481
482/**
Koji Satoeed10e32009-04-06 19:01:21 -0700483 * struct nilfs_snapshot_list - snapshot list
484 * @ssl_next: next checkpoint number on snapshot list
485 * @ssl_prev: previous checkpoint number on snapshot list
486 */
487struct nilfs_snapshot_list {
488 __le64 ssl_next;
489 __le64 ssl_prev;
490};
491
492/**
493 * struct nilfs_checkpoint - checkpoint structure
494 * @cp_flags: flags
495 * @cp_checkpoints_count: checkpoints count in a block
496 * @cp_snapshot_list: snapshot list
497 * @cp_cno: checkpoint number
498 * @cp_create: creation timestamp
499 * @cp_nblk_inc: number of blocks incremented by this checkpoint
500 * @cp_inodes_count: inodes count
501 * @cp_blocks_count: blocks count
502 * @cp_ifile_inode: inode of ifile
503 */
504struct nilfs_checkpoint {
505 __le32 cp_flags;
506 __le32 cp_checkpoints_count;
507 struct nilfs_snapshot_list cp_snapshot_list;
508 __le64 cp_cno;
509 __le64 cp_create;
510 __le64 cp_nblk_inc;
511 __le64 cp_inodes_count;
512 __le64 cp_blocks_count; /* Reserved (might be deleted) */
513
514 /* Do not change the byte offset of ifile inode.
515 To keep the compatibility of the disk format,
516 additional fields should be added behind cp_ifile_inode. */
517 struct nilfs_inode cp_ifile_inode;
518};
519
520/* checkpoint flags */
521enum {
522 NILFS_CHECKPOINT_SNAPSHOT,
523 NILFS_CHECKPOINT_INVALID,
524 NILFS_CHECKPOINT_SKETCH,
Ryusuke Konishic96fa462009-04-06 19:01:57 -0700525 NILFS_CHECKPOINT_MINOR,
Koji Satoeed10e32009-04-06 19:01:21 -0700526};
527
528#define NILFS_CHECKPOINT_FNS(flag, name) \
529static inline void \
530nilfs_checkpoint_set_##name(struct nilfs_checkpoint *cp) \
531{ \
532 cp->cp_flags = cpu_to_le32(le32_to_cpu(cp->cp_flags) | \
533 (1UL << NILFS_CHECKPOINT_##flag)); \
534} \
535static inline void \
536nilfs_checkpoint_clear_##name(struct nilfs_checkpoint *cp) \
537{ \
538 cp->cp_flags = cpu_to_le32(le32_to_cpu(cp->cp_flags) & \
539 ~(1UL << NILFS_CHECKPOINT_##flag)); \
540} \
541static inline int \
542nilfs_checkpoint_##name(const struct nilfs_checkpoint *cp) \
543{ \
544 return !!(le32_to_cpu(cp->cp_flags) & \
545 (1UL << NILFS_CHECKPOINT_##flag)); \
546}
547
548NILFS_CHECKPOINT_FNS(SNAPSHOT, snapshot)
549NILFS_CHECKPOINT_FNS(INVALID, invalid)
Ryusuke Konishic96fa462009-04-06 19:01:57 -0700550NILFS_CHECKPOINT_FNS(MINOR, minor)
Koji Satoeed10e32009-04-06 19:01:21 -0700551
552/**
553 * struct nilfs_cpinfo - checkpoint information
554 * @ci_flags: flags
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700555 * @ci_pad: padding
Koji Satoeed10e32009-04-06 19:01:21 -0700556 * @ci_cno: checkpoint number
557 * @ci_create: creation timestamp
558 * @ci_nblk_inc: number of blocks incremented by this checkpoint
559 * @ci_inodes_count: inodes count
560 * @ci_blocks_count: blocks count
561 * @ci_next: next checkpoint number in snapshot list
562 */
563struct nilfs_cpinfo {
564 __u32 ci_flags;
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700565 __u32 ci_pad;
Koji Satoeed10e32009-04-06 19:01:21 -0700566 __u64 ci_cno;
567 __u64 ci_create;
568 __u64 ci_nblk_inc;
569 __u64 ci_inodes_count;
570 __u64 ci_blocks_count;
571 __u64 ci_next;
572};
573
574#define NILFS_CPINFO_FNS(flag, name) \
575static inline int \
576nilfs_cpinfo_##name(const struct nilfs_cpinfo *cpinfo) \
577{ \
578 return !!(cpinfo->ci_flags & (1UL << NILFS_CHECKPOINT_##flag)); \
579}
580
581NILFS_CPINFO_FNS(SNAPSHOT, snapshot)
582NILFS_CPINFO_FNS(INVALID, invalid)
Ryusuke Konishic96fa462009-04-06 19:01:57 -0700583NILFS_CPINFO_FNS(MINOR, minor)
Koji Satoeed10e32009-04-06 19:01:21 -0700584
585
586/**
587 * struct nilfs_cpfile_header - checkpoint file header
588 * @ch_ncheckpoints: number of checkpoints
589 * @ch_nsnapshots: number of snapshots
590 * @ch_snapshot_list: snapshot list
591 */
592struct nilfs_cpfile_header {
593 __le64 ch_ncheckpoints;
594 __le64 ch_nsnapshots;
595 struct nilfs_snapshot_list ch_snapshot_list;
596};
597
598#define NILFS_CPFILE_FIRST_CHECKPOINT_OFFSET \
599 ((sizeof(struct nilfs_cpfile_header) + \
600 sizeof(struct nilfs_checkpoint) - 1) / \
601 sizeof(struct nilfs_checkpoint))
602
603/**
604 * struct nilfs_segment_usage - segment usage
605 * @su_lastmod: last modified timestamp
606 * @su_nblocks: number of blocks in segment
607 * @su_flags: flags
608 */
609struct nilfs_segment_usage {
610 __le64 su_lastmod;
611 __le32 su_nblocks;
612 __le32 su_flags;
613};
614
615/* segment usage flag */
616enum {
617 NILFS_SEGMENT_USAGE_ACTIVE,
618 NILFS_SEGMENT_USAGE_DIRTY,
619 NILFS_SEGMENT_USAGE_ERROR,
620
Koji Satoeed10e32009-04-06 19:01:21 -0700621 /* ... */
622};
623
624#define NILFS_SEGMENT_USAGE_FNS(flag, name) \
625static inline void \
626nilfs_segment_usage_set_##name(struct nilfs_segment_usage *su) \
627{ \
628 su->su_flags = cpu_to_le32(le32_to_cpu(su->su_flags) | \
629 (1UL << NILFS_SEGMENT_USAGE_##flag));\
630} \
631static inline void \
632nilfs_segment_usage_clear_##name(struct nilfs_segment_usage *su) \
633{ \
634 su->su_flags = \
635 cpu_to_le32(le32_to_cpu(su->su_flags) & \
636 ~(1UL << NILFS_SEGMENT_USAGE_##flag)); \
637} \
638static inline int \
639nilfs_segment_usage_##name(const struct nilfs_segment_usage *su) \
640{ \
641 return !!(le32_to_cpu(su->su_flags) & \
642 (1UL << NILFS_SEGMENT_USAGE_##flag)); \
643}
644
645NILFS_SEGMENT_USAGE_FNS(ACTIVE, active)
646NILFS_SEGMENT_USAGE_FNS(DIRTY, dirty)
647NILFS_SEGMENT_USAGE_FNS(ERROR, error)
Koji Satoeed10e32009-04-06 19:01:21 -0700648
649static inline void
650nilfs_segment_usage_set_clean(struct nilfs_segment_usage *su)
651{
652 su->su_lastmod = cpu_to_le64(0);
653 su->su_nblocks = cpu_to_le32(0);
654 su->su_flags = cpu_to_le32(0);
655}
656
657static inline int
658nilfs_segment_usage_clean(const struct nilfs_segment_usage *su)
659{
660 return !le32_to_cpu(su->su_flags);
661}
662
663/**
664 * struct nilfs_sufile_header - segment usage file header
665 * @sh_ncleansegs: number of clean segments
666 * @sh_ndirtysegs: number of dirty segments
667 * @sh_last_alloc: last allocated segment number
668 */
669struct nilfs_sufile_header {
670 __le64 sh_ncleansegs;
671 __le64 sh_ndirtysegs;
672 __le64 sh_last_alloc;
673 /* ... */
674};
675
676#define NILFS_SUFILE_FIRST_SEGMENT_USAGE_OFFSET \
677 ((sizeof(struct nilfs_sufile_header) + \
678 sizeof(struct nilfs_segment_usage) - 1) / \
679 sizeof(struct nilfs_segment_usage))
680
681/**
682 * nilfs_suinfo - segment usage information
683 * @sui_lastmod:
684 * @sui_nblocks:
685 * @sui_flags:
686 */
687struct nilfs_suinfo {
688 __u64 sui_lastmod;
689 __u32 sui_nblocks;
690 __u32 sui_flags;
691};
692
693#define NILFS_SUINFO_FNS(flag, name) \
694static inline int \
695nilfs_suinfo_##name(const struct nilfs_suinfo *si) \
696{ \
697 return si->sui_flags & (1UL << NILFS_SEGMENT_USAGE_##flag); \
698}
699
700NILFS_SUINFO_FNS(ACTIVE, active)
701NILFS_SUINFO_FNS(DIRTY, dirty)
702NILFS_SUINFO_FNS(ERROR, error)
Koji Satoeed10e32009-04-06 19:01:21 -0700703
704static inline int nilfs_suinfo_clean(const struct nilfs_suinfo *si)
705{
706 return !si->sui_flags;
707}
708
709/* ioctl */
710enum {
711 NILFS_CHECKPOINT,
712 NILFS_SNAPSHOT,
713};
714
715/**
716 * struct nilfs_cpmode -
717 * @cc_cno:
718 * @cc_mode:
719 */
720struct nilfs_cpmode {
721 __u64 cm_cno;
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700722 __u32 cm_mode;
723 __u32 cm_pad;
Koji Satoeed10e32009-04-06 19:01:21 -0700724};
725
726/**
727 * struct nilfs_argv - argument vector
728 * @v_base:
729 * @v_nmembs:
730 * @v_size:
Koji Satoeed10e32009-04-06 19:01:21 -0700731 * @v_flags:
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700732 * @v_index:
Koji Satoeed10e32009-04-06 19:01:21 -0700733 */
734struct nilfs_argv {
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700735 __u64 v_base;
736 __u32 v_nmembs; /* number of members */
737 __u16 v_size; /* size of members */
738 __u16 v_flags;
739 __u64 v_index;
Koji Satoeed10e32009-04-06 19:01:21 -0700740};
741
742/**
743 * struct nilfs_period -
744 * @p_start:
745 * @p_end:
746 */
747struct nilfs_period {
748 __u64 p_start;
749 __u64 p_end;
750};
751
752/**
753 * struct nilfs_cpstat -
754 * @cs_cno: checkpoint number
755 * @cs_ncps: number of checkpoints
756 * @cs_nsss: number of snapshots
757 */
758struct nilfs_cpstat {
759 __u64 cs_cno;
760 __u64 cs_ncps;
761 __u64 cs_nsss;
762};
763
764/**
765 * struct nilfs_sustat -
766 * @ss_nsegs: number of segments
767 * @ss_ncleansegs: number of clean segments
768 * @ss_ndirtysegs: number of dirty segments
Ryusuke Konishi2c2e52f2009-04-06 19:01:54 -0700769 * @ss_ctime: creation time of the last segment
770 * @ss_nongc_ctime: creation time of the last segment not for GC
771 * @ss_prot_seq: least sequence number of segments which must not be reclaimed
Koji Satoeed10e32009-04-06 19:01:21 -0700772 */
773struct nilfs_sustat {
774 __u64 ss_nsegs;
775 __u64 ss_ncleansegs;
776 __u64 ss_ndirtysegs;
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700777 __u64 ss_ctime;
778 __u64 ss_nongc_ctime;
Ryusuke Konishi2c2e52f2009-04-06 19:01:54 -0700779 __u64 ss_prot_seq;
Koji Satoeed10e32009-04-06 19:01:21 -0700780};
781
782/**
783 * struct nilfs_vinfo - virtual block number information
784 * @vi_vblocknr:
785 * @vi_start:
786 * @vi_end:
787 * @vi_blocknr:
788 */
789struct nilfs_vinfo {
790 __u64 vi_vblocknr;
791 __u64 vi_start;
792 __u64 vi_end;
793 __u64 vi_blocknr;
794};
795
796/**
797 * struct nilfs_vdesc -
798 */
799struct nilfs_vdesc {
800 __u64 vd_ino;
801 __u64 vd_cno;
802 __u64 vd_vblocknr;
803 struct nilfs_period vd_period;
804 __u64 vd_blocknr;
805 __u64 vd_offset;
806 __u32 vd_flags;
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700807 __u32 vd_pad;
Koji Satoeed10e32009-04-06 19:01:21 -0700808};
809
810/**
811 * struct nilfs_bdesc -
812 */
813struct nilfs_bdesc {
814 __u64 bd_ino;
815 __u64 bd_oblocknr;
816 __u64 bd_blocknr;
817 __u64 bd_offset;
818 __u32 bd_level;
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700819 __u32 bd_pad;
Koji Satoeed10e32009-04-06 19:01:21 -0700820};
821
Koji Satoeed10e32009-04-06 19:01:21 -0700822#define NILFS_IOCTL_IDENT 'n'
823
824#define NILFS_IOCTL_CHANGE_CPMODE \
825 _IOW(NILFS_IOCTL_IDENT, 0x80, struct nilfs_cpmode)
826#define NILFS_IOCTL_DELETE_CHECKPOINT \
827 _IOW(NILFS_IOCTL_IDENT, 0x81, __u64)
828#define NILFS_IOCTL_GET_CPINFO \
829 _IOR(NILFS_IOCTL_IDENT, 0x82, struct nilfs_argv)
830#define NILFS_IOCTL_GET_CPSTAT \
831 _IOR(NILFS_IOCTL_IDENT, 0x83, struct nilfs_cpstat)
832#define NILFS_IOCTL_GET_SUINFO \
833 _IOR(NILFS_IOCTL_IDENT, 0x84, struct nilfs_argv)
834#define NILFS_IOCTL_GET_SUSTAT \
835 _IOR(NILFS_IOCTL_IDENT, 0x85, struct nilfs_sustat)
836#define NILFS_IOCTL_GET_VINFO \
837 _IOWR(NILFS_IOCTL_IDENT, 0x86, struct nilfs_argv)
838#define NILFS_IOCTL_GET_BDESCS \
839 _IOWR(NILFS_IOCTL_IDENT, 0x87, struct nilfs_argv)
840#define NILFS_IOCTL_CLEAN_SEGMENTS \
841 _IOW(NILFS_IOCTL_IDENT, 0x88, struct nilfs_argv[5])
Koji Satoeed10e32009-04-06 19:01:21 -0700842#define NILFS_IOCTL_SYNC \
843 _IOR(NILFS_IOCTL_IDENT, 0x8A, __u64)
844#define NILFS_IOCTL_RESIZE \
845 _IOW(NILFS_IOCTL_IDENT, 0x8B, __u64)
846
Koji Satoeed10e32009-04-06 19:01:21 -0700847#endif /* _LINUX_NILFS_FS_H */