Contributors: 8
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Andrew Morton |
45 |
41.28% |
2 |
20.00% |
Paul Moore |
30 |
27.52% |
1 |
10.00% |
Stephen D. Smalley |
17 |
15.60% |
1 |
10.00% |
Masahiro Yamada |
10 |
9.17% |
1 |
10.00% |
Christian Göttsche |
4 |
3.67% |
2 |
20.00% |
Greg Kroah-Hartman |
1 |
0.92% |
1 |
10.00% |
Stephen Hemminger |
1 |
0.92% |
1 |
10.00% |
Ondrej Mosnáček |
1 |
0.92% |
1 |
10.00% |
Total |
109 |
|
10 |
|
1234567891011121314151617181920212223242526272829303132333435363738
/* SPDX-License-Identifier: GPL-2.0 */
#ifdef __KERNEL__
#include <linux/stddef.h>
#else
#include <stddef.h>
#endif
static const char *const initial_sid_to_string[] = {
NULL, /* zero placeholder, not used */
"kernel", /* kernel / SECINITSID_KERNEL */
"security", /* security / SECINITSID_SECURITY */
"unlabeled", /* unlabeled / SECINITSID_UNLABELED */
NULL, /* fs */
"file", /* file / SECINITSID_FILE */
NULL, /* file_labels */
"init", /* init / SECINITSID_INIT */
"any_socket", /* any_socket / SECINITSID_ANY_SOCKET */
"port", /* port / SECINITSID_PORT */
"netif", /* netif / SECINITSID_NETIF */
"netmsg", /* netmsg / SECINITSID_NETMSG */
"node", /* node / SECINITSID_NODE */
NULL, /* igmp_packet */
NULL, /* icmp_socket */
NULL, /* tcp_socket */
NULL, /* sysctl_modprobe */
NULL, /* sysctl */
NULL, /* sysctl_fs */
NULL, /* sysctl_kernel */
NULL, /* sysctl_net */
NULL, /* sysctl_net_unix */
NULL, /* sysctl_vm */
NULL, /* sysctl_dev */
NULL, /* kmod */
NULL, /* policy */
NULL, /* scmp_packet */
"devnull", /* devnull / SECINITSID_DEVNULL */
};