-
Notifications
You must be signed in to change notification settings - Fork 12
/
deltarpm.h
96 lines (82 loc) · 2 KB
/
deltarpm.h
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
/*
* Copyright (c) 2005 Michael Schroeder ([email protected])
*
* This program is licensed under the BSD license, read LICENSE.BSD
* for further information
*/
#ifdef DELTARPM_64BIT
typedef uint64_t drpmuint;
typedef int64_t drpmint;
#else
typedef unsigned int drpmuint;
typedef int drpmint;
#endif
struct fileblock
{
struct rpmhead *h;
int cnt;
char **filenames;
unsigned int *filemodes;
unsigned int *filesizes;
unsigned int *filerdevs;
char **filelinktos;
char **filemd5s;
int digestalgo;
};
#define SEQCHECK_MD5 (1<<0)
#define SEQCHECK_SIZE (1<<1)
struct openfile;
struct seqdescr {
int i;
int cpiolen;
int datalen;
drpmuint off;
struct openfile *f;
};
struct deltarpm {
char *name;
int deltacomp;
unsigned char rpmlead[96];
struct rpmhead *h;
int version;
char *nevr;
unsigned char *seq;
unsigned int seql;
char *targetnevr;
unsigned char targetmd5[16];
unsigned int targetsize;
unsigned int targetcomp;
unsigned char *targetcomppara;
unsigned int targetcompparalen;
unsigned char *lead;
unsigned int leadl;
unsigned int payformatoff;
drpmuint paylen;
unsigned int inn;
unsigned int outn;
unsigned int *in;
unsigned int *out;
drpmuint outlen;
unsigned int addblklen;
unsigned char *addblk;
drpmuint inlen;
unsigned char *indata;
struct cfile *indata_cf;
unsigned int compheadlen;
unsigned int *offadjs;
unsigned int offadjn;
struct fileblock fb;
struct seqdescr *sdesc;
int nsdesc;
unsigned char *cpiodata;
struct deltarpm *next;
struct deltarpm *prev;
unsigned char *outptr;
int combaddblk;
};
/* from readdeltarpm.c */
int headtofb(struct rpmhead *h, struct fileblock *fb);
struct seqdescr *expandseq(unsigned char *seq, int seql, int *nump, struct fileblock *fb, int (*checkfunc)(char *, int, unsigned char *, unsigned int));
void readdeltarpm(char *n, struct deltarpm *d, struct cfile **cfp);
/* from writedeltarpm.c */
void writedeltarpm(struct deltarpm *d, unsigned char **indatalist);