mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-09-05 08:45:22 +00:00
This is the start of the kernel_interface API that allows callers to specify a buffer, a file path, or a file descriptor that should be copied to the proper kernel interface for loading, replacing, or removing in-kernel policies. Support exists for reading from a file path or file descriptor into a buffer and then writing that buffer to the appropriate apparmorfs interface file. An aa_kernel_interface_write_policy() function is also provided for callers that want to route a buffer to an arbitrary file descriptor instead of to an apparmorfs file. This is useful when an admin instructs apparmor_parser to write to stdout or a file. Additionally, it removes some parser-specific globals from the kernel_interface.c file, such as OPTION_{ADD,REPLACE,REMOVE}, in preparation for moving the code into a library. Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Acked-by: John Johansen <john.johansen@canonical.com>
33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2014
|
|
* Canonical, Ltd. (All rights reserved)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, contact Novell, Inc. or Canonical
|
|
* Ltd.
|
|
*/
|
|
|
|
#ifndef __AA_KERNEL_INTERFACE_H
|
|
#define __AA_KERNEL_INTERFACE_H
|
|
|
|
int aa_find_iface_dir(char **dir);
|
|
int aa_kernel_interface_load_policy(const char *buffer, size_t size);
|
|
int aa_kernel_interface_load_policy_from_file(const char *path);
|
|
int aa_kernel_interface_load_policy_from_fd(int fd);
|
|
int aa_kernel_interface_replace_policy(const char *buffer, size_t size);
|
|
int aa_kernel_interface_replace_policy_from_file(const char *path);
|
|
int aa_kernel_interface_replace_policy_from_fd(int fd);
|
|
int aa_kernel_interface_remove_policy(const char *fqname);
|
|
int aa_kernel_interface_write_policy(int fd, const char *buffer, size_t size);
|
|
|
|
#endif /* __AA_KERNEL_INTERFACE_H */
|