mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 21:21:09 +00:00
kernel core: use helpers for rlimits
Make sure compiler won't do weird things with limits. E.g. fetching them
twice may return 2 different values after writable limits are implemented.
I.e. either use rlimit helpers added in commit 3e10e716ab
("resource:
add helpers for fetching rlimits") or ACCESS_ONCE if not applicable.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: john stultz <johnstul@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d4bb527438
commit
78d7d407b6
7 changed files with 20 additions and 16 deletions
|
@ -828,6 +828,8 @@ void __cleanup_sighand(struct sighand_struct *sighand)
|
||||||
*/
|
*/
|
||||||
static void posix_cpu_timers_init_group(struct signal_struct *sig)
|
static void posix_cpu_timers_init_group(struct signal_struct *sig)
|
||||||
{
|
{
|
||||||
|
unsigned long cpu_limit;
|
||||||
|
|
||||||
/* Thread group counters. */
|
/* Thread group counters. */
|
||||||
thread_group_cputime_init(sig);
|
thread_group_cputime_init(sig);
|
||||||
|
|
||||||
|
@ -842,9 +844,9 @@ static void posix_cpu_timers_init_group(struct signal_struct *sig)
|
||||||
sig->cputime_expires.virt_exp = cputime_zero;
|
sig->cputime_expires.virt_exp = cputime_zero;
|
||||||
sig->cputime_expires.sched_exp = 0;
|
sig->cputime_expires.sched_exp = 0;
|
||||||
|
|
||||||
if (sig->rlim[RLIMIT_CPU].rlim_cur != RLIM_INFINITY) {
|
cpu_limit = ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur);
|
||||||
sig->cputime_expires.prof_exp =
|
if (cpu_limit != RLIM_INFINITY) {
|
||||||
secs_to_cputime(sig->rlim[RLIMIT_CPU].rlim_cur);
|
sig->cputime_expires.prof_exp = secs_to_cputime(cpu_limit);
|
||||||
sig->cputimer.running = 1;
|
sig->cputimer.running = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1037,7 +1039,7 @@ static struct task_struct *copy_process(unsigned long clone_flags,
|
||||||
#endif
|
#endif
|
||||||
retval = -EAGAIN;
|
retval = -EAGAIN;
|
||||||
if (atomic_read(&p->real_cred->user->processes) >=
|
if (atomic_read(&p->real_cred->user->processes) >=
|
||||||
p->signal->rlim[RLIMIT_NPROC].rlim_cur) {
|
task_rlimit(p, RLIMIT_NPROC)) {
|
||||||
if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE) &&
|
if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE) &&
|
||||||
p->real_cred->user != INIT_USER)
|
p->real_cred->user != INIT_USER)
|
||||||
goto bad_fork_free;
|
goto bad_fork_free;
|
||||||
|
|
|
@ -2610,7 +2610,7 @@ static int perf_mmap(struct file *file, struct vm_area_struct *vma)
|
||||||
if (user_locked > user_lock_limit)
|
if (user_locked > user_lock_limit)
|
||||||
extra = user_locked - user_lock_limit;
|
extra = user_locked - user_lock_limit;
|
||||||
|
|
||||||
lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
|
lock_limit = rlimit(RLIMIT_MEMLOCK);
|
||||||
lock_limit >>= PAGE_SHIFT;
|
lock_limit >>= PAGE_SHIFT;
|
||||||
locked = vma->vm_mm->locked_vm + extra;
|
locked = vma->vm_mm->locked_vm + extra;
|
||||||
|
|
||||||
|
|
|
@ -1031,9 +1031,10 @@ static void check_thread_timers(struct task_struct *tsk,
|
||||||
/*
|
/*
|
||||||
* Check for the special case thread timers.
|
* Check for the special case thread timers.
|
||||||
*/
|
*/
|
||||||
soft = sig->rlim[RLIMIT_RTTIME].rlim_cur;
|
soft = ACCESS_ONCE(sig->rlim[RLIMIT_RTTIME].rlim_cur);
|
||||||
if (soft != RLIM_INFINITY) {
|
if (soft != RLIM_INFINITY) {
|
||||||
unsigned long hard = sig->rlim[RLIMIT_RTTIME].rlim_max;
|
unsigned long hard =
|
||||||
|
ACCESS_ONCE(sig->rlim[RLIMIT_RTTIME].rlim_max);
|
||||||
|
|
||||||
if (hard != RLIM_INFINITY &&
|
if (hard != RLIM_INFINITY &&
|
||||||
tsk->rt.timeout > DIV_ROUND_UP(hard, USEC_PER_SEC/HZ)) {
|
tsk->rt.timeout > DIV_ROUND_UP(hard, USEC_PER_SEC/HZ)) {
|
||||||
|
@ -1194,10 +1195,11 @@ static void check_process_timers(struct task_struct *tsk,
|
||||||
SIGPROF);
|
SIGPROF);
|
||||||
check_cpu_itimer(tsk, &sig->it[CPUCLOCK_VIRT], &virt_expires, utime,
|
check_cpu_itimer(tsk, &sig->it[CPUCLOCK_VIRT], &virt_expires, utime,
|
||||||
SIGVTALRM);
|
SIGVTALRM);
|
||||||
soft = sig->rlim[RLIMIT_CPU].rlim_cur;
|
soft = ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur);
|
||||||
if (soft != RLIM_INFINITY) {
|
if (soft != RLIM_INFINITY) {
|
||||||
unsigned long psecs = cputime_to_secs(ptime);
|
unsigned long psecs = cputime_to_secs(ptime);
|
||||||
unsigned long hard = sig->rlim[RLIMIT_CPU].rlim_max;
|
unsigned long hard =
|
||||||
|
ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_max);
|
||||||
cputime_t x;
|
cputime_t x;
|
||||||
if (psecs >= hard) {
|
if (psecs >= hard) {
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -4353,7 +4353,7 @@ int can_nice(const struct task_struct *p, const int nice)
|
||||||
/* convert nice value [19,-20] to rlimit style value [1,40] */
|
/* convert nice value [19,-20] to rlimit style value [1,40] */
|
||||||
int nice_rlim = 20 - nice;
|
int nice_rlim = 20 - nice;
|
||||||
|
|
||||||
return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
|
return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
|
||||||
capable(CAP_SYS_NICE));
|
capable(CAP_SYS_NICE));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4530,7 +4530,7 @@ recheck:
|
||||||
|
|
||||||
if (!lock_task_sighand(p, &flags))
|
if (!lock_task_sighand(p, &flags))
|
||||||
return -ESRCH;
|
return -ESRCH;
|
||||||
rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
|
rlim_rtprio = task_rlimit(p, RLIMIT_RTPRIO);
|
||||||
unlock_task_sighand(p, &flags);
|
unlock_task_sighand(p, &flags);
|
||||||
|
|
||||||
/* can't set/change the rt policy */
|
/* can't set/change the rt policy */
|
||||||
|
|
|
@ -1662,8 +1662,9 @@ static void watchdog(struct rq *rq, struct task_struct *p)
|
||||||
if (!p->signal)
|
if (!p->signal)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
soft = p->signal->rlim[RLIMIT_RTTIME].rlim_cur;
|
/* max may change after cur was read, this will be fixed next tick */
|
||||||
hard = p->signal->rlim[RLIMIT_RTTIME].rlim_max;
|
soft = task_rlimit(p, RLIMIT_RTTIME);
|
||||||
|
hard = task_rlimit_max(p, RLIMIT_RTTIME);
|
||||||
|
|
||||||
if (soft != RLIM_INFINITY) {
|
if (soft != RLIM_INFINITY) {
|
||||||
unsigned long next;
|
unsigned long next;
|
||||||
|
|
|
@ -245,7 +245,7 @@ __sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimi
|
||||||
|
|
||||||
if (override_rlimit ||
|
if (override_rlimit ||
|
||||||
atomic_read(&user->sigpending) <=
|
atomic_read(&user->sigpending) <=
|
||||||
t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur) {
|
task_rlimit(t, RLIMIT_SIGPENDING)) {
|
||||||
q = kmem_cache_alloc(sigqueue_cachep, flags);
|
q = kmem_cache_alloc(sigqueue_cachep, flags);
|
||||||
} else {
|
} else {
|
||||||
print_dropped_signal(sig);
|
print_dropped_signal(sig);
|
||||||
|
|
|
@ -571,8 +571,7 @@ static int set_user(struct cred *new)
|
||||||
if (!new_user)
|
if (!new_user)
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
|
|
||||||
if (atomic_read(&new_user->processes) >=
|
if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
|
||||||
current->signal->rlim[RLIMIT_NPROC].rlim_cur &&
|
|
||||||
new_user != INIT_USER) {
|
new_user != INIT_USER) {
|
||||||
free_uid(new_user);
|
free_uid(new_user);
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue