LinuxCommandLibrary

aa-complain

Disable AppArmor enforcement; log violations only

TLDR

Set policy to complain mode

$ sudo aa-complain [path/to/profile1 path/to/profile2 ...]
copy

Set policies to complain mode
$ sudo aa-complain [[-d|--dir]] [path/to/profiles]
copy

SYNOPSIS

aa-complain [-d|--dir <dir>] <profile> [<profile> ...]

PARAMETERS

-d <dir>, --dir <dir>
    Specify custom directory for AppArmor profile files instead of default /etc/apparmor.d/

-h, --help
    Display usage information and exit

DESCRIPTION

The aa-complain command is part of the AppArmor security toolkit on Linux systems. AppArmor is a mandatory access control (MAC) system that confines programs to a limited set of resources.

In complain mode, specified profiles log policy violations to the system log (typically /var/log/syslog or /var/log/audit/audit.log) without enforcing restrictions. This allows administrators to tune profiles by observing real-world access attempts before switching to enforce mode.

Running aa-complain profile_name (as root) creates a symlink in /etc/apparmor.d/force-complain/ pointing to the profile file, and updates the kernel's loaded profiles via /sys/kernel/security/apparmor/.load. Multiple profiles can be specified.

Ideal for development, testing, or debugging AppArmor policies. Use aa-enforce to revert to enforcement. Always verify with aa-status. Requires AppArmor kernel module loaded and utils package installed.

CAVEATS

Requires root privileges. Profiles must exist. Does not reload kernel if unchanged. Check aa-status after use. Not for production enforcement.

EXAMPLES

aa-complain /usr/bin/myapp
Sets /usr/bin/myapp profile to complain mode.

aa-complain -d /custom/profiles usr.sbin.nginx
Uses custom dir for nginx profile.

MECHANISM

Symlinks profile to /etc/apparmor.d/force-complain/<name> and writes to kernel interface.

HISTORY

Introduced with AppArmor 2.x by Canonical/Immunix. Evolved in Ubuntu; now in apparmor-utils package across distros like Debian, SUSE. Key for profile tuning since ~2009.

SEE ALSO

Copied to clipboard