mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
54f30b83fe
There are a few warnings in powerpc64 defconfig builds after -Wmissing-prototypes gets promoted from W=1 to the default warning set: arch/powerpc/mm/book3s64/pgtable.c:422:6: error: no previous prototype for 'arch_report_meminfo' [-Werror=missing-prototypes] arch/powerpc/platforms/cell/ras.c:275:5: error: no previous prototype for 'cbe_sysreset_hack' [-Werror=missing-prototypes] arch/powerpc/platforms/cell/spu_manage.c:29:21: error: no previous prototype for 'spu_devnode' [-Werror=missing-prototypes] arch/powerpc/platforms/pasemi/time.c:12:17: error: no previous prototype for 'pas_get_boot_time' [-Werror=missing-prototypes] arch/powerpc/platforms/powermac/feature.c:1532:13: error: no previous prototype for 'g5_phy_disable_cpu1' [-Werror=missing-prototypes] arch/powerpc/platforms/86xx/pic.c:28:13: error: no previous prototype for 'mpc86xx_init_irq' [-Werror=missing-prototypes] drivers/pci/pci-sysfs.c:936:13: error: no previous prototype for 'pci_adjust_legacy_attr' [-Werror=missing-prototypes] Address these by including the right header files or marking the functions static. The audit.c one is a bit tricky since compat_audit.h cannot include regular kernel headers tht have conflicting types on 32-bit powerpc. Signed-off-by: Arnd Bergmann <arnd@arndb.de> [mpe: Drop change to __vmemmap_free() which only exists in mm] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20230727122720.2558065-1-arnd@kernel.org
88 lines
2.0 KiB
C
88 lines
2.0 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/init.h>
|
|
#include <linux/types.h>
|
|
#include <linux/audit.h>
|
|
#include <asm/unistd.h>
|
|
|
|
#include "audit_32.h"
|
|
|
|
static unsigned dir_class[] = {
|
|
#include <asm-generic/audit_dir_write.h>
|
|
~0U
|
|
};
|
|
|
|
static unsigned read_class[] = {
|
|
#include <asm-generic/audit_read.h>
|
|
~0U
|
|
};
|
|
|
|
static unsigned write_class[] = {
|
|
#include <asm-generic/audit_write.h>
|
|
~0U
|
|
};
|
|
|
|
static unsigned chattr_class[] = {
|
|
#include <asm-generic/audit_change_attr.h>
|
|
~0U
|
|
};
|
|
|
|
static unsigned signal_class[] = {
|
|
#include <asm-generic/audit_signal.h>
|
|
~0U
|
|
};
|
|
|
|
int audit_classify_arch(int arch)
|
|
{
|
|
#ifdef CONFIG_PPC64
|
|
if (arch == AUDIT_ARCH_PPC)
|
|
return 1;
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
int audit_classify_syscall(int abi, unsigned syscall)
|
|
{
|
|
#ifdef CONFIG_PPC64
|
|
if (abi == AUDIT_ARCH_PPC)
|
|
return ppc32_classify_syscall(syscall);
|
|
#endif
|
|
switch(syscall) {
|
|
case __NR_open:
|
|
return AUDITSC_OPEN;
|
|
case __NR_openat:
|
|
return AUDITSC_OPENAT;
|
|
case __NR_socketcall:
|
|
return AUDITSC_SOCKETCALL;
|
|
case __NR_execve:
|
|
return AUDITSC_EXECVE;
|
|
case __NR_openat2:
|
|
return AUDITSC_OPENAT2;
|
|
default:
|
|
return AUDITSC_NATIVE;
|
|
}
|
|
}
|
|
|
|
static int __init audit_classes_init(void)
|
|
{
|
|
#ifdef CONFIG_PPC64
|
|
extern __u32 ppc32_dir_class[];
|
|
extern __u32 ppc32_write_class[];
|
|
extern __u32 ppc32_read_class[];
|
|
extern __u32 ppc32_chattr_class[];
|
|
extern __u32 ppc32_signal_class[];
|
|
audit_register_class(AUDIT_CLASS_WRITE_32, ppc32_write_class);
|
|
audit_register_class(AUDIT_CLASS_READ_32, ppc32_read_class);
|
|
audit_register_class(AUDIT_CLASS_DIR_WRITE_32, ppc32_dir_class);
|
|
audit_register_class(AUDIT_CLASS_CHATTR_32, ppc32_chattr_class);
|
|
audit_register_class(AUDIT_CLASS_SIGNAL_32, ppc32_signal_class);
|
|
#endif
|
|
audit_register_class(AUDIT_CLASS_WRITE, write_class);
|
|
audit_register_class(AUDIT_CLASS_READ, read_class);
|
|
audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class);
|
|
audit_register_class(AUDIT_CLASS_CHATTR, chattr_class);
|
|
audit_register_class(AUDIT_CLASS_SIGNAL, signal_class);
|
|
return 0;
|
|
}
|
|
|
|
__initcall(audit_classes_init);
|