Whamcloud - gitweb
LU-739 utils: remove references to lustre 1.4 upgrade flag
[fs/lustre-release.git] / lustre / include / uapi / linux / lustre / lustre_disk.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * uapi/linux/lustre_disk.h
33  *
34  * Lustre disk format definitions.
35  *
36  * Author: Nathan Rutman <nathan.rutman@seagate.com>
37  */
38
39 #ifndef _UAPI_LUSTRE_DISK_H
40 #define _UAPI_LUSTRE_DISK_H
41
42 /** \defgroup disk disk
43  *
44  * @{
45  */
46 #include <linux/types.h>
47
48 /****************** on-disk files ********************/
49
50 #define MDT_LOGS_DIR            "LOGS"  /* COMPAT_146 */
51 #define MOUNT_CONFIGS_DIR       "CONFIGS"
52 #define CONFIGS_FILE            "mountdata"
53 /** Persistent mount data are stored on the disk in this file. */
54 #define MOUNT_DATA_FILE         MOUNT_CONFIGS_DIR"/"CONFIGS_FILE
55 #define LAST_RCVD               "last_rcvd"
56 #define REPLY_DATA              "reply_data"
57 #define LOV_OBJID               "lov_objid"
58 #define LOV_OBJSEQ              "lov_objseq"
59 #define HEALTH_CHECK            "health_check"
60 #define CAPA_KEYS               "capa_keys"
61 #define CHANGELOG_USERS         "changelog_users"
62 #define MGS_NIDTBL_DIR          "NIDTBL_VERSIONS"
63 #define QMT_DIR                 "quota_master"
64 #define QSD_DIR                 "quota_slave"
65 #define HSM_ACTIONS             "hsm_actions"
66 #define LFSCK_DIR               "LFSCK"
67 #define LFSCK_BOOKMARK          "lfsck_bookmark"
68 #define LFSCK_LAYOUT            "lfsck_layout"
69 #define LFSCK_NAMESPACE         "lfsck_namespace"
70 #define REMOTE_PARENT_DIR       "REMOTE_PARENT_DIR"
71 #define INDEX_BACKUP_DIR        "index_backup"
72
73 /****************** persistent mount data *********************/
74
75 #define LDD_F_SV_TYPE_MDT       0x0001
76 #define LDD_F_SV_TYPE_OST       0x0002
77 #define LDD_F_SV_TYPE_MGS       0x0004
78 #define LDD_F_SV_TYPE_MASK      (LDD_F_SV_TYPE_MDT  | \
79                                  LDD_F_SV_TYPE_OST  | \
80                                  LDD_F_SV_TYPE_MGS)
81 #define LDD_F_SV_ALL            0x0008
82 /** need an index assignment */
83 #define LDD_F_NEED_INDEX        0x0010
84 /** never registered */
85 #define LDD_F_VIRGIN            0x0020
86 /** update the config logs for this server */
87 #define LDD_F_UPDATE            0x0040
88 /** rewrite the LDD */
89 #define LDD_F_REWRITE_LDD       0x0080
90 /** regenerate config logs for this fs or server */
91 #define LDD_F_WRITECONF         0x0100
92 /** COMPAT_14 */
93 /*#define LDD_F_UPGRADE14               0x0200 deprecated since 1.8 */
94 /** process as lctl conf_param */
95 #define LDD_F_PARAM             0x0400
96 /** all nodes are specified as service nodes */
97 #define LDD_F_NO_PRIMNODE       0x1000
98 /** IR enable flag */
99 #define LDD_F_IR_CAPABLE        0x2000
100 /** the MGS refused to register the target. */
101 #define LDD_F_ERROR             0x4000
102 /** process at lctl conf_param */
103 #define LDD_F_PARAM2            0x8000
104
105 #define LDD_MAGIC 0x1dd00001
106
107 #define XATTR_TARGET_RENAME "trusted.rename_tgt"
108
109 enum ldd_mount_type {
110         LDD_MT_EXT3 = 0,
111         LDD_MT_LDISKFS,
112         LDD_MT_SMFS,
113         LDD_MT_REISERFS,
114         LDD_MT_LDISKFS2,
115         LDD_MT_ZFS,
116         LDD_MT_LAST
117 };
118
119 /****************** last_rcvd file *********************/
120
121 #define LR_EXPIRE_INTERVALS 16  /**< number of intervals to track transno */
122 #define LR_SERVER_SIZE  512
123 #define LR_CLIENT_START 8192
124 #define LR_CLIENT_SIZE  128
125 #if LR_CLIENT_START < LR_SERVER_SIZE
126 #error "Can't have LR_CLIENT_START < LR_SERVER_SIZE"
127 #endif
128
129 /*
130  * Data stored per server at the head of the last_rcvd file. In le32 order.
131  */
132 struct lr_server_data {
133         __u8  lsd_uuid[40];        /* server UUID */
134         __u64 lsd_last_transno;    /* last completed transaction ID */
135         __u64 lsd_compat14;        /* reserved - compat with old last_rcvd */
136         __u64 lsd_mount_count;     /* incarnation number */
137         __u32 lsd_feature_compat;  /* compatible feature flags */
138         __u32 lsd_feature_rocompat;/* read-only compatible feature flags */
139         __u32 lsd_feature_incompat;/* incompatible feature flags */
140         __u32 lsd_server_size;     /* size of server data area */
141         __u32 lsd_client_start;    /* start of per-client data area */
142         __u16 lsd_client_size;     /* size of per-client data area */
143         __u16 lsd_subdir_count;    /* number of subdirectories for objects */
144         __u64 lsd_catalog_oid;     /* recovery catalog object id */
145         __u32 lsd_catalog_ogen;    /* recovery catalog inode generation */
146         __u8  lsd_peeruuid[40];    /* UUID of MDS associated with this OST */
147         __u32 lsd_osd_index;       /* index number of OST in LOV */
148         __u32 lsd_padding1;        /* was lsd_mdt_index, unused in 2.4.0 */
149         __u32 lsd_start_epoch;     /* VBR: start epoch from last boot */
150         /** transaction values since lsd_trans_table_time */
151         __u64 lsd_trans_table[LR_EXPIRE_INTERVALS];
152         /** start point of transno table below */
153         __u32 lsd_trans_table_time; /* time of first slot in table above */
154         __u32 lsd_expire_intervals; /* LR_EXPIRE_INTERVALS */
155         __u8  lsd_padding[LR_SERVER_SIZE - 288];
156 };
157
158 /* Data stored per client in the last_rcvd file. In le32 order. */
159 struct lsd_client_data {
160         __u8  lcd_uuid[40];             /* client UUID */
161         __u64 lcd_last_transno;         /* last completed transaction ID */
162         __u64 lcd_last_xid;             /* xid for the last transaction */
163         __u32 lcd_last_result;          /* result from last RPC */
164         __u32 lcd_last_data;            /* per-op data (disposition for
165                                          * open &c.)
166                                          */
167         /* for MDS_CLOSE requests */
168         __u64 lcd_last_close_transno;   /* last completed transaction ID */
169         __u64 lcd_last_close_xid;       /* xid for the last transaction */
170         __u32 lcd_last_close_result;    /* result from last RPC */
171         __u32 lcd_last_close_data;      /* per-op data */
172         /* VBR: last versions */
173         __u64 lcd_pre_versions[4];
174         __u32 lcd_last_epoch;
175         /* generation counter of client slot in last_rcvd */
176         __u32 lcd_generation;
177         __u8  lcd_padding[LR_CLIENT_SIZE - 128];
178 };
179
180 /* Data stored in each slot of the reply_data file.
181  *
182  * The lrd_client_gen field is assigned with lcd_generation value
183  * to allow identify which client the reply data belongs to.
184  */
185 struct lsd_reply_data {
186         __u64 lrd_transno;      /* transaction number */
187         __u64 lrd_xid;          /* transmission id */
188         __u64 lrd_data;         /* per-operation data */
189         __u32 lrd_result;       /* request result */
190         __u32 lrd_client_gen;   /* client generation */
191 };
192
193 /* Header of the reply_data file */
194 #define LRH_MAGIC 0xbdabda01
195 struct lsd_reply_header {
196         __u32   lrh_magic;
197         __u32   lrh_header_size;
198         __u32   lrh_reply_size;
199         __u8    lrh_pad[sizeof(struct lsd_reply_data) - 12];
200 };
201
202 /** @} disk */
203
204 #endif /* _UAPI_LUSTRE_DISK_H */