mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 21:09:28 +00:00
Sync from MAC tree: break out the single mmap entry point into
seperate entry points for each occasion: mac_check_vnode_mmap() Check at initial mapping mac_check_vnode_mprotect() Check at mapping protection change mac_check_vnode_mmap_downgrade() Determine if a mapping downgrade should take place following subject relabel. Implement mmap() and mprotect() entry points for labeled vnode policies. These entry points are currently not hooked up to the VM system in the base tree. These changes improve the consistency of the access control interface and offer more flexibility regarding limiting access to vnode mmaping. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
This commit is contained in:
parent
e6e85c5b17
commit
e183f80e54
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104546
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -339,9 +339,10 @@ int mac_check_vnode_link(struct ucred *cred, struct vnode *dvp,
|
||||
struct vnode *vp, struct componentname *cnp);
|
||||
int mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
struct componentname *cnp);
|
||||
/* XXX This u_char should be vm_prot_t! */
|
||||
u_char mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp,
|
||||
int newmapping);
|
||||
int mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
int prot);
|
||||
int mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp,
|
||||
int prot);
|
||||
int mac_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
mode_t acc_mode);
|
||||
int mac_check_vnode_poll(struct ucred *active_cred,
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -303,8 +303,12 @@ struct mac_policy_ops {
|
||||
int (*mpo_check_vnode_lookup)(struct ucred *cred,
|
||||
struct vnode *dvp, struct label *dlabel,
|
||||
struct componentname *cnp);
|
||||
vm_prot_t (*mpo_check_vnode_mmap_perms)(struct ucred *cred,
|
||||
struct vnode *vp, struct label *label, int newmapping);
|
||||
int (*mpo_check_vnode_mmap)(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot);
|
||||
void (*mpo_check_vnode_mmap_downgrade)(struct ucred *cred,
|
||||
struct vnode *vp, struct label *label, int *prot);
|
||||
int (*mpo_check_vnode_mprotect)(struct ucred *cred,
|
||||
struct vnode *vp, struct label *label, int prot);
|
||||
int (*mpo_check_vnode_open)(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, mode_t acc_mode);
|
||||
int (*mpo_check_vnode_poll)(struct ucred *active_cred,
|
||||
@ -463,7 +467,9 @@ enum mac_op_constant {
|
||||
MAC_CHECK_VNODE_GETEXTATTR,
|
||||
MAC_CHECK_VNODE_LINK,
|
||||
MAC_CHECK_VNODE_LOOKUP,
|
||||
MAC_CHECK_VNODE_MMAP_PERMS,
|
||||
MAC_CHECK_VNODE_MMAP,
|
||||
MAC_CHECK_VNODE_MMAP_DOWNGRADE,
|
||||
MAC_CHECK_VNODE_MPROTECT,
|
||||
MAC_CHECK_VNODE_OPEN,
|
||||
MAC_CHECK_VNODE_POLL,
|
||||
MAC_CHECK_VNODE_READ,
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -216,8 +216,8 @@ static int mac_policy_register(struct mac_policy_conf *mpc);
|
||||
static int mac_policy_unregister(struct mac_policy_conf *mpc);
|
||||
|
||||
static int mac_stdcreatevnode_ea(struct vnode *vp);
|
||||
static void mac_cred_mmapped_drop_perms(struct thread *td,
|
||||
struct ucred *cred);
|
||||
static void mac_check_vnode_mmap_downgrade(struct ucred *cred,
|
||||
struct vnode *vp, int *prot);
|
||||
static void mac_cred_mmapped_drop_perms_recurse(struct thread *td,
|
||||
struct ucred *cred, struct vm_map *map);
|
||||
|
||||
@ -813,8 +813,16 @@ mac_policy_register(struct mac_policy_conf *mpc)
|
||||
mpc->mpc_ops->mpo_check_vnode_lookup =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_PERMS:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_perms =
|
||||
case MAC_CHECK_VNODE_MMAP:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MMAP_DOWNGRADE:
|
||||
mpc->mpc_ops->mpo_check_vnode_mmap_downgrade =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_MPROTECT:
|
||||
mpc->mpc_ops->mpo_check_vnode_mprotect =
|
||||
mpe->mpe_function;
|
||||
break;
|
||||
case MAC_CHECK_VNODE_OPEN:
|
||||
@ -1940,21 +1948,56 @@ mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (error);
|
||||
}
|
||||
|
||||
vm_prot_t
|
||||
mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp, int newmapping)
|
||||
int
|
||||
mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
vm_prot_t result = VM_PROT_ALL;
|
||||
int error;
|
||||
|
||||
if (!mac_enforce_vm)
|
||||
return (result);
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap");
|
||||
|
||||
/*
|
||||
* This should be some sort of MAC_BITWISE, maybe :)
|
||||
*/
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_perms");
|
||||
MAC_BOOLEAN(check_vnode_mmap_perms, &, cred, vp, &vp->v_label,
|
||||
newmapping);
|
||||
return (result);
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mmap, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
void
|
||||
mac_check_vnode_mmap_downgrade(struct ucred *cred, struct vnode *vp, int *prot)
|
||||
{
|
||||
int result = *prot;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mmap_downgrade");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return;
|
||||
|
||||
MAC_PERFORM(check_vnode_mmap_downgrade, cred, vp, &vp->v_label,
|
||||
&result);
|
||||
|
||||
*prot = result;
|
||||
}
|
||||
|
||||
int
|
||||
mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp, int prot)
|
||||
{
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_mprotect");
|
||||
|
||||
if (!mac_enforce_fs || !mac_enforce_vm)
|
||||
return (0);
|
||||
|
||||
error = vn_refreshlabel(vp, cred);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
MAC_CHECK(check_vnode_mprotect, cred, vp, &vp->v_label, prot);
|
||||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
@ -2337,7 +2380,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
struct vm_map *map)
|
||||
{
|
||||
struct vm_map_entry *vme;
|
||||
vm_prot_t result, revokeperms;
|
||||
int result;
|
||||
vm_prot_t revokeperms;
|
||||
vm_object_t object;
|
||||
vm_ooffset_t offset;
|
||||
struct vnode *vp;
|
||||
@ -2378,7 +2422,8 @@ mac_cred_mmapped_drop_perms_recurse(struct thread *td, struct ucred *cred,
|
||||
continue;
|
||||
vp = (struct vnode *)object->handle;
|
||||
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
||||
result = mac_check_vnode_mmap_prot(cred, vp, 0);
|
||||
result = vme->max_protection;
|
||||
mac_check_vnode_mmap_downgrade(cred, vp, &result);
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
/*
|
||||
* Find out what maximum protection we may be allowing
|
||||
|
@ -1563,6 +1563,34 @@ mac_biba_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_biba_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
struct mac_biba *subj, *obj;
|
||||
|
||||
/*
|
||||
* Rely on the use of open()-time protections to handle
|
||||
* non-revocation cases.
|
||||
*/
|
||||
if (!mac_biba_enabled || !mac_biba_revocation_enabled)
|
||||
return (0);
|
||||
|
||||
subj = SLOT(&cred->cr_label);
|
||||
obj = SLOT(label);
|
||||
|
||||
if (prot & (VM_PROT_READ | VM_PROT_EXECUTE)) {
|
||||
if (!mac_biba_dominate_single(obj, subj))
|
||||
return (EACCES);
|
||||
}
|
||||
if (prot & VM_PROT_WRITE) {
|
||||
if (!mac_biba_dominate_single(subj, obj))
|
||||
return (EACCES);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_biba_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
struct label *vnodelabel, mode_t acc_mode)
|
||||
@ -1909,26 +1937,6 @@ mac_biba_check_vnode_write(struct ucred *active_cred,
|
||||
return (0);
|
||||
}
|
||||
|
||||
static vm_prot_t
|
||||
mac_biba_check_vnode_mmap_perms(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int newmapping)
|
||||
{
|
||||
struct mac_biba *subj, *obj;
|
||||
vm_prot_t prot = 0;
|
||||
|
||||
if (!mac_biba_enabled || (!mac_biba_revocation_enabled && !newmapping))
|
||||
return (VM_PROT_ALL);
|
||||
|
||||
subj = SLOT(&cred->cr_label);
|
||||
obj = SLOT(label);
|
||||
|
||||
if (mac_biba_dominate_single(obj, subj))
|
||||
prot |= VM_PROT_READ | VM_PROT_EXECUTE;
|
||||
if (mac_biba_dominate_single(subj, obj))
|
||||
prot |= VM_PROT_WRITE;
|
||||
return (prot);
|
||||
}
|
||||
|
||||
static struct mac_policy_op_entry mac_biba_ops[] =
|
||||
{
|
||||
{ MAC_DESTROY,
|
||||
@ -2129,6 +2137,10 @@ static struct mac_policy_op_entry mac_biba_ops[] =
|
||||
(macop_t)mac_biba_check_vnode_link },
|
||||
{ MAC_CHECK_VNODE_LOOKUP,
|
||||
(macop_t)mac_biba_check_vnode_lookup },
|
||||
{ MAC_CHECK_VNODE_MMAP,
|
||||
(macop_t)mac_biba_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_MPROTECT,
|
||||
(macop_t)mac_biba_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_OPEN,
|
||||
(macop_t)mac_biba_check_vnode_open },
|
||||
{ MAC_CHECK_VNODE_POLL,
|
||||
@ -2163,8 +2175,6 @@ static struct mac_policy_op_entry mac_biba_ops[] =
|
||||
(macop_t)mac_biba_check_vnode_stat },
|
||||
{ MAC_CHECK_VNODE_WRITE,
|
||||
(macop_t)mac_biba_check_vnode_write },
|
||||
{ MAC_CHECK_VNODE_MMAP_PERMS,
|
||||
(macop_t)mac_biba_check_vnode_mmap_perms },
|
||||
{ MAC_OP_LAST, NULL }
|
||||
};
|
||||
|
||||
|
@ -1524,6 +1524,34 @@ mac_mls_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_mls_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
struct mac_mls *subj, *obj;
|
||||
|
||||
/*
|
||||
* Rely on the use of open()-time protections to handle
|
||||
* non-revocation cases.
|
||||
*/
|
||||
if (!mac_mls_enabled || !mac_mls_revocation_enabled)
|
||||
return (0);
|
||||
|
||||
subj = SLOT(&cred->cr_label);
|
||||
obj = SLOT(label);
|
||||
|
||||
if (prot & (VM_PROT_READ | VM_PROT_EXECUTE)) {
|
||||
if (!mac_mls_dominate_single(subj, obj))
|
||||
return (EACCES);
|
||||
}
|
||||
if (prot & VM_PROT_WRITE) {
|
||||
if (!mac_mls_dominate_single(obj, subj))
|
||||
return (EACCES);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_mls_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
struct label *vnodelabel, mode_t acc_mode)
|
||||
@ -1871,26 +1899,6 @@ mac_mls_check_vnode_write(struct ucred *active_cred, struct ucred *file_cred,
|
||||
return (0);
|
||||
}
|
||||
|
||||
static vm_prot_t
|
||||
mac_mls_check_vnode_mmap_perms(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int newmapping)
|
||||
{
|
||||
struct mac_mls *subj, *obj;
|
||||
vm_prot_t prot = 0;
|
||||
|
||||
if (!mac_mls_enabled || (!mac_mls_revocation_enabled && !newmapping))
|
||||
return (VM_PROT_ALL);
|
||||
|
||||
subj = SLOT(&cred->cr_label);
|
||||
obj = SLOT(label);
|
||||
|
||||
if (mac_mls_dominate_single(subj, obj))
|
||||
prot |= VM_PROT_READ | VM_PROT_EXECUTE;
|
||||
if (mac_mls_dominate_single(obj, subj))
|
||||
prot |= VM_PROT_WRITE;
|
||||
return (prot);
|
||||
}
|
||||
|
||||
static struct mac_policy_op_entry mac_mls_ops[] =
|
||||
{
|
||||
{ MAC_DESTROY,
|
||||
@ -2091,6 +2099,10 @@ static struct mac_policy_op_entry mac_mls_ops[] =
|
||||
(macop_t)mac_mls_check_vnode_link },
|
||||
{ MAC_CHECK_VNODE_LOOKUP,
|
||||
(macop_t)mac_mls_check_vnode_lookup },
|
||||
{ MAC_CHECK_VNODE_MMAP,
|
||||
(macop_t)mac_mls_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_MPROTECT,
|
||||
(macop_t)mac_mls_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_OPEN,
|
||||
(macop_t)mac_mls_check_vnode_open },
|
||||
{ MAC_CHECK_VNODE_POLL,
|
||||
@ -2125,8 +2137,6 @@ static struct mac_policy_op_entry mac_mls_ops[] =
|
||||
(macop_t)mac_mls_check_vnode_stat },
|
||||
{ MAC_CHECK_VNODE_WRITE,
|
||||
(macop_t)mac_mls_check_vnode_write },
|
||||
{ MAC_CHECK_VNODE_MMAP_PERMS,
|
||||
(macop_t)mac_mls_check_vnode_mmap_perms },
|
||||
{ MAC_OP_LAST, NULL }
|
||||
};
|
||||
|
||||
|
@ -689,9 +689,25 @@ static int
|
||||
mac_none_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
struct label *dlabel, struct componentname *cnp)
|
||||
{
|
||||
|
||||
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
mac_none_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_none_check_vnode_mprotect(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_none_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
@ -1041,6 +1057,10 @@ static struct mac_policy_op_entry mac_none_ops[] =
|
||||
(macop_t)mac_none_check_vnode_link },
|
||||
{ MAC_CHECK_VNODE_LOOKUP,
|
||||
(macop_t)mac_none_check_vnode_lookup },
|
||||
{ MAC_CHECK_VNODE_MMAP,
|
||||
(macop_t)mac_none_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_MPROTECT,
|
||||
(macop_t)mac_none_check_vnode_mprotect },
|
||||
{ MAC_CHECK_VNODE_OPEN,
|
||||
(macop_t)mac_none_check_vnode_open },
|
||||
{ MAC_CHECK_VNODE_POLL,
|
||||
|
@ -689,9 +689,25 @@ static int
|
||||
mac_none_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
struct label *dlabel, struct componentname *cnp)
|
||||
{
|
||||
|
||||
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
mac_none_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_none_check_vnode_mprotect(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_none_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
@ -1041,6 +1057,10 @@ static struct mac_policy_op_entry mac_none_ops[] =
|
||||
(macop_t)mac_none_check_vnode_link },
|
||||
{ MAC_CHECK_VNODE_LOOKUP,
|
||||
(macop_t)mac_none_check_vnode_lookup },
|
||||
{ MAC_CHECK_VNODE_MMAP,
|
||||
(macop_t)mac_none_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_MPROTECT,
|
||||
(macop_t)mac_none_check_vnode_mprotect },
|
||||
{ MAC_CHECK_VNODE_OPEN,
|
||||
(macop_t)mac_none_check_vnode_open },
|
||||
{ MAC_CHECK_VNODE_POLL,
|
||||
|
@ -1067,9 +1067,25 @@ static int
|
||||
mac_test_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
struct label *dlabel, struct componentname *cnp)
|
||||
{
|
||||
|
||||
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
mac_test_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_test_check_vnode_mprotect(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot)
|
||||
{
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
mac_test_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
@ -1417,6 +1433,10 @@ static struct mac_policy_op_entry mac_test_ops[] =
|
||||
(macop_t)mac_test_check_vnode_link },
|
||||
{ MAC_CHECK_VNODE_LOOKUP,
|
||||
(macop_t)mac_test_check_vnode_lookup },
|
||||
{ MAC_CHECK_VNODE_MMAP,
|
||||
(macop_t)mac_test_check_vnode_mmap },
|
||||
{ MAC_CHECK_VNODE_MPROTECT,
|
||||
(macop_t)mac_test_check_vnode_mprotect },
|
||||
{ MAC_CHECK_VNODE_OPEN,
|
||||
(macop_t)mac_test_check_vnode_open },
|
||||
{ MAC_CHECK_VNODE_POLL,
|
||||
|
@ -339,9 +339,10 @@ int mac_check_vnode_link(struct ucred *cred, struct vnode *dvp,
|
||||
struct vnode *vp, struct componentname *cnp);
|
||||
int mac_check_vnode_lookup(struct ucred *cred, struct vnode *dvp,
|
||||
struct componentname *cnp);
|
||||
/* XXX This u_char should be vm_prot_t! */
|
||||
u_char mac_check_vnode_mmap_prot(struct ucred *cred, struct vnode *vp,
|
||||
int newmapping);
|
||||
int mac_check_vnode_mmap(struct ucred *cred, struct vnode *vp,
|
||||
int prot);
|
||||
int mac_check_vnode_mprotect(struct ucred *cred, struct vnode *vp,
|
||||
int prot);
|
||||
int mac_check_vnode_open(struct ucred *cred, struct vnode *vp,
|
||||
mode_t acc_mode);
|
||||
int mac_check_vnode_poll(struct ucred *active_cred,
|
||||
|
@ -303,8 +303,12 @@ struct mac_policy_ops {
|
||||
int (*mpo_check_vnode_lookup)(struct ucred *cred,
|
||||
struct vnode *dvp, struct label *dlabel,
|
||||
struct componentname *cnp);
|
||||
vm_prot_t (*mpo_check_vnode_mmap_perms)(struct ucred *cred,
|
||||
struct vnode *vp, struct label *label, int newmapping);
|
||||
int (*mpo_check_vnode_mmap)(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, int prot);
|
||||
void (*mpo_check_vnode_mmap_downgrade)(struct ucred *cred,
|
||||
struct vnode *vp, struct label *label, int *prot);
|
||||
int (*mpo_check_vnode_mprotect)(struct ucred *cred,
|
||||
struct vnode *vp, struct label *label, int prot);
|
||||
int (*mpo_check_vnode_open)(struct ucred *cred, struct vnode *vp,
|
||||
struct label *label, mode_t acc_mode);
|
||||
int (*mpo_check_vnode_poll)(struct ucred *active_cred,
|
||||
@ -463,7 +467,9 @@ enum mac_op_constant {
|
||||
MAC_CHECK_VNODE_GETEXTATTR,
|
||||
MAC_CHECK_VNODE_LINK,
|
||||
MAC_CHECK_VNODE_LOOKUP,
|
||||
MAC_CHECK_VNODE_MMAP_PERMS,
|
||||
MAC_CHECK_VNODE_MMAP,
|
||||
MAC_CHECK_VNODE_MMAP_DOWNGRADE,
|
||||
MAC_CHECK_VNODE_MPROTECT,
|
||||
MAC_CHECK_VNODE_OPEN,
|
||||
MAC_CHECK_VNODE_POLL,
|
||||
MAC_CHECK_VNODE_READ,
|
||||
|
Loading…
Reference in New Issue
Block a user