| 1 | # ChangeLog for Path Sandbox |
1 | # ChangeLog for Path Sandbox |
| 2 | # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 |
2 | # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 |
| 3 | # $Header$ |
3 | # $Header$ |
|
|
4 | |
|
|
5 | 11 June 2005; Martin Schlemmer <azarah@gentoo.org> libsandbox.c: |
|
|
6 | Remove hopefully the last ld.so.preload bits we do not use anymore. |
|
|
7 | |
|
|
8 | 11 June 2005; Martin Schlemmer <azarah@gentoo.org> libsandbox.c: |
|
|
9 | Remove the unneeded canonicalize() calls in the wrappers - we do it anyhow |
|
|
10 | in check_syscall(). Should speed things up a bit (at least for the getcwd() |
|
|
11 | and long path name test it goes down to under a second, and not 10+ seconds |
|
|
12 | like before). Also warn if we skip checking due to the canonicalized path |
|
|
13 | being too long. |
|
|
14 | |
|
|
15 | 11 June 2005; Martin Schlemmer <azarah@gentoo.org> libsandbox.c: |
|
|
16 | More comment/readability cleanups. |
|
|
17 | |
|
|
18 | 10 June 2005; Martin Schlemmer <azarah@gentoo.org> canonicalize.c, getcwd.c, |
|
|
19 | sandbox_futils.c, libsandbox.c: |
|
|
20 | Some strncpy/strncat and other cleanups. |
|
|
21 | |
|
|
22 | * sandbox-1.2.9 (2005/06/09) |
|
|
23 | |
|
|
24 | 09 June 2005; Martin Schlemmer <azarah@gentoo.org> libsandbox.c: |
|
|
25 | Move symlink hack down a bit to try and minimize on the amount of lstat() |
|
|
26 | calls we do. |
|
|
27 | |
|
|
28 | 09 June 2005; Martin Schlemmer <azarah@gentoo.org> libsandbox.c, sandbox.c: |
|
|
29 | Add hack to allow writing to /proc/self/fd (or /dev/fd), bug #91516. |
|
|
30 | |
|
|
31 | 09 June 2005; Martin Schlemmer <azarah@gentoo.org> symbols.in, libsandbox.c: |
|
|
32 | Add wrapper for access() function, bug #85413. |
|
|
33 | |
|
|
34 | 09 June 2005; Martin Schlemmer <azarah@gentoo.org> getcwd.c: |
|
|
35 | Use generic getcwd() implementation from uclibc - should be more portable |
|
|
36 | and looks a bit cleaner. |
|
|
37 | |
|
|
38 | 09 June 2005; Martin Schlemmer <azarah@gentoo.org> getcwd.c, libsandbox.c: |
|
|
39 | Make sure our true_* pointers are initialized to NULL, and that we check for |
|
|
40 | all references that they are valid. |
|
|
41 | |
|
|
42 | 09 June 2005; Martin Schlemmer <azarah@gentoo.org> libsandbox.c: |
|
|
43 | Be default we will fail if the path name we try to canonicalize is too long. |
|
|
44 | This however could cause issues with some things (bug #94630 and #21766), so |
|
|
45 | if fail_nametoolong == 0, canonicalize() will return a null length string and |
|
|
46 | do not fail. |
| 4 | |
47 | |
| 5 | 08 June 2005; Martin Schlemmer <azarah@gentoo.org> sandbox.c, sandbox_futils.c: |
48 | 08 June 2005; Martin Schlemmer <azarah@gentoo.org> sandbox.c, sandbox_futils.c: |
| 6 | Do not abort if TMPDIR is not valid, but rather use '/tmp', bug #94360. Also |
49 | Do not abort if TMPDIR is not valid, but rather use '/tmp', bug #94360. Also |
| 7 | make sure we re-export the new TMPDIR environment variable. |
50 | make sure we re-export the new TMPDIR environment variable. |
| 8 | |
51 | |