[apparmor] [PATCH] Fix: parser: incorrect output of child profile names

John Johansen john.johansen at canonical.com
Mon Apr 18 19:52:36 UTC 2016


BugLink: http://bugs.launchpad.net/bugs/1551950

The apparmor_parser is incorrectly outputting the names of child profiles
and hats, by adding a : between the parent and the child profile name

Eg.
  /usr/sbin/httpd{,2}-prefork
  /usr/sbin/httpd{,2}-prefork://DEFAULT_URI
  /usr/sbin/httpd{,2}-prefork://HANDLING_UNTRUSTED_INPUT

instead of what it should be
  /usr/sbin/httpd{,2}-prefork
  /usr/sbin/httpd{,2}-prefork//DEFAULT_URI
  /usr/sbin/httpd{,2}-prefork//HANDLING_UNTRUSTED_INPUT

Signed-off-by: John Johansen <john.johansen at canonical.com>
---
 parser/profile.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parser/profile.h b/parser/profile.h
index 5adbbcf..7121c0a 100644
--- a/parser/profile.h
+++ b/parser/profile.h
@@ -225,7 +225,7 @@ public:
 	std::string fqname(void)
 	{
 		if (parent)
-			return parent->fqname() + "://" + name;
+			return parent->fqname() + "//" + name;
 		else if (!ns)
 			return hname();
 		return ":" + std::string(ns) + "://" + hname();
-- 
2.7.4




More information about the AppArmor mailing list