Draft version is ready. http://tomoyo.sourceforge.jp/2.5/
As with TOMOYO 2.4, backport patch for Linux 2.6.33 to 3.1 is available.

Domain transition preference described at
http://sourceforge.jp/projects/tomoyo/lists/archive/dev-en/2011-September/000322.html
is also available in TOMOYO 2.5. (Documentation is not ready.)



Currently you cannot download tarballs from kernel.org.
But you can download 3.1-rc6 (or 3.1-rc7 shortly) tarball from github.com.

 wget -O linux-3.1-rc6.tar.gz https://github.com/torvalds/linux/tarball/v3.1-rc6



By the way, I updated ccs-tools package and updated TOMOYO 1.8.2 LiveCDs.

  /usr/sbin/ccs-editpolicy
    Fix infinite recursion if "task auto_domain_transition" or
    "task manual_domain_transition" entries are given to exception policy
    using "acl_group" keyword.

--- 1.8.2p4/ccstools/usr_sbin/editpolicy.c
+++ 1.8.2p5/ccstools/usr_sbin/editpolicy.c
@@ -1609,7 +1609,8 @@ static void ccs_parse_exception_line(con
                        return;
                for (index = 0; index < ccs_dp.list_len; index++) {
                        char *cp;
-                       if (ccs_dp.list[index].group != group)
+                       const struct ccs_domain *ptr = &ccs_dp.list[index];
+                       if (ptr->group != group || ptr->target || ptr->is_dd)
                                continue;
                        cp = ccs_strdup(line);
                        ccs_parse_domain_line(ns, cp, index, false);

_______________________________________________
tomoyo-users-en mailing list
[email protected]
http://lists.sourceforge.jp/mailman/listinfo/tomoyo-users-en

Reply via email to