オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

Diff of /trunk/1.8.x/ccs-patch/README.ccs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1057 by kumaneko, Wed Mar 26 07:28:27 2008 UTC revision 1319 by kumaneko, Sun Jun 22 03:31:36 2008 UTC
# Line 1146  Fix 2008/01/15 Line 1146  Fix 2008/01/15
1146    
1147  Fix 2008/02/05  Fix 2008/02/05
1148    
1149      @ Use find_task_by_vpid() instead of find_task_pid().      @ Use find_task_by_vpid() instead of find_task_by_pid().
1150    
1151        Kernel 2.6.24 introduced PID namespace.        Kernel 2.6.24 introduced PID namespace.
1152        To search PID given from userland, the kernel needs to use        To search PID given from userland, the kernel needs to use
1153        find_task_by_vpid() instead of find_task_pid().        find_task_by_vpid() instead of find_task_by_pid().
1154    
1155  Fix 2008/02/14  Fix 2008/02/14
1156    
# Line 1247  Fix 2008/02/29 Line 1247  Fix 2008/02/29
1247        By default, this handler does nothing (i.e. merely reject execve()        By default, this handler does nothing (i.e. merely reject execve()
1248        request). You can specify any program to start what you want to do.        request). You can specify any program to start what you want to do.
1249    
1250        You can redirect attackers to somewhere else (e.g. honeypot).        You can redirect attackers to somewhere else (e.g. honey pot).
1251        This makes it possible to act your Linux box as an on-demand honeypot        This makes it possible to act your Linux box as an on-demand honey pot
1252        while keeping regular services for your usage.        while keeping regular services for your usage.
1253    
1254        You can collect information of the attacker (e.g. IP address) and        You can collect information of the attacker (e.g. IP address) and
# Line 1301  Fix 2008/03/04 Line 1301  Fix 2008/03/04
1301    
1302  Fix 2008/03/10  Fix 2008/03/10
1303    
1304      @ Rename "force_alt_exec" keyword to "preferred_execute_handler".      @ Rename "force_alt_exec" keyword to "execute_handler".
1305    
1306        To be able to use different programs for validating execve() parameters,        To be able to use different programs for validating execve() parameters,
1307        I moved the location to specify the program's pathname from profile        I moved the location to specify the program's pathname from profile
1308        to domain policy.        to domain policy.
1309    
1310        The "preferred_execute_handler" keyword takes one pathname which is        The "execute_handler" keyword takes one pathname which is
1311        invoked whenever execve() request is issued. Thus, any "allow_execute"        invoked whenever execve() request is issued. Thus, any "allow_execute"
1312        keywords in a domain with "preferred_execute_handler" are ignored.        keywords in a domain with "execute_handler" are ignored.
1313        This keyword is designed for validating expected/desirable execve()        This keyword is designed for validating expected/desirable execve()
1314        requests in userspace, although there is no way to tell the caller        requests in userspace, although there is no way to tell the caller
1315        that the execve() request was rejected.        that the execve() request was rejected.
1316    
1317      @ Rename "alt_exec" keyword to "default_execute_handler".      @ Rename "alt_exec" keyword to "denied_execute_handler".
1318    
1319        The "default_execute_handler" keyword takes one pathname which is        The "denied_execute_handler" keyword takes one pathname which is
1320        invoked only when execve() request was rejected. In other words,        invoked only when execve() request was rejected. In other words,
1321        this program is invoked only when the following conditions are met.        this program is invoked only when the following conditions are met.
1322    
1323          (1) None of "allow_execute" keywords in the domain didn't match.          (1) None of "allow_execute" keywords in the domain matched.
1324          (2) The execve() request was rejected in enforcing mode.          (2) The execve() request was rejected in enforcing mode.
1325          (3) "preferred_execute_handler" keyword is not used by the domain.          (3) "execute_handler" keyword is not used by the domain.
1326    
1327        This keyword is designed for handling unexpected/undesirable execve()        This keyword is designed for handling unexpected/undesirable execve()
1328        requests, to redirect the process issuing such requests to somewhere.        requests, to redirect the process issuing such requests to somewhere.
# Line 1337  Fix 2008/03/18 Line 1337  Fix 2008/03/18
1337        Locking order in pre_vfs_link() and pre_vfs_unlink() for 2.4 kernels        Locking order in pre_vfs_link() and pre_vfs_unlink() for 2.4 kernels
1338        after 2.4.33 were different from before 2.4.32 .        after 2.4.33 were different from before 2.4.32 .
1339    
1340  Version 1.6.0 2008/??/??   Feature enhancement release.  Fix 2008/03/28
1341    
1342        @ Disable execute handler loop.
1343    
1344          To be able to use "execute_handler" in a "keep_domain" domain,
1345          ignore "execute_handler" and "denied_execute_handler" keywords
1346          if the current process is executing programs specified by
1347          "execute_handler" or "denied_execute_handler" keyword.
1348    
1349          This exception is needed to avoid infinite execute handler loop.
1350          If a domain has both "keep_domain" and "execute_handler",
1351          any execute request by that domain is handled by an execute handler,
1352          and the execute handler attempts to process original execute request.
1353          But the original execute request is handled by the same execute handler
1354          unless the execute handler ignores "execute_handler".
1355    
1356        @ Update coding style.
1357    
1358          I rewrote the code to pass scripts/checkpatch.pl as much as possible.
1359          Function names were changed to use only lower letters.
1360    
1361    Version 1.6.0 2008/04/01   Feature enhancement release.
1362    
1363    Fix 2008/04/14
1364    
1365        @ Fix "Compilation failures" and "Initialization ordering bugs"
1366          with kernels before 2.4.30/2.6.11 .
1367    
1368          2.6 kernels before 2.6.9 didn't have include/linux/hardirq.h ,
1369          resulting compilation error at #include <linux/hardirq.h> .
1370          I added #elif condition.
1371    
1372          CentOS 4.6's 2.6.9 kernel calls do_execve() before initialization of
1373          ccs_alloc(), resulting NULL pointer dereference.
1374          I changed __initcall to core_initcall.
1375    
1376          CentOS 4.6's 2.6.9 kernel backported kzalloc() from 2.6.14 ,
1377          resulting compilation error at kzalloc().
1378          I modified prototype of kzalloc().
1379    
1380    Fix 2008/04/20
1381    
1382        @ Fix "Compilation failures" with kernels before 2.4.30/2.6.11 .
1383    
1384          Turbolinux 10 Server's 2.6.8 kernel backported kzalloc() as an inlined
1385          function, resulting compilation error at kzalloc().
1386          I converted kzalloc() from an inlined function into a macro.
1387    
1388    Fix 2008/04/21
1389    
1390        @ Add workaround for gcc 3.2.2's inline bug.
1391    
1392          RedHat Linux 9's gcc 3.2.2 generated a bad code
1393             if ((var_of_u8 & 0x000000BF) & 0x80000000) { }
1394          where the expected code is
1395             if ((var_of_u8 & 0xBF) & 0x80) { }
1396          when embedding ccs_acl_type2() into print_entry(),
1397          resulting runtime BUG().
1398          I added the expected code explicitly as a workaround.
1399    
1400    Fix 2008/05/06
1401    
1402        @ Add memory quota.
1403    
1404          1.5.x returns -ENOMEM when FindNextDomain() failed to create a new
1405          domain, but I forgot to return -ENOMEM when find_next_domain() failed to
1406          create a new domain.
1407    
1408          A domain is automatically created by find_next_domain() only if
1409          the domain for the requested program doesn't exist.
1410          This behavior is for the administrator's convenience.
1411          The administrator needn't to know how many domains are needed for running
1412          the whole programs in the system beforehand when developing the policy.
1413          But the administrator does not want the kernel to reject execution of the
1414          requested program when developing the policy.
1415    
1416          So, I think it is better to grant execution of programs even if
1417          find_next_domain() failed to create a new domain than reject execution.
1418          Thus, I decided not to return -ENOMEM when find_next_domain() failed to
1419          create a new domain. This exception breaks the domain transition rules,
1420          so I print "transition_failed" warning in /proc/ccs/domain_policy
1421          when this exception happened.
1422    
1423          Also, to prevent the system from being halted by unexpectedly allocating
1424          all kernel memory for the policy, I added memory quota.
1425          This quota is configurable via /proc/ccs/meminfo like
1426    
1427            echo Shared:  1048576 > /proc/ccs/meminfo
1428            echo Private: 1048576 > /proc/ccs/meminfo
1429    
1430    Version 1.6.1 2008/05/10   Bug fix release.
1431    
1432    Fix 2008/06/04
1433    
1434        @ Check open mode of /proc/ccs/ interface.
1435    
1436          It turned out that I can avoid allocating memory for reading if
1437          FMODE_READ is not set and memory for writing if FMODE_WRITE is not set.
1438    
1439        @ Wait for completion of /sbin/ccs-init .
1440    
1441          Since 2.4 kernel's call_usermodehelper() can't wait for termination of
1442          the executed program, I was using the close() request of
1443          /proc/ccs/meminfo to indicate that loading policy has finished.
1444          But since /proc/ccs/meminfo could be accessed for setting memory quota
1445          by /etc/ccs/ccs-post-init , I stopped using the close() request.
1446          The policy loader no longer need to access /proc/ccs/meminfo to notify
1447          the kernel that loading policy has finished.
1448    
1449    Fix 2008/06/05
1450    
1451        @ Fix realpath for pipes and sockets.
1452    
1453          Kernel 2.6.22 and later use different method for calculating d_path().
1454          Since fs/realpath.c didn't notice the change, the realpath of pipes
1455          appeared as "pipe:" rather than "pipe:[\$]" when they are opened via
1456          /proc/PID/fd/ directory.
1457    
1458        @ Add process's information into /proc/ccs/query .
1459    
1460          While /proc/ccs/grant_log and /proc/ccs/reject_log contain process's
1461          information, /proc/ccs/query doesn't contain it.
1462          To be able to utilize ccs-queryd and ccs-notifyd more, I added it into
1463          /proc/ccs/query .
1464    
1465    Fix 2008/06/10
1466    
1467        @ Allow using patterns for globally readable files.
1468    
1469          To allow users specify locale specific files to globally readable files,
1470          I relaxed checking in update_globally_readable_entry().
1471    
1472        @ Move ALLOW_ENFORCE_GRACE=enabled checking to write_answer().
1473    
1474          To allow users use ccs-notifyd without turning ALLOW_ENFORCE_GRACE on,
1475          I moved it from ccs_check_supervisor() to write_answer().
1476    
1477    Fix 2008/06/11
1478    
1479        @ Remove ALLOW_ENFORCE_GRACE parameter.
1480    
1481          Since unexpected requests caused by doing software updates can happen
1482          in all profiles, users likely have to write ALLOW_ENFORCE_GRACE=enabled
1483          to all profiles. And it makes meaningless to allow users to selectively
1484          enable specific profile's ALLOW_ENFORCE_GRACE parameter.
1485          So, I removed ALLOW_ENFORCE_GRACE parameter.
1486          Now, the system behaves as if ALLOW_ENFORCE_GRACE=enabled is specified.
1487          The behavior of "delayed enforcing" mode is defined in the following
1488          order.
1489    
1490          (1) The requests are rejected immediately if nobody is opening
1491              /proc/ccs/query interface.
1492          (2) The requests will be rejected in 10 seconds if somebody other than
1493              ccs-queryd (such as less(1)) is opening /proc/ccs/query interface,
1494              for such process doesn't write dummy decisions.
1495    
1496    Fix 2008/06/22
1497    
1498        @ Pass escaped pathname to audit_execute_handler_log().
1499    
1500          I was passing unescaped pathname to audit_execute_handler_log()
1501          which causes /proc/ccs/grant_log contain whitespace characters
1502          if execute handler's pathname contains whitespace characters.
1503    
1504    Version 1.6.2 2008/??/??   Usability enhancement release.

Legend:
Removed from v.1057  
changed lines
  Added in v.1319

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26