cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c

2008-08-31 Thread Robert Watson
rwatson 2008-08-31 18:23:42 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/security/mac_bsdextended mac_bsdextended.c Log: SVN rev 182557 on 2008-08-31 18:23:42Z by rwatson Merge r181069 from head to stable/7: In mac_bsdextended's auditctl

cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c

2008-07-31 Thread Robert Watson
rwatson 2008-07-31 20:49:12 UTC FreeBSD src repository Modified files: sys/security/mac_bsdextended mac_bsdextended.c Log: SVN rev 181069 on 2008-07-31 20:49:12Z by rwatson In mac_bsdextended's auditctl and acct policy access control checks, return success if the passed

cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c mac_bsdextended.h

2007-07-05 Thread Robert Watson
rwatson 2007-07-05 13:16:04 UTC FreeBSD src repository Modified files: sys/security/mac_bsdextended mac_bsdextended.c mac_bsdextended.h Log: In preparation for 7.0 privilege cleanup, clean up style: - Sort copyrights by date. - Re-wrap,

cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c

2007-02-20 Thread Robert Watson
rwatson 2007-02-20 10:21:28 UTC FreeBSD src repository Modified files: sys/security/mac_bsdextended mac_bsdextended.c Log: Move mapping of MBI_APPEND to MBI_WRITE from inside the rule loop in mac_bsdextended_check() to before the loop, as it needs to happen only once.

cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c

2006-03-04 Thread David Malone
dwmalone2006-03-04 20:47:19 UTC FreeBSD src repository Modified files: sys/security/mac_bsdextended mac_bsdextended.c Log: Create a mac_bsdextended_check_vp function that takes a cred, a vnode and a mode and checks if a given access mode is permitted. This centralises the

cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c

2006-01-23 Thread Christian S.J. Peron
csjp2006-01-24 04:11:45 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/security/mac_bsdextended mac_bsdextended.c Log: MFC revision 1.27 date: 2006/01/15 01:02:20; author: csjp; state: Exp; lines: +1 -1 Fix potential overrun of static stack

cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c

2006-01-14 Thread Christian S.J. Peron
csjp2006-01-15 01:02:20 UTC FreeBSD src repository Modified files: sys/security/mac_bsdextended mac_bsdextended.c Log: Fix potential overrun of static stack allocated array which stores the rules. If an array is N elements large, we can only access elements 0..(N-1).