Grid Community Toolkit  6.2.1705709074 (tag: v6.2.20240202)
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
port-linux.h
1 /*
2  * Copyright (c) 2006 Damien Miller <[email protected]>
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_LINUX_H
18 #define _PORT_LINUX_H
19 
20 #ifdef WITH_SELINUX
21 int ssh_selinux_enabled(void);
22 void ssh_selinux_setup_pty(char *, const char *);
23 void ssh_selinux_change_context(const char *);
24 void ssh_selinux_setfscreatecon(const char *);
25 
26 int sshd_selinux_enabled(void);
27 void sshd_selinux_copy_context(void);
28 void sshd_selinux_setup_exec_context(char *, int, int(char *, const char *), void *, int);
29 int sshd_selinux_setup_env_variables(int inetd, void *);
30 void sshd_selinux_change_privsep_preauth_context(void);
31 #endif
32 
33 #ifdef LINUX_OOM_ADJUST
34 void oom_adjust_restore(void);
35 void oom_adjust_setup(void);
36 #endif
37 
38 #endif /* ! _PORT_LINUX_H */