]> mj.ucw.cz Git - libucw.git/blob - lib/lizard-safe.c
OK, buck2obj looks nice now, so let us add it
[libucw.git] / lib / lizard-safe.c
1 /*
2  *      LiZaRd -- Fast compression method based on Lempel-Ziv 77
3  *
4  *      (c) 2004, Robert Spalek <robert@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #include "lib/lib.h"
11 #include "lib/lizard.h"
12
13 #include <stdlib.h>
14 #include <sys/mman.h>
15 #include <sys/user.h>
16 #include <fcntl.h>
17 #include <signal.h>
18 #include <setjmp.h>
19 #include <errno.h>
20
21 struct lizard_buffer *
22 lizard_alloc(uns max_len)
23 {
24   struct lizard_buffer *buf = xmalloc(sizeof(struct lizard_buffer));
25   buf->len = ALIGN(max_len + 3, PAGE_SIZE);             // +3 due to the unaligned access
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)
30     die("mprotect: %m");
31   buf->old_sigsegv_handler = xmalloc(sizeof(struct sigaction));
32   handle_signal(SIGSEGV, buf->old_sigsegv_handler);
33   return buf;
34 }
35
36 void
37 lizard_free(struct lizard_buffer *buf)
38 {
39   munmap(buf->start, buf->len + PAGE_SIZE);
40   unhandle_signal(SIGSEGV, buf->old_sigsegv_handler);
41   xfree(buf->old_sigsegv_handler);
42   xfree(buf);
43 }
44
45 static jmp_buf safe_decompress_jump;
46 static int
47 sigsegv_handler(int signal UNUSED)
48 {
49   log(L_ERROR, "SIGSEGV caught in lizard_decompress()");
50   longjmp(safe_decompress_jump, 1);
51   return 1;
52 }
53
54 int
55 lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length)
56   /* Decompresses into buf->ptr and returns the length of the uncompressed
57    * file.  If an error has occured, -1 is returned and errno is set.  SIGSEGV
58    * is caught in the case of buffer-overflow.  The function is not re-entrant
59    * because of a static longjmp handler.  */
60 {
61   uns lock_offset = ALIGN(expected_length + 3, PAGE_SIZE);      // +3 due to the unaligned access
62   if (lock_offset > buf->len)
63   {
64     errno = EFBIG;
65     return -1;
66   }
67   volatile sh_sighandler_t old_handler = signal_handler[SIGSEGV];
68   signal_handler[SIGSEGV] = sigsegv_handler;
69   int len;
70   if (!setjmp(safe_decompress_jump))
71   {
72     buf->ptr = buf->start + buf->len - lock_offset;
73     len = lizard_decompress(in, buf->ptr);
74   }
75   else
76   {
77     buf->ptr = NULL;
78     len = -1;
79     errno = EFAULT;
80   }
81   signal_handler[SIGSEGV] = old_handler;
82   return len;
83 }