Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 1 | /* |
2 | * These structs are used by the system-use-sharing protocol, in which the | ||||
3 | * Rock Ridge extensions are embedded. It is quite possible that other | ||||
4 | * extensions are present on the disk, and this is fine as long as they | ||||
5 | * all use SUSP | ||||
6 | */ | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 8 | struct SU_SP_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 9 | __u8 magic[2]; |
10 | __u8 skip; | ||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 11 | } __attribute__ ((packed)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 13 | struct SU_CE_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 14 | __u8 extent[8]; |
15 | __u8 offset[8]; | ||||
16 | __u8 size[8]; | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | }; |
18 | |||||
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 19 | struct SU_ER_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 20 | __u8 len_id; |
21 | __u8 len_des; | ||||
22 | __u8 len_src; | ||||
23 | __u8 ext_ver; | ||||
24 | __u8 data[0]; | ||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 25 | } __attribute__ ((packed)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 27 | struct RR_RR_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 28 | __u8 flags[1]; |
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 29 | } __attribute__ ((packed)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 31 | struct RR_PX_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 32 | __u8 mode[8]; |
33 | __u8 n_links[8]; | ||||
34 | __u8 uid[8]; | ||||
35 | __u8 gid[8]; | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | }; |
37 | |||||
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 38 | struct RR_PN_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 39 | __u8 dev_high[8]; |
40 | __u8 dev_low[8]; | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
42 | |||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 43 | struct SL_component { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 44 | __u8 flags; |
45 | __u8 len; | ||||
46 | __u8 text[0]; | ||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 47 | } __attribute__ ((packed)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 49 | struct RR_SL_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 50 | __u8 flags; |
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 51 | struct SL_component link; |
52 | } __attribute__ ((packed)); | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 54 | struct RR_NM_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 55 | __u8 flags; |
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 56 | char name[0]; |
57 | } __attribute__ ((packed)); | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 59 | struct RR_CL_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 60 | __u8 location[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | }; |
62 | |||||
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 63 | struct RR_PL_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 64 | __u8 location[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | }; |
66 | |||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 67 | struct stamp { |
Arnd Bergmann | 34be4db | 2017-10-19 16:47:48 +0200 | [diff] [blame] | 68 | __u8 time[7]; /* actually 6 unsigned, 1 signed */ |
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 69 | } __attribute__ ((packed)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 71 | struct RR_TF_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 72 | __u8 flags; |
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 73 | struct stamp times[0]; /* Variable number of these beasts */ |
74 | } __attribute__ ((packed)); | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
76 | /* Linux-specific extension for transparent decompression */ | ||||
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 77 | struct RR_ZF_s { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 78 | __u8 algorithm[2]; |
79 | __u8 parms[2]; | ||||
80 | __u8 real_size[8]; | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | }; |
82 | |||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 83 | /* |
84 | * These are the bits and their meanings for flags in the TF structure. | ||||
85 | */ | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #define TF_CREATE 1 |
87 | #define TF_MODIFY 2 | ||||
88 | #define TF_ACCESS 4 | ||||
89 | #define TF_ATTRIBUTES 8 | ||||
90 | #define TF_BACKUP 16 | ||||
91 | #define TF_EXPIRATION 32 | ||||
92 | #define TF_EFFECTIVE 64 | ||||
93 | #define TF_LONG_FORM 128 | ||||
94 | |||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 95 | struct rock_ridge { |
Arnd Bergmann | cb91775 | 2017-10-19 16:47:49 +0200 | [diff] [blame^] | 96 | __u8 signature[2]; |
97 | __u8 len; | ||||
98 | __u8 version; | ||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 99 | union { |
Andrew Morton | 642217c | 2005-06-21 17:16:51 -0700 | [diff] [blame] | 100 | struct SU_SP_s SP; |
101 | struct SU_CE_s CE; | ||||
102 | struct SU_ER_s ER; | ||||
103 | struct RR_RR_s RR; | ||||
104 | struct RR_PX_s PX; | ||||
105 | struct RR_PN_s PN; | ||||
106 | struct RR_SL_s SL; | ||||
107 | struct RR_NM_s NM; | ||||
108 | struct RR_CL_s CL; | ||||
109 | struct RR_PL_s PL; | ||||
110 | struct RR_TF_s TF; | ||||
111 | struct RR_ZF_s ZF; | ||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 112 | } u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | }; |
114 | |||||
Andrew Morton | a089221 | 2005-06-21 17:16:48 -0700 | [diff] [blame] | 115 | #define RR_PX 1 /* POSIX attributes */ |
116 | #define RR_PN 2 /* POSIX devices */ | ||||
117 | #define RR_SL 4 /* Symbolic link */ | ||||
118 | #define RR_NM 8 /* Alternate Name */ | ||||
119 | #define RR_CL 16 /* Child link */ | ||||
120 | #define RR_PL 32 /* Parent link */ | ||||
121 | #define RR_RE 64 /* Relocation directory */ | ||||
122 | #define RR_TF 128 /* Timestamps */ |