aboutsummaryrefslogtreecommitdiffstats
path: root/guts/execve.c
blob: 1dda5512ce62204e8f8c85188e3d9141b15877dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_execve(const char *filename, char *const *argv, char *const *envp) {
 *	int rc = -1;
 */
	/* note:  we don't canonicalize this, because we are intentionally
	 * NOT redirecting execs into the chroot environment.  If you try
	 * to execute /bin/sh, you get the actual /bin/sh, not
	 * <CHROOT>/bin/sh.  This allows use of basic utilities.  This
	 * design will likely be revisited.
	 */
	pseudo_client_op(OP_EXEC, PSA_EXEC, 0, 0, filename, 0);
	rc = real_execve(filename, argv, envp);

/*	return rc;
 * }
 */