diff options
Diffstat (limited to 'security/selinux/hooks.c')
| -rw-r--r-- | security/selinux/hooks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 41a049f50f58..c2fef7b12dc7 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
| @@ -1630,6 +1630,12 @@ static inline u32 file_to_av(struct file *file) | |||
| 1630 | else | 1630 | else |
| 1631 | av |= FILE__WRITE; | 1631 | av |= FILE__WRITE; |
| 1632 | } | 1632 | } |
| 1633 | if (!av) { | ||
| 1634 | /* | ||
| 1635 | * Special file opened with flags 3 for ioctl-only use. | ||
| 1636 | */ | ||
| 1637 | av = FILE__IOCTL; | ||
| 1638 | } | ||
| 1633 | 1639 | ||
| 1634 | return av; | 1640 | return av; |
| 1635 | } | 1641 | } |
