|
@@ -301,8 +301,9 @@ static int mqueue_create(struct inode *dir, struct dentry *dentry,
|
|
error = -EACCES;
|
|
error = -EACCES;
|
|
goto out_unlock;
|
|
goto out_unlock;
|
|
}
|
|
}
|
|
- if (ipc_ns->mq_queues_count >= ipc_ns->mq_queues_max &&
|
|
|
|
- !capable(CAP_SYS_RESOURCE)) {
|
|
|
|
|
|
+ if (ipc_ns->mq_queues_count >= HARD_QUEUESMAX ||
|
|
|
|
+ (ipc_ns->mq_queues_count >= ipc_ns->mq_queues_max &&
|
|
|
|
+ !capable(CAP_SYS_RESOURCE))) {
|
|
error = -ENOSPC;
|
|
error = -ENOSPC;
|
|
goto out_unlock;
|
|
goto out_unlock;
|
|
}
|
|
}
|
|
@@ -589,7 +590,8 @@ static int mq_attr_ok(struct ipc_namespace *ipc_ns, struct mq_attr *attr)
|
|
if (attr->mq_maxmsg <= 0 || attr->mq_msgsize <= 0)
|
|
if (attr->mq_maxmsg <= 0 || attr->mq_msgsize <= 0)
|
|
return 0;
|
|
return 0;
|
|
if (capable(CAP_SYS_RESOURCE)) {
|
|
if (capable(CAP_SYS_RESOURCE)) {
|
|
- if (attr->mq_maxmsg > HARD_MSGMAX)
|
|
|
|
|
|
+ if (attr->mq_maxmsg > HARD_MSGMAX ||
|
|
|
|
+ attr->mq_msgsize > HARD_MSGSIZEMAX)
|
|
return 0;
|
|
return 0;
|
|
} else {
|
|
} else {
|
|
if (attr->mq_maxmsg > ipc_ns->mq_msg_max ||
|
|
if (attr->mq_maxmsg > ipc_ns->mq_msg_max ||
|