summaryrefslogtreecommitdiffstats
path: root/sys/security/mac/mac_policy.h
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2002-12-09 03:44:28 +0000
committerrwatson <rwatson@FreeBSD.org>2002-12-09 03:44:28 +0000
commitc5caffe9c429caa50e5fbb079d7ee14257116c62 (patch)
treed6e9f6d24a2d8fb99e7d51ac22d960517e26182b /sys/security/mac/mac_policy.h
parent5fcceddc0789f268ea6002c625215947c0cbe4b9 (diff)
downloadFreeBSD-src-c5caffe9c429caa50e5fbb079d7ee14257116c62.zip
FreeBSD-src-c5caffe9c429caa50e5fbb079d7ee14257116c62.tar.gz
Remove dm_root entry from struct devfs_mount. It's never set, and is
unused. Replace it with a dm_mount back-pointer to the struct mount that the devfs_mount is associated with. Export that pointer to MAC Framework entry points, where all current policies don't use the pointer. This permits the SEBSD port of SELinux's FLASK/TE to compile out-of-the-box on 5.0-CURRENT with full file system labeling support. Approved by: re (murray) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'sys/security/mac/mac_policy.h')
-rw-r--r--sys/security/mac/mac_policy.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/sys/security/mac/mac_policy.h b/sys/security/mac/mac_policy.h
index 454e6c6..825e45c 100644
--- a/sys/security/mac/mac_policy.h
+++ b/sys/security/mac/mac_policy.h
@@ -142,13 +142,15 @@ struct mac_policy_ops {
void (*mpo_associate_vnode_singlelabel)(struct mount *mp,
struct label *fslabel, struct vnode *vp,
struct label *vlabel);
- void (*mpo_create_devfs_device)(dev_t dev, struct devfs_dirent *de,
- struct label *label);
- void (*mpo_create_devfs_directory)(char *dirname, int dirnamelen,
+ void (*mpo_create_devfs_device)(struct mount *mp, dev_t dev,
struct devfs_dirent *de, struct label *label);
+ void (*mpo_create_devfs_directory)(struct mount *mp, char *dirname,
+ int dirnamelen, struct devfs_dirent *de,
+ struct label *label);
void (*mpo_create_devfs_symlink)(struct ucred *cred,
- struct devfs_dirent *dd, struct label *ddlabel,
- struct devfs_dirent *de, struct label *delabel);
+ struct mount *mp, struct devfs_dirent *dd,
+ struct label *ddlabel, struct devfs_dirent *de,
+ struct label *delabel);
int (*mpo_create_vnode_extattr)(struct ucred *cred,
struct mount *mp, struct label *fslabel,
struct vnode *dvp, struct label *dlabel,
@@ -163,7 +165,8 @@ struct mac_policy_ops {
int (*mpo_setlabel_vnode_extattr)(struct ucred *cred,
struct vnode *vp, struct label *vlabel,
struct label *intlabel);
- void (*mpo_update_devfsdirent)(struct devfs_dirent *devfs_dirent,
+ void (*mpo_update_devfsdirent)(struct mount *mp,
+ struct devfs_dirent *devfs_dirent,
struct label *direntlabel, struct vnode *vp,
struct label *vnodelabel);
OpenPOWER on IntegriCloud