blob: 8a56ec07992c75b021fca970d37e22f5e8a8bb48 [file] [log] [blame]
Nicolas Pitred1af0022005-05-20 16:59:17 -04001#ifndef DELTA_H
2#define DELTA_H
3
Nicolas Pitre08abe662006-04-24 23:07:47 -04004/* opaque object for delta index */
5struct delta_index;
6
7/*
8 * create_delta_index: compute index data from given buffer
9 *
10 * This returns a pointer to a struct delta_index that should be passed to
11 * subsequent create_delta() calls, or to free_delta_index(). A NULL pointer
Justin Lebar01689902014-03-31 15:11:46 -070012 * is returned on failure. The given buffer must not be freed or altered
Nicolas Pitre08abe662006-04-24 23:07:47 -040013 * before free_delta_index() is called. The returned pointer must be freed
14 * using free_delta_index().
15 */
Denton Liu55454422019-04-29 04:28:14 -040016struct delta_index *
Nicolas Pitre08abe662006-04-24 23:07:47 -040017create_delta_index(const void *buf, unsigned long bufsize);
18
19/*
20 * free_delta_index: free the index created by create_delta_index()
Nicolas Pitreff457152006-05-15 13:47:16 -040021 *
22 * Given pointer must be what create_delta_index() returned, or NULL.
Nicolas Pitre08abe662006-04-24 23:07:47 -040023 */
Denton Liu55454422019-04-29 04:28:14 -040024void free_delta_index(struct delta_index *index);
Nicolas Pitre08abe662006-04-24 23:07:47 -040025
26/*
Brian Downing11779e72007-07-12 07:55:48 -050027 * sizeof_delta_index: returns memory usage of delta index
28 *
29 * Given pointer must be what create_delta_index() returned, or NULL.
30 */
Denton Liu55454422019-04-29 04:28:14 -040031unsigned long sizeof_delta_index(struct delta_index *index);
Brian Downing11779e72007-07-12 07:55:48 -050032
33/*
Nicolas Pitre08abe662006-04-24 23:07:47 -040034 * create_delta: create a delta from given index for the given buffer
35 *
36 * This function may be called multiple times with different buffers using
37 * the same delta_index pointer. If max_delta_size is non-zero and the
38 * resulting delta is to be larger than max_delta_size then NULL is returned.
39 * On success, a non-NULL pointer to the buffer with the delta data is
40 * returned and *delta_size is updated with its size. The returned buffer
41 * must be freed by the caller.
42 */
Denton Liu55454422019-04-29 04:28:14 -040043void *
Nicolas Pitre08abe662006-04-24 23:07:47 -040044create_delta(const struct delta_index *index,
45 const void *buf, unsigned long bufsize,
46 unsigned long *delta_size, unsigned long max_delta_size);
47
48/*
49 * diff_delta: create a delta from source buffer to target buffer
50 *
51 * If max_delta_size is non-zero and the resulting delta is to be larger
52 * than max_delta_size then NULL is returned. On success, a non-NULL
53 * pointer to the buffer with the delta data is returned and *delta_size is
54 * updated with its size. The returned buffer must be freed by the caller.
55 */
56static inline void *
57diff_delta(const void *src_buf, unsigned long src_bufsize,
58 const void *trg_buf, unsigned long trg_bufsize,
59 unsigned long *delta_size, unsigned long max_delta_size)
60{
61 struct delta_index *index = create_delta_index(src_buf, src_bufsize);
62 if (index) {
63 void *delta = create_delta(index, trg_buf, trg_bufsize,
64 delta_size, max_delta_size);
65 free_delta_index(index);
66 return delta;
67 }
68 return NULL;
69}
70
71/*
72 * patch_delta: recreate target buffer given source buffer and delta data
73 *
74 * On success, a non-NULL pointer to the target buffer is returned and
75 * *trg_bufsize is updated with its size. On failure a NULL pointer is
76 * returned. The returned buffer must be freed by the caller.
77 */
Denton Liu55454422019-04-29 04:28:14 -040078void *patch_delta(const void *src_buf, unsigned long src_size,
Denton Liuad6dad02019-04-29 04:28:23 -040079 const void *delta_buf, unsigned long delta_size,
80 unsigned long *dst_size);
Nicolas Pitred1af0022005-05-20 16:59:17 -040081
Nicolas Pitredcde55b2005-06-29 02:49:56 -040082/* the smallest possible delta size is 4 bytes */
83#define DELTA_SIZE_MIN 4
84
85/*
86 * This must be called twice on the delta data buffer, first to get the
Nicolas Pitre08abe662006-04-24 23:07:47 -040087 * expected source buffer size, and again to get the target buffer size.
Nicolas Pitredcde55b2005-06-29 02:49:56 -040088 */
Nicolas Pitre89608442006-04-07 15:26:10 -040089static inline unsigned long get_delta_hdr_size(const unsigned char **datap,
90 const unsigned char *top)
Nicolas Pitredcde55b2005-06-29 02:49:56 -040091{
92 const unsigned char *data = *datap;
Matt Cooperd6a09e72021-11-02 15:46:10 +000093 size_t cmd, size = 0;
Nicolas Pitre39556fb2006-02-10 13:42:05 -050094 int i = 0;
95 do {
Nicolas Pitredcde55b2005-06-29 02:49:56 -040096 cmd = *data++;
Matt Cooperd6a09e72021-11-02 15:46:10 +000097 size |= st_left_shift(cmd & 0x7f, i);
Nicolas Pitredcde55b2005-06-29 02:49:56 -040098 i += 7;
Nicolas Pitre89608442006-04-07 15:26:10 -040099 } while (cmd & 0x80 && data < top);
Nicolas Pitredcde55b2005-06-29 02:49:56 -0400100 *datap = data;
Matt Cooperd6a09e72021-11-02 15:46:10 +0000101 return cast_size_t_to_ulong(size);
Nicolas Pitredcde55b2005-06-29 02:49:56 -0400102}
103
Nicolas Pitred1af0022005-05-20 16:59:17 -0400104#endif