2 * LiZaRd -- Fast compression method based on Lempel-Ziv 77
4 * (c) 2004, Robert Spalek <robert@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
11 #include "lib/lizard.h"
21 struct lizard_buffer {
24 struct sigaction old_sigsegv_handler;
27 struct lizard_buffer *
30 struct lizard_buffer *buf = xmalloc(sizeof(struct lizard_buffer));
33 handle_signal(SIGSEGV, &buf->old_sigsegv_handler);
38 lizard_free(struct lizard_buffer *buf)
41 munmap(buf->ptr, buf->len + PAGE_SIZE);
42 unhandle_signal(SIGSEGV, &buf->old_sigsegv_handler);
47 lizard_realloc(struct lizard_buffer *buf, uns max_len)
48 /* max_len needs to be aligned to PAGE_SIZE */
50 if (max_len <= buf->len)
52 if (max_len < 2*buf->len) // to ensure logarithmic cost
56 munmap(buf->ptr, buf->len + PAGE_SIZE);
58 buf->ptr = mmap(NULL, buf->len + PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
59 if (buf->ptr == MAP_FAILED)
60 die("mmap(anonymous): %m");
61 if (mprotect(buf->ptr + buf->len, PAGE_SIZE, PROT_NONE) < 0)
65 static jmp_buf safe_decompress_jump;
67 sigsegv_handler(int signal UNUSED)
69 log(L_ERROR, "SIGSEGV caught in lizard_decompress()");
70 longjmp(safe_decompress_jump, 1);
75 lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length)
76 /* Decompresses in into buf, sets *ptr to the data, and returns the
77 * uncompressed length. If an error has occured, -1 is returned and errno is
78 * set. The buffer buf is automatically reallocated. SIGSEGV is caught in
79 * case of buffer-overflow. The function is not re-entrant because of a
80 * static longjmp handler. */
82 uns lock_offset = ALIGN(expected_length + 3, PAGE_SIZE); // +3 due to the unaligned access
83 if (lock_offset > buf->len)
84 lizard_realloc(buf, lock_offset);
85 volatile sh_sighandler_t old_handler = signal_handler[SIGSEGV];
86 signal_handler[SIGSEGV] = sigsegv_handler;
88 if (!setjmp(safe_decompress_jump))
90 ptr = buf->ptr + buf->len - lock_offset;
91 int len = lizard_decompress(in, ptr);
92 if (len != (int) expected_length)
103 signal_handler[SIGSEGV] = old_handler;