2005-10-27 01:17:23 +04:00
|
|
|
/* $NetBSD: register.c,v 1.16 2005/10/26 21:17:23 elad Exp $ */
|
2002-08-28 07:52:44 +04:00
|
|
|
/* $OpenBSD: register.c,v 1.11 2002/08/05 14:49:27 provos Exp $ */
|
2002-07-30 20:29:28 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Niels Provos.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/tree.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <err.h>
|
|
|
|
|
|
|
|
#include "intercept.h"
|
|
|
|
#include "systrace.h"
|
|
|
|
|
|
|
|
#define X(x) if ((x) == -1) \
|
|
|
|
err(1, "%s:%d: intercept failed", __func__, __LINE__)
|
|
|
|
|
|
|
|
void
|
|
|
|
systrace_initcb(void)
|
|
|
|
{
|
|
|
|
struct systrace_alias *alias;
|
|
|
|
struct intercept_translate *tl;
|
|
|
|
|
|
|
|
X(intercept_init());
|
|
|
|
|
|
|
|
#ifdef __NetBSD__
|
|
|
|
X(intercept_register_gencb(gen_cb, NULL));
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 5: open [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "open", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("netbsd", "open", 0);
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("netbsd", "open", 1, &ic_oflags);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("netbsd", "open", "netbsd", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 9: link */
|
|
|
|
X(intercept_register_sccb("netbsd", "link", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "link", 0);
|
|
|
|
intercept_register_transfn("netbsd", "link", 1);
|
2002-07-30 20:29:28 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 10: unlink [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "unlink", trans_cb, NULL));
|
2002-08-28 07:52:44 +04:00
|
|
|
tl = intercept_register_translation("netbsd", "unlink", 0,
|
|
|
|
&ic_translate_unlinkname);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("netbsd", "unlink", "netbsd", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 12: chdir */
|
|
|
|
X(intercept_register_sccb("netbsd", "chdir", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "chdir", 0);
|
|
|
|
|
|
|
|
/* 15: chmod */
|
|
|
|
X(intercept_register_sccb("netbsd", "chmod", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "chmod", 0);
|
|
|
|
intercept_register_translation("netbsd", "chmod", 1, &ic_modeflags);
|
|
|
|
|
|
|
|
/* 16: chown */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "chown", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "chown", 0);
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("netbsd", "chown", 1, &ic_uidt);
|
|
|
|
intercept_register_translation("netbsd", "chown", 2, &ic_gidt);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 23: setuid */
|
|
|
|
X(intercept_register_sccb("netbsd", "setuid", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "setuid", 0, &ic_uidt);
|
|
|
|
intercept_register_translation("netbsd", "setuid", 0, &ic_uname);
|
|
|
|
|
|
|
|
/* 33: access [fsread] */
|
|
|
|
X(intercept_register_sccb("netbsd", "access", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("netbsd", "access", 0);
|
|
|
|
alias = systrace_new_alias("netbsd", "access", "netbsd", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* 37: kill */
|
|
|
|
X(intercept_register_sccb("netbsd", "kill", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "kill", 0, &ic_pidname);
|
|
|
|
intercept_register_translation("netbsd", "kill", 1, &ic_signame);
|
|
|
|
|
|
|
|
/* 57: symlink */
|
|
|
|
X(intercept_register_sccb("netbsd", "symlink", trans_cb, NULL));
|
|
|
|
intercept_register_transstring("netbsd", "symlink", 0);
|
|
|
|
intercept_register_transfn("netbsd", "symlink", 1);
|
|
|
|
|
|
|
|
/* 58: readlink [fsread] */
|
|
|
|
X(intercept_register_sccb("netbsd", "readlink", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translation("netbsd", "readlink", 0,
|
|
|
|
&ic_translate_unlinkname);
|
|
|
|
alias = systrace_new_alias("netbsd", "readlink", "netbsd", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* 59: execve */
|
|
|
|
X(intercept_register_sccb("netbsd", "execve", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "execve", 0);
|
|
|
|
intercept_register_translation("netbsd", "execve", 1, &ic_trargv);
|
|
|
|
|
|
|
|
/* 61: chroot */
|
|
|
|
X(intercept_register_sccb("netbsd", "chroot", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "chroot", 0);
|
|
|
|
|
2005-06-25 16:53:32 +04:00
|
|
|
/* 71: mmap */
|
|
|
|
X(intercept_register_sccb("netbsd", "mmap", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "mmap", 2, &ic_memprot);
|
|
|
|
|
2005-06-25 16:22:43 +04:00
|
|
|
/* 74: mprotect */
|
|
|
|
X(intercept_register_sccb("netbsd", "mprotect", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "mprotect", 2, &ic_memprot);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 92: fcntl */
|
|
|
|
X(intercept_register_sccb("netbsd", "fcntl", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "fcntl", 1, &ic_fcntlcmd);
|
|
|
|
|
|
|
|
/* 97: socket */
|
|
|
|
X(intercept_register_sccb("netbsd", "socket", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "socket", 0, &ic_sockdom);
|
|
|
|
intercept_register_translation("netbsd", "socket", 1, &ic_socktype);
|
|
|
|
|
|
|
|
/* 98: connect */
|
|
|
|
X(intercept_register_sccb("netbsd", "connect", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "connect", 1,
|
|
|
|
&ic_translate_connect);
|
|
|
|
|
|
|
|
/* 104: bind */
|
|
|
|
X(intercept_register_sccb("netbsd", "bind", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "bind", 1,
|
|
|
|
&ic_translate_connect);
|
|
|
|
|
|
|
|
/* 123: fchown */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "fchown", trans_cb, NULL));
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("netbsd", "fchown", 0, &ic_fdt);
|
|
|
|
intercept_register_translation("netbsd", "fchown", 1, &ic_uidt);
|
|
|
|
intercept_register_translation("netbsd", "fchown", 2, &ic_gidt);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 124: fchmod */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "fchmod", trans_cb, NULL));
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("netbsd", "fchmod", 0, &ic_fdt);
|
|
|
|
intercept_register_translation("netbsd", "fchmod", 1, &ic_modeflags);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 128: rename */
|
|
|
|
X(intercept_register_sccb("netbsd", "rename", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "rename", 0,
|
2002-08-28 07:52:44 +04:00
|
|
|
&ic_translate_unlinkname);
|
2005-06-25 16:17:57 +04:00
|
|
|
intercept_register_transfn("netbsd", "rename", 1);
|
2002-07-30 20:29:28 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 133: sendto */
|
|
|
|
X(intercept_register_sccb("netbsd", "sendto", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "sendto", 4,
|
|
|
|
&ic_translate_connect);
|
2002-07-30 20:29:28 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 136: mkdir [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "mkdir", trans_cb, NULL));
|
2003-03-26 01:58:24 +03:00
|
|
|
tl = intercept_register_translation("netbsd", "mkdir", 0,
|
|
|
|
&ic_translate_unlinkname);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("netbsd", "mkdir", "netbsd", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 137: rmdir [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "rmdir", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("netbsd", "rmdir", 0);
|
|
|
|
alias = systrace_new_alias("netbsd", "rmdir", "netbsd", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 181: setgid */
|
|
|
|
X(intercept_register_sccb("netbsd", "setgid", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "setgid", 0, &ic_gidt);
|
|
|
|
|
|
|
|
/* 182: setegid */
|
|
|
|
X(intercept_register_sccb("netbsd", "setegid", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "setegid", 0, &ic_gidt);
|
|
|
|
|
|
|
|
/* 183: seteuid */
|
|
|
|
X(intercept_register_sccb("netbsd", "seteuid", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "seteuid", 0, &ic_uidt);
|
|
|
|
intercept_register_translation("netbsd", "seteuid", 0, &ic_uname);
|
|
|
|
|
|
|
|
/* 270: __posix_rename */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "__posix_rename", trans_cb, NULL));
|
2003-03-26 01:54:59 +03:00
|
|
|
intercept_register_translation("netbsd", "__posix_rename", 0,
|
|
|
|
&ic_translate_unlinkname);
|
2002-07-30 20:29:28 +04:00
|
|
|
intercept_register_transfn("netbsd", "__posix_rename", 1);
|
|
|
|
|
2005-09-07 23:04:57 +04:00
|
|
|
/* 278: compat_30___stat13 [fsread] */
|
|
|
|
X(intercept_register_sccb("netbsd", "compat_30___stat13", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("netbsd", "compat_30___stat13", 0);
|
|
|
|
alias = systrace_new_alias("netbsd", "compat_30___stat13", "netbsd", "fsread");
|
2005-06-25 16:17:57 +04:00
|
|
|
systrace_alias_add_trans(alias, tl);
|
2002-10-11 08:40:11 +04:00
|
|
|
|
2005-09-07 23:15:49 +04:00
|
|
|
/* 280: compat_30___lstat13 [fsread] */
|
2005-09-07 23:04:57 +04:00
|
|
|
X(intercept_register_sccb("netbsd", "compat_30___lstat13", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translation("netbsd", "compat_30___lstat13", 0,
|
2005-06-25 16:17:57 +04:00
|
|
|
&ic_translate_unlinkname);
|
2005-09-07 23:04:57 +04:00
|
|
|
alias = systrace_new_alias("netbsd", "compat_30___lstat13", "netbsd", "fsread");
|
2005-06-25 16:17:57 +04:00
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* 283: __posix_chown */
|
|
|
|
X(intercept_register_sccb("netbsd", "__posix_chown", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("netbsd", "__posix_chown", 0);
|
|
|
|
intercept_register_translation("netbsd", "__posix_chown", 1, &ic_uidt);
|
|
|
|
intercept_register_translation("netbsd", "__posix_chown", 2, &ic_gidt);
|
|
|
|
|
|
|
|
/* 284: __posix_fchown */
|
|
|
|
X(intercept_register_sccb("netbsd", "__posix_fchown", trans_cb, NULL));
|
|
|
|
intercept_register_translation("netbsd", "__posix_fchown", 0, &ic_fdt);
|
|
|
|
intercept_register_translation("netbsd", "__posix_fchown", 1, &ic_uidt);
|
|
|
|
intercept_register_translation("netbsd", "__posix_fchown", 2, &ic_gidt);
|
2002-07-30 20:29:28 +04:00
|
|
|
#else
|
|
|
|
X(intercept_register_gencb(gen_cb, NULL));
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* open */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "open", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("native", "open", 0);
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("native", "open", 1, &ic_oflags);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("native", "open", "native", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* link */
|
|
|
|
X(intercept_register_sccb("native", "link", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("native", "link", 0);
|
|
|
|
intercept_register_transfn("native", "link", 1);
|
|
|
|
|
|
|
|
/* unlink [fswrite] */
|
|
|
|
X(intercept_register_sccb("native", "unlink", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translation("native", "unlink", 0,
|
|
|
|
&ic_translate_unlinkname);
|
|
|
|
alias = systrace_new_alias("native", "unlink", "native", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* chdir */
|
|
|
|
X(intercept_register_sccb("native", "chdir", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("native", "chdir", 0);
|
|
|
|
|
|
|
|
/* chmod */
|
|
|
|
X(intercept_register_sccb("native", "chmod", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("native", "chmod", 0);
|
|
|
|
intercept_register_translation("native", "chmod", 1, &ic_modeflags);
|
|
|
|
|
|
|
|
/* chown */
|
|
|
|
X(intercept_register_sccb("native", "chown", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("native", "chown", 0);
|
|
|
|
intercept_register_translation("native", "chown", 1, &ic_uidt);
|
|
|
|
intercept_register_translation("native", "chown", 2, &ic_gidt);
|
|
|
|
|
|
|
|
/* setuid */
|
|
|
|
X(intercept_register_sccb("native", "setuid", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "setuid", 0, &ic_uidt);
|
|
|
|
intercept_register_translation("native", "setuid", 0, &ic_uname);
|
|
|
|
|
|
|
|
/* access [fsread] */
|
|
|
|
X(intercept_register_sccb("native", "access", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("native", "access", 0);
|
|
|
|
alias = systrace_new_alias("native", "access", "native", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* kill */
|
|
|
|
X(intercept_register_sccb("native", "kill", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "kill", 0, &ic_pidname);
|
|
|
|
intercept_register_translation("native", "kill", 1, &ic_signame);
|
|
|
|
|
|
|
|
/* stat [fsread] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "stat", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("native", "stat", 0);
|
|
|
|
alias = systrace_new_alias("native", "stat", "native", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* lstat [fsread] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "lstat", trans_cb, NULL));
|
2002-08-28 07:52:44 +04:00
|
|
|
tl = intercept_register_translation("native", "lstat", 0,
|
|
|
|
&ic_translate_unlinkname);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("native", "lstat", "native", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* symlink */
|
|
|
|
X(intercept_register_sccb("native", "symlink", trans_cb, NULL));
|
|
|
|
intercept_register_transstring("native", "symlink", 0);
|
|
|
|
intercept_register_transfn("native", "symlink", 1);
|
|
|
|
|
|
|
|
/* readlink [fsread] */
|
|
|
|
X(intercept_register_sccb("native", "readlink", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translation("native", "readlink", 0,
|
2002-08-28 07:52:44 +04:00
|
|
|
&ic_translate_unlinkname);
|
2005-06-25 16:17:57 +04:00
|
|
|
alias = systrace_new_alias("native", "readlink", "native", "fsread");
|
2002-07-30 20:29:28 +04:00
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* execve */
|
|
|
|
X(intercept_register_sccb("native", "execve", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("native", "execve", 0);
|
|
|
|
intercept_register_translation("native", "execve", 1, &ic_trargv);
|
|
|
|
|
|
|
|
/* chroot */
|
|
|
|
X(intercept_register_sccb("native", "chroot", trans_cb, NULL));
|
|
|
|
intercept_register_transfn("native", "chroot", 0);
|
|
|
|
|
2005-06-25 16:53:32 +04:00
|
|
|
/* mmap */
|
2005-10-27 01:17:23 +04:00
|
|
|
X(intercept_register_sccb("native", "mmap", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "mmap", 2, &ic_memprot);
|
2005-06-25 16:53:32 +04:00
|
|
|
|
2005-06-25 16:22:43 +04:00
|
|
|
/* mprotect */
|
2005-10-27 01:17:23 +04:00
|
|
|
X(intercept_register_sccb("native", "mprotect", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "mprotect", 2, &ic_memprot);
|
2005-06-25 16:22:43 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* fcntl */
|
|
|
|
X(intercept_register_sccb("native", "fcntl", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "fcntl", 1, &ic_fcntlcmd);
|
|
|
|
|
|
|
|
/* socket */
|
|
|
|
X(intercept_register_sccb("native", "socket", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "socket", 0, &ic_sockdom);
|
|
|
|
intercept_register_translation("native", "socket", 1, &ic_socktype);
|
|
|
|
|
|
|
|
/* connect */
|
|
|
|
X(intercept_register_sccb("native", "connect", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "connect", 1,
|
|
|
|
&ic_translate_connect);
|
|
|
|
|
|
|
|
/* bind */
|
|
|
|
X(intercept_register_sccb("native", "bind", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "bind", 1,
|
|
|
|
&ic_translate_connect);
|
|
|
|
|
|
|
|
/* fchown */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "fchown", trans_cb, NULL));
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("native", "fchown", 0, &ic_fdt);
|
|
|
|
intercept_register_translation("native", "fchown", 1, &ic_uidt);
|
|
|
|
intercept_register_translation("native", "fchown", 2, &ic_gidt);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* fchmod */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "fchmod", trans_cb, NULL));
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("native", "fchmod", 0, &ic_fdt);
|
|
|
|
intercept_register_translation("native", "fchmod", 1, &ic_modeflags);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* rename */
|
|
|
|
X(intercept_register_sccb("native", "rename", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "rename", 0,
|
2002-08-28 07:52:44 +04:00
|
|
|
&ic_translate_unlinkname);
|
2005-06-25 16:17:57 +04:00
|
|
|
intercept_register_transfn("native", "rename", 1);
|
2002-07-30 20:29:28 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* sendto */
|
|
|
|
X(intercept_register_sccb("native", "sendto", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "sendto", 4,
|
|
|
|
&ic_translate_connect);
|
2002-07-30 20:29:28 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* mkdir [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "mkdir", trans_cb, NULL));
|
2003-03-26 01:58:24 +03:00
|
|
|
tl = intercept_register_translation("native", "mkdir", 0,
|
|
|
|
&ic_translate_unlinkname);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("native", "mkdir", "native", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* rmdir [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "rmdir", trans_cb, NULL));
|
|
|
|
tl = intercept_register_transfn("native", "rmdir", 0);
|
|
|
|
alias = systrace_new_alias("native", "rmdir", "native", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* setgid */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "setgid", trans_cb, NULL));
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("native", "setgid", 0, &ic_gidt);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* setegid */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("native", "setegid", trans_cb, NULL));
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("native", "setegid", 0, &ic_gidt);
|
2002-10-11 08:40:11 +04:00
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* seteuid */
|
|
|
|
X(intercept_register_sccb("native", "seteuid", trans_cb, NULL));
|
|
|
|
intercept_register_translation("native", "seteuid", 0, &ic_uidt);
|
|
|
|
intercept_register_translation("native", "seteuid", 0, &ic_uname);
|
2002-07-30 20:29:28 +04:00
|
|
|
#endif
|
|
|
|
|
2002-08-01 12:47:03 +04:00
|
|
|
#if !(defined(__NetBSD__) && !defined(HAVE_LINUX_FCNTL_H))
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 5: open [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("linux", "open", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "open", 0);
|
2002-11-02 22:43:27 +03:00
|
|
|
intercept_register_translation("linux", "open", 1, &ic_linux_oflags);
|
2002-07-30 20:29:28 +04:00
|
|
|
alias = systrace_new_alias("linux", "open", "linux", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
2005-06-25 16:17:57 +04:00
|
|
|
/* 9: link */
|
|
|
|
X(intercept_register_sccb("linux", "link", trans_cb, NULL));
|
|
|
|
intercept_register_translink("linux", "link", 0);
|
|
|
|
intercept_register_translink("linux", "link", 1);
|
|
|
|
|
|
|
|
/* 10: unlink [fswrite] */
|
|
|
|
X(intercept_register_sccb("linux", "unlink", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "unlink", 0);
|
|
|
|
alias = systrace_new_alias("linux", "unlink", "linux", "fswrite");
|
2002-07-30 20:29:28 +04:00
|
|
|
systrace_alias_add_trans(alias, tl);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 11: execve */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("linux", "execve", trans_cb, NULL));
|
|
|
|
intercept_register_translink("linux", "execve", 0);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 15: chmod */
|
|
|
|
X(intercept_register_sccb("linux", "chmod", trans_cb, NULL));
|
|
|
|
intercept_register_translink("linux", "chmod", 0);
|
|
|
|
intercept_register_translation("linux", "chmod", 1, &ic_modeflags);
|
|
|
|
|
|
|
|
/* 33: access [fsread] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("linux", "access", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "access", 0);
|
|
|
|
alias = systrace_new_alias("linux", "access", "linux", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 38: rename */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("linux", "rename", trans_cb, NULL));
|
|
|
|
intercept_register_translink("linux", "rename", 0);
|
|
|
|
intercept_register_translink("linux", "rename", 1);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 39: mkdir [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("linux", "mkdir", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "mkdir", 0);
|
|
|
|
alias = systrace_new_alias("linux", "mkdir", "linux", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 40: rmdir [fswrite] */
|
2002-07-30 20:29:28 +04:00
|
|
|
X(intercept_register_sccb("linux", "rmdir", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "rmdir", 0);
|
|
|
|
alias = systrace_new_alias("linux", "rmdir", "linux", "fswrite");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
2005-06-25 16:17:57 +04:00
|
|
|
|
|
|
|
/* 83: symlink */
|
|
|
|
X(intercept_register_sccb("linux", "symlink", trans_cb, NULL));
|
|
|
|
intercept_register_transstring("linux", "symlink", 0);
|
|
|
|
intercept_register_translink("linux", "symlink", 1);
|
|
|
|
|
|
|
|
/* 85: readlink [fsread] */
|
|
|
|
X(intercept_register_sccb("linux", "readlink", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "readlink", 0);
|
|
|
|
alias = systrace_new_alias("linux", "readlink", "linux", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* 106: stat [fsread] */
|
|
|
|
X(intercept_register_sccb("linux", "stat", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "stat", 0);
|
|
|
|
alias = systrace_new_alias("linux", "stat", "linux", "fsread");
|
|
|
|
systrace_alias_add_trans(alias, tl);
|
|
|
|
|
|
|
|
/* 107: lstat */
|
|
|
|
X(intercept_register_sccb("linux", "lstat", trans_cb, NULL));
|
|
|
|
tl = intercept_register_translink("linux", "lstat", 0);
|
|
|
|
alias = systrace_new_alias("linux", "lstat", "linux", "fsread");
|
2002-07-30 20:29:28 +04:00
|
|
|
systrace_alias_add_trans(alias, tl);
|
2002-08-01 12:47:03 +04:00
|
|
|
#endif
|
2002-07-30 20:29:28 +04:00
|
|
|
|
|
|
|
X(intercept_register_execcb(execres_cb, NULL));
|
2003-06-03 08:33:44 +04:00
|
|
|
X(intercept_register_pfreecb(policyfree_cb, NULL));
|
2002-07-30 20:29:28 +04:00
|
|
|
}
|