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 *
22 lizard_alloc(uns max_len)
24 struct lizard_buffer *buf = xmalloc(sizeof(struct lizard_buffer));
25 buf->len = ALIGN(max_len, PAGE_SIZE);
26 buf->start = mmap(NULL, buf->len + PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
27 if (buf->start == MAP_FAILED)
28 die("mmap(anonymous): %m");
29 if (mprotect(buf->start + buf->len, PAGE_SIZE, PROT_NONE) < 0)
35 lizard_free(struct lizard_buffer *buf)
37 munmap(buf->start, buf->len + PAGE_SIZE);
41 static jmp_buf safe_decompress_jump;
43 sigsegv_handler(int UNUSED whatsit)
45 log(L_ERROR, "SIGSEGV caught in lizard_decompress()");
46 longjmp(safe_decompress_jump, 1);
50 lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length)
51 /* Decompresses into buf->ptr and returns the length of the uncompressed
52 * file. If an error has occured, -1 is returned and errno is set. SIGSEGV
53 * is caught in the case of buffer-overflow. The function is not re-entrant
54 * because of a static longjmp handler. */
56 uns lock_offset = ALIGN(expected_length, PAGE_SIZE);
57 if (lock_offset > buf->len)
62 volatile sighandler_t old_handler = signal(SIGSEGV, sigsegv_handler);
64 if (!setjmp(safe_decompress_jump))
66 buf->ptr = buf->start + buf->len - lock_offset;
67 len = lizard_decompress(in, buf->ptr);
76 signal(SIGSEGV, old_handler);