--- apparmor-4.1.7.orig/debian/.gitlab-ci.yml +++ apparmor-4.1.7/debian/.gitlab-ci.yml @@ -0,0 +1,11 @@ +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +# Fails to reproduce libapache2-mod-apparmor +reprotest: + allow_failure: true + +variables: + SALSA_CI_REPROTEST_ARGS: --vary=-build_path + SALSA_CI_REPROTEST_ENABLE_DIFFOSCOPE: 1 --- apparmor-4.1.7.orig/debian/README.source +++ apparmor-4.1.7/debian/README.source @@ -0,0 +1,52 @@ +-*- mode: markdown -*- + +Introduction +============ + +This package uses the workflow documented in `dgit-maint-merge(7)`. + +Initial setup +============= + + git config dgit.default.quilt-mode single + +Patch handling +============== + +See `dgit-maint-merge(7)`. + +Importing a new upstream release +================================ + +1. Prepare the environment, e.g.: + + NEW_UPSTREAM_VERSION=2.11 + NEW_UPSTREAM_TAG=v2.11 + +2. Import the new upstream release: + + git fetch --tags origin && + git fetch --tags upstream-repo && + git tag --verify "$NEW_UPSTREAM_TAG" && + git merge "$NEW_UPSTREAM_TAG" + +3. Update debian/changelog and create the `orig.tar`: + + gbp dch --new-version "${NEW_UPSTREAM_VERSION}-1" debian/ && + dch --append "Import upstream release ${NEW_UPSTREAM_VERSION}" && + git commit debian/changelog \ + -m "$(echo "Update debian/changelog.\n\nGbp-Dch: Ignore\n")" && + git deborig "$NEW_UPSTREAM_TAG" + +4. Build (for example using `dgit-sbuild`), test, run QA checks (Lintian, + autopkgtest, etc.). Fix problems, rinse and repeat. + +5. Mark changelog entry as released: + + gbp dch --release && + git commit debian/changelog \ + -m "$(echo "Release ${NEW_UPSTREAM_VERSION}-1.\n\nGbp-Dch: Ignore\n")" + +6. Upload and push to Vcs-Git: + + git debpush --- apparmor-4.1.7.orig/debian/aa-update-browser +++ apparmor-4.1.7/debian/aa-update-browser @@ -0,0 +1,148 @@ +#!/bin/sh +# +# Copyright (C) 2010 Canonical, Ltd. +# Author: Jamie Strandboge +# License: GPLv2 +# +# Program for updating browser abstractions in Ubuntu. The program will +# search the specified profile for an include directive for a file in +# abstractions/ubuntu-browsers.d and update this file with the specified +# browsers abstractions. + +set -e + +topdir="/etc/apparmor.d" +reldir="abstractions/ubuntu-browsers.d" +dir="$topdir/$reldir" + +if [ ! -d "$dir" ]; then + echo "'$dir' is not a directory" >&2 + exit 1 +fi + +help() { + cat < + -u comma separated list of abstractions for profile to use + -d dry-run. Only show what would be done. + -l list available abstractions + -h this message + +Eg: +$ aa-update-browser -l +# aa-update-browser -u multimedia,productivity /etc/apparmor.d/usr.bin.firefox +EOM +} + +find_browser_include() { + fn="$1" + r=`egrep " *#include <$reldir/.*> *(|#.*)" "$fn" | cut -f 2 -d '<' | cut -f 1 -d '>'` + if [ -z "$r" ]; then + echo "Could not find '#include <$reldir/...>' in" >&2 + echo "$fn" >&2 + return + fi + basename "$r" +} + +existing_abstractions="" +for i in $dir/* ; do + if [ ! -s "$i" ]; then + continue + fi + + if head -1 "$i" | grep -q '^# This file is updated' ; then + continue + fi + + # This has a leading space, which we use below. + existing_abstractions="$existing_abstractions `basename $i`" +done + +updated= +dryrun= +while getopts "dhlu:" opt +do + case "$opt" in + d) dryrun="yes";; + u) updated="$OPTARG";; + l) + echo "$existing_abstractions" + exit 0 + ;; + h) + help + exit 0 + ;; + ?) + help + exit 1 + ;; + esac +done +shift $(($OPTIND - 1)) + +if [ -z "$1" ]; then + help + exit 1 +fi + +for p in $* ; do + if [ ! -s "$p" ]; then + echo "Could not find '$p'" >&2 + exit 1 + fi + + include=`find_browser_include $p` + if [ -z "$include" ]; then + exit 1 + fi + + if echo "$existing_abstractions" | grep -q " $include" ; then + echo "'$reldir/$include' is an existing abstraction" >&2 + exit 1 + fi + + tmp=`mktemp` + plugins_common_path="$dir/plugins-common" + cat > "$tmp" < + +EOM + for a in `echo "$updated" | tr [,] ' '`; do + echo "$existing_abstractions" | egrep -q " $a( |$)" || { + echo "'$a' is not an existing abstraction. Skipping." >&2 + continue + } + if [ -f "$dir/$a" ]; then + # TODO: add $plugins_common_path only for those browser abstractions + # that actually need it. + if [ -n "$plugins_common_path" ] && [ -e "$plugins_common_path" ]; then + echo "#include <$reldir/`basename $plugins_common_path`>" >> "$tmp" + plugins_common_path="" + fi + echo "#include <$reldir/$a>" >> "$tmp" + else + echo "Skipping '$a' (not found in '$dir')" >&2 + continue + fi + done + + if [ "$dryrun" = "yes" ]; then + echo "Skipping commit to '$dir/$include' (dry run)" >&2 + cat "$tmp" + rm -f "$tmp" + continue + fi + mv -Z -f "$tmp" "$dir/$include" || { + rm -f "$tmp" + exit 1 + } + chmod 644 "$dir/$include" +done + --- apparmor-4.1.7.orig/debian/aa-update-browser.8 +++ apparmor-4.1.7/debian/aa-update-browser.8 @@ -0,0 +1,42 @@ +.IX Title "AA-UPDATE-BROWSER 8" +.TH AA-UPDATE-BROWSER 8 "2010-08-11" "Canonical Ltd" "AppArmor" +.\" For nroff, turn off justification. Always turn off hyphenation; it makes +.\" way too many mistakes in technical documents. +.if n .ad l +.nh +.SH "NAME" +aa-update-browser \- update browser profiles with browser abstractions +.SH "SYNOPSIS" +.IX Header "SYNOPSIS" +\&\fBaa-update-browser\fR [option] +.SH "DESCRIPTION" +.IX Header "DESCRIPTION" +\&\fBaa-update-browser\fR will list current browser abstractions in +/etc/apparmor.d/abstractions/ubuntu-browsers.d as well as update browser +profiles to use those abstractions. +.SH "OPTIONS" +.IX Header "OPTIONS" +\&\fBaa-update-browser\fR accepts the following arguments: +.IP "\-d" 4 +.IX Item "-d" +dry-run. Only show what would be done. +.IP "\-u \s-1ABSTRACTIONS\s0" 4 +.IX Item "-u ABSTRACTIONS" +update the specified profile with the comma-separated list of +\s-1ABSTRACTIONS\s0. Specifying '' will remove all \s-1ABSTRACTIONS\s0. +.IP "\-l" 4 +.IX Item "-l" +show supported browser abstractions +.IP "\-h" 4 +.IX Item "-h" +show help +.SH "BUGS" +.IX Header "BUGS" +\&\fBaa-update-browser\fR will always add the plugins-common abstraction if +the list of abstractions \s-1ABSTRACTIONS\s0 is not empty. +.PP +If you find any additional bugs, please report them to Launchpad at +. +.SH "SEE ALSO" +.IX Header "SEE ALSO" +\&\fIapparmor\fR\|(7) --- apparmor-4.1.7.orig/debian/apparmor-notify.README.Debian +++ apparmor-4.1.7/debian/apparmor-notify.README.Debian @@ -0,0 +1,4 @@ +To use aa-notify, add your user to the "adm" group so it is allowed to +read the logs. + + -- intrigeri , Thu, 7 Dec 2017 09:37:37 +0100 --- apparmor-4.1.7.orig/debian/apparmor-notify.install +++ apparmor-4.1.7/debian/apparmor-notify.install @@ -0,0 +1,5 @@ +utils/aa-notify.desktop /etc/xdg/autostart +usr/sbin/aa-notify /usr/bin/ +etc/apparmor/notify.conf /etc/apparmor/ +usr/share/polkit-1/actions/net.apparmor.pkexec.aa-notify.policy +etc/apparmor/default_unconfined.template --- apparmor-4.1.7.orig/debian/apparmor-notify.maintscript +++ apparmor-4.1.7/debian/apparmor-notify.maintscript @@ -0,0 +1 @@ +mv_conffile /etc/xdg/autostart/apparmor-notify.desktop /etc/xdg/autostart/aa-notify.desktop 3.0.5-1~ --- apparmor-4.1.7.orig/debian/apparmor-notify.manpages +++ apparmor-4.1.7/debian/apparmor-notify.manpages @@ -0,0 +1 @@ +debian/tmp/usr/share/man/man8/aa-notify.8 --- apparmor-4.1.7.orig/debian/apparmor-profiles.bug-presubj +++ apparmor-4.1.7/debian/apparmor-profiles.bug-presubj @@ -0,0 +1,8 @@ +Please report upstream any problem with an AppArmor profile that is +included in the apparmor-profiles package: + + https://gitlab.com/apparmor/apparmor/-/issues + +The apparmor-profiles package exists solely to provide a way for users +to test these experimental profiles and help improve them upstream +if needed. Do not expect these profiles to work out-of-the-box. --- apparmor-4.1.7.orig/debian/apparmor-profiles.dirs +++ apparmor-4.1.7/debian/apparmor-profiles.dirs @@ -0,0 +1 @@ +/etc/apparmor.d/local --- apparmor-4.1.7.orig/debian/apparmor-profiles.install +++ apparmor-4.1.7/debian/apparmor-profiles.install @@ -0,0 +1,152 @@ +etc/apparmor.d/apache2.d/phpsysinfo +etc/apparmor.d/bin.ping +etc/apparmor.d/php-fpm +etc/apparmor.d/samba-bgqd +etc/apparmor.d/samba-dcerpcd +etc/apparmor.d/samba-rpcd +etc/apparmor.d/samba-rpcd-classic +etc/apparmor.d/samba-rpcd-spoolss +etc/apparmor.d/sbin.klogd +etc/apparmor.d/sbin.syslog-ng +etc/apparmor.d/sbin.syslogd +etc/apparmor.d/usr.lib.dovecot.anvil /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.auth /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.config /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.deliver /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.dict /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.director /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.doveadm-server /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.dovecot-auth /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.dovecot-lda /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.imap /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.imap-login /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.lmtp /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.log /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.managesieve /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.managesieve-login /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.pop3 /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.pop3-login /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.replicator /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.script-login /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.ssl-params /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.lib.dovecot.stats /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.sbin.avahi-daemon +etc/apparmor.d/usr.sbin.dnsmasq +etc/apparmor.d/usr.sbin.dovecot /usr/share/apparmor/extra-profiles/ +etc/apparmor.d/usr.sbin.identd +etc/apparmor.d/usr.sbin.mdnsd +etc/apparmor.d/usr.sbin.nmbd +etc/apparmor.d/usr.sbin.nscd +etc/apparmor.d/usr.sbin.smbd +etc/apparmor.d/usr.sbin.smbldap-useradd +etc/apparmor.d/usr.sbin.traceroute +etc/apparmor.d/zgrep /usr/share/apparmor/extra-profiles/ +usr/share/apparmor/extra-profiles/README +usr/share/apparmor/extra-profiles/bin.netstat +usr/share/apparmor/extra-profiles/bwrap-userns-restrict +usr/share/apparmor/extra-profiles/etc.cron.daily.logrotate +usr/share/apparmor/extra-profiles/etc.cron.daily.slocate.cron +usr/share/apparmor/extra-profiles/etc.cron.daily.tmpwatch +usr/share/apparmor/extra-profiles/sbin.dhclient +usr/share/apparmor/extra-profiles/sbin.dhclient-script +usr/share/apparmor/extra-profiles/sbin.dhcpcd +usr/share/apparmor/extra-profiles/sbin.portmap +usr/share/apparmor/extra-profiles/sbin.resmgrd +usr/share/apparmor/extra-profiles/sbin.rpc.lockd +usr/share/apparmor/extra-profiles/sbin.rpc.statd +usr/share/apparmor/extra-profiles/rpcbind +usr/share/apparmor/extra-profiles/usr.NX.bin.nxclient +usr/share/apparmor/extra-profiles/usr.bin.acroread +usr/share/apparmor/extra-profiles/usr.bin.apropos +usr/share/apparmor/extra-profiles/chromium_browser +usr/share/apparmor/extra-profiles/usr.bin.dumpcap +usr/share/apparmor/extra-profiles/usr.bin.evolution-2.10 +usr/share/apparmor/extra-profiles/usr.bin.fam +# The clamav-freshclam package ships its own profile +#usr/share/apparmor/extra-profiles/usr.bin.freshclam +usr/share/apparmor/extra-profiles/usr.bin.gaim +usr/share/apparmor/extra-profiles/usr.bin.man +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-bounce +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-maintd +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-make-ml.sh +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-process +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-receive +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-recieve +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-send +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-sub +usr/share/apparmor/extra-profiles/usr.bin.mlmmj-unsub +usr/share/apparmor/extra-profiles/usr.bin.opera +usr/share/apparmor/extra-profiles/usr.bin.passwd +usr/share/apparmor/extra-profiles/usr.bin.procmail +usr/share/apparmor/extra-profiles/usr.bin.skype +usr/share/apparmor/extra-profiles/usr.bin.spamc +usr/share/apparmor/extra-profiles/usr.bin.svnserve +usr/share/apparmor/extra-profiles/usr.bin.wireshark +usr/share/apparmor/extra-profiles/usr.bin.xfs +usr/share/apparmor/extra-profiles/usr.lib.GConf.2.gconfd-2 +usr/share/apparmor/extra-profiles/usr.lib.RealPlayer10.realplay +usr/share/apparmor/extra-profiles/usr.lib.bonobo.bonobo-activation-server +usr/share/apparmor/extra-profiles/usr.lib.evolution-data-server.evolution-data-server-1.10 +usr/share/apparmor/extra-profiles/firefox +usr/share/apparmor/extra-profiles/firefox.sh +usr/share/apparmor/extra-profiles/usr.lib.firefox.mozilla-xremote-client +usr/share/apparmor/extra-profiles/usr.lib.man-db.man +usr/share/apparmor/extra-profiles/postfix-anvil +usr/share/apparmor/extra-profiles/postfix-bounce +usr/share/apparmor/extra-profiles/postfix-cleanup +usr/share/apparmor/extra-profiles/postfix-discard +usr/share/apparmor/extra-profiles/postfix-dnsblog +usr/share/apparmor/extra-profiles/postfix-error +usr/share/apparmor/extra-profiles/postfix-flush +usr/share/apparmor/extra-profiles/postfix-lmtp +usr/share/apparmor/extra-profiles/postfix-local +usr/share/apparmor/extra-profiles/postfix-master +usr/share/apparmor/extra-profiles/postfix-nqmgr +usr/share/apparmor/extra-profiles/postfix-oqmgr +usr/share/apparmor/extra-profiles/postfix-pickup +usr/share/apparmor/extra-profiles/postfix-pipe +usr/share/apparmor/extra-profiles/postfix-postscreen +usr/share/apparmor/extra-profiles/postfix-proxymap +usr/share/apparmor/extra-profiles/postfix-qmgr +usr/share/apparmor/extra-profiles/postfix-qmqpd +usr/share/apparmor/extra-profiles/postfix-scache +usr/share/apparmor/extra-profiles/postfix-showq +usr/share/apparmor/extra-profiles/postfix-smtp +usr/share/apparmor/extra-profiles/postfix-smtpd +usr/share/apparmor/extra-profiles/postfix-spawn +usr/share/apparmor/extra-profiles/postfix-tlsmgr +usr/share/apparmor/extra-profiles/postfix-tlsproxy +usr/share/apparmor/extra-profiles/postfix-trivial-rewrite +usr/share/apparmor/extra-profiles/postfix-verify +usr/share/apparmor/extra-profiles/postfix-virtual +usr/share/apparmor/extra-profiles/unshare-userns-restrict +usr/share/apparmor/extra-profiles/usr.lib64.GConf.2.gconfd-2 +usr/share/apparmor/extra-profiles/usr.sbin.dhcpd +usr/share/apparmor/extra-profiles/usr.sbin.httpd2-prefork +usr/share/apparmor/extra-profiles/usr.sbin.imapd +usr/share/apparmor/extra-profiles/usr.sbin.in.fingerd +usr/share/apparmor/extra-profiles/usr.sbin.in.ftpd +usr/share/apparmor/extra-profiles/usr.sbin.in.ntalkd +usr/share/apparmor/extra-profiles/usr.sbin.ipop2d +usr/share/apparmor/extra-profiles/usr.sbin.ipop3d +usr/share/apparmor/extra-profiles/usr.sbin.lighttpd +usr/share/apparmor/extra-profiles/usr.sbin.oidentd +usr/share/apparmor/extra-profiles/usr.sbin.popper +usr/share/apparmor/extra-profiles/usr.sbin.postalias +usr/share/apparmor/extra-profiles/usr.sbin.postdrop +usr/share/apparmor/extra-profiles/usr.sbin.postmap +usr/share/apparmor/extra-profiles/usr.sbin.postqueue +usr/share/apparmor/extra-profiles/usr.sbin.sendmail +usr/share/apparmor/extra-profiles/usr.sbin.sendmail.postfix +usr/share/apparmor/extra-profiles/usr.sbin.sendmail.sendmail +usr/share/apparmor/extra-profiles/usr.sbin.spamd +usr/share/apparmor/extra-profiles/usr.sbin.squid +usr/share/apparmor/extra-profiles/usr.sbin.sshd +usr/share/apparmor/extra-profiles/usr.sbin.useradd +usr/share/apparmor/extra-profiles/usr.sbin.userdel +usr/share/apparmor/extra-profiles/usr.sbin.vsftpd +usr/share/apparmor/extra-profiles/usr.sbin.xinetd +usr/share/apparmor/extra-profiles/usr.bin.pyzorsocket +usr/share/apparmor/extra-profiles/usr.bin.razorsocket +usr/share/apparmor/extra-profiles/usr.sbin.clamd +usr/share/apparmor/extra-profiles/usr.sbin.haproxy --- apparmor-4.1.7.orig/debian/apparmor-profiles.lintian-overrides +++ apparmor-4.1.7/debian/apparmor-profiles.lintian-overrides @@ -0,0 +1,2 @@ +# If this README was elsewhere, it would be missed by even more people. +apparmor-profiles binary: package-contains-documentation-outside-usr-share-doc [usr/share/apparmor/extra-profiles/README] --- apparmor-4.1.7.orig/debian/apparmor-profiles.maintscript +++ apparmor-4.1.7/debian/apparmor-profiles.maintscript @@ -0,0 +1,19 @@ +rm_conffile /etc/apparmor.d/usr.bin.chromium-browser 4.1.0~beta5-6~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.anvil 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.auth 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.config 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.deliver 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.dict 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.dovecot-auth 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.dovecot-lda 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.imap 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.imap-login 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.lmtp 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.log 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.managesieve 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.managesieve-login 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.pop3 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.pop3-login 2.13-3~ +rm_conffile /etc/apparmor.d/usr.lib.dovecot.ssl-params 2.13-3~ +rm_conffile /etc/apparmor.d/usr.sbin.dovecot 2.13-3~ +rm_conffile /etc/apparmor.d/zgrep 4.1.0~beta5-6~ --- apparmor-4.1.7.orig/debian/apparmor-utils.dirs +++ apparmor-4.1.7/debian/apparmor-utils.dirs @@ -0,0 +1,2 @@ +/etc/apparmor +/var/log/apparmor --- apparmor-4.1.7.orig/debian/apparmor-utils.install +++ apparmor-4.1.7/debian/apparmor-utils.install @@ -0,0 +1,20 @@ +debian/aa-update-browser /usr/sbin/ +debian/vim-apparmor.yaml /usr/share/vim/registry/ +etc/apparmor/easyprof.conf +etc/apparmor/logprof.conf +etc/apparmor/severity.db +usr/bin/aa-easyprof +usr/sbin/aa-audit +usr/sbin/aa-autodep +usr/sbin/aa-cleanprof +usr/sbin/aa-complain +usr/sbin/aa-decode +usr/sbin/aa-disable +usr/sbin/aa-enforce +usr/sbin/aa-genprof +usr/sbin/aa-logprof +usr/sbin/aa-mergeprof +usr/sbin/aa-unconfined +usr/share/apparmor/apparmor.vim /usr/share/vim/addons/syntax/ +usr/share/apparmor/easyprof/ /usr/share/apparmor/ +usr/share/locale/*/LC_MESSAGES/apparmor-utils.mo --- apparmor-4.1.7.orig/debian/apparmor-utils.manpages +++ apparmor-4.1.7/debian/apparmor-utils.manpages @@ -0,0 +1,14 @@ +debian/aa-update-browser.8 +debian/tmp/usr/share/man/man5/logprof.conf.5 +debian/tmp/usr/share/man/man8/aa-audit.8 +debian/tmp/usr/share/man/man8/aa-autodep.8 +debian/tmp/usr/share/man/man8/aa-cleanprof.8 +debian/tmp/usr/share/man/man8/aa-complain.8 +debian/tmp/usr/share/man/man8/aa-decode.8 +debian/tmp/usr/share/man/man8/aa-disable.8 +debian/tmp/usr/share/man/man8/aa-easyprof.8 +debian/tmp/usr/share/man/man8/aa-enforce.8 +debian/tmp/usr/share/man/man8/aa-genprof.8 +debian/tmp/usr/share/man/man8/aa-logprof.8 +debian/tmp/usr/share/man/man8/aa-mergeprof.8 +debian/tmp/usr/share/man/man8/aa-unconfined.8 --- apparmor-4.1.7.orig/debian/apparmor.README.debian +++ apparmor-4.1.7/debian/apparmor.README.debian @@ -0,0 +1,5 @@ +For information about using, debugging and improving AppArmor on Debian, see: + + https://wiki.debian.org/AppArmor + + -- intrigeri , Thu, 7 Dec 2017 09:46:04 +0100 --- apparmor-4.1.7.orig/debian/apparmor.config +++ apparmor-4.1.7/debian/apparmor.config @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +# debconf +. /usr/share/debconf/confmodule +db_version 2.0 + +db_input medium apparmor/homedirs || true +db_go --- apparmor-4.1.7.orig/debian/apparmor.dirs +++ apparmor-4.1.7/debian/apparmor.dirs @@ -0,0 +1,7 @@ +/etc/apparmor.d/disable +/etc/apparmor.d/force-complain +/etc/apparmor.d/local +/etc/apparmor.d/tunables/home.d +/etc/apparmor.d/tunables/multiarch.d +/etc/apparmor.d/tunables/xdg-user-dirs.d +/var/cache/apparmor --- apparmor-4.1.7.orig/debian/apparmor.init +++ apparmor-4.1.7/debian/apparmor.init @@ -0,0 +1,157 @@ +#!/bin/sh +# ---------------------------------------------------------------------- +# Copyright (c) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# NOVELL (All rights reserved) +# Copyright (c) 2008, 2009 Canonical, Ltd. +# +# 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. +# ---------------------------------------------------------------------- +# Authors: +# Steve Beattie +# Kees Cook +# +# /etc/init.d/apparmor +# +# Note: "Required-Start: $local_fs" implies that the cache may not be available +# yet when /var is on a remote filesystem. The worst consequence this should +# have is slowing down the boot. +# +### BEGIN INIT INFO +# Provides: apparmor +# Required-Start: $local_fs +# Required-Stop: umountfs +# Default-Start: S +# Default-Stop: +# Short-Description: AppArmor initialization +# Description: AppArmor init script. This script loads all AppArmor profiles. +### END INIT INFO + +APPARMOR_FUNCTIONS=/lib/apparmor/rc.apparmor.functions + +# Functions needed by rc.apparmor.functions + +. /lib/lsb/init-functions + +aa_action() { + STRING=$1 + shift + $* + rc=$? + if [ $rc -eq 0 ] ; then + aa_log_success_msg $"$STRING " + else + aa_log_failure_msg $"$STRING " + fi + return $rc +} + +aa_log_action_start() { + log_action_begin_msg $@ +} + +aa_log_action_end() { + log_action_end_msg $@ +} + +aa_log_success_msg() { + log_success_msg $@ +} + +aa_log_warning_msg() { + log_warning_msg $@ +} + +aa_log_failure_msg() { + log_failure_msg $@ +} + +aa_log_skipped_msg() { + if [ -n "$1" ]; then + log_warning_msg "${1}: Skipped." + fi +} + +aa_log_daemon_msg() { + log_daemon_msg $@ +} + +aa_log_end_msg() { + log_end_msg $@ +} + +# Source AppArmor function library +if [ -f "${APPARMOR_FUNCTIONS}" ]; then + . ${APPARMOR_FUNCTIONS} +else + # Unable to find AppArmor initscript functions. + # Probably isn't installed - so go quietly per Debian policy 9.3.2. + exit 0 +fi + +usage() { + echo "Usage: $0 {start|stop|restart|reload|force-reload|status}" +} + +test -x ${PARSER} || exit 0 # by debian policy +# LSM is built-in, so it is either there or not enabled for this boot +test -d /sys/module/apparmor || exit 0 + +# do not perform start/stop/reload actions when running from liveCD +test -d /rofs/etc/apparmor.d && exit 0 + +rc=255 +case "$1" in + start) + if [ -x /usr/bin/systemd-detect-virt ] && \ + systemd-detect-virt --quiet --container && \ + ! is_container_with_internal_policy; then + aa_log_daemon_msg "Not starting AppArmor in container" + aa_log_end_msg 0 + exit 0 + fi + apparmor_start + rc=$? + ;; + restart|reload|force-reload) + if [ -x /usr/bin/systemd-detect-virt ] && \ + systemd-detect-virt --quiet --container && \ + ! is_container_with_internal_policy; then + aa_log_daemon_msg "Not starting AppArmor in container" + aa_log_end_msg 0 + exit 0 + fi + apparmor_restart + rc=$? + ;; + stop) + aa_log_daemon_msg "Leaving AppArmor profiles loaded" + cat >&2 < `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + configure|abort-remove|abort-deconfigure) + + # Remove old cache directories + if dpkg --compare-versions "$2" lt-nl "2.13-7"; then + rm -rf /etc/apparmor.d/cache /etc/apparmor.d/cache.d + fi + + # Remove old cache files that click, snapd or manual invokation + # of "apparmor_parser --cache-loc /var/cache/apparmor" may have created: + # since 2.13-1 apparmor_parser won't create cache files at the root + # of the cache-loc, but instead in sub-directories. + if dpkg --compare-versions "$2" lt-nl "2.13-7"; then + find /var/cache/apparmor -maxdepth 1 -type f '!' -name CACHEDIR.TAG -delete + fi + + # Try to determine values for apparmor/homedirs if the administrator + # hasn't already. + if dpkg --compare-versions "$2" lt-nl "2.5~pre+bzr1362-0ubuntu2"; then + db_get apparmor/homedirs + if [ -z "$RET" ]; then + # Get unique dirnames for uids between 1000 and 30000, then + # format them appropriately for AppArmor + dirs=`awk -F: '$3 >= 1000 && $3 < 30000 {printf "%s\n", $6}' /etc/passwd | xargs -d '\n' -n 1 dirname | grep -v '^/home$' | sed -e 's#\(.*\)#\\1/#g' | sed -e '/ / { s#\(.*\)#"\\1"#g }' | sort -u | tr '\n' ' '` + if [ -n "$dirs" ]; then + db_set apparmor/homedirs "$dirs" + fi + fi + fi + + db_get apparmor/homedirs + tmp=`mktemp` + cat > "$tmp" <> "$tmp" <> "$tmp" </dev/null || true + mv -Z -f "$tmp" /etc/apparmor.d/tunables/home.d/ubuntu + chmod 644 /etc/apparmor.d/tunables/home.d/ubuntu + + if [ ! -e /etc/apparmor.d/tunables/xdg-user-dirs.d/site.local ]; then + tmp=`mktemp` + cat > "$tmp" </dev/null || true + mv -Z -n "$tmp" /etc/apparmor.d/tunables/xdg-user-dirs.d/site.local + chmod 644 /etc/apparmor.d/tunables/xdg-user-dirs.d/site.local + fi + + # Remove various profiles from Ubuntu Touch since they no longer exist + # in the archive and require files from apparmor-easyprof-ubuntu (which + # was also removed) to load correctly. + if dpkg --compare-versions "$2" lt-nl "2.12-4ubuntu4"; then + for i in usr.bin.media-hub-server usr.bin.mediascanner-service-2.0 usr.lib.mediascanner-2.0.mediascanner-extractor usr.bin.messaging-app usr.bin.webbrowser-app ; do + rm -f "/etc/apparmor.d/$i" + rm -f "/etc/apparmor.d/local/$i" + done + fi + ;; + + abort-upgrade) + # Nothing to do + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +# Now that AppArmor is installed, attempt to reload profiles in the +# case of upgrades. +aa_log_action_start() { + echo "$@" +} +aa_log_action_end() { + echo -n +} +aa_log_daemon_msg() { + echo "$@" +} +aa_log_end_msg() { + echo -n +} +aa_log_failure_msg() { + echo "Error: $@" +} +aa_log_skipped_msg() { + echo "Skipped: $@" +} +aa_log_warning_msg() { + echo "Warning: $@" +} +case "$1" in + configure) + if aa-status --enabled 2>/dev/null; then + parse_profiles reload || true + fi + ;; +esac + +exit 0 --- apparmor-4.1.7.orig/debian/apparmor.postrm +++ apparmor-4.1.7/debian/apparmor.postrm @@ -0,0 +1,56 @@ +#!/bin/sh +# postrm script for apparmor +# +# see: dh_installdeb(1) +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + purge) + if [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_purge + fi + + if [ -e "/etc/apparmor.d/tunables/home.d/ubuntu" ]; then + rm -f /etc/apparmor.d/tunables/home.d/ubuntu + fi + if [ -e "/etc/apparmor.d/tunables/xdg-user-dirs.d/site.local" ]; then + rm -f /etc/apparmor.d/tunables/xdg-user-dirs.d/site.local + fi + if [ -d "/var/cache/apparmor" ]; then + # remove the parser-created subdirs + for i in /var/cache/apparmor/* ; do + if [ -d "$i" ]; then + rm -f "$i"/* "$i"/.features + rmdir "$i" + fi + done + fi + ;; + abort-install|abort-upgrade|remove|upgrade|failed-upgrade|disappear) + ;; + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- apparmor-4.1.7.orig/debian/apparmor.preinst +++ apparmor-4.1.7/debian/apparmor.preinst @@ -0,0 +1,27 @@ +#!/bin/sh +# preinst script for apparmor +# +# see: dh_installdeb(1) +set -e + +case "$1" in + install|upgrade|abort-upgrade) + # Remove old click/snapv1 state files on upgrade (dpkg will remove the + # directories) + if [ "$1" = "upgrade" ] && dpkg --compare-versions "$2" lt-nl "2.12-4ubuntu2"; then + rm -f /var/lib/apparmor/profiles/.*.md5sums + fi + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- apparmor-4.1.7.orig/debian/apparmor.prerm +++ apparmor-4.1.7/debian/apparmor.prerm @@ -0,0 +1,23 @@ +#!/bin/sh +# prerm script for apparmor +# +# see: dh_installdeb(1) +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- apparmor-4.1.7.orig/debian/apparmor.service +++ apparmor-4.1.7/debian/apparmor.service @@ -0,0 +1,35 @@ +[Unit] +Description=Load AppArmor profiles +DefaultDependencies=no +Before=sysinit.target +After=local-fs.target +After=systemd-journald-audit.socket +RequiresMountsFor=/var/cache/apparmor +AssertPathIsReadWrite=/sys/kernel/security/apparmor/.load +ConditionSecurity=apparmor +Documentation=man:apparmor(7) +Documentation=https://gitlab.com/apparmor/apparmor/wikis/home/ + +# Don't start this unit on the Ubuntu Live CD +ConditionPathExists=!/rofs/etc/apparmor.d + +# Don't start this unit on the Debian Live CD when using overlayfs +ConditionPathExists=!/run/live/overlay/work + +[Service] +Type=oneshot +ExecStart=/lib/apparmor/apparmor.systemd reload +ExecReload=/lib/apparmor/apparmor.systemd reload + +# systemd maps 'restart' to 'stop; start' which means removing AppArmor confinement +# from running processes (and not being able to re-apply it later). +# Upstream systemd developers refused to implement an option that allows overriding +# this behaviour, therefore we have to make ExecStop a no-op to error out on the +# safe side. +# +# If you really want to unload all AppArmor profiles, run aa-teardown +ExecStop=/bin/true +RemainAfterExit=yes + +[Install] +WantedBy=sysinit.target --- apparmor-4.1.7.orig/debian/apport/source_apparmor.py +++ apparmor-4.1.7/debian/apport/source_apparmor.py @@ -0,0 +1,88 @@ +'''apport package hook for apparmor + +(c) 2009-2014 Canonical Ltd. +Author: Steve Beattie + Jamie Strandboge +License: GPLv2 +''' + +from apport.hookutils import (attach_file, attach_file_if_exists, packaging, + command_output, root_command_output) +import os +import re +import codecs + + +def stringify(s): + '''Converts a byte array into a unicode string''' + return codecs.latin_1_decode(s)[0] + + +def recent_kernlog(pattern): + '''Extract recent messages from kern.log or message which match a regex. + pattern should be a "re" object. ''' + lines = '' + if os.path.exists('/var/log/kern.log'): + file = '/var/log/kern.log' + elif os.path.exists('/var/log/messages'): + file = '/var/log/messages' + else: + return lines + + with open(file, 'rb') as f: + for l in f.readlines(): + line = stringify(l) + if pattern.search(line): + lines += line + return lines + + +def recent_syslog(pattern): + '''Extract recent messages from syslog which match a regex. + pattern should be a "re" object. ''' + lines = '' + if os.path.exists('/var/log/syslog'): + file = '/var/log/syslog' + else: + return lines + + with open(file, 'rb') as f: + for l in f.readlines(): + line = stringify(l) + if pattern.search(line): + lines += line + return lines + + +def add_info(report, ui): + attach_file(report, '/proc/version_signature', 'ProcVersionSignature') + attach_file(report, '/proc/cmdline', 'ProcKernelCmdline') + + sec_re = re.compile('audit\(|apparmor|selinux|security', re.IGNORECASE) + report['KernLog'] = recent_kernlog(sec_re) + # DBus messages are reported to syslog + dbus_sec_re = re.compile('dbus.* apparmor', re.IGNORECASE) + report['Syslog'] = recent_syslog(dbus_sec_re) + + packages = ['apparmor', 'apparmor-utils', 'libapparmor1', + 'libapparmor-dev', 'apparmor-utils', + 'apparmor-profiles', + 'python3-apparmor', 'libpam-apparmor', + 'libapache2-mod-apparmor', 'python3-libapparmor', + 'auditd', 'libaudit0'] + + versions = '' + for package in packages: + try: + version = packaging.get_version(package) + except ValueError: + version = 'N/A' + if version is None: + version = 'N/A' + versions += '%s %s\n' % (package, version) + report['ApparmorPackages'] = versions + + # These need to be run as root + report['ApparmorStatusOutput'] = root_command_output(['/usr/sbin/apparmor_status']) + report['PstreeP'] = command_output(['/usr/bin/pstree', '-p']) + attach_file_if_exists(report, '/var/log/audit/audit.log', 'audit.log') --- apparmor-4.1.7.orig/debian/changelog +++ apparmor-4.1.7/debian/changelog @@ -0,0 +1,6148 @@ +apparmor (4.1.7-2) unstable; urgency=medium + + * Test suite: increase a couple timeouts to make the tests robust + on riscv64 (Closes: #1134203). Thanks to Aurelien Jarno for the patch! + + -- intrigeri Tue, 21 Apr 2026 08:17:42 +0000 + +apparmor (4.1.7-1) unstable; urgency=medium + + * Import upstream release 4.1.7 + * README.source: fix orig.tar creation + + -- intrigeri Tue, 17 Mar 2026 11:22:11 +0000 + +apparmor (4.1.6-3) unstable; urgency=medium + + * README.source: simplify thanks to git debpush + * dh_apparmor: add introspectable comment to document + we don't react to any configuration file + * autopkgtests: adjust to renamed MariaDB profile (Closes: #1128456) + + -- intrigeri Wed, 25 Feb 2026 10:01:19 +0000 + +apparmor (4.1.6-2) unstable; urgency=medium + + * Drop non-Linux build support + * Fix file executability mismatch between Git and dpkg-source -x + + -- intrigeri Thu, 12 Feb 2026 15:59:37 +0000 + +apparmor (4.1.6-1) unstable; urgency=medium + + [ intrigeri ] + * Import upstream release 4.1.6 (Closes: #1121917) + * Migrate to the workflow documented in dgit-maint-merge(7) + - Switch to 1.0 source format + - Apply Debian patches + - Delete obsolete Ubuntu patches + - Tell git-debpush that this package is non-native + - debian/watch: monitor Git tags, not tarballs + - Adjust Lintian overrides to new packaging workflow + * Improve README.source + - Drop useless git fetch verbosity + - Make remote name consistent + - Use long option name, for clarity + - Drop obsolete option + - Stop using gbp-dch snapshots + - Lint shell pipelines + * Remove unused upstream signing key + * Drop obsolete Lintian override + + [ Ryan Lee ] + * debian/rules: remove __pycache__ directory generated by + python3-libapparmor build + * debian/python3-libapparmor.install: include new location of Python + _LibAppArmor*.so libraries + + -- intrigeri Thu, 12 Feb 2026 13:35:08 +0000 + +apparmor (4.1.3-1) unstable; urgency=medium + + [ intrigeri] + * Import new upstream releases + * Update upstream signing key + * autopkgtest: stop testing libreoffice profiles (Closes: #1121255) + * debian/watch: track GitLab releases + * README.source: import from GitLab releases + * README.source: try to import upstream signature + * Override Lintian false positives + * debian/copyright: drop obsolete FSF address + * Drop "Priority: optional" which is now the default value + * Declare compliance with Policy 4.7.3 + * Remove redundant "Rules-Requires-Root: no" + * Disable running flake8 on upstream code + * Pin the 6.18 feature set + + [ Andrew Bower ] + * Exit initscript quietly if uninstalled. (Closes: #1107533) + + -- intrigeri Tue, 13 Jan 2026 14:07:38 +0000 + +apparmor (4.1.0-1) unstable; urgency=medium + + * Import new upstream release + * Drop backported patches that are now obsolete. + + -- intrigeri Thu, 10 Apr 2025 15:06:25 +0000 + +apparmor (4.1.0~beta5-6) unstable; urgency=medium + + [ Alban Browaeys ] + * Fix usr.bin.chromium-browser rm_conffile versioning (Closes: #1101071) + * Fix zgrep rm_conffile versioning (Closes: #1100007) + + -- intrigeri Wed, 02 Apr 2025 16:15:24 +0000 + +apparmor (4.1.0~beta5-5) unstable; urgency=medium + + * Cleanup obsolete /etc/apparmor.d/usr.bin.chromium-browser conffile + (Closes: #1100546) + + -- intrigeri Thu, 20 Mar 2025 11:00:01 +0000 + +apparmor (4.1.0~beta5-4) unstable; urgency=medium + + * Remove obsolete /etc/apparmor.d/zgrep conffile (Closes: #1100007) + * Don't ship the podman stub profile (Closes: #1100135) + + -- intrigeri Mon, 17 Mar 2025 11:15:38 +0000 + +apparmor (4.1.0~beta5-3) unstable; urgency=medium + + * upstream-mr-1558-avoid-blhc-false-positive.patch: new patch + * upstream-mr-1567-fix-riscv64.patch: new patch (Closes: #1099085). + Thanks to Bo YU for the patch. + + -- intrigeri Tue, 04 Mar 2025 10:52:41 +0000 + +apparmor (4.1.0~beta5-2) unstable; urgency=medium + + * Revert "gbp.conf: set debian-branch to debian/experimental" + * Add test-only build-dep on net-tools: utils test needs netstat + + -- intrigeri Thu, 20 Feb 2025 20:41:37 +0000 + +apparmor (4.1.0~beta5-1) unstable; urgency=medium + + * Import new upstream release + * gbp.conf: set debian-branch to debian/experimental + * debian/watch: track all releases, not only 3.x + * Drop backported patches that are now obsolete + * Refresh remaining patches + * Install aa-load and its man page + * Install new profiles and abstractions + * Stop installing etc/apparmor.d/local/usr.sbin.apache2, no longer needed; + accordingly, remove this obsolete conffile on upgrades + * d/control: add build-dependency on autoconf-archive + * d/apparmor-notify.install: install etc/apparmor/default_unconfined.template + and usr/share/polkit-1/actions/com.ubuntu.pkexec.aa-notify.policy + * apparmor-notify: add new dependencies on python3-tk, python3-ttkthemes, + and python3-gi + * Test libapparmor in override_dh-auto-test before the parser and binutils + * Run utils upstream tests during build and add the corresponding + build-dependencies annotated with !nocheck + * Add new symbols + * Remove obsolete Lintian overrides for false positives + * put-all-profiles-in-complain-mode.sh: skip profiles that have + the unconfined flag + * put-all-profiles-in-complain-mode.sh: improve code robustness + * put-all-profiles-in-complain-mode.sh, autopkgtests: use consistent + 4-spaces indentation + + -- intrigeri Thu, 20 Feb 2025 16:18:31 +0000 + +apparmor (3.1.7-4) unstable; urgency=medium + + * Remove obsolete conffile + /etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser + (Closes: #1074408) + + -- intrigeri Mon, 17 Feb 2025 14:27:37 +0000 + +apparmor (3.1.7-3) unstable; urgency=medium + + * Pin the Linux 6.12 feature set + * autopkgtests: + - warn if a rule is not enforced or downgraded + - update list of tested profiles + + -- intrigeri Mon, 17 Feb 2025 11:38:56 +0000 + +apparmor (3.1.7-2) unstable; urgency=medium + + [ Carles Pina i Estany ] + * Update Catalan translation (Closes: #1094958) + + [ intrigeri ] + * Make cgitb optional; cherry-picked from upstream + (Closes: #1084647, #1095405) + * Add upstream-commit-a84bcec4b5600b0fef28bb196e5150874029f58f-fix-ping.patch + (Closes: #1082190) + * Declare compliance with Policy 4.7.0 + + -- intrigeri Mon, 10 Feb 2025 11:36:39 +0000 + +apparmor (3.1.7-1) unstable; urgency=medium + + * Import new upstream release (Closes: #988204, #1057787, #1003158) + * debian/watch: track any 3.x release + * Fix DEP-3 metadata syntax on 2 patches + * Only include /usr/share/dpkg/architecture.mk once + * New patch: honor global CFLAGS when building Python library. + - This fixes missing hardening flags, spotted by blhc. + - Accordingly, refresh context of another patch. + * GitLab CI: don't vary the build path in reprotest + + -- intrigeri Thu, 13 Jun 2024 16:18:06 +0000 + +apparmor (3.0.13-2) unstable; urgency=medium + + * Revert "Vcs-* control fields: track the debian/experimental branch" + * Revert "gbp.conf: set debian-branch to debian/experimental" + * Upload to unstable + + -- intrigeri Mon, 25 Mar 2024 10:52:20 +0000 + +apparmor (3.0.13-1) experimental; urgency=medium + + [ intrigeri ] + * Don't install + /etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser + (Closes: #1039668) + * Declare compliance with Policy 4.6.2 + * Update build dependency: pkg-config → pkgconf + * Fix spelling error in README.source + * autopkgtests: enforce "set -u" in scripts + * autopkgtests: make scripts ShellCheck-compliant + * Import new upstream release (Closes: #1057453) + + [ Helmut Grohne ] + * Fix FTCBFS: Fix confusion of compiler flags for python extension + (Closes: #1057188) + + [ Michael Biebl ] + * Install PAM module, binaries and helper scripts into /usr. + (Closes: #1064151) + + [ Remus-Gabriel Chelu ] + * Add Romanian translation of debconf templates (Closes: #1031142) + + -- intrigeri Wed, 28 Feb 2024 17:21:10 +0000 + +apparmor (3.0.12-1) unstable; urgency=medium + + * New upstream releases: 3.0.9, 3.0.10, 3.0.11, and 3.0.12 + (Closes: #929990, #1037578, #1040481) + * Drop patches that are part of new upstream releases + * Adjust to profiles renamed upstream + * Refresh remaining patches + * Install new profiles + * Don't install new clamd profile: clamav-daemon ships one + * Adjust to profile renamed upstream + + -- intrigeri Sun, 16 Jul 2023 14:39:37 +0000 + +apparmor (3.0.8-3) unstable; urgency=medium + + * Cherry-pick a few small, targeted fixes from upstream 3.0 branch + + -- intrigeri Tue, 14 Feb 2023 11:49:15 +0000 + +apparmor (3.0.8-2) unstable; urgency=medium + + * Only pin the policy ABI, not the kernel ABI. + This brings back the desired behavior that we had on Bullseye. + Fixes regression introduced in 3.0.3-1. + * Drop obsolete dependency on lsb-base: it's transitional + and provided by sysvinit-utils, which is essential + + -- intrigeri Wed, 18 Jan 2023 11:10:22 +0000 + +apparmor (3.0.8-1) unstable; urgency=medium + + * New upstream release + * debian/watch: only track the 3.0 series for now + * Add upstream patch to fix test suite + + -- intrigeri Sat, 10 Dec 2022 17:54:51 +0000 + +apparmor (3.0.7-1) unstable; urgency=medium + + * New upstream release + + -- intrigeri Tue, 16 Aug 2022 14:09:22 +0000 + +apparmor (3.0.6-1) unstable; urgency=medium + + * New upstream release (Closes: #1015354) + * Drop patch that was applied upstream + * Enable LTO + * Declare compliance with Policy 4.6.1 + + -- intrigeri Tue, 02 Aug 2022 09:15:54 +0000 + +apparmor (3.0.5-1) unstable; urgency=medium + + * New upstream release + * Drop patches that were applied upstream + * Drop profile-load script: part of upstream 3.0.5 + * Install newly upstreamed aa-notify.desktop instead of the custom Debian one + * Rename debian/master branch to debian/unstable + * New patch, to fix new upstream "dirtest" test + * Install new samba-* profiles + + -- intrigeri Mon, 25 Jul 2022 13:46:44 +0000 + +apparmor (3.0.4-3) unstable; urgency=medium + + * Cherry-pick 7 patches from upstream apparmor-3.0 branch (Closes: #1003153) + * Adjust overrides for recent Lintian + * Override Lintian false positives + + -- intrigeri Wed, 06 Jul 2022 07:48:25 +0000 + +apparmor (3.0.4-2) unstable; urgency=medium + + * Add upstream commit that makes the test suite compatible with Python 3.10 + + -- intrigeri Wed, 23 Feb 2022 09:48:59 +0000 + +apparmor (3.0.4-1) unstable; urgency=medium + + * New upstream release + * apparmor-profiles: install new samba-bgqd profile + * Drop backported patches that are now obsolete + * debian/allow-access-to-ibus-socket.patch: drop support for pre-Bullseye + ibus path + * Declare compliance with Policy 4.6.0.1 + * Drop XS- prefix for adopted Python-Version control field + * Add new symbols + + -- intrigeri Sat, 12 Feb 2022 12:34:23 +0000 + +apparmor (3.0.3-6) unstable; urgency=medium + + * debian/rules: let "set -e" take effect (Closes: #998843) + * Add support for Python 3.10 (Closes: #998686): + - upstream-ab4cfb5e-replace-distutils-with-setuptools.patch: new patch, + edited to drop changes to upstream .gitignore. + - Add build-dependency on python3-setuptools + + -- intrigeri Thu, 18 Nov 2021 09:15:55 +0000 + +apparmor (3.0.3-5) unstable; urgency=medium + + [ Debian Janitor ] + * Remove constraints unnecessary since stretch. + + [ Helmut Grohne ] + * Make the package cross-buildable (Closes: #984582): + - Multiarchify python Build-Depends + - Let dh_auto_build pass cross tools to make + - Annotate perl build-dependency with !nocheck + + [ intrigeri ] + * Remove obsolete libapparmor-perl on upgrade + + -- intrigeri Sat, 23 Oct 2021 10:22:04 +0000 + +apparmor (3.0.3-4) unstable; urgency=medium + + * Merge apparmor-easyprof into apparmor-utils (Closes: #972880) + * Make apparmor-utils and python3-apparmor arch:all (Closes: #972881) + + -- intrigeri Sun, 17 Oct 2021 17:23:17 +0000 + +apparmor (3.0.3-3) unstable; urgency=medium + + * Adjust gbp.conf and Vcs-* control fields for 3.0.x now being in sid. + * Stop building the libapparmor-perl binary package (Closes: #993565) + * Update Lintian overrides + * Add B-D on dh-sequence-python3, to workaround #996089 in Lintian + * B-D: python3-all → python3-all:any, to appease Lintian + + -- intrigeri Wed, 13 Oct 2021 05:56:16 +0000 + +apparmor (3.0.3-2) unstable; urgency=medium + + * Upload to unstable + + -- intrigeri Fri, 03 Sep 2021 08:23:30 +0000 + +apparmor (3.0.3-1) experimental; urgency=medium + + * New upstream release + * Drop debian/Revert-libapparmor-fixing-setup.py-call-when-crosscompili.patch: + obsolete + * Refresh patches + * Merge changes from sid, up to 2.13.6-10 + * upstream-6cfc6eee-python-3.10.patch: new patch, + for compatibility with Python 3.10 + + -- intrigeri Mon, 23 Aug 2021 18:25:14 +0000 + +apparmor (3.0.1-6) experimental; urgency=medium + + * autopkgtest: use hint-testsuite-triggers to ensure dummy test is not run + + -- intrigeri Fri, 02 Apr 2021 11:38:16 +0000 + +apparmor (3.0.1-5) experimental; urgency=medium + + * Merge changes from sid, up to 2.13.6-9 + + -- intrigeri Fri, 12 Feb 2021 14:37:24 +0000 + +apparmor (3.0.1-4) experimental; urgency=medium + + * apparmor: drop obsolete dependency on python3 (#981442) + * Merge changes from sid, up to 2.13.6-7 + + -- intrigeri Fri, 05 Feb 2021 06:48:41 +0000 + +apparmor (3.0.1-3) experimental; urgency=medium + + * Supersede failed, incomplete dgit upload + + -- intrigeri Sun, 27 Dec 2020 10:44:24 +0000 + +apparmor (3.0.1-2) experimental; urgency=medium + + * Supersede failed, incomplete dgit upload + + -- intrigeri Sun, 27 Dec 2020 10:16:16 +0000 + +apparmor (3.0.1-1) experimental; urgency=medium + + * New upstream release + * Vcs-* control fields: track the debian/experimental branch + * Drop upstream-commit-*.patch: included in 3.0.1 + * Refresh patches + * Add aa_features_new_from_file to symbols file + * Pin the Linux 5.9 feature set + * Only pin the policy ABI, not the kernel ABI + + -- intrigeri Sun, 27 Dec 2020 09:23:01 +0000 + +apparmor (3.0.0-1) experimental; urgency=medium + + * New upstream release (Closes: #930031) + * Merge ubuntu/3.0.0-0ubuntu1: + - Drop upstreamed patches + - d/apparmor.install: + + install new aa-features-abi binary to /usr/bin + + include abi/ directory and tunables/etc. + - d/apparmor.manpages: + + install new aa-features-abi.1 manpage + + install apparmor_xattrs.7 manpage + - d/apparmor-profiles.install: + + install new usr.lib.dovecot.script-login + + adjust for renamed postfix profiles + + add usr.bin.dumpcap to extra-profiles + + remove usr.sbin.nmbd and usr.sbin.smbd from extra-profiles + (already in apparmor-profiles) + - d/control: + + apparmor-utils: drop perl dependency + + Update apparmor-notify dependencies: it was ported to Python + - d/tests/test-installed: + + include libraries/ in workdir so tests have access to private + headers + - New patches: + + d/p/u/parser-Fix-warning-message-when-complain-mode-is-for.patch: + Provide better message about caching not happening due to a profile + being in force-complain mode. (LP: #1899218) + + d/p/ubuntu/lp1891338.patch: adjust ubuntu-integration to use + abstractions/exo-open (LP: #1891338) + + d/p/ubuntu/lp1889699.patch: adjust to support brave in ubuntu + abstractions (LP: #1889699) + + d/p/ubuntu/lp1881357.patch: adjust for new ICEauthority path in /run + (LP: #1881357) + * Drop another already upstreamed patch + * Upstream the patches added by Ubuntu + * New patches: + - upstream-commit-9350038-add-CAP_CHECKPOINT_RESTORE.patch: + fixes FTBFS on Linux 5.9 + - upstream-commit-5958930-add-_aa_asprintf-to-private-symbols.patch: + fixes symbols discrepancy + - upstream-commit-51144b5-apparmor_xattrs.7-fix-whatis-entry.patch + - upstream-commit-11d1f38-Fix-typos.patch + - debian/Revert-libapparmor-fixing-setup.py-call-when-crosscompili.patch: + fixes passing hardening LDFLAGS to Python build + * apparmor-profiles: install new php-fpm profile + * Tell dh_missing that we purposely don't ship the chromium-browser profile + * Override a Lintian false positive + + -- intrigeri Sun, 25 Oct 2020 12:03:26 +0000 + +apparmor (3.0.0-0ubuntu1) groovy; urgency=medium + + [ Alex Murray ] + * Update to the final AppArmor 3.0 upstream release + - d/apparmor.install: + + install new aa-features-abi binary to /usr/bin + - d/apparmor.manpages: + + install new aa-features-abi.1 man page + - d/apparmor-profiles.install: + + install new usr.lib.dovecot.script-login + + adjust for renamed postfix profiles + - d/tests/test-installed: + + include libraries/ in workdir so tests have access to private + headers + - Drop the following patches that were originally backported from + upstream but are now incorporated in the final release: + + d/p/parser-fix_cap_match.patch + + d/p/policy-provide-example-and-base-abi-to-pin-pre-3.0-p.patch + + d/p/parser-add-abi-warning-flags.patch + + d/p/fix-tests-regression-apparmor-prologue-inc-settest.patch + + d/p/fix-automatic-adding-of-rule-for-change-hat-iface.patch + + d/p/fix-parser-to-emit-proc-attr-access-for-all-situations.patch + + d/p/fix-change-profile-stack-abstraction.patch + + d/p/ubuntu/stop-loading-snapd-profiles.patch + + [ Emilia Torino ] + * d/control: adjust apparmor-notify to depends on python3-psutil and + python3-apparmor (LP: #1899046) + + [ Steve Beattie ] + * d/p/u/parser-Fix-warning-message-when-complain-mode-is-for.patch: + Provide better message about caching not happening due to a profile + being in force-complain mode. (LP: #1899218) + + -- Alex Murray Sun, 11 Oct 2020 16:26:32 -0700 + +apparmor (3.0.0~beta1-0ubuntu6) groovy; urgency=medium + + * Drop d/p/lp1824812.patch: this patch was only needed with 2.13 and not + 3.0. With AppArmor 3, the patch ends up setting SFS_MOUNTPOINT to the + wrong directory in is_container_with_internal_policy(), which causes + policy to always fail to load in containers. Thanks to Christian Ehrhardt + for the analysis. (LP: #1895967) + + -- Jamie Strandboge Tue, 22 Sep 2020 15:10:33 +0000 + +apparmor (3.0.0~beta1-0ubuntu5) groovy; urgency=medium + + [ John Johansen ] + * d/p/fix-parser-to-emit-proc-attr-access-for-all-situations.patch: + fix-automatic-adding-of-rule-for-change-hat-iface.patch fixed the + parser to emit rules needed for change_hat in the hat profiles but + broke the rule being emitted for the parent profile, this fixes it for + both so that it is emitted for any profile that is a hat or that + contains a hat. + * d/p/fix-change-profile-stack-abstraction.patch: fix the change_profile + abstraction so that it allows access to the apparmor attribute paths + under LSM stacking. + + -- Alex Murray Fri, 18 Sep 2020 11:58:59 +0930 + +apparmor (3.0.0~beta1-0ubuntu2) groovy; urgency=medium + + [ John Johansen ] + * d/p/fix-automatic-adding-of-rule-for-change-hat-iface.patch: fix + parser not adding a rule to profiles if they are a hat or contain hats + granting write access to the kernel interfaces. + + -- Emilia Torino Thu, 17 Sep 2020 12:40:09 -0300 + +apparmor (3.0.0~beta1-0ubuntu1) groovy; urgency=medium + + [ John Johansen ] + * New upstream release (LP: #1895060, LP: #1887577, LP: #1880841) + * Drop all patches backported from upstream: applied in 3.0 + * d/p/policy-provide-example-and-base-abi-to-pin-pre-3.0-p.patch: provide + example and base abi to pin pre 3.0 policy + * d/p/ubuntu/enable-pinning-of-pre-AppArmor-3.x-poli.patch: enable pinning + of pre AppArmor 3.x policy + * drop d/p/debian/dont-include-site-local-with-dovecot.patch: no longer + needed with upstream 'include if exists' + + [ Steve Beattie ] + * d/p/parser-fix_cap_match.patch: fix cap match to work correctly, important + now that groovy has a 5.8 kernel. + * d/apparmor-profiles.install: + + adjust for renamed postfix profiles + + add usr.bin.dumpcap and usr.bin.mlmmj-receive to extra-profiles + + remove usr.sbin.nmbd and usr.sbin.smbd from extra-profiles (already in + apparmor-profiles) + * d/apparmor.install: include abi/ directory and tunables/etc. + * d/apparmor.manpages: add apparmor_xattrs.7 manpage + * d/control: + + apparmor-utils: no more shipped perl tools, drop perl dependency + + apparmor-notify: aa-notify was converted to python3 from perl; adjust + -notify dependencies to compensate + * d/p/fix-tests-regression-apparmor-prologue-inc-settest.patch: + fix sed expression in settest() + + [ Emilia Torino ] + * Removing Ubuntu specific chromium-browser profile. This is safe to do + since groovy's chromium-browser deb installs the snap. If apparmor3 + is backported to 18.04 or earlier, the profile will need to be taken + into consideration + - d/profiles/chromium-browser: remove chromium-browser profile + - d/apparmor-profiles.postinst: remove postinst script as it only + contains chromium-browser related functionallity. + - d/apparmor-profiles.postrm: remove postrm script as it only + contains chromium-browser related functionallity. + - d/apparmor-profiles.install: remove ubuntu-specific + chromium-browser abstraction and profile + - d/apparmor-profiles.lintian-overrides: remove chromium-browser + profile lintian overrides + - d/p/ubuntu/add-chromium-browser.patch: remove patch which added + chrome-browser + + [ Alex Murray ] + * d/p/policy-provide-example-and-base-abi-to-pin-pre-3.0-p.patch: refresh + this patch with the official upstream version + * d/p/ubuntu/enable-pinning-of-pre-AppArmor-3.x-poli.patch: refresh this + patch to match the above + * d/p/parser-add-abi-warning-flags.patch: enable parser warnings + to be silenced or to be treated as errors + + [ Jamie Strandboge ] + * d/p/adjust-for-ibus-1.5.22.patch: update ibus abstract path for ibus + 1.5.22. This can be dropped with AppArmor 3.0 final. + * d/p/parser-add-abi-warning-flags.patch: refresh to avoid lintian warnings + * d/p/ubuntu/lp1891338.patch: adjust ubuntu-integration to use + abstractions/exo-open (LP: #1891338) + * d/p/ubuntu/lp1889699.patch: adjust to support brave in ubuntu + abstractions. Patch thanks to François Marier (LP: #1889699) + * d/p/ubuntu/lp1881357.patch: adjust for new ICEauthority path in /run + (LP: #1881357) + + -- Jamie Strandboge Wed, 09 Sep 2020 21:48:17 +0000 + +apparmor (2.13.6-10) unstable; urgency=medium + + * autopkgtest: use hint-testsuite-triggers to ensure dummy test is not run + (Closes: #954655) + + -- intrigeri Sat, 03 Apr 2021 06:09:19 +0000 + +apparmor (2.13.6-9) unstable; urgency=medium + + * usr.lib.dovecot.script-login: don't include non-existent local override file + (Closes: #982112) + * Declare compliance with Policy 4.5.1 + + -- intrigeri Sat, 06 Feb 2021 17:07:35 +0000 + +apparmor (2.13.6-8) unstable; urgency=medium + + * Backport patch from upstream 3.0 series, which ports aa-status to C + (upstream-commit-8f9046b-port-aa-status-to-c.patch), then + drop obsolete dependency from the apparmor binary package + on python3 (Closes: #981442) + * Annotate test dependencies (Closes: #981205). + Thanks to Helmut Grohne for the patch! + + -- intrigeri Fri, 05 Feb 2021 11:24:57 +0000 + +apparmor (2.13.6-7) unstable; urgency=medium + + * Supersede failed dgit upload. + + -- intrigeri Fri, 15 Jan 2021 13:16:37 +0000 + +apparmor (2.13.6-6) unstable; urgency=medium + + * New patch: + upstream-commit-1ba978b6-adjust-for-new-ICEauthority-path-in-run.patch + (Closes: #980154) + + -- intrigeri Fri, 15 Jan 2021 12:30:06 +0000 + +apparmor (2.13.6-5) unstable; urgency=medium + + * Supersede failed dgit upload. + + -- intrigeri Mon, 11 Jan 2021 08:33:53 +0000 + +apparmor (2.13.6-4) unstable; urgency=medium + + * autopkgtest: update tcpdump profile name + + -- intrigeri Mon, 11 Jan 2021 08:15:55 +0000 + +apparmor (2.13.6-3) unstable; urgency=medium + + * Only pin the policy ABI, not the kernel ABI. + + I hope this fixes the regressions, on older kernels, caused by pinning + the Linux 5.9 feature set, that I guess is the reason behind the + several autokpgtest regressions caused by 2.13.6-2 (debci runs + on Linux 4.19.x). + + -- intrigeri Mon, 28 Dec 2020 11:41:02 +0000 + +apparmor (2.13.6-2) unstable; urgency=medium + + * Pin the Linux 5.9 feature set + + -- intrigeri Sun, 27 Dec 2020 10:24:57 +0000 + +apparmor (2.13.6-1) unstable; urgency=medium + + * New upstream release (Closes: #969114, #930031) + * Improve long descriptions: + - apparmor-utils: fix typos + - libapparmor1, libapparmor-dev: don't try to list all functionality + * autopkgtest: don't try to compile kopano policies (kopanocore is not + in testing and was orphaned) + * Adjust to the fact 3.0.x was released upstream and packaged in experimental: + - debian/watch: use the Launchpad page with all downloads + - gbp: use upstream/2.13.x as the upstream branch + * Drop obsolete patches + * apparmor-profiles: install usr.lib.dovecot.script-login (Closes: #972883) + * Drop dh_perl custom invocation + + -- intrigeri Sun, 27 Dec 2020 08:00:50 +0000 + +apparmor (2.13.5-1) unstable; urgency=medium + + * New upstream release (Closes: #868563, #934869, #969267) + * Drop patches now included upstream + * Refresh patches + * d/apparmor.install: Install new file 'tunables/run' under '/etc/apparmor.d' + * upstream-commit-145136f-fix-2.13-libapparmor-so-version.patch: new patch + * Stop building on non-Linux architectures (Closes: #972049). + Thanks to Laurent Bigonville for the suggestion. + * Drop obsolete Lintian overrides + * Update Lintian override name + * Bump debhelper compat level to 13 + * Update symbols list + * Install gettext translations + * apparmor-profiles: install a few more profiles (usr.bin.mlmmj-receive, + usr.lib.postfix.dnsblog, usr.lib.postfix.postscreen) + * debian/not-installed: list files not installed on purpose + * Adjust *.install source files to appease dh_missing + * autopkgtests: don't try to test disabled Thunderbird profile + * Merge ubuntu/2.13.3-7ubuntu6. Remaining included changes after resolving + conflicts and dropping patches included in 2.13.{4,5}: + - debian/control: add Breaks on snapd < 2.44.3+20.04~ since prior snapd + versions assume that apparmor will load the snapd policy on boot + + -- intrigeri Sat, 24 Oct 2020 17:15:28 +0000 + +apparmor (2.13.4-3) unstable; urgency=medium + + * apparmor-profiles: provide (upstream) bug reporting instructions + * upstream-commit-1f319c3-systemd-userdbd-compat.patch: new patch + (Closes: #962405) + + -- intrigeri Tue, 16 Jun 2020 13:09:13 +0000 + +apparmor (2.13.4-2) unstable; urgency=medium + + * apparmor-profiles: don't ship redundant freshclam profile (Closes: #959915) + * Apply upstream !465: fix the build with make 4.3 + * Drop unused Lintian override + * GitLab CI: + - allow reprotest to fail without failing the whole pipeline + - enable diffoscope for reprotest + + -- intrigeri Mon, 25 May 2020 09:23:21 +0000 + +apparmor (2.13.4-1) unstable; urgency=medium + + * New upstream release + * Switch to HTTPS for upstream homepage URL + * apparmor-profiles: install missing usr.lib.dovecot.stats profile + (Closes: #953268) + * Drop backported patches that are now obsolete. + * Cherry-picked from Ubuntu: + - Update ibus abstract path for ibus 1.5.22 + - debian/control: drop Breaks that were only needed for upgrades to bionic + * Drop obsolete Lintian overrides + * Add python3-all to Build-Depends + * Override Lintian false positive + * Declare compliance with Policy 4.5.0 + * Apply upstream !464: let Mesa check if the kernel supports + the i915 perf interface + + -- intrigeri Tue, 31 Mar 2020 08:45:58 +0000 + +apparmor (2.13.3-7ubuntu6) groovy; urgency=medium + + * Add missing "boot_id" rule to abstractions/nameservice. (LP: #1872564) + - d/p/upstream-commit-454fca7-Add-run-variable.patch: Add the + definition for the "@{run}" variable. + - d/p/upstream-commit-ef591a67-Add-trailing-slash-to-the-run-variable-definition.patch: + Add trailing slash to the "@{run}" variable. + - d/p/upstream-commit-1f319c3870-abstractions-nameservice-allow-accessing-run-systemd-user.patch: + Add a missing rule to allow systemd to access + @{PROC}/sys/kernel/random/boot_id and @{run}/systemd/userdb. + - d/apparmor.install: Install new file 'tunables/run' under '/etc/apparmor.d'. + + -- Sergio Durigan Junior Mon, 11 May 2020 09:55:16 -0400 + +apparmor (2.13.3-7ubuntu5) focal; urgency=medium + + * snapd 2.44.3+20.04 introduced an apparmor unit of its own to load snap + policy in /var/lib/snapd/apparmor/profiles. As such, don't load snapd + policy twice by not loading it in the apparmor unit (LP: 1871148) + - ubuntu/stop-loading-snapd-profiles.patch: stop loading snapd profiles + - debian/control: add Breaks on snapd < 2.44.3+20.04~ since prior snapd + versions assume that apparmor will load the snapd policy on boot + - debian/apparmor.service: remove the now unneeded RequiresMountsFor on + /var/lib/snapd/apparmor/profiles + * drop ubuntu/parser-conf-no-expr-simplify.patch: Optimize=no-expr-simplify + was added to parser.conf to mitigate slow snap policy compiles on 32bit + ARM. These days, snapd calls apparmor_parser with "-O no-expr-simplify" + and loads its snap policy, so drop this delta with upstream and Debian. + + -- Jamie Strandboge Sun, 12 Apr 2020 16:11:31 +0000 + +apparmor (2.13.3-7ubuntu4) focal; urgency=medium + + * debian/apparmor.service: add /var/lib/snapd/apparmor/profiles to + RequiresMountsFor since Ubuntu's rc.apparmor.functions looks for it + (LP: #1871148) + * libnss-systemd.patch: allow accessing the libnss-systemd VarLink sockets + and DBus APIs. Patch partially based on work by Simon Deziel. + (LP: #1796911, LP: #1869024) + * upstream-mr-424-kerberos-dot-dirs.patch: abstractions/kerberosclient: + allow reading /etc/krb5.conf.d/ + * upstream-mr-442-gnome-user-themes.patch: gnome abstraction: allow reading + per-user themes from $XDG_DATA_HOME (Closes: #930031) + * upstream-mr-443-ecryptfs-dirs.patch: abstractions/base: allow read access + to top-level ecryptfs directories (LP: #1848919) + * upstream-mr-445-uuidd-request.patch: abstractions/base: allow read access + to /run/uuidd/request + * upstream-mr-464-Mesa_i915_perf_interface.patch: let Mesa check if the + kernel supports the i915 perf interface. Patch from Debian + + -- Jamie Strandboge Mon, 06 Apr 2020 17:47:20 +0000 + +apparmor (2.13.3-7ubuntu3) focal; urgency=medium + + * Add upstream-abstractions-add-etc-mdns.allow-to-etc-apparmor.d-ab.patch + (LP: #1869629) + + -- John Johansen Wed, 01 Apr 2020 01:05:30 -0700 + +apparmor (2.13.3-7ubuntu2) focal; urgency=medium + + * No-change rebuild to drop python3.7. + + -- Matthias Klose Tue, 18 Feb 2020 10:42:36 +0100 + +apparmor (2.13.3-7ubuntu1) focal; urgency=medium + + * Merge from Debian. Remaining changes: + - Ubuntu-specific patches: + + ubuntu/add-chromium-browser.patch + + ubuntu/communitheme-snap-support.patch + + ubuntu/mimeinfo-snap-support.patch + + ubuntu/parser-conf-no-expr-simplify.patch + + ubuntu/profiles-grant-access-to-systemd-resolved.patch + + upstream-dont-allow-fontconfig-cache-write.patch + + upstream-tests-mult-mount-bump-size-of-created-disk.patch + - debian/apparmor.{install,maintscript}: feature pinning is not used in + Ubuntu + - debian/apparmor.preinst: remove cache files on upgrade to 2.13 + - debian/apparmor-profiles.install: install Ubuntu chromium-browser + profile and abstraction + - debian/apparmor-profiles.lintian-overrides: update for chromium-browser + profile having read access to dpkg database for lsb-release + - debian/apparmor-profiles.postinst: ubuntu-browsers.d/chromium-browser + abstraction if it doesn't exist + - debian/control: adjust the Vcs-{Browser,Git} control fields to reflect + the branch where the Ubuntu packaging is maintained. + - debian/gbp.conf: use ubuntu/master as the debian-branch + - debian/patches/series: comment out debian-only patches + - debian/tests/control and debian/tests/compile-policy: don't test + thunderbird since the Ubuntu packaging doesn't ship a profile + * Drop the following patches, no longer needed: + - python3.8-ac.diff + * debian/control: drop Breaks on media-hub, mediascanner2.0, messaging-app, + and webbrowser-app which was needed for upgrades to bionic (LP: #1797242) + * upstream-adjust-for-ibus-1.5.22.patch: update ibus abstract path for ibus + 1.5.22 + * upstream-adjust-gnome-for-mimeapps.patch: abstractions/gnome: also allow + /etc/xdg/mimeapps.list (LP: #1792027) + + -- Jamie Strandboge Tue, 17 Dec 2019 15:50:00 +0000 + +apparmor (2.13.3-7) unstable; urgency=medium + + * Add explicit build dependency on dh-python, so that this package + can built with python3-defaults 3.7.5-3. + + -- intrigeri Fri, 15 Nov 2019 10:37:05 +0000 + +apparmor (2.13.3-6) unstable; urgency=medium + + [ Matthias Klose ] + * debian/rules: ensure "set -e" is honored (Closes: #943649). + * Add upstream-mr-430-Fix-a-Python-3.8-autoconf-check.patch (Closes: #943657). + + -- intrigeri Tue, 29 Oct 2019 18:57:51 +0000 + +apparmor (2.13.3-5ubuntu5) focal; urgency=medium + + * Don't ignore exit status in debian/rules. + * Fix a Python 3.8 autoconf check. + + -- Matthias Klose Sun, 27 Oct 2019 16:38:00 +0200 + +apparmor (2.13.3-5ubuntu2) focal; urgency=medium + + * No-change rebuild for the perl update. + + -- Matthias Klose Fri, 18 Oct 2019 19:26:58 +0000 + +apparmor (2.13.3-5ubuntu1) eoan; urgency=medium + + * Merge new upstream release from Debian. Remaining changes: + - Ubuntu-specific patches: + + ubuntu/add-chromium-browser.patch + + ubuntu/communitheme-snap-support.patch + + ubuntu/mimeinfo-snap-support.patch + + ubuntu/parser-conf-no-expr-simplify.patch + + ubuntu/profiles-grant-access-to-systemd-resolved.patch + - debian/apparmor.{install,maintscript}: feature pinning is not used in + Ubuntu + - debian/apparmor.preinst: remove cache files on upgrade to 2.13 + - debian/apparmor-profiles.install: install Ubuntu chromium-browser + profile and abstraction + - debian/apparmor-profiles.lintian-overrides: update for chromium-browser + profile having read access to dpkg database for lsb-release + - debian/apparmor-profiles.postinst: ubuntu-browsers.d/chromium-browser + abstraction if it doesn't exist + - debian/control: adjust the Vcs-{Browser,Git} control fields to reflect + the branch where the Ubuntu packaging is maintained. + - debian/gbp.conf: use ubuntu/master as the debian-branch + - debian/patches/series: comment out debian-only patches + - debian/tests/control and debian/tests/compile-policy: don't test + thunderbird since the Ubuntu packaging doesn't ship a profile + * Drop the following patches, no longer needed: + - ubuntu/dont-include-site-local-with-dovecot.patch + - lp1820068.patch + - upstream-commit-fix-segfault-in-overlaydirat_for_each.patch + - upstream-commit-add-option-to-dump-policy-cache-with-libapparmor.patch + - upstream-commit-teach-aa_policy_cache_sh-about-the-new-cache.patch + - upstream-commit-fix-segfault-when-loading-policy-cache-files.patch + - upstream-commit-fix-variable-name-overlap-in-merge-macro.patch + * upstream-dont-allow-fontconfig-cache-write.patch: don't allow write of + fontconfig cache files + * upstream-tests-mult-mount-bump-size-of-created-disk.patch: regression + tests/mult_mount: bump size of created disk image + + -- Jamie Strandboge Mon, 09 Sep 2019 19:13:22 +0000 + +apparmor (2.13.3-5) unstable; urgency=medium + + * upstream-mr-419-Xwayland-vs-recent-mutter.patch: new patch (Closes: #935058) + + -- intrigeri Sun, 08 Sep 2019 08:00:56 +0000 + +apparmor (2.13.3-4) unstable; urgency=medium + + * New patch, cherry-picked and adapted from Ubuntu: don't include local/ + snippets in the Dovecot profiles. These inclusions of non-existing files + break aa-genprof (Closes: #928160). + * Merge ubuntu/2.13.2-9ubuntu7, which turns out to be a no-op, because + we essentially revert all changes brought by this merge: + - Drop lp1820068.patch, introduced in 2.13.2-9ubuntu7: it's included + in the 2.13.3 upstream release already. + - Don't enable ubuntu/parser-conf-no-expr-simplify.patch, that Ubuntu just + re-enabled: in Debian we don't disable expression tree simplification, + because we've cherry-picked an upstream patch that improves its + performance sufficiently. + + -- intrigeri Sat, 27 Jul 2019 17:18:43 +0000 + +apparmor (2.13.3-3) unstable; urgency=medium + + [ Michael Biebl ] + * Move libraries back to /usr/lib + + [ intrigeri ] + * Remove Lintian override made obsolete by the move to /usr/lib/apparmor/ + * Avoid-blhc-CPPFLAGS-missing-false-positive.patch: new patch. + * Revert "debian/control: Breaks on snapd < 2.38~" + Jamie Strandboge explained in details on #932815 the rationale behind this + Breaks relationship. The user impact seems non-critical and the risk of the + problem happening in practice is very low, so for now let's remove this + Breaks, that prevents apparmor from migrating to testing (we don't have + snapd 2.38+ in Debian yet). + + -- intrigeri Tue, 23 Jul 2019 22:19:02 +0000 + +apparmor (2.13.3-2) unstable; urgency=medium + + * Install the lsb_release profile. + + -- intrigeri Wed, 17 Jul 2019 19:41:32 +0000 + +apparmor (2.13.3-1) unstable; urgency=medium + + * Import new 2.13.3 upstream release and accordingly: + - Update dev-pkg-without-shlib-symlink Lintian override: soname + was bumped to 1.6.1. + - Drop patches that were applied upstream. + * Merge ubuntu/2.13.2-9ubuntu6, dropping the Ubuntu delta (Closes: #926015): + - lp1824812.patch: set SFS_MOUNTPOINT in is_container_with_internal_policy() + since it is sometimes called independently of is_apparmor_loaded() + (LP: #1824812) + - debian/apparmor.postrm: remove parser-created subdirs + - debian/tests/control: try Ubuntu kernel but mark skip-not-installable + - regression testsuite fixes: + upstream-commit-add-option-to-dump-policy-cache-with-libapparmor.patch, + upstream-commit-teach-aa_policy_cache_sh-about-the-new-cache.patch, + upstream-commit-fix-variable-name-overlap-in-merge-macro.patch + - debian/debhelper/postrm-apparmor: also remove cache files + - debian/control: Breaks on snapd < 2.38~ (the cache forest breaks snap + remove) + * Declare compatibility with Debian Policy 4.4.0. + * Bump debhelper compatibility level to 12. Accordingly: + - dh_installinit: replace --no-restart-on-upgrade with its new + --no-stop-on-upgrade name + - Add override_dh_installsystemd that mimics our override_dh_installinit + * tests/compile-policy: check syntax of kopano profiles (implements + #923313 except kopano-search, until giraffe-team/kopanocore!4 is merged + and uploaded) + + -- intrigeri Wed, 17 Jul 2019 17:55:09 +0000 + +apparmor (2.13.2-9ubuntu7) eoan; urgency=medium + + * lp1820068.patch: don't skip read cache when options are set (LP: #1820068) + * reenable ubuntu/parser-conf-no-expr-simplify.patch + + -- Jamie Strandboge Thu, 06 Jun 2019 21:46:34 +0000 + +apparmor (2.13.2-9ubuntu6) disco; urgency=medium + + * lp1824812.patch: set SFS_MOUNTPOINT in is_container_with_internal_policy() + since it is sometimes called independently of is_apparmor_loaded() + - LP: #1824812 + + -- Jamie Strandboge Mon, 15 Apr 2019 15:59:54 +0000 + +apparmor (2.13.2-9ubuntu5) disco; urgency=medium + + * ubuntu/dont-include-site-local-with-dovecot.patch: don't include local/ + files in the dovecot extras profiles since the included path may not + exist + + -- Jamie Strandboge Tue, 02 Apr 2019 19:58:11 +0000 + +apparmor (2.13.2-10) unstable; urgency=medium + + * Don't load AppArmor policy when running in a Debian Live environment + that uses overlayfs (Closes: #922378). + Rationale: the storage stack set up by live-boot with overlayfs + is not supported by our AppArmor policy at the moment, resulting + in breakage of confined software such as Evince and LibreOffice. + * Ship nvidia_modprobe in enforce mode (Closes: #923273). + - Rationale: as explained by Seth Arnold + on #923273#32, profiles in complain mode can chew up essentially + unlimited amounts of non-swappable kernel memory and huge amounts + of IO bandwidth logging ALLOWED messages, which can in turn + use large amounts of storage. This is why Ubuntu has applied this change + already for their upcoming release. + - Scope of this change: in Buster, this profile is used in one single place + — the usr.lib.libreoffice.program.soffice.bin profile — for which it was + developed and tested in the first place. So the risk and potential + problematic impact of this change seems pretty low. + * Cherry-pick the most important and non-invasive fixes + from the upstream apparmor-2.13 maintenance branch: + - base abstraction: allow mr on *.so* in common library paths, + i.e. don't assume all common libraries' name starts with "lib". + At the very least, this fixes Qt5 applications under some + VirtualBox graphics configuration, where otherwise they would + not start at all (Closes: Tails#16414). + Upstream commits: 8dff7dc, 08f9d16 + - Fix 2 segfaults spotted upstream while writing automated tests + for the multicache support (upstream MR!348): + · in overlaydirat_for_each, segfault caused by repeatedly freeing + the same memory area; + · when loading policy cache files, due to incorrect size passed + to qsort(). + Upstream commits: 5704fba, 01aec04 + + -- intrigeri Sat, 30 Mar 2019 13:23:11 +0000 + +apparmor (2.13.2-9ubuntu4) disco; urgency=medium + + * debian/tests/control and debian/tests/compile-policy: don't test + thunderbird since the Ubuntu packaging doesn't ship a profile + + -- Jamie Strandboge Wed, 27 Mar 2019 18:01:33 +0000 + +apparmor (2.13.2-9ubuntu3) disco; urgency=medium + + * debian/tests/control: try Ubuntu kernel but mark skip-not-installable + * debian/apparmor-profiles.postinst: add back copying + ubuntu-browsers.d/chromium-browser (LP: #1821920) + * debian/apparmor.postrm: remove parser-created subdirs + + -- Jamie Strandboge Wed, 27 Mar 2019 13:48:24 +0000 + +apparmor (2.13.2-9ubuntu2) disco; urgency=medium + + * debian/debhelper/postrm-apparmor: don't quote the glob + * debian/apparmor.preinst: remove cache files on upgrade to 2.13 + + -- Jamie Strandboge Tue, 26 Mar 2019 18:06:04 +0000 + +apparmor (2.13.2-9ubuntu1) disco; urgency=medium + + * New 2.13.2 release for Ubuntu (LP: #1817799). Notable changes: + - Upstream AppArmor introduces the new cache forest rather than a single + toplevel global cache directory which improves boot speed when booting + between kernels with different feature sets. This cache forest is located + in /var/cache/apparmor instead of /etc/apparmor.d/cache + - This release uses a proper systemd unit rather than calling out to the + SysV initscript + * Merge from Debian (LP: #1817799). Remaining changes: + - Ubuntu-specific patches: + + ubuntu/add-chromium-browser.patch + + ubuntu/communitheme-snap-support.patch + + ubuntu/mimeinfo-snap-support.patch + + ubuntu/profiles-grant-access-to-systemd-resolved.patch + - debian/apparmor-profiles.install: install Ubuntu chromium-browser + profile and abstraction + - debian/apparmor.{install,maintscript}: feature pinning is not used in + Ubuntu + - debian/control: adjust the Vcs-{Browser,Git} control fields to reflect + the branch where the Ubuntu packaging is maintained. + - debian/gbp.conf: use ubuntu/master as the debian-branch + * Drop the following patches, no longer needed: + - ubuntu/parser-include-usr-share-apparmor.patch + - e99fa6c6054fa10a2b49d30967e993bd5764e77f.patch: cherry-pick upstream + patch for usr-merge for useradd profile + - ubuntu/lp1788929+1794848.patch + * Do not apply the following Debian-specific patches: + - d-only/pin-feature-set.patch + - d-only/Document-which-AppArmor-features-are-not-supported-on-Deb.patch + * debian/put-all-profiles-in-complain-mode.sh: nvidia_modprobe should be in + enforce mode + * add but don't apply ubuntu/parser-conf-no-expr-simplify.patch: disable + expr tree simplification to greatly speed up armhf. We might consider + making this change armhf specific and/or limiting it to only the snapd + policy in the future. (LP: 1383858). Once LP: 1820068 is fixed, we can + reenable this patch + * debian/control: Breaks on snapd < 2.38~ (the cache forest breaks snap + remove) + * debian/debhelper/postrm-apparmor: also remove cache files + * add upstream-commit-fix-segfault-in-overlaydirat_for_each.patch + * regression testsuite fixes: + - upstream-commit-add-option-to-dump-policy-cache-with-libapparmor.patch + - upstream-commit-teach-aa_policy_cache_sh-about-the-new-cache.patch + - upstream-commit-fix-segfault-when-loading-policy-cache-files.patch + - upstream-commit-fix-variable-name-overlap-in-merge-macro.patch + * debian/apparmor-profiles.lintian-overrides: update for chromium-browser + profile having read access to dpkg database for lsb-release + + -- Jamie Strandboge Thu, 14 Mar 2019 20:54:12 +0000 + +apparmor (2.13.2-9) unstable; urgency=medium + + * Revert "Add autopkgtest that checks if apparmor.service starts + on package installation". It passes with the schroot and qemu + backends locally but fails on ci.debian.net. + + -- intrigeri Mon, 25 Feb 2019 06:10:18 +0000 + +apparmor (2.13.2-8) unstable; urgency=medium + + * Cherry-pick 5 more commits from upstream apparmor-2.13 branch + (Closes: #921866). + * Cherry-pick upstream MR!344 (Closes: #920833, #921888). + * Install the nvidia_modprobe named profile (Closes: #921875) + and add it to the list of profiles whose syntax is checked + via autopkgtests. + * Patch usr.sbin.smdb to include snippet generated at runtime + (part of the fix for #896080). + * New autopkgtest: ensure apparmor.service starts on + package installation. + * Update salsa CI pipeline. + + -- intrigeri Sun, 24 Feb 2019 17:00:23 +0000 + +apparmor (2.13.2-7) unstable; urgency=medium + + * Stop shipping /var/cache/apparmor/CACHEDIR.TAG (Closes: #920682) + * New patches, cherry-picked from upstream !320, so the "audio" + abstraction grants read access to Alsa and libao config files + (Closes: #920669, #920670). + + -- intrigeri Thu, 31 Jan 2019 09:51:59 +0000 + +apparmor (2.13.2-6) unstable; urgency=medium + + * initscript: implement missing aa_log_action_begin and + aa_log_action_end functions (Closes: #917962). + + -- intrigeri Mon, 28 Jan 2019 18:11:53 +0000 + +apparmor (2.13.2-5) unstable; urgency=medium + + * Really move libapparmor.so unversioned symlink to /lib/ + (Closes: #919705). + * Add Lintian override for dev-pkg-without-shlib-symlink: arguably + a false positive (see #843932). + * Add Lintian override for uses-dpkg-database-directly: false positive. + * Declare compliance with Standards-Version 4.3.0. + * autopkgtests: + - Test compiling many more profiles: + - all profiles that apparmor-profiles-extra ships in enforce mode + - the profiles shipped by bind9, cups-browsed, haveged, + libreoffice-common, man-db, ntp, onioncircuits, tcpdump, thunderbird, + and tor + - another profile shipped by libvirt-daemon-system + - Declare that the compile-policy test is not superficial anymore. + - Make the parser verbose in the compile-policy test. + + -- intrigeri Mon, 28 Jan 2019 08:29:19 +0000 + +apparmor (2.13.2-4) unstable; urgency=medium + + * Move libapparmor.so unversioned symlink to /lib/ (Closes: #919705). + * New patches, cherry-picked from upstream: + - Make tunables/share play well with aliases. + - Fix access to /usr/share/drirc.d.conf (Closes: #919775). + - Fix access to the default paths used by dehydrated in Debian. + - Support new font configuration paths. + - Support libvirt named profile. + - Fix access to /etc/alsa/conf.d/. + * autopkgtests: test compiling more profiles shipped by other packages. + * Patch the dnsmasq profile to fix ptrace and signal communication + with libvirtd. + + -- intrigeri Sun, 27 Jan 2019 17:07:34 +0000 + +apparmor (2.13.2-3) unstable; urgency=medium + + * Update upstream MR!252 backport to fix initscript (Closes: #917874) + + -- intrigeri Tue, 01 Jan 2019 18:03:54 +0000 + +apparmor (2.13.2-2) unstable; urgency=medium + + * Patch rc.apparmor.functions to suit Debian/Ubuntu's needs. + * Port initscript, systemd service, postinst and profile-load + to use the upstream rc.apparmor.functions shell library. + This way, the systemd service does not require the SysV initscript + anymore (Closes: #870697). + * Drop obsolete /etc/apparmor/subdomain.conf conffile. + + -- intrigeri Sat, 29 Dec 2018 17:50:23 +0000 + +apparmor (2.13.2-1) unstable; urgency=medium + + * Import new upstream release, drop backported patches that are now obsolete, + refresh remaining patches. + * autopkgtest: add dummy test so that changes to linux-image-amd64 + trigger our other tests on ci.debian.net + * Replace home-made GitLab CI with the standard Salsa pipeline + (Closes: #912722). + * Drop extra signatures from public upstream signing key. + + -- intrigeri Sat, 22 Dec 2018 13:26:14 +0000 + +apparmor (2.13.1-3) unstable; urgency=medium + + * GitLab CI/Lintian: install dpkg-dev, that ships dpkg-architecture, + needed to run some Lintian checks. + * Re-enable expression tree simplification and cherry-pick upstream patch + that improves its performance. + * Bump debhelper compatibility level to 11. + * Patch apparmor.d(5) to document which features are not supported on Debian + (Closes: #807369). + * Patch apparmor(7) to document debugging options (Closes: #826218). + + -- intrigeri Tue, 30 Oct 2018 10:57:44 +0000 + +apparmor (2.13.1-2) unstable; urgency=medium + + * Deal with obsolete /etc/apparmor.d/abstractions/launchpad-integration + conffile (Closes: #911745). + * Declare autopkgtests as superficial (Closes: #911827). + Adjust GitLab CI configuration to cope with exit code 8 accordingly. + + -- intrigeri Fri, 26 Oct 2018 12:08:26 +0000 + +apparmor (2.13.1-1) unstable; urgency=medium + + [ intrigeri ] + * New upstream release (Closes: #901470, #871441). + * Bump pinned feature set to linux-image-4.18.0-2-amd64, version 4.18.10-2. + * Add Breaks: apparmor-profiles-extra (<< 1.21): the Pidgin profile up + to 1.20 used the launchpad-integration abstraction, that was removed + in AppArmor 2.13.1. + * Drop backported patches that are now obsolete. + * Refresh patches. + * Add debian/.gitlab-ci.yml: build the package then run Lintian + and autopkgtests on it. + * upstream-commit-3bf11ce-Fix-syntax-error-in-rc.apparmor.functions.patch, + upstream-commit-b77116e-Add-profile-names.patch: new patches to fix + regressions introduced in 2.13.1. + * Drop unused Lintian override. + * Declare compliance with policy 4.2.1. + * Update symbols list. + * Honor nocheck in DEB_BUILD_OPTIONS. + * Make /lib/apparmor/apparmor.systemd executable. + + [ Sven Joachim ] + * Do not remove /var/cache/apparmor/CACHEDIR.TAG on upgrades + (Closes: #910217). + + [ Helmut Grohne ] + * Don't hard code the location of netinet/in.h (Closes: #909966). + + -- intrigeri Sun, 21 Oct 2018 08:32:47 +0000 + +apparmor (2.13-8) unstable; urgency=medium + + * Only fix permissions on /lib/apparmor/apparmor.systemd when building + arch-dependent packages. Fixes FTBFS when building only + arch:all packages. + + -- intrigeri Thu, 02 Aug 2018 06:12:18 +0000 + +apparmor (2.13-7) unstable; urgency=medium + + * Move the binary cache to /var/cache/apparmor (Closes: #904637). + And then: + - Delete obsolete cache files in /var/cache/apparmor on upgrade. + - initscript: document the potential drawback of loading the policy + before remote filesystems are mounted. + * Turn off expression tree simplification, that makes performance + much worse in some cases, and rarely much better. + * Fix aa-teardown by installing /lib/apparmor/apparmor.systemd + and making it executable. + * Override a few Lintian false positives. + + -- intrigeri Thu, 02 Aug 2018 01:29:03 +0000 + +apparmor (2.13-6) unstable; urgency=low + + * Install new tunables/share, needed by tunables/global. + Fixes regression introduced in 2.13-5 (Closes: #904970). + * New autopkgtest: test that we can compile the Evince profile. + Having this in place earlier would have avoided introducing #904970. + + -- intrigeri Mon, 30 Jul 2018 07:46:00 +0000 + +apparmor (2.13-5) unstable; urgency=low + + * freedesktop.org abstraction: support directories exported by Flatpak apps, + replacing former flatpak-exports.patch with the patchset that was merged + upstream (Closes: #865206). + + -- intrigeri Mon, 30 Jul 2018 00:27:57 +0000 + +apparmor (2.13-4) unstable; urgency=medium + + * Stop building the Python 2 bindings packages: python-apparmor, + python-libapparmor (Closes: #904599). + * Mark libapparmor-perl Multi-Arch: same. + * dh-apparmor's postinst snippet template: drop now useless backwards + compatibility code; simplify. + + -- intrigeri Fri, 27 Jul 2018 12:00:18 +0000 + +apparmor (2.13-3) unstable; urgency=medium + + * Upload to unstable. + * Set proper SELinux labels on files created during installation or upgrade. + Thanks to Laurent Bigonville for the bug report + and the patch! (Closes: #903633) + * Fix CACHEDIR.TAG installation path and let dpkg replace the CACHEDIR.TAG + directory (erroneously created by 2.13-1 and 2.13-2) with a regular file. + (Closes: #883584) + * New patch: make aa-notify point to Debian documentation (Closes: #904436). + Thanks to Clément Hermann for the bug report. + * Install Dovecot profiles in /usr/share/apparmor/extra-profiles/ + instead of /etc/apparmor.d/: the previous setup created lots of noise + in the logs and gave no security benefit. Thanks to Jonas Smedegaard + for raising the issue. + * Skip *.dpkg-(new|old|dist|bak|remove) when falling back to calling the + parser on individual profiles. Fixes a regression introduced in 2.13-1 + and adds .dpkg-remove, that was missing in the exclusion list before. + * Bump pinned feature set to linux-image-4.17.0-1-amd64, version 4.17.8-1. + + -- intrigeri Wed, 25 Jul 2018 13:28:53 +0000 + +apparmor (2.13-2) experimental; urgency=medium + + * Merge from sid: + - upstream-commit-d9d3cae-adjust-python-abstraction-for-python-3.patch: + new patch, to avoid breaking things with Python 3.7. + * Regarding the "Don't invalidate the cache anymore […]" change inrtoduced + in 2.13-1: one can manually do that with apparmor_parser --purge. + + -- intrigeri Sat, 07 Jul 2018 17:15:31 +0000 + +apparmor (2.13-1) experimental; urgency=medium + + * New upstream release (Closes: #893974). + * Drop all patches backported from upstream: applied in 2.13. + * Refresh and export patches with gbp. + * debian/libapparmor1.symbols: add newly introduced symbols. + * upstream-commit-e83fa67-fix-test-failures.patch: new patch, + cherry-picked from upstream, that fixes test suite failures. + * Declare compatibility with Standards-Version 4.1.4. + * debian/rules: drop deprecated get-orig-source target. + * Merge 2.12-4ubuntu5 (dropping the Ubuntu delta): + - Drop support for snap v1. + * Add Lintian overrides for a few non-issues. + * debian/apparmor.dirs, debian/lib/apparmor/functions: + adjust for new (multi-)cache location. + * Install /etc/apparmor.d/cache.d/CACHEDIR.TAG (Closes: #883584). + * Install aa-teardown and its manpage. + * initscript: drop sysvinit-specific "recache" and "teardown" commands. + * Simplify foreach_configured_profile() thanks to recent parser features. + * aa-remove-unknown: use upstream functions instead of custom ones, + i.e. one step towards deprecating distro-specific /lib/apparmor/functions. + To make this work: + - install the upstream shell functions library + - patch one upstream function to add support for the snap profile directory + and to not depend on aa_log_*_msg() + * Don't invalidate the cache anymore when stopping, reloading or restarting + the service, nor when installing or upgrading the apparmor package: + the parser now manages its caches itself. + * debian/lib/apparmor/functions: drop a bunch of functions that are not + used anymore, thanks to the aforementioned changes. + * Make apparmor.service more similar to upstream's: + - reorder directives + - use the same Description as upstream + - start After=systemd-journald-audit.socket + * apparmor.service: point to current homepage. + + -- intrigeri Wed, 13 Jun 2018 09:15:02 +0000 + +apparmor (2.12-5) unstable; urgency=medium + + * upstream-commit-d9d3cae-adjust-python-abstraction-for-python-3.patch: + new patch, to avoid breaking things with Python 3.7. + + -- intrigeri Sat, 07 Jul 2018 16:50:01 +0000 + +apparmor (2.12-4ubuntu10) disco; urgency=medium + + * No-change rebuild to drop python3.6 support. + + -- Matthias Klose Sat, 03 Nov 2018 13:03:44 +0100 + +apparmor (2.12-4ubuntu9) disco; urgency=medium + + * No-change rebuild for the perl 5.28 transition. + + -- Adam Conrad Fri, 02 Nov 2018 18:07:54 -0600 + +apparmor (2.12-4ubuntu8) cosmic; urgency=medium + + * lp1788929+1794848.patch: + - disallow writes to thumbnailer dir (LP: #1788929) + - disallow access to the dirs of private files (LP: #1794848) + + -- Jamie Strandboge Thu, 27 Sep 2018 17:25:04 +0000 + +apparmor (2.12-4ubuntu7) cosmic; urgency=medium + + * Cherry-pick upstream patch for usr-merge for useradd profile. + * Update chromium-browser profile with latest from profiles project. + * Fixes LP: #1784023 + + -- Dimitri John Ledkov Wed, 01 Aug 2018 15:20:51 +0100 + +apparmor (2.12-4ubuntu6) cosmic; urgency=medium + + * No-change rebuild to build for python3.7. + + -- Matthias Klose Thu, 28 Jun 2018 06:52:52 +0000 + +apparmor (2.12-4ubuntu5) bionic; urgency=medium + + [ Didier Roche ] + * debian/patches/ubuntu/communitheme-snap-support.patch: + - support communitheme snap (LP: #1762983) + + [ Jamie Strandboge ] + * debian/patches/ubuntu/add-chromium-browser.patch: adjust for newer + chromium (LP: #1101298, LP: #1594589, LP: #1647142) + - add attach_disconnected + - allow reading /proc/vmstat + - don't require owner match for /proc/pid/{stat,status} and task + counterparts + - adjust pci[0-9] to be pci[0-9a-f] + - allow reading all uevents and /sys/devices/virtual/tty/tty0/active + - allow ptracing xdgsettings and lsb-release + - xdgsettings uses head and tr and looks at /usr/share/ubuntu/applications/ + - lsb-release uses python 3.6 and looks at apport, apt.conf, dpkg and + distro-info + - use 'm' on on sandbox + * debian/patches/ubuntu/mimeinfo-snap-support.patch: allow reading + /var/lib/snapd/desktop/applications *.desktop and mimeinfo.cache + (LP: #1712039) + + -- Jamie Strandboge Tue, 17 Apr 2018 20:15:16 +0000 + +apparmor (2.12-4ubuntu4) bionic; urgency=medium + + * Remove another Ubuntu Touch profile (LP: #1761176) + - debian/control: Breaks on messaging-app + - debian/postinst: on upgrade, remove profile for usr.bin.messaging-app + + -- Jamie Strandboge Wed, 04 Apr 2018 13:58:26 +0000 + +apparmor (2.12-4ubuntu3) bionic; urgency=medium + + * Remove old Ubuntu Touch profiles for packages removed from the archive + since they need apparmor-easyprof-ubuntu to compile, and it was also + removed from the archive (LP: #1756800) + - debian/control: Breaks on media-hub, mediascanner2.0 and webbrowser-app + - debian/postinst: on upgrade, remove profiles for usr.bin.webbrowser-app, + usr.bin.media-hub-server, usr.lib.mediascanner-2.0.mediascanner-extractor + and usr.bin.mediascanner-service-2.0 + + -- Jamie Strandboge Tue, 03 Apr 2018 13:12:46 +0000 + +apparmor (2.12-4ubuntu2) bionic; urgency=medium + + * Remove old click and snapv1 support since those packages no longer exist + in bionic + - debian/apparmor.dirs: don't install /var/lib/apparmor/profiles + - debian/apparmor.init: remove click and snapv1 additions + - debian/apparmor.postinst: don't update the md5sums for click/snapv1 + - debian/apparmor.postrm: remove code for handling + /var/lib/apparmor/profiles + - debian/apparmor.preinst: remove md5sums files from + /var/lib/apparmor/profiles + - debian/lib/apparmor/functions: remove compare_and_save_debsums() and + compare_previous_version() since nothing in the archive uses them any + more. For now, leave snap v2 support, but eventually we'll want to move + to the upstream init recommendations + * profiles-grant-access-to-systemd-resolved.patch: fix typo in DEP-3 headers + + -- Jamie Strandboge Thu, 22 Mar 2018 19:27:44 +0000 + +apparmor (2.12-4ubuntu1) bionic; urgency=medium + + [ Tyler Hicks ] + * Merge from Debian to get gbp-pq related packaging improvements. Thanks to + intrigeri for making those improvements! Remaining Ubuntu changes: + - debian/gbp.conf: Use ubuntu/master as the debian-branch + - Update package maintainer to be Ubuntu Developers in the control file + - Call handle_system_policy_package_updates in apparmor.init. + This is needed for snappy and system-images. Note that this prevents + using a remove /var. + - Apply Ubuntu-specific patches + + parser-include-usr-share-apparmor.patch + + profiles-grant-access-to-systemd-resolved.patch + + add-chromium-browser.patch + - Install Ubuntu chromium-browser profile and abstraction + - Feature pinning is not used in Ubuntu + + [ intrigeri ] + * Adjust the Vcs-{Browser,Git} control fields to reflect the branch where + the Ubuntu packaging is maintained. + + -- Tyler Hicks Mon, 19 Mar 2018 16:24:57 +0000 + +apparmor (2.12-4) unstable; urgency=medium + + * Migrate patch handling to gbp-pq (Closes: #888244). + * Merge 2.12-3ubuntu1 (dropping the Ubuntu delta): + - upstream-commit-46f88f5-properly-identify-empty-ouid-fsuid-fields.patch: + new patch, properly identify empty ouid/fsuid fields in logs. + - upstream-commit-130958a-allow-shell-helper-read-locale.patch: + new patch, allow the shell helper regression test program read + the locale. + + -- intrigeri Sun, 18 Mar 2018 13:47:35 +0000 + +apparmor (2.12-3ubuntu1) bionic; urgency=medium + + * New upstream bug fix release. Bugs fixed: + - abstraction/nameservice should include allow access to + /var/lib/sss/mc/initgroups (LP: #1751402) + - Cannot Add Request Hat or Use Default Hat in aa-logprof and mod_apparmor + (LP: #1752365) + - python tools do not understand 'non-magic' include rules (LP: #1733700) + - "Unable to open external link" in Evince when google-chrome-unstable is + the default browser (LP: #1730536) + - apparmor_parser is missing fix for rule down grades (LP: #1728120) + - base abstraction missing glibc /proc/$pid/ things (LP: #1658239) + - logparser.py parse_event_for_tree() doesn't care about owner vs. all in + file events(LP: #1538340) + - aa-decode can't decode the audit log which contains the proctitle string + (LP: #1736841) + - aa-logprof asks for "a" rule even if "deny w" is present (LP: #1385474) + * Merge from Debian. Remaining Ubuntu changes: + - debian/gbp.conf: Use ubuntu/master as the debian-branch + - Update package maintainer to be Ubuntu Developers in the control file + - Call handle_system_policy_package_updates in apparmor.init. + This is needed for snappy and system-images. Note that this prevents + using a remove /var. + - Apply Ubuntu-specific patches + + parser-include-usr-share-apparmor.patch + + profiles-grant-access-to-systemd-resolved.patch + + add-chromium-browser.patch + - Install Ubuntu chromium-browser profile and abstraction + * Dropped patches that were not merged upstream: + - ubuntu-manpage-updates.patch: The changes were out of date because + they only addressed upstart based systems + - utils-keep-shebang.patch: A different solution was merged upstream + so that the shebang lines aren't rewritten + * Feature pinning is not used in Ubuntu + * Properly identify empty ouid/fsuid fields in logs + * Allow the shell helper regression test program read the locale + + -- Tyler Hicks Thu, 15 Mar 2018 15:39:10 +0000 + +apparmor (2.12-3) unstable; urgency=medium + + * dnsmasq-profile-allow-chown-capability.patch: new patch (Closes: #889806) + * Update-base-abstraction-for-ld.so.conf-and-friends.patch: new patch, + cherry-picked from upstream (solves a minor part of #887973). + * libapparmor-perl: install example program. + + -- intrigeri Sun, 25 Feb 2018 18:23:21 +0000 + +apparmor (2.12-2) unstable; urgency=medium + + * This release is dedicated to the memory of Ursula K. Le Guin. + + * Install the "extra" profiles to the default upstream directory + (Closes: #832984). + * Cherry-pick policy improvements from upstream Git (Closes: #887591). + * Stop recommending the apparmor-profile package to the general public: + - apparmor: drop "Suggests: apparmor-profile". + - apparmor-profile: make it clear in the package description that + these profiles cannot be expected to work out-of-the-box. + * Bump debhelper compatibility level to 10. + - This reintroduces --parallel building, which was fixed upstream + since we disabled it. + - Don't manually enable the systemd debhelper sequence: now done + by default. + - Drop now useless build-dependency on autotools-dev. + * Declare compliance with Standards-Version 4.1.3 (no change required). + * debian/control: add Rules-Requires-Root: no. + - Cherry-pick upstream fix to pam_apparmor's Makefile. + * Packaging cleanup: + - Remove Kees Cook from the Uploaders control field. + Thanks a lot for the inspiring work you've done on this package + in the past! + - Remove obsolete calls to rm_conffile. + - debian/copyright: use canonical URL to copyright-format/1.0. + - debian/copyright: sort licenses in lexical order. + - Use canonical URL to Debian bug in patch header. + - debian/*.install: remove duplicates. + - Stop versioning dependencies that are satisfied on Debian Wheezy + and Ubuntu Trusty. + - Reformat debian/* with 'cme fix dpkg' + wrap-and-sort. + + -- intrigeri Wed, 24 Jan 2018 09:18:26 +0000 + +apparmor (2.12-1) unstable; urgency=medium + + * New upstream release (Closes: #885522, #882043, #884014, #886732, + #875892, #882070, #874665, #884280, #881936, #882135). + - Drop obsolete patches. + * dh-apparmor postinst snippet: create empty files in + /etc/apparmor.d/local/ instead of repeating boilerlate. + * dh-apparmor postinst snippet: simplify local overrides directory + creation code. + * Migrate to Git: + - Configure gbp for DEP-14 + - Configure gbp-pq to avoid prefixing patches with numbers + - README.source: adjust to Git + - Update Vcs-* control fields: migrate to Git + * Move libpam to Section: admin + + -- intrigeri Sun, 14 Jan 2018 17:01:17 +0000 + +apparmor (2.11.1-4) unstable; urgency=medium + + * Bump pinned feature set to linux-image-4.14.0-1's, version 4.14.2-1 + - Pinning a feature set without "mount", as we did before this change, + breaks mount operations due to a bug in the kernel (Closes: #883703). + Thanks to Fabian Grünbichler and Felix Geyer for reporting this. + - AppArmor maintainers in Debian have been testing 4.14 without pinning + for a while and all the known issues were fixed; it's time to enable + 4.14's features so we can learn what parts of our policy still need + updates (Closes: #880078, #877581). + * Move features file to /usr/share/apparmor-features (Closes: #883682). + Thanks to Fabian Grünbichler for the patch. + * Document in apparmor/README.Debian where online documentation wrt. AppArmor + on Debian lives (Closes: #845232). Thanks to Wouter Verhelst and Jean-Michel + Vourgère for the suggestion. + * Improve usability of apparmor-notify: + - notify.conf: unset use_group. + aa-notify checks that it can read the selected log file — and aborts + if it can't — before it checks group membership vs. use_group, so in + practice setting use_group is only useful for users who are allowed + to read logs but don't want to see notifications. This seems to be + a corner case, easily addressed per-user (~/.apparmor/notify.conf) + or system-wide (by deinstalling apparmor-notify). + So let's instead optimize for a more common use case, i.e. users who can + read logs and want to see the notifications. This change does not + impact the most common use case, i.e. desktop users who are not allowed + to read logs (Closes: #880859). + - Document in apparmor-notify/README.Debian that one must be in the "adm" + group to use aa-notify. + Thanks to Lisandro Damián Nicanor Pérez Meyer and Salvatore Bonaccorso + whose combined bug reports lead to this solution. + * /lib/apparmor/functions: don't delete /etc/apparmor.d/cache/CACHEDIR.TAG + ourselves (necessary, but not sufficient, to fix #883584). + * Declare compliance with Standards-Version 4.1.2. + + -- intrigeri Thu, 07 Dec 2017 07:32:02 +0000 + +apparmor (2.11.1-3) unstable; urgency=medium + + * upstream-commit-92752f5-support-Google-Chrome-beta.patch: + new patch, backported from upstream (Closes: #880923). + + -- intrigeri Sun, 05 Nov 2017 19:26:47 +0000 + +apparmor (2.11.1-2) unstable; urgency=medium + + * apparmor: drop obsolete dependency on libapparmor-perl. + This dependency was added in 2.8.0-0ubuntu15, when aa-exec (that was + written in Perl back then) got moved to the apparmor package. + Nowadays aa-exec is written in C and AFAICT there's nothing in the + apparmor package that uses libapparmor-perl. + * apparmor-utils: drop obsolete dependency on libapparmor-perl. + All the programs shipped in this package were rewritten in Python. + * Drop obsolete dependencies on python{,3}-pkg-resources. + They were added to "fix autopkgtests in click-apparmor and + apparmor-easyprof-ubuntu". We don't ship these packages in Debian, + and I'm told they're going away in Ubuntu anyway. + + -- intrigeri Wed, 25 Oct 2017 13:58:08 +0000 + +apparmor (2.11.1-1) unstable; urgency=medium + + * Import upstream 2.11.1 release. + Drop obsolete patches and refresh remaining ones as need. + * pin-feature-set.patch: new patch, that pins the AppArmor feature set + to Linux 4.13.4-2's (Closes: #879584). + The AppArmor policy we ship is not fully ready for Linux 4.14 yet. + Once our policy has been updated (#877581) we can bump the pinned + feature set to Linux 4.14's. + Note, however, that this is not fully effective in the specific case + of 4.14-rcN up to 4.14-rc6 due to a kernel bug with pinned older + feature sets, that will likely be fixed in Linux 4.14-rc7. + For example, with Linux 4.14-rc5 some network (e.g. unix, inet, inet6) + operations are denied despite the fact this pinned feature does not + enable network mediation support. For details, see: + https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1721278 + * Disable parser-include-usr-share-apparmor.patch: it's not used on Debian + and would be made fuzzy by pin-feature-set.patch, thus causing useless + maintenance busywork. + * Improve phrasing of long packages description, based on a patch + by Vincas Dargis (Closes: #795431). + * Replace build-dependency on dh-systemd with a versioned one + on debhelper, that now ships dh_systemd_*. + * Set priority to "optional": "extra" is deprecated. + * Bump Standards-Version to 4.1.1. + * Drop "Testsuite: autopkgtest" control field: it is automatically added + by dpkg-source(1) since dpkg 1.17.1 when a debian/tests/control file exists, + which is the case here. + * Move libapache2-mod-apparmor to Section "httpd", as suggested by Lintian. + + -- intrigeri Mon, 23 Oct 2017 14:19:33 +0000 + +apparmor (2.11.0-11) unstable; urgency=medium + + * Only use systemd-detect-virt when it's installed (Closes: #871953). + * dh_apparmor: include the version of the package, so that one can find + packages that were built with a particular version of dh_apparmor. + (Closes: #872167). + * Import patch submitted upstream to support Flatpak exports + (Closes: #865206). + * Revert "Build with GCC-6 on mips64el to workaround Debian#871538": + that gcc-7 bug was fixed in 7.2.0-3 on 2017-09-02, presumably all buildd's + chroot should have it by now. + * Merge from Ubuntu citrain up to revision 1627, aka. 2.11.0-2ubuntu17. + Applied all changes (filtering from that list what had already been + done in Debian): + - Remove apparmor system upstart job on upgrades. + - r3631-apparmor-utils-python3.6-LOCALE.patch: fix utils to avoid + breakage with python 3.6 (LP: #1661766). + - nameservice-add-stub-resolv.patch: allow read access to systemd stub + resolver configuration + + -- intrigeri Sun, 03 Sep 2017 09:05:00 +0000 + +apparmor (2.11.0-10) unstable; urgency=medium + + * Build with GCC-6 on mips64el to workaround #871538. + + -- intrigeri Wed, 09 Aug 2017 13:37:47 +0000 + +apparmor (2.11.0-9) unstable; urgency=medium + + * debian-chromium-paths.patch: new patch, fixes e.g. opening links + (e.g. from Thunderbird) when Chromium is the default web browser + (reported in #858911). + + -- intrigeri Mon, 07 Aug 2017 22:36:01 +0000 + +apparmor (2.11.0-8) unstable; urgency=medium + + * firefox-non-esr.patch: new patch, fixes e.g. opening links from + Thunderbird when Firefox non-ESR is the default web browser + (Closes: #858911). + * Adjust metadata for wayland-cursor.patch: applied upstream. + + -- intrigeri Mon, 07 Aug 2017 20:01:30 +0000 + +apparmor (2.11.0-7) unstable; urgency=medium + + * compare_and_save_debsums(): fix quieting of diff on initial installation + (Closes: #870696). + * Don't explicitly pass runlevel nor sequence number to update-rc.d + via dh_installinit (Closes: #870695). + Thanks to Michael Biebl for the hint! + * wayland-cursor.patch: new patch, to allow wayland-cursor-shared-* + (Closes: #870807). + * Merge from Ubuntu citrain up to revision 1620, i.e. 2.11.0-2ubuntu11. + Applied all changes: + - fix-aa-status-pod.patch: updates aa-status for newer podchecker + (LP: #1707614) + - adjust-python-for-3.6.patch: update python abstraction for 3.6 + - adjust-nameservice-for-systemd-resolved.patch: grant access to + systemd-resolved in the nameservice abstraction (LP: #1598759). + … and then disabled adjust-nameservice-for-systemd-resolved.patch + that's dangerous without fine-grained AppArmor mediation of + D-Bus traffic. + * Remove upstart configuration: Upstart was removed in Debian Stretch + so this file is no longer useful. + * Drop ubuntu-manpage-updates.patch, that was only relevant with Upstart. + + -- intrigeri Sat, 05 Aug 2017 14:21:08 +0000 + +apparmor (2.11.0-6) unstable; urgency=medium + + * libapparmor-dev: stop installing /lib/*/libapparmor.la (Closes: #866636). + + -- intrigeri Fri, 30 Jun 2017 17:20:45 +0000 + +apparmor (2.11.0-5) unstable; urgency=medium + + * pass-compiler-flags-binutils.patch: new patch, fixes missing + hardening flags in aa-enabled and aa-exec. + * Merge from Ubuntu citrain up to revision 1617, i.e. 2.11.0-2ubuntu8. + + -- intrigeri Sat, 24 Jun 2017 21:12:47 +0000 + +apparmor (2.11.0-4) unstable; urgency=medium + + * Run parts of the upstream test suite as autopkgtests. + * Declare compliance with Standards-Version 4.0.0 (no change required). + * Add mentions-deprecated-usr-lib-perl5-directory to Lintian overrides, + since usr-lib-perl5-mentioned has been renamed. + * libapparmor1.symbols: require 2.8.94 instead of 2.8.94-0ubuntu1. + * debian/rules: use variables provided by dpkg/pkg-info.mk instead + of parsing the output of dpkg-parsechangelog. + * Override mistaken apache2-module-depends-on-real-apache2-package + Lintian check. + * Merge from Ubuntu citrain up to revision 1616, i.e. 2.11.0-2ubuntu5 + (more recent changes, up to 2.11.0-2ubuntu8, have not been pushed + to the citrain repo yet; they don't seen critical though). + + -- intrigeri Sat, 24 Jun 2017 15:15:09 +0000 + +apparmor (2.11.0-3) unstable; urgency=medium + + * Fix CVE-2017-6507: don't unload unknown profiles during package + configuration or when restarting the apparmor init script, upstart job, or + systemd unit as this could leave processes unconfined (Closes: #858768). + Changes cherry-picked from Ubuntu's 2.11.0-2ubuntu3: + - debian/apparmor.postinst, debian/apparmor.init, debian/apparmor.upstart: + Remove calls to unload_obsolete_profiles() + - debian/patches/utils-add-aa-remove-unknown.patch, + debian/apparmor.install debian/apparmor.manpages: Include a new utility, + aa-remove-unknown, which can be used to unload unknown profiles. Based + on an upstream patch but adjusted to source the /lib/apparmor/functions + shipped in Debian/Ubuntu. + + -- intrigeri Tue, 28 Mar 2017 10:29:15 +0000 + +apparmor (2.11.0-2ubuntu19) bionic; urgency=medium + + * d/p/0001-Allow-seven-digit-pid.patch: + On 64bit systems, /proc/sys/kernel/pid_max can be set to PID_MAX_LIMIT, + (2^22), which results in seven digit pids. Adjust the @{PID} variable in + tunables/global to accept this. (LP: #1717714) + + -- Seyeong Kim Mon, 08 Jan 2018 07:52:32 -0800 + +apparmor (2.11.0-2ubuntu18) bionic; urgency=medium + + * No-change rebuild against perlapi-5.26.1 + + -- Steve Langasek Thu, 02 Nov 2017 05:31:55 +0000 + +apparmor (2.11.0-2ubuntu17) artful; urgency=medium + + * nameservice-add-stub-resolv.patch: allow read access to systemd stub + resolver configuration + + -- Jamie Strandboge Fri, 15 Sep 2017 12:52:05 +0000 + +apparmor (2.11.0-2ubuntu16) artful; urgency=medium + + * add wayland-cursor.patch (LP: #1710487) + + -- Jamie Strandboge Mon, 14 Aug 2017 19:36:26 +0000 + +apparmor (2.11.0-2ubuntu15) artful; urgency=medium + + * Correctly remove system upstart job. + + -- Dimitri John Ledkov Mon, 07 Aug 2017 17:03:19 -0400 + +apparmor (2.11.0-2ubuntu14) artful; urgency=medium + + * drop adjust-nameservice-for-systemd-resolved.patch that was previously + applied in profiles-grant-access-to-systemd-resolved.patch + + -- Jamie Strandboge Mon, 07 Aug 2017 19:21:51 +0000 + +apparmor (2.11.0-2ubuntu13) artful; urgency=medium + + * Stop installing apparmor system upstart job. + * Remove apparmor system upstart job on upgrades. + + -- Dimitri John Ledkov Mon, 07 Aug 2017 12:15:53 -0400 + +apparmor (2.11.0-2ubuntu12) artful; urgency=medium + + * r3631-apparmor-utils-python3.6-LOCALE.patch: fix utils to avoid + breakage with python 3.6 (LP: #1661766) + + -- Steve Beattie Wed, 02 Aug 2017 11:47:41 -0700 + +apparmor (2.11.0-2ubuntu11) artful; urgency=medium + + * fix-aa-status-pod.patch: updates aa-status for newer podchecker + (LP: #1707614) + + -- Jamie Strandboge Mon, 31 Jul 2017 13:32:25 +0000 + +apparmor (2.11.0-2ubuntu10) artful; urgency=medium + + * No-change rebuild for perl 5.26. + + -- Matthias Klose Thu, 27 Jul 2017 09:29:54 +0200 + +apparmor (2.11.0-2ubuntu9) artful; urgency=medium + + * adjust-python-for-3.6.patch: update python abstraction for 3.6 + * adjust-nameservice-for-systemd-resolved.patch: grant access to + systemd-resolved in the nameservice abstraction (LP: #1598759). Patch + from Tyler Hicks + + -- Jamie Strandboge Wed, 26 Jul 2017 13:23:26 +0000 + +apparmor (2.11.0-2ubuntu8) artful; urgency=medium + + * no-change rebuild to unblock build of snapd after armhf/arm64 + enabling PIE by default. + + -- Michael Vogt Tue, 06 Jun 2017 11:37:03 +0200 + +apparmor (2.11.0-2ubuntu7) artful; urgency=medium + + * utils-keep-shebang.patch: Stop inappropriately mangling script shebangs. + * utils-logprof-python3.6.patch: Add python3.6 line to utils/logprof.conf. + + -- Adam Conrad Fri, 12 May 2017 06:26:16 -0600 + +apparmor (2.11.0-2ubuntu6) artful; urgency=medium + + * No change rebuild to add Python 3.6 support. + + -- Michael Hudson-Doyle Fri, 12 May 2017 11:38:00 +1200 + +apparmor (2.11.0-2ubuntu5) artful; urgency=medium + + * debian/patches/base-journald-updates.patch: update base abstraction for + additional journald sockets + + -- Jamie Strandboge Thu, 27 Apr 2017 16:09:50 +0000 + +apparmor (2.11.0-2ubuntu4) zesty; urgency=medium + + * debian/patches/aa-notify-urgency-normal.patch: adjust the notify-send + urgency to 'normal' to accommodate gnome-shell (LP: #1681908) + + -- Jamie Strandboge Tue, 11 Apr 2017 18:34:18 +0000 + +apparmor (2.11.0-2ubuntu3) zesty; urgency=medium + + * SECURITY UPDATE: Don't unload unknown profiles during package + configuration or when restarting the apparmor init script, upstart job, or + systemd unit as this could leave processes unconfined (LP: #1668892) + - debian/apparmor.postinst, debian/apparmor.init, debian/apparmor.upstart: + Remove calls to unload_obsolete_profiles() + - debian/patches/utils-add-aa-remove-unknown.patch, + debian/apparmor.install debian/apparmor.manpages: Include a new utility, + aa-remove-unknown, which can be used to unload unknown profiles. Based + on an upstream patch but adjusted to source the /lib/apparmor/functions + shipped in Debian/Ubuntu. + - CVE-2017-6507 + * debian/patches/r3645-profiles-update-nvidia-abstraction.patch: Update + nvidia abstraction for newer nvidia drivers (LP: #1590561) + + -- Tyler Hicks Fri, 24 Mar 2017 05:26:28 +0000 + +apparmor (2.11.0-2ubuntu2) zesty; urgency=medium + + * debian/apparmor.postrm: Ensure that a purge of the apparmor package does + not fail if the /var/lib/apparmor/profiles or /var/lib/apparmor + directories do not exist. This purge operation should be considered + successful in that situation. (LP: #1661406) + + -- Tyler Hicks Thu, 02 Mar 2017 00:21:14 +0000 + +apparmor (2.11.0-2ubuntu1) zesty; urgency=medium + + * Merge with Debian unstable. Remaining Ubuntu changes: + - debian/apparmor.init: Call handle_system_policy_package_updates as we + need it for Click, snappy, and system-images. Note that this prevents + using a remote /var. + - debian/patches/series: Apply + profiles-grant-access-to-systemd-resolved.patch + - debian/patches/series: Apply add-chromium-browser.patch + - debian/apparmor-profiles.install, debian/apparmor-profiles.postinst: + Install chromium-browser profile and abstraction + * Drop the following change: + - debian/rules: Create a new empty file, needed for the test added by this + patch, since quilt is unable to do so. + + This is no longer required since the empty file is now distributed as + part of the upstream tar. + * debian/patches/r3615-profiles-sshd-drop-local-include.patch: Drop the + local includes in the sshd profile since it causes a parser error due to + the missing includes file + * debian/patches/utils-fix-failing-tests-in-aa-py.patch: Adjust expected + output to account for the base abstraction changes to accommodate the /usr + merge + * debian/patches/utils-allow-unordered-dbus-attribs.patch: Don't + unnecessarily enforce attribute ordering in D-Bus rules (LP: #1628286) + + -- Tyler Hicks Thu, 09 Feb 2017 06:57:45 +0000 + +apparmor (2.11.0-2) unstable; urgency=medium + + * Drop the apparmor-docs package (Closes: #851118). + + -- intrigeri Sat, 21 Jan 2017 10:05:51 +0000 + +apparmor (2.11.0-1) unstable; urgency=medium + + * Import upstream 2.11.0 release (Closes: #809649). + * Don't try to install non-existing file + to /etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser. + * Drop all backported patches, that are now obsolete. + * Drop aa-utils_are_bilingual.patch, that is obsolete since upstream + switched to Python 3. + * Refresh all remaining quilt patches. + * debian/apparmor.manpages: follow upstream wrt. moving the manpages + for aa-enabled and aa-exec to section 1. + * Reintroduce building parser/techdoc.pdf from source while building + the binary package. + * Build PDFs from documentation/*, and include them in the apparmor-docs + package. Accordingly add build-dependency on libreoffice-writer and unoconv. + * README.source: document how to import a new upstream release from + the tarball. + + -- intrigeri Mon, 09 Jan 2017 10:30:38 +0000 + +apparmor (2.10.95-8) unstable; urgency=medium + + * Stop applying add-chromium-browser.patch: it's been broken for years + on Debian, and nobody ever bothered to upstream this profile in a way + that makes it work cross-distro (Closes: #742829). + * r3441-sshd-blacklist.patch: new patch, cherry-picked from upstream + (Closes: #821881). + * r3497-add-ld.so.preload-to-abstractions-base.patch: new patch, + cherry-picked from upstream. + * r3600-usrmerge.patch: new patch, cherry-picked from upstream + (resolves the parts of #843461 that can be handled in this package). + + -- intrigeri Sat, 17 Dec 2016 11:25:27 +0000 + +apparmor (2.10.95-7) unstable; urgency=medium + + * r3582-build-with-recent-swig.patch: new patch, cherry-picked + from upstream (Closes: #844929). + * r3588-update-gnome-abstraction-with-versioned-gtk-paths.patch: + new patch, cherry-picked from upstream (Closes: #845005). + * r3590-add-more-wayland-paths.patch: new patch, cherry-picked from upstream. + * r3591-yet-another-location-for-Xauthority.patch: new patch, cherry-picked + from upstream (Closes: #845250). + * Merge from Ubuntu citrain up to revision 1604. + * Disable profiles-grant-access-to-systemd-resolved.patch: it's dangerous + without fine-grained AppArmor mediation of D-Bus traffic. + + -- intrigeri Fri, 2 Dec 2016 11:00:00 +0000 + +apparmor (2.10.95-6) unstable; urgency=medium + + * New patches, cherry-picked from upstream: + - debian/patches/r3577-gnome-abstraction-gtk3-config.patch: + gnome abstraction: grant read access to ~/.config/gtk-3.0/*. + - debian/patches/r3578-dnsmasq-libvirt_leaseshelper.patch: + dnsmasq: allow libvirt_leaseshelper "m" permission on itself. + + -- intrigeri Tue, 08 Nov 2016 13:05:14 +0000 + +apparmor (2.10.95-5) unstable; urgency=medium + + * Merge from ubuntu-citrain up to revision 1600. Remaining Debian changes: + - debian/apparmor.init: don't call handle_system_policy_package_updates. + * r3566-wayland.patch: new patch, to support Wayland in at least Evince + (Closes: #827335). + * r3487-add-firefox-esr-to-ubuntu-browsers.patch: new patch, to support + firefox-esr in abstractions/ubuntu-browsers (Closes: #821945). + * Drop "Replaces: apparmor-parser": that package has never been part of + Debian, and if has ever been included in Ubuntu, that must have been + ages ago. + * Drop Breaks: lxc (<< 1.1.0~alpha1-0ubuntu5~). + - Wrt. Ubuntu: Xenial ships a newer lxc. + - Wrt. Debian: this Breaks was added in Ubuntu in order to "restrict + signal, ptrace and unix mediation to the container" (LP: #1373555). + These features require third-party Linux kernel patches, that we + haven't in Debian, so even though Jessie has lxc 1.0, we don't need + this Breaks relationship. + * Drop Breaks: lightdm (<< 1.11.8-0ubuntu2~). + - Wrt. Debian: it was added in Ubuntu because lightdm 1.11.8-0ubuntu2 + brings "updates for unix socket mediation". But Unix socket mediation + requires third-party Linux kernel patches, that we haven't in Debian. + - Wrt. Ubuntu: even Vivid includes a newer lightdm. + * Drop Breaks+Replaces on a version of debhelper older than the one included + in Precise and Wheezy. + * Drop Breaks+Replaces on versions of our own binary packages that are older + than the ones included in Jessie and Xenial. + * Drop Breaks: rsyslog (<< 7.4.4-1ubuntu9~). Bot Jessie and Xenial ship + a newer one. + * Drop Breaks: apparmor-easyprof-ubuntu (<< 1.2.22). Xenial ships + a newer one. + * Drop Breaks: libvirt-bin (<< 1.2.6-0ubuntu6~). Jessie and Xenial + have a newer one. + * Drop Breaks+Replaces: apparmor-utils << 2.8.0: Jessie and Trusty ship + a newer one. + * Drop Breaks+Replaces: libapache2-mod-apparmor (<< 2.5.1-0ubuntu3): + Precise and Wheezy shipped with something newer. + * Version dependency on lsb-base to >= 3.0-6, as advised by Lintian's + init.d-script-needs-depends-on-lsb-base tag. + + -- intrigeri Sat, 15 Oct 2016 16:04:40 +0000 + +apparmor (2.10.95-4ubuntu6) UNRELEASED; urgency=medium + + * debian/patches/r3556-drop-CMD_CONTINUE.patch: Fix test failure in utils/ + that is caught by newer versions pyflakes. The test failure was caused by + CMD_CONTINUE being defined twice. + + -- Tyler Hicks Wed, 16 Nov 2016 21:10:50 +0000 + +apparmor (2.10.95-4ubuntu5.2) zesty; urgency=medium + + * No-change rebuild for perl 5.24 transition + + -- Iain Lane Mon, 24 Oct 2016 10:07:02 +0100 + +apparmor (2.10.95-4ubuntu5.1) yakkety; urgency=medium + + * debian/patches/profiles-grant-access-to-systemd-resolved.patch: AppArmor + profiles that make use of the nameservice abstraction should be allowed to + communicate with systemd-resolved over D-Bus. Ubuntu 16.10 systems are + configured to use nss-resolve which then communicates with + systemd-resolved's D-Bus API. (LP: #1598759) + + -- Tyler Hicks Wed, 12 Oct 2016 01:47:06 +0000 + +apparmor (2.10.95-4ubuntu5) yakkety; urgency=medium + + * debian/lib/apparmor/functions, debian/apparmor.init, + debian/apparmor.service, debian/apparmor.upstart, + debian/lib/apparmor/profile-load: Adjust the checks that previously kept + AppArmor policy from being loaded while booting a container. Now we + attempt to load policy if we're in a LXD or LXC managed container that is + using profile stacking inside of a policy namespace. (LP: #1628285) + * Fix regression tests so that the kernel SRU process is not interrupted by + failing tests + - debian/patches/r3505-tests-fix-stacking-mode-checks.patch: Fix the + stackonexec.sh and stackprofile.sh tests (LP: #1628295) + - debian/patches/r3509-tests-fix-exec_stack-errors.patch: Fix the + exec_stack.sh test (LP: #1628745) + + -- Tyler Hicks Thu, 29 Sep 2016 00:38:47 -0500 + +apparmor (2.10.95-4ubuntu4) yakkety; urgency=medium + + * debian/patches/allow-access-to-ibus-socket.patch: Adjust the ibus + abstraction to allow access to the abstract UNIX domain socket location + used in Ubuntu. (LP: #1580463) + * debian/lib/apparmor/functions: Quiet the "Files ... and ... differ" + output, during the update process, which was printed by diff. This message + left users concerned since it mentioned md5sums files without being clear + about what was happening. (LP: #1614215) + + -- Tyler Hicks Fri, 26 Aug 2016 13:33:46 -0500 + +apparmor (2.10.95-4ubuntu3) yakkety; urgency=medium + + * r3498-r3499-ignore-net-events-that-look-like-file-events.patch: Prevent an + aa-logprof crash by ignoring file events that contains send *and* receive + in the request mask. This is an improvement to the previous fix that only + addressed events that contained send *or* receive. + (LP: #1577051, LP: #1582374) + - debian/rules: Create a new empty file, needed for the test added by this + patch, since quilt is unable to do so. + + -- Tyler Hicks Mon, 01 Aug 2016 18:03:36 -0500 + +apparmor (2.10.95-4ubuntu2) yakkety; urgency=medium + + * Drop the following change now that click-apparmor has been updated: + - Continue installing aa-exec into /usr/sbin/ for now since + click-apparmor's aa-exec-click autopkgtest expects it to be there + * debian/patches/allow-stacking-tests-to-use-system.patch, + debian/patches/r3430-allow-stacking-tests-to-use-system.patch: Replace + patch with the final version that landed upstream and annotate the patch + headers accordingly + * debian/patches/r3460-ignore-file-events-with-send-or-receive-request.patch: + Prevent an aa-logprof crash by ignoring file events that contains + send or receive in the request mask. (LP: #1577051, LP: #1582374) + * debian/patches/r3463-r3475-change-profile-exec-modes.patch: Allow policy + authors to specify if the environment should scrubbed during exec + transitions allowed by a change_profile rule. (LP: #1584069) + * debian/patches/r3478-make-overlapping-safe-and-unsafe-rules-conflict.patch: + Make sure that multiple change_profile rules with overlapping safe and + unsafe exec modes conflict when they share the same exec conditional + (LP: #1588069) + * debian/patches/r3479-create-fcitx-abstractions.patch: Include fcitx and + fcitx-strict abstractions that fcitx client profiles can reuse. + * debian/control: Do a conffile move of /etc/apparmor.d/abstractions/fcitx + from the fcitx-data to apparmor by setting up the correct Breaks and + Replaces. + * debian/patches/r3480-create-mozc-abstraction.patch: Include a mozc + abstraction that mozc client profiles can reuse. + * debian/patches/r3488-r3489-fix-racy-onexec-test.patch: Fix racy regression + test so that the kernel SRU process is not interrupted by the onexec.sh + periodically failing + * debian/patches/r3490-utils-handle-change-profile-exec-modes.patch: Update + the Python utilities to handle the new exec mode keywords in + change_profile rules. (LP: #1584069) + * debian/patches/r3492-allow-dbus-user-session-path.patch: Allow read/write + access to the dbus-user-session socket file. (LP: #1604872) + + -- Tyler Hicks Tue, 26 Jul 2016 23:03:05 -0500 + +apparmor (2.10.95-4ubuntu1) yakkety; urgency=medium + + * Merge with Debian unstable. Remaining Ubuntu changes: + - debian/apparmor.init: Call handle_system_policy_package_updates as we + need it for Click, snappy, and system-images. Note that this prevents + using a remote /var. + + -- Martin Pitt Tue, 26 Jul 2016 09:28:12 +0200 + +apparmor (2.10.95-4) unstable; urgency=medium + + * debhelper/postinst-apparmor: re-add the "aa-status --enabled" -based code + as a fallback, that is used when aa-enabled is not present. This + facilitates upgrades from Jessie to Stretch, as well as partial + testing/sid upgrades. (Closes: #829030) + + -- intrigeri Fri, 01 Jul 2016 12:50:58 +0000 + +apparmor (2.10.95-3) unstable; urgency=medium + + * debhelper/postinst-apparmor: re-add 2>/dev/null to aa-enabled invocation, + to avoid misleading users into thinking the package is missing a dependency + on apparmor. Thanks to Simon McVittie for the analysis! (Closes: #828795) + + -- intrigeri Wed, 29 Jun 2016 10:11:30 +0000 + +apparmor (2.10.95-2) unstable; urgency=medium + + * dh-apparmor: use aa-enabled instead of aa-status --enabled. + (Closes: #822475) + * Ship fake aa-enabled and aa-exec for non-Linux builds to fix FTBFS there + (same "solution" as the one we've had for apparmor_parser for a while). + + -- intrigeri Fri, 24 Jun 2016 13:16:20 +0000 + +apparmor (2.10.95-1) unstable; urgency=medium + + * Merge from ubuntu-citrain up to revision 1590, that is changes brought + by 2.10.95-0ubuntu1 to 2.10.95-0ubuntu2, including a new upstream + release also known as AppArmor 2.11.beta1. (Closes: #810888) + Remaining changes: + - debian/apparmor.install: install tunables/home.d and tunables/multiarch.*, + to make it easier to maintain site-specific configuration. + - Don't ship empty /usr/bin and /usr/share/apparmor in apparmor-utils: + I fail to see what good they can do. + - Drop dependency from apparmor on initramfs-tools: the early modules + loading code that needed it was removed a while ago. + - apparmor-notify depends on libnotify-bin: the package's description + is explicitly about desktop notifications, and we've had #746508, + so let's stick to supporting the desktop use case as best as we can, + and ignore the server use case for now. + - debian/control: removed duplicated Section entry for apparmor-easyprof, + it's the same as the source package's one. + - Apply notify-group.patch. + - The new packaging fixes and improvements documented below. + * Remove Holger from Uploaders, at his request. (Closes: #824461) + * dh-apparmor: fix enabling policy if it's the system's first. + Thanks to Peter Palfrader for the analysis and patch! + (Closes: #822349) + * Declare compliance with Standards-Version 3.9.8. + * Fix typo in dh_apparmor(1) manpage. + * Add Lintian overrides for the no-upstream-changelog check: upstream + does not ship any changelog. + * debian/README.source: document how we import new upstream releases + from Ubuntu into Debian. + * Add a systemd unit wrapping the init script. Thanks to Felipe Sateler + for coming up with a patch, to the OpenSUSE folks for some inspiration, + and to Felix Geyer for commenting on my own initial draft. (Closes: #796589) + Accordingly: + - Add a build-dependency on dh-systemd, and enable it in debian/rules. + - Disable handle_system_policy_package_updates in the init script's + start action: it is only useful for click, snappy and Ubuntu system + images, i.e. not in Debian; and it reads and writes to /var, that can + be remote-mounted, so it would prevent us from using Before=sysinit.target + (and thus, from confining early system services) without possibly + introducing dependency loops. + + -- intrigeri Thu, 23 Jun 2016 18:25:09 +0000 + +apparmor (2.10.95-0ubuntu2) xenial; urgency=medium + + * debian/patches/r3435-allow-dnsmasq-access-to-lxd-bridge.patch: Grant + access to the new default bridge configuration in LXD 2.0.0 (LP: #1566944) + * debian/patches/r3437-add-attach-disconnected-to-dnsmasq.patch: Add the + attach_disconnected flag to the dnsmasq profile in order to prevent a + disconnected path denial triggered by the latest network-manager upload + (LP: #1569316) + * debian/lib/apparmor/functions: Reference the new path used for snapd + AppArmor profiles to fix a bug which left those profiles unloaded after + booting (LP: #1569573) + + -- Tyler Hicks Tue, 12 Apr 2016 16:59:46 -0500 + +apparmor (2.10.95-0ubuntu1) xenial; urgency=medium + + * Update to apparmor 2.10.95 (2.11 Beta 1) (LP: #1561762) + - Allow Apache prefork profile to chown(2) files (LP: #1210514) + - Allow deluge-gtk and deluge-console to handle torrents opened in + browsers (LP: #1501913) + - Allow file accesses needed by some programs using libnl-3-200 + (Closes: #810888) + - Allow file accesses needed on systems that use NetworkManager without + resolvconf (Closes: #813835) + - Adjust aa-status(8) to work without python3-apparmor (LP: #1480492) + - Fix aa-logprof(8) crash when operating on files containing multiple + profiles with certain rules (LP: #1528139) + - Fix log parsing crashes, in the Python utilities, caused by certain file + related events (LP: #1525119, LP: #1540562) + - Fix log parsing crasher, in the Python utilities, caused by certain + change_hat events (LP: #1523297) + - Improve Python 2 support of the utils by fixing an aa-logprof(8) crasher + when Python 3 is not available (LP: #1513880) + - Send aa-easyprof(8) error messages to stderr instead of stdout + (LP: #1521400) + - Fix aa-autodep(8) failure when the shebang line of a script contained + parameters (LP: #1505775) + - Don't depend on the system logprof.conf when running utils/ build tests + (LP: #1393979) + - Fix apparmor_parser(8) bugs when parsing profiles that use policy + namespaces in the profile declaration or profile transition targets + (LP: #1540666, LP: #1544387) + - Regression fix for apparmor_parser(8) bug that resulted in the + --namespace-string commandline option being ignored causing profiles to + be loaded into the root policy namespace (LP: #1526085) + - Fix crasher regression in apparmor_parser(8) when the parser was asked + to process a directory (LP: #1534405) + - Fix bug in apparmor_parser(8) to honor the specified bind flags remount + rules (LP: #1272028) + - Support tarball generation for Coverity scans and fix a number of issues + discovered by Coverity + - Fix regression test failures on s390x systems (LP: #1531325) + - Adjust expected errno values in changeprofile regression test + (LP: #1559705) + - The Python utils gained support for ptrace and signal rules + - aa-exec(8) received a rewrite in C + - apparmor_parser(8) gained support for stacking multiple profiles, as + supported by the Xenial kernel (LP: #1379535) + - libapparmor gained new public interfaces, aa_stack_profile(2) and + aa_stack_onexec(2), allowing applications to utilize the new kernel + stacking support (LP: #1379535) + * Drop the following patches since they've been incorporated upstream: + - aa-status-dont_require_python3-apparmor.patch + - r3209-dnsmasq-allow-dash + - r3227-locale-indep-capabilities-sorting.patch + - r3277-update-python-abstraction.patch + - r3366-networkd.patch, + - tests-fix_sysctl_test.patch + - parser-fix-cache-file-mtime-regression.patch + - parser-verify-cache-file-mtime.patch + - parser-run-caching-tests-without-apparmorfs.patch + - parser-do-cleanup-when-test-was-skipped.patch + - parser-allow-unspec-in-network-rules.patch + * debian/rules, debian/apparmor.install, debian/apparmor.manpages: Update + for new upstream binutils directory and aa-enabled binary + - Continue installing aa-exec into /usr/sbin/ for now since + click-apparmor's aa-exec-click autopkgtest expects it to be there + * debian/libapparmor-dev.manpages: Include the new aa_stack_profile.2 man + page + * debian/patches/r3424-nscd-profile-allow-paranoia-mode.patch: Allow file + access needed for nscd's paranoia mode + * debian/patches/r3425-adjust-stacking-tests-version-check.patch: Adjust the + regression test build time checks, for libapparmor stacking support, to + look for the 2.10.95 versioning rather than 2.11 + * debian/patches/r3426-allow-debugedit-to-work-on-apparmor-parser.patch: + Remove extra slash in the parser Makefile so that debugedit(8) can work on + apparmor_parser(8) (LP: #1561939) + * debian/patches/allow-stacking-tests-to-use-system.patch: Adjust the file + rules of the new stacking tests so that the generated profiles allow the + system binaries and libraries to be tested + * debian/libapparmor1.symbols: update symbols file for added symbols + in libapparmor + + -- Tyler Hicks Sat, 09 Apr 2016 01:35:25 -0500 + +apparmor (2.10-4) unstable; urgency=medium + + * Team upload. + * Backport latest nameservice abstraction. (Closes: #813835) + - Allows reading resolv.conf from NetworkManager and systemd-networkd. + - Add nameservice-abstraction.patch + + -- Felix Geyer Tue, 29 Mar 2016 22:30:30 +0200 + +apparmor (2.10-3ubuntu2) xenial; urgency=medium + + * debian/patches/parser-allow-unspec-in-network-rules.patch: Allow + apparmor_parser to support rules that use 'unspec' as the network protocol + family. (LP: #1546455) + + -- Tyler Hicks Thu, 18 Feb 2016 12:48:17 -0600 + +apparmor (2.10-3ubuntu1) xenial; urgency=medium + + * Merge from Debian unstable. Remaining changes: + - debian/apparmor.init,apparmor.upstart,debian/lib/apparmor/functions: + clear only the system cache if apparmor version has changed on snappy + flavors since snappy will handle the app's cache itself + - debian/apparmor.install: install tunables/home.d and + tunables/multiarch.d + - debian/apparmor-utils.dirs: install usr/bin and usr/share/apparmor + - debian/control: + + make libnotify-bin a Suggests rather than a Recommends since it is + assumed to already be installed on the desktop and so server + environments don't have to pull in a lot of X dependencies + (LP: #1061879) + + apparmor-easyprof in section 'admin' + + apparmor Depends on initramfs-tools | linux-initramfs-tool [linux-any] + + apparmor Breaks on lightdm (<< 1.11.8-0ubuntu2~), + lxc (<< 1.1.0~alpha1-0ubuntu5~) + - drop debian/patches/reproducible-pdf.patch (not applied in series) + * drop debian/patches/fix-abstraction-for-python3.5.patch in favor of + Debian's + * debian/patches/series: comment out notify-group.patch + * debian/patches/non-linux.patch: refresh + * debian/patches/r3366-networkd.patch: use this instead of dropped Ubuntu + lp1529074.patch for NetworkManager and networkd support + + -- Jamie Strandboge Tue, 16 Feb 2016 08:49:31 -0600 + +apparmor (2.10-3) unstable; urgency=medium + + * Team upload. + + [ intrigeri ] + * Drop libapparmor-mention-dbus-method-in-getcon-man.patch (Closes: #800132) + + [ Felix Geyer ] + * Update python abstraction for python 3.5. + - Pull r3277-update-python-abstraction.patch from upstream + + -- Felix Geyer Mon, 25 Jan 2016 22:50:13 +0100 + +apparmor (2.10-2) unstable; urgency=medium + + [ Felix Geyer ] + * Apply aa-status-dont_require_python3-apparmor.patch, to keep + the hard dependencies of the apparmor binary package minimal. + * python{,3}-apparmor: require at least the same upstream version + of python{,3}-libapparmor. + + [ intrigeri ] + * Drop abstractions-ubuntu-browsers.patch: integrated upstream + (in a slightly different way). + * debian/control: don't start short description with capital letter. + (Closes: #795434) + * r3227-locale-indep-capabilities-sorting.patch: cherry-pick from upstream, + to make (more of?) the build reproducible. (Closes: #797415) + * Merge from ubuntu-citrain up to revision 1578, that is changes brought + by 2.10-0ubuntu3 to 2.10-0ubuntu6. + * Upload to unstable. + + -- intrigeri Tue, 18 Aug 2015 09:48:54 +0200 + +apparmor (2.10-1) experimental; urgency=medium + + [ intrigeri ] + * Merge ubuntu-citrain up to revision 1575, except: + - previously documented changes + - debian/patches/aa-status-dont_require_python3-apparmor.patch: + don't apply, only relevant for Ubuntu Phone + * debian/patches/r3209-dnsmasq-allow-dash: cherry-pick from upstream. + * debian/patches/pass-compiler-flags.patch: refresh. + * Update upstream signing key. + * apparmor-utils: make the Depends on python3-apparmor versioned. + (Closes: #785436) + * Override the "apparmor source: usr-lib-perl5-mentioned rules" error. + We replace usr/lib/perl5 with the corresponding multiarch path + in debian/rules, as a consequence this file contains this string. + * python-apparmor, python3-apparmor: add Lintian overrides for + the extended-description-is-probably-too-short tag. + * debian/control: stuff out a bit apparmor-utils' extended description. + + [ Felix Geyer ] + * Add Brazilian Portuguese translation of debconf messages. + Thanks to Adriano Rafael Gomes. (Closes: #788342) + * Use dh_apparmor from this source package for apparmor-profiles. + (Closes: #656451) + * Make debian/rules safer: + - Add set -e to loops. + - Use "&&" when chaining shell commands. + + -- intrigeri Thu, 13 Aug 2015 23:42:10 +0200 + +apparmor (2.10-0ubuntu12) xenial; urgency=medium + + * Call systemd-detect-virt instead of the Ubuntu specific + running-in-container wrapper. (LP: #1539016) + + -- Martin Pitt Thu, 28 Jan 2016 13:33:28 +0100 + +apparmor (2.10-0ubuntu11) xenial; urgency=medium + + * No-change rebuild to drop python3.4 support. + + -- Matthias Klose Mon, 18 Jan 2016 19:38:38 +0000 + +apparmor (2.10-0ubuntu10) xenial; urgency=medium + + * debian/patches/lp1529074.patch: for systems using networkd, add read on + /run/systemd/resolve/resolv.conf (LP: #1529074) + + -- Jamie Strandboge Tue, 05 Jan 2016 10:00:20 -0600 + +apparmor (2.10-0ubuntu9) xenial; urgency=medium + + * No change rebuild for perl 5.22 + + -- Jamie Strandboge Thu, 17 Dec 2015 12:14:10 -0600 + +apparmor (2.10-0ubuntu8) xenial; urgency=medium + + * debian/patches/fix-abstraction-for-python3.5.patch: adjust python + abstraction for python 3.5 + + -- Jamie Strandboge Wed, 18 Nov 2015 16:01:47 -0600 + +apparmor (2.10-0ubuntu7) xenial; urgency=medium + + * debian/apparmor.init,apparmor.upstart: clear only the system cache if + apparmor version has changed on snappy flavors since snappy will handle + the app's cache itself + * debian/lib/apparmor/functions: + - compile /var/lib/snappy/apparmor/profiles policy + - add compare_previous_version() + - refactor clear_cache() + - compare_and_save_debsums() checks if $PROFILES_VAR exists + + -- Jamie Strandboge Tue, 10 Nov 2015 15:34:20 -0600 + +apparmor (2.10-0ubuntu6) wily; urgency=medium + + * debian/libapparmor-dev.manpages: add 5 missing libapparmor manpages + (LP: #1491147, LP: #1384431) + + -- Steve Beattie Tue, 01 Sep 2015 14:17:16 -0700 + +apparmor (2.10-0ubuntu4) wily; urgency=medium + + * Rebuild against python3.5. + + -- Dimitri John Ledkov Sat, 15 Aug 2015 22:12:50 +0100 + +apparmor (2.10-0ubuntu3) wily; urgency=medium + + * debian/patches/parser-fix-cache-file-mtime-regression.patch: Fix a bug + that resulted in the mtime of generate policy cache files to be set + incorrectly. The mtime of cache files should be the newest mtime detected + on the profile and abstraction files used to generate the policy cache + file. However, the bug caused the mtime of the policy cache file to either + not be updated or to be updated to an incorrect time. (LP: #1484178) + * debian/patches/parser-verify-cache-file-mtime.patch: Add tests to verify + that the policy cache file's mtime is being set correctly and that cache + handling is correct when the profile or abstraction files are newer than + the policy cache file. + * debian/patches/parser-run-caching-tests-without-apparmorfs.patch, + debian/patches/parser-do-cleanup-when-test-was-skipped.patch: Enable the + caching tests to run on the buildds even though apparmorfs isn't mounted. + + -- Tyler Hicks Wed, 12 Aug 2015 13:01:56 -0500 + +apparmor (2.10-0ubuntu2) wily; urgency=medium + + * debian/patches/aa-status-dont_require_python3-apparmor.patch: + make aa-status(8) work even when python3-apparmor is not installed, + otherwise dh_apparmor postinst snippets can fail (LP: #1480492) + * debian/control: make apparmor-utils depend on the same package + version of python3-apparmor + + -- Steve Beattie Fri, 31 Jul 2015 16:35:03 -0700 + +apparmor (2.10-0ubuntu1) wily; urgency=medium + + * Update to apparmor 2.10 + - libapparmor added functions to ease loading profile cache files to + help support systemd on-demand load of policy (LP: #1385414) + - apparmor parser: fixed policy generation to allow matching + embedded NULs in abstract unix socket names (LP: #1413410) + - aa-status: don't traceback when not permitted to read current + set of apparmor policy (LP: #1466768) + - aa-logprof: don't crash on policies that have an #include of a + directory (LP: #1471425) + - aa-logprof: fix crash when network rejections occur when file + operations are performed on network sockets (LP: #1466812) + * dropped reproducible-pdf.patch, incorporated upstream + * debian/patches/tests-fix_sysctl_test.patch: fix sysctl test failure + with 4.1 kernel and newer. + * debian/control: add alternate dependency on linux-initramfs-tool + (LP: #1109029) + * debian/libapparmor1.symbols: update symbols file for added symbols + in libapparmor + + -- Steve Beattie Thu, 23 Jul 2015 01:57:43 -0700 + +apparmor (2.9.2-3) unstable; urgency=medium + + * Mark reproducible-pdf.patch as forwarded upstream. + * debian/rules: improve handling of the unversioned link in /usr to the + shared library; the new implementation doesn't cause needless version + churn in debian/rules when new releases that touch libapparmor are + incorporated into the packaging. Thanks to Steve Beattie + for the patch! + * Upload to unstable. + + -- intrigeri Fri, 08 May 2015 21:43:41 +0200 + +apparmor (2.9.2-2) experimental; urgency=medium + + * libapache2-mod-apparmor.postrm: on package purge, delete + /etc/apparmor.d/{,disable} if empty (Closes: #766750). + * Add reproducible-pdf.patch: make techdoc.pdf reproducible even + in face of timezone variations. + + -- intrigeri Sun, 03 May 2015 11:57:58 +0200 + +apparmor (2.9.2-1) experimental; urgency=medium + + * Merge Ubuntu changes up to 2.9.1-0ubuntu9, including: + - New upstream 2.9.1 release (Closes: #770788, #771400) + - Replace unnecessary $remote_fs dependency with $local_fs + (Closes: #782700) + * Import new 2.9.2 upstream release (Closes: #670305, #777034). + * Don't install the usr.sbin.cupsd example profile: it is shipped + and enabled by the cups-daemon package already. + * Install the /etc/apparmor.d/tunables/{home,multiarch}.d + directories from upstream. + * Install the sbin.dhclient-script and usr.lib.RealPlayer10.realplay + example profiles in /usr/share/doc/apparmor-profiles/extras/. + * debian/apparmor.install: sort entries in lexical order. + * debian/rules: pass --no-start to dh_installinit since we're handling + reloading profiles manually in the postinst scripts. + * Drop patches applied upstream: + - add-mir-abstraction-lp1422521.patch + - systemd-dev-log-lp1413232.patch + - parser-fix_modifier_compilation_+_tests.patch + - tests-fix_systemd_breakage_in_pivot_root-lp1436109.patch + - GDM_X_authority-lp1432126.patch + - easyprof-framework-policy.patch. + * debian/copyright: remove obsolete paragraph about + profiles/apparmor-profiles.spec.in. + * Override the init.d-script-missing-dependency-on-remote_fs Lintian + warning for the apparmor binary package: the current theory is that + only the click package bits need /usr upon startup. + * Enable the bindnow hardening flag during build. + * libapparmor-dev: install libapparmor.so link in /usr/lib, not in /lib, + as dictated in Debian Policy section 8.4 (Development files). + + -- intrigeri Thu, 30 Apr 2015 12:46:44 +0200 + +apparmor (2.9.2-0ubuntu2) wily; urgency=medium + + * No-change rebuild for python3.5 transition + + -- Steve Langasek Wed, 22 Jul 2015 04:07:28 +0000 + +apparmor (2.9.2-0ubuntu1) wily; urgency=medium + + * Update to apparmor 2.9.2 + - Fix minitools to work with multiple profiles at once (LP: #1378095) + - Parse mounts that have non-ascii UTF-8 chars (LP: #1310598) + - Update dovecot profiles (LP: #1296667) + - Allow ubuntu-helpers to build texlive fonts (LP: #1010909) + * dropped patches incorporated upstream: + add-mir-abstraction-lp1422521.patch, systemd-dev-log-lp1413232.patch + parser-fix_modifier_compilation_+_tests.patch, + tests-fix_systemd_breakage_in_pivot_root-lp1436109.patch, + GDM_X_authority-lp1432126.patch, and + debian/patches/easyprof-framework-policy.patch + * Partial merge with debian apparmor package: + - debian/rules: enable the bindnow hardening flag during build. + - debian/upstream/signing-key.asc: add new upstream public + signing key + - debian/watch: fix watch file, add gpg signature checking + - install libapparmor.so dev symlink under /usr not /lib + - debian/patches/reproducible-pdf.patch: make techdoc.pdf + reproducible even in face of timezone variations. + - debian/control: sync fields + - debian/debhelper/postrm-apparmor: remove + /etc/apparmor.d/{disable,} on package purge + - debian/libapache2-mod-apparmor.postrm: on package purge, delete + /etc/apparmor.d/{,disable} if empty + - debian/libapparmor1.symbols: Use Build-Depends-Package in the + symbols file. + - debian/copyright: sync + + -- Steve Beattie Mon, 11 May 2015 22:03:04 -0700 + +apparmor (2.9.1-0ubuntu9) vivid; urgency=medium + + * Make debian/lib/apparmor/profile-load executable. + + -- Serge Hallyn Thu, 02 Apr 2015 13:00:35 -0500 + +apparmor (2.9.1-0ubuntu8) vivid; urgency=medium + + [ Steve Beattie ] + * debian/rules: run make check on the libapparmor library + * add-chromium-browser.patch: add support for chromium policies + (LP: #1419294) + * debian/apparmor.{init,upstart}: add support for triggering + aa-profile-hook runs when packages are updated via snappy system + image updates (LP: #1434143) + * parser-fix_modifier_compilation_+_tests.patch: fix compilation + of audit modifiers for exec and pivot_root and deny modifiers on + link rules as well as significantly expand related tests + (LP: #1431717, LP: #1432045, LP: #1433829) + * tests-fix_systemd_breakage_in_pivot_root-lp1436109.patch: work + around pivot_root test failures due to init=systemd (LP: #1436109) + * GDM_X_authority-lp1432126.patch: add location GDM creates Xauthority + file to X abstraction (LP: #1432126) + + [ Jamie Strandboge ] + * easyprof-framework-policy.patch: add --include-templates-dir and + --include-policy-groups-dir options to easyprof to support framework + policy on snappy + + [ Robie Basak ] + * Add /lib/apparmor/profile-load; moved from + /lib/init/apparmor-profile-load from the upstart package. A wrapper at + the original path is now provided by init-system-helpers. (LP: #1432683) + + -- Jamie Strandboge Sat, 28 Mar 2015 07:22:30 -0500 + +apparmor (2.9.1-0ubuntu7) vivid; urgency=medium + + * systemd-dev-log-lp1413232.patch: Allow writes to the systemd journal + socket /{,var}/run/systemd/journal/dev-log. This can be dropped with + with AppArmor 2.9.2. (LP: #1413232) + + -- Jamie Strandboge Fri, 06 Mar 2015 06:22:34 -0600 + +apparmor (2.9.1-0ubuntu6) vivid; urgency=medium + + * add-mir-abstractions-lp1422521.patch: add correct location of + mir specific libraries and mir unprivileged client socket + to mir abstraction (LP: #1422521) + + -- Steve Beattie Tue, 03 Mar 2015 10:42:24 -0800 + +apparmor (2.9.1-0ubuntu5) vivid; urgency=medium + + * debian/apparmor.init: Replace unnecessary $remote_fs dependency with + $local_fs. This is sufficient as during boot we don't use anything from + /usr. It's also necessary to avoid dependency cycles when using NFS (as + its dependencies should be covered by AppArmor). (LP: #1312976) + + -- Martin Pitt Tue, 03 Mar 2015 08:54:33 +0100 + +apparmor (2.9.1-0ubuntu4) vivid; urgency=medium + + * Update to apparmor 2.9.1 + - make parser mount rule options consistent with documentation + (LP: #1401619) + - make parser fail if unknown mount options are encountered + (LP: #1401621) + - stop aa-logprof from asking about already allowed network rules + (LP: #1380367) + - make utils offer abstractions for network rules (LP: #1380367) + - make libapparmor understand logs generated by syslog-ng + (LP: #1399027) + - stop python utilities from adding duplicate quotes (LP: #1328707) + - work around aa-cleanprof crashes (LP: #1382236) + - other bug fixes, performance improvements, and testcases added to + the python utils. + - policy updates for dnsmasq, nscd, and others + - translation updates + * Partial sync with debian apparmor package: + - debian/apparmor-profiles.install: add additional dovecot and + smbldap-useradd profiles + - debian/control: fix typo in apparmor-docs description, fix file + overwrite issues with python-apparmor, apparmor-docs + - debian/rules: improved repeat-build cleanup logic. + - Add Turkish translation of debconf messages. Thanks to + Mert Dirik for the patch! + - debian/apparmor.postrm: Remove + /var/lib/apparmor/profiles/.apparmor.md5sums and parent + directories on package purge. + * add-mir-abstractions-lp1422521.patch: add mir abstraction to cover + mir specific libraries (LP: #1422521) + * debian/rules: remove no longer needed references to PERLDIR when + installing from utils/ + + -- Steve Beattie Tue, 17 Feb 2015 16:31:25 -0800 + +apparmor (2.9.0-3+exp2) experimental; urgency=medium + + * Use Build-Depends-Package in the symbols file (Closes: #782575). + Thanks to Michael Biebl for the patch! + + -- intrigeri Wed, 15 Apr 2015 18:05:45 +0200 + +apparmor (2.9.0-3+exp1) experimental; urgency=medium + + * dh_apparmor: remove /etc/apparmor.d/{disable,} on package purge + (Closes: #773870). + * Remove /var/lib/apparmor/profiles/.apparmor.md5sums and parent + directories on package purge (Closes: #766751). + * Drop dependency from apparmor on initramfs-tools: the early modules + loading code that needed it was removed a while ago (Closes: #771240). + * Ship libapparmor in /lib instead of /usr as we want to use it + in systemd now. (Closes: #771667, LP: #1397960). + Thanks to Martin Pitt for the patch! + + -- intrigeri Wed, 24 Dec 2014 17:45:16 +0100 + +apparmor (2.9.0-3) unstable; urgency=medium + + * Add versionned Breaks/Replaces from libapparmor-dev to apparmor-docs + (Closes: #772557). Some manpages were actually migrated from the + latter package, and not from libapparmor1. + + -- intrigeri Fri, 12 Dec 2014 14:14:51 +0100 + +apparmor (2.9.0-2) unstable; urgency=medium + + * Add versioned Breaks/Replaces from python-apparmor to apparmor-utils. + We have the same in place already for python3-apparmor, that deals + with the move of the Python 3 bits. This change does the same for + the Python 2 bits (Closes: #768211). + * Install all upstream Dovecot profiles: the usr.sbin.dovecot one, + that we install already, needs them (Closes: #768357). + * Install the upstream usr.sbin.smbldap-useradd profile: the usr.sbin.smbd + one, that we install already, needs it. This prevents the same kind + of bug as #768357 from occurring when one uses the smbd profile. + + -- intrigeri Fri, 07 Nov 2014 11:37:45 +0100 + +apparmor (2.9.0-1) unstable; urgency=medium + + * Import new upstream release: 2.9.0. + * Merge Ubuntu changes up to 2.8.98-0ubuntu2 (Closes: #761994). + Remaining patches on top of Ubuntu's ones: + - abstractions-ubuntu-browsers.patch + - non-linux.patch + - notify-group.patch + - pass-compiler-flags.patch + - raise-test-timeout.patch + * Drop versioned Breaks on lxc and lightdm: as long as AppArmor is not + enabled by default in Debian, this is too strong a statement. + * Declare compliance with Standards-Version 3.9.6 (no change needed). + * Don't ship empty /usr/share/apparmor in apparmor-utils. + * Import fixed debian/watch from our 2.8 packaging branch. + * Import upstream signing key, (at least) for uscan's consumption. + * debian/watch: add support for verifying upstream cryptographic signatures. + * Make the apparmor package Suggests: apparmor-profiles-extra, just like + it does for apparmor-profiles already. + + -- intrigeri Sat, 18 Oct 2014 12:38:26 +0200 + +apparmor (2.8.98-0ubuntu4) vivid; urgency=medium + + * Ship libapparmor in /lib instead of /usr as we want to use it in systemd + now. (LP: #1397960) + + -- Martin Pitt Mon, 01 Dec 2014 15:37:32 +0100 + +apparmor (2.8.98-0ubuntu3) vivid; urgency=medium + + * debian/lib/apparmor/functions: disable expr tree simplification for + /var/lib/apparmor/profiles (LP: #1383858) + * parser-dont-skip-read-cache-with-optimizations.patch: don't skip read + cache when specifying '-O' (LP: #1385947) + + -- Jamie Strandboge Tue, 28 Oct 2014 17:41:08 -0500 + +apparmor (2.8.98-0ubuntu2) utopic; urgency=medium + + * Updated to apparmor 2.9.beta4 (aka apparmor 2.8.98) + - fix logparsing memory leak (LP: #1340927) + - incorporate fixes to regression testsuite to compensate for + af_unix mediation, as well as extend test coverage + (LP: #1375403, LP: #1375516) + - fix libapparmor's log parsing code to accept additional rejection + types (LP: #1375413) + - fix X abstraction for changed lightdm xauthority file locations + (LP: #1339727) + - parser: disable downgrade and not enforced rule messages + by default (LP: #1302735) + - fix error when using regex profile names in IPC rules + (LP: #1373085) + - update base abstraction for /proc/sys/kernel/cap_last_cap for dnsmasq + (LP: #1378977) + - update freedesktop.org for @{HOME}/.config/mimeapps.list (LP: #1377140) + - update gnome abstraction for access to @/dbus-vfs-daemon/socket-* + (LP: #1375067) + - update ubuntu-browsers.d/java abstraction for icedtea plugin access + in /{,var/}run/user/*/icedteaplugin-* (LP: #1293439) + - update user-mail abstraction for /var/mail (LP: #1192965) + - updates and fixes to the python utilities + - translation updates + + [ Steve Beattie ] + * Removed upstreamed patches: + drop-peer_addr-with-local-addr-in-base.patch, + update_socketpair_tests_for_af_unix.patch, + fix_socketpair_tests.patch, sanitized-helpers-updates.patch, + 01-tests-unix_socket_lists.patch, + 02-tests-accept_unix_rules_in_mkprofile.patch, + 03-tests-unix_sockets_v7_pathnames.patch, + 04-tests-migrate_from_poll_to_sockio_timeout.patch, + 05-tests-add_abstract_socket_tests.patch, + 06-tests-use_socketpair_and_none.patch, + 07-parser-fix_local_perms.patch, + 08-phpsysinfo-policy-updates.patch, + 09-apache2-policy-instructions.patch, + 10-lp1371771.patch, 11-lp1371765.patch, + lp1169881.patch + * refreshed etc-writable.patch and libapparmor-layout-deb.patch + * debian/control: add breaks on python3-apparmor against older + apparmor-utils that used to be where python bits lived + (LP: #1373259) + * debian/apport/source_apparmor.py: + - fixes the apparmor apport hook so it does not raise an exception if + a non-unicode character is found in /var/log/kern.log or in + /var/log/syslog. This should work under python3 or python2.7 + (LP: #1304447) + - adjusts the add_info() function to take the expected additional ui + argument, though it has no need for it. + - converts the log parsing code to use with statements so as not to + leak open file descriptors + - updates the set of packages to query to see if installed and if so, + report the version of. + - adjust import to make pyflakes job easier + - minor pep8 cleanups + + [ Jamie Strandboge ] + * add-chromium-browser.patch: + - don't allow writing to the oom score and adjust files since this allows + chromium to change the values for any process matching our UID + - allow writing to /run/shm/shmfd-* + - add a few signal rules from base abstraction for the sandbox + * debian/apparmor.upstart: check if click-apparmor md5sums changed so we + regenerate the policy if it changes too (LP: #1371574) + * debian/apparmor.init: make corresponding upstart change to initscript + * debian/lib/apparmor/functions: fall back to using -n1 if the parser failed + to load a profile set. This should be removed when the parser properly + handles profile sets with corrupted profiles (LP: 1377338) + * debian/control: fix typo (LP: #1187447) + + -- Steve Beattie Thu, 09 Oct 2014 22:39:32 -0700 + +apparmor (2.8.96~2652-1) experimental; urgency=medium + + * Merge Ubuntu changes up to 2.8.96~2652-0ubuntu5. + * Drop patches taken upstream: + - fix-font-abstractions.patch + * Drop patches that were cherry-picked from upstream, and are now included + in the upstream snapshot this package is based on: + - r2107-debian761733-libtoolize.patch + - r2079-add-pkg-config-support.patch + - r2667-debian760378-fix-ftbfs-on-x32.patch + - r2240-find-libs.patch + - r2247-fix-bison3.patch + * Drop obsolete aa-status-smarter.patch: the interface patch is now in recent + Linux kernels. + * Remaining patches on top of Ubuntu's ones: + - abstractions-ubuntu-browsers.patch + - non-linux.patch + - notify-group.patch + - pass-compiler-flags.patch + - raise-test-timeout.patch + * Adjust debian/copyright to match current state of upstream sources. + * Refresh quilt patches. + * Update debian/copyright, and add a lot of information to it. + * Don't install empty /usr/bin in apparmor-utils. + + -- intrigeri Mon, 22 Sep 2014 23:02:48 -0700 + +apparmor (2.8.96~2652-0ubuntu7) utopic; urgency=medium + + * add-chromium-browser.patch: user addr=none instead of peer=(addr=none) + (LP: #1374363) + + -- Jamie Strandboge Sat, 27 Sep 2014 07:41:07 -0500 + +apparmor (2.8.96~2652-0ubuntu6) utopic; urgency=medium + + * lp1169881.patch: add /usr/bin/gnome-gmail to ubuntu-email (LP: #1169881) + * debian/control: update Breaks on lxc 1.1.0~alpha1-0ubuntu5~ (LP: #1373555) + + -- Jamie Strandboge Thu, 25 Sep 2014 09:03:06 -0500 + +apparmor (2.8.96~2652-0ubuntu5) utopic; urgency=medium + + [ Jamie Strandboge ] + * sanitized-helpers-updates.patch: update ubuntu-helpers for unix mediation + * 10-lp1371771.patch: don't exit prematurely and fail to load remaining + policy if encounter a corrupt cache file (LP: #1371771) + * 11-lp1371765.patch: if a cache load fails, attempt to rebuild and load it + (LP: #1371765) + * debian/lib/apparmor/functions: + - don't return 0 on parsing failure. Patch thanks to Felix Geyer + (LP: #1370228) + - use xargs -n1 when we don't have cache files, but omit it when we do. + This allows taking full advantage of xargs -P when we need it most, + without the cost when we don't. + + [ Steve Beattie ] + * update_socketpair_tests_for_af_unix.patch, + fix_socketpair_tests.patch: update socketpair regression tests for + af_unix socket mediation + + -- Jamie Strandboge Mon, 22 Sep 2014 09:39:10 -0500 + +apparmor (2.8.96~2652-0ubuntu4) utopic; urgency=medium + + * debian/apparmor.{upstart,init}: make sure we always update the .md5sums + for apparmor-easyprof-ubuntu even when apparmor is updated (before if both + were updated, aa-clickhook -f would be run on the 1st and 2nd boot rather + than just the 1st) + * debian/apparmor.postinst: update the cached .md5sums file on upgrade to + avoid running on install and then again on first boot after upgrade. This + change only affects apt upgrades and not system-image upgrades since + system-image upgrades always use the existing .md5sums if they exist (see + /etc/system-image/writable-paths). + * ubuntu-manpage-updates.patch: adjust for move to upstart job and click + policy + * debian/lib/apparmor/functions: don't pass costly '-n1' to xargs in + foreach_configured_profile() when loading valid cache files. This used to + be needed when apparmor_parser would generate different binary caches when + compiling policy one profile at a time and all at once. That bug is long + fixed and removing -n1 gives a significant performance improvement for + boots with valid cache files (~65% on armhf) + + -- Jamie Strandboge Fri, 12 Sep 2014 13:45:35 -0500 + +apparmor (2.8.96~2652-0ubuntu3) utopic; urgency=medium + + * 08-phpsysinfo-policy-updates.patch: update for new phpsysinfo on Ubuntu + 14.10 + * 09-apache2-policy-instructions.patch: update for recent Debian/Ubuntu + packaging + * debian/control: update Breaks for apparmor-easyprof-ubuntu, libvirt-bin, + and lightdm. Add Breaks on rsyslog. + + -- Jamie Strandboge Mon, 08 Sep 2014 16:13:10 -0500 + +apparmor (2.8.96~2652-0ubuntu2) utopic; urgency=medium + + * 07-parser-fix_local_perms.patch: do not output local permissions for rules + that have peer_conditionals. Patch from John Johansen + + -- Jamie Strandboge Fri, 05 Sep 2014 23:34:53 -0500 + +apparmor (2.8.96~2652-0ubuntu1) utopic; urgency=medium + + * Updated to r2652 snapshot of 2.8.96 (LP: #1362199, LP: #1341152) + + [ Steve Beattie ] + * removed upstreamed patches: + - dnsmasq-libvirtd-signal-ptrace.patch + - update-base-abstraction-for-signals-and-ptrace.patch + - update-nameservice-abstraction-for-extrausers.patch + - debian/apparmor-profiles.install: dropped program-chunks/postfix-common, + moved to abstractions/ and covered by apparmor.install + - refreshed libapparmor-layout-deb.patch patch + * Add in Tyler Hicks' regression test improvements: + - 01-tests-unix_socket_lists.patch, + - 02-tests-accept_unix_rules_in_mkprofile.patch, + - 03-tests-unix_sockets_v7_pathnames.patch, + - 04-tests-migrate_from_poll_to_sockio_timeout.patch, + - 05-tests-add_abstract_socket_tests.patch, + * 07-parser-fix_local_perms.patch: do not output local permissions + for rules that have peer_conditionals + + [ Jamie Strandboge ] + * add-chromium-browser.patch: update for unix socket mediation + * drop-peer_addr-with-local-addr-in-base.patch: don't use peer=(addr=none) + with getattr, getopt, setopt and shutdown + + [ Tyler Hicks ] + * debian/lib/apparmor/functions, debian/apparmor.init, + debian/apparmor.upstart: Ensure system policy cache cannot become stale + after image based upgrades that update the system profiles (LP: #1350673) + * parser-include-usr-share-apparmor.patch, debian/apparmor.install: Adjust + the default parser.conf file, to add /usr/share/apparmor as an additional + search path when resolving include directives in profiles, and install the + file in /etc/apparmor. Ubuntu places hardware specific access rules in + /usr/share/apparmor/hardware. This change allows these files to be + included without using an absolute path (e.g., + '#include '). + + -- Jamie Strandboge Fri, 05 Sep 2014 16:27:48 -0500 + +apparmor (2.8.96~2541-0ubuntu3.1) utopic; urgency=medium + + * Updates for perl 5.20 multiarch transition + - debian/libapparmor-perl.install: don't hardcode usr/lib/perl5 but + instead use $Config{vendorarch} in an executable install file. Make it + executable + - debian/control: Build-Depends on debhelper (>= 9) (9 is needed to use + an executable install file) + - debian/patches/perl-multiarch.patch: + + add @{multiarch} paths to perl abstraction + + update logprof.conf, severity.db and corresponding tests for updated + perl path + + -- Jamie Strandboge Tue, 19 Aug 2014 14:33:02 -0500 + +apparmor (2.8.96~2541-0ubuntu2) utopic; urgency=medium + + * update-nameservice-abstraction-for-extrausers.patch: update nameservice + abstraction to allow passwd and group when using libnss-extrausers + + -- Jamie Strandboge Mon, 28 Jul 2014 08:16:39 -0500 + +apparmor (2.8.96~2541-0ubuntu1) utopic; urgency=medium + + * Updated to r2541 snapshot of 2.8.96: + - removed upstreamed patches: convert-to-rules.patch, list-fns.patch, + parse-mode.patch, add-decimal-interp.patch, policy_mediates.patch, + fix-failpath.patch, feature_file.patch, fix-network.patch, + aare-to-class.patch, add-mediation-unix.patch, parser_version.patch, + caching.patch, label-class.patch, fix-lexer-debug.patch, + use-diff-encode.patch, fix-serialize.patch, + fix-ppc-endian-ftbfs.patch, opt_arg.patch, tests-cond-dbus.patch, + initialize-mount-flags.patch, fix-typo-in-dbus_write.patch, + limited-mount-rule-support.patch, bare-capability-rule-support.patch, + check-config-for-sysctl.patch, increase-swap-size.patch, + test-v6-policy.patch, test-mount-mediation.patch, + mediate-signals.patch, change-signal-syntax.patch, + mediate-ptrace.patch, change-ptrace-syntax.patch, + test-signal-rules.patch, test-ptrace-rules.patch, + update-tests-for-new-semantics.patch, + fix-garbage-in-preprocessor-output.patch, + fix-double-comma-in-preprocessor-output.patch, + symtab-tests-and-seenlist-bug.patch, add-profile-name-variable.patch, + fix-names-treated-as-condlistid.patch, manpage-signal-ptrace.patch, + python-utils-file-support.patch, python-utils-signal-support.patch, + python-utils-ptrace-support.patch, + python-utils-pivot_root-support.patch. + * Added upstart job (LP: #1305108) + - debian/apparmor.upstart: new upstart job. + - debian/apparmor.init: added click handling, move some code to + unload_obsolete_profiles(). + - debian/lib/apparmor/functions: add unload_obsolete_profiles(). + - debian/apparmor.postinst, debian/apparmor-profiles.postinst: reload + profiles directly since invoke-rc.d won't allow to do this easily + with upstart and systemd jobs. + - debian/rules: pass --no-start to dh_installinit since we're handling + reloading profiles manually in the postinst scripts. + - debian/control: add a versioned apparmor Depends to the + apparmor-profiles package to make sure the required tools are + installed for the postinst script. + + -- Marc Deslauriers Fri, 20 Jun 2014 07:20:34 -0400 + +apparmor (2.8.95~2430-0ubuntu5) trusty; urgency=medium + + * debian/control: add versioned Breaks to apparmor for lxc, libvirt-bin, + lightdm and apparmor-easyprof-ubuntu + + -- Jamie Strandboge Fri, 04 Apr 2014 01:07:24 -0500 + +apparmor (2.8.95~2430-0ubuntu4) trusty; urgency=medium + + [ John Johansen, Steve Beattie ] + * Add userspace support for AppArmor signals and ptrace mediation + (LP: #1298611) + + debian/patches/mediate-signals.patch, + debian/patches/change-signal-syntax.patch: Parse signal rules with + apparmor_parser. See the apparmor.d(5) man page for syntax details. + + debian/patches/change-ptrace-syntax.patch, + debian/patches/mediate-ptrace.patch: Parse ptrace rules with + apparmor_parser. See the apparmor.d(5) man page for syntax details. + + debian/patches/test-signal-rules.patch, + debian/patches/test-ptrace-rules.patch, + debian/patches/update-tests-for-new-semantics.patch: Update existing + tests and add new tests for signal and ptrace mediation + + debian/patches/fix-garbage-in-preprocessor-output.patch: Fix bug causing + apparmor_parser preprocessor output to contain garbage after include + statements + + debian/patches/fix-double-comma-in-preprocessor-output.patch: Fix bug + causing apparmor_parser preprocessor output to contain double commas + after some rules + + debian/patches/symtab-tests-and-seenlist-bug.patch, + debian/patches/add-profile-name-variable.patch: Add ${profile_name} + variable for use in profiles when rules need to specify the current + profile's name. This is useful for signal and ptrace rules that specify + + debian/patches/fix-names-treated-as-condlistid.patch: Fix + apparmor_parser bug that caused mount and dbus rules to fail for sets of + values + + [ Jamie Strandboge ] + * debian/patches/update-base-abstraction-for-signals-and-ptrace.patch: + Adjust the base abstraction for signals and ptrace mediation. Profiles + that use the base abstraction can deny any of the granted permissions to + achieve tighter confinement. + * debian/patches/manpage-signal-ptrace.patch: Update the apparmor.d man + page to document signal rules, ptrace rules, and variables for use in + AppArmor profiles + * debian/patches/dnsmasq-libvirtd-signal-ptrace.patch: Update the dnsmasq + profile to allow libvirtd to send signals to and ptrace read the dnsmasq + process + * debian/patches/update-chromium-browser.patch: Adjust the chromium-browser + profile for permissions needed in newer chromium-browser versions and add + the rules needed for AppArmor ptrace mediation + + [ Tyler Hicks ] + * Add new rule type support to aa.py to fix tracebacks when using the Python + utilities in apparmor-utils on systems with AppArmor profiles containing + previously unsupported rule types + - debian/patches/python-utils-file-support.patch: Support path rules + containing the "file" prefix (LP: #1295346) + - debian/patches/python-utils-signal-support.patch: Parse and write signal + rules (LP: #1300316) + - debian/patches/python-utils-ptrace-support.patch: Parse and write ptrace + rules (LP: #1300317) + - debian/patches/python-utils-pivot_root-support.patch: Parse and write + pivot_root rules (LP: #1298678) + + -- Tyler Hicks Thu, 03 Apr 2014 15:50:26 -0500 + +apparmor (2.8.95~2430-0ubuntu3) trusty; urgency=medium + + [ Jamie Strandboge ] + * debian/lib/apparmor/functions: properly calculate number of profiles in + /var/lib/apparmor/profiles (LP: #1295816) + * autostart aa-notify via /etc/xdg/autostart instead of /etc/X11/Xsession.d + (LP: #1288241) + - remove debian/notify/90apparmor-notify + - add debian/notify/apparmor-notify.desktop + - debian/apparmor-notify.install: adjust for the above + - add debian/apparmor-notify.maintscript to remove 90apparmor-notify + * debian/notify/notify.conf: use_group should be set to "sudo" instead of + "admin" (LP: #1009666) + + [ Tyler Hicks ] + * debian/patches/initialize-mount-flags.patch: Initialize the variables + containing mount rule flags to zero. Otherwise, the parser may set + unexpected bits in the mount flags field for rules that do not specify + mount flags. The uninitialized mount flag variables may have caused + unexpected AppArmor denials during mount mediation. (LP: #1296459) + * debian/patches/fix-typo-in-dbus_write.patch: Fix a bug in the + apparmor/aa.py module that caused the utilities in the apparmor-utils + package to write out network rules instead of dbus rules + * debian/patches/limited-mount-rule-support.patch: Fix a bug in the + apparmor/aa.py module that caused the utilities in the apparmor-utils + package to traceback when encountering a mount rule (LP: #1294825) + * debian/patches/bare-capability-rule-support.patch: Fix a bug in the + apparmor/aa.py module that caused the utilities in the apparmor-utils + package to traceback when encountering a bare capability rule + (LP: #1294819) + * debian/patches/check-config-for-sysctl.patch, + debian/patches/increase-swap-size.patch: Fix bugs in the regression test + suite that caused errors when running on ppc64el + * debian/patches/test-v6-policy.patch, + debian/patches/test-mount-mediation.patch: Improve the regression tests + by increasing the mount rule test coverage + + -- Tyler Hicks Thu, 27 Mar 2014 14:12:29 -0500 + +apparmor (2.8.95~2430-0ubuntu2) trusty; urgency=medium + + * debian/control: Depends on python-pkg-resources for python-apparmor and + python3-pkg-resources for python3-apparmor to fix autopkgtests in + click-apparmor and apparmor-easyprof-ubuntu + + -- Jamie Strandboge Thu, 20 Mar 2014 19:33:51 -0500 + +apparmor (2.8.95~2430-0ubuntu1) trusty; urgency=low + + [ Jamie Strandboge ] + + * debian/debhelper/dh_apparmor: exit with error if aa-easyprof does not + exist + * debian/control: drop Depends on apparmor-easyprof to Suggests for + dh-apparmor + + [ Seth Arnold, Jamie Strandboge, Steve Beattie, John Johansen, Tyler Hicks ] + + * New upstream snapshot (LP: #1278702, #1061693, #1285653) dropping very + large Ubuntu delta and fixing the following bugs: + - Adjust fonts abstraction for libthai (LP: #1278702) + - Support translated XDG user directories (LP: #1061693) + - Adjust abstractions/web-data to include /var/www/html (LP: #1285653) + Refresh 0002-add-debian-integration-to-lighttpd.patch to include + /etc/lighttpd/conf-available/*.conf + - Adjust debian/libapparmor1.symbols to reflect new upstream versioning + for the aa_query_label() function + - Raise exceptions in Python bindings when something fails + * ship new Python replacements for previous Perl-based tools + - debian/apparmor-utils.install: remove usr/share/perl5/Immunix/*.pm and + add usr/sbin/aa-autodep, usr/sbin/aa-cleanprof and usr/sbin/aa-mergeprof + - debian/control: + + remove various Perl dependencies + + add python-apparmor and python3-apparmor + + python3-apparmor Breaks: apparmor-easyprof to move the file since it + ships dist-packages/apparmor/__init__.py now + - debian/apparmor-utils.manpages: ship new manpages for aa-cleanprof and + aa-mergeprof + - debian/rules: build and install Python tools + * debian/apparmor.install: + - install apparmorfs, dovecot, kernelvars, securityfs, sys, + and xdg-user-dirs tunables and xdg-user-dirs.d directory + * debian/apparmor.dirs: + - install /etc/apparmor.d/tunables/xdg-user-dirs.d + * debian/rules: delete upstream-provided xdg-user-dirs.d/site.local + * debian/apparmor.postinst: create xdg-user-dirs.d/site.local + * debian/apparmor.postrm: remove xdg-user-dirs.d + * Remaining patches: + - add-chromium-browser.patch + - add-debian-integration-to-lighttpd.patch + - ubuntu-manpage-updates.patch + - libapparmor-layout-deb.patch + - libapparmor-mention-dbus-method-in-getcon-man.patch + - etc-writable.patch + - aa-utils_are_bilingual.patch + * New patches: + - convert-to-rules.patch + - list-fns.patch + - parse-mode.patch + - add-decimal-interp.patch + - policy_mediates.patch + - fix-failpath.patch + - feature_file.patch + - fix-network.patch + - aare-to-class.patch + - add-mediation-unix.patch + - parser_version.patch + - caching.patch + - label-class.patch + - fix-lexer-debug.patch + - use-diff-encode.patch + - fix-serialize.patch + - fix-ppc-endian-ftbfs.patch + - opt_arg.patch + - tests-cond-dbus.patch + * Move manpages from libapparmor1 to libapparmor-dev + - debian/libapparmor-dev.manpages: install aa_change_hat.2, + aa_change_profile.2, aa_find_mountpoint.2, aa_getcon.2 + - debian/control: libapparmor-dev Replaces: and Breaks: libapparmor1 + * Move /usr/lib/python3/dist-packages/apparmor/__init__.py from + apparmor-easyprof to python3-apparmor + - debian/control: python3-apparmor Breaks: apparmor-easyprof + - debian/apparmor-easyprof.install: remove + usr/lib/python*.*/site-packages/apparmor* + * New profiles and abstractions: + - debian/apparmor.install: tunables/dovecot, tunables/kernelvars, + tunables/xdg-user-dirs, tunables/xdg-user-dirs.d + + -- Seth Arnold Wed, 19 Mar 2014 20:29:27 -0700 + +apparmor (2.8.94-0ubuntu1.4) trusty; urgency=low + + * Test merge from upstream new pyutils branch (rev 2385) + + -- Steve Beattie Thu, 13 Feb 2014 14:16:24 -0800 + +apparmor (2.8.0-0ubuntu38) trusty; urgency=low + + [ Tyler Hicks ] + * 0084-parser-add-dbus-eavesdrop-perm.patch: Add an eavesdrop permission to + the dbus rule type, allowing confined applications to eavesdrop. The only + valid conditional for eavesdrop rules is 'bus'. See the apparmor.d(5) man + page for more information. (LP: #1262440) + + [ Steve Beattie ] + * 0085-push-normalize-tree-ops-into-expr-tree-classes.patch: Improve + parser performance in some cases + + [ John Johansen ] + * 0086-add-diff-state-compression-to-dfa.patch: Implement differential + state compression in the parser + * 0087-fix-dfa-minimization.patch: Fix a parser bug that caused some DFAs to + not be fully minimized (LP: #1262938) + * 0088-fix-pol-generation-for-small-dfas.patch: Fixes bugs in the parser + when generating policy for some small DFAs + + -- Tyler Hicks Mon, 13 Jan 2014 11:17:42 -0600 + +apparmor (2.8.0-0ubuntu37) trusty; urgency=low + + [ Jan Rękorajski ] + * 0082-parser-fix-FTBFS-with-bison-3.patch: Fix parser FTBFS with bison 3 + + [ Steve Beattie ] + * 0083-libapparmor-require-libtoolize.patch: Fix FTBFS by switching + the autogen.sh script to use libtoolize instead of libtool + + -- Tyler Hicks Fri, 10 Jan 2014 13:48:43 -0600 + +apparmor (2.8.0-0ubuntu36) trusty; urgency=medium + + * Rebuild for python3.4 as a supported python version. + + -- Matthias Klose Sat, 04 Jan 2014 18:30:59 +0000 + +apparmor (2.8.0-0ubuntu35) trusty; urgency=low + + * abstractions/nameservice: Also allow access to the sssd nss pipe. + + -- Stéphane Graber Fri, 29 Nov 2013 13:44:49 -0500 + +apparmor (2.8.0-0ubuntu34) trusty; urgency=low + + [ Tyler Hicks ] + * 0078-parser-check-for-dbus-kernel-support.patch: The parser should not + include D-Bus rules in the binary policy that it loads into the kernel if + the kernel does not support D-Bus rules (LP: #1231778) + * 0079-utils-ignore-unsupported-log-events.patch: aa-logprof should ignore + audit events that it does not yet support instead of treating them as + errors (LP: #1243932) + * 0080-tests-use-ldconfig-for-library-detection.patch: Fix libapparmor + detection in regression tests after the multiarch changes + + [ Jamie Strandboge ] + * 0081-python-abstraction-updates.patch: Add rules in support of Python 3.3 + + [ Chad Miller ] + * debian/patches/0001-add-chromium-browser.patch: Follow new chromium-browser + sandbox name. Keep old name for now to allow transition. LP: #1247269 + + -- Tyler Hicks Mon, 04 Nov 2013 15:57:30 -0800 + +apparmor (2.8.0-0ubuntu33) trusty; urgency=low + + * Convert to dh. + * Bump to debhelper compat level 9 for multiarch support. + * Mark libapparmor1, libapparmor-dev Multi-Arch: same. LP: #1246067. + + -- Steve Langasek Thu, 31 Oct 2013 13:23:57 -0700 + +apparmor (2.8.0-0ubuntu32) trusty; urgency=low + + * no change rebuild for perl 5.18 + + -- Jamie Strandboge Mon, 21 Oct 2013 13:28:26 -0500 + +apparmor (2.8.0-0ubuntu31) saucy; urgency=low + + * 0077_aa-status-is-bilingual.patch: aa-status was written to work with + python 2 or 3. Upstream is still using 2, so adjust ours to use + /usr/bin/python3 to avoid pulling python 2 back to the desktop images + + -- Jamie Strandboge Fri, 11 Oct 2013 15:35:03 -0500 + +apparmor (2.8.0-0ubuntu30) saucy; urgency=low + + [ Tyler Hicks ] + * debian/patches/0059-dbus-rules-for-dbus-abstractions.patch: Add an + abstraction for the accessibility bus. It is currently very permissive, + like the dbus and dbus-session abstractions, and grants all permissions on + the accessibility bus. (LP: #1226141) + * debian/patches/0071-lp1226356.patch: Fix issues in parsing D-Bus and mount + rules. Both rule classes suffered from unexpected auditing behavior when + using the 'deny' and 'audit deny' rule modifiers. The 'deny' modifier + resulting in accesses being audited and the 'audit deny' modifier + resulting in accesses not being audited. (LP: #1226356) + * debian/patches/0072-lp1229393.patch: Fix cache location for .features + file, which was not being written to the proper location if the parameter + --cache-loc= is passed to apparmor_parser. This bug resulted in using the + .features file from /etc/apparmor.d/cache or always recompiling policy. + Patch thanks to John Johansen. (LP: #1229393) + * debian/patches/0073-lp1208988.patch: Update AppArmor file rules of UNIX + domain sockets to include read and write permissions. Both permissions are + required when a process connects to a UNIX domain socket. Also include new + tests for mediation of UNIX domain sockets. Thanks to Jamie Strandboge for + helping with the policy updates and testing. (LP: #1208988) + * debian/patches/0075-lp1211380.patch: Adjust the audio abstraction to only + grant access to specific pulseaudio files in the pulse runtime directory + to remove access to potentially dangerous files (LP: #1211380) + + [ Jamie Strandboge ] + * debian/patches/0074-lp1228882.patch: typo in ubuntu-browsers.d/multimedia + (LP: #1228882) + * 0076_sanitized_helper_dbus_access.patch: allow applications run under + sanitized_helper to connect to DBus + + -- Tyler Hicks Fri, 04 Oct 2013 17:29:52 -0700 + +apparmor (2.8.0-0ubuntu29) saucy; urgency=low + + * Add 0070-etc-writable.patch: Allow reading time configuration from + /etc/writable, as we have it on the phone. (LP: #1227520) + + -- Martin Pitt Tue, 01 Oct 2013 09:55:15 +0200 + +apparmor (2.8.0-0ubuntu28) saucy; urgency=low + + [ Tyler Hicks ] + * Move the aa-exec man page out of apparmor-utils into apparmor, since + aa-exec is now in apparmor + - debian/control: adjust Breaks/Replaces to use apparmor-utils + (<< 2.8.0-0ubuntu28) + - debian/apparmor.manpages: install the aa-exec man page + - debian/apparmor-utils.manpages: don't install the aa-exec man page + * debian/patches/0065-lp1220861.patch: Always NUL-terminate confinement + context strings returned from libapparmor (LP: #1220861) + * debian/patches/0066-lp1196880.patch: Don't assign mode pointer in + aa_getprocattr() if caller passed in NULL (LP: #1196880) + * debian/patches/0067-libapparmor-mode-strings-are-not-to-be-freed.patch: + Update man page and code comments to make it clear that freeing the *con + string returned from libapparmor's getcon functions also frees the *mode + string + * debian/patches/0068-libapparmor-mention-dbus-method-in-getcon-man.patch: + Document the D-Bus method, in the aa_getcon man page, that returns the + AppArmor task confinement string of a D-Bus connection + + [ Jamie Strandboge ] + * debian/patches/0069-p11kit-abstraction.patch: p11-kit needs access to + /usr/share/p11-kit/modules + + -- Jamie Strandboge Tue, 10 Sep 2013 12:06:06 -0500 + +apparmor (2.8.0-0ubuntu27) saucy; urgency=low + + * debian/apport/source_apparmor.py: AppArmor logs DBus messages to syslog, + adjust apport hook to also search there for denials + + -- Jamie Strandboge Tue, 03 Sep 2013 10:25:45 -0500 + +apparmor (2.8.0-0ubuntu26) saucy; urgency=low + + * debian/patches/0064-lp1218099.patch: add support for variable expansion in + dbus rules (LP: #1218099) + + -- Jamie Strandboge Thu, 29 Aug 2013 16:28:36 -0500 + +apparmor (2.8.0-0ubuntu25) saucy; urgency=low + + [ Tyler Hicks ] + * Add support for mediation of D-Bus messages and services. AppArmor D-Bus + rules are described in the apparmor.d(5) man page. dbus-daemon will use + libapparmor to perform queries against the AppArmor policies to determine + if a connection should be able to send messages to another connection, if + a connection should be able to receive messages from another connection, + and if a connection should be able to bind to a well-known name. + - 0042-Fix-mount-rule-preprocessor-output.patch, + 0043-libapparmor-Safeguard-aa_getpeercon-buffer-reallocat.patch, + 0044-libapparmor-fix-return-value-of-aa_getpeercon_raw.patch, + 0045-libapparmor-Move-mode-parsing-into-separate-function.patch, + 0046-libapparmor-Parse-mode-from-confinement-string-in-ge.patch, + 0047-libapparmor-Make-aa_getpeercon_raw-similar-to-aa_get.patch, + 0048-libapparmor-Update-aa_getcon-man-page-to-reflect-get.patch: + Backport parser and libapparmor pre-requisites for D-Bus mediation + - 0049-parser-Update-man-page-for-DBus-rules.patch: Update apparmor.d man + page + - 0050-parser-Add-support-for-DBus-rules.patch, + 0051-parser-Regression-tests-for-DBus-rules.patch, + 0052-parser-Binary-profile-equality-tests-for-DBus-rules.patch: Add + apparmor_parser support for D-Bus mediation rules + - 0053-libapparmor-Export-a-label-based-query-interface.patch, + debian/libapparmor1.symbols: Provide the libapparmor interface necessary + for trusted helpers to make security decisions based upon AppArmor + policy + - 0054-libaalogparse-Parse-dbus-daemon-audit-messages.patch, + 0055-libaalogparse-Regression-tests-for-dbus-daemon-audit.patch: Allow + applications to parse denials, generated by dbus-daemon, using + libaalogparse and add a set of regression tests + - 0056-tests-Add-an-optional-final-check-to-checktestfg.patch, + 0057-tests-Add-required-features-check.patch, + 0058-tests-Add-regression-tests-for-dbus.patch: Add regression tests + which start their own dbus-daemon, load profiles containing D-Bus rules, + and confine simple D-Bus service and client applications + - 0059-dbus-rules-for-dbus-abstractions.patch: Add bus-specific, but + otherwise permissive, D-Bus rules to the dbus and dbus-session + abstractions. Confined applications that use D-Bus should already be + including these abstractions in their profiles so this should be a + seamless transition for those profiles. + * 0060-utils-make_clean_fixup.patch: Clean up the Python cache in the + AppArmor tests directory + * 0061-profiles-dnsmasq-needs-dbus-abstraction.patch: Dnsmasq uses the + system D-Bus when it is started with --enable-dbus, so its AppArmor + profile needs to include the system bus abstraction + * 0062-fix-clone-test-on-arm.patch: Fix compiler error when building + regression tests on ARM + * 0063-utils-ignore-unsupported-rules.patch: Utilities that use the + Immunix::AppArmor perl module, such as aa-logprof and aa-genprof, error + out when they encounter rules unsupported by the perl module. This patch + ignores unsupported rules. + + [ Jamie Strandboge ] + * debian/control: don't have easyprof Depends on apparmor-easyprof-ubuntu + + -- Tyler Hicks Mon, 26 Aug 2013 15:32:12 -0700 + +apparmor (2.8.0-0ubuntu24) saucy; urgency=low + + * 0040-libapparmor-support-pkg-config.patch: Make it easier for other + sources to build against libapparmor with pkg-config + - debian/control: Add pkg-config as a Build-Depends + - debian/libapparmor-dev.install: Install libapparmor pkg-config file + * 0041-parser-fix-flags.patch: Minimal fix for cache failures when the + feature file is larger than the feature buffer used for cache version + comparison + + -- Tyler Hicks Thu, 15 Aug 2013 16:34:53 -0700 + +apparmor (2.8.0-0ubuntu23) saucy; urgency=low + + * debian/patches/0038-lp1200392.patch: allow mmap of fglrx dri libraries + (LP: #1200392) + * debian/patches/0039-fix-parser-cache-loc.patch: fix apparmor cache + tempfile location to use passed arg + * debian/lib/apparmor/functions: update to also load from + /var/lib/apparmor/profiles and write cache to /var/cache/apparmor + * debian/apparmor.dirs: create /var/cache/apparmor and + /var/lib/apparmor/profiles + + -- Jamie Strandboge Tue, 23 Jul 2013 21:36:40 -0500 + +apparmor (2.8.0-8) unstable; urgency=medium + + * New patch, cherry-picked from upstream to add pkg-config support: + r2079-add-pkg-config-support.patch (Closes: #762525) + * Add packaging bits to support pkg-config: + - debian/control: Add pkg-config as a Build-Depends + - debian/libapparmor-dev.install: Install libapparmor pkg-config file + + -- intrigeri Mon, 22 Sep 2014 23:02:48 -0700 + +apparmor (2.8.0-7) unstable; urgency=medium + + * New patch: r2107-debian761733-libtoolize.patch, cherry-picked from + upstream r2107 on their 2.8 branch (Closes: #761733). + + -- intrigeri Fri, 19 Sep 2014 09:41:31 -0700 + +apparmor (2.8.0-6) unstable; urgency=medium + + * Put package under the Debian AppArmor Team's umbrella, and accordingly: + - Add intrigeri and Holger as Uploaders. + - Point Vcs-* control fields to our new shared repository on Alioth. + * Cherry-pick upstream fix (r2667) to fix FTBFS on x32 (Closes: #760378). + * Add Turkish translation of debconf messages (Closes: #757512). + Thanks to Mert Dirik for the patch! + * Merge changes from 2.8.0-5.1 NMU. + + -- intrigeri Wed, 10 Sep 2014 11:55:18 -0700 + +apparmor (2.8.0-5.1) unstable; urgency=medium + + * Non-maintainer upload. + * control: make apparmor-notify depend on libnotify-bin (Closes: 746508). + * watch: update to the version proposed on + http://anonscm.debian.org/viewvc/sepwatch/trunk/watchfiles/apparmor_2.8.0-5.watch?view=markup + (Closes: 738531). + * rules, libapparmor-perl.install: replace hardcoded usr/lib/perl5 + with the value of $Config{vendorarch} (Closes: 750128). + Thanks to Damyan Ivanov for the patch! + + -- intrigeri Mon, 02 Jun 2014 12:21:27 +0200 + +apparmor (2.8.0-5) unstable; urgency=low + + * rules: drop --parallel, since it seems the upstream build is fragile + when running in parallel mode. Thanks to intrigeri for tracking this + down! (Closes: 732578) + + -- Kees Cook Fri, 03 Jan 2014 13:41:43 -0800 + +apparmor (2.8.0-4) unstable; urgency=low + + * control, {libapparmor1,apparmor-docs}.manpages: move man pages into + apparmor-docs to avoid multi-arch duplication and hilarity with file + dates vs buildd timezones (Closes: 731358). + * patches/r2247-fix-bison3.patch: fix build for bison 3 (Closes: 732695). + * control: bump standards version, no changes needed. + + -- Kees Cook Thu, 26 Dec 2013 14:42:03 -0800 + +apparmor (2.8.0-3) unstable; urgency=low + + * Rebuild with pristine tree to avoid date skew in generated + manpages (Closes: 731358) + + -- Kees Cook Fri, 13 Dec 2013 11:14:54 -0800 + +apparmor (2.8.0-2) unstable; urgency=low + + * Convert to dh(1) and Multi-Arch, thanks to Steve Langasek. + - add r2240-find-libs.patch to find libraries during tests. + + -- Kees Cook Mon, 02 Dec 2013 10:13:34 -0800 + +apparmor (2.8.0-1) unstable; urgency=low + + * Merge with Ubuntu changes. + - update to 2.8.0 release (Closes: 712370). + - handle Apache 2.4 transition (Closes: 666808). + - drop debian/patches/abstractions-X.patch (taken upstream) + - drop debian/patches/fix-network-rule-support.patch (taken upstream) + - updated debian/patches/pass-compiler-flags.patch (partially upstream) + * debian/control: + - fix typo in long description (Closes: 711398). + - removed duplicated Section entry for apparmor-easyprof. + - add missing python Depends. + * debian/rules: + - dh_apache2 must execute before dh_strip and dh_fixperms. + - improved repeat-build cleanup logic. + - dh_python needs to be called on all packages installing scripts. + - do not force python version 3. + * Add debian/patches/fix-font-abstractions.patch (Closes: 714843). + * Add debian/patches/raise-time-timeout.patch (Closes: 699774). + * Drop debian/libapache2-mod-apparmor.lintian-overrides (not needed). + * debian/*.manpages: move aa-exec.8 to apparmor from apparmor-utils. + * debian/apparmor-utils.dirs: drop unused directories from aa-easyprof. + + -- Kees Cook Mon, 08 Jul 2013 17:51:40 -0700 + +apparmor (2.8.0-0ubuntu22) saucy; urgency=low + + * Refresh easyprof + - drop 0034-easyprof-dont-add-vendor-dir.patch + - drop 0035-easyprof-update-manpage-for-sdk-base.patch + * debian/patches/0037-easyprof-sdk-pt2.patch: update easyprof for the + following: + - don't add vendor directory to self.templates and self.policy_groups + - utils/aa-easyprof: adjust error message for manifest read failure + - utils/aa-easyprof: adjust to use EnvironmentError on failed read of the + manifest + - utils/apparmor/easyprof.py: clean up set_template() + - utils/apparmor/easyprof.py: read_paths should use 'rk' + - utils/test/test-aa-easyprof.py: adjust tests for above + - utils/apparmor/easyprof.py + + valid_path should verify os.path.normpath(path) == (path) + + adjust valid_profile_name() to start with alpha-numeric and allow + Debian source package names and version, plus '_' + + adjust tests for above + - update valid_variable() to check for valid_path if '/' is in the value + - adjust valid_path() to have a relative_ok flag (default to False) + - adjust valid_path() to verify path is same as normalized path + - add some valid_path() test cases + - adjust to always quote template vars in policy output + - add a couple tests that have spaces in the binary and template var + - update manifest JSON structure to use + m['security']['profiles']['profile_name'] instead of + m['security']['profile_name'] + + -- Jamie Strandboge Sun, 07 Jul 2013 19:37:56 -0500 + +apparmor (2.8.0-0ubuntu21) saucy; urgency=low + + * Apache 2.4 transition (LP: #1197617, Closes: 666808). Based on patch from + intrigeri + - debian/control: + + Build-Depends on apache2-dev and dh-apache2 instead of + apache2-prefork-dev + + adjust libapache2-mod-apparmor to not Depends on apache2.2-common + + adjust libapache2-mod-apparmor to Pre-Depends: ${misc:Pre-Depends} + - create debian/libapache2-mod-apparmor.apache2 + - debian/rules: adjust to use dh_apache2 --noenable + - debian/libapache2-mod-apparmor.maintscript: remove old prefork profile + - debian/libapache2-mod-apparmor.install: install new usr.sbin.apache2 + profile + - debian/libapache2-mod-apparmor.{preinst,postinst,postrm}: update to use + usr.sbin.apache2 + - debian/libapache2-mod-apparmor.postinst: remove the disable symlink for + old prefork profile + - debian/patches/0036-libapache2-mod-apparmor-profile-2.4.patch: update + mod_apparmor man page to mention loading mpm_prefork, add new + usr.sbin.apache2 profile and remove old prefork profile + * debian/rules: honor DEB_BUILD_OPTIONS=nocheck + + -- Jamie Strandboge Thu, 04 Jul 2013 10:20:20 -0500 + +apparmor (2.8.0-0ubuntu20) saucy; urgency=low + + * remove debian/patches/0033-add-ubuntu-sdk-abstractions.patch. We will + for now ship policy groups instead of abstractions like this + * debian/apparmor.maintscript: rm_conffile on ubuntu-sdk-base + * debian/patches/0035-easyprof-update-manpage-for-sdk-base.patch: add + sdk-base as a typical policy group + + -- Jamie Strandboge Wed, 03 Jul 2013 17:29:57 -0500 + +apparmor (2.8.0-0ubuntu19) saucy; urgency=low + + * debian/patches/0034-easyprof-dont-add-vendor-dir.patch: don't add vendor + directory to self.templates and self.policy_groups + * debian/patches/0030-easyprof-sdk.patch: mentioned patch has been forwarded + upstream + + -- Jamie Strandboge Tue, 02 Jul 2013 09:24:23 -0500 + +apparmor (2.8.0-0ubuntu18) saucy; urgency=low + + * debian/patches/0030-easyprof-sdk.patch: refreshed for the following: + - man page updates + - add --output-format=json option + - add --verify-manifest + - add --policy-version and --policy-vendor which to better work with + vendor templates (ie, with apparmor-easyprof-ubuntu) + - restructed JSON format (should be final version now). This converts + abstractions and policy_groups to proper JSON lists and allows for + multiple profiles in the JSON file, keyed off of the profile name + - add --output-directory option as an alternative to stdout (particularly + useful when using multiple profiles in a JSON file) + - also remove ubuntu-sdk-base abstraction. This may move out but for now + put it in a different patch + - add verify_options() and some utility functions for input validation + - unconditionally quote profile name and binary + - remove Ubuntu-specific checks in verify_manifest and check profile_name + with binary harder + * debian/patches/0033-add-ubuntu-sdk-abstractions.patch: add ubuntu-sdk-base + abstraction + + -- Jamie Strandboge Mon, 01 Jul 2013 17:20:33 -0500 + +apparmor (2.8.0-0ubuntu17) saucy; urgency=low + + * debian/patches/0032-lp1195362.patch: don't pull in unused perl modules + (LP: #1195362) + * debian/rules: use dh_perl -d with libapparmor-perl to Depends on perl-base + instead of perl + * debian/patches/0030-easyprof-sdk.patch: update to remove the ubuntu + specific templates and policy groups. These will be shipped in + apparmor-easyprof-ubuntu + * debian/control: have apparmor-easyprof Depends on apparmor-easyprof-ubuntu + + -- Jamie Strandboge Fri, 28 Jun 2013 12:01:06 -0500 + +apparmor (2.8.0-0ubuntu16) saucy; urgency=low + + * debian/patches/0030-easyprof-sdk.patch: update to have + - /usr/share/icons/gnome/index.theme should have 'rk' added to qmlscene + policy group + - add ubuntu-sdk-html5 template + - add qmlscene-webview policygroup + * debian/patches/0031-move-poppler-cmap-to-fonts.patch: more than just + gnome applications access /usr/share/poppler/cMap/** + + -- Jamie Strandboge Tue, 25 Jun 2013 15:58:33 -0500 + +apparmor (2.8.0-0ubuntu15) saucy; urgency=low + + * move aa-exec out of apparmor-utils into apparmor, since we want it in the + default install + - debian/control: adjust Breaks/Replaces to use apparmor-utils + <<2.8.0-0ubuntu15) and have apparmor Depends on libapparmor-perl + - debian/apparmor.install: install aa-exec + - debian/apparmor-utils.install: don't install aa-exec + + -- Jamie Strandboge Tue, 25 Jun 2013 11:48:25 -0500 + +apparmor (2.8.0-0ubuntu14) saucy-proposed; urgency=low + + * debian/patches/0029-easyprof-update-for-aa-sandbox.patch: add aa-sandbox + utility to source, but don't install yet. This includes code refactoring + for easyprof, which is required for the next patch + * debian/patches/0030-easyprof-sdk.patch: add SDK support to easyprof (don't + include DBus includes yet) + * create apparmor-easyprof package + - adjust debian/control for new packages and Breaks/Replaces on + apparmor-utils 2.8.0-0ubuntu14 + - create debian/apparmor-easyprof.install + - debian/apparmor-utils.install: don't install easyprof. python libraries + moved to easyprof for now since it is the only consumer + - debian/apparmor-utils.manpages: move easyprof manpage to + debian/apparmor-easyprof.manpages + - debian/rules: dh_python3 should also run on apparmor-easyprof + * debian/control: dh-apparmor should Depends on apparmor-easyprof + * debian/debhelper/dh_apparmor: update to support --manifest argument + + -- Jamie Strandboge Mon, 24 Jun 2013 09:49:44 -0500 + +apparmor (2.8.0-0ubuntu13) saucy-proposed; urgency=low + + * 0021-webapps_abstraction.patch: update to allow 'w' access to + ~/.local/share/unity-webapps/availableapps*.db and 'rk' access to + ~/.config/libaccounts-glib/accounts.db (LP: #1169633) + + -- Jamie Strandboge Mon, 10 Jun 2013 10:49:46 -0500 + +apparmor (2.8.0-0ubuntu12) saucy; urgency=low + + * 0027-add-gnome-keyring-to-strict.patch: add @{HOME}/.gnome2/keyrings/** to + abstractions/private-files-strict + * 0028-add-upstart-to-private.patch: deny writes to upstart user sessions + jobs in abstractions/private-files + + -- Jamie Strandboge Mon, 13 May 2013 13:04:54 -0500 + +apparmor (2.8.0-0ubuntu11) raring; urgency=low + + * 0025-update-pulseaudio-paths.patch: update path for pulseaudio directory + and cookie files + * 0026-add-vm_overcommit_memory.patch: add read access to + @{PROC}/sys/vm/overcommit_memory + * update 0001-add-chromium-browser.patch: + - additional accesses required by newer chromium-browser. Patch based on + work by Simon Deziel (LP: #1154164) + - don't include abstractions already included via gnome abstraction + - allow access to dconf/gsettings, required now + + -- Jamie Strandboge Mon, 08 Apr 2013 14:57:14 -0500 + +apparmor (2.8.0-0ubuntu10) raring; urgency=low + + * debian/patches/0001-add-chromium-browser.patch: add accesses for chromium + 23 (LP: #1091862) + + -- Jamie Strandboge Tue, 18 Dec 2012 15:20:05 -0600 + +apparmor (2.8.0-0ubuntu9) raring; urgency=low + + * debian/control: make libnotify-bin a Suggests rather than a Recommends + since it is assumed to already be installed on the desktop and so server + environments don't have to pull in a lot of X dependencies (LP: #1061879) + + -- Jamie Strandboge Tue, 18 Dec 2012 10:47:50 -0600 + +apparmor (2.8.0-0ubuntu8) raring; urgency=low + + [ Steve Beattie ] + * 0024-lp1091642-parser-reset_matchflags.patch: prevent reuse of + matchflags in parser dfa backend and add testcase demonstrating the + problem (LP: #1091642) + + [ Jamie Strandboge ] + * debian/debhelper/postinst-apparmor: quote all occurences of #PROFILE#. + + -- Steve Beattie Tue, 18 Dec 2012 04:53:28 -0800 + +apparmor (2.8.0-0ubuntu7) raring; urgency=low + + * Rebuild to drop python3.2 extension. + + -- Matthias Klose Thu, 08 Nov 2012 11:15:26 +0000 + +apparmor (2.8.0-0ubuntu6) raring-proposed; urgency=low + + * Build python swig modules for all supported pythons. + * Use dh_python2 instead of obsolete dh_python. + * Remove duplicate chrpath from control. + * Remove unneeded quilt dependency. + * Bump standards version to 3.9.4, no changes needed. + + -- Dmitrijs Ledkovs Tue, 23 Oct 2012 12:37:39 +0100 + +apparmor (2.8.0-0ubuntu5) quantal; urgency=low + + [ Micah Gersten ] + * Allow /etc/vdpau_wrapper.cfg r and /var/lib/xine/gxine.desktop r + in the multimedia browser abstraction (LP: #1057642) + - update profiles/apparmor.d/abstractions/ubuntu-browsers.d/multimedia + + [ Steve Beattie ] + * debian/control: make libnotify-bin a Recommends rather than a + Depends for use in server environments (LP: #1061879) + * debian/patches/0020-coredump_tests.patch: fix coredump regression + tests (LP: #1050430) + * debian/patches/0021-webapps_abstraction.patch: add a few items + triggered by using and installing webapps in firefox (LP: #1056418) + * debian/patches/0022-aa-decode-stdin.patch: fix aa-decode to process + stdin correctly and decode encoded profiles names + + -- Steve Beattie Tue, 09 Oct 2012 12:44:56 -0700 + +apparmor (2.8.0-0ubuntu4) quantal; urgency=low + + * Allow /var/lib/sss/mc/{group|passwd} for systems using sssd. + (LP: #1056391) + + -- Stéphane Graber Tue, 25 Sep 2012 14:59:57 -0400 + +apparmor (2.8.0-0ubuntu3) quantal; urgency=low + + * remove 0010-lp972367.patch and 0012-lp964510.patch which should have been + dropped in 2.8.0-0ubuntu1 since they are included upstream + * debian/patches/0001-add-chromium-browser.patch: + - add a couple of small accesses + - add a child profile for xdgsettings (LP: #1045986) + + -- Jamie Strandboge Mon, 17 Sep 2012 08:26:46 -0500 + +apparmor (2.8.0-0ubuntu2) quantal; urgency=low + + * 0015-fontconfig.patch: update fonts abstraction for new fontconfig paths + * 0016-cap-block-suspend.patch: add CAP_BLOCK_SUSPEND to severity.db. In + the next version of AppArmor, this will replace 0006-cap-epollwakeup.patch + * 0017-gnome-poppler-data.patch: update gnome abstraction for poppler cMap + tables + + -- Jamie Strandboge Tue, 14 Aug 2012 11:27:15 -0500 + +apparmor (2.8.0-0ubuntu1) quantal; urgency=low + + * New upstream release + - Drop the following patches, now included upstream: + 0003-add-aa-easyprof.patch + 0005-clean-common-from-vim.patch + 0006-use-linux-capability-h.patch + 0008-apparmor-lp963756.patch + 0009-apparmor-lp959560-part1.patch + 0010-apparmor-lp959560-part2.patch + 0011-apparmor-lp872446.patch + 0012-apparmor-lp978584.patch + 0013-apparmor-lp800826.patch + 0014-apparmor-lp979095.patch + 0015-apparmor-lp963756.patch + 0016-apparmor-lp968956.patch + 0017-apparmor-lp979135.patch + 0018-lp990931.patch + * Rename 0007-ubuntu-manpage-updates.patch to 0003 + * debian/patches/0005-lp1019274.patch: add python3 support. Patch based + on work from Dmitrijs Ledkovs. (LP: #1019274) + * debian/patches/0006-cap-epollwakeup.patch: adjust severity.db for + CAP_EPOLLWAKEUP + * debian/patches/0007-setuptools-python3.patch: adjust setuptools-python3 to + adjust scripts to use PYTHON if it is defined + * debian/patches/0008-libapparmor-layout-deb.patch: use --install-layout=deb + when calling setup.py + * enable python3 in the build: + - debian/rules: + + use python3 as default PYTHON + + build libapparmor with both python2 and python3 + - debian/control: + + Build-Depends on python3-all-dev and python3 + + adjust apparmor to Depends on ${python3:Depends} + + adjust apparmor-utils to Depends on ${python3:Depends} + + add python3-libapparmor package + - add debian/python3-libapparmor.install + - debian/python-libapparmor.install: adjust to use python2 and + dist-packages + * debian/patches/0009-lp1003856.patch: update ubuntu-browsers.d/java for + IcedTea 7 (LP: #1003856) + * debian/patches/0010-lp972367.patch: allow software center to work again + from browsers (LP: #972367) + * debian/patches/0011-lp1013887.patch: let sanitized helper work with + /usr/local. Patch based on work by Reuben Thomas. (LP: #1013887) + * debian/patches/0012-lp964510.patch: allow Google Chrome and + chromium-browser to work under sanitized helper (LP: #964510) + * debian/patches/0013-lp987578.patch: ubuntu-integration does not work + properly with exo-open. Fix thanks to Mark Ramsell (LP: #987578) + * debian/patches/0014-lp933440.patch: update skype example profile to work + with latest skype. Based on work by Ivan Frederiks (LP: #933440) + + -- Jamie Strandboge Thu, 05 Jul 2012 10:53:17 -0500 + +apparmor (2.7.103-4) unstable; urgency=low + + * debian/apparmor-profiles.dirs: add directories we might collide + with apparmor on during purge. + * debian/patches/fix-network-rule-support.patch: handle lack of + networking features correctly (Closes: 679597). + + -- Kees Cook Mon, 16 Jul 2012 11:52:42 -0700 + +apparmor (2.7.103-3) unstable; urgency=low + + * debian/control: drop deprecated XS-Python-Version (Closes: 673062). + * debian/debhelper/postinst-apparmor: remove bashism (Closes: 678526). + * debian/patches/pass-compiler-flags.patch: add LDFLAGS where needed. + * debian/libapache2-mod-apparmor.lintian-overrides: verified safe + glibc function use at compile-time. + * debian/rules: call dh_lintian. + + -- Kees Cook Thu, 28 Jun 2012 23:23:27 -0700 + +apparmor (2.7.103-2) unstable; urgency=low + + * debian/patches/non-linux.patch: fix up build failures on non-Linux + systems (Closes: 671040). + * debian/control: require apparmor for apparmor-profiles, since abstraction + tree needs to be created already. + * debian/lib/apparmor/functions: silently handle lack of interface compat + patch. + * debian/apparmor-profiles.postrm: retain conffile list for purge logic + (Closes: 656451). + * debian/libapache2-mod-apparmor.{dirs,preinst}: add "disabled" directory + to package file list correctly (Closes: 670431). + * debian/control: bump standards version, no changes needed. + + -- Kees Cook Sat, 05 May 2012 09:57:10 -0700 + +apparmor (2.7.103-1) unstable; urgency=low + + * New upstream release, merge with Ubuntu, drop included patches: + - 0005-clean-common-from-vim.patch + - 0006-use-linux-capability-h.patch + - 0008-apparmor-lp963756.patch + - 0009-apparmor-lp959560-part1.patch + - 0010-apparmor-lp959560-part2.patch + - 0011-apparmor-lp872446.patch + - 0012-apparmor-lp978584.patch + - 0013-apparmor-lp800826.patch + - 0014-apparmor-lp979095.patch + - 0015-apparmor-lp963756.patch + - 0016-apparmor-lp968956.patch + - 0017-apparmor-lp979135.patch + - Closes: 656451 + * debian/control: url.sty has moved, add texlive-latex-recommended + Build-Dep (Closes: 669537). + * debian/patches/notify-group.patch, debian/apparmor-notify.install, + debian/notify/notify.conf: Remove custom notify.conf file, and modify + the upstream one instead, adjusting the group to "adm", thanks to + Intrigeri (Closes: 660078). + * debian/patches/aa-status-smarter.patch: fix up the logic for + determining the enabled state of AppArmor, based on patch from + Intrigeri (Closes: 661153). + * debian/debhelper/postinst-apparmor: do not fail if AppArmor is not + installed, thanks to Intrigeri (Closes: 668010). + * debian/patches/abstractions-X.patch: add missing gdm3 path to X + abstraction, thanks to Intrigeri (Closes: 660079). + * debian/patches/abstractions-ubuntu-browsers.patch: include iceweasl + in browser abstraction, thanks to Intrigeri (Closes: 661176). + * debian/rules, debian/compat, debian/patches/pass-compiler-flags.patch, + debian/control: bump to compat 9, export build flags, and make get + them passed into the build. + + -- Kees Cook Tue, 24 Apr 2012 17:20:41 -0700 + +apparmor (2.7.102-0ubuntu5) quantal; urgency=low + + * debian/debhelper/postrm.apparmor: do not delete local files if main + conffile still exists since it probably means it is owned by a + new/different package. (LP: #986892) + + -- Clint Byrum Mon, 11 Jun 2012 21:40:33 -0700 + +apparmor (2.7.102-0ubuntu4) quantal; urgency=low + + * Fix FTBFS (LP: #1000055). Patch thanks to Steve Beattie. + - debian/control: Build-Depends on texlive-latex-recommended + - debian/rules: add V=1 for 'make' and 'make check' when building the + parser + * debian/patches/0018-lp990931.patch: adjust path for thunderbird to include + non-versioned path + - LP: #990931 + + -- Jamie Strandboge Fri, 18 May 2012 15:02:02 -0500 + +apparmor (2.7.102-0ubuntu3) precise; urgency=low + + [ Jamie Strandboge ] + * debian/patches/0007-ubuntu-manpage-updates.patch: update apparmor(5) + to describe Ubuntu's two-stage policy load and how to add utilize it + when developing policy (LP: #974089) + + [ Serge Hallyn ] + * debian/apparmor.init: do nothing in a container. This can be + removed once stacked profiles are supported and used by lxc. + (LP: #978297) + + [ Steve Beattie ] + * debian/patches/0008-apparmor-lp963756.patch: Fix permission mapping + for change_profile onexec (LP: #963756) + * debian/patches/0009-apparmor-lp959560-part1.patch, + debian/patches/0010-apparmor-lp959560-part2.patch: Update the parser + to support the 'in' keyword for value lists, and make mount + operations aware of 'in' keyword so they can affect the flags build + list (LP: #959560) + * debian/patches/0011-apparmor-lp872446.patch: fix logprof missing + exec events in complain mode (LP: #872446) + * debian/patches/0012-apparmor-lp978584.patch: allow inet6 access in + dovecot imap-login profile (LP: #978584) + * debian/patches/0013-apparmor-lp800826.patch: fix libapparmor + log parsing library from dropping apparmor network events that + contain ip addresses or ports in them (LP: #800826) + * debian/patches/0014-apparmor-lp979095.patch: document new mount rule + syntax and usage in apparmor.d(5) manpage (LP: #979095) + * debian/patches/0015-apparmor-lp963756.patch: Fix change_onexec + for profiles without attachment specification (LP: #963756, + LP: #978038) + * debian/patches/0016-apparmor-lp968956.patch: Fix protocol error when + loading policy to kernels without compat patches (LP: #968956) + * debian/patches/0017-apparmor-lp979135.patch: Fix change_profile to + grant access to /proc/attr api (LP: #979135) + + -- Steve Beattie Thu, 12 Apr 2012 06:17:42 -0500 + +apparmor (2.7.102-0ubuntu2) precise; urgency=low + + * debian/control: Make dh-apparmor Multi-Arch: foreign, so that it can + satisfy cross-build-dependencies. + + -- Colin Watson Sat, 31 Mar 2012 02:28:05 +0100 + +apparmor (2.7.102-0ubuntu1) precise; urgency=low + + * New upstream release. Fixes the following issues in support of LXC + AppArmor support for beta-2: + - Fix the return size of aa_getprocattr (LP: #962521) + - Fix mnt_flags passed for remount + - Fix dfa minimization around the nonmatching state + - Factor all the permissions dump code into a single perms method + * debian/apparmor-utils.install: + - AppArmor now installs apparmor.vim. Move it into place + - install aa-exec + * debian/apparmor-utils.manpages: install aa-exec man page + * debian/patches/0003-add-aa-easyprof.patch: refresh for Makefile changes + * debian/patches/0005-clean-common-from-vim.patch: clean up 'common' + symlink + * 0006-use-linux-capability-h.patch: Use linux/capability.h instead of + sys/capability.h + + -- Jamie Strandboge Thu, 22 Mar 2012 15:39:56 -0500 + +apparmor (2.7.101-0ubuntu1) precise; urgency=low + + * New upstream release. Fixes: LP: #948147 + * debian/lib/apparmor/functions: Update to support the feature directory so + that caching will work on kernels that support the feature dir. Patch + based on work from John Johansen. LP: #954469 + + -- Jamie Strandboge Thu, 15 Mar 2012 15:57:02 -0500 + +apparmor (2.7.100-0ubuntu1) precise; urgency=low + + * New upstream bug fix release which fixes (in addition to other bugs): + - LP: #940362 + - LP: #947617 + - LP: #949891 + * Drop the following patches, included upstream: + - 0004-lp918879.patch + - 0007-lp941506.patch + - 0008-lp941503.patch + - 0009-lp943161.patch + * Drop the following patch, no longer required: + - 0005-disable-minimization.patch + * Rename 0006-lp941808.patch 0004-lp941808.patch + * debian/patches/0001-add-chromium-browser.patch: update for additional + denials with newer chromium-browser. (LP: #937723) + * debian/put-all-profiles-in-complain-mode.sh: deal with existing flags + + -- Jamie Strandboge Fri, 09 Mar 2012 06:56:48 -0600 + +apparmor (2.7.99-0ubuntu4) precise; urgency=low + + * Restore dpkg-maintscript-helper changes from 2.7.0-0ubuntu6, lost in + 2.7.99-0ubuntu1. + + -- Colin Watson Mon, 05 Mar 2012 16:11:01 +0000 + +apparmor (2.7.99-0ubuntu3) precise; urgency=low + + * debian/patches/0009-lp943161.patch: update to not fail when + default-jre-headless is installed (LP: #945019) + + -- Jamie Strandboge Fri, 02 Mar 2012 12:47:03 -0600 + +apparmor (2.7.99-0ubuntu2) precise; urgency=low + + * debian/control: dh-apparmor should Breaks/Replaces on debhelper + 9.20120115ubuntu3, not 9.20120115ubuntu2 + * debian/patches/0006-lp941808.patch: allow writes to + /{,var/}run/sendsigs.omit.d/*dnsmasq.pid for network manager integration + (LP: #941808) + * debian/patches/0007-lp941506.patch: allow reads to ~/.drirc in the X + abstraction (LP: #941506) + * debian/patches/0008-lp941503.patch: allow read access to + /usr/share/texmf/fonts in fonts abstraction (LP: #941503) + * debian/patches/0009-lp943161.patch: fix path to java in + ubuntu-browsers.d/java (LP: #943161) + + -- Jamie Strandboge Fri, 02 Mar 2012 07:50:50 -0600 + +apparmor (2.7.99-0ubuntu1) precise; urgency=low + + * New upstream release which also pulls in 2.7.0-1 changes from Debian. + For the sake of simplicity, I have added the 2.7.0-1 changelog entry after + 2.7.0-0ubuntu7 even though chronologically it appeared in Debian between + 2.7.0-0ubuntu4 and 2.7.0-0ubuntu5. + - LP: #940422 (FFe) + * Drop the following patches, included upstream: + - 0003-commits-through-r1882.patch + - 0004-lp887992.patch + - 0005-lp884748.patch + - 0006-lp870992.patch + - 0007-lp860856.patch + - 0008-lp852062.patch + - 0009-lp851977.patch + - 0010-lp890894.patch + - 0011-lp817956.patch + - 0012-lp458922.patch + - 0013-lp769148.patch + - 0014-lp904548.patch + - 0015-lp712584.patch + - 0016-lp562831.patch + - 0017-lp662906.patch + - 0018-deny-home-pki-so.patch + - 0019-lp899963.patch + - 0020-lp912754a.patch + - 0021-lp912754b.patch + - 0022-workaround-lp851986.patch + - 0023-syslog-ng-needs-dac-read-search.patch + - 0024-fix-python-and-ruby-autogeneration.patch + - 0025-lp914184.patch + - 0026-lp914190.patch + - 0027-lp914386.patch + - 0028-testsuite-fixes.patch + - 0029-lp917628.patch + - 0030-lp916285.patch + - 0031-lp917639.patch + - 0032-lp917641.patch + - 0033-add-ubuntu-helpers-to-plugins-common.patch + - 0034-lp917859.patch + - 0035-kde-should-use-kde4.patch + - 0036-lp929531.patch + - 0036-fix-manpage-errors.patch + * Rename 0037-add-aa-easyprof.patch 0003-add-aa-easyprof.patch + * debian/apparmor-profiles.postrm: clean out autogenerated files created by + apparmor-profiles.postinst (Closes: 656451) + * debian/patches/0004-lp918879.patch: allow /etc/drirc in the X abstraction + (LP: #918879) + * debian/patches/0005-disable-minimization.patch: do to LP: 940362, + minimization is not working correctly. Disable it for now. + + -- Jamie Strandboge Fri, 24 Feb 2012 09:04:45 -0600 + +apparmor (2.7.0-1) unstable; urgency=low + + * debian/po/pt.po add new Portuguese translation, thanks to Pedro Ribeiro, + (Closes: 651434). + * debian/control: do not require initramfs-tools on !linux-any + (Closes: 651297). + * debian/{control,rules,debhelper/*}: move dh_apparmor into separate + binary package, out of debhelper (Closes: 649784). + * debian/{control,rules}: fix up lack of real build-indep. + * debian/patches/0036-fix-manpage-errors.patch: minor man page cleanups. + * merge changes from Ubuntu (r1443). + + -- Kees Cook Thu, 09 Feb 2012 15:24:08 -0800 + +apparmor (2.7.0-0ubuntu7) precise; urgency=low + + * debian/patches/0037-add-aa-easyprof.patch: add the aa-easyprof tool + * apparmor-utils.dirs, apparmor-utils.install, apparmor-utils.manpages: + install aa-easyprof and supporting files + * python-libapparmor.install: only install LibAppArmor* + * debian/rules: use dh_python2 with apparmor-utils + * debian/control: apparmor-utils should Depends on ${python:Depends} + + -- Jamie Strandboge Wed, 15 Feb 2012 07:40:38 -0600 + +apparmor (2.7.0-0ubuntu6) precise; urgency=low + + * debian/apparmor.{preinst,postinst,postrm,maintscript}, debian/control: + Use maintscript support in dh_installdeb rather than writing out + dpkg-maintscript-helper commands by hand. We now simply Pre-Depend on a + new enough version of dpkg rather than using 'dpkg-maintscript-helper + supports' guards, leading to more predictable behaviour on upgrades. + + -- Colin Watson Sat, 11 Feb 2012 15:11:01 +0000 + +apparmor (2.7.0-0ubuntu5) precise; urgency=low + + * debian/patches/0036-lp929531.patch: adjust base abstraction to allow read + access to /sys/devices/system/cpu/online (LP: #929531) + + -- Jamie Strandboge Thu, 09 Feb 2012 08:04:13 -0600 + +apparmor (2.7.0-0ubuntu4) precise; urgency=low + + * debian/patches/0034-lp917859.patch: adjust aspell abstraction for user + customizable dictionaries (LP: #917859) + * debian/patches/0035-kde-should-use-kde4.patch: adjust abstractions to + use kde{,4} instead of kde + * debian/control: update Vcs-Bzr + + -- Jamie Strandboge Wed, 18 Jan 2012 16:27:30 -0600 + +apparmor (2.7.0-0ubuntu3) precise; urgency=low + + * debian/patches/0029-lp917628.patch: Adjust dnsmasq profile for + NetworkManager integration (LP: #917628) + * debian/patches/0030-lp916285.patch: update ubuntu-browsers.d/text-editors + to work with emacs2[2-9] (LP: #916285) + * debian/patches/0031-lp917639.patch: update p11-kit to allow mmap of + libraries in pkcs directories (LP: #917639) + * debian/patches/0032-lp917641.patch: ubuntu-integration abstraction for + multiarch with gst-plugin-scanner (LP: #917641) + * debian/patches/0033-add-ubuntu-helpers-to-plugins-common.patch: include + ubuntu-helpers in the plugins-common abstraction + + -- Jamie Strandboge Tue, 17 Jan 2012 07:18:34 -0600 + +apparmor (2.7.0-0ubuntu2) precise; urgency=low + + * debian/patches/0022-workaround-lp851986.patch: update sanitized_helper + to include inet6 + + -- Jamie Strandboge Fri, 13 Jan 2012 11:21:30 +0100 + +apparmor (2.7.0-0ubuntu1) precise; urgency=low + + * New upstream release. Fixes the following: + - LP: #794974 + - LP: #815883 + - LP: #840973 + * Drop the following patches, included upstream: + - af_names-generation.patch + - 0004-adjust-logprof-log-search-order.patch + - 0005-lp826914.patch + - 0006-lp838275.patch + - 0007-fix-introspection-tests.patch + * Rename 0003-add-debian-integration-to-lighttpd.patch to 0002 + * debian/patches/0003-commits-through-r1882.patch: several bug, + documentation and performance fixes on our road to AppArmor 2.8 + (LP: #840734, LP: #905412) + * debian/patches/0004-lp887992.patch: cups-client abstraction should allow + owner read of @{HOME}/.cups/client.conf and @{HOME}/.cups/lpoptions + (LP: #887992) + * update debian/patches/0001-add-chromium-browser.patch for deeper + directories of /sys/devices/pci (LP: #885833) + * debian/patches/0005-lp884748.patch: allow kate as text editor in the + browsers abstraction (LP: #884748) + * debian/patches/0006-lp870992.patch: abstractions/fonts should allow access + to ~/.fonts.conf.d (LP: #870992) + * debian/patches/0007-lp860856.patch: allow read access to sitecustomize.py + in the python abstraction, which is needed for apport hooks to work in + python applications (LP: #860856) + * debian/patches/0008-lp852062.patch: update binaries for transmission + clients (LP: #852062) + * debian/patches/0009-lp851977.patch: allow ixr access to exo-open for + Xubuntu and friends (LP: #851977) + * debian/patches/0010-lp890894.patch: allow access to Thunar as well as + thunar in ubuntu-integration abstraction (LP: #890894) + * debian/patches/0011-lp817956.patch: update usr.sbin.sshd example profile + (LP: #817956) + * debian/patches/0012-lp458922.patch: update dovecot deliver profile to + access various .conf files for dovecot (LP: #458922) + * debian/patches/0013-lp769148.patch: allow avahi to do dbus introspection + (LP: #769148) + * debian/patches/0014-lp904548.patch: fix typo for multiarch line for gconv + (LP: #904548) + * debian/patches/0015-lp712584.patch: Nvidia users need access to + /dev/nvidia* files for various plugins to work right. Since these are all + focused around multimedia, add the acceses to the multimedia abstraction. + (LP: #712584) + * debian/patches/0016-lp562831.patch: allow fireclam plugin to work + (LP: #562831) + * debian/patches/0017-lp662906.patch: allow software-center in the ubuntu + integration browser abstraction (LP: #662906) + * debian/patches/0018-deny-home-pki-so.patch: update private-files + abstraction to deny write and link to ~/.pki/nssdb/*so files (LP: #911847) + * debian/patches/0019-lp899963.patch: add audacity to the + ubuntu-media-players abstraction (LP: #899963) + * debian/patches/0020-lp912754a.patch,0021-lp912754b.patch: add p11-kit + abstraction and add it to the authentication abstraction (LP: #912754) + * debian/patches/0022-workaround-lp851986.patch: instead of using Ux + in the ubuntu and launchpad abstractions, use a helper child profile. + This will help work around the lack of environment filtering + (LP: #851986) + * debian/patches/0023-syslog-ng-needs-dac-read-search.patch: adjust syslog-ng + profile for dac_read_search + * debian/patches/0024-fix-python-and-ruby-autogeneration.patch: fix python + and ruby autogeneration when using aa-autodep and aa-genprof + * debian/patches/0025-lp914184.patch: allow the creation of enchant .config + directory in the enchant abstraction (LP: #914184) + * debian/patches/0026-lp914190.patch: block write access to ~/.kde/env + because KDE automatically sources scripts in that folder on startup + (LP: #914190) + * debian/pathes/0027-lp914386.patch: add xdg-desktop abstraction and + adjust gnome and kde abstractions to use it (LP: #914386) + * debian/patches/0028-testsuite-fixes.patch: testsuite fixes in the kernel + regression tests + + -- Jamie Strandboge Thu, 12 Jan 2012 12:55:17 +0100 + +apparmor (2.7.0~beta1+bzr1774-1ubuntu3) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 22:10:05 +0000 + +apparmor (2.7.0~beta1+bzr1774-1ubuntu2) oneiric; urgency=low + + * 0007-fix-introspection-tests.patch: Add missing introspection regression + test that should have been checked in with the introspection patches. + + -- Jamie Strandboge Tue, 04 Oct 2011 13:13:05 -0500 + +apparmor (2.7.0~beta1+bzr1774-1ubuntu1) oneiric; urgency=low + + * 0004-adjust-logprof-log-search-order.patch: Adjust the search order to use + just /var/log/audit/audit.log and /var/log/syslog. (LP: #835838) + * 0005-lp826914.patch: fix missing multiarch in abstraction/X (LP: #826914) + * 0006-lp838275.patch: adjust ubuntu-email abstraction for thunderbird 7 + (LP: #838275) + + -- Jamie Strandboge Fri, 02 Sep 2011 12:30:10 -0500 + +apparmor (2.7.0~beta1+bzr1774-1) unstable; urgency=low + + * New upstream devel snapshot: + - drop 0002-lp750381.patch, taken upstream. + - drop 0004-lp754889.patch, taken upstream. + - drop 0005-lp761217.patch, taken upstream. + - drop 0100-manpage-typo.patch, taken upstream. + - drop 0101-declarations.patch, solved differently upstream. + - drop 0102-manpage-release-name.patch, taken upstream. + - drop 0103-kfreebsd-compile.patch, taken upstream. + - drop define-path-max.patch, taken upstream. + - drop indep-build.patch, taken upstream. + - debian/libapparmor1.manpages: add new function man pages. + * Merge with Ubuntu: + - drop 0104-python-aa-status.patch, taken upstream. + - drop 0105-lightdm.patch, taken upstream. + - drop 0106-lp810270.patch, taken upstream. + - drop 0107-lp767308.patch, taken upstream. + - drop 0108-gnome-mimeinfo.patch, taken upstream. + - drop 0109-add-profile-repo-info.patch, taken upstream. + * Add af_names-generation.patch to allow arbitrary socket.h file location. + + -- Kees Cook Wed, 10 Aug 2011 18:12:34 -0700 + +apparmor (2.6.1-4ubuntu5) oneiric; urgency=low + + * debian/patches/0109-add-profile-repo-info.patch: add a blurb about the + new profiles repository to aa-genprof, along with a link to the wiki + page. + + -- Marc Deslauriers Mon, 18 Jul 2011 10:49:13 -0400 + +apparmor (2.6.1-4ubuntu4) oneiric; urgency=low + + * debian/patches/0106-lp810270.patch: updated to use upstream commits + + -- Jamie Strandboge Fri, 15 Jul 2011 14:08:38 -0500 + +apparmor (2.6.1-4ubuntu3) oneiric; urgency=low + + * debian/patches/0106-lp810270.patch: adjustments for /var/run -> /run, + /var/lock -> /run/lock and /dev/shm -> /run/shm transition (LP: #810270) + * debian/patches/0107-lp767308.patch: allow read access to + /usr/local/share/ca-certificates (LP: #767308) + * debian/patches/0001-add-chromium-browser.patch: updates for newer chromium + (LP: #776648) + * debian/patches/0108-gnome-mimeinfo.patch: allow read access to + /usr/share/gnome/applications/mimeinfo.cache in the gnome abstraction + + -- Jamie Strandboge Thu, 14 Jul 2011 09:39:49 -0500 + +apparmor (2.6.1-4ubuntu2) oneiric; urgency=low + + * debian/patches/0105-lightdm.patch: allow owner read access to + /var/run/lightdm/authority/[0-9]* + + -- Jamie Strandboge Wed, 22 Jun 2011 16:29:11 -0500 + +apparmor (2.6.1-4ubuntu1) oneiric; urgency=low + + * Get rid of Perl in main AppArmor package so we can remove perl-modules + from the installation cd: + - debian/patches/0104-python-aa-status.patch: switch aa-status to + Python + - debian/apparmor.*, debian/apparmor-utils.*: move aa-status, symlink + and manpages to main apparmor package. + - debian/control: add appropriate Breaks/Replaces/Depends because of + the file move, add ${python:Depends} to apparmor Depends, add + apparmor-utils to apparmor Suggests. + - debian/rules: add apparmor package to dh_python2. + * debian/lib/apparmor/functions: fix hat separator (LP: #788616) + - Based on upstream revision 1733 + + -- Marc Deslauriers Wed, 01 Jun 2011 11:03:20 -0400 + +apparmor (2.6.1-4) unstable; urgency=low + + * debian/po: add new translations: + - zh_CN.po: Simplified Chinese, thanks to Aron Xu (Closes: 624853). + - da.po: Danish, thanks to Joe Dalton (Closes: 625252). + - sv.po: Swedish, thanks to Martin Bagge (Closes: 625264). + - cs.po: Czech, thanks to Michal Šimůnek (Closes: 625465). + - de.po: German, thanks to Chris Leick (Closes: 625931). + - nl.po: Dutch, thanks to Jeroen Schot (Closes: 626269). + - ja.po: Japanese, thanks to Hideki Yamane (Closes: 626803). + - it.po: Italian, thanks to Dario Santamaria (Closes: 626836). + - fr.po: French, thanks to Julien Patriarca (Closes: 626903). + - es.po: Spanish, thanks to Francisco Javier Cuadrado (Closes: 627031). + * debian/patches/define-path-max.patch: fix Hurd FTBFS. + * debian/patches/indep-build.patch: allow split indep/arch builds. + * debian/{control,rules,non-linux}: add fake parser for non-Linux + builds so that apparmor-utils is installable (Closes: 625977). + + -- Kees Cook Fri, 27 May 2011 13:51:18 -0700 + +apparmor (2.6.1-3) unstable; urgency=low + + * debian/control: add sneaky missing Build-Dep on liblocale-gettext-perl + (fixes FTBFS on some extremely minimal chroots, Closes: 624566). + * debian/patches/0101-declarations.patch: add missing declarations needed + for sensitive compilers (fixes FTBFS on mips/mipsel). + * debian/patches/0102-manpage-release-name.patch: update manpage release + names to match others. + * debian/patches/0103-kfreebsd-compile.patch, debian/{control,rules}: + attempt to build as much as possible (no parser) on non-Linux systems. + * debian/po/ru.po: add translation, thanks to Yuri Kozlov (Closes: 624741). + + -- Kees Cook Sun, 01 May 2011 19:29:07 -0700 + +apparmor (2.6.1-2) unstable; urgency=low + + * debian/copyright: clarify for some full organization names. + + -- Kees Cook Wed, 27 Apr 2011 10:38:07 -0700 + +apparmor (2.6.1-1) unstable; urgency=low + + * Initial Debian upload (Closes: 622922). + * debian/patches/0100-manpage-typo.patch: fix lintian error in manpage. + * debian/clean: update for Debian build. + * debian/copyright: rearrange and add a few missing files. + * debian/source/format, debian/rules: convert to 3.0 quilt format. + * debian/{rules,apparmor-profiles.postinst}: deal with lack of dh_apparmor. + + -- Kees Cook Sat, 23 Apr 2011 12:14:55 -0700 + +apparmor (2.6.1-0ubuntu3) natty; urgency=low + + * debian/patches/0003-add-debian-integration-to-lighttpd.patch: updates for + lighttpd example profile to work in Debian/Ubuntu (LP: #582814) + * debian/patches/0004-lp754889.patch: add several image viewers to + ubuntu-browsers.d/multimedia abstraction (LP: #754889) + * debian/patches/0005-lp761217.patch: abstractions/private-files updates for + zsh and several other shells (LP: #761217) + * debian/patches/0001-add-chromium-browser.patch: fixes for multiarch and + crash reporter (LP: #764786) + + -- Jamie Strandboge Mon, 18 Apr 2011 09:23:50 -0500 + +apparmor (2.6.1-0ubuntu2) natty; urgency=low + + * debian/patches/0002-lp750381.path: adjust ubuntu-media-players abstraction + to allow reading of configs required by gnash and owner writing of + @{HOME}/.gnash (LP: #750381) + + -- Jamie Strandboge Thu, 07 Apr 2011 10:09:24 -0500 + +apparmor (2.6.1-0ubuntu1) natty; urgency=low + + * New upstream release. + - Fixes breakage of mod_apparmor apache2 module (LP: #737074) + - Fixes profile matching when an attachement doesn't contain a + regex (LP: #731155) + - Fixes parser acceptance of missing network protocols (LP: #732837) + - Patches taken upstream and dropped: + + debian/patches/0002-lp727478.patch + + debian/patches/0003-test-lp727478.patch + + debian/patches/0004-lp736870.patch + * debian/apparmor.install, debian/apparmor.dirs: add new multiarch + tunable file and directory + * debian/python-libapparmor.install: loosen directory specification + for resiliancy against different python versions + + -- Steve Beattie Thu, 24 Mar 2011 01:55:12 -0700 + +apparmor (2.6.0-0ubuntu4) natty; urgency=low + + * Update debian/patches/0004-lp736870.patch (LP: #736870): + - armel triplet doesn't match '*-linux-gnu' + - /lib/tls for libc6-xen needs handling + - gnome, kde, kerberosclient, and authentication abstractions also need + updating for multiarch. + + -- Steve Langasek Tue, 22 Mar 2011 15:18:54 -0700 + +apparmor (2.6.0-0ubuntu3) natty; urgency=low + + * debian/patches/0004-lp736870.patch: add multiarch support to abstractions + (LP: #736870) + + -- Jamie Strandboge Thu, 17 Mar 2011 09:17:01 -0500 + +apparmor (2.6.0-0ubuntu2) natty; urgency=low + + * debian/patches/0002-lp727478.patch: Override AF_MAX for kernels that don't + support proper masking. Patch thanks to John Johansen (LP: #727478) + * debian/patches/0003-test-lp727478.patch: add tcp.sh test as partial + networking test + + -- Jamie Strandboge Thu, 03 Mar 2011 16:40:08 -0600 + +apparmor (2.6.0-0ubuntu1) natty; urgency=low + + [ Steve Beattie ] + * New upstream 2.6.0 release (LP: #724193) + - Patches taken upstream and dropped: + + 0001-ubuntu-buildd.patch + + 0003-add-libvirt-support-to-dnsmasq.patch + + 0004-lp698194.patch + + 0005-aa-disable.patch + - debian/rules: remove library path settings for mod_apparmor and + pam_apprmor builds; upstream handles this properly now. + - debian/apparmor-utils.install: handle upstream SubDomain.pm => + AppArmor.pm renaming + * debian/lib/apparmor/functions: handle profile names with embedded + spaces (LP: #655523) + * debian/rules, debian/control, debian/python-libapparmor: build + a python-libapparmor package. + + [ Jamie Strandboge ] + * debian/copyright: update and reformat according to DEP-5 + * debian/lib/apparmor/functions: don't unload dynamically generated libvirt + profiles on reload, restart, and force-reload (LP: #702774) + * debian/control: use Section: python for python-libapparmor + + -- Steve Beattie Thu, 24 Feb 2011 01:41:58 -0800 + +apparmor (2.6~devel+bzr1617-0ubuntu2) natty; urgency=low + + * debian/patches/0005-aa-disable.patch: add aa-disable + * debian/apparmor-utils.install: install aa-disable + * debian/apparmor-utils.manpages: install aa-disable man page + + -- Jamie Strandboge Mon, 07 Feb 2011 11:23:50 -0600 + +apparmor (2.6~devel+bzr1617-0ubuntu1) natty; urgency=low + + * Merge with upstream bzr revision 1617. Closes the following bugs: + - LP: #692406: temporarily disable the defunct repository until an + alternative can be used + - LP: #649497: add ibus abstraction + - LP: #652562: allow 'rw' to /var/log/samba/cores/ + - LP: #658135: allow access to /usr/lib32 and /usr/lib64 for dri modules + * 0002-add-chromium-browser.patch: add /dev/shm/.org.chromium.* + (LP: #692866) + * rename debian/patches/0010-ubuntu-buildd.patch to 0001-ubuntu-buildd.patch + and adjust debian/patches/series + * debian/patches/0003-add-libvirt-support-to-dnsmasq.patch (LP: #697239): + - allow read and write access to libvirt pid files for dnsmasq + - allow net_admin capability for DHCP server + - allow net_raw and network inet raw for ICMP pings when used as a DHCP + server + * debian/patches/0004-lp698194 (LP: #698194): + - abstractions/private-files: don't allow wl to autostart directories + - abstractions/private-files-strict: don't allow access to chromium, + kwallet and popular mail clients + + -- Jamie Strandboge Fri, 07 Jan 2011 12:44:26 -0600 + +apparmor (2.6~devel+bzr1601-0ubuntu1) natty; urgency=low + + * Merge with upstream bzr revision 1601 to gain parser speed + improvements and man page fixes. Closes the following bugs: + - LP: #349049: document audit, deny and owner rule qualifiers + - LP: #466228: ubuntu-browsers.d/multimedia: allow flash printing + - LP: #644983: add ubuntu-browsers.d/ubuntu-integration-xul + - LP: #692216: use aa_change_hat() instead of change_hat() + - LP: #692217: add aa_change_profile.pod manpage + * debian/control: explicitly depend on gettext module. + * ship apparmor vim syntax file (LP: #646800): + - debian/vim-apparmor.yaml: vim addon definition file. + - debian/apparmor-utils.install: add apparmor.vim and vim-apparmor.yaml. + * debian/libapparmor1.manpages: ship aa_change_profile manpage. + + -- Kees Cook Mon, 20 Dec 2010 14:37:38 -0800 + +apparmor (2.6~devel+bzr1527-0ubuntu1) natty; urgency=low + + * Merge with upstream bzr revision 1527, drop patches taken upstream: + - debian/patches/0001-fix-release.patch + - debian/patches/0003-local-includes.patch + - debian/patches/0004-ubuntu-abstractions-updates.patch + - debian/patches/0005-lp648900.patch + - debian/patches/0006-testsuite-fixes.patch + - debian/patches/0007-honor-cflags.patch + - debian/patches/0008-lp652674.patch + - debian/patches/0009-sensible-browser-pix.patch + * Rework packaging for more sanity. + - debian/control: + - bump debhelper build depend to Ubuntu-specific v8. + - switch apparmor-profiles to arch all as it ships only text. + - update Homepage to new domain. + - expand long descriptions to keep lintian happy. + - debian/compat: bump to 8. + - README.Debian: removed, hopelessly out of date. + - debian/copyright: + - updated for changes to upstream source layout. + - fixed lintian warnings. + - debian/rules: + - ditch mv/install in favor of *.install,*.dir files. + - replace "dh_clean -k" with "dh_prep" + - use dh_clean's debian/clean file instead of manual rm. + - scan for all profiles to run through dh_apparmor. + - debian/*.{install,dirs,manpages,docs}: + - explicitly list all files needed for packaging + - debian/apparmor.{preinst,postinst,postrm}: + - add dpkg-maintscript-helper calls to clean up old script locations. + - drop old conffile cleanups, since they predate Lucid. + - debian/apparmor.init: + - move functions to /lib/apparmor. + - start on $remote_fs due to using /usr tools during init. + - use LC_COLLATE=C for proper sorting. + - debian/libapparmor1.symbols: created initial symbols file. + - debian/apparmor-docs.doc-base: include doc-base details for techdoc. + - debian/notify/90apparmor-notify: use new command name. + - lib/apparmor/functions: use LC_COLLATE=C for proper sorting. + + -- Kees Cook Thu, 04 Nov 2010 18:06:34 -0700 + +apparmor (2.5.1-0ubuntu4) natty; urgency=low + + * debian/patches/0004-ubuntu-abstractions-updates.patch: updated to add + /usr/bin/emacs-snapshot-gtk PUxr + * debian/patches/0009-sensible-browser-pix.patch: use Pix for + sensible-browser + * debian/patches/0010-ubuntu-buildd.patch: skip parser caching test if + the AppArmor securityfs introspection directory is not mounted, as + is the case on Ubuntu buildds. + + -- Jamie Strandboge Tue, 02 Nov 2010 12:17:21 -0500 + +apparmor (2.5.1-0ubuntu3) natty; urgency=low + + * debian/control: use the correct version for Conflicts/Replaces + + -- Jamie Strandboge Tue, 19 Oct 2010 19:53:26 -0500 + +apparmor (2.5.1-0ubuntu2) natty; urgency=low + + * debian/{rules,control}: move apache2 abstractions into the base package + so we can put apache2 profiles into the -profiles package without + aa-logprof bailing out. Patch by Marc Deslauriers. + (LP: #539441) + + -- Jamie Strandboge Tue, 19 Oct 2010 15:44:43 -0500 + +apparmor (2.5.1-0ubuntu1) natty; urgency=low + + * New upstream release (LP: #660077) + - The following patches were refreshed: + + 0001-fix-release.patch + + 0003-local-includes.patch + + 0008-lp648900.patch: renamed as 0005-lp648900.patch + - The following patches were dropped (included upstream): + + 0005-lp601583.patch + + 0006-network-interface-enumeration.patch + + 0007-gnome-updates.patch + * debian/patches/0006-testsuite-fixes.patch: testsuite fixes from head + of 2.5 branch. These are needed for QRT and SRU testing (LP: #652211) + * debian/patches/0007-honor-cflags.patch: have the parser makefile honor + CFLAGS environment variable. Brings back missing symbols for the retracer + * debian/patches/0008-lp652674.patch: fix warnings for messages without + denied or requested masks (LP: #652674) + * debian/apparmor.init: fix path to aa-status (LP: #654841) + * debian/apport/source_apparmor.py: apport hook should use + root_command_hook() for running apparmor_status (LP: #655529) + * debian/apport/source_apparmor.py: use ProcKernelCmdline and don't clobber + cmdline details (LP: #657091) + + -- Jamie Strandboge Fri, 15 Oct 2010 12:23:00 -0500 + +apparmor (2.5.1~rc1-0ubuntu2) maverick; urgency=low + + * abstractions/ubuntu-email: adjustment for ever-changing thunderbird path + (LP: #648900) + + -- Jamie Strandboge Mon, 27 Sep 2010 09:00:06 -0500 + +apparmor (2.5.1~rc1-0ubuntu1) maverick; urgency=low + + [ Jamie Strandboge ] + * New upstream RC release (revision 1413). In addition to getting the tools + to work with the maverick kernel, this update fixes: + - LP: #619521 + - LP: #633369 + - LP: #626451 + - LP: #581525 + - LP: #623467 (link and unlink still need to be addressed) + * Dropped the following patches, included upstream: + - 0002-lp615177.patch + - 0004-ubuntu-pux.patch + - 0006-kde4-config-pux.patch + - 0007-lp605835.patch + - 0012-lp625041.patch + - 0013-lp623586.patch + * Update the following patches: + - rename 0010-fix-release.patch as 0001-fix-release.patch since this will + likely always need to be here + - rename 0005-add-chromium-browser.patch as + 0002-add-chromium-browser.patch + - rename 0001-local-includes.patch as 0003-local-includes.patch and update + to use r1493 (from trunk) of local/README file. This can be dropped in + 2.6. + - collect the ubuntu abstractions updates pulled from trunk into + 0004-ubuntu-abstractions-updates.patch. This can be dropped in 2.6. + - rename 0008-lp601583.patch as 0005-lp601583.patch. This can be dropped + in 2.5.1 final. + * fix up some lintian warnings: + - debian/control: + + don't use 'Section' in apparmor-notify, since it is the same as the + source + + updates Standards-Version to 3.9.1 + + add ${misc:Depends} to libapparmor-dev and apparmor-notify + - add debian/source/format + - debian/libapache2-mod-apparmor.postrm: use #DEBHELPER# + - debian/libapache2-mod-apparmor.preinst: use #DEBHELPER# + - add debian/watch + * debian/notify/notify.conf: set show_notifications="yes" by default + * debian/patches/0006-network-interface-enumeration.patch: allow network + interface enumeration. This can be dropped in 2.5.1 final. + * debian/patches/0007-gnome-updates.patch: update for font/icon/mime + locations in current gnome. This can be dropped in 2.5.1 final. + + [ Kees Cook ] + * debian/apparmor.init: rename "stop" to "teardown", drop caches on + "stop" and warn about the dangers of "teardown". + + -- Jamie Strandboge Fri, 10 Sep 2010 11:07:19 -0500 + +apparmor (2.5.1~pre1393-0ubuntu6) maverick; urgency=low + + * debian/profiles/chromium-browser: updated to have the proper path to + local/ + * debian/patches/0011-lp514356+573344+593413.patch: browser abstraction + updates for /net, kmozillahelper and gnome-appearance-properties + (LP: #593413, LP: #514356, LP: #573344) + * debian/patches/0012-lp625041.patch: add sensible-browser (LP: #625041) + * debian/patches/0013-lp623586.patch: allow access to ghostscript fonts when + not using defoma (LP: #623586) + + -- Jamie Strandboge Fri, 03 Sep 2010 07:39:31 -0500 + +apparmor (2.5.1~pre1393-0ubuntu5) maverick; urgency=low + + * debian/patches/0007-lp605835.patch: allow ca-certificates in ssl_certs + abstraction (LP: #605835) + * debian/patches/0008-lp601583.patch: adjust X abstraction for newer gdm + (LP: #601583) + * debian/patches/0009-lp565753.patch: add ubuntu-feed-readers abstraction + and have ubuntu-browsers.d/multimedia use it (LP: #565753) + * debian/apparmor.config: don't try to read in the existing value from + /etc/apparmor.d/tunables/home.d/ubuntu, but instead always use what is + in debconf. (LP: #561694) + * add aa-update-browser for giving a programmatic way to update browser + profiles to use browser abstractions + - add debian/aa-update-browser + - add debian/aa-update-browser.8 + - debian/rules: install aa-update-browser* + * debian/patches/0003-ubuntu-browsers-d.patch: updated to generalize java + child profile names + * debian/patches/0010-fix-release.patch: update common/Make.rules to use + lsb_release + + -- Jamie Strandboge Wed, 11 Aug 2010 09:24:23 -0500 + +apparmor (2.5.1~pre1393-0ubuntu4) maverick; urgency=low + + * debian/patches/0001-local-includes.patch: updated to adjust local/README + to have upstream clarifications + * debian/patches/0003-ubuntu-browsers-d.patch: add ubuntu-browsers.d/* + abstractions + * debian/patches/0004-ubuntu-pux.patch: use 'PUx' instead of 'Ux' in + abstractions/ubuntu-* + * add chromium-browser profile. All this can be removed once + chromium-browser ships its own profile: + - debian/patches/0005-add-chromium-browser.patch: add preliminary + profiles/apparmor.d/usr.bin.chromium-browser + - debian/profiles/chromium-browser: added for use with ubuntu-browsers.d + - debian/rules: ship debian/profiles/chromium-browser in apparmor-profiles + * don't make /etc/apparmor.d/local/* from apparmor-profiles conffiles + - debian/control: Build-Depends on debhelper 7.4.20ubuntu5 + - debian/rules: use dh_apparmor instead of shipping the files as conffiles + - debian/apparmor-profiles.postinst: move DEBHELPER before initscript + reload + - debian/apparmor-profiles.postrm: added to remove chromium-browser config + file + * debian/patches/0006-kde4-config-pux.patch: remove kde4-config from kde + abstraction and add it to kde ubuntu-browsers abstraction + + -- Jamie Strandboge Tue, 10 Aug 2010 14:31:32 -0500 + +apparmor (2.5.1~pre1393-0ubuntu3) maverick; urgency=low + + * debian/patches/0002-lp615177.patch: 'owner' match in commit 1406 too + strict for /tmp/ and /var/tmp/ (LP: #615177) + + -- Jamie Strandboge Mon, 09 Aug 2010 10:17:05 -0500 + +apparmor (2.5.1~pre1393-0ubuntu2) maverick; urgency=low + + * debian/rules: move local/usr.lib.apache2.mpm-prefork.apache2 to + libapache2-mod-apparmor + + -- Jamie Strandboge Fri, 06 Aug 2010 13:38:59 -0500 + +apparmor (2.5.1~pre1393-0ubuntu1) maverick; urgency=low + + * Update to upstream bzr revision 1393 from lp:apparmor/2.5. + * add dbus-session abstraction (LP: #566207) + * require owner in user-tmp abstraction (LP: #578922) + * don't use uninitialized $opt_s (LP: #582075) + * allow thunderbird 3 in abstractions/ubuntu-email (LP: #590462) + * allow gmplayer in abstractions/ubuntu-media-players (LP: #591421) + * debian/control: updated branches. + * debian/patches/0001-local-includes.patch: backported patch from trunk to + allow local administrators to customize their profiles without modifying + a shipped profile + * debian/rules: + - don't pass RELEASE to libapparmor's 'make install' as it breaks the + build and isn't used by the Makfile anyway + - install apparmor.d/local/README in apparmor, not apparmor-profiles + - don't install apparmor.d/local/usr.sbin.ntpd + * Drop the following patches already included upstream: + - 0001-lp538561.patch + - 0002-aalogprof-warnings.patch + - 0003-fix-memleaks.patch + - 0004-lp549557.patch + - 0005-lp538661.patch + - 0006-lp611248.patch + + -- Jamie Strandboge Thu, 05 Aug 2010 16:10:46 -0500 + +apparmor (2.5-0ubuntu4) maverick; urgency=low + + * debian/patches/0006-lp611248.patch: allow access to gdk-pixbuf loaders + LP: #611248 + + -- Jamie Strandboge Tue, 03 Aug 2010 09:32:10 -0500 + +apparmor (2.5-0ubuntu3) lucid; urgency=low + + [ Jamie Strandboge ] + * debian/patches/lp-549557.patch: have apparmor_notify deal with log file + rotation. (LP: #549557) + * debian/notify/notify.conf: set show_notifications="yes" + * debian/patches/0005-lp538661.patch: adjust php5 abstraction for cgi config + file path and extensions (LP: #538661) + + [ Kees Cook ] + * debian/apparmor.functions: do not load in parallel, this is causing + weird side-effects. + + -- Jamie Strandboge Tue, 30 Mar 2010 11:31:49 -0500 + +apparmor (2.5-0ubuntu2) lucid; urgency=low + + [ Jamie Strandboge ] + * debian/patches/0001-lp538561.patch: add 'k' to /var/lib/samba/**.tdb in + the samba abstraction (LP: #538561) + + [ Marc Deslauriers ] + * debian/patches/0002-aalogprof-warnings.patch: get rid of warnings when + aa-logprof is run. + * debian/{rules,control}: move apache2 abstractions into the base package + so we can put apache2 profiles into the -profiles package without + aa-logprof bailing out. (LP: #539441) + * debian/patches/0003-fix-memleaks.patch: include a couple of leak + patches from upstream. + + -- Marc Deslauriers Fri, 26 Mar 2010 11:39:18 -0400 + +apparmor (2.5-0ubuntu1) lucid; urgency=low + + * New upstream release. + * debian/control: updated branches. + * debian/copyright: updated download locations. + * debian/rules: drop unneeded build variables. + * common/Make.rules: set distributor. + + -- Kees Cook Thu, 11 Mar 2010 00:08:08 -0800 + +apparmor (2.5~pre+bzr1367-0ubuntu1) lucid; urgency=low + + * Update to upstream bzr revision 1367 + * debian/notify/90apparmor-notify: sleep for 60 seconds for boot speed and + to make sure that X is all the way up so the notifications look pretty + + -- Jamie Strandboge Mon, 08 Mar 2010 13:53:50 -0600 + +apparmor (2.5~pre+bzr1364-0ubuntu1) lucid; urgency=low + + * Update to upstream bzr revision 1364. + * debian/apparmor.functions: ignore .dpkg-bak files when loading too. + + -- Kees Cook Wed, 17 Feb 2010 13:36:21 -0800 + +apparmor (2.5~pre+bzr1362-0ubuntu2) lucid; urgency=low + + * debian/apparmor.postinst: on upgrades, prepopulate apparmor/homedirs + if it is not preseeded. Will check /etc/passwd for UIDs >= 1000 and + < 30000 for unique dirnames of home directories that are not /home. Fully + resolves (LP: #447292) + + -- Jamie Strandboge Wed, 17 Feb 2010 09:42:55 -0600 + +apparmor (2.5~pre+bzr1362-0ubuntu1) lucid; urgency=low + + [ Kees Cook ] + * Update to upstream bzr revision 1362. + - This release includes DFA minimization, transition table compression, + and improved partitioning performance (LP: #503869). + - drop 0001-tunable-alias.patch, now upstream. + * debian/apparmor.postinst: update home.d template to note the trailing + slash, even if the debconf template mentions it too. + * debian/apparmor.functions: go fully parallel with parsing to use all + CPUs in the case of needing to regenerate caches. + * debian/rules: enable library testsuite during build. + * debian/control: add dejagnu for library testsuite. + * debian/{rules,control}: use chrpath to drop rpath in libapparmor-perl. + + [ Jamie Strandboge ] + * debian/control: add apparmor-notify + * add debian/notify/notify.conf + * add debian/notify/90apparmor-notify + * add debian/apparmor-notify.install: install notify.conf to /etc/apparmor + and 90apparmor-notify to /etc/X11/Xsession.d + * debian/rules: + - remove upstream notify.conf since we will install our own via debhelper + - move apparmor_notify script and man pages to apparmor-notify + + -- Kees Cook Sat, 13 Feb 2010 12:19:30 -0800 + +apparmor (2.3.1+bzr1312-0ubuntu4) lucid; urgency=low + + * 0001-tunable-alias.patch: backport r1330 to make it easier for people + to use AppArmor's alias rules (LP: #160002) + + -- Jamie Strandboge Mon, 11 Jan 2010 14:31:06 -0600 + +apparmor (2.3.1+bzr1312-0ubuntu3) lucid; urgency=low + + * debian/apparmor.{init,functions}: + - add "recache" argument to init script for liveCD cache generation. + - skip start/stop/reload when running on liveCD. + + -- Kees Cook Fri, 08 Jan 2010 08:39:14 -0800 + +apparmor (2.3.1+bzr1312-0ubuntu2) lucid; urgency=low + + * debian/rules: disable profiling support for released version. + + -- Kees Cook Wed, 06 Jan 2010 16:57:58 -0800 + +apparmor (2.3.1+bzr1312-0ubuntu1) lucid; urgency=low + + [ Kees Cook ] + * Update to upstream bzr revision 1312. + * debian/apparmor.postrm: fix comment typo. + * debain/rules: switch to bzr for upstream versioning. + * debian/rules: install apache2-* abstractions into apache2-mod package. + * drop debian/patches/0001-likewise-home-tunables.patch: this is causing + too much time in the parser (see LP 503869). The default install is + suffering, so move this configuration to likewise-open (see LP 274350). + + [ Jamie Strandboge ] + * debian/rules: + - don't ship tunables/home.d/site.local + - correct path for moving apache2 abstraction + * add debconf question for adjusting HOMEDIRS (LP: #447292) + - add debian/apparmor.config + - debian/apparmor.postinst: query debconf and adjust + tunables/home.d/ubuntu + - debian/apparmor.postrm: on purge, remove tunables/home.d/ubuntu and run + db_purge + - debian/control: Build-Depends on po-debconf and have apparmor Depends on + debconf + - add debian/po/* + - debian/rules: use dh_installdebconf -papparmor + - added debian/templates + + -- Kees Cook Wed, 06 Jan 2010 15:51:33 -0800 + +apparmor (2.3.1+1403-0ubuntu31) lucid; urgency=low + + * Remove initramfs hooks, as early profile loading is handled + on a service-by-service basis with Upstart jobs now. + + -- Kees Cook Fri, 04 Dec 2009 13:22:04 -0800 + +apparmor (2.3.1+1403-0ubuntu30) lucid; urgency=low + + [ Jamie Strandboge ] + * convert to using quilt + - debian/control: Build-Depends on quilt + - add debian/README.source + - debian/rules: include /usr/share/quilt/quilt.make and adjust + targets for patching + * debian/patches/0001-likewise-home-tunables.patch: tunables/home: add + /home/likewise-open/*/ to HOMEDIRS (LP: #274350) + * Merge to upstream bzr rev 1308. + - really add chromium-browser (LP: #488559) + - add official google-chrome (LP: #481661) + + [ Kees Cook ] + * parser/parser_main.c: use nanosec ctime resolution when checking + cache file times. + * parser/tst/caching.sh: add tests for cache use based on timestamps. + + -- Jamie Strandboge Fri, 04 Dec 2009 11:11:01 -0600 + +apparmor (2.3.1+1403-0ubuntu29) lucid; urgency=low + + * parser/Makefile: generate af_names.h based on bits/socket.h since + linux/socket.h no longer has what we need (LP: #474751) + * usr.sbin.dnsmasq: fully address LP: #445818 + - more pidfile refinements + - allow access to /var/run/dnsmasq + - allow access to /etc/dnsmasq.d + - allow dac_override so it can write its pidfile + * abstractions/ubuntu-browsers: add chromium-browser + + -- Jamie Strandboge Wed, 04 Nov 2009 17:07:23 -0600 + +apparmor (2.3.1+1403-0ubuntu28) lucid; urgency=low + + [ Jamie Strandboge ] + * update skype profile in extras. Based on work by Андрей Калинин. + (LP: #226624) + * abstractions/ubuntu-browsers: add opera and icecat (LP: #432778) + * abstractions/ubuntu-browsers: add epiphany (epiphany-browser and + epiphany-webkit were already present, but the recent changes in + epiphany packaging require /usr/bin/epiphany) (LP: #472952) + * usr.sbin.dnsmasq: allow pidfiles for /var/run/dnsmasq*.pid (LP: #445818) + * abstractions/gnome: allow access to ~/.themes (LP: #460125) + * abstractions/kde: allow access to /etc/kde4rc and /usr/bin/kde4-config + (LP: #447006) + + [ Marc Deslauriers ] + * utils/Subdomain.pm: don't skip reading profiles that are also in the + cache directory (LP: #446449) + * utils/Subdomain.pm: correctly parse PUxr modes + * utils/Subdomain.pm: support include directories + + -- Jamie Strandboge Wed, 04 Nov 2009 11:02:27 -0600 + +apparmor (2.3.1+1403-0ubuntu27) karmic; urgency=low + + * utils/SubDomain.pm: handle new format "null" log entries (LP: #446524) + + -- Marc Deslauriers Fri, 16 Oct 2009 14:40:04 -0400 + +apparmor (2.3.1+1403-0ubuntu26) karmic; urgency=low + + * abstractions/ubuntu-browsers: add Dooble + * abstractions/ubuntu-browsers: add chromium (LP: #448812) + * abstractions/gnome: add read for /etc/orbitrc + * abstractions/audio: add read for /etc/pulse/* for when ~/.pulse/* doesn't + exist and these files are used for fallback + + -- Jamie Strandboge Wed, 14 Oct 2009 07:59:03 -0500 + +apparmor (2.3.1+1403-0ubuntu25) karmic; urgency=low + + * Do not use tools in /usr during initial start-up (LP: #439726). + + -- Kees Cook Fri, 02 Oct 2009 16:52:04 -0700 + +apparmor (2.3.1+1403-0ubuntu24) karmic; urgency=low + + * abstractions/X: allow mouse themes (LP: #438051) + + -- Jamie Strandboge Thu, 01 Oct 2009 16:07:25 -0500 + +apparmor (2.3.1+1403-0ubuntu23) karmic; urgency=low + + [ Kees Cook ] + * Really fix quiet mode in initramfs (LP: #435285). + * Handle older kernel versions when loading profiles (LP: #429872): + - parser/parser_{interface,main}.c: detect kernel version and downgrade. + - debian/apparmor.functions, parser/parser_main.c: keep kernel features + recorded in cache directory. + - parser/parser_{interface,main}.c: add --skip-kernel-load for testing. + - parser/tst/caching.*: add caching tests. + [ Jamie Strandboge ] + * abstractions/audio: add a few more files for pulseaudio + + -- Kees Cook Fri, 25 Sep 2009 09:54:01 -0700 + +apparmor (2.3.1+1403-0ubuntu22) karmic; urgency=low + + * Do not run AppArmor on the LiveCD, again (LP: #131976). + * More aggressively stay quiet when booting in quiet mode (LP: #435285). + + -- Kees Cook Wed, 23 Sep 2009 15:40:22 -0700 + +apparmor (2.3.1+1403-0ubuntu21) karmic; urgency=low + + * debian/apparmor.{init-bottom,functions,initramfs}: perform initial + apparmor rule loading in initramfs. + + -- Kees Cook Mon, 21 Sep 2009 14:16:26 -0700 + +apparmor (2.3.1+1403-0ubuntu20) karmic; urgency=low + + * added disabled apache2 profile (FFE LP: #430812): + - add profiles/apparmor.d/usr.lib.apache2.mpm-prefork.apache2: new + apache2 profile + - add profiles/apparmor.d/apache2.d/phpsysinfo: example profile for the + phpsysinfo application + - profiles/Makefile: handle the apache2.d directory + - add debian/libapache2-mod-apparmor.postinst: reload apparmor after + installation since we now ship a profile in this package + - add debian/libapache2-mod-apparmor.preinst: disable apache2 profile + if the user does not already have a profile defined + - add debian/libapache2-mod-apparmor.postrm: remove disabled symlink + on purge + - debian/rules: move apache2 profile to the libapache2-mod-apparmor + package and create apache2.d directory + * utils/SubDomain.pm: handle "open" log entries (LP: #427966) + * added ouid parsing support (LP: #431929): + - libraries/libapparmor/testsuite/test_multi.c + - libraries/libapparmor/src/{scanner.l,grammar.y,aalogparse.h, + libaalogparse.c} + + -- Marc Deslauriers Sat, 19 Sep 2009 09:32:02 -0400 + +apparmor (2.3.1+1403-0ubuntu19) karmic; urgency=low + + [ Jamie Strandboge ] + * abstractions/fonts: allow links in @{HOME}/.fontconfig/** + + [ Kees Cook ] + * debian/apparmor.init: expect that the securityfs is mounted, and only + test for the mounted filesystem against the type column when it is not + found. + + -- Kees Cook Wed, 09 Sep 2009 11:42:07 -0700 + +apparmor (2.3.1+1403-0ubuntu18) karmic; urgency=low + + * added the following abstractions: + - ubuntu-browsers: Ux transitions to graphical browsers + - ubuntu-console-browsers: Ux transitions to text-mode browsers + - ubuntu-console-email: Ux transitions to text-mode email clients + - ubuntu-email: Ux transitions to graphical email clients + - ubuntu-gnome-terminal: ix transition for gnome-terminal + - ubuntu-konsole: ix transition for konsole + - ubuntu-xterm: ix transition for xterm + + -- Jamie Strandboge Thu, 03 Sep 2009 11:57:39 -0500 + +apparmor (2.3.1+1403-0ubuntu17) karmic; urgency=low + + * abstractions/base: workaround for ecryptfs and apparmor by allowing + 'owner' match for files in .Private. (LP: #359338) + + -- Jamie Strandboge Mon, 31 Aug 2009 15:38:54 -0500 + +apparmor (2.3.1+1403-0ubuntu16) karmic; urgency=low + + * profiles/apparmor.d/*dovecot*: add first-pass at complain-only + profiles for basic dovecot operation. + + -- Kees Cook Wed, 26 Aug 2009 15:19:46 -0700 + +apparmor (2.3.1+1403-0ubuntu15) karmic; urgency=low + + * utils/SubDomain.pm: don't abort when an include file only contains + hats (LP: #400367) + + -- Marc Deslauriers Wed, 26 Aug 2009 11:35:58 -0400 + +apparmor (2.3.1+1403-0ubuntu14) karmic; urgency=low + + * Pull upstream changes for 64bit capabilities (svn 1427, 1437, 1438). + * Pull upstream changes for pux exec mode (svn 1439). + * debian/apparmor.init: "find" -name is not brace-aware (LP: #418364). + + -- Kees Cook Mon, 24 Aug 2009 18:01:05 -0700 + +apparmor (2.3.1+1403-0ubuntu13) karmic; urgency=low + + [ Kees Cook ] + * parser/parser_main.c: add --skip-read-cache to force reading of + uncached profiles while still allowing for --write-cache to work. + * parser/apparmor_parser.pod: add all missing option documentation. + + [ Jamie Strandboge ] + * abstractions/kde: update for kde4 + + -- Jamie Strandboge Wed, 19 Aug 2009 12:07:06 -0500 + +apparmor (2.3.1+1403-0ubuntu12) karmic; urgency=low + + * abstractions/base: add more locale paths (LP: #413454) + + -- Jamie Strandboge Fri, 14 Aug 2009 07:31:03 -0500 + +apparmor (2.3.1+1403-0ubuntu11) karmic; urgency=low + + * utils/enforce: remove /etc/apparmor.d/disable/ symlink + LP: #413153 + * debian/rules: don't install usr.sbin.ntpd or tunables/ntpd. Can remove + this when we create a new orig.tar.gz + + -- Jamie Strandboge Wed, 12 Aug 2009 10:04:34 -0500 + +apparmor (2.3.1+1403-0ubuntu10) karmic; urgency=low + + * remove apparmor.d/usr.sbin.ntpd and apparmor.d/tunables/ntpd since ntpd + will begin shipping its own profile + + -- Jamie Strandboge Wed, 12 Aug 2009 10:02:53 -0500 + +apparmor (2.3.1+1403-0ubuntu9) karmic; urgency=low + + * Revert 64-bit capabilities (LP: #408773). + + -- Kees Cook Tue, 04 Aug 2009 11:51:27 +0100 + +apparmor (2.3.1+1403-0ubuntu8) karmic; urgency=low + + * Update to upstream subversion r1431. + - change_profile can use regex (LP: #390810, #401931) + * debian/apparmor.init: always clear cache on reload. + + -- Kees Cook Mon, 03 Aug 2009 07:46:33 -0700 + +apparmor (2.3.1+1403-0ubuntu7) karmic; urgency=low + + * profiles/apparmor.d/abstractions/base: add /proc/sys/crypto (LP: #392337). + + -- Kees Cook Sat, 25 Jul 2009 09:04:46 -0700 + +apparmor (2.3.1+1403-0ubuntu6) karmic; urgency=low + + [ Kees Cook ] + * parser/parser_policy.c: return errors instead of exiting. + * debian/apparmor.init: skip more suffixes. + * parser/parser_lex.l: define file suffixes to ignore. + * parser/parser_main.c: disable cache for parsing reports. + * debian/apparmor.init: also remove unparsed profiles. + + [ Jamie Strandboge ] + * update gnome abstraction for /var/run/gdm/auth*/database + * utils/SubDomain.pm: parse profiles in subdirectories, not just include + files (LP: #401935) + + -- Jamie Strandboge Mon, 20 Jul 2009 11:45:24 -0500 + +apparmor (2.3.1+1403-0ubuntu5) karmic; urgency=low + + * Always use --replace when loading profiles so that if profiles + are loaded outside of the init script (e.g. dhcp3), the init + script does not abort (LP: #401109). + * parser/parser_main.c: more carefully create cache files. + + -- Kees Cook Sun, 19 Jul 2009 07:48:11 -0700 + +apparmor (2.3.1+1403-0ubuntu4) karmic; urgency=low + + * utils/SubDomain.pm: exclude new cache directory. + * parser/parser_main.c: + - allow OPTION_REMOVE to work again (LP: #400781). + - warn about using stdin. + - do not cache disabled profiles. + - report cached loading if not quiet. + * debian/apparmor.init: + - do not depend on aa-status. + - only write cache from init script. + + -- Kees Cook Fri, 17 Jul 2009 10:10:05 -0700 + +apparmor (2.3.1+1403-0ubuntu3) karmic; urgency=low + + * debian/apparmor.init: more cleanly handle disabled AppArmor. + + -- Kees Cook Fri, 17 Jul 2009 00:12:19 -0700 + +apparmor (2.3.1+1403-0ubuntu2) karmic; urgency=low + + * improve profile loading speed (LP: #382944): + - parser/parser_lex.l: move include handling into flex parser. + - parser/parser_main.c: + - move disable/complain logic into loader. + - add binary caching. + - debian/apparmor.init: reduce to bare minimum. + + -- Kees Cook Wed, 15 Jul 2009 17:05:49 -0700 + +apparmor (2.3.1+1403-0ubuntu1) karmic; urgency=low + + [ Kees Cook ] + * New upstream bundle (svn1403). + * debian/apparmor.init: add specific Start/Stop dependencies + (LP: #372441). + * debian/control: correctly use lsb-base not sysv for Depends. + + [ Jamie Strandboge ] + * add abstractions/launchpad-integration + * abstractions/audio: add pulseaudio + * add abstractions/private-files* for explicitly denying access to sensitive + files. + + -- Kees Cook Fri, 10 Jul 2009 08:37:54 -0700 + +apparmor (2.3+1289-0ubuntu15) karmic; urgency=low + + * Depend on upstart 0.6.0 which contains upstart-compat-sysv now + + -- Scott James Remnant Fri, 10 Jul 2009 10:28:45 +0100 + +apparmor (2.3+1289-0ubuntu14) jaunty; urgency=low + + * abstractions/smbpass: Add *.ldb used in Samba 3.2 and above (LP: #357581) + + -- Thierry Carrez Wed, 08 Apr 2009 13:42:21 +0200 + +apparmor (2.3+1289-0ubuntu13) jaunty; urgency=low + + [ Kees Cook ] + * abstractions/gnome: allow /proc/$pid/mounts for gvfs. + * abstractions/python: clean up allowed paths (LP: #350820), thanks to + Jonathan Davies. + + [ Jamie Strandboge ] + * abstractions/user-tmp: allow 'k' for files in tmp dirs (LP: #351275) + + -- Jamie Strandboge Tue, 31 Mar 2009 09:57:57 -0500 + +apparmor (2.3+1289-0ubuntu12) jaunty; urgency=low + + * expand allowed library paths to handle unexpected architectures + (LP: #349819). + + -- Kees Cook Fri, 27 Mar 2009 13:48:11 -0700 + +apparmor (2.3+1289-0ubuntu11) jaunty; urgency=low + + * fix path to winbindd_privileged/pipe in winbind abstraction (LP: #348541) + + -- Jamie Strandboge Fri, 27 Mar 2009 08:29:13 -0500 + +apparmor (2.3+1289-0ubuntu10) jaunty; urgency=low + + * utils/SubDomain.pm: + - teach utils about rearranged syslog audit messages (LP: #340183) + from upstream commit + https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1393 + - fix corruption of profiles, from upstream commit + https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1354 + - don't ask about networking events over and over again, from upstream commit + https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1296 + - use apparmor logdir instead of /tmp to write debugging log + + -- Steve Beattie Thu, 19 Mar 2009 03:05:07 -0700 + +apparmor (2.3+1289-0ubuntu9) jaunty; urgency=low + + [ Kees Cook ] + * abstractions/base: allow /proc/$pid/maps (LP: #343287). + * abstractions/*: clean up lib, lib32, lib64 semantics (LP: #342200). + * abstractions/nameservice: fix up paths for nscd (LP: #342198). + * parser/rc.apparmor.functions, debian/apparmor.init: LSB-ify startup + messages (LP: #295200). + + [ Steve Beattie ] + * libapparmor/src/scanner.l: adjust lexer to fix matching updated audit + messages (LP: #340183) from upstream commit + https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1389 + * debian/source_apparmor.py: add a per-package apport hook (LP: #342554). + + -- Kees Cook Wed, 18 Mar 2009 21:18:01 -0700 + +apparmor (2.3+1289-0ubuntu8) jaunty; urgency=low + + * abstractions/ssl_keys: allow read access to all of /etc/ssl (LP: #317109) + * utils/SubDomain.pm: re-add dropped patch to not process disable/ as + include files, and also don't process force-complain/ (LP: #331534) + + -- Jamie Strandboge Thu, 12 Mar 2009 12:53:08 -0500 + +apparmor (2.3+1289-0ubuntu7) jaunty; urgency=low + + * abstractions/dbus: add machine-id + * abstractions/audio: add libcanberra paths + * abstractions/freedesktop.org: add user-dirs.dirs + + -- Jamie Strandboge Thu, 12 Feb 2009 11:28:15 -0600 + +apparmor (2.3+1289-0ubuntu6) jaunty; urgency=low + + [ Kees Cook ] + * abstractions/X: add DRI paths. + * parser/Makefile: blacklist AF_PHONET. + + [ Jamie Strandboge ] + * update usr.sbin.smbd profile to write to /var/lib/samba/** and + read/write to /var/run/dbus/system_bus_socket (LP: #294802) + * abstractions/freedesktop.org: use /usr/share/mime/**, @{HOME}/.icons/, + and @{HOME}/.recently-used.xbel* + * abstractions/gnome: add gvfs remote-volume-monitors paths and printing + files + + -- Kees Cook Mon, 22 Dec 2008 17:20:10 -0800 + +apparmor (2.3+1289-0ubuntu5) jaunty; urgency=low + + * abstractions/nameservice: allow read access to + /etc/resolvconf/run/resolv.conf (LP: #286080) + * adjust src/grammar.y and src/scanner.l to account for the moved type=NNNN + field in 2.6.27 kernels and capture non-matching logfile input instead of + printing it to stdout (LP: #271252). Patch thanks to Jesse Michael and + Steve Beattie. + - https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1310 + * add syslog test cases to testsuite. Patch thanks to Steve Beattie. + - https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1307 + - https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1308 + - https://forgesvn1.novell.com/viewsvn/apparmor?view=rev&revision=1309 + + -- Jamie Strandboge Tue, 21 Oct 2008 09:09:58 -0500 + +apparmor (2.3+1289-0ubuntu4) intrepid; urgency=low + + * parser/rc.apparmor.functions: fix typo seen when admin changes + the default location of the apparmor.d directory (LP: #280467). + * abstractions/{samba,base}: clean up unneeded "m" permissions. + * abstractions/perl: add missing default perl paths. + + -- Kees Cook Wed, 08 Oct 2008 16:42:10 -0700 + +apparmor (2.3+1289-0ubuntu3) intrepid; urgency=low + + * add locking permission to /var/log/wtmp abstraction, thanks to + Martin Pitt (LP: #253328). + * utils/logprof.conf: repository updated for Intrepid (LP: #258818). + * profiles/apparmor.d/usr.sbin.nscd: added cache directory (LP: #144383). + * parser/rc.apparmor.functions: redirect stderr (LP: #244013). + * parser/Makefile: blacklist "AF_ISDN". + + -- Kees Cook Wed, 30 Jul 2008 09:29:03 -0700 + +apparmor (2.3+1289-0ubuntu2) intrepid; urgency=low + + [ Mathias Gug ] + * debian/control: + - move apparmor-profiles to a suggested package by apparmor. + + [ Kees Cook ] + * debian/control + - move libterm-readline-gnu-perl to "suggests". + - drop apparmor-modules-source since it no longer exists. + + -- Kees Cook Wed, 02 Jul 2008 12:35:12 -0700 + +apparmor (2.3+1289-0ubuntu1) intrepid; urgency=low + + * Updated to upstream subversion v1289. + - new parser requires new AppArmor kernel LSM. + * debian/control: + - add libapparmor-perl, and associated Depends + - bump standards version to 3.7.3.0 (no changes needed) + * debian/rules: + - adjust "clean" rule to be more effective. + + -- Kees Cook Sat, 28 Jun 2008 15:38:12 -0700 + +apparmor (2.1+1075-0ubuntu10) intrepid; urgency=low + + [ Jamie Strandboge ] + * added abstractions/smbpass and #include it in abstractions/authentication + to allow access to /var/lib/samba/*.tdb. LP: #217787 + + [ Mathias Gug ] + * update likewise-open authentication abstraction: allow access to + privileged pipe (LP: #235646). + * Update smbd profile to include access to /var/spool/samba/ (printer + sharing) and utmp update (LP: #237066). + * Update esound location in audio profile (LP: #229127). + Thanks to Adam Mondl. + * Add dnsmasq profile (LP: #148590). Thanks to John Dong. + + -- Mathias Gug Mon, 09 Jun 2008 18:24:09 -0400 + +apparmor (2.1+1075-0ubuntu9) hardy; urgency=low + + * parser/rc.apparmor.functions: do not abort if parser is missing, in + the case of an unpurged "apparmor" init script running under SELinux. + + -- Kees Cook Mon, 07 Apr 2008 13:25:06 -0700 + +apparmor (2.1+1075-0ubuntu8) hardy; urgency=low + + * Sync bugfixes from upstream 8.04 branch, svn 1161. + - documentation updated to reflect AppArmor 2.1 features. + - minor profile updates (nscd, ntpd, opera) + - util/SubDomain.pm: corrected mask merging and type detection. + + -- Kees Cook Wed, 02 Apr 2008 15:48:58 -0700 + +apparmor (2.1+1075-0ubuntu7) hardy; urgency=low + + * profiles/apparmor.d/abstractions/nameservice: (LP: #207912) + - fix ldap path + - add nsswitch "db" backend paths + + -- Kees Cook Thu, 27 Mar 2008 14:19:06 -0700 + +apparmor (2.1+1075-0ubuntu6) hardy; urgency=low + + [ Kees Cook ] + * utils/SubDomain.pm: + - fix up mask parsing to match kernel version (LP: #202920). + - fix up syslog parsing regexp to match broken kernels (LP: #202888). + * profiles/apparmor.d/abstractions/base: add licenses path for reading. + * profiles/apparmor.d/abstractions/freedesktop.org: include /usr/local. + * profiles/apparmor.d/usr.sbin.smbd: include print client abstraction. + * profiles/apparmor.d/abstractions/nameservice: include missing gai.conf + (LP: #202991). + + [ Jamie Strandboge ] + * add Debian Policy compliant way to toggle complain mode (LP: #203137) + - parser/rc.apparmor.functions: add '-C' to PARSER_ARGS if + force-complain/ exists + - utils/enforce: remove symlink in force-complain/ + - debian/rules: create /etc/apparmor.d/force-complain + + -- Kees Cook Mon, 17 Mar 2008 10:28:23 -0700 + +apparmor (2.1+1075-0ubuntu5) hardy; urgency=low + + * profiles/apparmor.d/abstractions/python: update shared python locations. + * debian/control: adjust Depends to allow sysvinit (LP: #199871). + + -- Kees Cook Tue, 11 Mar 2008 15:25:11 -0700 + +apparmor (2.1+1075-0ubuntu4) hardy; urgency=low + + [ Jamie Strandboge ] + * removed usr.sbin.named and usr.sbin.mysqld, as these will be provided + be bind9 and mysql-server-5.0, respectively. + + [ Mathias Gug ] + * profiles/apparmor.d/abstractions/ssl_keys: add ssl_keys abstraction, to + be used by profiles accessing ssl privates keys. + + [ Rick Clark ] + * added abstraction for likewise-open. + + -- Mathias Gug Wed, 13 Feb 2008 19:16:12 -0500 + +apparmor (2.1+1075-0ubuntu3) hardy; urgency=low + + * profiles/apparmor.d/abstractions/fonts: add missing ~/.fonts.conf + * profiles/apparmor.d/sbin.klogd: add newly needed @{PROC}/kallsyms + + -- Kees Cook Wed, 16 Jan 2008 14:16:18 -0800 + +apparmor (2.1+1075-0ubuntu2) hardy; urgency=low + + * utils/apparmor_status: fix module loaded test to handle built-in. + + -- Kees Cook Thu, 03 Jan 2008 17:24:40 -0800 + +apparmor (2.1+1075-0ubuntu1) hardy; urgency=low + + [ Mathias Gug ] + * profiles/apparmor.d/abstractions/nameservice: update nameservice + abstraction to support nscd setup. + + [ Kees Cook ] + * merge with upstream trunk revision 1075. + * debian/{control,apparmor.postrm,apparmor.postinst,apparmor.initramfs}: + dropped module hook since module is loaded in kernel automatically now. + * debian/rules: tweaked get-orig-source to use defined variables. + * debian/copyright: mention "get-orig-source" build rule. + * debian/{rules,control,libpam-apparmor.docs}: add libpam-apparmor now + that PAM is 0.99. + + -- Kees Cook Thu, 03 Jan 2008 13:29:31 -0800 + +apparmor (2.1+993-0ubuntu3) gutsy; urgency=low + + [ Mathias Gug ] + * Add mdns4 resolution to nameservice abstraction. (LP: #148579). + * Update syslog-ng profile. (LP: #148708). + * Add xen tls libraries to base abstraction. (LP: #150282). + * Update cups-client abstraction: add /var/run/cups/cups.sock. (LP: #151269) + + [ Kees Cook ] + * Adjust KDE abstractions for Ubuntu paths (LP: #148309). + + -- Kees Cook Fri, 12 Oct 2007 12:54:36 -0700 + +apparmor (2.1+993-0ubuntu2) gutsy; urgency=low + + [ Mathias Gug ] + * debian/control: Set maintainer to Ubuntu Core Developers. + * utils/SubDomain.pm, utils/logprog.conf: refactor readprofiledir() to not + fail on non-existing profile directory. Fixes LP: #141128. + * debian/rules: don't compress profiles in doc/extras/. + * utils/SubDomain.pm: Fix regex so that aa-logprof can find audit messages + in syslog files. Fixes LP: #140508. + * Update usr.sbin.nscd profile. Fixes LP: #144383. + + [ Kees Cook ] + * abstractions/gnupg: drop bad attempt at general-purpose client rule. + * abstractions/fonts: adjust for new syntax, add more local fonts paths. + * abstractions/nameservice: add mmap permission to some /etc files. + + -- Kees Cook Tue, 25 Sep 2007 10:23:29 -0700 + +apparmor (2.1+993-0ubuntu1) gutsy; urgency=low + + * new merge from upstream: + * fixes to support new audit messages sent by the kernel module. + * bump in minor library version for libapparmor. + * debian/control: Add perl libterm-readkey-perl and librpc-xml-perl + dependencies for apparmor-utils. Fixes LP: #139757, LP: #139091. + * utils/SubDomain.pm: Re-enable RPC client for remote repositories. + * profiles/apparmor.d/sbin.syslogd: update profile. + Fixes LP: #140672, LP: #140274. + + -- Mathias Gug Tue, 18 Sep 2007 11:12:50 -0400 + +apparmor (2.1+961-0ubuntu5) gutsy; urgency=low + + * utils/SubDomain.pm, parser/rc.apparmor.functions: skip .dpkg-dist profiles. + * debian/rules, debian/apparmor.postinst: fix postinst script failure on + upgrades. Fix LP: #139683. + + -- Mathias Gug Fri, 14 Sep 2007 17:20:01 -0400 + +apparmor (2.1+961-0ubuntu4) gutsy; urgency=low + + [ Mathias Gug ] + * debian/rules: Fix libapparmor-dev build. + * apparmor-profiles: remove gnupg.moved. + + [ Kees Cook ] + * abstractions: adjust gnome for new syntax. + * abstractions: adjust aspell to add locking. + + -- Kees Cook Fri, 14 Sep 2007 09:34:15 -0700 + +apparmor (2.1+961-0ubuntu3) gutsy; urgency=low + + [ Mathias Gug ] + * Update avahi-daemon profile: add m permission to /etc/password and + /etc/group. + + [ Kees Cook ] + * Rename libapparmor1-dev back to libapparmor-dev. + + -- Kees Cook Thu, 13 Sep 2007 15:44:30 -0700 + +apparmor (2.1+961-0ubuntu2) gutsy; urgency=low + + [ Mathias Gug ] + * Disable html documentation: Fixes LP: #139091. + * parser/Makefile, debian/rules: disable html documentation building. + * debian/control: remove latex2html dependency. + * profiles/apparmor.d/usr.sbin.avahi-daemon: add sys_chroot capability. + Fixes LP: #139092. + + [ Kees Cook ] + * profiles/apparmor.d/abstractions/user-tmp: adjust directory permissions + for newly unmasked /tmp handling (LP: #138978). + * utils/SubDomain.pm: disable remote repositories until RPC::XML MIR + clears (LP: 139091). + * utils/*.pod: adjust for Ubuntu paths and "aa-" prefixes (LP: #116647). + * Fix upgrades to not unload profiles, which would cause programs to + become unconfined: + - debian/rules: don't stop apparmor on upgrades. + - debian/apparmor.postinst: reload profiles after a configure. + + -- Kees Cook Wed, 12 Sep 2007 13:14:02 -0700 + +apparmor (2.1+961-0ubuntu1) gutsy; urgency=low + + * New upstream version. + * Support resolvconf. Fix LP: #132468. + * Move package maintainance to bzr: + * Apply all patches directly into the tree with dpatch apply-all. + * debian/patches/: remove all patches as they are applied inline now. + * debian/control, debian/control.modules.in: remove dpatch from + Build Depends. + * debian/rules: + * remove dpatch include. + * remove patch and unpatch dependencies + * debian/control: + * Rename libapparmor-dev to libapparmor1-dev. + Add Provides: and Conflict: tags. + * Remove universe component in Section tag. + * Remove apparmor-utils depends on bsdutils. + * Update apparmor-modules Recommends to apparmor-modules-2.1. + * utils/: + * Add audit man page. + * Fix mod_appamor library: remove rpath info. + * debian/rules: remove rpath info. + * debian/control: add chrpath as a build dependency. + * Remove apparmor-modules-source package: + * debian/conrol: remove apparmor-modules-source package. + * debian/apparmor.postinst, debian/apparmor.preinst, + debian/apparmor.prerm: remove error_handler function. + * debian/rules: remove error_handler option from dh_installinit. + * debian/apparmor-modules-_KVERS_.postinst.modules.in, + debian/control.modules.in: remove control and postinst files. + + -- Mathias Gug Tue, 11 Sep 2007 10:44:56 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu25) gutsy; urgency=low + + * debian/rules: move tunables/ and abstractions/ in apparmor package. + Fixes LP: #130114. + + -- Mathias Gug Mon, 06 Aug 2007 14:40:37 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu24) gutsy; urgency=low + + * Cannot Depend on apparmor-modules-* in apparmor due to germinate + issues. Moved to Recommends. + + -- Kees Cook Mon, 23 Jul 2007 11:08:38 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu23) gutsy; urgency=low + + * debian/control: add explicit Depends on l-u-m apparmor kernel modules. + + -- Kees Cook Wed, 18 Jul 2007 21:07:03 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu22) gutsy; urgency=low + + * 13-subdomain.pm-skip-files.dpatch: update isSkippable function in + SubDomain.pm to skip the same files as rc.apparmor.functions (used by the + init script) : .dpkg-old, .dpkg-new and symlinks in disable/ + sub-directory. + + -- Mathias Gug Thu, 12 Jul 2007 06:56:45 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu21) gutsy; urgency=low + + * 07-apparmor-init-script.dpatch, debian/rules: skip profiles that have a + link in /etc/apparmor.d/disable. Update rules file : create + /etc/apparmor.d/disable. + + -- Mathias Gug Mon, 09 Jul 2007 11:07:29 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu20) gutsy; urgency=low + + * debian/control + - fix typo in XS-Vcs. + - adjust apparmor-modules-source to no longer be required and document + the fact that the modules come from the linux-ubuntu-modules package + now. + - add initramfs-tools for loading apparmor modules early. + * debian/apparmor.{initramfs,postinst,prerm}, debian/rules: install + initramfs hook and update-initramfs for adding armor modules for boot. + + -- Kees Cook Fri, 06 Jul 2007 03:41:06 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu19) gutsy; urgency=low + + * Update 11-getprocattr-api.dpatch: pass back the correct string pointer + so as to not corrupt kernel memory (LP: #123081). + * debian/control: add XS-Vcs for bzr branch. + + -- Kees Cook Tue, 03 Jul 2007 09:07:52 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu18) gutsy; urgency=low + + * 02-profile-abstractions-ubuntu.dpatch: add m permission for all libraries + under /usr/lib/**, so that ssl libraries optimized for i686 can be + accessed. + * 09-profile-usr-sbin-mysqld.dpatch: add m permission to /etc/passwd, + /etc/group. + * 12-profile-samba.dpatch: add profile for smbd and nmbd daemons from + samba. + * 99-complain-all-profiles.dpatch: turn complain mode for smbd and nmbd + profiles. + + -- Mathias Gug Fri, 29 Jun 2007 15:19:15 +0200 + +apparmor (2.0.1+510.dfsg-0ubuntu17) gutsy; urgency=low + + * Update 11-getprocattr-api.dpatch: match upstream more closely, check + for errors. + + -- Kees Cook Tue, 26 Jun 2007 16:00:08 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu16) gutsy; urgency=low + + * Added 11-getprocattr-api.dpatch: update kernel module for getprocattr + API change (LP: #122444). + + -- Kees Cook Tue, 26 Jun 2007 15:21:54 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu15) gutsy; urgency=low + + * debian/apparmor.init: do not unload apparmor module on stop, since it + already defaults to capabilities-compatible fall back and we don't want + to lose the started process knowledge of the module for the next load of + the parser. + * Added 10-namespace-header.dpatch: include namespace_sem extern, since + mnt_namespace.h is missing it currently. + * Updated 07-apparmor-init-script.dpatch: ignore .dpkg-old profiles. + + -- Kees Cook Tue, 26 Jun 2007 10:04:54 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu14) gutsy; urgency=low + + * Correct missing libapparmor1 file contents. + + -- Kees Cook Thu, 21 Jun 2007 08:04:42 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu13) gutsy; urgency=low + + * 02-profile-abstractions-ubuntu.dpatch: add /lib/tls/i686/cmov/lib* to base + abstraction to support i686 optimized libraries from libc6-i686 package. + * 09-profile-usr-sbin-mysqld.dpatch: + * add profile usr.sbin.mysqld + * update abstractions/mysql + * debian/rules: remove extras/usr.sbin.mysqld. + * 99-complain-all-profiles.dpatch: + * put mysqld profile in complain mode. + * put named profile in complain mode. + + -- Mathias Gug Wed, 20 Jun 2007 12:12:28 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu12) gutsy; urgency=low + + * Add missing dh_makeshlibs call to rules, fix up libapparmor naming. + + -- Kees Cook Wed, 20 Jun 2007 09:15:48 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu11) gutsy; urgency=low + + * Packaged libapparmor, libapparmor-dev, and libapache2-mod-apparmor. + + -- Kees Cook Mon, 18 Jun 2007 18:27:46 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu10) gutsy; urgency=low + + * 02-profile-abstractions-ubuntu.dpatch, 06-profile-usr-sbin-named.dpatch: + move /dev/random into abstractions/base. + * 06-profile-usr-sbin-named.dpatch: Add sys_chroot capability. + * debian/rules: don't package aa-eventd and Reports.pm as they use perl + modules not maintained in main. + Reports.pm is only used by Yast for now. aa-eventd maintains an + sqlite database of audit messages which is used by Reports.pm. + If configured (not by default), aa-eventd can also send emails when + AppArmor audit messages are emited. + * debian/control: Add universe component to Section: header. Needed to make + it work with PPA. + + -- Mathias Gug Fri, 15 Jun 2007 12:47:05 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu9) gutsy; urgency=low + + * 06-profile-usr-sbin-named.dpatch : Generate a new profile for + /usr/sbin/named to make it work with bind9. + * debian/apparmor.init, 07-apparmor-init-script.dpatch: merge ubuntu + changes with the latest version from upstream. + * 99-complain-all-profiles.dpatch : put all profiles into complain mode by + default. + Add a small script (put-all-profiles-in-complain-mode.sh) in + debian/ that takes care of automatically setting all profiles into + complain mode. This script should be used by the maintainer to set all + profiles in complain mode before packaging them. + + -- Mathias Gug Wed, 6 Jun 2007 13:41:57 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu8) gutsy; urgency=low + + * Start apparmor as early as possible in the boot process : just after + mountall in rcS.d. Add preinst script to remove symlinks previously + installed in rc*.d/. + (LP: #116624). + * Sync 04-apparmor-status.dpatch with upstream apparmor_status. The previous + patch has been merged in upstream. + * Update klogd profile : add /var/run/klogd/klogd.pid and + /var/run/klogd/kmsg to the profile. + + -- Mathias Gug Thu, 31 May 2007 14:26:03 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu7) gutsy; urgency=low + + * 03-profile-usr-sbin-ntpd.dpatch: udpdate profile for ntpd daemon. Add + /var/lib/ntp/ntp.drift and /var/log/ntpstats/peerstats* to the profile. + + * 04-apparmor-status.dpatch: improve apparmor_status script. Report more + detailed information. + + -- Mathias Gug Tue, 29 May 2007 13:05:55 -0400 + +apparmor (2.0.1+510.dfsg-0ubuntu6) gutsy; urgency=low + + * 02-profile-abstractions-ubuntu.dpatch: Update abstractions for changes + specific to Gnome, Debian, and 32bit on 64bit environments. + * debian/control: adjust Recommends to apparmor-modules-source + (LP: #113553). + * debian/apparmor.init: moved rmmod/modprobe into init script, and dropped + alias to avoid confusion and move control of the LSM closer to loading + the profiles and work around capability already being loaded in the + initrd (LP: #113887). + + -- Kees Cook Thu, 17 May 2007 20:34:41 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu5) gutsy; urgency=low + + * 01-logger-path.dpatch: Fix path to logger (LP: #112147). + + -- Kees Cook Thu, 03 May 2007 11:59:34 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu4) feisty; urgency=low + + * debian/control: move apparmor-modules to Recommends to Avoid + uninstallable situation when AppArmor modules haven't yet been + compiled/installed. + + -- Kees Cook Wed, 11 Apr 2007 11:39:39 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu3) feisty; urgency=low + + * debian/rules, debian/apparmor.{postinst,prerm}: ignore init script + failures so that they don't block package installs/upgrades/uninstalls. + + -- Kees Cook Wed, 11 Apr 2007 08:52:37 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu2) feisty; urgency=low + + * debian/control: add missing Depend on 'dpatch' for modules-source. + + -- Kees Cook Sat, 7 Apr 2007 09:35:16 -0700 + +apparmor (2.0.1+510.dfsg-0ubuntu1) feisty; urgency=low + + * Initial release, thanks to Magnus Runesson and Jesse Michael + (LP: #95334). + + -- Kees Cook Fri, 23 Mar 2007 16:42:01 -0700 --- apparmor-4.1.7.orig/debian/clean +++ apparmor-4.1.7/debian/clean @@ -0,0 +1,34 @@ +libraries/libapparmor/config.guess +libraries/libapparmor/config.sub +libraries/libapparmor/ltmain.sh +libraries/libapparmor/Makefile.in +libraries/libapparmor/aclocal.m4 +libraries/libapparmor/compile +libraries/libapparmor/configure +libraries/libapparmor/depcomp +libraries/libapparmor/install-sh +libraries/libapparmor/missing +libraries/libapparmor/py-compile +libraries/libapparmor/ylwrap +libraries/libapparmor/doc/Makefile.in +libraries/libapparmor/doc/*.2 +libraries/libapparmor/src/Makefile.in +libraries/libapparmor/src/af_protos.h +libraries/libapparmor/src/grammar.c +libraries/libapparmor/src/grammar.h +libraries/libapparmor/src/scanner.c +libraries/libapparmor/src/scanner.h +libraries/libapparmor/swig/Makefile.in +libraries/libapparmor/swig/perl/.build-stamp +libraries/libapparmor/swig/perl/LibAppArmor.pm +libraries/libapparmor/swig/perl/Makefile.in +libraries/libapparmor/swig/perl/Makefile.perl +libraries/libapparmor/swig/perl/Makefile.perl.old +libraries/libapparmor/swig/perl/Makefile.perle +libraries/libapparmor/swig/perl/libapparmor_wrap.c +libraries/libapparmor/swig/python/Makefile.in +libraries/libapparmor/swig/ruby/Makefile.in +libraries/libapparmor/testsuite/Makefile.in +libraries/libapparmor/testsuite/config/Makefile.in +libraries/libapparmor/testsuite/lib/Makefile.in +libraries/libapparmor/testsuite/libaalogparse.test/Makefile.in --- apparmor-4.1.7.orig/debian/control +++ apparmor-4.1.7/debian/control @@ -0,0 +1,190 @@ +Source: apparmor +Maintainer: Debian AppArmor Team +Uploaders: intrigeri +Section: admin +Build-Depends: apache2-dev, + autoconf, + autoconf-archive, + automake, + bison, + bzip2, + chrpath, + debhelper-compat (= 13), + dejagnu , + dh-apache2, + dh-python, + dh-sequence-python3, + flex, + liblocale-gettext-perl , + libpython3-all-dev, + libpam-dev, + libtool, + net-tools , + perl , + pkgconf, + po-debconf, + python3:any, + python3-all:any, + python3-all-dev:any, + python3-gi , + python3-notify2 , + python3-psutil , + python3-setuptools, + python3-tk , + swig +Standards-Version: 4.7.3 +Vcs-Browser: https://salsa.debian.org/apparmor-team/apparmor/tree/debian/unstable +Vcs-Git: https://salsa.debian.org/apparmor-team/apparmor.git -b debian/unstable +Homepage: https://apparmor.net/ + +Package: apparmor +Architecture: linux-any +Depends: debconf, + ${misc:Depends}, + ${shlibs:Depends} +Suggests: apparmor-profiles-extra, + apparmor-utils +Pre-Depends: ${misc:Pre-Depends} +Breaks: apparmor-profiles-extra (<< 1.21), + fcitx-data (<< 1:4.2.9.1-1ubuntu2), + snapd (<< 2.44.3+20.04~), +Replaces: fcitx-data (<< 1:4.2.9.1-1ubuntu2) +Description: user-space parser utility for AppArmor + apparmor provides the system initialization scripts needed to use the + AppArmor Mandatory Access Control system, including the AppArmor Parser + which is required to convert AppArmor text profiles into machine-readable + policies that are loaded into the kernel for use with the AppArmor Linux + Security Module. + +Package: apparmor-utils +Architecture: all +Depends: apparmor, + python3-apparmor (= ${binary:Version}), + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Breaks: apparmor-easyprof (<< 3.0.3-4) +Replaces: apparmor-easyprof (<< 3.0.3-4) +Provides: apparmor-easyprof +Suggests: vim-addon-manager +Description: utilities for controlling AppArmor + apparmor-utils provides utilities that operate on AppArmor + profiles. Profiles can be created, updated, enforced, set to complain + mode, and disabled with tools such as aa-genprof, aa-enforce, + aa-complain and aa-disable. + . + Additionally, the aa-easyprof utility helps generating AppArmor policy. + It supports the use of templates and policy groups to quickly profile + an application. + +Package: apparmor-profiles +Architecture: all +Depends: apparmor, + ${misc:Depends} +Description: experimental profiles for AppArmor security policies + apparmor-profiles provides various experimental AppArmor profiles. + Do not expect these profiles to work out-of-the-box. + . + These profiles are not mature enough to be shipped in enforce mode by + default on Debian. They are shipped in complain mode so that users + can test them, choose which are desired, and help improve them + upstream if needed. + . + Some even more experimental profiles are included in + /usr/share/doc/apparmor-profiles/extras/. + +Package: libapparmor-dev +Architecture: linux-any +Multi-Arch: same +Section: libdevel +Depends: libapparmor1 (= ${binary:Version}), + ${misc:Depends} +Description: AppArmor development libraries and header files + libapparmor-dev provides the development libraries and header + files needed to link against libapparmor, as well as + the manpages for library functions. + +Package: libapparmor1 +Architecture: linux-any +Multi-Arch: same +Section: libs +Depends: ${misc:Depends}, + ${shlibs:Depends} +Breaks: libapparmor-perl (<< 3.0.3-3) +Replaces: libapparmor-perl (<< 3.0.3-3) +Description: changehat AppArmor library + libapparmor1 provides a shared library one can compile programs + against in order to use various AppArmor functionality, + such as transitioning to a different AppArmor profile or hat. + +Package: libapache2-mod-apparmor +Architecture: linux-any +Section: httpd +Depends: ${misc:Depends}, + ${shlibs:Depends} +Pre-Depends: ${misc:Pre-Depends} +Description: changehat AppArmor library as an Apache module + libapache2-mod-apparmor provides the Apache module needed to declare + various differing confinement policies when running virtual hosts in the + webserver by using the changehat abilities exposed through libapparmor. + +Package: libpam-apparmor +Architecture: linux-any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Description: changehat AppArmor library as a PAM module + libpam-apparmor provides the PAM module needed to declare various + differing confinement policies when starting PAM sessions by using the + changehat abilities exposed through libapparmor. + +Package: apparmor-notify +Architecture: all +Depends: python3-apparmor, + python3-libapparmor, + python3-notify2, + python3-psutil, + python3-tk, + python3-ttkthemes, + python3-gi, + ${misc:Depends}, + ${python3:Depends} +Description: AppArmor notification system + apparmor-notify provides a utility to display AppArmor denial + messages via desktop notifications. The utility can also be used to + generate summary reports. + +Package: python3-libapparmor +Architecture: linux-any +Section: python +Depends: ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Description: AppArmor library Python3 bindings + python3-libapparmor provides the Python3 module that contains the language + bindings for the AppArmor library, libapparmor, which were autogenerated + via SWIG. +Python-Version: ${python3:Versions} + +Package: python3-apparmor +Architecture: all +Section: python +Depends: python3-libapparmor (>= ${source:Upstream-Version}), + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Description: AppArmor Python3 utility library + python3-apparmor provides the Python3 modules that implement the + higher-level AppArmor applications. +Python-Version: ${python3:Versions} + +Package: dh-apparmor +Architecture: all +Multi-Arch: foreign +Section: devel +Depends: ${misc:Depends}, + ${perl:Depends} +Suggests: apparmor-utils +Description: AppArmor debhelper routines + dh-apparmor provides the debhelper tools used to install and migrate + AppArmor profiles. This is normally used from package maintainer scripts + during install and removal. --- apparmor-4.1.7.orig/debian/copyright +++ apparmor-4.1.7/debian/copyright @@ -0,0 +1,165 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: AppArmor +Upstream-Contact: apparmor@lists.ubuntu.com +Source: https://launchpad.net/apparmor + +Files: * +Copyright: 1998-2010 Novell/SuSE/Immunix + 2008-2014 Canonical Ltd. +License: GPL-2+ + +Files: changehat/pam_apparmor/* +Copyright: 2006 SUSE Linux Products GmbH, Nuernberg, Germany + 2002, 2003, 2004 SuSE GmbH Nuernberg, Germany + 2002-2006 Novell/SuSE + 2010 Canonical Ltd. +License: BSD-3-clause or GPL-2+ + +Files: changehat/mod_apparmor/* +Copyright: 2004-2006 Novell + 2014 Canonical Ltd. +License: LGPL-2.1+ + +Files: libraries/libapparmor/* parser/libapparmor_re/* +Copyright: 1999-2008 Novell + 2009-2013 Canonical Ltd. +License: LGPL-2.1+ + +Files: profiles/apparmor.d/abstractions/mysql +Copyright: 2002-2006 Novell/SUSE + 2013 Christian Boltz +License: GPL-2 + +Files: profiles/apparmor.d/usr.sbin.dnsmasq +Copyright: 2009 John Dong + 2010 Canonical Ltd. +License: GPL-2 + +Files: profiles/apparmor.d/sbin.syslog-ng +Copyright: 2006-2009 Novell/SUSE + 2006 Christian Boltz + 2010 Canonical Ltd. +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.* +Copyright: 2013 Christian Boltz +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.auth +Copyright: 2013 Christian Boltz + 2014 Christian Wittmer +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.deliver +Copyright: 2009 Dulmandakh Sukhbaatar + 2009-2014 Canonical Ltd. + 2011-2013 Christian Boltz +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.dovecot-auth +Copyright: 2009-2013 Canonical Ltd. + 2013 Christian Boltz +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.imap profiles/apparmor.d/usr.lib.dovecot.pop3 +Copyright: 2009-2010 Canonical Ltd. + 2011-2013 Christian Boltz +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.imap-login profiles/apparmor.d/usr.lib.dovecot.pop3-login +Copyright: 2009-2011 Canonical Ltd. + 2013 Christian Boltz +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.managesieve +Copyright: 2013 Christian Boltz + 2014 Christian Wittmer +License: GPL-2 + +Files: profiles/apparmor.d/usr.lib.dovecot.managesieve-login +Copyright: 2009 Dulmandakh Sukhbaatar + 2009-2011 Canonical Ltd. + 2013 Christian Boltz + 2014 Christian Wittmer +License: GPL-2 + +Files: profiles/apparmor/profiles/extras/usr.bin.mlmmj-make-ml.sh +Copyright: 2002-2005 Novell/SUSE +License: GPL-2 + +Files: profiles/apparmor/profiles/extras/usr.bin.passwd +Copyright: 2006 Volker Kuhlmann +License: GPL-2 + +Files: debian/* +Copyright: 2007-2011 Canonical Ltd. + 2014-2022 intrigeri +License: GPL-2 + +License: BSD-3-clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + . + 1. Redistributions of source code must retain any existing copyright + notice, and this entire permission notice in its entirety, + including the disclaimer of warranties. + . + 2. Redistributions in binary form must reproduce all prior and current + copyright notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + . + 3. The name of any author may not be used to endorse or promote + products derived from this software without their specific prior + written permission. + +License: GPL-2 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + . + 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, see https://www.gnu.org/licenses/. + . + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2'. + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + 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, see https://www.gnu.org/licenses/. + . + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2'. + +License: LGPL-2.1+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + . + This library 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 + Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see https://www.gnu.org/licenses/. + . + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. --- apparmor-4.1.7.orig/debian/debhelper/dh_apparmor +++ apparmor-4.1.7/debian/debhelper/dh_apparmor @@ -0,0 +1,146 @@ +#!/usr/bin/perl -w + +=head1 NAME + +dh_apparmor - reload AppArmor profile and create local include + +=cut + +use strict; +use Debian::Debhelper::Dh_Lib; + +=head1 SYNOPSIS + +B [B<--manifest=>I] B<--profile-name=>I + +=head1 DESCRIPTION + +dh_apparmor is a debhelper program that will create/remove the +/etc/apparmor.d/local/ include file in maintainer scripts. It +also reloads the specified AppArmor profile in postinst using: + +=over 4 + +apparmor_parser -r -W -T /etc/apparmor.d/ + +=back + +By using '-W -T' we ensure that any abstraction updates are also pulled in. + +=head1 OPTIONS + +=over 4 + +=item B<--profile-name=> + +Specify the profile name. Eg: + +dh_apparmor --profile-name=bin.foo +dh_apparmor --profile-name=bin.foo -p foo + +=back + +=over 4 + +=item B<--manifest=> + +Optionally specify a manifest file. When specified, a profile is generated by +calling B with the specified manifest file and putting the +resulting profile in debian/apparmor/. Eg, if there is a valid +manifest in debian/manifest.json, then the following command will create +debian/apparmor/bin.bar for the 'bar' package (you will need to clean this up +via override_dh_clean or similar). + +dh_apparmor --manifest=manifest.json --profile-name=bin.bar -p bar + +Because not all build environments support the apparmor kernel interface, +B is called with the --no-verify option. Use of this option +requires that apparmor-utils is installed. + + +=back + +=head1 NOTES + +When using modern dh packaging techniques, dh_apparmor can be added to the +override_dh_install section of the rules file. Note that for packages that +have multiple binary packages, you will want to pass '-p' to +dh_apparmor, otherwise dh_apparmor will add AppArmor reload commands for all +packages rather than just the one that ships the profile. + +In addition, you will have to install the profile itself in /etc/apparmor.d. +Eg, in the above manifest file example if you are using dh_install you would +add to debian/bar.install: + +=over 4 + +debian/apparmor/bin.bar etc/apparmor.d + +=back + +=cut + +# Placeholder replaced at package build time. +# +# Recent versions of debhelper extract that version and include it in +# the maintscripts snippets generated by dh_apparmor. These versions +# will be extracted by lintian in the tag +# debhelper-autoscript-in-maintainer-scripts, which enables us to +# find packages that were built with a particular version of +# dh_apparmor. +# +#VERSION# + +# See /usr/share/doc/debhelper/PROGRAMMING.md.gz +# +# INTROSPECTABLE: CONFIG-FILES NONE + +init(options => { + "profile-name=s" => \$dh{PROFILE_NAME}, + "manifest-file=s" => \$dh{AA_MANIFEST}, +}); + +my $aa_dir = "debian/apparmor"; + +foreach my $package (@{$dh{DOPACKAGES}}) { + if (! $dh{PROFILE_NAME}) { + error("Must specify --profile-name for $package"); + } + my $pname = $dh{PROFILE_NAME}; + autoscript($package,"postinst","postinst-apparmor","s/#PROFILE#/$pname/"); + autoscript($package,"postrm","postrm-apparmor","s/#PROFILE#/$pname/"); + + if ($dh{AA_MANIFEST}) { + unless (-e "debian/$dh{AA_MANIFEST}") { + error("Could not find debian/$dh{AA_MANIFEST}"); + } + unless (-x "/usr/bin/aa-easyprof") { + error("Could not find aa-easyprof"); + } + if (! -d "$aa_dir") { + mkdir("$aa_dir"); + } + my $profile_fn = "$aa_dir/$dh{PROFILE_NAME}"; + if (-e "$profile_fn") { + warning("Regenerating $profile_fn"); + unlink("$profile_fn"); + } + my $tmpdir = tmpdir($package); + my $tmp = "$tmpdir/$dh{PROFILE_NAME}.aa-easyprof.tmp"; + complex_doit("aa-easyprof --no-verify --manifest=debian/$dh{AA_MANIFEST} > $tmp"); + rename("$tmp", "$profile_fn"); + } +} + + +=head1 SEE ALSO + +L L + +This program is a part of debhelper. + +=head1 AUTHOR + +Jamie Strandboge + +=cut --- apparmor-4.1.7.orig/debian/debhelper/postinst-apparmor +++ apparmor-4.1.7/debian/debhelper/postinst-apparmor @@ -0,0 +1,17 @@ +if [ "$1" = "configure" ]; then + APP_PROFILE="/etc/apparmor.d/#PROFILE#" + if [ -f "$APP_PROFILE" ]; then + # Add the local/ include + LOCAL_APP_PROFILE="/etc/apparmor.d/local/#PROFILE#" + + test -e "$LOCAL_APP_PROFILE" || { + mkdir -p `dirname "$LOCAL_APP_PROFILE"` + install --mode 644 /dev/null "$LOCAL_APP_PROFILE" + } + + # Reload the profile, including any abstraction updates + if aa-enabled --quiet 2>/dev/null; then + apparmor_parser -r -T -W "$APP_PROFILE" || true + fi + fi +fi --- apparmor-4.1.7.orig/debian/debhelper/postrm-apparmor +++ apparmor-4.1.7/debian/debhelper/postrm-apparmor @@ -0,0 +1,9 @@ +if [ "$1" = "purge" ] && ! [ -e "/etc/apparmor.d/#PROFILE#" ] ; then + rm -f "/etc/apparmor.d/disable/#PROFILE#" || true + rm -f "/etc/apparmor.d/force-complain/#PROFILE#" || true + rm -f "/etc/apparmor.d/local/#PROFILE#" || true + rm -f /var/cache/apparmor/*/"#PROFILE#" || true + rmdir /etc/apparmor.d/disable 2>/dev/null || true + rmdir /etc/apparmor.d/local 2>/dev/null || true + rmdir /etc/apparmor.d 2>/dev/null || true +fi --- apparmor-4.1.7.orig/debian/dh-apparmor.install +++ apparmor-4.1.7/debian/dh-apparmor.install @@ -0,0 +1,3 @@ +debian/debhelper/dh_apparmor usr/bin +debian/debhelper/postinst-apparmor usr/share/debhelper/autoscripts +debian/debhelper/postrm-apparmor usr/share/debhelper/autoscripts --- apparmor-4.1.7.orig/debian/dh-apparmor.manpages +++ apparmor-4.1.7/debian/dh-apparmor.manpages @@ -0,0 +1 @@ +debian/debhelper/dh_apparmor.1 --- apparmor-4.1.7.orig/debian/etc/apache2/mods-available/apparmor.load +++ apparmor-4.1.7/debian/etc/apache2/mods-available/apparmor.load @@ -0,0 +1 @@ +LoadModule apparmor_module /usr/lib/apache2/modules/mod_apparmor.so --- apparmor-4.1.7.orig/debian/features +++ apparmor-4.1.7/debian/features @@ -0,0 +1,106 @@ +capability {0xffffff +} +caps {extended {yes +} +mask {chown dac_override dac_read_search fowner fsetid kill setgid setuid setpcap linux_immutable net_bind_service net_broadcast net_admin net_raw ipc_lock ipc_owner sys_module sys_rawio sys_chroot sys_ptrace sys_pacct sys_admin sys_boot sys_nice sys_resource sys_time sys_tty_config mknod lease audit_write audit_control setfcap mac_override mac_admin syslog wake_alarm block_suspend audit_read perfmon bpf checkpoint_restore +} +} +dbus {mask {acquire send receive +} +} +domain {attach_conditions {xattr {yes +} +} +change_hat {yes +} +change_hatv {yes +} +change_onexec {yes +} +change_profile {yes +} +computed_longest_left {yes +} +disconnected.path {yes +} +fix_binfmt_elf_mmap {yes +} +kill.signal {yes +} +post_nnp_subset {yes +} +stack {yes +} +unconfined_allowed_children {yes +} +version {1.2 +} +} +file {mask {create read write exec append mmap_exec link lock +} +} +io_uring {mask {sqpoll override_creds +} +} +mount {mask {mount umount pivot_root +} +move_mount {detached +} +} +namespaces {mask {userns_create +} +pivot_root {no +} +profile {yes +} +} +network_v8 {af_mask {unspec unix inet ax25 ipx appletalk netrom bridge atmpvc x25 inet6 rose netbeui security key netlink packet ash econet atmsvc rds sna irda pppox wanpipe llc ib mpls can tipc bluetooth iucv rxrpc isdn phonet ieee802154 caif alg nfc vsock kcm qipcrtr smc xdp mctp +} +} +network_v9 {af_mask {unspec unix inet ax25 ipx appletalk netrom bridge atmpvc x25 inet6 rose netbeui security key netlink packet ash econet atmsvc rds sna irda pppox wanpipe llc ib mpls can tipc bluetooth iucv rxrpc isdn phonet ieee802154 caif alg nfc vsock kcm qipcrtr smc xdp mctp +} +af_unix {yes +} +} +policy {outofband {0x000001 +} +permstable32 {allow deny subtree cond kill complain prompt audit quiet hide xindex tag label +} +permstable32_version {0x000003 +} +set_load {yes +} +state32 {0x000001 +} +unconfined_restrictions {change_profile {yes +} +} +versions {v5 {yes +} +v6 {yes +} +v7 {yes +} +v8 {yes +} +v9 {yes +} +} +} +ptrace {mask {read trace +} +} +query {label {data {yes +} +multi_transaction {yes +} +perms {allow deny audit quiet +} +} +} +rlimit {mask {cpu fsize data stack core rss nproc nofile memlock as locks sigpending msgqueue nice rtprio rttime +} +} +signal {mask {hup int quit ill trap abrt bus fpe kill usr1 segv usr2 pipe alrm term stkflt chld cont stop stp ttin ttou urg xcpu xfsz vtalrm prof winch io pwr sys emt lost +} +} --- apparmor-4.1.7.orig/debian/gbp.conf +++ apparmor-4.1.7/debian/gbp.conf @@ -0,0 +1,3 @@ +[DEFAULT] +pristine-tar = False +debian-branch = debian/unstable --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.apache2 +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.apache2 @@ -0,0 +1,2 @@ +mod debian/tmp/usr/lib/apache2/modules/mod_apparmor.so +mod debian/etc/apache2/mods-available/apparmor.load --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.dirs +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.dirs @@ -0,0 +1 @@ +/etc/apparmor.d/apache2.d --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.install +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.install @@ -0,0 +1 @@ +etc/apparmor.d/usr.sbin.apache2 --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.lintian-overrides +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.lintian-overrides @@ -0,0 +1,2 @@ +# The executable is called mod_apparmor.so +spare-manual-page [usr/share/man/man8/mod_apparmor.8.gz] --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.maintscript +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.maintscript @@ -0,0 +1 @@ +rm_conffile /etc/apparmor.d/local/usr.sbin.apache2 4.1.0~beta5-1~ --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.manpages +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.manpages @@ -0,0 +1 @@ +debian/tmp/usr/share/man/man8/mod_apparmor.8 --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.postinst +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.postinst @@ -0,0 +1,49 @@ +#!/bin/sh +# postinst script for libapache2-mod-apparmor +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + APP_PROFILE="/etc/apparmor.d/usr.sbin.apache2" + if [ -f "$APP_PROFILE" ] && aa-status --enabled 2>/dev/null; then + apparmor_parser -rTW "$APP_PROFILE" || true + fi + # 2.8.0-0ubuntu21 no longer ships usr.lib.apache2.mpm-prefork.apache2 + if dpkg --compare-versions "$2" lt-nl "2.8.0-0ubuntu21" ; then + rm -f /etc/apparmor.d/disable/usr.lib.apache2.mpm-prefork.apache2 + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.postrm +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.postrm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ "$1" = "purge" ]; then + APP_PROFILE="usr.sbin.apache2" + rm -f /etc/apparmor.d/disable/$APP_PROFILE >/dev/null 2>&1 || true + rmdir /etc/apparmor.d/disable 2>/dev/null || true + rmdir /etc/apparmor.d 2>/dev/null || true +fi + +#DEBHELPER# --- apparmor-4.1.7.orig/debian/libapache2-mod-apparmor.preinst +++ apparmor-4.1.7/debian/libapache2-mod-apparmor.preinst @@ -0,0 +1,24 @@ +#!/bin/sh +# preinst script for libapache2-mod-apparmor +# +# see: dh_installdeb(1) +set -e + +APP_PROFILE="usr.sbin.apache2" +APP_CONFFILE="/etc/apparmor.d/$APP_PROFILE" +APP_DISABLE="/etc/apparmor.d/disable/$APP_PROFILE" +if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then + # Disable AppArmor profile on install or upgrade from earlier than when we + # first shipped the profile if the user does not already have a profile + # defined + if dpkg --compare-versions "$2" lt 2.8.0-0ubuntu21 ; then + if [ ! -e "$APP_CONFFILE" ]; then + mkdir -p `dirname $APP_DISABLE` 2>/dev/null || true + ln -sf $APP_CONFFILE $APP_DISABLE + fi + fi +fi + +#DEBHELPER# + +exit 0 --- apparmor-4.1.7.orig/debian/libapparmor-dev.install +++ apparmor-4.1.7/debian/libapparmor-dev.install @@ -0,0 +1,4 @@ +usr/lib/*/libapparmor.a +usr/lib/*/libapparmor.so +usr/include/* +usr/lib/*/pkgconfig/libapparmor* --- apparmor-4.1.7.orig/debian/libapparmor-dev.manpages +++ apparmor-4.1.7/debian/libapparmor-dev.manpages @@ -0,0 +1,10 @@ +debian/tmp/usr/share/man/man2/aa_change_hat.2 +debian/tmp/usr/share/man/man2/aa_change_profile.2 +debian/tmp/usr/share/man/man2/aa_find_mountpoint.2 +debian/tmp/usr/share/man/man2/aa_getcon.2 +debian/tmp/usr/share/man/man2/aa_query_label.2 +debian/tmp/usr/share/man/man2/aa_stack_profile.2 +debian/tmp/usr/share/man/man3/aa_features.3 +debian/tmp/usr/share/man/man3/aa_kernel_interface.3 +debian/tmp/usr/share/man/man3/aa_policy_cache.3 +debian/tmp/usr/share/man/man3/aa_splitcon.3 --- apparmor-4.1.7.orig/debian/libapparmor1.install +++ apparmor-4.1.7/debian/libapparmor1.install @@ -0,0 +1 @@ +usr/lib/*/libapparmor.so.1* --- apparmor-4.1.7.orig/debian/libapparmor1.symbols +++ apparmor-4.1.7/debian/libapparmor1.symbols @@ -0,0 +1,86 @@ +libapparmor.so.1 libapparmor1 #MINVER# +* Build-Depends-Package: libapparmor-dev + APPARMOR_1.0@APPARMOR_1.0 2.6~devel + APPARMOR_1.1@APPARMOR_1.1 2.6~devel + APPARMOR_2.10@APPARMOR_2.10 2.10 + APPARMOR_2.11@APPARMOR_2.11 2.10.95 + APPARMOR_2.13.1@APPARMOR_2.13.1 2.13.1 + APPARMOR_2.13@APPARMOR_2.13 2.13 + APPARMOR_2.9@APPARMOR_2.9 2.8.94 + APPARMOR_3.0@APPARMOR_3.0 3.0.0 + APPARMOR_3.1@APPARMOR_3.1 3.1.0 + IMMUNIX_1.0@IMMUNIX_1.0 2.6~devel + PRIVATE@PRIVATE 2.10 + __aa_query_label@APPARMOR_1.1 3.0.4 + __change_hat@APPARMOR_1.0 3.0.4 + __old_change_hat@IMMUNIX_1.0 3.0.4 + _aa_asprintf@PRIVATE 2.13.5 + _aa_autoclose@PRIVATE 2.10 + _aa_autofclose@PRIVATE 2.10 + _aa_autofree@PRIVATE 2.10 + _aa_dirat_for_each@PRIVATE 2.10 + _aa_is_blacklisted@PRIVATE 2.10 + aa_change_hat@APPARMOR_1.1 2.6~devel + aa_change_hat_vargs@APPARMOR_1.1 2.6~devel + aa_change_hatv@APPARMOR_1.1 2.6~devel + aa_change_onexec@APPARMOR_1.1 2.6~devel + aa_change_profile@APPARMOR_1.1 2.6~devel + aa_features_check@APPARMOR_3.1 4.0.0~alpha1 + aa_features_id@APPARMOR_2.13 2.13 + aa_features_is_equal@APPARMOR_2.10 2.10 + aa_features_new@APPARMOR_2.10 2.10 + aa_features_new_from_file@APPARMOR_3.0 3.0.1 + aa_features_new_from_kernel@APPARMOR_2.10 2.10 + aa_features_new_from_string@APPARMOR_2.10 2.10 + aa_features_ref@APPARMOR_2.10 2.10 + aa_features_supports@APPARMOR_2.10 2.10 + aa_features_unref@APPARMOR_2.10 2.10 + aa_features_value@APPARMOR_3.0 3.0.0 + aa_features_write_to_fd@APPARMOR_3.0 3.0.0 + aa_features_write_to_file@APPARMOR_2.10 2.10 + aa_find_mountpoint@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_getcon@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_getpeercon@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_getpeercon_raw@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_getprocattr@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_getprocattr_raw@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_gettaskcon@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_is_enabled@APPARMOR_1.1 2.7.0~beta1+bzr1772 + aa_kernel_interface_load_policy@APPARMOR_2.10 2.10 + aa_kernel_interface_load_policy_from_fd@APPARMOR_2.10 2.10 + aa_kernel_interface_load_policy_from_file@APPARMOR_2.10 2.10 + aa_kernel_interface_new@APPARMOR_2.10 2.10 + aa_kernel_interface_ref@APPARMOR_2.10 2.10 + aa_kernel_interface_remove_policy@APPARMOR_2.10 2.10 + aa_kernel_interface_replace_policy@APPARMOR_2.10 2.10 + aa_kernel_interface_replace_policy_from_fd@APPARMOR_2.10 2.10 + aa_kernel_interface_replace_policy_from_file@APPARMOR_2.10 2.10 + aa_kernel_interface_unref@APPARMOR_2.10 2.10 + aa_kernel_interface_write_policy@APPARMOR_2.10 2.10 + aa_policy_cache_add_ro_dir@APPARMOR_2.13.1 2.13.1 + aa_policy_cache_dir_path@APPARMOR_2.13 2.13 + aa_policy_cache_dir_path_preview@APPARMOR_2.13 2.13 + aa_policy_cache_dirfd@APPARMOR_2.13 2.13 + aa_policy_cache_filename@APPARMOR_2.13 2.13 + aa_policy_cache_new@APPARMOR_2.10 2.10 + aa_policy_cache_no_dirs@APPARMOR_2.13 2.13 + aa_policy_cache_open@APPARMOR_2.13 2.13 + aa_policy_cache_ref@APPARMOR_2.10 2.10 + aa_policy_cache_remove@APPARMOR_2.10 2.10 + aa_policy_cache_replace_all@APPARMOR_2.10 2.10 + aa_policy_cache_unref@APPARMOR_2.10 2.10 + aa_query_file_path@APPARMOR_2.10 2.10 + aa_query_file_path_len@APPARMOR_2.10 2.10 + aa_query_label@APPARMOR_1.1 2.8.94 + aa_query_label@APPARMOR_2.9 2.8.94 + aa_query_link_path@APPARMOR_2.10 2.10 + aa_query_link_path_len@APPARMOR_2.10 2.10 + aa_split_overlay_str@APPARMOR_3.1 4.1.0~beta1 + aa_splitcon@APPARMOR_2.10 2.10 + aa_stack_onexec@APPARMOR_2.11 2.10.95 + aa_stack_profile@APPARMOR_2.11 2.10.95 + change_hat@APPARMOR_1.0 2.6~devel + change_hat@IMMUNIX_1.0 2.6~devel + free_record@APPARMOR_1.0 2.6~devel + parse_record@APPARMOR_1.0 2.6~devel + query_label@APPARMOR_2.9 3.0.4 --- apparmor-4.1.7.orig/debian/libpam-apparmor.docs +++ apparmor-4.1.7/debian/libpam-apparmor.docs @@ -0,0 +1 @@ +changehat/pam_apparmor/README --- apparmor-4.1.7.orig/debian/libpam-apparmor.install +++ apparmor-4.1.7/debian/libpam-apparmor.install @@ -0,0 +1 @@ +usr/lib/*/security/pam_apparmor.so --- apparmor-4.1.7.orig/debian/not-installed +++ apparmor-4.1.7/debian/not-installed @@ -0,0 +1,38 @@ +# Managed by dh_apparmor +etc/apparmor.d/local/* + +# Installed by dh_apache2 +usr/lib/apache2/modules/mod_apparmor.so + +# Managed by the clamav-daemon package +usr/share/apparmor/extra-profiles/usr.sbin.clamd + +# Managed by the cups-daemon package +usr/share/apparmor/extra-profiles/usr.sbin.cupsd + +# Managed by the freshclam package +usr/share/apparmor/extra-profiles/usr.bin.freshclam + +# Managed by the {mariadb,mysql}-server-* packages +usr/share/apparmor/extra-profiles/usr.sbin.mysqld + +# Managed by the ntpd package +etc/apparmor.d/tunables/ntpd +etc/apparmor.d/usr.sbin.ntpd + +# Managed by the thunderbird package +etc/apparmor.d/thunderbird + +# Not installed on purpose (see #866636) +usr/lib/*/libapparmor.la + +# Not installed on purpose (see #1039668) +etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser + +# Not installed on purpose (see #1100135) +etc/apparmor.d/podman + +# Not installed on purpose +etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 +etc/apparmor.d/usr.sbin.winbindd +usr/share/apparmor/extra-profiles/chromium_browser --- apparmor-4.1.7.orig/debian/po/POTFILES.in +++ apparmor-4.1.7/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- apparmor-4.1.7.orig/debian/po/ca.po +++ apparmor-4.1.7/debian/po/ca.po @@ -0,0 +1,46 @@ +# Catalan translation of apparmor's debconf messages +# Copyright © 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the apparmor package. +# poc senderi , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2024-11-04 21:31+0100\n" +"Last-Translator: poc senderi \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.4.2\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Ubicacions addicionals de directoris d'usuari:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Introduïu una llista separada per espais de qualsevol ubicació addicional " +"per als directoris d'usuari. Aquestes ubicacions s'afegiran a les " +"especificades a «/etc/apparmor.d/tunables/home» i han d'acabar amb una «/»." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Exemple: si els directoris d'usuari s'emmagatzemen a «/srv/nfs/home» i a «/" +"mnt/homes», caldria introduir «/srv/nfs/home/ /mnt/homes/»." --- apparmor-4.1.7.orig/debian/po/cs.po +++ apparmor-4.1.7/debian/po/cs.po @@ -0,0 +1,44 @@ +# Czech PO debconf template translation of apparmor. +# Copyright (C) 2010 Michal Simunek +# This file is distributed under the same license as the apparmor package. +# Michal Simunek , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-03 17:31+0200\n" +"Last-Translator: Michal Simunek \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Další umístění domovských adresářů:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Zadejte prosím mezerami oddělený seznam všech dalších umístění pro domovské " +"adresáře uživatelů. Tato umístění rozšiřují ta, která jsou uvedena v /etc/" +"apparmor.d/tunables/home a musí být zakončena '/'." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Nacházejí-li se například adresáře uživatelů v /srv/nfs/home a /mnt/homes, " +"zadejte \"/srv/nfs/home/ /mnt/homes/\"." --- apparmor-4.1.7.orig/debian/po/da.po +++ apparmor-4.1.7/debian/po/da.po @@ -0,0 +1,44 @@ +# Danish translation apparmor. +# Copyright (C) 2011 apparmor & nedenstående oversættere. +# This file is distributed under the same license as the apparmor package. +# Joe Hansen , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-02 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Yderligere placeringer af hjemmemapper:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Indtast venligst en mellemrumsadskilt liste af alle yderligere placeringer for " +"brugerhjemmemapper. Disse placeringer er udover de i /etc/apparmor.d/tunables/home " +"angivne og skal afsluttes med et »/«." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Eksempel: Hvis brugerens mapper er gemt i /srv/nfs/home og /mnt/homes, " +"skal du indtaste »/srv/nfs/home/ /mnt/homes/«." --- apparmor-4.1.7.orig/debian/po/de.po +++ apparmor-4.1.7/debian/po/de.po @@ -0,0 +1,45 @@ +# German translation of apparmor. +# This file is distributed under the same license as the apparmor package. +# Copyright (C) Chris Leick , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-02 23:05+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: Debian German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Zusätzliche Speicherorte für Home-Verzeichnisse:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Bitte geben Sie eine durch Leerzeichen getrennte Liste zusätzlicher " +"Speicherorte für die Home-Verzeichnisse der Benutzer ein. Diese Speicherorte " +"ergänzen die, die in /etc/apparmor.d/tunables/home angegeben sind und müssen " +"mit einem »/« enden." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Beispiel: Falls die Verzeichnisse der Anwender in /srv/nfs/home und " +"/mnt/homes gespeichert sind, sollten Sie »/srv/nfs/home/ /mnt/homes/« " +"eingeben." --- apparmor-4.1.7.orig/debian/po/es.po +++ apparmor-4.1.7/debian/po/es.po @@ -0,0 +1,56 @@ +# apparmor po-debconf translation to Spanish +# Copyright (C) 2011 Software in the Public Interest +# This file is distributed under the same license as the apparmor package. +# +# Changes: +# - Initial translation +# Francisco Javier Cuadrado , 2011 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-06 13:45+0100\n" +"Last-Translator: Francisco Javier Cuadrado \n" +"Language-Team: Debian l10n Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Rutas adicionales de los directorios personales:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Please enter a space separated list of any additional locations for user home directories. These locations are in addition to those specified in /etc/apparmor.d/tunables/home and must end with a '/'." +msgstr "Introduzca una lista separada por espacios con las rutas adicionales para los directorios personales. Estas rutas se suman a las indicadas en «/etc/apparmor.d/tunables/home» y deben terminar con una barra «/»." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "Por ejemplo: si los directorios del usuario están ubicados en «/srv/nfs/home» y «/mnt/homes», debería introducir «/srv/nfs/home/ /mnt/homes/»." + --- apparmor-4.1.7.orig/debian/po/fr.po +++ apparmor-4.1.7/debian/po/fr.po @@ -0,0 +1,46 @@ +# Translation of apparmor debconf templates to French +# Copyright (C) 2011 Debian French l10n team +# This file is distributed under the same license as the APPARMOR package. +# Julien Patriarca , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-16 11:05+0100\n" +"Last-Translator: Julien Patriarca \n" +"Language-Team: FRENCH \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Emplacement du répertoire personnel supplémentaire :" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Veuillez indiquer, séparés par des espaces, les emplacements des répertoires " +"personnels (« home ») supplémentaires des utilisateurs. Ces répertoires " +"seront ajoutés à ceux qui sont indiqués dans /etc/apparmor.d/tunables/home ; " +"ils doivent se terminer par un « / »." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Exemple : si les répertoires des utilisateurs sont stockés dans /srv/nfs/" +"home et /mnt/homes, vous devriez entrer « /srv/nfs/home/ /mnt/homes/ »." --- apparmor-4.1.7.orig/debian/po/it.po +++ apparmor-4.1.7/debian/po/it.po @@ -0,0 +1,44 @@ +# Italian translation of apparmor'S PO-DEBCONF FILE. +# Copyright (C) 2011 THE apparmor'S COPYRIGHT HOLDER +# This file is distributed under the same license as the apparmor package. +# Dario Santamaria , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: 2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-04 00:01+0200\n" +"Last-Translator: Dario Santamaria \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Posizioni aggiuntive per directory home:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Inserire un elenco separato da spazi di posizioni aggiuntive per le directory " +"home utente. Questi percorsi vanno ad aggiungersi a quelli specificati in " +"/etc/apparmor.d/tunables/home e devono terminare con una «/»." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Esempio: se le directory home utente si trovano in /srv/nfs/home e " +"/mnt/homes, inserire \"/srv/nfs/home/ /mnt/homes/\"." --- apparmor-4.1.7.orig/debian/po/ja.po +++ apparmor-4.1.7/debian/po/ja.po @@ -0,0 +1,45 @@ +# Copyright (C) 2010 Kees Cook +# This file is distributed under the same license as the apparmor package. +# Hideki Yamane , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-03 10:52+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "追加のホームディレクトリの場所:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"空白で区切ったユーザのホームディレクトリの追加の場所一覧を入力してください。" +"これらの場所は、/etc/apparmor.d/tunables/home で指定したものへの追加で、" +"'/' で終わっている必要があります。" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"例: ユーザのディレクトリが /srv/nfs/home と /mnt/homes に保存されている場合、" +"「/srv/nfs/home/ /mnt/homes/」と入力する必要があります。" + --- apparmor-4.1.7.orig/debian/po/nl.po +++ apparmor-4.1.7/debian/po/nl.po @@ -0,0 +1,45 @@ +# Dutch translation of apparmor debconf templates. +# Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the apparmor package. +# Jeroen Schot , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor_2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-10 14:17+0200\n" +"Last-Translator: Jeroen Schot \n" +"Language-Team: Debian l10n Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Extra locaties van thuismappen:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Voer alstublieft een door spaties gescheiden lijst van extra " +"thuismappen van gebruikers in. Deze locaties zijn een toevoeging op die in /etc/" +"apparmor.d/tunables/home en moeten met een '/' eindigen." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Voorbeeld: Als de thuismappen van gebruikers zich in /srv/nfs/home " +"en /mnt/homes bevinden dient u \"/srv/nfs/home/ /mnt/homes/\" in te voeren." --- apparmor-4.1.7.orig/debian/po/pt.po +++ apparmor-4.1.7/debian/po/pt.po @@ -0,0 +1,45 @@ +# Portuguese apparmor debconf translation +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the apparmor package. +# Pedro Ribeiro , 2011 +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.7.0~beta1+bzr1774-1\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-12-06 00:05+0000\n" +"Last-Translator: Pedro Ribeiro , 2011\n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Localizações adicionais para o directório home:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Indique por favor uma lista de localizações adicionais para os directórios " +"home de utilizador, separadas por espaços. Estas localizações serão " +"acrescentadas às indicadas em /etc/apparmor.d/tunables/home e têm que " +"terminar com '/'." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Exemplo: se os directórios de utilizador estiverem em /srv/nfs/home e " +"/mnt/homes, deve indicar \"/srv/nfs/home/ /mnt/homes/\"." --- apparmor-4.1.7.orig/debian/po/pt_BR.po +++ apparmor-4.1.7/debian/po/pt_BR.po @@ -0,0 +1,46 @@ +# Debconf translations for apparmor. +# Copyright (C) 2015 THE apparmor'S COPYRIGHT HOLDER +# This file is distributed under the same license as the apparmor package. +# Adriano Rafael Gomes , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.9.2-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2015-05-18 21:38-0300\n" +"Last-Translator: Adriano Rafael Gomes \n" +"Language-Team: Brazilian Portuguese \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Locais adicionais de diretórios de usuário:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Por favor, informe uma lista separada por espaços de quaisquer locais " +"adicionais para diretórios de usuário. Esses locais são em adição aos " +"especificados em /etc/apparmor.d/tunables/home e devem terminar com \"/\"." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Exemplo: caso os diretórios dos usuários sejam armazenados em /srv/nfs/home " +"e /mnt/homes, você deve informar \"/srv/nfs/home/ /mnt/homes/\"." --- apparmor-4.1.7.orig/debian/po/ro.po +++ apparmor-4.1.7/debian/po/ro.po @@ -0,0 +1,56 @@ +# Mesajele în limba română pentru pachetul apparmor. +# Romanian translation of apparmor. +# Copyright © 2023 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the apparmor package. +# +# Remus-Gabriel Chelu , 2023. +# +# Cronologia traducerii fișierului „apparmor”: +# Traducerea inițială, făcută de R-GC, pentru versiunea apparmor 3.0.8-2. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Y(anul). +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 3.0.8-2\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2023-01-24 12:29+0100\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && " +"n%100<=19) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Locații suplimentare din directorul „Acasă” (directorul personal):" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user home " +"directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Introduceți o listă separată de spații cu orice locații suplimentare pentru " +"directoarele „Acasă” ale utilizatorilor. Aceste locații sunt în plus față de " +"cele specificate în fișierul „/etc/apparmor.d/tunables/home” și trebuie să se " +"încheie cu un caracter „/”." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, you " +"should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Exemplu: dacă directoarele utilizatorului sunt stocate în „/srv/nfs/home” și „/" +"mnt/homes”, ar trebui să introduceți „/srv/nfs/home/ /mnt/homes/”." --- apparmor-4.1.7.orig/debian/po/ru.po +++ apparmor-4.1.7/debian/po/ru.po @@ -0,0 +1,49 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the apparmor package. +# +# Yuri Kozlov , 2011. +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.6.1-2\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-01 10:19+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Дополнительные места расположения домашних каталогов:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Введите через пробел дополнительные места расположения " +"домашних каталогов пользователей. " +"Эти места добавятся к указанным в /etc/apparmor.d/tunables/home " +"и должны заканчиваться символом «/»." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Пример: если домашние каталоги пользователей находятся в /srv/nfs/home и " +"/mnt/homes, " +"то введите «/srv/nfs/home/ /mnt/homes/»." + --- apparmor-4.1.7.orig/debian/po/sv.po +++ apparmor-4.1.7/debian/po/sv.po @@ -0,0 +1,46 @@ +# Translation of apparmor debconf template to Swedish +# Copyright (C) 2011 Martin Bagge +# This file is distributed under the same license as the apparmor package. +# +# Martin Bagge , 2011 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-02 23:44+0100\n" +"Last-Translator: Martin Bagge / brother \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: Sweden\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Ytterligare sökvägar till hemkataloger:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Ange en ytterligare sökvägar till användares hemkataloger separera med " +"mellanslag. Dessa sökvägar är utöver de som anges i /etc/apparmor.d/tunables/" +"home och måste sluta på \"/\"." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Exempel: Om användares hemkataloger finns i /srv/nfs/home och /mnt/homes så " +"ska du ange \"/srv/nfs/home/ /mnt/homes/\"." --- apparmor-4.1.7.orig/debian/po/templates.pot +++ apparmor-4.1.7/debian/po/templates.pot @@ -0,0 +1,40 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" --- apparmor-4.1.7.orig/debian/po/tr.po +++ apparmor-4.1.7/debian/po/tr.po @@ -0,0 +1,46 @@ +# Turkish translation of apparmor package +# Copyright (C) 2014 Mert Dirik +# This file is distributed under the same license as the apparmor package. +# Mert Dirik , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.8.0-5.1\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2014-08-01 19:31+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" +"Language: tr\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "Ek ev dizini konumları:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"Eklemek istediğiniz kullanıcı ev dizinleri konumlarını boşlukla ayrılmış " +"şekilde girebilirsiniz. Bu konumlar /etc/apparmor.d/tunables/home dosyasında " +"belirtilen konumlara ek olarak kullanılır ve '/' ile bitmelidir." + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"Örnek: kullanıcı dizinleri /srv/nfs/home ve /mnt/homes konumlarında ise " +"buraya \"/srv/nfs/home/ /mnt/homes/\" girmelisiniz." --- apparmor-4.1.7.orig/debian/po/zh_CN.po +++ apparmor-4.1.7/debian/po/zh_CN.po @@ -0,0 +1,43 @@ +# Simplified Chinese translation of apparmor debconf. +# Copyright (C) 2011 Free Software Foundation, Inc. +# This file is distributed under the same license as the apparmor package. +# Aron Xu , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: apparmor 2.6.1-3\n" +"Report-Msgid-Bugs-To: apparmor@lists.ubuntu.com\n" +"POT-Creation-Date: 2010-01-05 17:45-0600\n" +"PO-Revision-Date: 2011-05-02 15:53+0800\n" +"Last-Translator: Aron Xu \n" +"Language-Team: Chinese (simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Additional home directory locations:" +msgstr "附加主目录位置:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Please enter a space separated list of any additional locations for user " +"home directories. These locations are in addition to those specified in /etc/" +"apparmor.d/tunables/home and must end with a '/'." +msgstr "" +"请输入用户主目录位置,多个位置请使用空格分隔。这些位置将作为 " +"/etc/apparmor.d/tunables/home 中已指定的目录的补充,每个目录必须以“/”结尾。" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, " +"you should enter \"/srv/nfs/home/ /mnt/homes/\"." +msgstr "" +"例如:如果用户目录存放于 /srv/nfs/home 和 /mnt/homes,您应当输入" +"“/srv/nfs/home/ /mnt/homes/”。" --- apparmor-4.1.7.orig/debian/put-all-profiles-in-complain-mode.sh +++ apparmor-4.1.7/debian/put-all-profiles-in-complain-mode.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +set -eu + +PROFILE_DIR="./etc/apparmor.d" + +for f in "${PROFILE_DIR}"/*; do + [ -f "$f" ] || continue + + # put lsb_release and nvidia_modprobe in enforce mode + [ "$f" != "${PROFILE_DIR}/nvidia_modprobe" ] || continue + [ "$f" != "${PROFILE_DIR}/lsb_release" ] || continue + + if grep -q --extended-regexp 'flags=\(.*\) {' "$f"; then + # unconfined profiles don't make sense as complain + if grep -q --fixed-strings 'flags=(unconfined)' "$f"; then + continue + fi + + # Deal with existing flags, but need to account for multiple + # profiles in one file and not all of them having the same + # flags. + if grep -q --fixed-strings 'flags=(complain)' "$f"; then + continue + fi + sed -i \ + -e 's/flags=(\(.*\)) {$/flags=(complain,\1) {/' \ + -e 's/ {$/ flags=(complain) {/' \ + -e 's/) flags=(complain) {/) {/' \ + "$f" + else + # No existing flags + sed -i 's/ {$/ flags=(complain) {/' "$f" + fi +done --- apparmor-4.1.7.orig/debian/python3-apparmor.install +++ apparmor-4.1.7/debian/python3-apparmor.install @@ -0,0 +1 @@ +usr/lib/python3*/dist-packages/apparmor* --- apparmor-4.1.7.orig/debian/python3-libapparmor.install +++ apparmor-4.1.7/debian/python3-libapparmor.install @@ -0,0 +1,2 @@ +usr/lib/python3*/dist-packages/LibAppArmor* +usr/lib/python3*/dist-packages/_LibAppArmor*.so --- apparmor-4.1.7.orig/debian/rules +++ apparmor-4.1.7/debian/rules @@ -0,0 +1,194 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/architecture.mk +include /usr/share/dpkg/pkg-info.mk + +export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow optimize=+lto + +export PERL_VENDORARCH := $(shell perl -MConfig -e 'print substr($$Config{vendorarch},1)' ) +export PYTHON=/usr/bin/python3 +export PYTHON_VERSION=3 +export PYTHON_VERSIONS=python3 +ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH)) +export _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__$(DEB_HOST_ARCH_OS)_$(DEB_HOST_MULTIARCH) +endif + +%: + dh $@ --with=python3,apache2 + + +override_dh_auto_configure: + cd libraries/libapparmor && sh ./autogen.sh + dh_auto_configure -D libraries/libapparmor -- + + +override_dh_auto_build: + # Replace #VERSION# placeholder in dh_apparmor + sed -i --regexp-extended \ + -e "s,^#VERSION#,our \$$VERSION = \"$(DEB_VERSION)\";," \ + debian/debhelper/dh_apparmor + # Build library + dh_auto_build -D libraries/libapparmor + # Build pythons + set -e; for py in $(shell py3versions -s) ; do \ + cp -a $(CURDIR)/libraries/libapparmor $(CURDIR)/libraries/libapparmor.$$py ; \ + PYTHON=/usr/bin/$$py dh_auto_configure \ + -D libraries/libapparmor.$$py -- --with-python ; \ + PYTHON=/usr/bin/$$py dh_auto_build \ + -D libraries/libapparmor.$$py; \ + done + + # Don't run '$(MAKE) check' because of too many perl dependencies + # and various apparmor files installed on the system + # Build pythons + cd utils && $(MAKE) + for py in $(shell py3versions -s) ; do \ + cp -a $(CURDIR)/utils $(CURDIR)/utils.$$py && \ + (cd utils.$$py && PYTHON=/usr/bin/$$py $(MAKE)) ; \ + done + dh_auto_build --sourcedirectory=binutils -- V=1 + dh_auto_build --sourcedirectory=parser -- V=1 + cd profiles && $(MAKE) + dh_auto_build --sourcedirectory=changehat/pam_apparmor + + +override_dh_auto_test: +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) + dh_auto_test -Dlibraries/libapparmor -- V=1 + # Doesn't make sense to run utils tests without Python version + #dh_auto_test -Dutils -- V=1 + + # Utils test needs to set PYTHON_VERSIONS and PYTHON + # Hacky workaround since utils make check uses a version of pyalldo + # and we need to specify a different libapparmor CPython module for each + # Also set APPARMOR_NOTIFY to use our Python version + set -e; for py in $(shell py3versions -s) ; do \ + PYTHON=/usr/bin/$$py dh_auto_test \ + -D libraries/libapparmor.$$py -- PYTHON=/usr/bin/$$py; \ + LIBAPPARMOR_BASEDIR=../../libraries/libapparmor.$$py\ + PYTHON_VERSIONS=$$py PYTHON=/usr/bin/$$py\ + dh_auto_test \ + -D utils.$$py/ -- LIBAPPARMOR_BASEDIR=../../libraries/libapparmor.$$py\ + PYTHON_VERSIONS=$$py PYTHON=/usr/bin/$$py\ + PYFLAKES=:;\ + done + dh_auto_test -Dbinutils -- V=1 + dh_auto_test -Dparser -- V=1 +endif + + +override_dh_auto_clean: + # Clean up from an autogen'd build. + cd $(CURDIR)/libraries/libapparmor && \ + [ ! -f Makefile ] || $(MAKE) distclean + # Clean up rest of build. + set -e; for i in binutils utils parser profiles changehat/mod_apparmor \ + changehat/pam_apparmor ; do \ + [ ! -f $$i/Makefile ] || $(MAKE) -C $$i clean; \ + rm -f $$i/common; \ + done + # Remove the python build dirs + rm -rf $(CURDIR)/libraries/libapparmor.python* + rm -rf $(CURDIR)/utils.python* + # Try to clean up from an autogen'd build + cd libraries/libapparmor && [ ! -f Makefile ] || $(MAKE) distclean + # Remove generated debhelper documentation. + rm -f $(CURDIR)/debian/debhelper/dh_apparmor.1 + # Remove autoconf build cruft. + rm -f $(CURDIR)/libraries/libapparmor/test-driver + +override_dh_auto_install: + # Utils + cd utils && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + install + + set -e; for py in $(shell py3versions -s) ; do \ + (cd utils.$$py && PYTHON=/usr/bin/$$py $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + install) ; \ + done + + # Parser + cd binutils && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + install + + cd parser && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + SBINDIR=$(CURDIR)/debian/tmp/usr/sbin \ + APPARMOR_BIN_PREFIX=$(CURDIR)/debian/tmp/usr/lib/apparmor \ + install + + # Changehat via libapparmor + cd libraries/libapparmor && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + install + + # Install python swig modules + set -e; for py in $(shell py3versions -s); do \ + PYTHON=/usr/bin/$$py \ + $(MAKE) -C libraries/libapparmor.$$py \ + DESTDIR=$(CURDIR)/debian/tmp install; \ + done + # Remove __pycache__ directory + rm -r $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/__pycache__ + + # Changehat via mod_apparmor + cd changehat/mod_apparmor && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + install + # Fix rpath in mod_apparmor.so + chrpath -d $(CURDIR)/debian/tmp/usr/lib/apache2/modules/mod_apparmor.so + + # Changehat via libpam-apparmor + cd changehat/pam_apparmor && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + SECDIR=$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/security \ + install + # Fix rpath in pam_apparmor.so + chrpath -d $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/security/pam_apparmor.so + + # Profiles + # We'd like to keep site.local from being a conffile + rm ./profiles/apparmor.d/tunables/xdg-user-dirs.d/site.local + cd profiles && $(MAKE) \ + DESTDIR=$(CURDIR)/debian/tmp \ + install + # set all profiles in apparmor-profiles to complain mode + cd $(CURDIR)/debian/tmp && sh $(CURDIR)/debian/put-all-profiles-in-complain-mode.sh + + # Build debhelper documentation. + pod2man -c Debhelper -r "$(DEB_VERSION)" $(CURDIR)/debian/debhelper/dh_apparmor $(CURDIR)/debian/debhelper/dh_apparmor.1 + +override_dh_installinit: + dh_installinit --no-start --no-stop-on-upgrade --error-handler=true + +override_dh_installsystemd: + dh_installsystemd --no-start --no-stop-on-upgrade + +override_dh_compress: + dh_compress -Xextras + +override_dh_apache2: + dh_apache2 --noenable + +override_dh_install-indep: + set -e; for profile in $(shell grep ^etc/apparmor.d/ $(CURDIR)/debian/apparmor-profiles.install | \ + cut -d/ -f3- | grep -v /); do \ + DH_AUTOSCRIPTDIR=debian/debhelper/ perl debian/debhelper/dh_apparmor --profile-name=$$profile -papparmor-profiles; \ + done + sed -i -e 's,usr/lib/perl5,$(PERL_VENDORARCH),g' \ + $(CURDIR)/debian/tmp/etc/apparmor/logprof.conf \ + $(CURDIR)/debian/tmp/etc/apparmor/severity.db + dh_install + +override_dh_install-arch: + set -e; for profile in lsb_release nvidia_modprobe; do \ + DH_AUTOSCRIPTDIR=debian/debhelper/ perl debian/debhelper/dh_apparmor --profile-name=$$profile -papparmor; \ + done + # See #1039668 + rm $(CURDIR)/debian/tmp/etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser + dh_install + # Fix permissions so that aa-teardown can execute this file + chmod 0755 $(CURDIR)/debian/apparmor/usr/lib/apparmor/apparmor.systemd --- apparmor-4.1.7.orig/debian/source/format +++ apparmor-4.1.7/debian/source/format @@ -0,0 +1 @@ +1.0 --- apparmor-4.1.7.orig/debian/source/lintian-overrides +++ apparmor-4.1.7/debian/source/lintian-overrides @@ -0,0 +1,8 @@ +# We don't build these libraries +apparmor source: package-does-not-install-examples [libraries/libapparmor/swig/perl/examples/] +apparmor source: package-does-not-install-examples [libraries/libapparmor/swig/ruby/examples/] +# The code correctly handles the case when cgitb is not available. +apparmor source: uses-deprecated-python-stdlib cgitb (*) [utils/apparmor/fail.py:*] +# Using dgit-maint-merge(7) without quilt fixup +apparmor source: direct-changes-in-diff-but-no-patch-system * +apparmor source: older-source-format 1.0 --- apparmor-4.1.7.orig/debian/source/options +++ apparmor-4.1.7/debian/source/options @@ -0,0 +1 @@ +-sk --- apparmor-4.1.7.orig/debian/templates +++ apparmor-4.1.7/debian/templates @@ -0,0 +1,9 @@ +Template: apparmor/homedirs +Type: string +_Description: Additional home directory locations: + Please enter a space separated list of any additional locations for user + home directories. These locations are in addition to those specified in + /etc/apparmor.d/tunables/home and must end with a '/'. + . + Example: if user's directories are stored in /srv/nfs/home and /mnt/homes, + you should enter "/srv/nfs/home/ /mnt/homes/". --- apparmor-4.1.7.orig/debian/tests/compile-policy +++ apparmor-4.1.7/debian/tests/compile-policy @@ -0,0 +1,47 @@ +#!/bin/sh + +set -e +set -u + +PROFILES_NAMES="guestfs-tools \ + lsb_release \ + nvidia_modprobe \ + system_tor \ + usr.bin.evince \ + usr.bin.freshclam \ + usr.bin.man \ + usr.bin.msmtp \ + usr.bin.onioncircuits \ + usr.bin.papers \ + usr.bin.passt \ + usr.bin.pasta \ + usr.bin.pidgin \ + usr.bin.tcpdump \ + usr.bin.totem \ + usr.bin.totem-previewers \ + usr.lib.libvirt.virt-aa-helper \ + usr.libexec.geoclue \ + usr.libexec.ibus-engine-hangul \ + usr.libexec.ibus-setup-hangul \ + usr.sbin.apt-cacher-ng \ + usr.sbin.clamd \ + usr.sbin.chronyd \ + usr.sbin.cupsd \ + usr.sbin.cups-browsed \ + usr.sbin.haveged \ + usr.sbin.libvirtd \ + mariadbd \ + usr.sbin.named \ + usr.sbin.unbound" + +for profile_name in $PROFILES_NAMES; do + echo "Testing $profile_name" + /sbin/apparmor_parser \ + --add \ + --skip-cache \ + --skip-kernel-load \ + --verbose \ + --warn=rule-downgraded \ + --warn=rule-not-enforced \ + "/etc/apparmor.d/$profile_name" +done --- apparmor-4.1.7.orig/debian/tests/control +++ apparmor-4.1.7/debian/tests/control @@ -0,0 +1,36 @@ +Test-Command: bash -e debian/tests/compile-policy +Depends: apparmor, + apparmor-profiles-extra, + bind9, + chrony, + clamav-daemon, + clamav-freshclam, + cups-browsed, + cups-daemon, + evince, + geoclue-2.0, + guestfs-tools, + haveged, + ibus-hangul, + libreoffice-common, + libvirt-daemon-system, + man-db, + mariadb-server, + msmtp, + onioncircuits, + papers, + passt, + tcpdump, + tor, + unbound +Restrictions: allow-stderr + +Test-Command: bash -e debian/tests/test-installed +Depends: @, @builddeps@ +Restrictions: allow-stderr, superficial + +# Dummy test so that changes to linux-image-amd64 trigger our other autopkgtests +# on ci.debian.net +Test-Command: /bin/true +Depends: linux-image-amd64 [amd64] | linux-image-generic [ amd64 ] +Restrictions: hint-testsuite-triggers --- apparmor-4.1.7.orig/debian/tests/test-installed +++ apparmor-4.1.7/debian/tests/test-installed @@ -0,0 +1,36 @@ +#!/bin/sh + +set -e +set -u + +TEST_DIRS="binutils parser" + +SOURCE_DIR=$(pwd) + +WORKDIR=$(mktemp -d) +# shellcheck disable=SC2064 +trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM + +cp -a common "$WORKDIR"/ +cp -a libraries "$WORKDIR"/ + +for dir in $TEST_DIRS; do + mkdir -p "$WORKDIR/$(dirname "$dir")" + cp -a "$SOURCE_DIR/$dir" "$WORKDIR/$dir" + ( + cd "$WORKDIR/$dir" + echo "Running tests in $WORKDIR/$dir" + if [ ! -f Makefile ]; then + if [ -x autogen.sh ]; then + echo "No Makefile found in $WORKDIR/$dir, running ./autogen.sh" + ./autogen.sh + fi + fi + if [ ! -f Makefile ]; then + echo "No Makefile found in $WORKDIR/$dir, aborting." + exit 1 + fi + USE_SYSTEM=1 make tests V=1 + ) + rm -rf "${WORKDIR:?}/$dir" +done --- apparmor-4.1.7.orig/debian/vim-apparmor.yaml +++ apparmor-4.1.7/debian/vim-apparmor.yaml @@ -0,0 +1,5 @@ +addon: apparmor +description: "syntax highlighting for AppArmor files" +files: + - syntax/apparmor.vim + --- apparmor-4.1.7.orig/debian/watch +++ apparmor-4.1.7/debian/watch @@ -0,0 +1,5 @@ +Version: 5 + +Mode: git +Source: https://gitlab.com/apparmor/apparmor.git +Matching-Pattern: refs/tags/v@STABLE_VERSION@ --- apparmor-4.1.7.orig/libraries/libapparmor/swig/python/Makefile.am +++ apparmor-4.1.7/libraries/libapparmor/swig/python/Makefile.am @@ -17,7 +17,7 @@ CC="$(CC)" CFLAGS="$(PYTHON_CPPFLAGS) $(CFLAGS) $(EXTRA_WARNINGS)" LDSHARED="$(CC) -shared" LDFLAGS="$(PYTHON_LDFLAGS) $(LDFLAGS)" $(PYTHON) setup.py build install-exec-local: - $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)" + $(PYTHON) setup.py install --root="/$(DESTDIR)" --prefix="$(prefix)" --install-layout=deb clean-local: if test -x "$(PYTHON)"; then $(PYTHON) setup.py clean; fi --- apparmor-4.1.7.orig/parser/apparmor.d.pod +++ apparmor-4.1.7/parser/apparmor.d.pod @@ -33,6 +33,18 @@ apparmor_parser(8). This man page describes the format of the AppArmor configuration files; see apparmor(7) for an overview of AppArmor. +Some features are not supported on Debian yet: + +=over 8 + +=item B + +=item B + +=item B + +=back + =head1 FORMAT AppArmor policy is written in a declarative language, in which the --- apparmor-4.1.7.orig/parser/parser.conf +++ apparmor-4.1.7/parser/parser.conf @@ -76,4 +76,8 @@ #policy-features=/etc/apparmor.d/abi/kernel-5.4-vanilla ## Pin older policy to the 5.4 kernel abi + out of tree network and af_unix -#policy-features=/etc/apparmor.d/abi/kernel-5.4-outoftree-network +#policy-features=/etc/apparmor.d/abi/kernel-5.4-vanilla + +## Pin feature set (avoid regressions when policy is lagging behind +## the kernel) +policy-features=/usr/share/apparmor-features/features --- apparmor-4.1.7.orig/parser/rc.apparmor.functions +++ apparmor-4.1.7/parser/rc.apparmor.functions @@ -32,7 +32,7 @@ # Some nice defines that we use PARSER=/sbin/apparmor_parser -PARSER_OPTS= +PARSER_OPTS=--write-cache # Suppress warnings when booting in quiet mode if [ "${QUIET:-no}" = yes ] || [ "${quiet:-n}" = y ]; then PARSER_OPTS="$PARSER_OPTS --quiet" --- apparmor-4.1.7.orig/profiles/apparmor.d/abstractions/base +++ apparmor-4.1.7/profiles/apparmor.d/abstractions/base @@ -33,6 +33,7 @@ @{etc_ro}/locale.alias r, @{etc_ro}/localtime r, @{etc_rw}/localtime r, + /etc/writable/localtime r, /usr/share/locale-bundle/** r, /usr/share/locale-langpack/** r, /usr/share/locale/ r, --- apparmor-4.1.7.orig/profiles/apparmor.d/abstractions/ubuntu-browsers.d/java +++ apparmor-4.1.7/profiles/apparmor.d/abstractions/ubuntu-browsers.d/java @@ -39,6 +39,7 @@ /etc/lsb-release r, /etc/ssl/certs/java/* r, /etc/timezone r, + /etc/writable/timezone r, @{PROC}/@{pid}/ r, @{PROC}/@{pid}/fd/ r, @@ -86,6 +87,7 @@ /etc/lsb-release r, /etc/ssl/certs/java/* r, /etc/timezone r, + /etc/writable/timezone r, @{PROC}/@{pid}/ r, @{PROC}/@{pid}/fd/ r, --- apparmor-4.1.7.orig/profiles/apparmor/profiles/extras/usr.sbin.lighttpd +++ apparmor-4.1.7/profiles/apparmor/profiles/extras/usr.sbin.lighttpd @@ -60,6 +60,7 @@ /{usr/,}bin/cat mix, # Debian/Ubuntu integration in default installation + include /etc/mime.types r, /usr/share/lighttpd/ r, /usr/share/lighttpd/*.pl mrix, --- apparmor-4.1.7.orig/utils/Makefile +++ apparmor-4.1.7/utils/Makefile @@ -58,7 +58,7 @@ $(MAKE) -C po install DESTDIR=${DESTDIR} NAME=${NAME} $(MAKE) install_manpages DESTDIR=${DESTDIR} $(MAKE) -C vim install DESTDIR=${DESTDIR} - ${PYTHON} ${PYSETUP} install --prefix=${PYPREFIX} --root=${DESTDIR} --version=${VERSION} + ${PYTHON} ${PYSETUP} install --prefix=${PYPREFIX} --root=${DESTDIR} --install-layout=deb --version=${VERSION} .PHONY: clean ifndef VERBOSE --- apparmor-4.1.7.orig/utils/notify.conf +++ apparmor-4.1.7/utils/notify.conf @@ -31,7 +31,7 @@ # message_body="This is a custom notification message." # OPTIONAL - custom notification message footer -# message_footer="For more information visit https://foo.com" +message_footer="For more information visit https://wiki.debian.org/AppArmor" # OPTIONAL - custom notification filtering # filter.profile="" --- apparmor-4.1.7.orig/utils/test/test-logprof.py +++ apparmor-4.1.7/utils/test/test-logprof.py @@ -66,7 +66,7 @@ self.process.stdin.close() self.process.stdout.close() self.process.terminate() - self.process.wait(timeout=0.3) + self.process.wait(timeout=0.6) def _run_test(self, params, expected): auditlog = './logprof/%s.auditlog' % params @@ -127,7 +127,7 @@ output = self.process.stdout.readline().decode("utf-8").strip() self.assertEqual(output, line) # give logprof some time to write the updated profile and terminate - self.process.wait(timeout=0.6) + self.process.wait(timeout=1.2) self.assertEqual(self.process.returncode, 0)