blob: dde1a5b8bd378375a3bbcc44607cc7eebb2ca00a [file] [log] [blame]
Damien Miller1b06dc32006-08-31 03:24:41 +10001/*
2 * Copyright (c) 2006 Chad Mynhier.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef _PORT_SOLARIS_H
18
19#include <sys/types.h>
20
Darren Tucker97528352010-11-05 12:03:05 +110021#include <pwd.h>
22
Damien Miller1b06dc32006-08-31 03:24:41 +100023void solaris_contract_pre_fork(void);
24void solaris_contract_post_fork_child(void);
25void solaris_contract_post_fork_parent(pid_t pid);
Darren Tucker97528352010-11-05 12:03:05 +110026void solaris_set_default_project(struct passwd *);
Darren Tucker907091a2016-02-19 09:05:39 +110027# ifdef USE_SOLARIS_PRIVS
Darren Tucker62782442016-03-11 14:47:41 +110028#include <priv.h>
Darren Tucker907091a2016-02-19 09:05:39 +110029priv_set_t *solaris_basic_privset(void);
Damien Miller4626cba2016-01-08 14:24:56 +110030void solaris_drop_privs_pinfo_net_fork_exec(void);
31void solaris_drop_privs_root_pinfo_net(void);
32void solaris_drop_privs_root_pinfo_net_exec(void);
Darren Tucker907091a2016-02-19 09:05:39 +110033# endif /* USE_SOLARIS_PRIVS */
Damien Miller1b06dc32006-08-31 03:24:41 +100034
35#endif