Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 425006
Collapse All | Expand All

(-)a/libsandbox/libsandbox.c (-1 lines)
Lines 671-677 static int check_access(sbcontext_t *sbcontext, int sb_nr, const char *func, Link Here
671
	    sb_nr == SB_NR_TRUNCATE64  ||
671
	    sb_nr == SB_NR_TRUNCATE64  ||
672
	    sb_nr == SB_NR_UNLINK      ||
672
	    sb_nr == SB_NR_UNLINK      ||
673
	    sb_nr == SB_NR_UNLINKAT    ||
673
	    sb_nr == SB_NR_UNLINKAT    ||
674
	    sb_nr == SB_NR_UTIME       ||
675
	    sb_nr == SB_NR_UTIMENSAT   ||
674
	    sb_nr == SB_NR_UTIMENSAT   ||
676
	    sb_nr == SB_NR_UTIMES      ||
675
	    sb_nr == SB_NR_UTIMES      ||
677
	    sb_nr == SB_NR__XMKNOD     ||
676
	    sb_nr == SB_NR__XMKNOD     ||
(-)a/libsandbox/symbols.h.in (-1 lines)
Lines 66-72 execvp Link Here
66
fexecve
66
fexecve
67
system
67
system
68
popen
68
popen
69
utime
70
utimes
69
utimes
71
utimensat
70
utimensat
72
futimesat
71
futimesat
(-)a/libsandbox/trace.c (-1 lines)
Lines 319-325 static bool trace_check_syscall(const struct syscall_entry *se, void *regs) Link Here
319
	else if (nr == SB_NR_TRUNCATE64)return  trace_check_syscall_C  (&state);
319
	else if (nr == SB_NR_TRUNCATE64)return  trace_check_syscall_C  (&state);
320
	else if (nr == SB_NR_UNLINK)    return  trace_check_syscall_C  (&state);
320
	else if (nr == SB_NR_UNLINK)    return  trace_check_syscall_C  (&state);
321
	else if (nr == SB_NR_UNLINKAT)  return  trace_check_syscall_DCF(&state);
321
	else if (nr == SB_NR_UNLINKAT)  return  trace_check_syscall_DCF(&state);
322
	else if (nr == SB_NR_UTIME)     return  trace_check_syscall_C  (&state);
323
	else if (nr == SB_NR_UTIMES)    return  trace_check_syscall_C  (&state);
322
	else if (nr == SB_NR_UTIMES)    return  trace_check_syscall_C  (&state);
324
	else if (nr == SB_NR_UTIMENSAT) return _trace_check_syscall_DCF(&state, 1);
323
	else if (nr == SB_NR_UTIMENSAT) return _trace_check_syscall_DCF(&state, 1);
325
324

Return to bug 425006