LSM: restore certain default error codes
While in most cases commit b1d9e6b064
("LSM: Switch to lists of hooks")
retained previous error returns, in three cases it altered them without
any explanation in the commit message. Restore all of them - in the
security_old_inode_init_security() case this led to reiserfs using
uninitialized data, sooner or later crashing the system (the only other
user of this function - ocfs2 - was unaffected afaict, since it passes
pre-initialized structures).
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Signed-off-by: James Morris <james.l.morris@oracle.com>
This commit is contained in:
parent
b1713b135f
commit
e308fd3bb2
|
@ -380,8 +380,8 @@ int security_inode_init_security(struct inode *inode, struct inode *dir,
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (!initxattrs)
|
if (!initxattrs)
|
||||||
return call_int_hook(inode_init_security, 0, inode, dir, qstr,
|
return call_int_hook(inode_init_security, -EOPNOTSUPP, inode,
|
||||||
NULL, NULL, NULL);
|
dir, qstr, NULL, NULL, NULL);
|
||||||
memset(new_xattrs, 0, sizeof(new_xattrs));
|
memset(new_xattrs, 0, sizeof(new_xattrs));
|
||||||
lsm_xattr = new_xattrs;
|
lsm_xattr = new_xattrs;
|
||||||
ret = call_int_hook(inode_init_security, -EOPNOTSUPP, inode, dir, qstr,
|
ret = call_int_hook(inode_init_security, -EOPNOTSUPP, inode, dir, qstr,
|
||||||
|
@ -409,8 +409,8 @@ int security_old_inode_init_security(struct inode *inode, struct inode *dir,
|
||||||
{
|
{
|
||||||
if (unlikely(IS_PRIVATE(inode)))
|
if (unlikely(IS_PRIVATE(inode)))
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
return call_int_hook(inode_init_security, 0, inode, dir, qstr,
|
return call_int_hook(inode_init_security, -EOPNOTSUPP, inode, dir,
|
||||||
name, value, len);
|
qstr, name, value, len);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(security_old_inode_init_security);
|
EXPORT_SYMBOL(security_old_inode_init_security);
|
||||||
|
|
||||||
|
@ -1281,7 +1281,8 @@ int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
|
||||||
|
|
||||||
int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
|
int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
|
||||||
{
|
{
|
||||||
return call_int_hook(socket_getpeersec_dgram, 0, sock, skb, secid);
|
return call_int_hook(socket_getpeersec_dgram, -ENOPROTOOPT, sock,
|
||||||
|
skb, secid);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(security_socket_getpeersec_dgram);
|
EXPORT_SYMBOL(security_socket_getpeersec_dgram);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue