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
|
#ifndef H_CPIO
#define H_CPIO
/** \ingroup payload
* \file lib/cpio.h
* Structures used to handle cpio payloads within rpm packages.
*
* @warning Rpm's cpio implementation may be different than standard cpio.
* The implementation is pretty close, but it has some behaviors which are
* more to RPM's liking. I tried to document the differing behavior in cpio.c,
* but I may have missed some (ewt).
*
*/
typedef struct rpmcpio_s * rpmcpio_t;
#ifdef __cplusplus
extern "C" {
#endif
/**
* Create CPIO file object
* @param fd file
* @param mode XXX
* @return CPIO object
**/
rpmcpio_t rpmcpioOpen(FD_t fd, char mode);
int rpmcpioClose(rpmcpio_t cpio);
off_t rpmcpioTell(rpmcpio_t cpio);
rpmcpio_t rpmcpioFree(rpmcpio_t cpio);
/**
* Write cpio header.
* @param cpio cpio archive
* @param path file name
* @param st stat struct with meta data
* @return 0 on success
*/
RPM_GNUC_INTERNAL
int rpmcpioHeaderWrite(rpmcpio_t cpio, char * path, struct stat * st);
RPM_GNUC_INTERNAL
int rpmcpioStrippedHeaderWrite(rpmcpio_t cpio, int fx, off_t fsize);
ssize_t rpmcpioWrite(rpmcpio_t cpio, const void * buf, size_t size);
/**
* Read cpio header. Iff fx is returned as -1 a cpio header was read
* and the file name is found in path. Otherwise a stripped header was read
* and the fx is the number of the file in the header/rpmfi. In this case
* rpmcpioSetExpectedFileSize() needs to be called with the file size of the
* payload content - with may be zero for hard links, directory or other
* special files.
* @retval fsm file path and stat info
* @retval path path of the file
* @retval fx number in the header of the file read
* @return 0 on success
*/
RPM_GNUC_INTERNAL
int rpmcpioHeaderRead(rpmcpio_t cpio, char ** path, int * fx);
/**
* Tell the cpio object the expected file size in the payload.
* The size must be zero for all but the last of hard linked files,
* directories and special files.
* This is needed after reading a stripped cpio header! See above.
*/
RPM_GNUC_INTERNAL
void rpmcpioSetExpectedFileSize(rpmcpio_t cpio, off_t fsize);
ssize_t rpmcpioRead(rpmcpio_t cpio, void * buf, size_t size);
#ifdef __cplusplus
}
#endif
#endif /* H_CPIO */
|