Difference between revisions of "TOMOYO"

From CBLFS
Jump to navigationJump to search
(Version 2.6.25.3 Kernel and TOMOYO {{TOMOYO-Version}})
(Version 2.6.25.3 Kernel and TOMOYO {{TOMOYO-Version}})
Line 21: Line 21:
 
== Rebuild Kernel ==
 
== Rebuild Kernel ==
  
=== Version 2.6.25.3 Kernel and TOMOYO {{TOMOYO-Version}} ===
+
=== Version 2.6.25.6 Kernel and TOMOYO {{TOMOYO-Version}} ===
  
 
download the ccs-patch-{{TOMOYO-Version}}.tar.gz file and put it in kernel source directory, Patch the kernel source:
 
download the ccs-patch-{{TOMOYO-Version}}.tar.gz file and put it in kernel source directory, Patch the kernel source:
  
 
  tar xvf ccs-patch-{{TOMOYO-Version}}.tar.gz &&
 
  tar xvf ccs-patch-{{TOMOYO-Version}}.tar.gz &&
  sed -i 's/EXTRAVERSION = */EXTRAVERSION = .3/' patches/ccs-patch-2.6.25.diff &&
+
  sed -i 's/EXTRAVERSION = */EXTRAVERSION = .6/' patches/ccs-patch-2.6.25.diff &&
 
  patch -Np1 -i patches/ccs-patch-2.6.25.diff
 
  patch -Np1 -i patches/ccs-patch-2.6.25.diff
  

Revision as of 17:46, 10 June 2008


Introduction to TOMOYO

The fundamental concept of TOMOYO Linux is "tracking process invocation history". TOMOYO Linux splits domains using "process invocation history" and the process transits to a different domain whenever execution of a program (i.e. do_execve()) is requested. By transiting to a different domain whenever execution of a program is requested, each domain will have the minimal permissions that are essential for processes in that domain to do their roles. For more information, see http://tomoyo.sourceforge.jp/wiki-e/?WhatIs.

Project Homepage: http://tomoyo.sourceforge.jp/en/2.1.x/

Dependencies

  • None no more package required for LFS Linux.

Rebuild Kernel

Version 2.6.25.6 Kernel and TOMOYO 1.7.2-2010804

download the ccs-patch-1.7.2-2010804.tar.gz file and put it in kernel source directory, Patch the kernel source:

tar xvf ccs-patch-1.7.2-2010804.tar.gz &&
sed -i 's/EXTRAVERSION = */EXTRAVERSION = .6/' patches/ccs-patch-2.6.25.diff &&
patch -Np1 -i patches/ccs-patch-2.6.25.diff


Compile and install a new TOMOYO aware kernel. Ensure you enable the TOMOYO features.

Version 2.6.23 Kernel and TOMOYO 2.x

Extract the TOMOYO 2.x patches to the kernel source directory.

for i in `cat ../patches/series`; do patch -Np1 < ../patches/$i; done

Compile and install a new TOMOYO aware kernel. Ensure you enable the TOMOYO features. Go to "Security options" screen and unselect "Default Linux Capabilities", "Root Plug Support", "NSA SELinux Support" and select "TOMOYO Linux support" as shown below.

[*] Enable different security models
< >   Default Linux Capabilities
< >   Root Plug Support
[ ] NSA SELinux Support
[*] TOMOYO Linux support

Build TOMOYO Tools

Non-Multilib

Compile the package:

make

Install the package:

make install

Multilib

32Bit

Compile the package:

make CC="gcc ${BUILD32}"

Install the package:

make install

N32

Compile the package:

sed -i 's@/usr/lib@/usr/lib32@g' Makefile &&
make CC="gcc ${BUILDN32}"

Install the package:

make install

64Bit

Compile the package:

sed -i 's@/usr/lib@/usr/lib64@g' Makefile &&
make CC="gcc ${BUILD64}"

Install the package:

make install

Configuring

Configuring TOMOYO 1.7.2-2010804

Run init_policy.sh to perform initial configuration for ccs patch

/usr/lib/ccs/init_policy.sh

You will get initial configuration files in /etc/ccs/ directory.

Configuring TOMOYO 2.x

Run tomoyo_init_policy.sh to perform initial configuration for TOMOYO 2.x.

/usr/lib/ccs/tomoyo_init_policy.sh

You will get initial configuration files in /etc/tomoyo/ directory.

Configuring TOMOYO Audit Logging

cat > /etc/rc.d/init.d/ccs-auditd << EOF
#!/bin/sh
/usr/lib/ccs/ccs-auditd /dev/null /var/log/tomoyo/reject_log.txt
EOF
chmod +x /etc/rc.d/init.d/ccs-auditd
for i in 2 3 4 5; do
ln -sv ../init.d/ccs-auditd /etc/rc.d/rc${i}.d/S99ccs-auditd; done
mkdir -p /var/log/tomoyo

Configuring TOMOYO to Begin from Learning Mode

Configure TOMOYO Linux to learn system behavior.

echo '<kernel>' > /etc/tomoyo/domain_policy.conf
echo 'use_profile 1' >> /etc/tomoyo/domain_policy.conf

Boot TOMOYO Linux

boot parameter CCS=<name> can be used to load profile /etc/ccs/profile-<name>.conf; without CCS being set or CCS=default, /etc/ccs/profile.conf will be loaded; with CCS=ask to let user select from available policies in /etc/ccs/ at boot time; with CCS=disable to boot as usual Linux without TOMOYO protection.

root=/dev/hda8 ro vga=791 video=neofb:ywrap,mtrr acpi=off CCS=default

Configuring Policy to Guard Linux as Needed

Login to the system as root user, and run editpolicy included in TOMOYO Linux tools.

/usr/lib/ccs/editpolicy

Contents

Download Source http://jaist.dl.sourceforge.jp/tomoyo/30298/ccs-tools-1.7.2-2010804.tar.gz
Download Patch (TOMOYO 1.7.2-2010804 for 2.6.x Kernel): http://jaist.dl.sourceforge.jp/tomoyo/30297/ccs-patch-1.7.2-2010804.tar.gz
Download Patch (TOMOYO 2.1 for 2.6.23 series Kernel): http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/tags/lkml/4/patches.tar.gz?root=tomoyo&view=tar
Installed Directories: /usr/lib/ccs
Installed Programs: tomoyo_init_policy.sh, init_policy.sh, editpolicy, editpolicy_offline, setlevel, setprofile, ccstree, savepolicy, makesyaoranconf, ccs-auditd, findtemp, sortpolicy, ld-watch, ccs-queryd, checkpolicy, /sbin/{ccs,tomoyo}-init
Installed Libraries:

Short Descriptions

editpolicy Edits the current policy in /proc/ccs/ directory
editpolicy_offline Edits the policy in /etc/ccs/ directory.
setlevel Changes the current control level (i.e. writing to /proc/ccs/profile ) and displays the new control level.
setprofile Assigns a profile to domains.
ccstree Lists the domainnames of currently running processes belong to and the profile numbers the domains currently assigned to.
savepolicy Saves the on-memory policy onto disk.
makesyaoranconf Generates syaoran.conf, the configuration file for SYAORAN (the Tamper-Proof /dev filesystem). You can use SYAORAN filesystem if you want to run the system with read-only root fs or you want to prevent device files from tampering.
ccs-auditd Reads from /proc/ccs/grant_log and /proc/ccs/reject_log and writes to the location given in the commandline parameters.
sortpolicy Remove duplicated entry from logs written by "ccs-auditd".
findtemp Reads domain policy from standard input and checks the existence of pathnames, and dumps the nonexistent pathnames.
ld-watch Appends shared libraries to exception policy automatically using "allow_read" directive when the location of shared libraries in /etc/ld.so.cache has changed.
ccs-queryd Detects policy violation and displays the access request. You can tell the system whether the access request should be granted (or granted and policy should be appended to grant the access request) or rejected after you validate the access request.

By running this program while updating packages, you can avoid errors due to insufficient permissions.

Never grant access requests unconditionally. The cause of policy violation is not always updating packages, but may by malicious requests by attackers. If you grant access requests caused by malicious requests by attackers, the system gets intruded.

To enable "delayed enforcing mode", you need to either set "ALLOW_ENFORCE_GRACE=1" in /proc/ccs/profile using "setlevel" command or assign a profile whose ALLOW_ENFORCE_GRACE is set to 1 to domains using "setprofile" command.

checkpolicy Reads policy files from standard input and checks syntaxes.
ccs-init Loads policy files from /etc/ccs/ directory.

Put this program as /sbin/ccs-init , and this program will be invoked automatically when execution of /sbin/init is requested by initrd.