Whamcloud - gitweb
LU-11912 fid: clean up OBIF_MAX_OID and IDIF_MAX_OID
[fs/lustre-release.git] / lustre / include / uapi / linux / lustre / lustre_idl.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, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * Lustre wire protocol definitions.
32  */
33
34 /** \defgroup lustreidl lustreidl
35  *
36  * Lustre wire protocol definitions.
37  *
38  * ALL structs passing over the wire should be declared here.  Structs
39  * that are used in interfaces with userspace should go in lustre_user.h.
40  *
41  * All structs being declared here should be built from simple fixed-size
42  * types defined in linux/types.h or be built from other types or
43  * structs also declared in this file.  Similarly, all flags and magic
44  * values in those structs should also be declared here.  This ensures
45  * that the Lustre wire protocol is not influenced by external dependencies.
46  *
47  * The only other acceptable items in this file are VERY SIMPLE accessor
48  * functions to avoid callers grubbing inside the structures. Nothing that
49  * depends on external functions or definitions should be in here.
50  *
51  * Structs must be properly aligned to put 64-bit values on an 8-byte
52  * boundary.  Any structs being added here must also be added to
53  * utils/wirecheck.c and "make newwiretest" run to regenerate the
54  * utils/wiretest.c sources.  This allows us to verify that wire structs
55  * have the proper alignment/size on all architectures.
56  *
57  * DO NOT CHANGE any of the structs, flags, values declared here and used
58  * in released Lustre versions.  Some structs may have padding fields that
59  * can be used.  Some structs might allow addition at the end (verify this
60  * in the code to ensure that new/old clients that see this larger struct
61  * do not fail, otherwise you need to implement protocol compatibility).
62  *
63  * @{
64  */
65
66 #ifndef _LUSTRE_IDL_H_
67 #define _LUSTRE_IDL_H_
68
69 #include <asm/byteorder.h>
70 #include <linux/errno.h>
71 #include <linux/fiemap.h>
72 #include <linux/types.h>
73 #include <linux/lnet/lnet-types.h>
74 #include <linux/lustre/lustre_user.h>
75 #include <linux/lustre/lustre_ver.h>
76
77 #if defined(__cplusplus)
78 extern "C" {
79 #endif
80
81 /*
82  *  GENERAL STUFF
83  */
84 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
85  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
86  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
87  */
88
89 #define CONNMGR_REQUEST_PORTAL          1
90 #define CONNMGR_REPLY_PORTAL            2
91 #define OSC_REPLY_PORTAL                4
92 #define OST_IO_PORTAL                   6
93 #define OST_CREATE_PORTAL               7
94 #define OST_BULK_PORTAL                 8
95 #define MDC_REPLY_PORTAL               10
96 #define MDS_REQUEST_PORTAL             12
97 #define MDS_IO_PORTAL                   13
98 #define MDS_BULK_PORTAL                14
99 #define LDLM_CB_REQUEST_PORTAL         15
100 #define LDLM_CB_REPLY_PORTAL           16
101 #define LDLM_CANCEL_REQUEST_PORTAL     17
102 #define LDLM_CANCEL_REPLY_PORTAL       18
103 /* #define MDS_SETATTR_PORTAL             22 obsolete after 2.13 */
104 #define MDS_READPAGE_PORTAL            23
105 #define OUT_PORTAL                      24
106 #define MGC_REPLY_PORTAL               25
107 #define MGS_REQUEST_PORTAL             26
108 #define MGS_REPLY_PORTAL               27
109 #define OST_REQUEST_PORTAL             28
110 #define FLD_REQUEST_PORTAL             29
111 #define SEQ_METADATA_PORTAL            30
112 #define SEQ_DATA_PORTAL                31
113 #define SEQ_CONTROLLER_PORTAL          32
114 #define MGS_BULK_PORTAL                33
115 /* #define DVS_PORTAL                   63 */
116 /* reserved for Cray DVS - spitzcor@cray.com, roe@cray.com, n8851@cray.com */
117
118 /**
119  * Describes a range of sequence, lsr_start is included but lsr_end is
120  * not in the range.
121  * Same structure is used in fld module where lsr_index field holds mdt id
122  * of the home mdt.
123  */
124 struct lu_seq_range {
125         __u64 lsr_start;
126         __u64 lsr_end;
127         __u32 lsr_index;
128         __u32 lsr_flags;
129 };
130
131 struct lu_seq_range_array {
132         __u32 lsra_count;
133         __u32 lsra_padding;
134         struct lu_seq_range lsra_lsr[0];
135 };
136
137 #define LU_SEQ_RANGE_MDT        0x0
138 #define LU_SEQ_RANGE_OST        0x1
139 #define LU_SEQ_RANGE_ANY        0x3
140
141 #define LU_SEQ_RANGE_MASK       0x3
142
143 /** \defgroup lu_fid lu_fid
144  * @{ */
145
146 extern void lustre_lma_swab(struct lustre_mdt_attrs *lma);
147 extern void lustre_lma_init(struct lustre_mdt_attrs *lma,
148                             const struct lu_fid *fid,
149                             __u32 compat, __u32 incompat);
150 extern void lustre_loa_swab(struct lustre_ost_attrs *loa,
151                             bool to_cpu);
152 extern void lustre_loa_init(struct lustre_ost_attrs *loa,
153                             const struct lu_fid *fid,
154                             __u32 compat, __u32 incompat);
155
156 /* copytool can use any nonnegative integer to represent archive-Ids during
157  * register with MDT thru kuc.
158  * archive num = 0 => all
159  * archive num from 1 to MAX_U32
160  */
161 #define LL_HSM_ORIGIN_MAX_ARCHIVE       (sizeof(__u32) * 8)
162 /* the max count of archive ids that one agent can support */
163 #define LL_HSM_MAX_ARCHIVES_PER_AGENT   1024
164
165 /**
166  * HSM on-disk attributes stored in a separate xattr.
167  */
168 struct hsm_attrs {
169         /** Bitfield for supported data in this structure. For future use. */
170         __u32   hsm_compat;
171
172         /** HSM flags, see hsm_flags enum below */
173         __u32   hsm_flags;
174         /** backend archive id associated with the file */
175         __u64   hsm_arch_id;
176         /** version associated with the last archiving, if any */
177         __u64   hsm_arch_ver;
178 };
179 extern void lustre_hsm_swab(struct hsm_attrs *attrs);
180
181 /**
182  * fid constants
183  */
184 enum {
185         /** LASTID file has zero OID */
186         LUSTRE_FID_LASTID_OID = 0UL,
187         /** initial fid id value */
188         LUSTRE_FID_INIT_OID  = 1UL
189 };
190
191 /**
192  * Different FID Format
193  * http://arch.lustre.org/index.php?title=Interoperability_fids_zfs#NEW.0
194  *
195  * FID:
196  * File IDentifier generated by client from range allocated by the seq service.
197  * First 0x400 sequences [2^33, 2^33 + 0x400] are reserved for system use. Note
198  * that on ldiskfs MDTs that IGIF FIDs can use inode numbers starting at 12,
199  * but this is in the IGIF SEQ rangeand does not conflict with assigned FIDs.
200  *
201  * IGIF:
202  * Inode and Generation In FID, a surrogate FID used to globally identify an
203  * existing object on OLD formatted MDT file system. This would only be used on
204  * MDT0 in a DNE filesystem, because there are not expected to be any OLD
205  * formatted DNE filesystems. Belongs to a sequence in [12, 2^32 - 1] range,
206  * where sequence number is inode number, and inode generation is used as OID.
207  * NOTE: This assumes no more than 2^32-1 inodes exist in the MDT filesystem,
208  * which is the maximum possible for an ldiskfs backend. NOTE: This assumes
209  * that the reserved ext3/ext4/ldiskfs inode numbers [0-11] are never visible
210  * to clients, which has always been true.
211  *
212  * IDIF:
213  * Object ID in FID, a surrogate FID used to globally identify an existing
214  * object on OLD formatted OST file system. Belongs to a sequence in
215  * [2^32, 2^33 - 1]. Sequence number is calculated as:
216  *      1 << 32 | (ost_index << 16) | ((objid >> 32) & 0xffff)
217  * that is, SEQ consists of 16-bit OST index, and higher 16 bits of object ID.
218  * The generation of unique SEQ values per OST allows the IDIF FIDs to be
219  * identified in the FLD correctly. The OID field is calculated as:
220  *      objid & 0xffffffff
221  * that is, it consists of lower 32 bits of object ID. NOTE This assumes that
222  * no more than 2^48-1 objects have ever been created on an OST, and that no
223  * more than 65535 OSTs are in use. Both are very reasonable assumptions (can
224  * uniquely map all objects on an OST that created 1M objects per second for 9
225  * years, or combinations thereof).
226  *
227  * OST_MDT0:
228  * Surrogate FID used to identify an existing object on OLD formatted OST
229  * filesystem. Belongs to the reserved sequence 0, and is used internally prior
230  * to the introduction of FID-on-OST, at which point IDIF will be used to
231  * identify objects as residing on a specific OST.
232  *
233  * LLOG:
234  * For Lustre Log objects the object sequence 1 is used. This is compatible with
235  * both OLD and NEW.1 namespaces, as this SEQ number is in the ext3/ldiskfs
236  * reserved inode range and does not conflict with IGIF sequence numbers.
237  *
238  * ECHO:
239  * For testing OST IO performance the object sequence 2 is used. This is
240  * compatible with both OLD and NEW.1 namespaces, as this SEQ number is in the
241  * ext3/ldiskfs reserved inode range and does not conflict with IGIF sequence
242  * numbers.
243  *
244  * OST_MDT1 .. OST_MAX:
245  * For testing with multiple MDTs the object sequence 3 through 9 is used,
246  * allowing direct mapping of MDTs 1 through 7 respectively, for a total of 8
247  * MDTs including OST_MDT0. This matches the legacy CMD project "group"
248  * mappings. However, this SEQ range is only for testing prior to any production
249  * DNE release, as the objects in this range conflict across all OSTs, as the
250  * OST index is not part of the FID.
251  *
252  *
253  * For compatibility with existing OLD OST network protocol structures, the FID
254  * must map onto the o_id and o_gr in a manner that ensures existing objects are
255  * identified consistently for IO, as well as onto the lock namespace to ensure
256  * both IDIFs map onto the same objects for IO as well as resources in the DLM.
257  *
258  * DLM OLD OBIF/IDIF:
259  * resource[] = {o_id, o_seq, 0, 0};  // o_seq == 0 for production releases
260  *
261  * DLM NEW.1 FID (this is the same for both the MDT and OST):
262  * resource[] = {SEQ, OID, VER, HASH};
263  *
264  * Note that for mapping IDIF values to DLM resource names the o_id may be
265  * larger than the 2^33 reserved sequence numbers for IDIF, so it is possible
266  * for the o_id numbers to overlap FID SEQ numbers in the resource. However, in
267  * all production releases the OLD o_seq field is always zero, and all valid FID
268  * OID values are non-zero, so the lock resources will not collide.
269  *
270  * For objects within the IDIF range, group extraction (non-CMD) will be:
271  * o_id = (fid->f_seq & 0x7fff) << 16 | fid->f_oid;
272  * o_seq = 0;  // formerly group number
273  */
274
275 /**
276  * Note that reserved SEQ numbers below 12 will conflict with ldiskfs
277  * inodes in the IGIF namespace, so these reserved SEQ numbers can be
278  * used for other purposes and not risk collisions with existing inodes.
279  */
280 enum fid_seq {
281         FID_SEQ_OST_MDT0        = 0,
282         FID_SEQ_LLOG            = 1, /* unnamed llogs */
283         FID_SEQ_ECHO            = 2,
284         FID_SEQ_UNUSED_START    = 3, /* Unused */
285         FID_SEQ_UNUSED_END      = 9, /* Unused */
286         FID_SEQ_LLOG_NAME       = 10, /* named llogs */
287         FID_SEQ_RSVD            = 11,
288         FID_SEQ_IGIF            = 12,
289         FID_SEQ_IGIF_MAX        = 0x0ffffffffULL,
290         FID_SEQ_IDIF            = 0x100000000ULL,
291         FID_SEQ_IDIF_MAX        = 0x1ffffffffULL,
292         /* Normal FID sequence starts from this value, i.e. 1<<33 */
293         FID_SEQ_START           = 0x200000000ULL,
294         /* sequence for local pre-defined FIDs listed in local_oid */
295         FID_SEQ_LOCAL_FILE      = 0x200000001ULL,
296         FID_SEQ_DOT_LUSTRE      = 0x200000002ULL,
297         /* sequence is used for local named objects FIDs generated
298          * by local_object_storage library */
299         FID_SEQ_LOCAL_NAME      = 0x200000003ULL,
300         /* Because current FLD will only cache the fid sequence, instead
301          * of oid on the client side, if the FID needs to be exposed to
302          * clients sides, it needs to make sure all of fids under one
303          * sequence will be located in one MDT. */
304         FID_SEQ_SPECIAL         = 0x200000004ULL,
305         FID_SEQ_QUOTA           = 0x200000005ULL,
306         FID_SEQ_QUOTA_GLB       = 0x200000006ULL,
307         FID_SEQ_ROOT            = 0x200000007ULL,  /* Located on MDT0 */
308         FID_SEQ_LAYOUT_RBTREE   = 0x200000008ULL,
309         /* sequence is used for update logs of cross-MDT operation */
310         FID_SEQ_UPDATE_LOG      = 0x200000009ULL,
311         /* Sequence is used for the directory under which update logs
312          * are created. */
313         FID_SEQ_UPDATE_LOG_DIR  = 0x20000000aULL,
314         FID_SEQ_NORMAL          = 0x200000400ULL,
315         FID_SEQ_LOV_DEFAULT     = 0xffffffffffffffffULL
316 };
317
318 #define OBIF_OID_MAX_BITS           32
319 #define OBIF_MAX_OID                ((1ULL << OBIF_OID_MAX_BITS) - 1)
320 #define IDIF_OID_MAX_BITS           48
321 #define IDIF_MAX_OID                ((1ULL << IDIF_OID_MAX_BITS) - 1)
322
323 /** OID for FID_SEQ_SPECIAL */
324 enum special_oid {
325         /* Big Filesystem Lock to serialize rename operations */
326         FID_OID_SPECIAL_BFL     = 1UL,
327 };
328
329 /** OID for FID_SEQ_DOT_LUSTRE */
330 enum dot_lustre_oid {
331         FID_OID_DOT_LUSTRE      = 1UL,
332         FID_OID_DOT_LUSTRE_OBF  = 2UL,
333         FID_OID_DOT_LUSTRE_LPF  = 3UL,
334 };
335
336 /** OID for FID_SEQ_ROOT */
337 enum root_oid {
338         FID_OID_ROOT            = 1UL,
339         FID_OID_ECHO_ROOT       = 2UL,
340 };
341
342 struct lu_orphan_rec {
343         /* The MDT-object's FID referenced by the orphan OST-object */
344         struct lu_fid   lor_fid;
345         __u32           lor_uid;
346         __u32           lor_gid;
347 };
348
349 struct lu_orphan_ent {
350         /* The orphan OST-object's FID */
351         struct lu_fid           loe_key;
352         struct lu_orphan_rec    loe_rec;
353 };
354
355 struct lu_orphan_rec_v2 {
356         struct lu_orphan_rec    lor_rec;
357         struct ost_layout       lor_layout;
358         __u32                   lor_padding;
359 };
360
361 struct lu_orphan_ent_v2 {
362         /* The orphan OST-object's FID */
363         struct lu_fid           loe_key;
364         struct lu_orphan_rec_v2 loe_rec;
365 };
366
367 struct lu_orphan_rec_v3 {
368         struct lu_orphan_rec    lor_rec;
369         struct ost_layout       lor_layout;
370         /* The OST-object declared layout version in PFID EA.*/
371         __u32                   lor_layout_version;
372         /* The OST-object declared layout range (of version) in PFID EA.*/
373         __u32                   lor_range;
374         __u32                   lor_padding_1;
375         __u64                   lor_padding_2;
376 };
377
378 struct lu_orphan_ent_v3 {
379         /* The orphan OST-object's FID */
380         struct lu_fid           loe_key;
381         struct lu_orphan_rec_v3 loe_rec;
382 };
383
384 /** @} lu_fid */
385
386 /** \defgroup lu_dir lu_dir
387  * @{ */
388
389 /**
390  * Enumeration of possible directory entry attributes.
391  *
392  * Attributes follow directory entry header in the order they appear in this
393  * enumeration.
394  */
395 enum lu_dirent_attrs {
396         LUDA_FID                = 0x0001,
397         LUDA_TYPE               = 0x0002,
398         LUDA_64BITHASH          = 0x0004,
399
400         /* The following attrs are used for MDT internal only,
401          * not visible to client */
402
403         /* Something in the record is unknown, to be verified in further. */
404         LUDA_UNKNOWN            = 0x0400,
405         /* Ignore this record, go to next directly. */
406         LUDA_IGNORE             = 0x0800,
407         /* The system is upgraded, has beed or to be repaired (dryrun). */
408         LUDA_UPGRADE            = 0x1000,
409         /* The dirent has been repaired, or to be repaired (dryrun). */
410         LUDA_REPAIR             = 0x2000,
411         /* Only check but not repair the dirent inconsistency */
412         LUDA_VERIFY_DRYRUN      = 0x4000,
413         /* Verify the dirent consistency */
414         LUDA_VERIFY             = 0x8000,
415 };
416
417 #define LU_DIRENT_ATTRS_MASK    0xff00
418
419 /**
420  * Layout of readdir pages, as transmitted on wire.
421  */
422 struct lu_dirent {
423         /** valid if LUDA_FID is set. */
424         struct lu_fid lde_fid;
425         /** a unique entry identifier: a hash or an offset. */
426         __u64         lde_hash;
427         /** total record length, including all attributes. */
428         __u16         lde_reclen;
429         /** name length */
430         __u16         lde_namelen;
431         /** optional variable size attributes following this entry.
432          *  taken from enum lu_dirent_attrs.
433          */
434         __u32         lde_attrs;
435         /** name is followed by the attributes indicated in ->ldp_attrs, in
436          *  their natural order. After the last attribute, padding bytes are
437          *  added to make ->lde_reclen a multiple of 8.
438          */
439         char          lde_name[0];
440 };
441
442 /*
443  * Definitions of optional directory entry attributes formats.
444  *
445  * Individual attributes do not have their length encoded in a generic way. It
446  * is assumed that consumer of an attribute knows its format. This means that
447  * it is impossible to skip over an unknown attribute, except by skipping over all
448  * remaining attributes (by using ->lde_reclen), which is not too
449  * constraining, because new server versions will append new attributes at
450  * the end of an entry.
451  */
452
453 /**
454  * Fid directory attribute: a fid of an object referenced by the entry. This
455  * will be almost always requested by the client and supplied by the server.
456  *
457  * Aligned to 8 bytes.
458  */
459 /* To have compatibility with 1.8, lets have fid in lu_dirent struct. */
460
461 /**
462  * File type.
463  *
464  * Aligned to 2 bytes.
465  */
466 struct luda_type {
467         __u16 lt_type;
468 };
469
470 struct lu_dirpage {
471         __u64            ldp_hash_start;
472         __u64            ldp_hash_end;
473         __u32            ldp_flags;
474         __u32            ldp_pad0;
475         struct lu_dirent ldp_entries[0];
476 };
477
478 enum lu_dirpage_flags {
479         /**
480          * dirpage contains no entry.
481          */
482         LDF_EMPTY   = 1 << 0,
483         /**
484          * last entry's lde_hash equals ldp_hash_end.
485          */
486         LDF_COLLIDE = 1 << 1
487 };
488
489 static inline struct lu_dirent *lu_dirent_start(struct lu_dirpage *dp)
490 {
491         if (__le32_to_cpu(dp->ldp_flags) & LDF_EMPTY)
492                 return NULL;
493         else
494                 return dp->ldp_entries;
495 }
496
497 static inline struct lu_dirent *lu_dirent_next(struct lu_dirent *ent)
498 {
499         struct lu_dirent *next;
500
501         if (__le16_to_cpu(ent->lde_reclen) != 0)
502                 next = ((void *)ent) + __le16_to_cpu(ent->lde_reclen);
503         else
504                 next = NULL;
505
506         return next;
507 }
508
509 static inline __kernel_size_t lu_dirent_calc_size(size_t namelen, __u16 attr)
510 {
511         __kernel_size_t size;
512
513         if (attr & LUDA_TYPE) {
514                 const __kernel_size_t align = sizeof(struct luda_type) - 1;
515
516                 size = (sizeof(struct lu_dirent) + namelen + 1 + align) &
517                        ~align;
518                 size += sizeof(struct luda_type);
519         } else {
520                 size = sizeof(struct lu_dirent) + namelen + 1;
521         }
522
523         return (size + 7) & ~7;
524 }
525
526 static inline __u16 lu_dirent_type_get(struct lu_dirent *ent)
527 {
528         __u16 type = 0;
529         struct luda_type *lt;
530         int len = 0;
531
532         if (__le32_to_cpu(ent->lde_attrs) & LUDA_TYPE) {
533                 const unsigned int align = sizeof(struct luda_type) - 1;
534
535                 len = __le16_to_cpu(ent->lde_namelen);
536                 len = (len + align) & ~align;
537                 lt = (void *)ent->lde_name + len;
538                 type = __le16_to_cpu(lt->lt_type);
539         }
540
541         return type;
542 }
543
544 #define MDS_DIR_END_OFF 0xfffffffffffffffeULL
545
546 /**
547  * MDS_READPAGE page size
548  *
549  * This is the directory page size packed in MDS_READPAGE RPC.
550  * It's different than PAGE_SIZE because the client needs to
551  * access the struct lu_dirpage header packed at the beginning of
552  * the "page" and without this there isn't any way to know find the
553  * lu_dirpage header is if client and server PAGE_SIZE differ.
554  */
555 #define LU_PAGE_SHIFT 12
556 #define LU_PAGE_SIZE  (1UL << LU_PAGE_SHIFT)
557 #define LU_PAGE_MASK  (~(LU_PAGE_SIZE - 1))
558
559 #define LU_PAGE_COUNT (1 << (PAGE_SHIFT - LU_PAGE_SHIFT))
560
561 /** @} lu_dir */
562
563 struct lustre_handle {
564         __u64 cookie;
565 };
566 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabeULL
567
568 static inline bool lustre_handle_is_used(const struct lustre_handle *lh)
569 {
570         return lh->cookie != 0;
571 }
572
573 static inline bool lustre_handle_equal(const struct lustre_handle *lh1,
574                                        const struct lustre_handle *lh2)
575 {
576         return lh1->cookie == lh2->cookie;
577 }
578
579 static inline void lustre_handle_copy(struct lustre_handle *tgt,
580                                       const struct lustre_handle *src)
581 {
582         tgt->cookie = src->cookie;
583 }
584
585 /* lustre_msg struct magic.  DON'T use swabbed values of MAGIC as magic! */
586 enum lustre_msg_magic {
587         LUSTRE_MSG_MAGIC_V2             = 0x0BD00BD3,
588         LUSTRE_MSG_MAGIC_V2_SWABBED     = 0xD30BD00B,
589         LUSTRE_MSG_MAGIC                = LUSTRE_MSG_MAGIC_V2
590 };
591
592 /* flags for lm_flags */
593 enum lustre_msghdr {
594         MSGHDR_AT_SUPPORT       = 0x1,  /* adaptive timeouts, lm_cksum valid
595                                          * in early reply messages */
596         MSGHDR_CKSUM_INCOMPAT18 = 0x2,  /* compat for 1.8, needs to be set well
597                                          * beyond 2.8.0 for compatibility */
598 };
599
600 #define lustre_msg lustre_msg_v2
601 /* we depend on this structure to be 8-byte aligned */
602 /* this type is only endian-adjusted in lustre_unpack_msg() */
603 struct lustre_msg_v2 {
604         __u32 lm_bufcount;      /* number of buffers in lm_buflens[] */
605         __u32 lm_secflvr;       /* 0 = no crypto, or sptlrpc security flavour */
606         __u32 lm_magic;         /* RPC version magic = LUSTRE_MSG_MAGIC_V2 */
607         __u32 lm_repsize;       /* size of preallocated reply buffer */
608         __u32 lm_cksum;         /* CRC32 of ptlrpc_body early reply messages */
609         __u32 lm_flags;         /* enum lustre_msghdr MSGHDR_* flags */
610         __u32 lm_opc;           /* SUB request opcode in a batch request */
611         __u32 lm_padding_3;     /* unused */
612         __u32 lm_buflens[0];    /* length of additional buffers in bytes,
613                                  * padded to a multiple of 8 bytes. */
614         /*
615          * message buffers are packed after padded lm_buflens[] array,
616          * padded to a multiple of 8 bytes each to align contents.
617          */
618 };
619
620 /* The returned result of the SUB request in a batch request */
621 #define lm_result       lm_opc
622
623 /* ptlrpc_body packet pb_types */
624 #define PTL_RPC_MSG_REQUEST     4711    /* normal RPC request message */
625 #define PTL_RPC_MSG_ERR         4712    /* error reply if request unprocessed */
626 #define PTL_RPC_MSG_REPLY       4713    /* normal RPC reply message */
627
628 /* ptlrpc_body pb_version ((target_version << 16) | rpc_version) */
629 enum lustre_msg_version {
630         PTLRPC_MSG_VERSION      = 0x00000003,
631         LUSTRE_VERSION_MASK     = 0xffff0000,
632         LUSTRE_OBD_VERSION      = 0x00010000,
633         LUSTRE_MDS_VERSION      = 0x00020000,
634         LUSTRE_OST_VERSION      = 0x00030000,
635         LUSTRE_DLM_VERSION      = 0x00040000,
636         LUSTRE_LOG_VERSION      = 0x00050000,
637         LUSTRE_MGS_VERSION      = 0x00060000,
638 };
639
640 /* pb_flags that apply to all request messages */
641 /* #define MSG_LAST_REPLAY      0x0001 obsolete 2.0 => {REQ,LOCK}_REPLAY_DONE */
642 #define MSG_RESENT              0x0002 /* was previously sent, no reply seen */
643 #define MSG_REPLAY              0x0004 /* was processed, got reply, recovery */
644 /* #define MSG_AT_SUPPORT       0x0008 obsolete since 1.5, AT always enabled */
645 /* #define MSG_DELAY_REPLAY     0x0010 obsolete since 2.0 */
646 /* #define MSG_VERSION_REPLAY   0x0020 obsolete since 1.8.2, VBR always on */
647 #define MSG_REQ_REPLAY_DONE     0x0040 /* request replay over, locks next */
648 #define MSG_LOCK_REPLAY_DONE    0x0080 /* lock replay over, client done */
649
650 /* pb_op_flags for connect opcodes: MDS_CONNECT, OST_CONNECT, MGS_CONNECT */
651 #define MSG_CONNECT_RECOVERING  0x00000001 /* target is in recovery */
652 #define MSG_CONNECT_RECONNECT   0x00000002 /* tgt already has client import */
653 #define MSG_CONNECT_REPLAYABLE  0x00000004 /* target supports RPC replay */
654 /* #define MSG_CONNECT_PEER     0x00000008 obsolete since 1.2, removed in 1.5 */
655 #define MSG_CONNECT_LIBCLIENT   0x00000010 /* obsolete since 2.3, removed 2.6 */
656 #define MSG_CONNECT_INITIAL     0x00000020 /* first client connection attempt */
657 /* #define MSG_CONNECT_ASYNC    0x00000040 obsolete since 1.5 */
658 #define MSG_CONNECT_NEXT_VER    0x00000080 /* use next version of lustre_msg */
659 #define MSG_CONNECT_TRANSNO     0x00000100 /* client sent transno in replay */
660
661 /* number of previous object versions in pb_pre_versions[] */
662 #define PTLRPC_NUM_VERSIONS     4
663 /* without gss, ptlrpc_body is put at the first buffer. */
664 struct ptlrpc_body_v3 {
665         struct lustre_handle pb_handle;
666         __u32 pb_type;          /* request/reply/err type: PTL_RPC_MSG_* */
667         __u32 pb_version;       /* LUSTRE_*_VERSION | PTLRPC_MSG_VERSION */
668         __u32 pb_opc;           /* RPC opcodes: MDS_*, OST_*, LDLM_, ... */
669         __u32 pb_status;        /* negative Linux x86 error number */
670         __u64 pb_last_xid;      /* highest replied XID w/o lower unreplied XID*/
671         __u16 pb_tag;           /* multiple modifying RPCs virtual slot index */
672         __u16 pb_padding0;
673         __u32 pb_padding1;
674         __u64 pb_last_committed;/* rep: highest pb_transno committed to disk */
675         __u64 pb_transno;       /* server-assigned transno for modifying RPCs */
676         __u32 pb_flags;         /* req: MSG_* flags */
677         __u32 pb_op_flags;      /* req: MSG_CONNECT_* flags */
678         __u32 pb_conn_cnt;      /* connect instance of this client on server */
679         __u32 pb_timeout;       /* req: max wait time; rep: service estimate */
680         __u32 pb_service_time;  /* rep: server arrival to reply in seconds */
681         __u32 pb_limit;         /* rep: dynamic DLM LRU lock count limit */
682         __u64 pb_slv;           /* rep: dynamic DLM LRU server lock volume */
683         /* VBR: rep: previous pb_version(s) of objects modified by this RPC */
684         __u64 pb_pre_versions[PTLRPC_NUM_VERSIONS];
685         __u64 pb_mbits; /**< match bits for bulk request */
686         /* padding for future needs - fix lustre_swab_ptlrpc_body() also */
687         __u64 pb_padding64_0;
688         __u64 pb_padding64_1;
689         __u64 pb_padding64_2;
690         char  pb_jobid[LUSTRE_JOBID_SIZE]; /* req: ASCII jobid from env + NUL */
691 };
692 #define ptlrpc_body     ptlrpc_body_v3
693
694 struct ptlrpc_body_v2 {
695         struct lustre_handle pb_handle;
696         __u32 pb_type;
697         __u32 pb_version;
698         __u32 pb_opc;
699         __u32 pb_status;
700         __u64 pb_last_xid; /* highest replied XID without lower unreplied XID */
701         __u16 pb_tag;      /* virtual slot idx for multiple modifying RPCs */
702         __u16 pb_padding0;
703         __u32 pb_padding1;
704         __u64 pb_last_committed;
705         __u64 pb_transno;
706         __u32 pb_flags;
707         __u32 pb_op_flags;
708         __u32 pb_conn_cnt;
709         __u32 pb_timeout;  /* for req, the deadline, for rep, the service est */
710         __u32 pb_service_time; /* for rep, actual service time, also used for
711                                   net_latency of req */
712         __u32 pb_limit;
713         __u64 pb_slv;
714         /* VBR: pre-versions */
715         __u64 pb_pre_versions[PTLRPC_NUM_VERSIONS];
716         __u64 pb_mbits; /**< unused in V2 */
717         /* padding for future needs */
718         __u64 pb_padding64_0;
719         __u64 pb_padding64_1;
720         __u64 pb_padding64_2;
721 };
722
723 /* message body offset for lustre_msg_v2 */
724 /* ptlrpc body offset in all request/reply messages */
725 #define MSG_PTLRPC_BODY_OFF             0
726
727 /* normal request/reply message record offset */
728 #define REQ_REC_OFF                     1
729 #define REPLY_REC_OFF                   1
730
731 /* ldlm request message body offset */
732 #define DLM_LOCKREQ_OFF                 1 /* lockreq offset */
733 #define DLM_REQ_REC_OFF                 2 /* normal dlm request record offset */
734
735 /* ldlm intent lock message body offset */
736 #define DLM_INTENT_IT_OFF               2 /* intent lock it offset */
737 #define DLM_INTENT_REC_OFF              3 /* intent lock record offset */
738
739 /* ldlm reply message body offset */
740 #define DLM_LOCKREPLY_OFF               1 /* lockrep offset */
741 #define DLM_REPLY_REC_OFF               2 /* reply record offset */
742
743 /** only use in req->rq_{req,rep}_swab_mask */
744 #define MSG_PTLRPC_HEADER_OFF           31
745
746 /* Connect flags */
747 #define OBD_CONNECT_RDONLY                      0x1ULL /* client is read-only */
748 #define OBD_CONNECT_INDEX                       0x2ULL /* connect to LOV idx */
749 #define OBD_CONNECT_MDS                         0x4ULL /* connect MDT to OST */
750 #define OBD_CONNECT_GRANT                       0x8ULL /* fetch grant connect */
751 #define OBD_CONNECT_SRVLOCK                    0x10ULL /* server lock for RPC */
752 #define OBD_CONNECT_VERSION                    0x20ULL /* versions in OCD */
753 #define OBD_CONNECT_REQPORTAL                  0x40ULL /* non-IO portal */
754 #define OBD_CONNECT_ACL                        0x80ULL /* access control list */
755 #define OBD_CONNECT_XATTR                     0x100ULL /* extended attributes */
756 #define OBD_CONNECT_LARGE_ACL                 0x200ULL /* over 32 ACL entries */
757 /* was OBD_CONNECT_TRUNCLOCK                  0x400ULL  * server locks punch */
758 /* temporary reuse until 2.21.53 to indicate pre-2.15 client, see LU-15478 */
759 #define OBD_CONNECT_OLD_FALLOC                0x400ULL /* no o_valid flags */
760 #define OBD_CONNECT_TRANSNO                   0x800ULL /* replay send transno */
761 #define OBD_CONNECT_IBITS                    0x1000ULL /* not checked 2.11+ */
762 #define OBD_CONNECT_BARRIER                  0x2000ULL /* write barrier */
763 #define OBD_CONNECT_ATTRFID                  0x4000ULL /* Server GetAttr FID */
764 #define OBD_CONNECT_NODEVOH                  0x8000ULL /* No open handle spec */
765 #define OBD_CONNECT_RMT_CLIENT              0x10000ULL /* Never used, gone 2.9*/
766 #define OBD_CONNECT_RMT_CLIENT_FORCE        0x20000ULL /* Never used, gone 2.9*/
767 #define OBD_CONNECT_BRW_SIZE                0x40000ULL /* Max bytes per rpc */
768 #define OBD_CONNECT_QUOTA64                 0x80000ULL /* Unused since 2.4 */
769 #define OBD_CONNECT_MDS_CAPA               0x100000ULL /* Unused since 2.7 */
770 #define OBD_CONNECT_OSS_CAPA               0x200000ULL /* Unused since 2.7 */
771 #define OBD_CONNECT_CANCELSET              0x400000ULL /* Early batch cancel */
772 #define OBD_CONNECT_SOM                    0x800000ULL /* Unused since 2.7 */
773 #define OBD_CONNECT_AT                    0x1000000ULL /* client uses AT */
774 #define OBD_CONNECT_LRU_RESIZE            0x2000000ULL /* LRU resize feature */
775 #define OBD_CONNECT_MDS_MDS               0x4000000ULL /* MDS-MDS connection */
776 #define OBD_CONNECT_REAL                  0x8000000ULL /* Unused since 2.8 */
777 #define OBD_CONNECT_CHANGE_QS            0x10000000ULL /* Unused since 2.4 */
778 #define OBD_CONNECT_CKSUM                0x20000000ULL /* cksum algo choice */
779 #define OBD_CONNECT_FID                  0x40000000ULL /* server handles FIDs */
780 #define OBD_CONNECT_VBR                  0x80000000ULL /* version based recov */
781 #define OBD_CONNECT_LOV_V3              0x100000000ULL /* client LOV v3 EA */
782 #define OBD_CONNECT_GRANT_SHRINK        0x200000000ULL /* handle grant shrink */
783 #define OBD_CONNECT_SKIP_ORPHAN         0x400000000ULL /* no orph objid reuse */
784 #define OBD_CONNECT_MAX_EASIZE          0x800000000ULL /* EA size in reply */
785 #define OBD_CONNECT_FULL20             0x1000000000ULL /* it is 2.0 client */
786 #define OBD_CONNECT_LAYOUTLOCK         0x2000000000ULL /* client layout lock */
787 #define OBD_CONNECT_64BITHASH          0x4000000000ULL /* 64-bits dir hash */
788 #define OBD_CONNECT_MAXBYTES           0x8000000000ULL /* max stripe size */
789 #define OBD_CONNECT_IMP_RECOV         0x10000000000ULL /* imp recov support */
790 #define OBD_CONNECT_JOBSTATS          0x20000000000ULL /* ptlrpc_body jobid */
791 #define OBD_CONNECT_UMASK             0x40000000000ULL /* create client umask */
792 #define OBD_CONNECT_EINPROGRESS       0x80000000000ULL /* client -EINPROGRESS
793                                                         * RPC error handling */
794 #define OBD_CONNECT_GRANT_PARAM      0x100000000000ULL /* extra grant params for
795                                                         * space reservation */
796 #define OBD_CONNECT_FLOCK_OWNER      0x200000000000ULL /* unused since 2.0 */
797 #define OBD_CONNECT_LVB_TYPE         0x400000000000ULL /* variable LVB type */
798 #define OBD_CONNECT_NANOSEC_TIME     0x800000000000ULL /* nanosec timestamp */
799 #define OBD_CONNECT_LIGHTWEIGHT     0x1000000000000ULL /* lightweight connect */
800 #define OBD_CONNECT_SHORTIO         0x2000000000000ULL /* short io */
801 #define OBD_CONNECT_PINGLESS        0x4000000000000ULL /* pings not required */
802 #define OBD_CONNECT_FLOCK_DEAD      0x8000000000000ULL /* flk deadlock detect */
803 #define OBD_CONNECT_DISP_STRIPE    0x10000000000000ULL /* create stripe disp */
804 #define OBD_CONNECT_OPEN_BY_FID    0x20000000000000ULL /* open by FID won't pack
805                                                         * name in request */
806 #define OBD_CONNECT_LFSCK          0x40000000000000ULL /* allow online LFSCK */
807 #define OBD_CONNECT_UNLINK_CLOSE  0x100000000000000ULL /* unlink closes file */
808 #define OBD_CONNECT_MULTIMODRPCS  0x200000000000000ULL /* allow multiple change
809                                                         * RPCs in parallel */
810 #define OBD_CONNECT_DIR_STRIPE    0x400000000000000ULL /* striped DNE dir */
811 #define OBD_CONNECT_SUBTREE       0x800000000000000ULL /* fileset mount */
812 /* was OBD_CONNECT_LOCKAHEAD_OLD 0x1000000000000000ULL old lockahead 2.12-2.13*/
813 #define OBD_CONNECT_BULK_MBITS   0x2000000000000000ULL /* ptlrpc_body matchbit*/
814 #define OBD_CONNECT_OBDOPACK     0x4000000000000000ULL /* compact OUT obdo */
815 #define OBD_CONNECT_FLAGS2       0x8000000000000000ULL /* second flags word */
816 /* ocd_connect_flags2 flags */
817 #define OBD_CONNECT2_FILE_SECCTX                0x1ULL /* security context */
818 #define OBD_CONNECT2_LOCKAHEAD                  0x2ULL /* ladvise lockahead */
819 #define OBD_CONNECT2_DIR_MIGRATE                0x4ULL /* migrate striped dir */
820 #define OBD_CONNECT2_SUM_STATFS                 0x8ULL /* MDT aggregate statfs*/
821 #define OBD_CONNECT2_OVERSTRIPING              0x10ULL /* OST overstriping */
822 #define OBD_CONNECT2_FLR                       0x20ULL /* FLR mirror handling */
823 #define OBD_CONNECT2_WBC_INTENTS               0x40ULL /* MDS wb cache intent */
824 #define OBD_CONNECT2_LOCK_CONVERT              0x80ULL /* IBITS lock convert */
825 #define OBD_CONNECT2_ARCHIVE_ID_ARRAY         0x100ULL /* HSM archive_id array*/
826 #define OBD_CONNECT2_INC_XID                  0x200ULL /* Increasing xid */
827 #define OBD_CONNECT2_SELINUX_POLICY           0x400ULL /* cli SELinux policy */
828 #define OBD_CONNECT2_LSOM                     0x800ULL /* Lazy Size on MDT */
829 #define OBD_CONNECT2_PCC                     0x1000ULL /* Persist Client Cache*/
830 #define OBD_CONNECT2_CRUSH                   0x2000ULL /* CRUSH dir hash */
831 #define OBD_CONNECT2_ASYNC_DISCARD           0x4000ULL /* async DoM discard */
832 #define OBD_CONNECT2_ENCRYPT                 0x8000ULL /* client disk encrypt */
833 #define OBD_CONNECT2_FIDMAP                 0x10000ULL /* MDT migrate FID map */
834 #define OBD_CONNECT2_GETATTR_PFID           0x20000ULL /* parent FID getattr */
835 #define OBD_CONNECT2_LSEEK                  0x40000ULL /* SEEK_HOLE/DATA RPC */
836 #define OBD_CONNECT2_DOM_LVB                0x80000ULL /* DoM glimpse in LVB */
837 #define OBD_CONNECT2_REP_MBITS             0x100000ULL /* reply mbits, not XID*/
838 #define OBD_CONNECT2_MODE_CONVERT          0x200000ULL /* LDLM mode convert */
839 #define OBD_CONNECT2_BATCH_RPC             0x400000ULL /* Multi-op batch RPCs */
840 #define OBD_CONNECT2_PCCRO                 0x800000ULL /* PCC read-only */
841 #define OBD_CONNECT2_MNE_TYPE             0x1000000ULL /* mne_nid_type IPv6 */
842 #define OBD_CONNECT2_LOCK_CONTENTION      0x2000000ULL /* contention detect */
843 #define OBD_CONNECT2_ATOMIC_OPEN_LOCK     0x4000000ULL /* lock on first open */
844 #define OBD_CONNECT2_ENCRYPT_NAME         0x8000000ULL /* name encrypt */
845 #define OBD_CONNECT2_ENCRYPT_FID2PATH    0x40000000ULL /* fid2path enc file */
846 /* XXX README XXX README XXX README XXX README XXX README XXX README XXX
847  * Please DO NOT add OBD_CONNECT flags before first ensuring that this value
848  * is not in use by some other branch/patch.  Email adilger@whamcloud.com
849  * to reserve the new OBD_CONNECT value for use by your feature. Then, submit
850  * a small patch against master and LTS branches that ONLY adds the new flag,
851  * updates obd_connect_names[], adds the flag to check_obd_connect_data(),
852  * and updates wiretests accordingly, so it can be approved and landed easily
853  * to reserve the flag for future use by your feature (submitted separately).
854  */
855
856 #define OCD_HAS_FLAG(ocd, flag)  \
857         (!!((ocd)->ocd_connect_flags & OBD_CONNECT_##flag))
858 #define OCD_HAS_FLAG2(ocd, flag2) (OCD_HAS_FLAG(ocd, FLAGS2) && \
859          !!((ocd)->ocd_connect_flags2 & OBD_CONNECT2_##flag2))
860
861
862 #ifdef HAVE_LRU_RESIZE_SUPPORT
863 #define LRU_RESIZE_CONNECT_FLAG OBD_CONNECT_LRU_RESIZE
864 #else
865 #define LRU_RESIZE_CONNECT_FLAG 0
866 #endif
867
868 #define MDT_CONNECT_SUPPORTED  (OBD_CONNECT_RDONLY | OBD_CONNECT_VERSION | \
869                                 OBD_CONNECT_ACL | OBD_CONNECT_XATTR | \
870                                 OBD_CONNECT_IBITS | OBD_CONNECT_NODEVOH | \
871                                 OBD_CONNECT_ATTRFID | OBD_CONNECT_CANCELSET | \
872                                 OBD_CONNECT_AT | OBD_CONNECT_BRW_SIZE | \
873                                 OBD_CONNECT_MDS_MDS | OBD_CONNECT_FID | \
874                                 LRU_RESIZE_CONNECT_FLAG | OBD_CONNECT_VBR | \
875                                 OBD_CONNECT_LOV_V3 | OBD_CONNECT_FULL20 | \
876                                 OBD_CONNECT_64BITHASH | OBD_CONNECT_JOBSTATS | \
877                                 OBD_CONNECT_EINPROGRESS | \
878                                 OBD_CONNECT_LIGHTWEIGHT | OBD_CONNECT_UMASK | \
879                                 OBD_CONNECT_LVB_TYPE | OBD_CONNECT_LAYOUTLOCK |\
880                                 OBD_CONNECT_PINGLESS | OBD_CONNECT_MAX_EASIZE |\
881                                 OBD_CONNECT_FLOCK_DEAD | \
882                                 OBD_CONNECT_DISP_STRIPE | OBD_CONNECT_LFSCK | \
883                                 OBD_CONNECT_OPEN_BY_FID | \
884                                 OBD_CONNECT_DIR_STRIPE | OBD_CONNECT_GRANT | \
885                                 OBD_CONNECT_SRVLOCK | OBD_CONNECT_BULK_MBITS |\
886                                 OBD_CONNECT_CKSUM |\
887                                 OBD_CONNECT_MULTIMODRPCS |\
888                                 OBD_CONNECT_SUBTREE | OBD_CONNECT_LARGE_ACL |\
889                                 OBD_CONNECT_GRANT_PARAM | \
890                                 OBD_CONNECT_GRANT_SHRINK | \
891                                 OBD_CONNECT_SHORTIO | OBD_CONNECT_FLAGS2)
892
893 #define MDT_CONNECT_SUPPORTED2 (OBD_CONNECT2_FILE_SECCTX | \
894                                 OBD_CONNECT2_DIR_MIGRATE | \
895                                 OBD_CONNECT2_SUM_STATFS | \
896                                 OBD_CONNECT2_OVERSTRIPING | \
897                                 OBD_CONNECT2_FLR |\
898                                 OBD_CONNECT2_LOCK_CONVERT | \
899                                 OBD_CONNECT2_ARCHIVE_ID_ARRAY | \
900                                 OBD_CONNECT2_INC_XID | \
901                                 OBD_CONNECT2_SELINUX_POLICY | \
902                                 OBD_CONNECT2_LSOM | \
903                                 OBD_CONNECT2_ASYNC_DISCARD | \
904                                 OBD_CONNECT2_PCC | \
905                                 OBD_CONNECT2_CRUSH | \
906                                 OBD_CONNECT2_ENCRYPT | \
907                                 OBD_CONNECT2_GETATTR_PFID |\
908                                 OBD_CONNECT2_LSEEK | OBD_CONNECT2_DOM_LVB |\
909                                 OBD_CONNECT2_REP_MBITS | \
910                                 OBD_CONNECT2_ATOMIC_OPEN_LOCK | \
911                                 OBD_CONNECT2_BATCH_RPC | \
912                                 OBD_CONNECT2_ENCRYPT_NAME | \
913                                 OBD_CONNECT2_ENCRYPT_FID2PATH)
914
915 #define OST_CONNECT_SUPPORTED  (OBD_CONNECT_SRVLOCK | OBD_CONNECT_GRANT | \
916                                 OBD_CONNECT_REQPORTAL | OBD_CONNECT_VERSION | \
917                                 OBD_CONNECT_INDEX | \
918                                 OBD_CONNECT_BRW_SIZE | OBD_CONNECT_CANCELSET | \
919                                 OBD_CONNECT_AT | LRU_RESIZE_CONNECT_FLAG | \
920                                 OBD_CONNECT_CKSUM | OBD_CONNECT_VBR | \
921                                 OBD_CONNECT_MDS | OBD_CONNECT_SKIP_ORPHAN | \
922                                 OBD_CONNECT_GRANT_SHRINK | OBD_CONNECT_FULL20 |\
923                                 OBD_CONNECT_64BITHASH | OBD_CONNECT_MAXBYTES | \
924                                 OBD_CONNECT_MAX_EASIZE | \
925                                 OBD_CONNECT_EINPROGRESS | \
926                                 OBD_CONNECT_JOBSTATS | \
927                                 OBD_CONNECT_LIGHTWEIGHT | OBD_CONNECT_LVB_TYPE|\
928                                 OBD_CONNECT_LAYOUTLOCK | OBD_CONNECT_FID | \
929                                 OBD_CONNECT_PINGLESS | OBD_CONNECT_LFSCK | \
930                                 OBD_CONNECT_BULK_MBITS | \
931                                 OBD_CONNECT_GRANT_PARAM | \
932                                 OBD_CONNECT_SHORTIO | OBD_CONNECT_FLAGS2)
933
934 #define OST_CONNECT_SUPPORTED2 (OBD_CONNECT2_LOCKAHEAD | OBD_CONNECT2_INC_XID |\
935                                 OBD_CONNECT2_ENCRYPT | OBD_CONNECT2_LSEEK |\
936                                 OBD_CONNECT2_REP_MBITS)
937
938 #define ECHO_CONNECT_SUPPORTED (OBD_CONNECT_FID | OBD_CONNECT_FLAGS2)
939 #define ECHO_CONNECT_SUPPORTED2 OBD_CONNECT2_REP_MBITS
940
941 #define MGS_CONNECT_SUPPORTED  (OBD_CONNECT_VERSION | OBD_CONNECT_AT | \
942                                 OBD_CONNECT_FULL20 | OBD_CONNECT_IMP_RECOV | \
943                                 OBD_CONNECT_PINGLESS |\
944                                 OBD_CONNECT_BULK_MBITS | OBD_CONNECT_BARRIER | \
945                                 OBD_CONNECT_FLAGS2)
946
947 #define MGS_CONNECT_SUPPORTED2 OBD_CONNECT2_REP_MBITS
948
949 /* Features required for this version of the client to work with server */
950 #define CLIENT_CONNECT_MDT_REQD (OBD_CONNECT_FID |      \
951                                  OBD_CONNECT_ATTRFID |  \
952                                  OBD_CONNECT_FULL20)
953
954 /* This structure is used for both request and reply.
955  *
956  * If we eventually have separate connect data for different types, which we
957  * almost certainly will, then perhaps we stick a union in here. */
958 struct obd_connect_data {
959         __u64 ocd_connect_flags; /* OBD_CONNECT_* per above */
960         __u32 ocd_version;       /* lustre release version number */
961         __u32 ocd_grant;         /* initial cache grant amount (bytes) */
962         __u32 ocd_index;         /* LOV index to connect to */
963         __u32 ocd_brw_size;      /* Maximum BRW size in bytes */
964         __u64 ocd_ibits_known;   /* inode bits this client understands */
965         __u8  ocd_grant_blkbits; /* log2 of the backend filesystem blocksize */
966         __u8  ocd_grant_inobits; /* log2 of the per-inode space consumption */
967         __u16 ocd_grant_tax_kb;  /* extent insertion overhead, in 1K blocks */
968         __u32 ocd_grant_max_blks;/* maximum number of blocks per extent */
969         __u64 ocd_transno;       /* first transno from client to be replayed */
970         __u32 ocd_group;         /* MDS group on OST */
971         __u32 ocd_cksum_types;   /* supported checksum algorithms */
972         __u32 ocd_max_easize;    /* How big LOV EA can be on MDS */
973         __u32 ocd_instance;      /* instance # of this target */
974         __u64 ocd_maxbytes;      /* Maximum stripe size in bytes */
975         /* Fields after ocd_maxbytes are only accessible by the receiver
976          * if the corresponding flag in ocd_connect_flags is set. Accessing
977          * any field after ocd_maxbytes on the receiver without a valid flag
978          * may result in out-of-bound memory access and kernel oops. */
979         __u16 ocd_maxmodrpcs;    /* Maximum modify RPCs in parallel */
980         __u16 padding0;          /* READ BELOW! also fix lustre_swab_connect */
981         __u32 padding1;          /* READ BELOW! also fix lustre_swab_connect */
982         __u64 ocd_connect_flags2;/* OBD_CONNECT2_* per above */
983         __u64 padding3;          /* READ BELOW! also fix lustre_swab_connect */
984         __u64 padding4;          /* READ BELOW! also fix lustre_swab_connect */
985         __u64 padding5;          /* READ BELOW! also fix lustre_swab_connect */
986         __u64 padding6;          /* READ BELOW! also fix lustre_swab_connect */
987         __u64 padding7;          /* READ BELOW! also fix lustre_swab_connect */
988         __u64 padding8;          /* READ BELOW! also fix lustre_swab_connect */
989         __u64 padding9;          /* READ BELOW! also fix lustre_swab_connect */
990         __u64 paddingA;          /* READ BELOW! also fix lustre_swab_connect */
991         __u64 paddingB;          /* READ BELOW! also fix lustre_swab_connect */
992         __u64 paddingC;          /* READ BELOW! also fix lustre_swab_connect */
993         __u64 paddingD;          /* READ BELOW! also fix lustre_swab_connect */
994         __u64 paddingE;          /* READ BELOW! also fix lustre_swab_connect */
995         __u64 paddingF;          /* added 2.1.0. also fix lustre_swab_connect */
996 };
997 /* XXX README XXX README XXX README XXX README XXX README XXX README XXX
998  * Please DO NOT use any fields before first ensuring that this field is
999  * not in use by some other branch/patch.  Email adilger@whamcloud.com to
1000  * reserve the new obd_connect_data field for use by your feature. Then, submit
1001  * a small patch against master and LTS branch that ONLY adds the new field,
1002  * updates lustre_swab_connect(), along with the matching OBD_CONNECT flag,
1003  * and updates wiretests accordingly,so it can be approved and landed easily
1004  * to reserve the field for future use by your feature (submitted separately).
1005  */
1006
1007 /*
1008  * Supported checksum algorithms. Up to 32 checksum types are supported.
1009  * (32-bit mask stored in obd_connect_data::ocd_cksum_types)
1010  * Please update DECLARE_CKSUM_NAME in obd_cksum.h when adding a new
1011  * algorithm and also the OBD_FL_CKSUM* flags, OBD_CKSUM_ALL flag,
1012  * OBD_FL_CKSUM_ALL flag and potentially OBD_CKSUM_T10_ALL flag.
1013  */
1014 enum cksum_types {
1015         OBD_CKSUM_CRC32         = 0x00000001,
1016         OBD_CKSUM_ADLER         = 0x00000002,
1017         OBD_CKSUM_CRC32C        = 0x00000004,
1018         OBD_CKSUM_RESERVED      = 0x00000008,
1019         OBD_CKSUM_T10IP512      = 0x00000010,
1020         OBD_CKSUM_T10IP4K       = 0x00000020,
1021         OBD_CKSUM_T10CRC512     = 0x00000040,
1022         OBD_CKSUM_T10CRC4K      = 0x00000080,
1023 };
1024
1025 #define OBD_CKSUM_T10_ALL (OBD_CKSUM_T10IP512 | OBD_CKSUM_T10IP4K | \
1026         OBD_CKSUM_T10CRC512 | OBD_CKSUM_T10CRC4K)
1027
1028 #define OBD_CKSUM_ALL (OBD_CKSUM_CRC32 | OBD_CKSUM_ADLER | OBD_CKSUM_CRC32C | \
1029                        OBD_CKSUM_T10_ALL)
1030
1031 /*
1032  * The default checksum algorithm used on top of T10PI GRD tags for RPC.
1033  * Considering that the checksum-of-checksums is only computing CRC32 on a
1034  * 4KB chunk of GRD tags for a 1MB RPC for 512B sectors, or 16KB of GRD
1035  * tags for 16MB of 4KB sectors, this is only 1/256 or 1/1024 of the
1036  * total data being checksummed, so the checksum type used here should not
1037  * affect overall system performance noticeably.
1038  */
1039 #define OBD_CKSUM_T10_TOP OBD_CKSUM_ADLER
1040
1041 /*
1042  *   OST requests: OBDO & OBD request records
1043  */
1044
1045 /* opcodes */
1046 enum ost_cmd {
1047         OST_REPLY      =  0,       /* reply ? */
1048         OST_GETATTR    =  1,
1049         OST_SETATTR    =  2,
1050         OST_READ       =  3,
1051         OST_WRITE      =  4,
1052         OST_CREATE     =  5,
1053         OST_DESTROY    =  6,
1054         OST_GET_INFO   =  7,
1055         OST_CONNECT    =  8,
1056         OST_DISCONNECT =  9,
1057         OST_PUNCH      = 10,
1058         OST_OPEN       = 11,
1059         OST_CLOSE      = 12,
1060         OST_STATFS     = 13,
1061         OST_SYNC       = 16,
1062         OST_SET_INFO   = 17,
1063         OST_QUOTACHECK = 18, /* not used since 2.4 */
1064         OST_QUOTACTL   = 19,
1065         OST_QUOTA_ADJUST_QUNIT = 20, /* not used since 2.4 */
1066         OST_LADVISE    = 21,
1067         OST_FALLOCATE  = 22,
1068         OST_SEEK       = 23,
1069         OST_LAST_OPC /* must be < 33 to avoid MDS_GETATTR */
1070 };
1071 #define OST_FIRST_OPC  OST_REPLY
1072
1073 enum obdo_flags {
1074         OBD_FL_INLINEDATA   = 0x00000001,
1075         OBD_FL_OBDMDEXISTS  = 0x00000002,
1076         OBD_FL_DELORPHAN    = 0x00000004, /* if set in o_flags delete orphans */
1077         OBD_FL_NORPC        = 0x00000008, /* set in o_flags do in OSC not OST */
1078         OBD_FL_IDONLY       = 0x00000010, /* set in o_flags only adjust obj id*/
1079         OBD_FL_RECREATE_OBJS= 0x00000020, /* recreate missing obj */
1080         OBD_FL_DEBUG_CHECK  = 0x00000040, /* echo client/server debug check */
1081         OBD_FL_NO_PRJQUOTA  = 0x00000080, /* the object's project is over
1082                                            * quota */
1083         OBD_FL_NO_USRQUOTA  = 0x00000100, /* the object's owner is over quota */
1084         OBD_FL_NO_GRPQUOTA  = 0x00000200, /* the object's group is over quota */
1085         OBD_FL_CREATE_CROW  = 0x00000400, /* object should be create on write */
1086         OBD_FL_SRVLOCK      = 0x00000800, /* delegate DLM locking to server */
1087         OBD_FL_CKSUM_CRC32  = 0x00001000, /* CRC32 checksum type */
1088         OBD_FL_CKSUM_ADLER  = 0x00002000, /* ADLER checksum type */
1089         OBD_FL_CKSUM_CRC32C = 0x00004000, /* CRC32C checksum type */
1090         OBD_FL_CKSUM_T10IP512  = 0x00005000, /* T10PI IP cksum, 512B sector */
1091         OBD_FL_CKSUM_T10IP4K   = 0x00006000, /* T10PI IP cksum, 4KB sector */
1092         OBD_FL_CKSUM_T10CRC512 = 0x00007000, /* T10PI CRC cksum, 512B sector */
1093         OBD_FL_CKSUM_T10CRC4K  = 0x00008000, /* T10PI CRC cksum, 4KB sector */
1094         OBD_FL_CKSUM_RSVD3  = 0x00010000, /* for future cksum types */
1095         OBD_FL_SHRINK_GRANT = 0x00020000, /* object shrink the grant */
1096         OBD_FL_MMAP         = 0x00040000, /* object is mmapped on the client.
1097                                            * XXX: obsoleted - reserved for old
1098                                            * clients prior than 2.2 */
1099         OBD_FL_RECOV_RESEND = 0x00080000, /* recoverable resent */
1100         OBD_FL_NOSPC_BLK    = 0x00100000, /* no more block space on OST */
1101         OBD_FL_FLUSH        = 0x00200000, /* flush pages on the OST */
1102         OBD_FL_SHORT_IO     = 0x00400000, /* short io request */
1103         OBD_FL_ROOT_SQUASH  = 0x00800000, /* root squash */
1104         OBD_FL_ROOT_PRJQUOTA  = 0x01000000, /* check prj quota for root */
1105         /* OBD_FL_LOCAL_MASK = 0xF0000000, was local-only flags until 2.10 */
1106
1107         /*
1108          * Note that while the original checksum values were separate bits,
1109          * in 2.x we can actually allow all values from 1-31. T10-PI checksum
1110          * types already use values which are not separate bits.
1111          */
1112         OBD_FL_CKSUM_ALL    = OBD_FL_CKSUM_CRC32 | OBD_FL_CKSUM_ADLER |
1113                               OBD_FL_CKSUM_CRC32C | OBD_FL_CKSUM_T10IP512 |
1114                               OBD_FL_CKSUM_T10IP4K | OBD_FL_CKSUM_T10CRC512 |
1115                               OBD_FL_CKSUM_T10CRC4K,
1116
1117         OBD_FL_NO_QUOTA_ALL = OBD_FL_NO_USRQUOTA | OBD_FL_NO_GRPQUOTA |
1118                               OBD_FL_NO_PRJQUOTA,
1119 };
1120
1121 /*
1122  * All LOV EA magics should have the same postfix, if some new version
1123  * Lustre instroduces new LOV EA magic, then when down-grade to an old
1124  * Lustre, even though the old version system does not recognizes such
1125  * new magic, it still can distinguish the corrupted cases by checking
1126  * the magic's postfix.
1127  */
1128 #define LOV_MAGIC_MAGIC 0x0BD0
1129 #define LOV_MAGIC_MASK  0xFFFF
1130
1131 #define LOV_MAGIC_V1            (0x0BD10000 | LOV_MAGIC_MAGIC)
1132 #define LOV_MAGIC_JOIN_V1       (0x0BD20000 | LOV_MAGIC_MAGIC)
1133 #define LOV_MAGIC_V3            (0x0BD30000 | LOV_MAGIC_MAGIC)
1134 #define LOV_MAGIC_MIGRATE       (0x0BD40000 | LOV_MAGIC_MAGIC)
1135 /* reserved for specifying OSTs */
1136 #define LOV_MAGIC_SPECIFIC      (0x0BD50000 | LOV_MAGIC_MAGIC)
1137 #define LOV_MAGIC               LOV_MAGIC_V1
1138 #define LOV_MAGIC_COMP_V1       (0x0BD60000 | LOV_MAGIC_MAGIC)
1139 #define LOV_MAGIC_FOREIGN       (0x0BD70000 | LOV_MAGIC_MAGIC)
1140 #define LOV_MAGIC_SEL           (0x0BD80000 | LOV_MAGIC_MAGIC)
1141
1142 /*
1143  * magic for fully defined striping
1144  * the idea is that we should have different magics for striping "hints"
1145  * (struct lov_user_md_v[13]) and defined ready-to-use striping (struct
1146  * lov_mds_md_v[13]). at the moment the magics are used in wire protocol,
1147  * we can't just change it w/o long way preparation, but we still need a
1148  * mechanism to allow LOD to differentiate hint versus ready striping.
1149  * so, at the moment we do a trick: MDT knows what to expect from request
1150  * depending on the case (replay uses ready striping, non-replay req uses
1151  * hints), so MDT replaces magic with appropriate one and now LOD can
1152  * easily understand what's inside -bzzz
1153  *
1154  * those *_DEF magics are only used on server side internally, they
1155  * won't be put on wire or disk.
1156  */
1157 #define LOV_MAGIC_DEFINED               0x10000000
1158 #define LOV_MAGIC_V1_DEFINED            (LOV_MAGIC_DEFINED | LOV_MAGIC_V1)
1159 #define LOV_MAGIC_V3_DEFINED            (LOV_MAGIC_DEFINED | LOV_MAGIC_V3)
1160 #define LOV_MAGIC_COMP_V1_DEFINED       (LOV_MAGIC_DEFINED | LOV_MAGIC_COMP_V1)
1161
1162 #define lov_pattern(pattern)            (pattern & ~LOV_PATTERN_F_MASK)
1163 #define lov_pattern_flags(pattern)      (pattern & LOV_PATTERN_F_MASK)
1164
1165 #define lov_ost_data lov_ost_data_v1
1166 struct lov_ost_data_v1 {          /* per-stripe data structure (little-endian)*/
1167         struct ost_id l_ost_oi;   /* OST object ID */
1168         __u32 l_ost_gen;          /* generation of this l_ost_idx */
1169         __u32 l_ost_idx;          /* OST index in LOV (lov_tgt_desc->tgts) */
1170 };
1171
1172 #define lov_mds_md lov_mds_md_v1
1173 struct lov_mds_md_v1 {            /* LOV EA mds/wire data (little-endian) */
1174         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V1 */
1175         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
1176         struct ost_id   lmm_oi;   /* LOV object ID */
1177         __u32 lmm_stripe_size;    /* size of stripe in bytes */
1178         /* lmm_stripe_count used to be __u32 */
1179         __u16 lmm_stripe_count;   /* num stripes in use for this object */
1180         __u16 lmm_layout_gen;     /* layout generation number */
1181         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
1182 };
1183
1184 #define MAX_MD_SIZE_OLD (sizeof(struct lov_mds_md) +                    \
1185                          4 * sizeof(struct lov_ost_data))
1186 #define MAX_MD_SIZE (sizeof(struct lov_comp_md_v1) +                    \
1187                      4 * (sizeof(struct lov_comp_md_entry_v1) +         \
1188                           MAX_MD_SIZE_OLD))
1189 #define MIN_MD_SIZE (sizeof(struct lov_mds_md) + 1 * sizeof(struct lov_ost_data))
1190
1191 /* This is the default MDT reply size allocated, should the striping be bigger,
1192  * it will be reallocated in mdt_fix_reply.
1193  * 100 stripes is a bit less than 2.5k of data */
1194 #define DEF_REP_MD_SIZE (sizeof(struct lov_mds_md) + \
1195                          100 * sizeof(struct lov_ost_data))
1196
1197 #define XATTR_NAME_ACL_ACCESS   "system.posix_acl_access"
1198 #define XATTR_NAME_ACL_DEFAULT  "system.posix_acl_default"
1199 #define XATTR_USER_PREFIX       "user."
1200 #define XATTR_TRUSTED_PREFIX    "trusted."
1201 #define XATTR_SECURITY_PREFIX   "security."
1202 #define XATTR_ENCRYPTION_PREFIX "encryption."
1203
1204 #define XATTR_NAME_SOM          "trusted.som"
1205 #define XATTR_NAME_LOV          "trusted.lov"
1206 #define XATTR_NAME_LMA          "trusted.lma"
1207 #define XATTR_NAME_LMV          "trusted.lmv"
1208 #define XATTR_NAME_DEFAULT_LMV  "trusted.dmv"
1209 #define XATTR_NAME_LINK         "trusted.link"
1210 #define XATTR_NAME_FID          "trusted.fid"
1211 #define XATTR_NAME_VERSION      "trusted.version"
1212 #define XATTR_NAME_SOM          "trusted.som"
1213 #define XATTR_NAME_HSM          "trusted.hsm"
1214 #define XATTR_NAME_LFSCK_BITMAP "trusted.lfsck_bitmap"
1215 #define XATTR_NAME_DUMMY        "trusted.dummy"
1216 #define XATTR_NAME_PROJID       "trusted.projid"
1217
1218 #define LL_XATTR_NAME_ENCRYPTION_CONTEXT_OLD XATTR_SECURITY_PREFIX"c"
1219 #define LL_XATTR_NAME_ENCRYPTION_CONTEXT XATTR_ENCRYPTION_PREFIX"c"
1220
1221 #define XATTR_NAME_LFSCK_NAMESPACE "trusted.lfsck_ns"
1222 #define XATTR_NAME_MAX_LEN      32 /* increase this, if there is longer name. */
1223
1224 struct lov_mds_md_v3 {            /* LOV EA mds/wire data (little-endian) */
1225         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V3 */
1226         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
1227         struct ost_id   lmm_oi;   /* LOV object ID */
1228         __u32 lmm_stripe_size;    /* size of stripe in bytes */
1229         /* lmm_stripe_count used to be __u32 */
1230         __u16 lmm_stripe_count;   /* num stripes in use for this object */
1231         __u16 lmm_layout_gen;     /* layout generation number */
1232         char  lmm_pool_name[LOV_MAXPOOLNAME + 1]; /* must be 32bit aligned */
1233         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
1234 };
1235
1236 static inline __u32 lov_mds_md_size(__u16 stripes, __u32 lmm_magic)
1237 {
1238         if (stripes == (__u16)-1)
1239                 stripes = 0;
1240
1241         if (lmm_magic == LOV_MAGIC_V3)
1242                 return sizeof(struct lov_mds_md_v3) +
1243                                 stripes * sizeof(struct lov_ost_data_v1);
1244         else
1245                 return sizeof(struct lov_mds_md_v1) +
1246                                 stripes * sizeof(struct lov_ost_data_v1);
1247 }
1248
1249 static inline __u32
1250 lov_mds_md_max_stripe_count(__kernel_size_t buf_size, __u32 lmm_magic)
1251 {
1252         switch (lmm_magic) {
1253         case LOV_MAGIC_V1: {
1254                 struct lov_mds_md_v1 lmm;
1255
1256                 if (buf_size < sizeof(lmm))
1257                         return 0;
1258
1259                 return (buf_size - sizeof(lmm)) / sizeof(lmm.lmm_objects[0]);
1260         }
1261         case LOV_MAGIC_V3: {
1262                 struct lov_mds_md_v3 lmm;
1263
1264                 if (buf_size < sizeof(lmm))
1265                         return 0;
1266
1267                 return (buf_size - sizeof(lmm)) / sizeof(lmm.lmm_objects[0]);
1268         }
1269         default:
1270                 return 0;
1271         }
1272 }
1273
1274 #define OBD_MD_FLID        (0x00000001ULL) /* object ID */
1275 #define OBD_MD_FLATIME     (0x00000002ULL) /* access time */
1276 #define OBD_MD_FLMTIME     (0x00000004ULL) /* data modification time */
1277 #define OBD_MD_FLCTIME     (0x00000008ULL) /* change time */
1278 #define OBD_MD_FLSIZE      (0x00000010ULL) /* size */
1279 #define OBD_MD_FLBLOCKS    (0x00000020ULL) /* allocated blocks count */
1280 #define OBD_MD_FLBLKSZ     (0x00000040ULL) /* block size */
1281 #define OBD_MD_FLMODE      (0x00000080ULL) /* access bits (mode & ~S_IFMT) */
1282 #define OBD_MD_FLTYPE      (0x00000100ULL) /* object type (mode & S_IFMT) */
1283 #define OBD_MD_FLUID       (0x00000200ULL) /* user ID */
1284 #define OBD_MD_FLGID       (0x00000400ULL) /* group ID */
1285 #define OBD_MD_FLFLAGS     (0x00000800ULL) /* flags word */
1286 #define OBD_MD_DOM_SIZE    (0x00001000ULL) /* Data-on-MDT component size */
1287 #define OBD_MD_FLNLINK     (0x00002000ULL) /* link count */
1288 #define OBD_MD_FLPARENT    (0x00004000ULL) /* parent FID */
1289 #define OBD_MD_LAYOUT_VERSION (0x00008000ULL) /* OST object layout version */
1290 #define OBD_MD_FLRDEV      (0x00010000ULL) /* device number */
1291 #define OBD_MD_FLEASIZE    (0x00020000ULL) /* extended attribute data */
1292 #define OBD_MD_LINKNAME    (0x00040000ULL) /* symbolic link target */
1293 #define OBD_MD_FLHANDLE    (0x00080000ULL) /* file/lock handle */
1294 #define OBD_MD_FLCKSUM     (0x00100000ULL) /* bulk data checksum */
1295 /*      OBD_MD_FLQOS       (0x00200000ULL) has never been used */
1296 /*      OBD_MD_FLCOOKIE    (0x00800000ULL) obsolete in 2.8 */
1297 #define OBD_MD_FLPRJQUOTA  (0x00400000ULL) /* over quota flags sent from ost */
1298 #define OBD_MD_FLGROUP     (0x01000000ULL) /* group */
1299 #define OBD_MD_FLFID       (0x02000000ULL) /* ->ost write inline fid */
1300 /*      OBD_MD_FLEPOCH     (0x04000000ULL) obsolete 2.7.50 */
1301                                            /* ->mds if epoch opens or closes */
1302 #define OBD_MD_FLGRANT     (0x08000000ULL) /* ost preallocation space grant */
1303 #define OBD_MD_FLDIREA     (0x10000000ULL) /* dir's extended attribute data */
1304 #define OBD_MD_FLUSRQUOTA  (0x20000000ULL) /* over quota flags sent from ost */
1305 #define OBD_MD_FLGRPQUOTA  (0x40000000ULL) /* over quota flags sent from ost */
1306 #define OBD_MD_FLMODEASIZE (0x80000000ULL) /* EA size will be changed */
1307
1308 #define OBD_MD_MDS         (0x0000000100000000ULL) /* where an inode lives on */
1309 /*      OBD_MD_REINT       (0x0000000200000000ULL) obsolete 1.8 */
1310 #define OBD_MD_MEA         (0x0000000400000000ULL) /* CMD split EA  */
1311 #define OBD_MD_TSTATE      (0x0000000800000000ULL) /* transient state field */
1312
1313 #define OBD_MD_FLXATTR       (0x0000001000000000ULL) /* xattr */
1314 #define OBD_MD_FLXATTRLS     (0x0000002000000000ULL) /* xattr list */
1315 #define OBD_MD_FLXATTRRM     (0x0000004000000000ULL) /* xattr remove */
1316 #define OBD_MD_FLACL         (0x0000008000000000ULL) /* ACL */
1317 #define OBD_MD_FLAGSTATFS    (0x0000010000000000ULL) /* aggregated statfs */
1318 /*      OBD_MD_FLMDSCAPA     (0x0000020000000000ULL) obsolete 2.7.54 */
1319 /*      OBD_MD_FLOSSCAPA     (0x0000040000000000ULL) obsolete 2.7.54 */
1320 /*      OBD_MD_FLCKSPLIT     (0x0000080000000000ULL) obsolete 2.3.58*/
1321 #define OBD_MD_FLCROSSREF    (0x0000100000000000ULL) /* Cross-ref case */
1322 #define OBD_MD_FLGETATTRLOCK (0x0000200000000000ULL) /* Get IOEpoch attributes
1323                                                       * under lock; for xattr
1324                                                       * requests means the
1325                                                       * client holds the lock */
1326 #define OBD_MD_FLOBJCOUNT    (0x0000400000000000ULL) /* for multiple destroy */
1327
1328 #define OBD_MD_FLDATAVERSION (0x0010000000000000ULL) /* iversion sum */
1329 #define OBD_MD_CLOSE_INTENT_EXECED (0x0020000000000000ULL) /* close intent
1330                                                               executed */
1331
1332 #define OBD_MD_DEFAULT_MEA   (0x0040000000000000ULL) /* default MEA */
1333 #define OBD_MD_FLOSTLAYOUT   (0x0080000000000000ULL) /* contain ost_layout */
1334 #define OBD_MD_FLPROJID      (0x0100000000000000ULL) /* project ID */
1335 #define OBD_MD_SECCTX        (0x0200000000000000ULL) /* embed security xattr */
1336 #define OBD_MD_FLLAZYSIZE    (0x0400000000000000ULL) /* Lazy size */
1337 #define OBD_MD_FLLAZYBLOCKS  (0x0800000000000000ULL) /* Lazy blocks */
1338 #define OBD_MD_FLBTIME       (0x1000000000000000ULL) /* birth time */
1339 #define OBD_MD_ENCCTX        (0x2000000000000000ULL) /* embed encryption ctx */
1340 #define OBD_MD_NAMEHASH      (0x4000000000000000ULL) /* use hash instead of name
1341                                                       * in case of encryption
1342                                                       */
1343
1344 #define OBD_MD_FLALLQUOTA (OBD_MD_FLUSRQUOTA | \
1345                            OBD_MD_FLGRPQUOTA | \
1346                            OBD_MD_FLPRJQUOTA)
1347
1348 #define OBD_MD_FLGETATTR (OBD_MD_FLID    | OBD_MD_FLATIME | OBD_MD_FLMTIME | \
1349                           OBD_MD_FLCTIME | OBD_MD_FLSIZE  | OBD_MD_FLBLKSZ | \
1350                           OBD_MD_FLMODE  | OBD_MD_FLTYPE  | OBD_MD_FLUID   | \
1351                           OBD_MD_FLGID   | OBD_MD_FLFLAGS | OBD_MD_FLNLINK | \
1352                           OBD_MD_FLPARENT | OBD_MD_FLRDEV  | OBD_MD_FLGROUP | \
1353                           OBD_MD_FLPROJID | OBD_MD_FLBTIME)
1354
1355 #define OBD_MD_FLXATTRALL (OBD_MD_FLXATTR | OBD_MD_FLXATTRLS)
1356
1357 /* don't forget obdo_fid which is way down at the bottom so it can
1358  * come after the definition of llog_cookie */
1359
1360 enum hss_valid {
1361         HSS_SETMASK     = 0x01,
1362         HSS_CLEARMASK   = 0x02,
1363         HSS_ARCHIVE_ID  = 0x04,
1364 };
1365
1366 struct hsm_state_set {
1367         __u32   hss_valid;
1368         __u32   hss_archive_id;
1369         __u64   hss_setmask;
1370         __u64   hss_clearmask;
1371 };
1372
1373 /* ost_body.data values for OST_BRW */
1374
1375 #define OBD_BRW_READ            0x01
1376 #define OBD_BRW_WRITE           0x02
1377 #define OBD_BRW_RWMASK          (OBD_BRW_READ | OBD_BRW_WRITE)
1378 #define OBD_BRW_NDELAY          0x04 /* Non-delay RPC should be issued for
1379                                       * this page. Non-delay RPCs have bit
1380                                       * rq_no_delay set. */
1381 #define OBD_BRW_SYNC            0x08 /* this page is a part of synchronous
1382                                       * transfer and is not accounted in
1383                                       * the grant. */
1384 #define OBD_BRW_CHECK           0x10
1385 #define OBD_BRW_FROM_GRANT      0x20 /* the osc manages this under llite */
1386 #define OBD_BRW_GRANTED         0x40 /* the ost manages this */
1387 /* OBD_BRW_NOCACHE is currently neither set nor tested */
1388 #define OBD_BRW_NOCACHE         0x80 /* this page is a part of non-cached IO */
1389 #define OBD_BRW_NOQUOTA        0x100 /* do not enforce quota */
1390 #define OBD_BRW_SRVLOCK        0x200 /* Client holds no lock over this page */
1391 #define OBD_BRW_ASYNC          0x400 /* Server may delay commit to disk */
1392 #define OBD_BRW_MEMALLOC       0x800 /* Client runs in the "kswapd" context */
1393 #define OBD_BRW_OVER_USRQUOTA 0x1000 /* Running out of user quota */
1394 #define OBD_BRW_OVER_GRPQUOTA 0x2000 /* Running out of group quota */
1395 #define OBD_BRW_SOFT_SYNC     0x4000 /* This flag notifies the server
1396                                       * that the client is running low on
1397                                       * space for unstable pages; asking
1398                                       * it to sync quickly */
1399 #define OBD_BRW_OVER_PRJQUOTA 0x8000 /* Running out of project quota */
1400 #define OBD_BRW_ROOT_PRJQUOTA 0x10000 /* check project quota for root */
1401 #define OBD_BRW_RDMA_ONLY    0x20000 /* RPC contains RDMA-only pages*/
1402 #define OBD_BRW_SYS_RESOURCE 0x40000 /* page has CAP_SYS_RESOURCE */
1403
1404 #define OBD_BRW_OVER_ALLQUOTA (OBD_BRW_OVER_USRQUOTA | \
1405                                OBD_BRW_OVER_GRPQUOTA | \
1406                                OBD_BRW_OVER_PRJQUOTA)
1407
1408 #define OBD_BRW_DONE    0x40000000UL   /*
1409                                         * osd-ldiskfs inernal,
1410                                         * IO has been issued before
1411                                         */
1412 #define OBD_BRW_LOCAL1  0x80000000UL    /*
1413                                          * osd-ldiskfs internal,
1414                                          * page mapped to real block
1415                                          */
1416
1417 #define OBD_BRW_LOCALS (OBD_BRW_LOCAL1 | OBD_BRW_DONE)
1418
1419 #define OBD_MAX_GRANT 0x7fffffffUL /* Max grant allowed to one client: 2 GiB */
1420
1421 #define OBD_OBJECT_EOF LUSTRE_EOF
1422
1423 #define OST_MIN_PRECREATE 32
1424 #define OST_MAX_PRECREATE 20000
1425
1426 struct obd_ioobj {
1427         struct ost_id   ioo_oid;        /* object ID, if multi-obj BRW */
1428         __u32           ioo_max_brw;    /* low 16 bits were o_mode before 2.4,
1429                                          * now (PTLRPC_BULK_OPS_COUNT - 1) in
1430                                          * high 16 bits in 2.4 and later */
1431         __u32           ioo_bufcnt;     /* number of niobufs for this object */
1432 };
1433
1434 /* NOTE: IOOBJ_MAX_BRW_BITS defines the _offset_ of the max_brw field in
1435  * ioo_max_brw, NOT the maximum number of bits in PTLRPC_BULK_OPS_BITS.
1436  * That said, ioo_max_brw is a 32-bit field so the limit is also 16 bits. */
1437 #define IOOBJ_MAX_BRW_BITS      16
1438 #define ioobj_max_brw_get(ioo)  (((ioo)->ioo_max_brw >> IOOBJ_MAX_BRW_BITS) + 1)
1439 #define ioobj_max_brw_set(ioo, num)                                     \
1440 do { (ioo)->ioo_max_brw = ((num) - 1) << IOOBJ_MAX_BRW_BITS; } while (0)
1441
1442 /* multiple of 8 bytes => can array */
1443 struct niobuf_remote {
1444         __u64   rnb_offset;
1445         __u32   rnb_len;
1446         __u32   rnb_flags;
1447 };
1448
1449 /* lock value block communicated between the filter and llite */
1450
1451 /* OST_LVB_ERR_INIT is needed because the return code in rc is
1452  * negative, i.e. because ((MASK + rc) & MASK) != MASK. */
1453 #define OST_LVB_ERR_INIT 0xffbadbad80000000ULL
1454 #define OST_LVB_ERR_MASK 0xffbadbad00000000ULL
1455 #define OST_LVB_IS_ERR(blocks)                                          \
1456         ((blocks & OST_LVB_ERR_MASK) == OST_LVB_ERR_MASK)
1457 #define OST_LVB_SET_ERR(blocks, rc)                                     \
1458         do { blocks = OST_LVB_ERR_INIT + rc; } while (0)
1459 #define OST_LVB_GET_ERR(blocks)    (int)(blocks - OST_LVB_ERR_INIT)
1460
1461 struct ost_lvb_v1 {
1462         __u64   lvb_size;
1463         __s64   lvb_mtime;
1464         __s64   lvb_atime;
1465         __s64   lvb_ctime;
1466         __u64   lvb_blocks;
1467 };
1468
1469 struct ost_lvb {
1470         __u64   lvb_size;
1471         __s64   lvb_mtime;
1472         __s64   lvb_atime;
1473         __s64   lvb_ctime;
1474         __u64   lvb_blocks;
1475         __u32   lvb_mtime_ns;
1476         __u32   lvb_atime_ns;
1477         __u32   lvb_ctime_ns;
1478         __u32   lvb_padding;
1479 };
1480
1481 /*
1482  *   lquota data structures
1483  */
1484
1485 /* The lquota_id structure is an union of all the possible identifier types that
1486  * can be used with quota, this includes:
1487  * - 64-bit user ID
1488  * - 64-bit group ID
1489  * - a FID which can be used for per-directory quota in the future */
1490 union lquota_id {
1491         struct lu_fid   qid_fid; /* FID for per-directory quota */
1492         __u64           qid_uid; /* user identifier */
1493         __u64           qid_gid; /* group identifier */
1494         __u64           qid_projid; /* project identifier */
1495 };
1496
1497 /* quotactl management */
1498 struct obd_quotactl {
1499         __u32                   qc_cmd;
1500         __u32                   qc_type; /* see Q_* flag below */
1501         __u32                   qc_id;
1502         __u32                   qc_stat;
1503         struct obd_dqinfo       qc_dqinfo;
1504         struct obd_dqblk        qc_dqblk;
1505         char                    qc_poolname[];
1506 };
1507
1508 #define Q_COPY(out, in, member) (out)->member = (in)->member
1509
1510 /* NOTE:
1511  * - in and out maybe a type of struct if_quotactl or struct obd_quotactl
1512  * - in and out need not be of the same type.
1513  */
1514 #define __QCTL_COPY(out, in, need_pname)                                \
1515 do {                                                                    \
1516         Q_COPY(out, in, qc_cmd);                                        \
1517         Q_COPY(out, in, qc_type);                                       \
1518         Q_COPY(out, in, qc_id);                                         \
1519         Q_COPY(out, in, qc_stat);                                       \
1520         Q_COPY(out, in, qc_dqinfo);                                     \
1521         Q_COPY(out, in, qc_dqblk);                                      \
1522         if (need_pname && LUSTRE_Q_CMD_IS_POOL(in->qc_cmd)) {           \
1523                 size_t len = strnlen(in->qc_poolname, LOV_MAXPOOLNAME); \
1524                                                                         \
1525                 memcpy(out->qc_poolname, in->qc_poolname, len);         \
1526                 out->qc_poolname[len] = '\0';                           \
1527         }                                                               \
1528 } while (0)
1529
1530 #define QCTL_COPY(out, in) __QCTL_COPY(out, in, true)
1531 #define QCTL_COPY_NO_PNAME(out, in) __QCTL_COPY(out, in, false)
1532
1533 /* Body of quota request used for quota acquire/release RPCs between quota
1534  * master (aka QMT) and slaves (ak QSD). */
1535 struct quota_body {
1536         struct lu_fid   qb_fid;     /* FID of global index packing the pool ID
1537                                       * and type (data or metadata) as well as
1538                                       * the quota type (user or group). */
1539         union lquota_id qb_id;      /* uid or gid or directory FID */
1540         __u32           qb_flags;   /* see below */
1541         __u32           qb_padding;
1542         __u64           qb_count;   /* acquire/release count (kbytes/inodes) */
1543         __u64           qb_usage;   /* current slave usage (kbytes/inodes) */
1544         __u64           qb_slv_ver; /* slave index file version */
1545         struct lustre_handle    qb_lockh;     /* per-ID lock handle */
1546         struct lustre_handle    qb_glb_lockh; /* global lock handle */
1547         __u64           qb_padding1[4];
1548 };
1549
1550 /* When the quota_body is used in the reply of quota global intent
1551  * lock (IT_QUOTA_CONN) reply, qb_fid contains slave index file FID. */
1552 #define qb_slv_fid      qb_fid
1553 /* qb_usage is the current qunit (in kbytes/inodes) when quota_body is used in
1554  * quota reply */
1555 #define qb_qunit        qb_usage
1556
1557 #define QUOTA_DQACQ_FL_ACQ      0x1  /* acquire quota */
1558 #define QUOTA_DQACQ_FL_PREACQ   0x2  /* pre-acquire */
1559 #define QUOTA_DQACQ_FL_REL      0x4  /* release quota */
1560 #define QUOTA_DQACQ_FL_REPORT   0x8  /* report usage */
1561
1562 /* Quota types currently supported */
1563 enum {
1564         LQUOTA_TYPE_USR = 0x00, /* maps to USRQUOTA */
1565         LQUOTA_TYPE_GRP = 0x01, /* maps to GRPQUOTA */
1566         LQUOTA_TYPE_PRJ = 0x02, /* maps to PRJQUOTA */
1567         LQUOTA_TYPE_MAX
1568 };
1569
1570 /* There are 2 different resource types on which a quota limit can be enforced:
1571  * - inodes on the MDTs
1572  * - blocks on the OSTs */
1573 enum {
1574         LQUOTA_RES_MD           = 0x01, /* skip 0 to avoid null oid in FID */
1575         LQUOTA_RES_DT           = 0x02,
1576         LQUOTA_LAST_RES,
1577         LQUOTA_FIRST_RES        = LQUOTA_RES_MD
1578 };
1579 #define LQUOTA_NR_RES (LQUOTA_LAST_RES - LQUOTA_FIRST_RES + 1)
1580
1581 /*
1582  * Space accounting support
1583  * Format of an accounting record, providing disk usage information for a given
1584  * user or group
1585  */
1586 struct lquota_acct_rec { /* 16 bytes */
1587         __u64 bspace;  /* current space in use */
1588         __u64 ispace;  /* current # inodes in use */
1589 };
1590
1591 /*
1592  * Global quota index support
1593  * Format of a global record, providing global quota settings for a given quota
1594  * identifier
1595  */
1596 struct lquota_glb_rec { /* 32 bytes */
1597         __u64 qbr_hardlimit; /* quota hard limit, in #inodes or kbytes */
1598         __u64 qbr_softlimit; /* quota soft limit, in #inodes or kbytes */
1599         __u64 qbr_time;      /* grace time, in seconds */
1600         __u64 qbr_granted;   /* how much is granted to slaves, in #inodes or
1601                               * kbytes */
1602 };
1603
1604 /*
1605  * Slave index support
1606  * Format of a slave record, recording how much space is granted to a given
1607  * slave
1608  */
1609 struct lquota_slv_rec { /* 8 bytes */
1610         __u64 qsr_granted; /* space granted to the slave for the key=ID,
1611                             * in #inodes or kbytes */
1612 };
1613
1614 /* Data structures associated with the quota locks */
1615
1616 /* Glimpse descriptor used for the index & per-ID quota locks */
1617 struct ldlm_gl_lquota_desc {
1618         union lquota_id gl_id;    /* quota ID subject to the glimpse */
1619         __u64           gl_flags; /* see LQUOTA_FL* below */
1620         __u64           gl_ver;   /* new index version */
1621         __u64           gl_hardlimit; /* new hardlimit or qunit value */
1622         __u64           gl_softlimit; /* new softlimit */
1623         __u64           gl_time;
1624         __u64           gl_pad2;
1625 };
1626 #define gl_qunit        gl_hardlimit /* current qunit value used when
1627                                       * glimpsing per-ID quota locks */
1628
1629 /* quota glimpse flags */
1630 #define LQUOTA_FL_EDQUOT 0x1 /* user/group out of quota space on QMT */
1631
1632 /* LVB used with quota (global and per-ID) locks */
1633 struct lquota_lvb {
1634         __u64   lvb_flags;      /* see LQUOTA_FL* above */
1635         __u64   lvb_id_may_rel; /* space that might be released later */
1636         __u64   lvb_id_rel;     /* space released by the slave for this ID */
1637         __u64   lvb_id_qunit;   /* current qunit value */
1638         __u64   lvb_pad1;
1639 };
1640
1641 /* LVB used with global quota lock */
1642 #define lvb_glb_ver  lvb_id_may_rel /* current version of the global index */
1643
1644 /* op codes */
1645 enum quota_cmd {
1646         QUOTA_DQACQ     = 601,
1647         QUOTA_DQREL     = 602,
1648         QUOTA_LAST_OPC
1649 };
1650 #define QUOTA_FIRST_OPC QUOTA_DQACQ
1651
1652 /*
1653  *   MDS REQ RECORDS
1654  */
1655
1656 /* opcodes */
1657 enum mds_cmd {
1658         MDS_GETATTR             = 33,
1659         MDS_GETATTR_NAME        = 34,
1660         MDS_CLOSE               = 35,
1661         MDS_REINT               = 36,
1662         MDS_READPAGE            = 37,
1663         MDS_CONNECT             = 38,
1664         MDS_DISCONNECT          = 39,
1665         MDS_GET_ROOT            = 40,
1666         MDS_STATFS              = 41,
1667         MDS_PIN                 = 42, /* obsolete, never used in a release */
1668         MDS_UNPIN               = 43, /* obsolete, never used in a release */
1669         MDS_SYNC                = 44,
1670         MDS_DONE_WRITING        = 45, /* obsolete since 2.8.0 */
1671         MDS_SET_INFO            = 46,
1672         MDS_QUOTACHECK          = 47, /* not used since 2.4 */
1673         MDS_QUOTACTL            = 48,
1674         MDS_GETXATTR            = 49,
1675         MDS_SETXATTR            = 50, /* obsolete, now it's MDS_REINT op */
1676         MDS_WRITEPAGE           = 51,
1677         MDS_IS_SUBDIR           = 52, /* obsolete, never used in a release */
1678         MDS_GET_INFO            = 53,
1679         MDS_HSM_STATE_GET       = 54,
1680         MDS_HSM_STATE_SET       = 55,
1681         MDS_HSM_ACTION          = 56,
1682         MDS_HSM_PROGRESS        = 57,
1683         MDS_HSM_REQUEST         = 58,
1684         MDS_HSM_CT_REGISTER     = 59,
1685         MDS_HSM_CT_UNREGISTER   = 60,
1686         MDS_SWAP_LAYOUTS        = 61,
1687         MDS_RMFID               = 62,
1688         MDS_BATCH               = 63,
1689         MDS_LAST_OPC
1690 };
1691
1692 #define MDS_FIRST_OPC    MDS_GETATTR
1693
1694
1695 /* opcodes for object update */
1696 enum update_cmd {
1697         OUT_UPDATE      = 1000,
1698         OUT_UPDATE_LAST_OPC
1699 };
1700
1701 #define OUT_UPDATE_FIRST_OPC    OUT_UPDATE
1702
1703 /*
1704  * Do not exceed 63
1705  */
1706
1707 enum mds_reint_op {
1708         REINT_SETATTR  = 1,
1709         REINT_CREATE   = 2,
1710         REINT_LINK     = 3,
1711         REINT_UNLINK   = 4,
1712         REINT_RENAME   = 5,
1713         REINT_OPEN     = 6,
1714         REINT_SETXATTR = 7,
1715         REINT_RMENTRY  = 8,
1716         REINT_MIGRATE  = 9,
1717         REINT_RESYNC   = 10,
1718         REINT_MAX
1719 };
1720
1721 /* the disposition of the intent outlines what was executed */
1722 #define DISP_IT_EXECD        0x00000001
1723 #define DISP_LOOKUP_EXECD    0x00000002
1724 #define DISP_LOOKUP_NEG      0x00000004
1725 #define DISP_LOOKUP_POS      0x00000008
1726 #define DISP_OPEN_CREATE     0x00000010
1727 #define DISP_OPEN_OPEN       0x00000020
1728 #define DISP_ENQ_COMPLETE    0x00400000         /* obsolete and unused */
1729 #define DISP_ENQ_OPEN_REF    0x00800000
1730 #define DISP_ENQ_CREATE_REF  0x01000000
1731 #define DISP_OPEN_LOCK       0x02000000
1732 #define DISP_OPEN_LEASE      0x04000000
1733 #define DISP_OPEN_STRIPE     0x08000000
1734 #define DISP_OPEN_DENY       0x10000000
1735
1736 /* INODE LOCK PARTS */
1737 enum mds_ibits_locks {
1738         MDS_INODELOCK_LOOKUP    = 0x000001, /* For namespace, dentry etc.  Was
1739                                              * used to protect permission (mode,
1740                                              * owner, group, etc) before 2.4. */
1741         MDS_INODELOCK_UPDATE    = 0x000002, /* size, links, timestamps */
1742         MDS_INODELOCK_OPEN      = 0x000004, /* For opened files */
1743         MDS_INODELOCK_LAYOUT    = 0x000008, /* for layout */
1744
1745         /* The PERM bit is added in 2.4, and is used to protect permission
1746          * (mode, owner, group, ACL, etc.) separate from LOOKUP lock.
1747          * For remote directories (in DNE) these locks will be granted by
1748          * different MDTs (different LDLM namespace).
1749          *
1750          * For local directory, the MDT always grants UPDATE|PERM together.
1751          * For remote directory, master MDT (where remote directory is) grants
1752          * UPDATE|PERM, and remote MDT (where name entry is) grants LOOKUP_LOCK.
1753          */
1754         MDS_INODELOCK_PERM      = 0x000010,
1755         MDS_INODELOCK_XATTR     = 0x000020, /* non-permission extended attrs */
1756         MDS_INODELOCK_DOM       = 0x000040, /* Data for Data-on-MDT files */
1757         /* Do not forget to increase MDS_INODELOCK_NUMBITS when adding bits */
1758 };
1759 #define MDS_INODELOCK_NUMBITS 7
1760 /* This FULL lock is useful to take on unlink sort of operations */
1761 #define MDS_INODELOCK_FULL ((1 << MDS_INODELOCK_NUMBITS) - 1)
1762 /* DOM lock shouldn't be canceled early, use this macro for ELC */
1763 #define MDS_INODELOCK_ELC (MDS_INODELOCK_FULL & ~MDS_INODELOCK_DOM)
1764
1765 /* NOTE: until Lustre 1.8.7/2.1.1 the fid_ver() was packed into name[2],
1766  * but was moved into name[1] along with the OID to avoid consuming the
1767  * name[2,3] fields that need to be used for the quota id (also a FID). */
1768 enum {
1769         LUSTRE_RES_ID_SEQ_OFF = 0,
1770         LUSTRE_RES_ID_VER_OID_OFF = 1,
1771         LUSTRE_RES_ID_WAS_VER_OFF = 2, /* see note above */
1772         LUSTRE_RES_ID_QUOTA_SEQ_OFF = 2,
1773         LUSTRE_RES_ID_QUOTA_VER_OID_OFF = 3,
1774         LUSTRE_RES_ID_HSH_OFF = 3
1775 };
1776
1777 #define MDS_STATUS_CONN 1
1778 #define MDS_STATUS_LOV 2
1779
1780 enum {
1781         /* these should be identical to their EXT4_*_FL counterparts, they are
1782          * redefined here only to avoid dragging in fs/ext4/ext4.h */
1783         LUSTRE_SYNC_FL          = 0x00000008, /* Synchronous updates */
1784         LUSTRE_IMMUTABLE_FL     = 0x00000010, /* Immutable file */
1785         LUSTRE_APPEND_FL        = 0x00000020, /* file writes may only append */
1786         LUSTRE_NODUMP_FL        = 0x00000040, /* do not dump file */
1787         LUSTRE_NOATIME_FL       = 0x00000080, /* do not update atime */
1788         LUSTRE_INDEX_FL         = 0x00001000, /* hash-indexed directory */
1789         LUSTRE_DIRSYNC_FL       = 0x00010000, /* dirsync behaviour (dir only) */
1790         LUSTRE_TOPDIR_FL        = 0x00020000, /* Top of directory hierarchies*/
1791         LUSTRE_INLINE_DATA_FL   = 0x10000000, /* Inode has inline data. */
1792         LUSTRE_PROJINHERIT_FL   = 0x20000000, /* Create with parents projid */
1793
1794         /* These flags will not be identical to any EXT4_*_FL counterparts,
1795          * and only reserved for lustre purpose. Note: these flags might
1796          * be conflict with some of EXT4 flags, so
1797          * 1. these conflict flags needs to be removed when the flag is
1798          * wired by la_flags see osd_attr_get().
1799          * 2. If these flags needs to be stored into inode, they will be
1800          * stored in LMA. see LMAI_XXXX */
1801         LUSTRE_ORPHAN_FL        = 0x00002000,
1802         LUSTRE_SET_SYNC_FL      = 0x00040000, /* Synchronous setattr on OSTs */
1803         LUSTRE_ENCRYPT_FL       = 0x00800000, /* encrypted file */
1804
1805         LUSTRE_LMA_FL_MASKS     = LUSTRE_ENCRYPT_FL | LUSTRE_ORPHAN_FL,
1806 };
1807
1808 #ifndef FS_XFLAG_SYNC
1809 #define FS_XFLAG_SYNC           0x00000020      /* all writes synchronous */
1810 #endif
1811 #ifndef FS_XFLAG_NOATIME
1812 #define FS_XFLAG_NOATIME        0x00000040      /* do not update access time */
1813 #endif
1814 #ifndef FS_XFLAG_IMMUTABLE
1815 #define FS_XFLAG_IMMUTABLE      0x00000008      /* file cannot be modified */
1816 #endif
1817 #ifndef FS_XFLAG_APPEND
1818 #define FS_XFLAG_APPEND         0x00000010      /* all writes append */
1819 #endif
1820 #ifndef FS_XFLAG_PROJINHERIT
1821 #define FS_XFLAG_PROJINHERIT    0x00000200      /* create with parents projid */
1822 #endif
1823
1824 /* 64 possible states */
1825 enum md_transient_state {
1826         MS_RESTORE      = (1 << 0),     /* restore is running */
1827 };
1828
1829 struct mdt_body {
1830         struct lu_fid mbo_fid1;
1831         struct lu_fid mbo_fid2;
1832         struct lustre_handle mbo_open_handle;
1833         __u64   mbo_valid;
1834         __u64   mbo_size; /* Offset, in the case of MDS_READPAGE */
1835         __s64   mbo_mtime;
1836         __s64   mbo_atime;
1837         __s64   mbo_ctime;
1838         __u64   mbo_blocks; /* XID, in the case of MDS_READPAGE */
1839         __u64   mbo_version; /* was mbo_ioepoch before 2.11 */
1840         __u64   mbo_t_state; /* transient file state defined in
1841                               * enum md_transient_state
1842                               * was "ino" until 2.4.0 */
1843         __u32   mbo_fsuid;
1844         __u32   mbo_fsgid;
1845         __u32   mbo_capability;
1846         __u32   mbo_mode;
1847         __u32   mbo_uid;
1848         __u32   mbo_gid;
1849         __u32   mbo_flags; /* most replies: LUSTRE_*_FL file attributes,
1850                             * data_version: OBD_FL_* flags
1851                             */
1852         __u32   mbo_rdev;
1853         __u32   mbo_nlink; /* #bytes to read in the case of MDS_READPAGE */
1854         __u32   mbo_layout_gen; /* was "generation" until 2.4.0 */
1855         __u32   mbo_suppgid;
1856         __u32   mbo_eadatasize;
1857         __u32   mbo_aclsize;
1858         __u32   mbo_max_mdsize;
1859         __u32   mbo_unused3; /* was max_cookiesize until 2.8 */
1860         __u32   mbo_uid_h; /* high 32-bits of uid, for FUID */
1861         __u32   mbo_gid_h; /* high 32-bits of gid, for FUID */
1862         __u32   mbo_projid;
1863         __u64   mbo_dom_size; /* size of DOM component */
1864         __u64   mbo_dom_blocks; /* blocks consumed by DOM component */
1865         __u64   mbo_btime;
1866         __u64   mbo_padding_9; /* also fix lustre_swab_mdt_body */
1867         __u64   mbo_padding_10;
1868 }; /* 216 */
1869
1870 struct mdt_ioepoch {
1871         struct lustre_handle mio_open_handle;
1872         __u64 mio_unused1; /* was ioepoch */
1873         __u32 mio_unused2; /* was flags */
1874         __u32 mio_padding;
1875 };
1876
1877 /* permissions for md_perm.mp_perm */
1878 enum {
1879         CFS_SETUID_PERM = 0x01,
1880         CFS_SETGID_PERM = 0x02,
1881         CFS_SETGRP_PERM = 0x04,
1882 };
1883
1884 struct mdt_rec_setattr {
1885         __u32           sa_opcode;
1886         __u32           sa_cap;
1887         __u32           sa_fsuid;
1888         __u32           sa_fsuid_h;
1889         __u32           sa_fsgid;
1890         __u32           sa_fsgid_h;
1891         __u32           sa_suppgid;
1892         __u32           sa_suppgid_h;
1893         __u32           sa_padding_1;
1894         __u32           sa_padding_1_h;
1895         struct lu_fid   sa_fid;
1896         __u64           sa_valid;
1897         __u32           sa_uid;
1898         __u32           sa_gid;
1899         __u64           sa_size;
1900         __u64           sa_blocks;
1901         __s64           sa_mtime;
1902         __s64           sa_atime;
1903         __s64           sa_ctime;
1904         __u32           sa_attr_flags;
1905         __u32           sa_mode;
1906         __u32           sa_bias;      /* some operation flags */
1907         __u32           sa_projid;
1908         __u32           sa_padding_4;
1909         __u32           sa_padding_5;
1910 };
1911
1912 /*
1913  * Attribute flags used in mdt_rec_setattr::sa_valid.
1914  * The kernel's #defines for ATTR_* should not be used over the network
1915  * since the client and MDS may run different kernels (see bug 13828)
1916  * Therefore, we should only use MDS_ATTR_* attributes for sa_valid.
1917  */
1918 enum mds_attr_flags {
1919         MDS_ATTR_MODE =               0x1ULL, /* = 1 */
1920         MDS_ATTR_UID =                0x2ULL, /* = 2 */
1921         MDS_ATTR_GID =                0x4ULL, /* = 4 */
1922         MDS_ATTR_SIZE =               0x8ULL, /* = 8 */
1923         MDS_ATTR_ATIME =             0x10ULL, /* = 16 */
1924         MDS_ATTR_MTIME =             0x20ULL, /* = 32 */
1925         MDS_ATTR_CTIME =             0x40ULL, /* = 64 */
1926         MDS_ATTR_ATIME_SET =         0x80ULL, /* = 128 */
1927         MDS_ATTR_MTIME_SET =        0x100ULL, /* = 256 */
1928         MDS_ATTR_FORCE =            0x200ULL, /* = 512, change it */
1929         MDS_ATTR_ATTR_FLAG =        0x400ULL, /* = 1024 */
1930         MDS_ATTR_KILL_SUID =        0x800ULL, /* = 2048 */
1931         MDS_ATTR_KILL_SGID =       0x1000ULL, /* = 4096 */
1932         MDS_ATTR_CTIME_SET =       0x2000ULL, /* = 8192 */
1933         MDS_ATTR_FROM_OPEN =       0x4000ULL, /* = 16384, from open O_TRUNC */
1934         MDS_ATTR_BLOCKS =          0x8000ULL, /* = 32768 */
1935         MDS_ATTR_PROJID =         0x10000ULL, /* = 65536 */
1936         MDS_ATTR_LSIZE =          0x20000ULL, /* = 131072 */
1937         MDS_ATTR_LBLOCKS =        0x40000ULL, /* = 262144 */
1938         MDS_ATTR_OVERRIDE =     0x2000000ULL, /* = 33554432 */
1939 };
1940
1941 enum mds_op_bias {
1942 /*      MDS_CHECK_SPLIT         = 1 << 0, obsolete before 2.3.58 */
1943         /* used for remote object getattr/open by name: in the original
1944          * getattr/open request, MDT found the object against name is on another
1945          * MDT, then packed FID and LOOKUP lock in reply and returned -EREMOTE,
1946          * and client knew it's a remote object, then set this flag in
1947          * getattr/open request and sent to the corresponding MDT to finish
1948          * getattr/open, which fetched attributes and UPDATE lock/opened file.
1949          */
1950         MDS_CROSS_REF           = 1 << 1,
1951 /*      MDS_VTX_BYPASS          = 1 << 2, obsolete since 2.3.54 */
1952         MDS_PERM_BYPASS         = 1 << 3,
1953 /*      MDS_SOM                 = 1 << 4, obsolete since 2.8.0 */
1954         MDS_QUOTA_IGNORE        = 1 << 5,
1955 /*      MDS_CLOSE_CLEANUP       = 1 << 6, obsolete since 2.3.51 */
1956         MDS_KEEP_ORPHAN         = 1 << 7,
1957         MDS_RECOV_OPEN          = 1 << 8,
1958         MDS_DATA_MODIFIED       = 1 << 9,
1959         MDS_CREATE_VOLATILE     = 1 << 10,
1960         MDS_OWNEROVERRIDE       = 1 << 11,
1961         MDS_HSM_RELEASE         = 1 << 12,
1962         MDS_CLOSE_MIGRATE       = 1 << 13,
1963         MDS_CLOSE_LAYOUT_SWAP   = 1 << 14,
1964         MDS_CLOSE_LAYOUT_MERGE  = 1 << 15,
1965         MDS_CLOSE_RESYNC_DONE   = 1 << 16,
1966         MDS_CLOSE_LAYOUT_SPLIT  = 1 << 17,
1967         MDS_TRUNC_KEEP_LEASE    = 1 << 18,
1968         MDS_PCC_ATTACH          = 1 << 19,
1969         MDS_CLOSE_UPDATE_TIMES  = 1 << 20,
1970         /* setstripe create only, don't restripe if target exists */
1971         MDS_SETSTRIPE_CREATE    = 1 << 21,
1972         MDS_FID_OP              = 1 << 22,
1973         /* migrate dirent only */
1974         MDS_MIGRATE_NSONLY      = 1 << 23,
1975 };
1976
1977 #define MDS_CLOSE_INTENT (MDS_HSM_RELEASE | MDS_CLOSE_LAYOUT_SWAP |         \
1978                           MDS_CLOSE_LAYOUT_MERGE | MDS_CLOSE_LAYOUT_SPLIT | \
1979                           MDS_CLOSE_RESYNC_DONE)
1980
1981 /* instance of mdt_reint_rec */
1982 struct mdt_rec_create {
1983         __u32           cr_opcode;
1984         __u32           cr_cap;
1985         __u32           cr_fsuid;
1986         __u32           cr_fsuid_h;
1987         __u32           cr_fsgid;
1988         __u32           cr_fsgid_h;
1989         __u32           cr_suppgid1;
1990         __u32           cr_suppgid1_h;
1991         __u32           cr_suppgid2;
1992         __u32           cr_suppgid2_h;
1993         struct lu_fid   cr_fid1;
1994         struct lu_fid   cr_fid2;
1995         struct lustre_handle cr_open_handle_old; /* in case of open replay */
1996         __s64           cr_time;
1997         union {
1998                 __u64           cr_rdev;
1999                 __u32           cr_archive_id;
2000         };
2001         __u64           cr_ioepoch;
2002         __u64           cr_padding_1;   /* rr_blocks */
2003         __u32           cr_mode;
2004         __u32           cr_bias;
2005         /* use of helpers set/get_mrc_cr_flags() is needed to access
2006          * 64 bits cr_flags [cr_flags_l, cr_flags_h], this is done to
2007          * extend cr_flags size without breaking 1.8 compat */
2008         __u32           cr_flags_l;     /* for use with open, low  32 bits  */
2009         __u32           cr_flags_h;     /* for use with open, high 32 bits */
2010         __u32           cr_umask;       /* umask for create */
2011         __u32           cr_padding_4;   /* rr_padding_4 */
2012 };
2013
2014 /* instance of mdt_reint_rec */
2015 struct mdt_rec_link {
2016         __u32           lk_opcode;
2017         __u32           lk_cap;
2018         __u32           lk_fsuid;
2019         __u32           lk_fsuid_h;
2020         __u32           lk_fsgid;
2021         __u32           lk_fsgid_h;
2022         __u32           lk_suppgid1;
2023         __u32           lk_suppgid1_h;
2024         __u32           lk_suppgid2;
2025         __u32           lk_suppgid2_h;
2026         struct lu_fid   lk_fid1;
2027         struct lu_fid   lk_fid2;
2028         __s64           lk_time;
2029         __u64           lk_padding_1;   /* rr_atime */
2030         __u64           lk_padding_2;   /* rr_ctime */
2031         __u64           lk_padding_3;   /* rr_size */
2032         __u64           lk_padding_4;   /* rr_blocks */
2033         __u32           lk_bias;
2034         __u32           lk_padding_5;   /* rr_mode */
2035         __u32           lk_padding_6;   /* rr_flags */
2036         __u32           lk_padding_7;   /* rr_padding_2 */
2037         __u32           lk_padding_8;   /* rr_padding_3 */
2038         __u32           lk_padding_9;   /* rr_padding_4 */
2039 };
2040
2041 /* instance of mdt_reint_rec */
2042 struct mdt_rec_unlink {
2043         __u32           ul_opcode;
2044         __u32           ul_cap;
2045         __u32           ul_fsuid;
2046         __u32           ul_fsuid_h;
2047         __u32           ul_fsgid;
2048         __u32           ul_fsgid_h;
2049         __u32           ul_suppgid1;
2050         __u32           ul_suppgid1_h;
2051         __u32           ul_suppgid2;
2052         __u32           ul_suppgid2_h;
2053         struct lu_fid   ul_fid1;
2054         struct lu_fid   ul_fid2;
2055         __s64           ul_time;
2056         __u64           ul_padding_2;   /* rr_atime */
2057         __u64           ul_padding_3;   /* rr_ctime */
2058         __u64           ul_padding_4;   /* rr_size */
2059         __u64           ul_padding_5;   /* rr_blocks */
2060         __u32           ul_bias;
2061         __u32           ul_mode;
2062         __u32           ul_padding_6;   /* rr_flags */
2063         __u32           ul_padding_7;   /* rr_padding_2 */
2064         __u32           ul_padding_8;   /* rr_padding_3 */
2065         __u32           ul_padding_9;   /* rr_padding_4 */
2066 };
2067
2068 /* instance of mdt_reint_rec */
2069 struct mdt_rec_rename {
2070         __u32           rn_opcode;
2071         __u32           rn_cap;
2072         __u32           rn_fsuid;
2073         __u32           rn_fsuid_h;
2074         __u32           rn_fsgid;
2075         __u32           rn_fsgid_h;
2076         __u32           rn_suppgid1;
2077         __u32           rn_suppgid1_h;
2078         __u32           rn_suppgid2;
2079         __u32           rn_suppgid2_h;
2080         struct lu_fid   rn_fid1;
2081         struct lu_fid   rn_fid2;
2082         __s64           rn_time;
2083         __u64           rn_padding_1;   /* rr_atime */
2084         __u64           rn_padding_2;   /* rr_ctime */
2085         __u64           rn_padding_3;   /* rr_size */
2086         __u64           rn_padding_4;   /* rr_blocks */
2087         __u32           rn_bias;        /* some operation flags */
2088         __u32           rn_mode;        /* cross-ref rename has mode */
2089         __u32           rn_padding_5;   /* rr_flags */
2090         __u32           rn_padding_6;   /* rr_padding_2 */
2091         __u32           rn_padding_7;   /* rr_padding_3 */
2092         __u32           rn_padding_8;   /* rr_padding_4 */
2093 };
2094
2095 /* instance of mdt_reint_rec */
2096 struct mdt_rec_setxattr {
2097         __u32           sx_opcode;
2098         __u32           sx_cap;
2099         __u32           sx_fsuid;
2100         __u32           sx_fsuid_h;
2101         __u32           sx_fsgid;
2102         __u32           sx_fsgid_h;
2103         __u32           sx_suppgid1;
2104         __u32           sx_suppgid1_h;
2105         __u32           sx_suppgid2;
2106         __u32           sx_suppgid2_h;
2107         struct lu_fid   sx_fid;
2108         __u64           sx_padding_1;   /* These three are rr_fid2 */
2109         __u32           sx_padding_2;
2110         __u32           sx_padding_3;
2111         __u64           sx_valid;
2112         __s64           sx_time;
2113         __u64           sx_padding_5;   /* rr_ctime */
2114         __u64           sx_padding_6;   /* rr_size */
2115         __u64           sx_padding_7;   /* rr_blocks */
2116         __u32           sx_size;
2117         __u32           sx_flags;
2118         __u32           sx_padding_8;   /* rr_flags */
2119         __u32           sx_padding_9;   /* rr_padding_2 */
2120         __u32           sx_padding_10;  /* rr_padding_3 */
2121         __u32           sx_padding_11;  /* rr_padding_4 */
2122 };
2123
2124 /* instance of mdt_reint_rec
2125  * FLR: for file resync MDS_REINT_RESYNC RPC. */
2126 struct mdt_rec_resync {
2127         __u32           rs_opcode;
2128         __u32           rs_cap;
2129         __u32           rs_fsuid;
2130         __u32           rs_fsuid_h;
2131         __u32           rs_fsgid;
2132         __u32           rs_fsgid_h;
2133         __u32           rs_suppgid1;
2134         __u32           rs_suppgid1_h;
2135         __u32           rs_suppgid2;
2136         __u32           rs_suppgid2_h;
2137         struct lu_fid   rs_fid;
2138         __u8            rs_padding0[sizeof(struct lu_fid)];
2139         struct lustre_handle rs_lease_handle;   /* rr_mtime */
2140         __s64           rs_padding1;    /* rr_atime */
2141         __s64           rs_padding2;    /* rr_ctime */
2142         __u64           rs_padding3;    /* rr_size */
2143         __u64           rs_padding4;    /* rr_blocks */
2144         __u32           rs_bias;
2145         __u32           rs_padding5;    /* rr_mode */
2146         __u32           rs_padding6;    /* rr_flags */
2147         __u32           rs_padding7;    /* rr_flags_h */
2148         __u32           rs_padding8;    /* rr_umask */
2149         __u16           rs_mirror_id;
2150         __u16           rs_padding9;    /* rr_padding_4 */
2151 };
2152
2153 /*
2154  * mdt_rec_reint is the template for all mdt_reint_xxx structures.
2155  * Do NOT change the size of various members, otherwise the value
2156  * will be broken in lustre_swab_mdt_rec_reint().
2157  *
2158  * If you add new members in other mdt_reint_xxx structres and need to use the
2159  * rr_padding_x fields, then update lustre_swab_mdt_rec_reint() also.
2160  */
2161 struct mdt_rec_reint {
2162         __u32           rr_opcode;
2163         __u32           rr_cap;
2164         __u32           rr_fsuid;
2165         __u32           rr_fsuid_h;
2166         __u32           rr_fsgid;
2167         __u32           rr_fsgid_h;
2168         __u32           rr_suppgid1;
2169         __u32           rr_suppgid1_h;
2170         __u32           rr_suppgid2;
2171         __u32           rr_suppgid2_h;
2172         struct lu_fid   rr_fid1;
2173         struct lu_fid   rr_fid2;
2174         __s64           rr_mtime;
2175         __s64           rr_atime;
2176         __s64           rr_ctime;
2177         __u64           rr_size;
2178         __u64           rr_blocks;
2179         __u32           rr_bias;
2180         __u32           rr_mode;
2181         __u32           rr_flags;
2182         __u32           rr_flags_h;
2183         __u32           rr_umask;
2184         __u16           rr_mirror_id;
2185         __u16           rr_padding_4; /* also fix lustre_swab_mdt_rec_reint */
2186 };
2187
2188 #define LMV_DESC_QOS_MAXAGE_DEFAULT 60  /* Seconds */
2189
2190 /* lmv structures */
2191 struct lmv_desc {
2192         __u32 ld_tgt_count;             /* how many MDS's */
2193         __u32 ld_active_tgt_count;      /* how many active */
2194         __u32 ld_default_stripe_count;  /* how many objects are used */
2195         __u32 ld_pattern;               /* default hash pattern */
2196         __u64 ld_default_hash_size;
2197         __u64 ld_padding_1;             /* also fix lustre_swab_lmv_desc */
2198         __u32 ld_padding_2;             /* also fix lustre_swab_lmv_desc */
2199         __u32 ld_qos_maxage;            /* in second */
2200         __u32 ld_padding_3;             /* also fix lustre_swab_lmv_desc */
2201         __u32 ld_padding_4;             /* also fix lustre_swab_lmv_desc */
2202         struct obd_uuid ld_uuid;
2203 };
2204
2205 /* LMV layout EA, and it will be stored both in master and slave object */
2206 struct lmv_mds_md_v1 {
2207         __u32 lmv_magic;
2208         __u32 lmv_stripe_count;
2209         __u32 lmv_master_mdt_index;     /* On master object, it is master
2210                                          * MDT index, on slave object, it
2211                                          * is stripe index of the slave obj */
2212         __u32 lmv_hash_type;            /* dir stripe policy, i.e. indicate
2213                                          * which hash function to be used,
2214                                          * Note: only lower 16 bits is being
2215                                          * used for now. Higher 16 bits will
2216                                          * be used to mark the object status,
2217                                          * for example migrating or dead. */
2218         __u32 lmv_layout_version;       /* increased each time layout changed,
2219                                          * by directory migration, restripe
2220                                          * and LFSCK. */
2221         __u32 lmv_migrate_offset;       /* once this is set, it means this
2222                                          * directory is been migrated, stripes
2223                                          * before this offset belong to target,
2224                                          * from this to source. */
2225         __u32 lmv_migrate_hash;         /* hash type of source stripes of
2226                                          * migrating directory */
2227         __u32 lmv_padding2;
2228         __u64 lmv_padding3;
2229         char lmv_pool_name[LOV_MAXPOOLNAME + 1];        /* pool name */
2230         struct lu_fid lmv_stripe_fids[0];       /* FIDs for each stripe */
2231 };
2232
2233 /* stripe count before directory split */
2234 #define lmv_split_offset        lmv_migrate_offset
2235 /* stripe count after directory merge */
2236 #define lmv_merge_offset        lmv_migrate_offset
2237 /* directory hash type after merge */
2238 #define lmv_merge_hash          lmv_migrate_hash
2239
2240 /* foreign LMV EA */
2241 struct lmv_foreign_md {
2242         __u32 lfm_magic;        /* magic number = LMV_MAGIC_FOREIGN */
2243         __u32 lfm_length;       /* length of lfm_value */
2244         __u32 lfm_type;         /* type, see LU_FOREIGN_TYPE_ */
2245         __u32 lfm_flags;        /* flags, type specific */
2246         char lfm_value[];       /* free format value */
2247 };
2248
2249 #define LMV_MAGIC_V1    0x0CD20CD0    /* normal stripe lmv magic */
2250 #define LMV_MAGIC       LMV_MAGIC_V1
2251
2252 /* #define LMV_USER_MAGIC 0x0CD30CD0 */
2253 #define LMV_MAGIC_STRIPE 0x0CD40CD0 /* magic for dir sub_stripe */
2254 #define LMV_MAGIC_FOREIGN 0x0CD50CD0 /* magic for lmv foreign */
2255
2256 /**
2257  * The FNV-1a hash algorithm is as follows:
2258  *      hash = FNV_offset_basis
2259  *      for each octet_of_data to be hashed
2260  *              hash = hash XOR octet_of_data
2261  *              hash = hash Ã— FNV_prime
2262  *      return hash
2263  * http://en.wikipedia.org/wiki/Fowler–Noll–Vo_hash_function#FNV-1a_hash
2264  *
2265  * http://www.isthe.com/chongo/tech/comp/fnv/index.html#FNV-reference-source
2266  * FNV_prime is 2^40 + 2^8 + 0xb3 = 0x100000001b3ULL
2267  **/
2268 #define LUSTRE_FNV_1A_64_PRIME  0x100000001b3ULL
2269 #define LUSTRE_FNV_1A_64_OFFSET_BIAS 0xcbf29ce484222325ULL
2270 static inline __u64 lustre_hash_fnv_1a_64(const void *buf, __kernel_size_t size)
2271 {
2272         __u64 hash = LUSTRE_FNV_1A_64_OFFSET_BIAS;
2273         const unsigned char *p = buf;
2274         __kernel_size_t i;
2275
2276         for (i = 0; i < size; i++) {
2277                 hash ^= p[i];
2278                 hash *= LUSTRE_FNV_1A_64_PRIME;
2279         }
2280
2281         return hash;
2282 }
2283
2284 /* CRUSH placement group count */
2285 #define LMV_CRUSH_PG_COUNT      4096
2286
2287 union lmv_mds_md {
2288         __u32                    lmv_magic;
2289         struct lmv_mds_md_v1     lmv_md_v1;
2290         struct lmv_user_md       lmv_user_md;
2291         struct lmv_foreign_md    lmv_foreign_md;
2292 };
2293
2294 static inline __kernel_ssize_t lmv_mds_md_size(int stripe_count,
2295                                                unsigned int lmm_magic)
2296 {
2297         __kernel_ssize_t len = -EINVAL;
2298
2299         switch (lmm_magic) {
2300         case LMV_MAGIC_V1: {
2301                 struct lmv_mds_md_v1 *lmm1;
2302
2303                 len = sizeof(*lmm1);
2304                 len += stripe_count * sizeof(lmm1->lmv_stripe_fids[0]);
2305                 break; }
2306         default:
2307                 break;
2308         }
2309         return len;
2310 }
2311
2312 static inline int lmv_mds_md_stripe_count_get(const union lmv_mds_md *lmm)
2313 {
2314         switch (__le32_to_cpu(lmm->lmv_magic)) {
2315         case LMV_MAGIC_V1:
2316                 return __le32_to_cpu(lmm->lmv_md_v1.lmv_stripe_count);
2317         case LMV_USER_MAGIC:
2318                 return __le32_to_cpu(lmm->lmv_user_md.lum_stripe_count);
2319         default:
2320                 return -EINVAL;
2321         }
2322 }
2323
2324 static inline int lmv_mds_md_hash_type_get(const union lmv_mds_md *lmm)
2325 {
2326         switch (__le32_to_cpu(lmm->lmv_magic)) {
2327         case LMV_MAGIC_V1:
2328                 return __le32_to_cpu(lmm->lmv_md_v1.lmv_hash_type);
2329         case LMV_USER_MAGIC:
2330                 return __le32_to_cpu(lmm->lmv_user_md.lum_hash_type);
2331         default:
2332                 return -EINVAL;
2333         }
2334 }
2335
2336 enum fld_rpc_opc {
2337         FLD_QUERY       = 900,
2338         FLD_READ        = 901,
2339         FLD_LAST_OPC,
2340         FLD_FIRST_OPC   = FLD_QUERY
2341 };
2342
2343 enum seq_rpc_opc {
2344         SEQ_QUERY                       = 700,
2345         SEQ_LAST_OPC,
2346         SEQ_FIRST_OPC                   = SEQ_QUERY
2347 };
2348
2349 enum seq_op {
2350         SEQ_ALLOC_SUPER = 0,
2351         SEQ_ALLOC_META = 1
2352 };
2353
2354 enum fld_op {
2355         FLD_CREATE = 0,
2356         FLD_DELETE = 1,
2357         FLD_LOOKUP = 2,
2358 };
2359
2360 /* LFSCK opcodes */
2361 enum lfsck_cmd {
2362         LFSCK_NOTIFY            = 1101,
2363         LFSCK_QUERY             = 1102,
2364         LFSCK_LAST_OPC,
2365         LFSCK_FIRST_OPC         = LFSCK_NOTIFY
2366 };
2367
2368 /*
2369  *  LOV data structures
2370  */
2371
2372 #define LOV_MAX_UUID_BUFFER_SIZE  8192
2373 /* The size of the buffer the lov/mdc reserves for the
2374  * array of UUIDs returned by the MDS.  With the current
2375  * protocol, this will limit the max number of OSTs per LOV */
2376
2377 #define LOV_DESC_MAGIC 0xB0CCDE5C
2378 #define LOV_DESC_QOS_MAXAGE_DEFAULT 5  /* Seconds */
2379 #define LOV_DESC_STRIPE_SIZE_DEFAULT (1 << LNET_MTU_BITS)
2380
2381 /* LOV settings descriptor (should only contain static info) */
2382 struct lov_desc {
2383         __u32 ld_tgt_count;             /* how many OBD's */
2384         __u32 ld_active_tgt_count;      /* how many active */
2385         __s32 ld_default_stripe_count;  /* how many objects are used */
2386         __u32 ld_pattern;               /* default PATTERN_RAID0 */
2387         __u64 ld_default_stripe_size;   /* in bytes */
2388         __s64 ld_default_stripe_offset; /* starting OST index */
2389         __u32 ld_padding_0;             /* unused */
2390         __u32 ld_qos_maxage;            /* in second */
2391         __u32 ld_padding_1;             /* also fix lustre_swab_lov_desc */
2392         __u32 ld_padding_2;             /* also fix lustre_swab_lov_desc */
2393         struct obd_uuid ld_uuid;
2394 };
2395
2396 #define ld_magic ld_active_tgt_count       /* for swabbing from llogs */
2397
2398 /*
2399  *   LDLM requests:
2400  */
2401 /* opcodes -- MUST be distinct from OST/MDS opcodes */
2402 enum ldlm_cmd {
2403         LDLM_ENQUEUE     = 101,
2404         LDLM_CONVERT     = 102,
2405         LDLM_CANCEL      = 103,
2406         LDLM_BL_CALLBACK = 104,
2407         LDLM_CP_CALLBACK = 105,
2408         LDLM_GL_CALLBACK = 106,
2409         LDLM_SET_INFO    = 107,
2410         LDLM_LAST_OPC
2411 };
2412 #define LDLM_FIRST_OPC LDLM_ENQUEUE
2413
2414 #define RES_NAME_SIZE 4
2415 struct ldlm_res_id {
2416         __u64 name[RES_NAME_SIZE];
2417 };
2418
2419 #define DLDLMRES        "[%#llx:%#llx:%#llx].%#llx"
2420 #define PLDLMRES(res)   (unsigned long long)(res)->lr_name.name[0],     \
2421                         (unsigned long long)(res)->lr_name.name[1],     \
2422                         (unsigned long long)(res)->lr_name.name[2],     \
2423                         (unsigned long long)(res)->lr_name.name[3]
2424
2425 /* lock types */
2426 enum ldlm_mode {
2427         LCK_MINMODE     = 0,
2428         LCK_EX          = 1,
2429         LCK_PW          = 2,
2430         LCK_PR          = 4,
2431         LCK_CW          = 8,
2432         LCK_CR          = 16,
2433         LCK_NL          = 32,
2434         LCK_GROUP       = 64,
2435         LCK_COS         = 128,
2436         LCK_MAXMODE
2437 };
2438
2439 #define LCK_MODE_NUM    8
2440
2441 enum ldlm_type {
2442         LDLM_PLAIN      = 10,
2443         LDLM_EXTENT     = 11,
2444         LDLM_FLOCK      = 12,
2445         LDLM_IBITS      = 13,
2446         LDLM_MAX_TYPE
2447 };
2448
2449 #define LDLM_MIN_TYPE LDLM_PLAIN
2450
2451 struct ldlm_extent {
2452         __u64 start;
2453         __u64 end;
2454         __u64 gid;
2455 };
2456
2457 static inline bool ldlm_extent_equal(const struct ldlm_extent *ex1,
2458                                     const struct ldlm_extent *ex2)
2459 {
2460         return ex1->start == ex2->start && ex1->end == ex2->end;
2461 }
2462
2463 struct ldlm_inodebits {
2464         __u64 bits;
2465         union {
2466                 __u64 try_bits; /* optional bits to try */
2467                 __u64 cancel_bits; /* for lock convert */
2468         };
2469         __u64 li_gid;
2470 };
2471
2472 struct ldlm_flock_wire {
2473         __u64 lfw_start;
2474         __u64 lfw_end;
2475         __u64 lfw_owner;
2476         __u32 lfw_padding;
2477         __u32 lfw_pid;
2478 };
2479
2480 /* it's important that the fields of the ldlm_extent structure match
2481  * the first fields of the ldlm_flock structure because there is only
2482  * one ldlm_swab routine to process the ldlm_policy_data_t union. if
2483  * this ever changes we will need to swab the union differently based
2484  * on the resource type. */
2485
2486 union ldlm_wire_policy_data {
2487         struct ldlm_extent      l_extent;
2488         struct ldlm_flock_wire  l_flock;
2489         struct ldlm_inodebits   l_inodebits;
2490 };
2491
2492 struct barrier_lvb {
2493         __u32   lvb_status;
2494         __u32   lvb_index;
2495         __u64   lvb_padding;
2496 };
2497
2498 struct ldlm_gl_barrier_desc {
2499         __u32   lgbd_status;
2500         __u32   lgbd_timeout;
2501         __u64   lgbd_padding;
2502 };
2503
2504 union ldlm_gl_desc {
2505         struct ldlm_gl_lquota_desc      lquota_desc;
2506         struct ldlm_gl_barrier_desc     barrier_desc;
2507 };
2508
2509 enum ldlm_intent_flags {
2510         IT_OPEN        = 0x00000001,
2511         IT_CREAT       = 0x00000002,
2512         IT_OPEN_CREAT  = IT_OPEN | IT_CREAT, /* To allow case label. */
2513         IT_READDIR     = 0x00000004, /* Used by mdc, not put on the wire. */
2514         IT_GETATTR     = 0x00000008,
2515         IT_LOOKUP      = 0x00000010,
2516 /*      IT_UNLINK      = 0x00000020, Obsolete. */
2517 /*      IT_TRUNC       = 0x00000040, Obsolete. */
2518         IT_GETXATTR    = 0x00000080,
2519 /*      IT_EXEC        = 0x00000100, Obsolete. */
2520 /*      IT_PIN         = 0x00000200, Obsolete. */
2521         IT_LAYOUT      = 0x00000400,
2522         IT_QUOTA_DQACQ = 0x00000800,
2523         IT_QUOTA_CONN  = 0x00001000,
2524 /*      IT_SETXATTR    = 0x00002000, Obsolete. */
2525         IT_GLIMPSE     = 0x00004000,
2526         IT_BRW         = 0x00008000,
2527 };
2528
2529 struct ldlm_intent {
2530         __u64 opc;
2531 };
2532
2533 struct ldlm_resource_desc {
2534         enum ldlm_type     lr_type;
2535         __u32              lr_pad; /* also fix lustre_swab_ldlm_resource_desc */
2536         struct ldlm_res_id lr_name;
2537 };
2538
2539 struct ldlm_lock_desc {
2540         struct ldlm_resource_desc l_resource;
2541         enum ldlm_mode l_req_mode;
2542         enum ldlm_mode l_granted_mode;
2543         union ldlm_wire_policy_data l_policy_data;
2544 };
2545
2546 #define LDLM_LOCKREQ_HANDLES 2
2547 #define LDLM_ENQUEUE_CANCEL_OFF 1
2548
2549 struct ldlm_request {
2550         __u32 lock_flags;               /* LDLM_FL_*, see lustre_dlm_flags.h */
2551         __u32 lock_count;               /* number of locks in lock_handle[] */
2552         struct ldlm_lock_desc lock_desc;/* lock descriptor */
2553         struct lustre_handle lock_handle[LDLM_LOCKREQ_HANDLES];
2554 };
2555
2556 struct ldlm_reply {
2557         __u32 lock_flags;
2558         __u32 lock_padding;     /* also fix lustre_swab_ldlm_reply */
2559         struct ldlm_lock_desc lock_desc;
2560         struct lustre_handle lock_handle;
2561         __u64  lock_policy_res1;
2562         __u64  lock_policy_res2;
2563 };
2564
2565 #define ldlm_flags_to_wire(flags)    ((__u32)(flags))
2566 #define ldlm_flags_from_wire(flags)  ((__u64)(flags))
2567
2568 /*
2569  * Opcodes for mountconf (mgs and mgc)
2570  */
2571 enum mgs_cmd {
2572         MGS_CONNECT     = 250,
2573         MGS_DISCONNECT  = 251,
2574         MGS_EXCEPTION   = 252,  /* node died, etc. */
2575         MGS_TARGET_REG  = 253,  /* whenever target starts up */
2576         MGS_TARGET_DEL  = 254,
2577         MGS_SET_INFO    = 255,
2578         MGS_CONFIG_READ = 256,
2579         MGS_LAST_OPC,
2580         MGS_FIRST_OPC   = MGS_CONNECT
2581 };
2582
2583 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 18, 53, 0)
2584 #define MGS_PARAM_MAXLEN 1024
2585 #define KEY_SET_INFO "set_info"
2586
2587 struct mgs_send_param {
2588         char            mgs_param[MGS_PARAM_MAXLEN];
2589 };
2590 #endif
2591
2592 /* We pass this info to the MGS so it can write config logs */
2593 #define MTI_NAME_MAXLEN  64
2594 #define MTI_PARAM_MAXLEN 4096
2595 #define MTI_NIDS_MAX     32
2596 struct mgs_target_info {
2597         __u32           mti_lustre_ver;
2598         __u32           mti_stripe_index;
2599         __u32           mti_config_ver;
2600         __u32           mti_flags;    /* LDD_F_* */
2601         __u32           mti_nid_count;
2602         __u32           mti_instance; /* Running instance of target */
2603         char            mti_fsname[MTI_NAME_MAXLEN];
2604         char            mti_svname[MTI_NAME_MAXLEN];
2605         char            mti_uuid[sizeof(struct obd_uuid)];
2606         __u64           mti_nids[MTI_NIDS_MAX]; /* host nids (lnet_nid_t) */
2607         char            mti_params[MTI_PARAM_MAXLEN];
2608 };
2609
2610 struct mgs_nidtbl_entry {
2611         __u64           mne_version;    /* table version of this entry */
2612         __u32           mne_instance;   /* target instance # */
2613         __u32           mne_index;      /* target index */
2614         __u32           mne_length;     /* length of this entry - by bytes */
2615         __u8            mne_type;       /* target type LDD_F_SV_TYPE_OST/MDT */
2616         __u8            mne_nid_type;   /* type of nid(mbz). for ipv6. */
2617         __u8            mne_nid_size;   /* size of each NID, by bytes */
2618         __u8            mne_nid_count;  /* # of NIDs in buffer */
2619         union {
2620                 lnet_nid_t nids[0];     /* variable size buffer for NIDs. */
2621         } u;
2622 };
2623
2624 enum mgs_cfg_type {
2625         MGS_CFG_T_CONFIG        = 0,
2626         MGS_CFG_T_SPTLRPC       = 1,
2627         MGS_CFG_T_RECOVER       = 2,
2628         MGS_CFG_T_PARAMS        = 3,
2629         MGS_CFG_T_NODEMAP       = 4,
2630         MGS_CFG_T_BARRIER       = 5,
2631         MGS_CFG_T_MAX
2632 };
2633
2634 struct mgs_config_body {
2635         char     mcb_name[MTI_NAME_MAXLEN]; /* logname */
2636         __u64    mcb_offset;    /* next index of config log to request */
2637         __u16    mcb_type;      /* type of log: MGS_CFG_T_[CONFIG|RECOVER] */
2638         __u8     mcb_nm_cur_pass;
2639         __u8     mcb_bits;      /* bits unit size of config log */
2640         __u32    mcb_units;     /* # of units for bulk transfer */
2641 };
2642
2643 struct mgs_config_res {
2644         __u64    mcr_offset;    /* index of last config log */
2645         union {
2646                 __u64    mcr_size;              /* size of the log */
2647                 __u64    mcr_nm_cur_pass;       /* current nodemap config pass */
2648         };
2649 };
2650
2651 /* Config marker flags (in config log) */
2652 #define CM_START       0x01
2653 #define CM_END         0x02
2654 #define CM_SKIP        0x04
2655 #define CM_UPGRADE146  0x08
2656 #define CM_EXCLUDE     0x10
2657 #define CM_START_SKIP (CM_START | CM_SKIP)
2658
2659 struct cfg_marker {
2660         __u32   cm_step;       /* aka config version */
2661         __u32   cm_flags;
2662         __u32   cm_vers;       /* lustre release version number */
2663         __u32   cm_padding;    /* 64 bit align */
2664         __s64   cm_createtime; /*when this record was first created */
2665         __s64   cm_canceltime; /*when this record is no longer valid*/
2666         char    cm_tgtname[MTI_NAME_MAXLEN];
2667         char    cm_comment[MTI_NAME_MAXLEN];
2668 };
2669
2670 /*
2671  * Opcodes for multiple servers.
2672  */
2673 enum obd_cmd {
2674         OBD_PING        = 400,
2675 /*      OBD_LOG_CANCEL  = 401, obsolete since 1.5 */
2676 /*      OBD_QC_CALLBACK = 402, obsolete since 2.4 */
2677         OBD_IDX_READ    = 403,
2678         OBD_LAST_OPC,
2679         OBD_FIRST_OPC = OBD_PING
2680 };
2681
2682 /**
2683  * llog contexts indices.
2684  *
2685  * There is compatibility problem with indexes below, they are not
2686  * continuous and must keep their numbers for compatibility needs.
2687  * See LU-5218 for details.
2688  */
2689 enum llog_ctxt_id {
2690         LLOG_CONFIG_ORIG_CTXT  =  0,
2691         LLOG_CONFIG_REPL_CTXT = 1,
2692         LLOG_MDS_OST_ORIG_CTXT = 2,
2693         LLOG_MDS_OST_REPL_CTXT = 3, /* kept just to avoid re-assignment */
2694         LLOG_SIZE_ORIG_CTXT = 4,
2695         LLOG_SIZE_REPL_CTXT = 5,
2696         LLOG_TEST_ORIG_CTXT = 8,
2697         LLOG_TEST_REPL_CTXT = 9, /* kept just to avoid re-assignment */
2698         LLOG_CHANGELOG_ORIG_CTXT = 12, /**< changelog generation on mdd */
2699         LLOG_CHANGELOG_REPL_CTXT = 13, /**< changelog access on clients */
2700         /* for multiple changelog consumers */
2701         LLOG_CHANGELOG_USER_ORIG_CTXT = 14,
2702         LLOG_AGENT_ORIG_CTXT = 15, /**< agent requests generation on cdt */
2703         LLOG_UPDATELOG_ORIG_CTXT = 16, /* update log. reserve for the client */
2704         LLOG_UPDATELOG_REPL_CTXT = 17, /* update log. reserve for the client */
2705         LLOG_MAX_CTXTS
2706 };
2707
2708 /** Identifier for a single log object */
2709 struct llog_logid {
2710         struct ost_id           lgl_oi;
2711         __u32                   lgl_ogen;
2712 } __attribute__((packed));
2713
2714 /** Records written to the CATALOGS list */
2715 #define CATLIST "CATALOGS"
2716 struct llog_catid {
2717         struct llog_logid       lci_logid;
2718         __u32                   lci_padding1;
2719         __u32                   lci_padding2;
2720         __u32                   lci_padding3;
2721 } __attribute__((packed));
2722
2723 /* Log data record types - there is no specific reason that these need to
2724  * be related to the RPC opcodes, but no reason not to (may be handy later?)
2725  */
2726 #define LLOG_OP_MAGIC 0x10600000
2727 #define LLOG_OP_MASK  0xfff00000
2728
2729 enum llog_op_type {
2730         LLOG_PAD_MAGIC          = LLOG_OP_MAGIC | 0x00000,
2731         OST_SZ_REC              = LLOG_OP_MAGIC | 0x00f00,
2732         /* OST_RAID1_REC        = LLOG_OP_MAGIC | 0x01000, never used */
2733         MDS_UNLINK_REC          = LLOG_OP_MAGIC | 0x10000 | (MDS_REINT << 8) |
2734                                   REINT_UNLINK, /* obsolete after 2.5.0 */
2735         MDS_UNLINK64_REC        = LLOG_OP_MAGIC | 0x90000 | (MDS_REINT << 8) |
2736                                   REINT_UNLINK,
2737         /* MDS_SETATTR_REC      = LLOG_OP_MAGIC | 0x12401, obsolete 1.8.0 */
2738         MDS_SETATTR64_REC       = LLOG_OP_MAGIC | 0x90000 | (MDS_REINT << 8) |
2739                                   REINT_SETATTR,
2740         OBD_CFG_REC             = LLOG_OP_MAGIC | 0x20000,
2741         /* PTL_CFG_REC          = LLOG_OP_MAGIC | 0x30000, obsolete 1.4.0 */
2742         LLOG_GEN_REC            = LLOG_OP_MAGIC | 0x40000,
2743         /* LLOG_JOIN_REC        = LLOG_OP_MAGIC | 0x50000, obsolete  1.8.0 */
2744         CHANGELOG_REC           = LLOG_OP_MAGIC | 0x60000,
2745         CHANGELOG_USER_REC      = LLOG_OP_MAGIC | 0x70000,
2746         CHANGELOG_USER_REC2     = LLOG_OP_MAGIC | 0x70002,
2747         HSM_AGENT_REC           = LLOG_OP_MAGIC | 0x80000,
2748         UPDATE_REC              = LLOG_OP_MAGIC | 0xa0000, /* Resevered to avoid
2749                                                             * use on client.
2750                                                             */
2751         LLOG_HDR_MAGIC          = LLOG_OP_MAGIC | 0x45539,
2752         LLOG_LOGID_MAGIC        = LLOG_OP_MAGIC | 0x4553b,
2753 };
2754
2755 #define LLOG_REC_HDR_NEEDS_SWABBING(r) \
2756         (((r)->lrh_type & __swab32(LLOG_OP_MASK)) == __swab32(LLOG_OP_MAGIC))
2757
2758 /** Log record header - stored in little endian order.
2759  * Each record must start with this struct, end with a llog_rec_tail,
2760  * and be a multiple of 256 bits in size.
2761  */
2762 struct llog_rec_hdr {
2763         __u32   lrh_len;
2764         __u32   lrh_index;
2765         __u32   lrh_type;
2766         __u32   lrh_id;
2767 } __attribute__((packed));
2768
2769 struct llog_rec_tail {
2770         __u32   lrt_len;
2771         __u32   lrt_index;
2772 } __attribute__((packed));
2773
2774 /* Where data follow just after header */
2775 #define REC_DATA(ptr)                                           \
2776         ((void *)((char *)ptr + sizeof(struct llog_rec_hdr)))
2777
2778 #define REC_DATA_LEN(rec)                                       \
2779         (rec->lrh_len - sizeof(struct llog_rec_hdr) -           \
2780          sizeof(struct llog_rec_tail))
2781
2782 struct llog_logid_rec {
2783         struct llog_rec_hdr     lid_hdr;
2784         struct llog_logid       lid_id;
2785         __u32                   lid_padding1;
2786         __u64                   lid_padding2;
2787         __u64                   lid_padding3;
2788         struct llog_rec_tail    lid_tail;
2789 } __attribute__((packed));
2790
2791 struct llog_unlink_rec {
2792         struct llog_rec_hdr     lur_hdr;
2793         __u64                   lur_oid;
2794         __u32                   lur_oseq;
2795         __u32                   lur_count;
2796         struct llog_rec_tail    lur_tail;
2797 } __attribute__((packed));
2798
2799 struct llog_unlink64_rec {
2800         struct llog_rec_hdr     lur_hdr;
2801         struct lu_fid           lur_fid;
2802         __u32                   lur_count; /* to destroy the lost precreated */
2803         __u32                   lur_padding1;
2804         __u64                   lur_padding2;
2805         __u64                   lur_padding3;
2806         struct llog_rec_tail    lur_tail;
2807 } __attribute__((packed));
2808
2809 struct llog_setattr64_rec {
2810         struct llog_rec_hdr     lsr_hdr;
2811         struct ost_id           lsr_oi;
2812         __u32                   lsr_uid;
2813         __u32                   lsr_uid_h;
2814         __u32                   lsr_gid;
2815         __u32                   lsr_gid_h;
2816         __u64                   lsr_valid;
2817         struct llog_rec_tail    lsr_tail;
2818 } __attribute__((packed));
2819
2820 /* Extended to support project quota */
2821 struct llog_setattr64_rec_v2 {
2822         struct llog_rec_hdr     lsr_hdr;
2823         struct ost_id           lsr_oi;
2824         __u32                   lsr_uid;
2825         __u32                   lsr_uid_h;
2826         __u32                   lsr_gid;
2827         __u32                   lsr_gid_h;
2828         __u64                   lsr_valid;
2829         __u32                   lsr_projid;
2830         __u32                   lsr_layout_version;
2831         __u64                   lsr_padding2;
2832         __u64                   lsr_padding3;
2833         struct llog_rec_tail    lsr_tail;
2834 } __attribute__((packed));
2835
2836 struct llog_size_change_rec {
2837         struct llog_rec_hdr     lsc_hdr;
2838         struct ll_fid           lsc_fid;
2839         __u32                   lsc_ioepoch;
2840         __u32                   lsc_padding1;
2841         __u64                   lsc_padding2;
2842         __u64                   lsc_padding3;
2843         struct llog_rec_tail    lsc_tail;
2844 } __attribute__((packed));
2845
2846 #define CHANGELOG_MAGIC 0xca103000
2847
2848 /** \a changelog_rec_type's that can't be masked */
2849 #define CHANGELOG_MINMASK BIT(CL_MARK)
2850 /** bits covering all \a changelog_rec_type's */
2851 #define CHANGELOG_ALLMASK (BIT(CL_LAST) - 1)
2852 /** default \a changelog_rec_type mask. Allow all of them, except
2853  * CL_ATIME since it can really be time consuming, and not necessary
2854  * under normal use.
2855  * Remove also CL_OPEN, CL_GETXATTR and CL_DN_OPEN from default list as it can
2856  * be costly and only necessary for audit purpose.
2857  */
2858 #define CHANGELOG_DEFMASK (CHANGELOG_ALLMASK & \
2859         ~(BIT(CL_ATIME) | BIT(CL_OPEN) | BIT(CL_GETXATTR) | BIT(CL_DN_OPEN)))
2860
2861 /* changelog llog name, needed by client replicators */
2862 #define CHANGELOG_CATALOG "changelog_catalog"
2863
2864 struct changelog_setinfo {
2865         __u64 cs_recno;
2866         __u32 cs_id;
2867 } __attribute__((packed));
2868
2869 /** changelog record */
2870 struct llog_changelog_rec {
2871         struct llog_rec_hdr  cr_hdr;
2872         struct changelog_rec cr; /**< Variable length field */
2873         struct llog_rec_tail cr_do_not_use; /**< for_sizeof_only */
2874 } __attribute__((packed));
2875
2876 #define CHANGELOG_USER_PREFIX "cl"
2877 #define CHANGELOG_USER_NAMELEN 16 /* base name including NUL terminator */
2878 #define CHANGELOG_USER_NAMELEN_FULL 30 /* basename plus 'cl$ID-' prefix */
2879
2880 struct llog_changelog_user_rec {
2881         struct llog_rec_hdr   cur_hdr;
2882         __u32                 cur_id;
2883         /* only intended to be used in relative time comparisons to
2884          * detect idle users */
2885         __u32                 cur_time;
2886         __u64                 cur_endrec;
2887         struct llog_rec_tail  cur_tail;
2888 } __attribute__((packed));
2889
2890 /* this is twice the size of CHANGELOG_USER_REC */
2891 struct llog_changelog_user_rec2 {
2892         struct llog_rec_hdr     cur_hdr;
2893         __u32                   cur_id;
2894         /* only for use in relative time comparisons to detect idle users */
2895         __u32                   cur_time;
2896         __u64                   cur_endrec;
2897         __u32                   cur_mask;
2898         __u32                   cur_padding1;
2899         char                    cur_name[CHANGELOG_USER_NAMELEN];
2900         __u64                   cur_padding2;
2901         __u64                   cur_padding3;
2902         struct llog_rec_tail    cur_tail;
2903 } __attribute__((packed));
2904
2905 enum agent_req_status {
2906         ARS_WAITING,
2907         ARS_STARTED,
2908         ARS_FAILED,
2909         ARS_CANCELED,
2910         ARS_SUCCEED,
2911 };
2912
2913 static inline const char *agent_req_status2name(enum agent_req_status ars)
2914 {
2915         switch (ars) {
2916         case ARS_WAITING:
2917                 return "WAITING";
2918         case ARS_STARTED:
2919                 return "STARTED";
2920         case ARS_FAILED:
2921                 return "FAILED";
2922         case ARS_CANCELED:
2923                 return "CANCELED";
2924         case ARS_SUCCEED:
2925                 return "SUCCEED";
2926         default:
2927                 return "UNKNOWN";
2928         }
2929 }
2930
2931 struct llog_agent_req_rec {
2932         struct llog_rec_hdr     arr_hdr;        /**< record header */
2933         __u32                   arr_status;     /**< status of the request */
2934                                                 /* must match enum
2935                                                  * agent_req_status */
2936         __u32                   arr_archive_id; /**< backend archive number */
2937         __u64                   arr_flags;      /**< req flags */
2938         __u64                   arr_compound_id; /**< compound cookie, ignored */
2939         __u64                   arr_req_create; /**< req. creation time */
2940         __u64                   arr_req_change; /**< req. status change time */
2941         struct hsm_action_item  arr_hai;        /**< req. to the agent */
2942         struct llog_rec_tail    arr_tail; /**< record tail for_sizezof_only */
2943 } __attribute__((packed));
2944
2945 /* Old llog gen for compatibility */
2946 struct llog_gen {
2947         __u64 mnt_cnt;
2948         __u64 conn_cnt;
2949 } __attribute__((packed));
2950
2951 struct llog_gen_rec {
2952         struct llog_rec_hdr     lgr_hdr;
2953         struct llog_gen         lgr_gen;
2954         __u64                   padding1;
2955         __u64                   padding2;
2956         __u64                   padding3;
2957         struct llog_rec_tail    lgr_tail;
2958 };
2959
2960 /* flags for the logs */
2961 enum llog_flag {
2962         LLOG_F_ZAP_WHEN_EMPTY   = 0x1,
2963         LLOG_F_IS_CAT           = 0x2,
2964         LLOG_F_IS_PLAIN         = 0x4,
2965         LLOG_F_EXT_JOBID        = 0x8,
2966         LLOG_F_IS_FIXSIZE       = 0x10,
2967         LLOG_F_EXT_EXTRA_FLAGS  = 0x20,
2968         LLOG_F_EXT_X_UIDGID     = 0x40,
2969         LLOG_F_EXT_X_NID        = 0x80,
2970         LLOG_F_EXT_X_OMODE      = 0x100,
2971         LLOG_F_EXT_X_XATTR      = 0x200,
2972         LLOG_F_RM_ON_ERR        = 0x400,
2973         LLOG_F_MAX_AGE          = 0x800,
2974
2975         /* Note: Flags covered by LLOG_F_EXT_MASK will be inherited from
2976          * catlog to plain log, so do not add LLOG_F_IS_FIXSIZE here,
2977          * because the catlog record is usually fixed size, but its plain
2978          * log record can be variable */
2979         LLOG_F_EXT_MASK = LLOG_F_EXT_JOBID | LLOG_F_EXT_EXTRA_FLAGS |
2980                           LLOG_F_EXT_X_UIDGID | LLOG_F_EXT_X_NID |
2981                           LLOG_F_EXT_X_OMODE | LLOG_F_EXT_X_XATTR,
2982 };
2983
2984 /* means first record of catalog */
2985 enum {
2986         LLOG_CAT_FIRST = -1,
2987 };
2988
2989 /* On-disk header structure of each log object, stored in little endian order */
2990 #define LLOG_MIN_CHUNK_SIZE     8192
2991 #define LLOG_HEADER_SIZE        (96) /* sizeof (llog_log_hdr) + sizeof(llh_tail)
2992                                       * - sizeof(llh_bitmap) */
2993 #define LLOG_BITMAP_BYTES       (LLOG_MIN_CHUNK_SIZE - LLOG_HEADER_SIZE)
2994 #define LLOG_MIN_REC_SIZE       (24) /* round(llog_rec_hdr + llog_rec_tail) */
2995
2996 struct llog_log_hdr {
2997         struct llog_rec_hdr     llh_hdr;
2998         __s64                   llh_timestamp;
2999         __u32                   llh_count;
3000         __u32                   llh_bitmap_offset;
3001         __u32                   llh_size;
3002         __u32                   llh_flags;
3003         /* for a catalog the first/oldest and still in-use plain slot is just
3004          * next to it. It will serve as the upper limit after Catalog has
3005          * wrapped around */
3006         __u32                   llh_cat_idx;
3007         struct obd_uuid         llh_tgtuuid;
3008         __u32                   llh_reserved[LLOG_HEADER_SIZE/sizeof(__u32)-23];
3009         /* These fields must always be at the end of the llog_log_hdr.
3010          * Note: llh_bitmap size is variable because llog chunk size could be
3011          * bigger than LLOG_MIN_CHUNK_SIZE, i.e. sizeof(llog_log_hdr) > 8192
3012          * bytes, and the real size is stored in llh_hdr.lrh_len, which means
3013          * llh_tail should only be refered by LLOG_HDR_TAIL().
3014          * But this structure is also used by client/server llog interface
3015          * (see llog_client.c), it will be kept in its original way to avoid
3016          * compatiblity issue. */
3017         __u32                   llh_bitmap[LLOG_BITMAP_BYTES / sizeof(__u32)];
3018         struct llog_rec_tail    llh_tail;
3019 } __attribute__((packed));
3020 #undef LLOG_HEADER_SIZE
3021 #undef LLOG_BITMAP_BYTES
3022
3023 #define LLOG_HDR_BITMAP_SIZE(llh)       (__u32)((llh->llh_hdr.lrh_len - \
3024                                          llh->llh_bitmap_offset -       \
3025                                          sizeof(llh->llh_tail)) * 8)
3026 #define LLOG_HDR_BITMAP(llh)    (__u32 *)((char *)(llh) +               \
3027                                           (llh)->llh_bitmap_offset)
3028 #define LLOG_HDR_TAIL(llh)      ((struct llog_rec_tail *)((char *)llh + \
3029                                                  llh->llh_hdr.lrh_len - \
3030                                                  sizeof(llh->llh_tail)))
3031
3032 /** log cookies are used to reference a specific log file and a record therein,
3033     and pass record offset from llog_process_thread to llog_write */
3034 struct llog_cookie {
3035         union {
3036                 struct llog_logid       lgc_lgl;
3037                 __u64                   lgc_offset;
3038         };
3039         __u32                   lgc_subsys;
3040         __u32                   lgc_index;
3041         __u32                   lgc_padding;
3042 } __attribute__((packed));
3043
3044 /** llog protocol */
3045 enum llogd_rpc_ops {
3046         LLOG_ORIGIN_HANDLE_CREATE       = 501,
3047         LLOG_ORIGIN_HANDLE_NEXT_BLOCK   = 502,
3048         LLOG_ORIGIN_HANDLE_READ_HEADER  = 503,
3049 /*      LLOG_ORIGIN_HANDLE_WRITE_REC    = 504, Obsolete by 2.1. */
3050 /*      LLOG_ORIGIN_HANDLE_CLOSE        = 505, Obsolete by 1.8. */
3051 /*      LLOG_ORIGIN_CONNECT             = 506, Obsolete by 2.4. */
3052 /*      LLOG_CATINFO                    = 507, Obsolete by 2.3. */
3053         LLOG_ORIGIN_HANDLE_PREV_BLOCK   = 508,
3054         LLOG_ORIGIN_HANDLE_DESTROY      = 509, /* Obsolete by 2.11. */
3055         LLOG_LAST_OPC,
3056         LLOG_FIRST_OPC                  = LLOG_ORIGIN_HANDLE_CREATE
3057 };
3058
3059 struct llogd_body {
3060         struct llog_logid  lgd_logid;
3061         __u32 lgd_ctxt_idx;
3062         __u32 lgd_llh_flags;
3063         __u32 lgd_index;
3064         __u32 lgd_saved_index;
3065         __u32 lgd_len;
3066         __u64 lgd_cur_offset;
3067 } __attribute__((packed));
3068
3069 struct llogd_conn_body {
3070         struct llog_gen         lgdc_gen;
3071         struct llog_logid       lgdc_logid;
3072         __u32                   lgdc_ctxt_idx;
3073 } __attribute__((packed));
3074
3075 /* Note: 64-bit types are 64-bit aligned in structure */
3076 struct obdo {
3077         __u64                   o_valid;        /* hot fields in this obdo */
3078         struct ost_id           o_oi;
3079         __u64                   o_parent_seq;
3080         __u64                   o_size;         /* o_size-o_blocks == ost_lvb */
3081         __s64                   o_mtime;
3082         __s64                   o_atime;
3083         __s64                   o_ctime;
3084         __u64                   o_blocks;       /* brw: cli sent cached bytes */
3085         __u64                   o_grant;
3086
3087         /* 32-bit fields start here: keep an even number of them via padding */
3088         __u32                   o_blksize;      /* optimal IO blocksize */
3089         __u32                   o_mode;         /* brw: cli sent cache remain */
3090         __u32                   o_uid;
3091         __u32                   o_gid;
3092         __u32                   o_flags;
3093         __u32                   o_nlink;        /* brw: checksum */
3094         __u32                   o_parent_oid;
3095         __u32                   o_misc;         /* brw: o_dropped */
3096
3097         __u64                   o_ioepoch;      /* epoch in ost writes */
3098         __u32                   o_stripe_idx;   /* holds stripe idx */
3099         __u32                   o_parent_ver;
3100         struct lustre_handle    o_handle;       /* brw: lock handle to prolong
3101                                                  * locks */
3102         /* Originally, the field is llog_cookie for destroy with unlink cookie
3103          * from MDS, it is obsolete in 2.8. Then reuse it by client to transfer
3104          * layout and PFL information in IO, setattr RPCs. Since llog_cookie is
3105          * not used on wire any longer, remove it from the obdo, then it can be
3106          * enlarged freely in the further without affect related RPCs.
3107          *
3108          * sizeof(ost_layout) + sieof(__u32) == sizeof(llog_cookie). */
3109         struct ost_layout       o_layout;
3110         __u32                   o_layout_version;
3111         __u32                   o_uid_h;
3112         __u32                   o_gid_h;
3113
3114         __u64                   o_data_version; /* getattr: sum of iversion for
3115                                                  * each stripe.
3116                                                  * brw: grant space consumed on
3117                                                  * the client for the write */
3118         __u32                   o_projid;
3119         __u32                   o_padding_4;    /* also fix
3120                                                  * lustre_swab_obdo() */
3121         __u64                   o_padding_5;
3122         __u64                   o_padding_6;
3123 };
3124
3125 #define o_dirty   o_blocks
3126 #define o_undirty o_mode
3127 #define o_dropped o_misc
3128 #define o_cksum   o_nlink
3129 #define o_grant_used o_data_version
3130 #define o_falloc_mode o_nlink
3131
3132 struct lfsck_request {
3133         __u32           lr_event;
3134         __u32           lr_index;
3135         __u32           lr_flags;
3136         __u32           lr_valid;
3137         union {
3138                 __u32   lr_speed;
3139                 __u32   lr_status;
3140         };
3141         __u16           lr_version;
3142         __u16           lr_active;
3143         __u16           lr_param;
3144         __u16           lr_async_windows;
3145         __u32           lr_flags2;
3146         struct lu_fid   lr_fid;
3147         struct lu_fid   lr_fid2;
3148         __u32           lr_comp_id;
3149         __u32           lr_padding_0;
3150         __u64           lr_padding_1;
3151         __u64           lr_padding_2;
3152         __u64           lr_padding_3;
3153 };
3154
3155 struct lfsck_reply {
3156         __u32           lr_status;
3157         __u32           lr_padding_1;
3158         __u64           lr_repaired;
3159 };
3160
3161 enum lfsck_events {
3162         LE_LASTID_REBUILDING    = 1,
3163         LE_LASTID_REBUILT       = 2,
3164         LE_PHASE1_DONE          = 3,
3165         LE_PHASE2_DONE          = 4,
3166         LE_START                = 5,
3167         LE_STOP                 = 6,
3168         LE_QUERY                = 7,
3169         /* LE_FID_ACCESSED      = 8, moved to lfsck_events_local */
3170         LE_PEER_EXIT            = 9,
3171         LE_CONDITIONAL_DESTROY  = 10,
3172         LE_PAIRS_VERIFY         = 11,
3173         LE_SET_LMV_MASTER       = 15,
3174         LE_SET_LMV_SLAVE        = 16,
3175 };
3176
3177 enum lfsck_event_flags {
3178         LEF_TO_OST              = 0x00000001,
3179         LEF_FROM_OST            = 0x00000002,
3180         LEF_SET_LMV_HASH        = 0x00000004,
3181         LEF_SET_LMV_ALL         = 0x00000008,
3182         LEF_RECHECK_NAME_HASH   = 0x00000010,
3183         LEF_QUERY_ALL           = 0x00000020,
3184 };
3185
3186 /* request structure for OST's */
3187 struct ost_body {
3188         struct obdo oa;
3189 };
3190
3191 /* Key for FIEMAP to be used in get_info calls */
3192 struct ll_fiemap_info_key {
3193         char            lfik_name[8];
3194         struct obdo     lfik_oa;
3195         struct fiemap   lfik_fiemap;
3196 };
3197
3198 #define IDX_INFO_MAGIC 0x3D37CC37
3199
3200 /* Index file transfer through the network. The server serializes the index into
3201  * a byte stream which is sent to the client via a bulk transfer */
3202 struct idx_info {
3203         __u32           ii_magic;
3204
3205         /* reply: see idx_info_flags below */
3206         __u32           ii_flags;
3207
3208         /* request & reply: number of lu_idxpage (to be) transferred */
3209         __u16           ii_count;
3210         __u16           ii_pad0;
3211
3212         /* request: requested attributes passed down to the iterator API */
3213         __u32           ii_attrs;
3214
3215         /* request & reply: index file identifier (FID) */
3216         struct lu_fid   ii_fid;
3217
3218         /* reply: version of the index file before starting to walk the index.
3219          * Please note that the version can be modified at any time during the
3220          * transfer */
3221         __u64           ii_version;
3222
3223         /* request: hash to start with:
3224          * reply: hash of the first entry of the first lu_idxpage and hash
3225          *        of the entry to read next if any */
3226         __u64           ii_hash_start;
3227         __u64           ii_hash_end;
3228
3229         /* reply: size of keys in lu_idxpages, minimal one if II_FL_VARKEY is
3230          * set */
3231         __u16           ii_keysize;
3232
3233         /* reply: size of records in lu_idxpages, minimal one if II_FL_VARREC
3234          * is set */
3235         __u16           ii_recsize;
3236
3237         __u32           ii_pad1;
3238         __u64           ii_pad2;
3239         __u64           ii_pad3;
3240 };
3241
3242 #define II_END_OFF      MDS_DIR_END_OFF /* all entries have been read */
3243
3244 /* List of flags used in idx_info::ii_flags */
3245 enum idx_info_flags {
3246         II_FL_NOHASH    = 1 << 0, /* client doesn't care about hash value */
3247         II_FL_VARKEY    = 1 << 1, /* keys can be of variable size */
3248         II_FL_VARREC    = 1 << 2, /* records can be of variable size */
3249         II_FL_NONUNQ    = 1 << 3, /* index supports non-unique keys */
3250         II_FL_NOKEY     = 1 << 4, /* client doesn't care about key */
3251 };
3252
3253 #define LIP_MAGIC 0x8A6D6B6C
3254
3255 /* 4KB (= LU_PAGE_SIZE) container gathering key/record pairs */
3256 struct lu_idxpage {
3257         /* 16-byte header */
3258         __u32   lip_magic;
3259         __u16   lip_flags;
3260         __u16   lip_nr;   /* number of entries in the container */
3261         __u64   lip_pad0; /* additional padding for future use */
3262
3263         /* key/record pairs are stored in the remaining 4080 bytes.
3264          * depending upon the flags in idx_info::ii_flags, each key/record
3265          * pair might be preceded by:
3266          * - a hash value
3267          * - the key size (II_FL_VARKEY is set)
3268          * - the record size (II_FL_VARREC is set)
3269          *
3270          * For the time being, we only support fixed-size key & record. */
3271         char    lip_entries[0];
3272 };
3273
3274 #define LIP_HDR_SIZE (offsetof(struct lu_idxpage, lip_entries))
3275
3276 /* Gather all possible type associated with a 4KB container */
3277 union lu_page {
3278         struct lu_dirpage       lp_dir; /* for MDS_READPAGE */
3279         struct lu_idxpage       lp_idx; /* for OBD_IDX_READ */
3280         char                    lp_array[LU_PAGE_SIZE];
3281 };
3282
3283 /* security opcodes */
3284 enum sec_cmd {
3285         SEC_CTX_INIT            = 801,
3286         SEC_CTX_INIT_CONT       = 802,
3287         SEC_CTX_FINI            = 803,
3288         SEC_LAST_OPC,
3289         SEC_FIRST_OPC           = SEC_CTX_INIT
3290 };
3291
3292 /** The link ea holds 1 \a link_ea_entry for each hardlink */
3293 #define LINK_EA_MAGIC 0x11EAF1DFUL
3294 struct link_ea_header {
3295         __u32 leh_magic;
3296         __u32 leh_reccount;
3297         __u64 leh_len;  /* total size */
3298         __u32 leh_overflow_time;
3299         __u32 leh_padding;
3300 };
3301
3302 /** Hardlink data is name and parent fid.
3303  * Stored in this crazy struct for maximum packing and endian-neutrality
3304  */
3305 struct link_ea_entry {
3306         /** __u16 stored big-endian, unaligned */
3307         unsigned char      lee_reclen[2];
3308         unsigned char      lee_parent_fid[sizeof(struct lu_fid)];
3309         char               lee_name[0];
3310 } __attribute__((packed));
3311
3312 /** fid2path request/reply structure */
3313 struct getinfo_fid2path {
3314         struct lu_fid   gf_fid;
3315         __u64           gf_recno;
3316         __u32           gf_linkno;
3317         __u32           gf_pathlen;
3318         union {
3319                 char            gf_path[0];
3320                 struct lu_fid   gf_root_fid[0];
3321         } gf_u;
3322 } __attribute__((packed));
3323
3324 /** path2parent request/reply structures */
3325 struct getparent {
3326         struct lu_fid   gp_fid;         /**< parent FID */
3327         __u32           gp_linkno;      /**< hardlink number */
3328         __u32           gp_name_size;   /**< size of the name field */
3329         char            gp_name[0];     /**< zero-terminated link name */
3330 } __attribute__((packed));
3331
3332 enum layout_intent_opc {
3333         LAYOUT_INTENT_ACCESS    = 0,    /** generic access */
3334         LAYOUT_INTENT_READ      = 1,    /** not used */
3335         LAYOUT_INTENT_WRITE     = 2,    /** write file, for comp layout */
3336         LAYOUT_INTENT_GLIMPSE   = 3,    /** not used */
3337         LAYOUT_INTENT_TRUNC     = 4,    /** truncate file, for comp layout */
3338         LAYOUT_INTENT_RELEASE   = 5,    /** reserved for HSM release */
3339         LAYOUT_INTENT_RESTORE   = 6,    /** reserved for HSM restore */
3340 };
3341
3342 /* enqueue layout lock with intent */
3343 struct layout_intent {
3344         __u32 li_opc;   /* intent operation for enqueue, read, write etc */
3345         __u32 li_flags;
3346         struct lu_extent li_extent;
3347 } __attribute__((packed));
3348
3349 /**
3350  * On the wire version of hsm_progress structure.
3351  *
3352  * Contains the userspace hsm_progress and some internal fields.
3353  */
3354 struct hsm_progress_kernel {
3355         /* Field taken from struct hsm_progress */
3356         struct lu_fid           hpk_fid;
3357         __u64                   hpk_cookie;
3358         struct hsm_extent       hpk_extent;
3359         __u16                   hpk_flags;
3360         __u16                   hpk_errval; /* positive val */
3361         __u32                   hpk_padding1;
3362         /* Additional fields */
3363         __u64                   hpk_data_version;
3364         __u64                   hpk_padding2;
3365 } __attribute__((packed));
3366
3367 /**
3368  * OUT_UPDATE RPC Format
3369  *
3370  * During the cross-ref operation, the Master MDT, which the client send the
3371  * request to, will disassembly the operation into object updates, then OSP
3372  * will send these updates to the remote MDT to be executed.
3373  *
3374  * An UPDATE_OBJ RPC does a list of updates.  Each update belongs to an
3375  * operation and does a type of modification to an object.
3376  *
3377  * Request Format
3378  *
3379  *   update_buf
3380  *   update (1st)
3381  *   update (2nd)
3382  *   ...
3383  *   update (ub_count-th)
3384  *
3385  * ub_count must be less than or equal to UPDATE_PER_RPC_MAX.
3386  *
3387  * Reply Format
3388  *
3389  *   update_reply
3390  *   rc [+ buffers] (1st)
3391  *   rc [+ buffers] (2st)
3392  *   ...
3393  *   rc [+ buffers] (nr_count-th)
3394  *
3395  * ur_count must be less than or equal to UPDATE_PER_RPC_MAX and should usually
3396  * be equal to ub_count.
3397  */
3398
3399 /**
3400  * Type of each update, if adding/deleting update, please also update
3401  * update_opcode in lustre/target/out_lib.c.
3402  */
3403 enum update_type {
3404         OUT_START               = 0,
3405         OUT_CREATE              = 1,
3406         OUT_DESTROY             = 2,
3407         OUT_REF_ADD             = 3,
3408         OUT_REF_DEL             = 4,
3409         OUT_ATTR_SET            = 5,
3410         OUT_ATTR_GET            = 6,
3411         OUT_XATTR_SET           = 7,
3412         OUT_XATTR_GET           = 8,
3413         OUT_INDEX_LOOKUP        = 9,
3414         OUT_INDEX_INSERT        = 10,
3415         OUT_INDEX_DELETE        = 11,
3416         OUT_WRITE               = 12,
3417         OUT_XATTR_DEL           = 13,
3418         OUT_PUNCH               = 14,
3419         OUT_READ                = 15,
3420         OUT_NOOP                = 16,
3421         OUT_XATTR_LIST          = 17,
3422         OUT_LAST
3423 };
3424
3425 enum update_flag {
3426         UPDATE_FL_OST           = 0x00000001,   /* op from OST (not MDT) */
3427         UPDATE_FL_SYNC          = 0x00000002,   /* commit before replying */
3428         UPDATE_FL_COMMITTED     = 0x00000004,   /* op committed globally */
3429         UPDATE_FL_NOLOG         = 0x00000008    /* for idempotent updates */
3430 };
3431
3432 struct object_update_param {
3433         __u16   oup_len;        /* length of this parameter */
3434         __u16   oup_padding;
3435         __u32   oup_padding2;
3436         char    oup_buf[0];
3437 } __attribute__((packed));
3438
3439 /* object update */
3440 struct object_update {
3441         __u16           ou_type;                /* enum update_type */
3442         __u16           ou_params_count;        /* update parameters count */
3443         __u32           ou_result_size;         /* how many bytes can return */
3444         __u32           ou_flags;               /* enum update_flag */
3445         __u32           ou_padding1;            /* padding 1 */
3446         __u64           ou_batchid;             /* op transno on master */
3447         struct lu_fid   ou_fid;                 /* object to be updated */
3448         struct object_update_param ou_params[0]; /* update params */
3449 };
3450
3451 #define UPDATE_REQUEST_MAGIC_V1 0xBDDE0001
3452 #define UPDATE_REQUEST_MAGIC_V2 0xBDDE0002
3453 #define UPDATE_REQUEST_MAGIC    UPDATE_REQUEST_MAGIC_V2
3454 /* Hold object_updates sending to the remote OUT in single RPC */
3455 struct object_update_request {
3456         __u32                   ourq_magic;
3457         __u16                   ourq_count;     /* number of ourq_updates[] */
3458         __u16                   ourq_padding;
3459         struct object_update    ourq_updates[0];
3460 };
3461
3462 #define OUT_UPDATE_HEADER_MAGIC         0xBDDF0001
3463 #define OUT_UPDATE_MAX_INLINE_SIZE      4096
3464 /* Header for updates request between MDTs */
3465 struct out_update_header {
3466         __u32           ouh_magic;
3467         __u32           ouh_count;
3468         __u32           ouh_inline_length;
3469         __u32           ouh_reply_size;
3470         __u32           ouh_inline_data[0];
3471 };
3472
3473 struct out_update_buffer {
3474         __u32   oub_size;
3475         __u32   oub_padding;
3476 };
3477
3478 /* the result of object update */
3479 struct object_update_result {
3480         __u32   our_rc;
3481         __u16   our_datalen;
3482         __u16   our_padding;
3483         __u32   our_data[0];
3484 };
3485
3486 #define UPDATE_REPLY_MAGIC_V1   0x00BD0001
3487 #define UPDATE_REPLY_MAGIC_V2   0x00BD0002
3488 #define UPDATE_REPLY_MAGIC      UPDATE_REPLY_MAGIC_V2
3489 /* Hold object_update_results being replied from the remote OUT. */
3490 struct object_update_reply {
3491         __u32   ourp_magic;
3492         __u16   ourp_count;
3493         __u16   ourp_padding;
3494         __u16   ourp_lens[0];
3495 };
3496
3497 /* read update result */
3498 struct out_read_reply {
3499         __u32   orr_size;
3500         __u32   orr_padding;
3501         __u64   orr_offset;
3502         char    orr_data[0];
3503 };
3504
3505 #define BUT_REQUEST_MAGIC       0xBADE0001
3506 /* Hold batched updates sending to the remote target in a single RPC */
3507 struct batch_update_request {
3508         /* Magic number: BUT_REQUEST_MAGIC. */
3509         __u32                   burq_magic;
3510         /* Number of sub requests packed in this batched RPC: burq_reqmsg[]. */
3511         __u16                   burq_count;
3512         /* Unused padding field. */
3513         __u16                   burq_padding;
3514         /*
3515          * Sub request message array. As message feild buffers for each sub
3516          * request are packed after padded lustre_msg.lm_buflens[] arrary, thus
3517          * it can locate the next request message via the function
3518          * @batch_update_reqmsg_next() in lustre/include/obj_update.h
3519          */
3520         struct lustre_msg       burq_reqmsg[0];
3521 };
3522
3523 #define BUT_HEADER_MAGIC        0xBADF0001
3524 /* Header for Batched UpdaTes request */
3525 struct but_update_header {
3526         /* Magic number: BUT_HEADER_MAGIC */
3527         __u32   buh_magic;
3528         /*
3529          * When the total request buffer length is less than MAX_INLINE_SIZE,
3530          * @buh_count is set with 1 and the batched RPC reqeust can be packed
3531          * inline.
3532          * Otherwise, @buh_count indicates the IO vector count transferring in
3533          * bulk I/O.
3534          */
3535         __u32   buh_count;
3536         /* inline buffer length when the batched RPC can be packed inline. */
3537         __u32   buh_inline_length;
3538         /* The reply buffer size the client prepared. */
3539         __u32   buh_reply_size;
3540         /* Sub request count in this batched RPC. */
3541         __u32   buh_update_count;
3542         /* Unused padding field. */
3543         __u32   buh_padding;
3544         /* Inline buffer used when the RPC request can be packed inline. */
3545         __u32   buh_inline_data[0];
3546 };
3547
3548 struct but_update_buffer {
3549         __u32   bub_size;
3550         __u32   bub_padding;
3551 };
3552
3553 #define BUT_REPLY_MAGIC 0x00AD0001
3554 /* Batched reply received from a remote targer in a batched RPC. */
3555 struct batch_update_reply {
3556         /* Magic number: BUT_REPLY_MAGIC. */
3557         __u32                   burp_magic;
3558         /* Successful returned sub requests. */
3559         __u16                   burp_count;
3560         /* Unused padding field. */
3561         __u16                   burp_padding;
3562         /*
3563          * Sub reply message array.
3564          * It can locate the next reply message buffer via the function
3565          * @batch_update_repmsg_next() in lustre/include/obj_update.h
3566          */
3567         struct lustre_msg       burp_repmsg[0];
3568 };
3569
3570 /**
3571  * Batch update opcode.
3572  */
3573 enum batch_update_cmd {
3574         BUT_GETATTR     = 1,
3575         BUT_LAST_OPC,
3576         BUT_FIRST_OPC   = BUT_GETATTR,
3577 };
3578
3579 /** layout swap request structure
3580  * fid1 and fid2 are in mdt_body
3581  */
3582 struct mdc_swap_layouts {
3583         __u64           msl_flags;
3584 } __attribute__((packed));
3585
3586 #define INLINE_RESYNC_ARRAY_SIZE        15
3587 struct close_data_resync_done {
3588         __u32   resync_count;
3589         __u32   resync_ids_inline[INLINE_RESYNC_ARRAY_SIZE];
3590 };
3591
3592 struct close_data {
3593         struct lustre_handle    cd_handle;
3594         struct lu_fid           cd_fid;
3595         __u64                   cd_data_version;
3596         union {
3597                 __u64                           cd_reserved[8];
3598                 struct close_data_resync_done   cd_resync;
3599                 /* split close */
3600                 __u16                           cd_mirror_id;
3601                 /* PCC release */
3602                 __u32                           cd_archive_id;
3603         };
3604 };
3605
3606 /* Update llog format */
3607 struct update_op {
3608         struct lu_fid   uop_fid;
3609         __u16           uop_type;
3610         __u16           uop_param_count;
3611         __u16           uop_params_off[];
3612 } __attribute__((packed));
3613
3614 struct update_ops {
3615         struct update_op        uops_op[0];
3616 };
3617
3618 struct update_params {
3619         struct object_update_param      up_params[0];
3620 };
3621
3622 enum update_records_flag {
3623         UPDATE_RECORD_CONTINUE = 1 >> 0,
3624 };
3625 /*
3626  * This is the update record format used to store the updates in
3627  * disk. All updates of the operation will be stored in ur_ops.
3628  * All of parameters for updates of the operation will be stored
3629  * in ur_params.
3630  * To save the space of the record, parameters in ur_ops will only
3631  * remember their offset in ur_params, so to avoid storing duplicate
3632  * parameters in ur_params, which can help us save a lot space for
3633  * operation like creating striped directory.
3634  */
3635 struct update_records {
3636         __u64                   ur_master_transno;
3637         __u64                   ur_batchid;
3638         __u32                   ur_flags;
3639         /* If the operation includes multiple updates, then ur_index
3640          * means the index of the update inside the whole updates. */
3641         __u32                   ur_index;
3642         __u32                   ur_update_count;
3643         __u32                   ur_param_count;
3644         struct update_ops       ur_ops;
3645          /* Note ur_ops has a variable size, so comment out
3646           * the following ur_params, in case some use it directly
3647           * update_records->ur_params
3648           *
3649           * struct update_params        ur_params;
3650           */
3651 };
3652
3653 struct llog_update_record {
3654         struct llog_rec_hdr     lur_hdr;
3655         struct update_records   lur_update_rec;
3656         /* Note ur_update_rec has a variable size, so comment out
3657         * the following ur_tail, in case someone use it directly
3658         *
3659         * struct llog_rec_tail lur_tail;
3660         */
3661 };
3662
3663 /* sepol string format is:
3664  * <1-digit for SELinux status>:<policy name>:<policy version>:<policy hash>
3665  */
3666 /* Max length of the sepol string
3667  * Should be large enough to contain a sha512sum of the policy
3668  */
3669 #define SELINUX_MODE_LEN 1
3670 #define SELINUX_POLICY_VER_LEN 3 /* 3 chars to leave room for the future */
3671 #define SELINUX_POLICY_HASH_LEN 64
3672 #define LUSTRE_NODEMAP_SEPOL_LENGTH (SELINUX_MODE_LEN + NAME_MAX + \
3673                                      SELINUX_POLICY_VER_LEN + \
3674                                      SELINUX_POLICY_HASH_LEN + 3)
3675
3676 /* lu_nodemap flags */
3677 enum nm_flag_bits {
3678         NM_FL_ALLOW_ROOT_ACCESS = 0x1,
3679         NM_FL_TRUST_CLIENT_IDS = 0x2,
3680         NM_FL_DENY_UNKNOWN = 0x4,
3681         NM_FL_MAP_UID = 0x8,
3682         NM_FL_MAP_GID = 0x10,
3683         NM_FL_ENABLE_AUDIT = 0x20,
3684         NM_FL_FORBID_ENCRYPT = 0x40,
3685         NM_FL_MAP_PROJID = 0x80,
3686 };
3687 enum nm_flag2_bits {
3688         NM_FL2_READONLY_MOUNT = 0x1,
3689 };
3690
3691 /* nodemap records, uses 32 byte record length */
3692 #define LUSTRE_NODEMAP_NAME_LENGTH 16
3693 struct nodemap_cluster_rec {
3694         char                    ncr_name[LUSTRE_NODEMAP_NAME_LENGTH + 1];
3695         enum nm_flag_bits       ncr_flags:8;
3696         enum nm_flag2_bits      ncr_flags2:8;
3697         __u8                    ncr_padding1;
3698         __u32                   ncr_squash_projid;
3699         __u32                   ncr_squash_uid;
3700         __u32                   ncr_squash_gid;
3701 };
3702
3703 /* lnet_nid_t is 8 bytes */
3704 struct nodemap_range_rec {
3705         lnet_nid_t      nrr_start_nid;
3706         lnet_nid_t      nrr_end_nid;
3707         __u64           nrr_padding1;
3708         __u64           nrr_padding2;
3709 };
3710
3711 struct nodemap_id_rec {
3712         __u32   nir_id_fs;
3713         __u32   nir_padding1;
3714         __u64   nir_padding2;
3715         __u64   nir_padding3;
3716         __u64   nir_padding4;
3717 };
3718
3719 struct nodemap_global_rec {
3720         __u8    ngr_is_active;
3721         __u8    ngr_padding1;
3722         __u16   ngr_padding2;
3723         __u32   ngr_padding3;
3724         __u64   ngr_padding4;
3725         __u64   ngr_padding5;
3726         __u64   ngr_padding6;
3727 };
3728
3729 union nodemap_rec {
3730         struct nodemap_cluster_rec ncr;
3731         struct nodemap_range_rec nrr;
3732         struct nodemap_id_rec nir;
3733         struct nodemap_global_rec ngr;
3734 };
3735
3736 /*
3737  * rawobj stuff for GSS
3738  */
3739 typedef struct netobj_s {
3740         __u32 len;
3741         __u8 data[0];
3742 } netobj_t;
3743
3744 typedef struct rawobj_s {
3745         __u32 len;
3746         __u8 *data;
3747 } rawobj_t;
3748
3749 /*
3750  * GSS headers
3751  * following 3 headers must have the same sizes and offsets
3752  */
3753 struct gss_header {
3754         __u8 gh_version;     /* gss version */
3755         __u8 gh_sp;          /* sec part */
3756         __u16 gh_pad0;
3757         __u32 gh_flags;       /* wrap flags */
3758         __u32 gh_proc;        /* proc */
3759         __u32 gh_seq;         /* sequence */
3760         __u32 gh_svc;         /* service */
3761         __u32 gh_pad1;
3762         __u32 gh_pad2;
3763         __u32 gh_pad3;
3764         netobj_t gh_handle;      /* context handle */
3765 };
3766
3767 struct gss_rep_header {
3768         __u8 gh_version;
3769         __u8 gh_sp;
3770         __u16 gh_pad0;
3771         __u32 gh_flags;
3772         __u32 gh_proc;
3773         __u32 gh_major;
3774         __u32 gh_minor;
3775         __u32 gh_seqwin;
3776         __u32 gh_pad2;
3777         __u32 gh_pad3;
3778         netobj_t gh_handle;
3779 };
3780
3781 struct gss_err_header {
3782         __u8 gh_version;
3783         __u8 gh_sp;
3784         __u16 gh_pad0;
3785         __u32 gh_flags;
3786         __u32 gh_proc;
3787         __u32 gh_major;
3788         __u32 gh_minor;
3789         __u32 gh_pad1;
3790         __u32 gh_pad2;
3791         __u32 gh_pad3;
3792         netobj_t gh_handle;
3793 };
3794
3795 /*
3796  * GSS part of wire context information sent from client, saved and
3797  * used later by server.
3798  */
3799 struct gss_wire_ctx {
3800         __u32 gw_flags;
3801         __u32 gw_proc;
3802         __u32 gw_seq;
3803         __u32 gw_svc;
3804         rawobj_t gw_handle;
3805 };
3806
3807 /* This is the lu_ladvise struct which goes out on the wire.
3808  * Corresponds to the userspace arg llapi_lu_ladvise.
3809  * value[1-4] are unspecified fields, used differently by different advices */
3810 struct lu_ladvise {
3811         __u16 lla_advice;       /* advice type */
3812         __u16 lla_value1;       /* values for different advice types */
3813         __u32 lla_value2;
3814         __u64 lla_start;        /* first byte of extent for advice */
3815         __u64 lla_end;          /* last byte of extent for advice */
3816         __u32 lla_value3;
3817         __u32 lla_value4;
3818 };
3819
3820 /* This is the ladvise_hdr which goes on the wire, corresponds to the userspace
3821  * arg llapi_ladvise_hdr.
3822  * value[1-3] are unspecified fields, used differently by different advices */
3823 struct ladvise_hdr {
3824         __u32                   lah_magic;      /* LADVISE_MAGIC */
3825         __u32                   lah_count;      /* number of advices */
3826         __u64                   lah_flags;      /* from enum ladvise_flag */
3827         __u32                   lah_value1;     /* unused */
3828         __u32                   lah_value2;     /* unused */
3829         __u64                   lah_value3;     /* unused */
3830         struct lu_ladvise       lah_advise[0];  /* advices in this header */
3831 };
3832
3833 #if defined(__cplusplus)
3834 }
3835 #endif
3836
3837 #endif
3838 /** @} lustreidl */