Date: Wed, 15 Feb 2006 22:43:02 GMT From: Todd Miller <millert@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 91843 for review Message-ID: <200602152243.k1FMh20U052686@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=91843 Change 91843 by millert@millert_ibook on 2006/02/15 22:43:01 Fix cust and pasto; there is no such thing as a "receive once" right Affected files ... .. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/avc/av_perm_to_string.h#7 edit .. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/avc/av_permissions.h#7 edit .. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/flask.h#6 edit .. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/flask/access_vectors#8 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/avc/av_perm_to_string.h#7 (text+ko) ==== @@ -134,11 +134,9 @@ { SECCLASS_MACH_PORT, MACH_PORT__MOVE_SEND, "move_send" }, { SECCLASS_MACH_PORT, MACH_PORT__MOVE_SEND_ONCE, "move_send_once" }, { SECCLASS_MACH_PORT, MACH_PORT__MOVE_RECV, "move_recv" }, - { SECCLASS_MACH_PORT, MACH_PORT__MOVE_RECV_ONCE, "move_recv_once" }, { SECCLASS_MACH_PORT, MACH_PORT__HOLD_SEND, "hold_send" }, { SECCLASS_MACH_PORT, MACH_PORT__HOLD_SEND_ONCE, "hold_send_once" }, { SECCLASS_MACH_PORT, MACH_PORT__HOLD_RECV, "hold_recv" }, - { SECCLASS_MACH_PORT, MACH_PORT__HOLD_RECV_ONCE, "hold_recv_once" }, { SECCLASS_MACH_TASK, MACH_TASK__TERMINATE, "terminate" }, { SECCLASS_MACH_TASK, MACH_TASK__SET_SPECIAL_PORT, "set_special_port" }, }; ==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/avc/av_permissions.h#7 (text+ko) ==== @@ -611,11 +611,9 @@ #define MACH_PORT__MOVE_SEND 0x0000000000000080UL #define MACH_PORT__MOVE_SEND_ONCE 0x0000000000000100UL #define MACH_PORT__MOVE_RECV 0x0000000000000200UL -#define MACH_PORT__MOVE_RECV_ONCE 0x0000000000000400UL -#define MACH_PORT__HOLD_SEND 0x0000000000000800UL -#define MACH_PORT__HOLD_SEND_ONCE 0x0000000000001000UL -#define MACH_PORT__HOLD_RECV 0x0000000000002000UL -#define MACH_PORT__HOLD_RECV_ONCE 0x0000000000004000UL +#define MACH_PORT__HOLD_SEND 0x0000000000000400UL +#define MACH_PORT__HOLD_SEND_ONCE 0x0000000000000800UL +#define MACH_PORT__HOLD_RECV 0x0000000000001000UL #define MACH_TASK__TERMINATE 0x0000000000000001UL #define MACH_TASK__SET_SPECIAL_PORT 0x0000000000000002UL ==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/flask.h#6 (text+ko) ==== ==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/flask/access_vectors#8 (text+ko) ==== @@ -365,11 +365,9 @@ move_send move_send_once move_recv - move_recv_once hold_send hold_send_once hold_recv - hold_recv_once } class mach_task
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200602152243.k1FMh20U052686>