<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c5e3cdbf - tomoyo: revert CONFIG_SECURITY_TOMOYO_LKM support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#c5e3cdbf</link>
        <description>tomoyo: revert CONFIG_SECURITY_TOMOYO_LKM supportThis patch reverts two TOMOYO patches that were merged into Linus&apos; treeduring the v6.12 merge window:8b985bbfabbe (&quot;tomoyo: allow building as a loadable LSM module&quot;)268225a1de1a (&quot;tomoyo: preparation step for building as a loadable LSM module&quot;)Together these two patches introduced the CONFIG_SECURITY_TOMOYO_LKMKconfig build option which enabled a TOMOYO specific dynamic LSM loadingmechanism (see the original commits for more details).  Unfortunately,this approach was widely rejected by the LSM community as well as somemembers of the general kernel community.  Objections included concernsover setting a bad precedent regarding individual LSMs managing theirLSM callback registrations as well as general kernel symbol exportingpractices.  With little to no support for the CONFIG_SECURITY_TOMOYO_LKMapproach outside of Tetsuo, and multiple objections, we need to revertthese changes.Link: https://lore.kernel.org/all/0c4b443a-9c72-4800-97e8-a3816b6a9ae2@I-love.SAKURA.ne.jpLink: https://lore.kernel.org/all/CAHC9VhR=QjdoHG3wJgHFJkKYBg7vkQH2MpffgVzQ0tAByo_wRg@mail.gmail.comAcked-by: John Johansen &lt;john.johansen@canonical.com&gt;Signed-off-by: Paul Moore &lt;paul@paul-moore.com&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Thu, 03 Oct 2024 20:43:39 +0000</pubDate>
        <dc:creator>Paul Moore &lt;paul@paul-moore.com&gt;</dc:creator>
    </item>
<item>
        <title>8b985bbf - tomoyo: allow building as a loadable LSM module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#8b985bbf</link>
        <description>tomoyo: allow building as a loadable LSM moduleOne of concerns for enabling TOMOYO in prebuilt kernels is that distributorwants to avoid bloating kernel packages. Although boot-time kernel commandline options allows selecting built-in LSMs to enable, file size increaseof vmlinux and memory footprint increase of vmlinux caused by builtin-but-not-enabled LSMs remains. If it becomes possible to make LSMs dynamicallyappendable after boot using loadable kernel modules, these problems willgo away.Another of concerns for enabling TOMOYO in prebuilt kernels is that who canprovide support when distributor cannot provide support. Due to &quot;those whocompiled kernel code is expected to provide support for that kernel code&quot;spell, TOMOYO is failing to get enabled in Fedora distribution [1]. Thepoint of loadable kernel module is to share the workload. If it becomespossible to make LSMs dynamically appendable after boot using loadablekernel modules, as with people can use device drivers not supported bydistributors but provided by third party device vendors, we can breakthis spell and can lower the barrier for using TOMOYO.This patch is intended for demonstrating that there is nothing difficultfor supporting TOMOYO-like loadable LSM modules. For now we need to livewith a mixture of built-in part and loadable part because fully loadableLSM modules are not supported since Linux 2.6.24 [2] and number of LSMswhich can reserve static call slots is determined at compile time inLinux 6.12.Major changes in this patch are described below.There are no behavior changes as long as TOMOYO is built into vmlinux.Add CONFIG_SECURITY_TOMOYO_LKM as &quot;bool&quot; instead of changingCONFIG_SECURITY_TOMOYO from &quot;bool&quot; to &quot;tristate&quot;, for something wentwrong with how Makefile is evaluated if I choose &quot;tristate&quot;.Add proxy.c for serving as a bridge between vmlinux and tomoyo.ko .Move callback functions from init.c to proxy.c when building as a loadableLSM module. init.c is built-in part and remains for reserving static callslots. proxy.c contains module&apos;s init function and tells init.c location ofcallback functions, making it possible to use static call for tomoyo.ko .By deferring initialization of &quot;struct tomoyo_task&quot; until tomoyo.ko isloaded, threads created between init.c reserved LSM hooks and proxy.cupdates LSM hooks will have NULL &quot;struct tomoyo_task&quot; instances. Assumingthat tomoyo.ko is loaded by the moment when the global init process starts,initialize &quot;struct tomoyo_task&quot; instance for current thread as a kernelthread when tomoyo_task(current) is called for the first time.There is a hack for exporting currently not-exported functions.This hack will be removed after all relevant functions are exported.Link: https://bugzilla.redhat.com/show_bug.cgi?id=542986 [1]Link: https://lkml.kernel.org/r/caafb609-8bef-4840-a080-81537356fc60@I-love.SAKURA.ne.jp [2]Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Mon, 23 Sep 2024 10:55:50 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>268225a1 - tomoyo: preparation step for building as a loadable LSM module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#268225a1</link>
        <description>tomoyo: preparation step for building as a loadable LSM moduleIn order to allow Makefile to generate tomoyo.ko as output, renametomoyo.c to hooks.h and cut out LSM hook registration part that will bebuilt into vmlinux from hooks.h to init.c . Also, update comments andrelocate some variables. No behavior changes.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Mon, 23 Sep 2024 10:00:21 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>b1992c37 - kbuild: use $(src) instead of $(srctree)/$(src) for source directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#b1992c37</link>
        <description>kbuild: use $(src) instead of $(srctree)/$(src) for source directoryKbuild conventionally uses $(obj)/ for generated files, and $(src)/ forchecked-in source files. It is merely a convention without any functionaldifference. In fact, $(obj) and $(src) are exactly the same, as definedin scripts/Makefile.build:    src := $(obj)When the kernel is built in a separate output directory, $(src) doesnot accurately reflect the source directory location. While Kbuildresolves this discrepancy by specifying VPATH=$(srctree) to search forsource files, it does not cover all cases. For example, when adding aheader search path for local headers, -I$(srctree)/$(src) is typicallypassed to the compiler.This introduces inconsistency between upstream and downstream Makefilesbecause $(src) is used instead of $(srctree)/$(src) for the latter.To address this inconsistency, this commit changes the semantics of$(src) so that it always points to the directory in the source tree.Going forward, the variables used in Makefiles will have the followingmeanings:  $(obj)     - directory in the object tree  $(src)     - directory in the source tree  (changed by this commit)  $(objtree) - the top of the kernel object tree  $(srctree) - the top of the kernel source treeConsequently, $(srctree)/$(src) in upstream Makefiles need to be replacedwith $(src).Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Nicolas Schier &lt;nicolas@fjasle.eu&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sat, 27 Apr 2024 14:55:02 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>80f8be7a - tomoyo: Omit use of bin2c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#80f8be7a</link>
        <description>tomoyo: Omit use of bin2cbin2c was, as its name implies, introduced to convert a binary file toC code.However, I did not see any good reason ever for using this tool becauseusing the .incbin directive is much faster, and often results in simplercode.Most of the uses of bin2c have been killed, for example:  - 13610aa908dc (&quot;kernel/configs: use .incbin directive to embed config_data.gz&quot;)  - 4c0f032d4963 (&quot;s390/purgatory: Omit use of bin2c&quot;)security/tomoyo/Makefile has even less reason for using bin2c becausethe policy files are text data. So, sed is enough for converting themto C string literals, and what is nicer, generates human-readablebuiltin-policy.h.This is the last user of bin2c. After this commit lands, bin2c will beremoved.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;[penguin-kernel: Update sed script to also escape backslash and quote ]Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sun, 08 Jan 2023 13:47:26 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>df4840c1 - tomoyo: avoid unneeded creation of builtin-policy.h</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#df4840c1</link>
        <description>tomoyo: avoid unneeded creation of builtin-policy.hWhen CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING=y,builtin-policy.h is unneeded.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sat, 07 Jan 2023 07:47:42 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>eaf2213b - tomoyo: fix broken dependency on *.conf.default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#eaf2213b</link>
        <description>tomoyo: fix broken dependency on *.conf.defaultIf *.conf.default is updated, builtin-policy.h should be rebuilt,but this does not work when compiled with O= option.[Without this commit]  $ touch security/tomoyo/policy/exception_policy.conf.default  $ make O=/tmp security/tomoyo/  make[1]: Entering directory &apos;/tmp&apos;    GEN     Makefile    CALL    /home/masahiro/ref/linux/scripts/checksyscalls.sh    DESCEND objtool  make[1]: Leaving directory &apos;/tmp&apos;[With this commit]  $ touch security/tomoyo/policy/exception_policy.conf.default  $ make O=/tmp security/tomoyo/  make[1]: Entering directory &apos;/tmp&apos;    GEN     Makefile    CALL    /home/masahiro/ref/linux/scripts/checksyscalls.sh    DESCEND objtool    POLICY  security/tomoyo/builtin-policy.h    CC      security/tomoyo/common.o    AR      security/tomoyo/built-in.a  make[1]: Leaving directory &apos;/tmp&apos;$(srctree)/ is essential because $(wildcard ) does not follow VPATH.Fixes: f02dee2d148b (&quot;tomoyo: Do not generate empty policy files&quot;)Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sat, 07 Jan 2023 07:47:41 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c417fbce - kbuild: move bin2c back to scripts/ from scripts/basic/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#c417fbce</link>
        <description>kbuild: move bin2c back to scripts/ from scripts/basic/Commit 8370edea81e3 (&quot;bin2c: move bin2c in scripts/basic&quot;) moved bin2cto the scripts/basic/ directory, incorrectly stating &quot;Kexec wants touse bin2c and it wants to use it really early in the build process.See arch/x86/purgatory/ code in later patches.&quot;Commit bdab125c9301 (&quot;Revert &quot;kexec/purgatory: Add clean-up forpurgatory directory&quot;&quot;) and commit d6605b6bbee8 (&quot;x86/build: Removeunnecessary preparation for purgatory&quot;) removed the redundantpurgatory build magic entirely.That means that the move of bin2c was unnecessary in the first place.fixdep is the only host program that deserves to sit in thescripts/basic/ directory.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Mon, 25 Jun 2018 16:40:23 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>f02dee2d - tomoyo: Do not generate empty policy files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#f02dee2d</link>
        <description>tomoyo: Do not generate empty policy filesThe Makefile automatically generates the tomoyo policy files, which arenot removed by make clean (because they could have been provided by theuser). Instead of generating the missing files, use /dev/null if agiven file is not provided. Store the default exception_policy inexception_policy.conf.default.Acked-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Thu, 15 Jan 2015 09:39:22 +0000</pubDate>
        <dc:creator>Michal Marek &lt;mmarek@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>bf7a9ab4 - tomoyo: Use if_changed when generating builtin-policy.h</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#bf7a9ab4</link>
        <description>tomoyo: Use if_changed when generating builtin-policy.hCombine the generation of builtin-policy.h into a single command and useif_changed, so that the file is regenerated each time the commandchanges. The next patch will make use of this.Acked-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Fri, 09 Jan 2015 13:36:27 +0000</pubDate>
        <dc:creator>Michal Marek &lt;mmarek@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>7e114bbf - tomoyo: Use bin2c to generate builtin-policy.h</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#7e114bbf</link>
        <description>tomoyo: Use bin2c to generate builtin-policy.hSimplify the Makefile by using a readily available tool instead of acustom sed script. The downside is that builtin-policy.h becomesunreadable for humans, but it is only a generated file.Acked-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Fri, 09 Jan 2015 13:08:26 +0000</pubDate>
        <dc:creator>Michal Marek &lt;mmarek@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>843d183c - TOMOYO: Bump version.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#843d183c</link>
        <description>TOMOYO: Bump version.Tell userland tools that this is TOMOYO 2.5.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Wed, 14 Sep 2011 08:03:19 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>059d84db - TOMOYO: Add socket operation restriction support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#059d84db</link>
        <description>TOMOYO: Add socket operation restriction support.This patch adds support for permission checks for PF_INET/PF_INET6/PF_UNIXsocket&apos;s bind()/listen()/connect()/send() operations.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sat, 10 Sep 2011 06:23:54 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>d58e0da8 - TOMOYO: Add environment variable name restriction support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#d58e0da8</link>
        <description>TOMOYO: Add environment variable name restriction support.This patch adds support for checking environment variable&apos;s names.Although TOMOYO already provides ability to check argv[]/envp[] passed toexecve() requests,  file execute /bin/sh exec.envp[&quot;LD_LIBRARY_PATH&quot;]=&quot;bar&quot;will reject execution of /bin/sh if environment variable LD_LIBRARY_PATH is notdefined. To grant execution of /bin/sh if LD_LIBRARY_PATH is not defined,administrators have to specify like  file execute /bin/sh exec.envp[&quot;LD_LIBRARY_PATH&quot;]=&quot;/system/lib&quot;  file execute /bin/sh exec.envp[&quot;LD_LIBRARY_PATH&quot;]=NULL. Since there are many environment variables whereas conditional checks areapplied as &quot;&amp;&amp;&quot;, it is difficult to cover all combinations. Therefore, thispatch supports conditional checks that are applied as &quot;||&quot;, by specifying like  file execute /bin/sh  misc env LD_LIBRARY_PATH exec.envp[&quot;LD_LIBRARY_PATH&quot;]=&quot;/system/lib&quot;which means &quot;grant execution of /bin/sh if environment variable is not definedor is defined and its value is /system/lib&quot;.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sat, 10 Sep 2011 06:22:48 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>2066a361 - TOMOYO: Allow using UID/GID etc. of current thread as conditions.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#2066a361</link>
        <description>TOMOYO: Allow using UID/GID etc. of current thread as conditions.This patch adds support for permission checks using current thread&apos;s UID/GIDetc. in addition to pathnames.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Fri, 08 Jul 2011 04:21:37 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>efe836ab - TOMOYO: Add built-in policy support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#efe836ab</link>
        <description>TOMOYO: Add built-in policy support.To be able to start using enforcing mode from the early stage of boot sequence,this patch adds support for built-in policy configuration (and next patch addssupport for activating access control without calling external policy loaderprogram).Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sun, 26 Jun 2011 14:22:18 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>eadd99cc - TOMOYO: Add auditing interface.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#eadd99cc</link>
        <description>TOMOYO: Add auditing interface.Add /sys/kernel/security/tomoyo/audit interface. This interface generates auditlogs in the form of domain policy so that /usr/sbin/tomoyo-auditd can reuseaudit logs for appending to /sys/kernel/security/tomoyo/domain_policyinterface.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Sun, 26 Jun 2011 14:18:58 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>7c2ea22e - TOMOYO: Merge path_group and number_group.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#7c2ea22e</link>
        <description>TOMOYO: Merge path_group and number_group.Use common code for &quot;path_group&quot; and &quot;number_group&quot;.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Thu, 17 Jun 2010 07:55:58 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
<item>
        <title>c3ef1500 - TOMOYO: Split files into some pieces.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/security/tomoyo/Makefile#c3ef1500</link>
        <description>TOMOYO: Split files into some pieces.security/tomoyo/common.c became too large to read.Signed-off-by: Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;Signed-off-by: James Morris &lt;jmorris@namei.org&gt;

            List of files:
            /linux-6.15/security/tomoyo/Makefile</description>
        <pubDate>Mon, 17 May 2010 01:12:46 +0000</pubDate>
        <dc:creator>Tetsuo Handa &lt;penguin-kernel@I-love.SAKURA.ne.jp&gt;</dc:creator>
    </item>
</channel>
</rss>
