1 /* $OpenBSD: sandbox-pledge.c,v 1.2 2020/10/18 11:32:01 djm Exp $ */
3 * Copyright (c) 2015 Theo de Raadt <deraadt@openbsd.org>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 #include <sys/types.h>
23 #include <sys/ioctl.h>
24 #include <sys/syscall.h>
25 #include <sys/socket.h>
37 #include "ssh-sandbox.h"
45 ssh_sandbox_init(struct monitor
*m
)
47 struct ssh_sandbox
*box
;
49 debug3_f("preparing pledge sandbox");
50 box
= xcalloc(1, sizeof(*box
));
57 ssh_sandbox_child(struct ssh_sandbox
*box
)
59 if (pledge("stdio", NULL
) == -1)
64 ssh_sandbox_parent_finish(struct ssh_sandbox
*box
)
71 ssh_sandbox_parent_preauth(struct ssh_sandbox
*box
, pid_t child_pid
)
73 box
->child_pid
= child_pid
;
74 /* Nothing to do here */
77 #endif /* SANDBOX_PLEDGE */