Skip to content

Commit

Permalink
selinux: fix style issues in security/selinux/include/initial_sid_to_…
Browse files Browse the repository at this point in the history
…string.h

As part of on ongoing effort to perform more automated testing and
provide more tools for individual developers to validate their
patches before submitting, we are trying to make our code
"clang-format clean".  My hope is that once we have fixed all of our
style "quirks", developers will be able to run clang-format on their
patches to help avoid silly formatting problems and ensure their
changes fit in well with the rest of the SELinux kernel code.

Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
pcmoore committed Dec 22, 2023
1 parent cea9216 commit cc2a734
Showing 1 changed file with 28 additions and 29 deletions.
57 changes: 28 additions & 29 deletions security/selinux/include/initial_sid_to_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,32 @@
#include <linux/stddef.h>

static const char *const initial_sid_to_string[] = {
NULL,
"kernel",
"security",
"unlabeled",
NULL,
"file",
NULL,
"init",
"any_socket",
"port",
"netif",
"netmsg",
"node",
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
"devnull",
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 */
};

0 comments on commit cc2a734

Please sign in to comment.