1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
#ifndef H_FSM
#define H_FSM
/** \ingroup payload
* \file lib/fsm.h
* File state machine to handle a payload within an rpm package.
*/
#include <rpm/rpmfi.h>
extern int _fsm_debug;
/**
*/
#define FSM_VERBOSE 0x8000
#define FSM_INTERNAL 0x4000
#define FSM_SYSCALL 0x2000
#define FSM_DEAD 0x1000
#define _fv(_a) ((_a) | FSM_VERBOSE)
#define _fi(_a) ((_a) | FSM_INTERNAL)
#define _fs(_a) ((_a) | (FSM_INTERNAL | FSM_SYSCALL))
#define _fd(_a) ((_a) | (FSM_INTERNAL | FSM_DEAD))
typedef enum fileStage_e {
FSM_UNKNOWN = 0,
FSM_INIT = _fd(1),
FSM_PRE = _fd(2),
FSM_PROCESS = _fv(3),
FSM_POST = _fd(4),
FSM_UNDO = 5,
FSM_FINI = 6,
FSM_PKGINSTALL = _fd(7),
FSM_PKGERASE = _fd(8),
FSM_PKGBUILD = _fd(9),
FSM_PKGCOMMIT = _fd(10),
FSM_PKGUNDO = _fd(11),
FSM_CREATE = _fd(17),
FSM_MAP = _fd(18),
FSM_MKDIRS = _fi(19),
FSM_RMDIRS = _fi(20),
FSM_MKLINKS = _fi(21),
FSM_NOTIFY = _fd(22),
FSM_DESTROY = _fd(23),
FSM_VERIFY = _fd(24),
FSM_COMMIT = _fd(25),
FSM_UNLINK = _fs(33),
FSM_RENAME = _fs(34),
FSM_MKDIR = _fs(35),
FSM_RMDIR = _fs(36),
FSM_LSETFCON= _fs(39),
FSM_CHOWN = _fs(40),
FSM_LCHOWN = _fs(41),
FSM_CHMOD = _fs(42),
FSM_UTIME = _fs(43),
FSM_SYMLINK = _fs(44),
FSM_LINK = _fs(45),
FSM_MKFIFO = _fs(46),
FSM_MKNOD = _fs(47),
FSM_LSTAT = _fs(48),
FSM_STAT = _fs(49),
FSM_READLINK= _fs(50),
FSM_CHROOT = _fs(51),
FSM_NEXT = _fd(65),
FSM_EAT = _fd(66),
FSM_POS = _fd(67),
FSM_PAD = _fd(68),
FSM_TRAILER = _fd(69),
FSM_HREAD = _fd(70),
FSM_HWRITE = _fd(71),
FSM_DREAD = _fs(72),
FSM_DWRITE = _fs(73),
FSM_ROPEN = _fs(129),
FSM_READ = _fs(130),
FSM_RCLOSE = _fs(131),
FSM_WOPEN = _fs(132),
FSM_WRITE = _fs(133),
FSM_WCLOSE = _fs(134)
} fileStage;
#undef _fv
#undef _fi
#undef _fs
#undef _fd
/** \ingroup payload
*/
typedef enum cpioMapFlags_e {
CPIO_MAP_PATH = (1 << 0),
CPIO_MAP_MODE = (1 << 1),
CPIO_MAP_UID = (1 << 2),
CPIO_MAP_GID = (1 << 3),
CPIO_FOLLOW_SYMLINKS= (1 << 4), /*!< only for building. */
CPIO_MAP_ABSOLUTE = (1 << 5),
CPIO_MAP_ADDDOT = (1 << 6),
CPIO_ALL_HARDLINKS = (1 << 7), /*!< fail if hardlinks are missing. */
CPIO_MAP_TYPE = (1 << 8), /*!< only for building. */
CPIO_SBIT_CHECK = (1 << 9)
} cpioMapFlags;
typedef struct fsmIterator_s * FSMI_t;
typedef struct fsm_s * FSM_t;
typedef struct hardLink_s * hardLink_t;
/** \ingroup payload
* File name and stat information.
*/
struct fsm_s {
const char * path; /*!< Current file name. */
const char * opath; /*!< Original file name. */
FD_t cfd; /*!< Payload file handle. */
FD_t rfd; /*!< read: File handle. */
char * rdbuf; /*!< read: Buffer. */
char * rdb; /*!< read: Buffer allocated. */
size_t rdsize; /*!< read: Buffer allocated size. */
size_t rdlen; /*!< read: Number of bytes requested.*/
size_t rdnb; /*!< read: Number of bytes returned. */
FD_t wfd; /*!< write: File handle. */
char * wrbuf; /*!< write: Buffer. */
char * wrb; /*!< write: Buffer allocated. */
size_t wrsize; /*!< write: Buffer allocated size. */
size_t wrlen; /*!< write: Number of bytes requested.*/
size_t wrnb; /*!< write: Number of bytes returned. */
FSMI_t iter; /*!< File iterator. */
int ix; /*!< Current file iterator index. */
hardLink_t links; /*!< Pending hard linked file(s). */
hardLink_t li; /*!< Current hard linked file(s). */
unsigned int * archiveSize; /*!< Pointer to archive size. */
char ** failedFile; /*!< First file name that failed. */
const char * subdir; /*!< Current file sub-directory. */
char subbuf[64]; /* XXX eliminate */
const char * osuffix; /*!< Old, preserved, file suffix. */
const char * nsuffix; /*!< New, created, file suffix. */
const char * suffix; /*!< Current file suffix. */
char sufbuf[64]; /* XXX eliminate */
short * dnlx; /*!< Last dirpath verified indexes. */
char * ldn; /*!< Last dirpath verified. */
int ldnlen; /*!< Last dirpath current length. */
int ldnalloc; /*!< Last dirpath allocated length. */
int postpone; /*!< Skip remaining stages? */
int diskchecked; /*!< Has stat(2) been performed? */
int exists; /*!< Does current file exist on disk? */
int mkdirsdone; /*!< Have "orphan" dirs been created? */
int astriplen; /*!< Length of buildroot prefix. */
int rc; /*!< External file stage return code. */
int commit; /*!< Commit synchronously? */
cpioMapFlags mapFlags; /*!< Bit(s) to control mapping. */
const char * dirName; /*!< File directory name. */
const char * baseName; /*!< File base name. */
const char * fmd5sum; /*!< Hex MD5 sum (NULL disables). */
const char * md5sum; /*!< Binary MD5 sum (NULL disables). */
const char * fcontext; /*!< File security context (NULL disables). */
unsigned fflags; /*!< File flags. */
rpmFileAction action; /*!< File disposition. */
fileStage goal; /*!< Package state machine goal. */
fileStage stage; /*!< External file stage. */
fileStage nstage; /*!< Next file stage. */
struct stat sb; /*!< Current file stat(2) info. */
struct stat osb; /*!< Original file stat(2) info. */
};
#ifdef __cplusplus
extern "C" {
#endif
/**
* Return formatted string representation of file stages.
* @param a file stage
* @return formatted string
*/
const char * fileStageString(fileStage a) ;
/**
* Return formatted string representation of file disposition.
* @param a file dispostion
* @return formatted string
*/
const char * fileActionString(rpmFileAction a) ;
/**
* Create file state machine instance.
* @return file state machine
*/
FSM_t newFSM(void);
/**
* Destroy file state machine instance.
* @param fsm file state machine
* @return always NULL
*/
FSM_t freeFSM(FSM_t fsm);
/**
* Load external data into file state machine.
* @param fsm file state machine
* @param goal
* @param ts transaction set
* @param fi transaction element file info
* @param cfd
* @retval archiveSize pointer to archive size
* @retval failedFile pointer to first file name that failed (malloced)
* @return 0 on success
*/
int fsmSetup(FSM_t fsm, fileStage goal,
const rpmts ts,
const rpmfi fi,
FD_t cfd,
unsigned int * archiveSize,
char ** failedFile);
/**
* Clean file state machine.
* @param fsm file state machine
* @return 0 on success
*/
int fsmTeardown(FSM_t fsm);
/**
* Retrieve transaction set from file state machine iterator.
* @param fsm file state machine
* @return transaction set
*/
rpmts fsmGetTs(const FSM_t fsm);
/**
* Retrieve transaction element file info from file state machine iterator.
* @param fsm file state machine
* @return transaction element file info
*/
rpmfi fsmGetFi(const FSM_t fsm);
/**
* Map next file path and action.
* @param fsm file state machine
*/
int fsmMapPath(FSM_t fsm);
/**
* Map file stat(2) info.
* @param fsm file state machine
*/
int fsmMapAttrs(FSM_t fsm);
/**
* File state machine driver.
* @param fsm file state machine
* @param nstage next stage
* @return 0 on success
*/
int fsmNext(FSM_t fsm, fileStage nstage);
/**
* File state machine driver.
* @param fsm file state machine
* @param stage next stage
* @return 0 on success
*/
int fsmStage(FSM_t fsm, fileStage stage);
#ifdef __cplusplus
}
#endif
#endif /* H_FSM */
|