Skip to content

Commit

Permalink
switch mqueue syscalls to fget_light()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Sep 27, 2012
1 parent bdbf694 commit 515e0d6
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions ipc/mqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, const char __user *, u_msg_ptr,
ktime_t expires, *timeout = NULL;
struct timespec ts;
struct posix_msg_tree_node *new_leaf = NULL;
int ret = 0;
int ret = 0, fput_needed;

if (u_abs_timeout) {
int res = prepare_timeout(u_abs_timeout, &expires, &ts);
Expand All @@ -967,7 +967,7 @@ SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, const char __user *, u_msg_ptr,

audit_mq_sendrecv(mqdes, msg_len, msg_prio, timeout ? &ts : NULL);

filp = fget(mqdes);
filp = fget_light(mqdes, &fput_needed);
if (unlikely(!filp)) {
ret = -EBADF;
goto out;
Expand Down Expand Up @@ -1056,7 +1056,7 @@ SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, const char __user *, u_msg_ptr,
if (ret)
free_msg(msg_ptr);
out_fput:
fput(filp);
fput_light(filp, fput_needed);
out:
return ret;
}
Expand All @@ -1074,6 +1074,7 @@ SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,
ktime_t expires, *timeout = NULL;
struct timespec ts;
struct posix_msg_tree_node *new_leaf = NULL;
int fput_needed;

if (u_abs_timeout) {
int res = prepare_timeout(u_abs_timeout, &expires, &ts);
Expand All @@ -1084,7 +1085,7 @@ SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,

audit_mq_sendrecv(mqdes, msg_len, 0, timeout ? &ts : NULL);

filp = fget(mqdes);
filp = fget_light(mqdes, &fput_needed);
if (unlikely(!filp)) {
ret = -EBADF;
goto out;
Expand Down Expand Up @@ -1160,7 +1161,7 @@ SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,
free_msg(msg_ptr);
}
out_fput:
fput(filp);
fput_light(filp, fput_needed);
out:
return ret;
}
Expand All @@ -1173,7 +1174,7 @@ SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,
SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes,
const struct sigevent __user *, u_notification)
{
int ret;
int ret, fput_needed;
struct file *filp;
struct sock *sock;
struct inode *inode;
Expand Down Expand Up @@ -1220,13 +1221,13 @@ SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes,
skb_put(nc, NOTIFY_COOKIE_LEN);
/* and attach it to the socket */
retry:
filp = fget(notification.sigev_signo);
filp = fget_light(notification.sigev_signo, &fput_needed);
if (!filp) {
ret = -EBADF;
goto out;
}
sock = netlink_getsockbyfilp(filp);
fput(filp);
fput_light(filp, fput_needed);
if (IS_ERR(sock)) {
ret = PTR_ERR(sock);
sock = NULL;
Expand All @@ -1245,7 +1246,7 @@ SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes,
}
}

filp = fget(mqdes);
filp = fget_light(mqdes, &fput_needed);
if (!filp) {
ret = -EBADF;
goto out;
Expand Down Expand Up @@ -1292,7 +1293,7 @@ SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes,
}
spin_unlock(&info->lock);
out_fput:
fput(filp);
fput_light(filp, fput_needed);
out:
if (sock) {
netlink_detachskb(sock, nc);
Expand All @@ -1308,6 +1309,7 @@ SYSCALL_DEFINE3(mq_getsetattr, mqd_t, mqdes,
{
int ret;
struct mq_attr mqstat, omqstat;
int fput_needed;
struct file *filp;
struct inode *inode;
struct mqueue_inode_info *info;
Expand All @@ -1319,7 +1321,7 @@ SYSCALL_DEFINE3(mq_getsetattr, mqd_t, mqdes,
return -EINVAL;
}

filp = fget(mqdes);
filp = fget_light(mqdes, &fput_needed);
if (!filp) {
ret = -EBADF;
goto out;
Expand Down Expand Up @@ -1356,7 +1358,7 @@ SYSCALL_DEFINE3(mq_getsetattr, mqd_t, mqdes,
ret = -EFAULT;

out_fput:
fput(filp);
fput_light(filp, fput_needed);
out:
return ret;
}
Expand Down

0 comments on commit 515e0d6

Please sign in to comment.