rock.h 2.3 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
A
Andrew Morton 已提交
2 3 4 5 6 7 8
/*
 * These structs are used by the system-use-sharing protocol, in which the
 * Rock Ridge extensions are embedded.  It is quite possible that other
 * extensions are present on the disk, and this is fine as long as they
 * all use SUSP
 */

9
struct SU_SP_s {
10 11
	__u8 magic[2];
	__u8 skip;
A
Andrew Morton 已提交
12 13
} __attribute__ ((packed));

14
struct SU_CE_s {
15 16 17
	__u8 extent[8];
	__u8 offset[8];
	__u8 size[8];
L
Linus Torvalds 已提交
18 19
};

20
struct SU_ER_s {
21 22 23 24
	__u8 len_id;
	__u8 len_des;
	__u8 len_src;
	__u8 ext_ver;
25
	__u8 data[];
A
Andrew Morton 已提交
26 27
} __attribute__ ((packed));

28
struct RR_RR_s {
29
	__u8 flags[1];
A
Andrew Morton 已提交
30 31
} __attribute__ ((packed));

32
struct RR_PX_s {
33 34 35 36
	__u8 mode[8];
	__u8 n_links[8];
	__u8 uid[8];
	__u8 gid[8];
L
Linus Torvalds 已提交
37 38
};

39
struct RR_PN_s {
40 41
	__u8 dev_high[8];
	__u8 dev_low[8];
L
Linus Torvalds 已提交
42 43
};

A
Andrew Morton 已提交
44
struct SL_component {
45 46
	__u8 flags;
	__u8 len;
47
	__u8 text[];
A
Andrew Morton 已提交
48
} __attribute__ ((packed));
L
Linus Torvalds 已提交
49

50
struct RR_SL_s {
51
	__u8 flags;
A
Andrew Morton 已提交
52 53
	struct SL_component link;
} __attribute__ ((packed));
L
Linus Torvalds 已提交
54

55
struct RR_NM_s {
56
	__u8 flags;
57
	char name[];
A
Andrew Morton 已提交
58
} __attribute__ ((packed));
L
Linus Torvalds 已提交
59

60
struct RR_CL_s {
61
	__u8 location[8];
L
Linus Torvalds 已提交
62 63
};

64
struct RR_PL_s {
65
	__u8 location[8];
L
Linus Torvalds 已提交
66 67
};

A
Andrew Morton 已提交
68
struct stamp {
A
Arnd Bergmann 已提交
69
	__u8 time[7];		/* actually 6 unsigned, 1 signed */
A
Andrew Morton 已提交
70
} __attribute__ ((packed));
L
Linus Torvalds 已提交
71

72
struct RR_TF_s {
73
	__u8 flags;
74
	struct stamp times[];	/* Variable number of these beasts */
A
Andrew Morton 已提交
75
} __attribute__ ((packed));
L
Linus Torvalds 已提交
76 77

/* Linux-specific extension for transparent decompression */
78
struct RR_ZF_s {
79 80 81
	__u8 algorithm[2];
	__u8 parms[2];
	__u8 real_size[8];
L
Linus Torvalds 已提交
82 83
};

A
Andrew Morton 已提交
84 85 86
/*
 * These are the bits and their meanings for flags in the TF structure.
 */
L
Linus Torvalds 已提交
87 88 89 90 91 92 93 94 95
#define TF_CREATE 1
#define TF_MODIFY 2
#define TF_ACCESS 4
#define TF_ATTRIBUTES 8
#define TF_BACKUP 16
#define TF_EXPIRATION 32
#define TF_EFFECTIVE 64
#define TF_LONG_FORM 128

A
Andrew Morton 已提交
96
struct rock_ridge {
97 98 99
	__u8 signature[2];
	__u8 len;
	__u8 version;
A
Andrew Morton 已提交
100
	union {
101 102 103 104 105 106 107 108 109 110 111 112
		struct SU_SP_s SP;
		struct SU_CE_s CE;
		struct SU_ER_s ER;
		struct RR_RR_s RR;
		struct RR_PX_s PX;
		struct RR_PN_s PN;
		struct RR_SL_s SL;
		struct RR_NM_s NM;
		struct RR_CL_s CL;
		struct RR_PL_s PL;
		struct RR_TF_s TF;
		struct RR_ZF_s ZF;
A
Andrew Morton 已提交
113
	} u;
L
Linus Torvalds 已提交
114 115
};

A
Andrew Morton 已提交
116 117 118 119 120 121 122 123
#define RR_PX 1			/* POSIX attributes */
#define RR_PN 2			/* POSIX devices */
#define RR_SL 4			/* Symbolic link */
#define RR_NM 8			/* Alternate Name */
#define RR_CL 16		/* Child link */
#define RR_PL 32		/* Parent link */
#define RR_RE 64		/* Relocation directory */
#define RR_TF 128		/* Timestamps */