]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - kernel/sys.c
sched/headers: Prepare for new header dependencies before moving code to <linux/sched...
[karo-tx-linux.git] / kernel / sys.c
1 /*
2  *  linux/kernel/sys.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 #include <linux/export.h>
8 #include <linux/mm.h>
9 #include <linux/utsname.h>
10 #include <linux/mman.h>
11 #include <linux/reboot.h>
12 #include <linux/prctl.h>
13 #include <linux/highuid.h>
14 #include <linux/fs.h>
15 #include <linux/kmod.h>
16 #include <linux/perf_event.h>
17 #include <linux/resource.h>
18 #include <linux/kernel.h>
19 #include <linux/workqueue.h>
20 #include <linux/capability.h>
21 #include <linux/device.h>
22 #include <linux/key.h>
23 #include <linux/times.h>
24 #include <linux/posix-timers.h>
25 #include <linux/security.h>
26 #include <linux/dcookies.h>
27 #include <linux/suspend.h>
28 #include <linux/tty.h>
29 #include <linux/signal.h>
30 #include <linux/cn_proc.h>
31 #include <linux/getcpu.h>
32 #include <linux/task_io_accounting_ops.h>
33 #include <linux/seccomp.h>
34 #include <linux/cpu.h>
35 #include <linux/personality.h>
36 #include <linux/ptrace.h>
37 #include <linux/fs_struct.h>
38 #include <linux/file.h>
39 #include <linux/mount.h>
40 #include <linux/gfp.h>
41 #include <linux/syscore_ops.h>
42 #include <linux/version.h>
43 #include <linux/ctype.h>
44
45 #include <linux/compat.h>
46 #include <linux/syscalls.h>
47 #include <linux/kprobes.h>
48 #include <linux/user_namespace.h>
49 #include <linux/binfmts.h>
50
51 #include <linux/sched.h>
52 #include <linux/sched/autogroup.h>
53 #include <linux/sched/loadavg.h>
54 #include <linux/rcupdate.h>
55 #include <linux/uidgid.h>
56 #include <linux/cred.h>
57
58 #include <linux/kmsg_dump.h>
59 /* Move somewhere else to avoid recompiling? */
60 #include <generated/utsrelease.h>
61
62 #include <linux/uaccess.h>
63 #include <asm/io.h>
64 #include <asm/unistd.h>
65
66 #ifndef SET_UNALIGN_CTL
67 # define SET_UNALIGN_CTL(a, b)  (-EINVAL)
68 #endif
69 #ifndef GET_UNALIGN_CTL
70 # define GET_UNALIGN_CTL(a, b)  (-EINVAL)
71 #endif
72 #ifndef SET_FPEMU_CTL
73 # define SET_FPEMU_CTL(a, b)    (-EINVAL)
74 #endif
75 #ifndef GET_FPEMU_CTL
76 # define GET_FPEMU_CTL(a, b)    (-EINVAL)
77 #endif
78 #ifndef SET_FPEXC_CTL
79 # define SET_FPEXC_CTL(a, b)    (-EINVAL)
80 #endif
81 #ifndef GET_FPEXC_CTL
82 # define GET_FPEXC_CTL(a, b)    (-EINVAL)
83 #endif
84 #ifndef GET_ENDIAN
85 # define GET_ENDIAN(a, b)       (-EINVAL)
86 #endif
87 #ifndef SET_ENDIAN
88 # define SET_ENDIAN(a, b)       (-EINVAL)
89 #endif
90 #ifndef GET_TSC_CTL
91 # define GET_TSC_CTL(a)         (-EINVAL)
92 #endif
93 #ifndef SET_TSC_CTL
94 # define SET_TSC_CTL(a)         (-EINVAL)
95 #endif
96 #ifndef MPX_ENABLE_MANAGEMENT
97 # define MPX_ENABLE_MANAGEMENT()        (-EINVAL)
98 #endif
99 #ifndef MPX_DISABLE_MANAGEMENT
100 # define MPX_DISABLE_MANAGEMENT()       (-EINVAL)
101 #endif
102 #ifndef GET_FP_MODE
103 # define GET_FP_MODE(a)         (-EINVAL)
104 #endif
105 #ifndef SET_FP_MODE
106 # define SET_FP_MODE(a,b)       (-EINVAL)
107 #endif
108
109 /*
110  * this is where the system-wide overflow UID and GID are defined, for
111  * architectures that now have 32-bit UID/GID but didn't in the past
112  */
113
114 int overflowuid = DEFAULT_OVERFLOWUID;
115 int overflowgid = DEFAULT_OVERFLOWGID;
116
117 EXPORT_SYMBOL(overflowuid);
118 EXPORT_SYMBOL(overflowgid);
119
120 /*
121  * the same as above, but for filesystems which can only store a 16-bit
122  * UID and GID. as such, this is needed on all architectures
123  */
124
125 int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
126 int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
127
128 EXPORT_SYMBOL(fs_overflowuid);
129 EXPORT_SYMBOL(fs_overflowgid);
130
131 /*
132  * Returns true if current's euid is same as p's uid or euid,
133  * or has CAP_SYS_NICE to p's user_ns.
134  *
135  * Called with rcu_read_lock, creds are safe
136  */
137 static bool set_one_prio_perm(struct task_struct *p)
138 {
139         const struct cred *cred = current_cred(), *pcred = __task_cred(p);
140
141         if (uid_eq(pcred->uid,  cred->euid) ||
142             uid_eq(pcred->euid, cred->euid))
143                 return true;
144         if (ns_capable(pcred->user_ns, CAP_SYS_NICE))
145                 return true;
146         return false;
147 }
148
149 /*
150  * set the priority of a task
151  * - the caller must hold the RCU read lock
152  */
153 static int set_one_prio(struct task_struct *p, int niceval, int error)
154 {
155         int no_nice;
156
157         if (!set_one_prio_perm(p)) {
158                 error = -EPERM;
159                 goto out;
160         }
161         if (niceval < task_nice(p) && !can_nice(p, niceval)) {
162                 error = -EACCES;
163                 goto out;
164         }
165         no_nice = security_task_setnice(p, niceval);
166         if (no_nice) {
167                 error = no_nice;
168                 goto out;
169         }
170         if (error == -ESRCH)
171                 error = 0;
172         set_user_nice(p, niceval);
173 out:
174         return error;
175 }
176
177 SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
178 {
179         struct task_struct *g, *p;
180         struct user_struct *user;
181         const struct cred *cred = current_cred();
182         int error = -EINVAL;
183         struct pid *pgrp;
184         kuid_t uid;
185
186         if (which > PRIO_USER || which < PRIO_PROCESS)
187                 goto out;
188
189         /* normalize: avoid signed division (rounding problems) */
190         error = -ESRCH;
191         if (niceval < MIN_NICE)
192                 niceval = MIN_NICE;
193         if (niceval > MAX_NICE)
194                 niceval = MAX_NICE;
195
196         rcu_read_lock();
197         read_lock(&tasklist_lock);
198         switch (which) {
199         case PRIO_PROCESS:
200                 if (who)
201                         p = find_task_by_vpid(who);
202                 else
203                         p = current;
204                 if (p)
205                         error = set_one_prio(p, niceval, error);
206                 break;
207         case PRIO_PGRP:
208                 if (who)
209                         pgrp = find_vpid(who);
210                 else
211                         pgrp = task_pgrp(current);
212                 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
213                         error = set_one_prio(p, niceval, error);
214                 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
215                 break;
216         case PRIO_USER:
217                 uid = make_kuid(cred->user_ns, who);
218                 user = cred->user;
219                 if (!who)
220                         uid = cred->uid;
221                 else if (!uid_eq(uid, cred->uid)) {
222                         user = find_user(uid);
223                         if (!user)
224                                 goto out_unlock;        /* No processes for this user */
225                 }
226                 do_each_thread(g, p) {
227                         if (uid_eq(task_uid(p), uid) && task_pid_vnr(p))
228                                 error = set_one_prio(p, niceval, error);
229                 } while_each_thread(g, p);
230                 if (!uid_eq(uid, cred->uid))
231                         free_uid(user);         /* For find_user() */
232                 break;
233         }
234 out_unlock:
235         read_unlock(&tasklist_lock);
236         rcu_read_unlock();
237 out:
238         return error;
239 }
240
241 /*
242  * Ugh. To avoid negative return values, "getpriority()" will
243  * not return the normal nice-value, but a negated value that
244  * has been offset by 20 (ie it returns 40..1 instead of -20..19)
245  * to stay compatible.
246  */
247 SYSCALL_DEFINE2(getpriority, int, which, int, who)
248 {
249         struct task_struct *g, *p;
250         struct user_struct *user;
251         const struct cred *cred = current_cred();
252         long niceval, retval = -ESRCH;
253         struct pid *pgrp;
254         kuid_t uid;
255
256         if (which > PRIO_USER || which < PRIO_PROCESS)
257                 return -EINVAL;
258
259         rcu_read_lock();
260         read_lock(&tasklist_lock);
261         switch (which) {
262         case PRIO_PROCESS:
263                 if (who)
264                         p = find_task_by_vpid(who);
265                 else
266                         p = current;
267                 if (p) {
268                         niceval = nice_to_rlimit(task_nice(p));
269                         if (niceval > retval)
270                                 retval = niceval;
271                 }
272                 break;
273         case PRIO_PGRP:
274                 if (who)
275                         pgrp = find_vpid(who);
276                 else
277                         pgrp = task_pgrp(current);
278                 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
279                         niceval = nice_to_rlimit(task_nice(p));
280                         if (niceval > retval)
281                                 retval = niceval;
282                 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
283                 break;
284         case PRIO_USER:
285                 uid = make_kuid(cred->user_ns, who);
286                 user = cred->user;
287                 if (!who)
288                         uid = cred->uid;
289                 else if (!uid_eq(uid, cred->uid)) {
290                         user = find_user(uid);
291                         if (!user)
292                                 goto out_unlock;        /* No processes for this user */
293                 }
294                 do_each_thread(g, p) {
295                         if (uid_eq(task_uid(p), uid) && task_pid_vnr(p)) {
296                                 niceval = nice_to_rlimit(task_nice(p));
297                                 if (niceval > retval)
298                                         retval = niceval;
299                         }
300                 } while_each_thread(g, p);
301                 if (!uid_eq(uid, cred->uid))
302                         free_uid(user);         /* for find_user() */
303                 break;
304         }
305 out_unlock:
306         read_unlock(&tasklist_lock);
307         rcu_read_unlock();
308
309         return retval;
310 }
311
312 /*
313  * Unprivileged users may change the real gid to the effective gid
314  * or vice versa.  (BSD-style)
315  *
316  * If you set the real gid at all, or set the effective gid to a value not
317  * equal to the real gid, then the saved gid is set to the new effective gid.
318  *
319  * This makes it possible for a setgid program to completely drop its
320  * privileges, which is often a useful assertion to make when you are doing
321  * a security audit over a program.
322  *
323  * The general idea is that a program which uses just setregid() will be
324  * 100% compatible with BSD.  A program which uses just setgid() will be
325  * 100% compatible with POSIX with saved IDs.
326  *
327  * SMP: There are not races, the GIDs are checked only by filesystem
328  *      operations (as far as semantic preservation is concerned).
329  */
330 #ifdef CONFIG_MULTIUSER
331 SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
332 {
333         struct user_namespace *ns = current_user_ns();
334         const struct cred *old;
335         struct cred *new;
336         int retval;
337         kgid_t krgid, kegid;
338
339         krgid = make_kgid(ns, rgid);
340         kegid = make_kgid(ns, egid);
341
342         if ((rgid != (gid_t) -1) && !gid_valid(krgid))
343                 return -EINVAL;
344         if ((egid != (gid_t) -1) && !gid_valid(kegid))
345                 return -EINVAL;
346
347         new = prepare_creds();
348         if (!new)
349                 return -ENOMEM;
350         old = current_cred();
351
352         retval = -EPERM;
353         if (rgid != (gid_t) -1) {
354                 if (gid_eq(old->gid, krgid) ||
355                     gid_eq(old->egid, krgid) ||
356                     ns_capable(old->user_ns, CAP_SETGID))
357                         new->gid = krgid;
358                 else
359                         goto error;
360         }
361         if (egid != (gid_t) -1) {
362                 if (gid_eq(old->gid, kegid) ||
363                     gid_eq(old->egid, kegid) ||
364                     gid_eq(old->sgid, kegid) ||
365                     ns_capable(old->user_ns, CAP_SETGID))
366                         new->egid = kegid;
367                 else
368                         goto error;
369         }
370
371         if (rgid != (gid_t) -1 ||
372             (egid != (gid_t) -1 && !gid_eq(kegid, old->gid)))
373                 new->sgid = new->egid;
374         new->fsgid = new->egid;
375
376         return commit_creds(new);
377
378 error:
379         abort_creds(new);
380         return retval;
381 }
382
383 /*
384  * setgid() is implemented like SysV w/ SAVED_IDS
385  *
386  * SMP: Same implicit races as above.
387  */
388 SYSCALL_DEFINE1(setgid, gid_t, gid)
389 {
390         struct user_namespace *ns = current_user_ns();
391         const struct cred *old;
392         struct cred *new;
393         int retval;
394         kgid_t kgid;
395
396         kgid = make_kgid(ns, gid);
397         if (!gid_valid(kgid))
398                 return -EINVAL;
399
400         new = prepare_creds();
401         if (!new)
402                 return -ENOMEM;
403         old = current_cred();
404
405         retval = -EPERM;
406         if (ns_capable(old->user_ns, CAP_SETGID))
407                 new->gid = new->egid = new->sgid = new->fsgid = kgid;
408         else if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->sgid))
409                 new->egid = new->fsgid = kgid;
410         else
411                 goto error;
412
413         return commit_creds(new);
414
415 error:
416         abort_creds(new);
417         return retval;
418 }
419
420 /*
421  * change the user struct in a credentials set to match the new UID
422  */
423 static int set_user(struct cred *new)
424 {
425         struct user_struct *new_user;
426
427         new_user = alloc_uid(new->uid);
428         if (!new_user)
429                 return -EAGAIN;
430
431         /*
432          * We don't fail in case of NPROC limit excess here because too many
433          * poorly written programs don't check set*uid() return code, assuming
434          * it never fails if called by root.  We may still enforce NPROC limit
435          * for programs doing set*uid()+execve() by harmlessly deferring the
436          * failure to the execve() stage.
437          */
438         if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
439                         new_user != INIT_USER)
440                 current->flags |= PF_NPROC_EXCEEDED;
441         else
442                 current->flags &= ~PF_NPROC_EXCEEDED;
443
444         free_uid(new->user);
445         new->user = new_user;
446         return 0;
447 }
448
449 /*
450  * Unprivileged users may change the real uid to the effective uid
451  * or vice versa.  (BSD-style)
452  *
453  * If you set the real uid at all, or set the effective uid to a value not
454  * equal to the real uid, then the saved uid is set to the new effective uid.
455  *
456  * This makes it possible for a setuid program to completely drop its
457  * privileges, which is often a useful assertion to make when you are doing
458  * a security audit over a program.
459  *
460  * The general idea is that a program which uses just setreuid() will be
461  * 100% compatible with BSD.  A program which uses just setuid() will be
462  * 100% compatible with POSIX with saved IDs.
463  */
464 SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
465 {
466         struct user_namespace *ns = current_user_ns();
467         const struct cred *old;
468         struct cred *new;
469         int retval;
470         kuid_t kruid, keuid;
471
472         kruid = make_kuid(ns, ruid);
473         keuid = make_kuid(ns, euid);
474
475         if ((ruid != (uid_t) -1) && !uid_valid(kruid))
476                 return -EINVAL;
477         if ((euid != (uid_t) -1) && !uid_valid(keuid))
478                 return -EINVAL;
479
480         new = prepare_creds();
481         if (!new)
482                 return -ENOMEM;
483         old = current_cred();
484
485         retval = -EPERM;
486         if (ruid != (uid_t) -1) {
487                 new->uid = kruid;
488                 if (!uid_eq(old->uid, kruid) &&
489                     !uid_eq(old->euid, kruid) &&
490                     !ns_capable(old->user_ns, CAP_SETUID))
491                         goto error;
492         }
493
494         if (euid != (uid_t) -1) {
495                 new->euid = keuid;
496                 if (!uid_eq(old->uid, keuid) &&
497                     !uid_eq(old->euid, keuid) &&
498                     !uid_eq(old->suid, keuid) &&
499                     !ns_capable(old->user_ns, CAP_SETUID))
500                         goto error;
501         }
502
503         if (!uid_eq(new->uid, old->uid)) {
504                 retval = set_user(new);
505                 if (retval < 0)
506                         goto error;
507         }
508         if (ruid != (uid_t) -1 ||
509             (euid != (uid_t) -1 && !uid_eq(keuid, old->uid)))
510                 new->suid = new->euid;
511         new->fsuid = new->euid;
512
513         retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
514         if (retval < 0)
515                 goto error;
516
517         return commit_creds(new);
518
519 error:
520         abort_creds(new);
521         return retval;
522 }
523
524 /*
525  * setuid() is implemented like SysV with SAVED_IDS
526  *
527  * Note that SAVED_ID's is deficient in that a setuid root program
528  * like sendmail, for example, cannot set its uid to be a normal
529  * user and then switch back, because if you're root, setuid() sets
530  * the saved uid too.  If you don't like this, blame the bright people
531  * in the POSIX committee and/or USG.  Note that the BSD-style setreuid()
532  * will allow a root program to temporarily drop privileges and be able to
533  * regain them by swapping the real and effective uid.
534  */
535 SYSCALL_DEFINE1(setuid, uid_t, uid)
536 {
537         struct user_namespace *ns = current_user_ns();
538         const struct cred *old;
539         struct cred *new;
540         int retval;
541         kuid_t kuid;
542
543         kuid = make_kuid(ns, uid);
544         if (!uid_valid(kuid))
545                 return -EINVAL;
546
547         new = prepare_creds();
548         if (!new)
549                 return -ENOMEM;
550         old = current_cred();
551
552         retval = -EPERM;
553         if (ns_capable(old->user_ns, CAP_SETUID)) {
554                 new->suid = new->uid = kuid;
555                 if (!uid_eq(kuid, old->uid)) {
556                         retval = set_user(new);
557                         if (retval < 0)
558                                 goto error;
559                 }
560         } else if (!uid_eq(kuid, old->uid) && !uid_eq(kuid, new->suid)) {
561                 goto error;
562         }
563
564         new->fsuid = new->euid = kuid;
565
566         retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
567         if (retval < 0)
568                 goto error;
569
570         return commit_creds(new);
571
572 error:
573         abort_creds(new);
574         return retval;
575 }
576
577
578 /*
579  * This function implements a generic ability to update ruid, euid,
580  * and suid.  This allows you to implement the 4.4 compatible seteuid().
581  */
582 SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
583 {
584         struct user_namespace *ns = current_user_ns();
585         const struct cred *old;
586         struct cred *new;
587         int retval;
588         kuid_t kruid, keuid, ksuid;
589
590         kruid = make_kuid(ns, ruid);
591         keuid = make_kuid(ns, euid);
592         ksuid = make_kuid(ns, suid);
593
594         if ((ruid != (uid_t) -1) && !uid_valid(kruid))
595                 return -EINVAL;
596
597         if ((euid != (uid_t) -1) && !uid_valid(keuid))
598                 return -EINVAL;
599
600         if ((suid != (uid_t) -1) && !uid_valid(ksuid))
601                 return -EINVAL;
602
603         new = prepare_creds();
604         if (!new)
605                 return -ENOMEM;
606
607         old = current_cred();
608
609         retval = -EPERM;
610         if (!ns_capable(old->user_ns, CAP_SETUID)) {
611                 if (ruid != (uid_t) -1        && !uid_eq(kruid, old->uid) &&
612                     !uid_eq(kruid, old->euid) && !uid_eq(kruid, old->suid))
613                         goto error;
614                 if (euid != (uid_t) -1        && !uid_eq(keuid, old->uid) &&
615                     !uid_eq(keuid, old->euid) && !uid_eq(keuid, old->suid))
616                         goto error;
617                 if (suid != (uid_t) -1        && !uid_eq(ksuid, old->uid) &&
618                     !uid_eq(ksuid, old->euid) && !uid_eq(ksuid, old->suid))
619                         goto error;
620         }
621
622         if (ruid != (uid_t) -1) {
623                 new->uid = kruid;
624                 if (!uid_eq(kruid, old->uid)) {
625                         retval = set_user(new);
626                         if (retval < 0)
627                                 goto error;
628                 }
629         }
630         if (euid != (uid_t) -1)
631                 new->euid = keuid;
632         if (suid != (uid_t) -1)
633                 new->suid = ksuid;
634         new->fsuid = new->euid;
635
636         retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
637         if (retval < 0)
638                 goto error;
639
640         return commit_creds(new);
641
642 error:
643         abort_creds(new);
644         return retval;
645 }
646
647 SYSCALL_DEFINE3(getresuid, uid_t __user *, ruidp, uid_t __user *, euidp, uid_t __user *, suidp)
648 {
649         const struct cred *cred = current_cred();
650         int retval;
651         uid_t ruid, euid, suid;
652
653         ruid = from_kuid_munged(cred->user_ns, cred->uid);
654         euid = from_kuid_munged(cred->user_ns, cred->euid);
655         suid = from_kuid_munged(cred->user_ns, cred->suid);
656
657         retval = put_user(ruid, ruidp);
658         if (!retval) {
659                 retval = put_user(euid, euidp);
660                 if (!retval)
661                         return put_user(suid, suidp);
662         }
663         return retval;
664 }
665
666 /*
667  * Same as above, but for rgid, egid, sgid.
668  */
669 SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
670 {
671         struct user_namespace *ns = current_user_ns();
672         const struct cred *old;
673         struct cred *new;
674         int retval;
675         kgid_t krgid, kegid, ksgid;
676
677         krgid = make_kgid(ns, rgid);
678         kegid = make_kgid(ns, egid);
679         ksgid = make_kgid(ns, sgid);
680
681         if ((rgid != (gid_t) -1) && !gid_valid(krgid))
682                 return -EINVAL;
683         if ((egid != (gid_t) -1) && !gid_valid(kegid))
684                 return -EINVAL;
685         if ((sgid != (gid_t) -1) && !gid_valid(ksgid))
686                 return -EINVAL;
687
688         new = prepare_creds();
689         if (!new)
690                 return -ENOMEM;
691         old = current_cred();
692
693         retval = -EPERM;
694         if (!ns_capable(old->user_ns, CAP_SETGID)) {
695                 if (rgid != (gid_t) -1        && !gid_eq(krgid, old->gid) &&
696                     !gid_eq(krgid, old->egid) && !gid_eq(krgid, old->sgid))
697                         goto error;
698                 if (egid != (gid_t) -1        && !gid_eq(kegid, old->gid) &&
699                     !gid_eq(kegid, old->egid) && !gid_eq(kegid, old->sgid))
700                         goto error;
701                 if (sgid != (gid_t) -1        && !gid_eq(ksgid, old->gid) &&
702                     !gid_eq(ksgid, old->egid) && !gid_eq(ksgid, old->sgid))
703                         goto error;
704         }
705
706         if (rgid != (gid_t) -1)
707                 new->gid = krgid;
708         if (egid != (gid_t) -1)
709                 new->egid = kegid;
710         if (sgid != (gid_t) -1)
711                 new->sgid = ksgid;
712         new->fsgid = new->egid;
713
714         return commit_creds(new);
715
716 error:
717         abort_creds(new);
718         return retval;
719 }
720
721 SYSCALL_DEFINE3(getresgid, gid_t __user *, rgidp, gid_t __user *, egidp, gid_t __user *, sgidp)
722 {
723         const struct cred *cred = current_cred();
724         int retval;
725         gid_t rgid, egid, sgid;
726
727         rgid = from_kgid_munged(cred->user_ns, cred->gid);
728         egid = from_kgid_munged(cred->user_ns, cred->egid);
729         sgid = from_kgid_munged(cred->user_ns, cred->sgid);
730
731         retval = put_user(rgid, rgidp);
732         if (!retval) {
733                 retval = put_user(egid, egidp);
734                 if (!retval)
735                         retval = put_user(sgid, sgidp);
736         }
737
738         return retval;
739 }
740
741
742 /*
743  * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
744  * is used for "access()" and for the NFS daemon (letting nfsd stay at
745  * whatever uid it wants to). It normally shadows "euid", except when
746  * explicitly set by setfsuid() or for access..
747  */
748 SYSCALL_DEFINE1(setfsuid, uid_t, uid)
749 {
750         const struct cred *old;
751         struct cred *new;
752         uid_t old_fsuid;
753         kuid_t kuid;
754
755         old = current_cred();
756         old_fsuid = from_kuid_munged(old->user_ns, old->fsuid);
757
758         kuid = make_kuid(old->user_ns, uid);
759         if (!uid_valid(kuid))
760                 return old_fsuid;
761
762         new = prepare_creds();
763         if (!new)
764                 return old_fsuid;
765
766         if (uid_eq(kuid, old->uid)  || uid_eq(kuid, old->euid)  ||
767             uid_eq(kuid, old->suid) || uid_eq(kuid, old->fsuid) ||
768             ns_capable(old->user_ns, CAP_SETUID)) {
769                 if (!uid_eq(kuid, old->fsuid)) {
770                         new->fsuid = kuid;
771                         if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
772                                 goto change_okay;
773                 }
774         }
775
776         abort_creds(new);
777         return old_fsuid;
778
779 change_okay:
780         commit_creds(new);
781         return old_fsuid;
782 }
783
784 /*
785  * Samma pÃ¥ svenska..
786  */
787 SYSCALL_DEFINE1(setfsgid, gid_t, gid)
788 {
789         const struct cred *old;
790         struct cred *new;
791         gid_t old_fsgid;
792         kgid_t kgid;
793
794         old = current_cred();
795         old_fsgid = from_kgid_munged(old->user_ns, old->fsgid);
796
797         kgid = make_kgid(old->user_ns, gid);
798         if (!gid_valid(kgid))
799                 return old_fsgid;
800
801         new = prepare_creds();
802         if (!new)
803                 return old_fsgid;
804
805         if (gid_eq(kgid, old->gid)  || gid_eq(kgid, old->egid)  ||
806             gid_eq(kgid, old->sgid) || gid_eq(kgid, old->fsgid) ||
807             ns_capable(old->user_ns, CAP_SETGID)) {
808                 if (!gid_eq(kgid, old->fsgid)) {
809                         new->fsgid = kgid;
810                         goto change_okay;
811                 }
812         }
813
814         abort_creds(new);
815         return old_fsgid;
816
817 change_okay:
818         commit_creds(new);
819         return old_fsgid;
820 }
821 #endif /* CONFIG_MULTIUSER */
822
823 /**
824  * sys_getpid - return the thread group id of the current process
825  *
826  * Note, despite the name, this returns the tgid not the pid.  The tgid and
827  * the pid are identical unless CLONE_THREAD was specified on clone() in
828  * which case the tgid is the same in all threads of the same group.
829  *
830  * This is SMP safe as current->tgid does not change.
831  */
832 SYSCALL_DEFINE0(getpid)
833 {
834         return task_tgid_vnr(current);
835 }
836
837 /* Thread ID - the internal kernel "pid" */
838 SYSCALL_DEFINE0(gettid)
839 {
840         return task_pid_vnr(current);
841 }
842
843 /*
844  * Accessing ->real_parent is not SMP-safe, it could
845  * change from under us. However, we can use a stale
846  * value of ->real_parent under rcu_read_lock(), see
847  * release_task()->call_rcu(delayed_put_task_struct).
848  */
849 SYSCALL_DEFINE0(getppid)
850 {
851         int pid;
852
853         rcu_read_lock();
854         pid = task_tgid_vnr(rcu_dereference(current->real_parent));
855         rcu_read_unlock();
856
857         return pid;
858 }
859
860 SYSCALL_DEFINE0(getuid)
861 {
862         /* Only we change this so SMP safe */
863         return from_kuid_munged(current_user_ns(), current_uid());
864 }
865
866 SYSCALL_DEFINE0(geteuid)
867 {
868         /* Only we change this so SMP safe */
869         return from_kuid_munged(current_user_ns(), current_euid());
870 }
871
872 SYSCALL_DEFINE0(getgid)
873 {
874         /* Only we change this so SMP safe */
875         return from_kgid_munged(current_user_ns(), current_gid());
876 }
877
878 SYSCALL_DEFINE0(getegid)
879 {
880         /* Only we change this so SMP safe */
881         return from_kgid_munged(current_user_ns(), current_egid());
882 }
883
884 void do_sys_times(struct tms *tms)
885 {
886         u64 tgutime, tgstime, cutime, cstime;
887
888         thread_group_cputime_adjusted(current, &tgutime, &tgstime);
889         cutime = current->signal->cutime;
890         cstime = current->signal->cstime;
891         tms->tms_utime = nsec_to_clock_t(tgutime);
892         tms->tms_stime = nsec_to_clock_t(tgstime);
893         tms->tms_cutime = nsec_to_clock_t(cutime);
894         tms->tms_cstime = nsec_to_clock_t(cstime);
895 }
896
897 SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
898 {
899         if (tbuf) {
900                 struct tms tmp;
901
902                 do_sys_times(&tmp);
903                 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
904                         return -EFAULT;
905         }
906         force_successful_syscall_return();
907         return (long) jiffies_64_to_clock_t(get_jiffies_64());
908 }
909
910 /*
911  * This needs some heavy checking ...
912  * I just haven't the stomach for it. I also don't fully
913  * understand sessions/pgrp etc. Let somebody who does explain it.
914  *
915  * OK, I think I have the protection semantics right.... this is really
916  * only important on a multi-user system anyway, to make sure one user
917  * can't send a signal to a process owned by another.  -TYT, 12/12/91
918  *
919  * !PF_FORKNOEXEC check to conform completely to POSIX.
920  */
921 SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
922 {
923         struct task_struct *p;
924         struct task_struct *group_leader = current->group_leader;
925         struct pid *pgrp;
926         int err;
927
928         if (!pid)
929                 pid = task_pid_vnr(group_leader);
930         if (!pgid)
931                 pgid = pid;
932         if (pgid < 0)
933                 return -EINVAL;
934         rcu_read_lock();
935
936         /* From this point forward we keep holding onto the tasklist lock
937          * so that our parent does not change from under us. -DaveM
938          */
939         write_lock_irq(&tasklist_lock);
940
941         err = -ESRCH;
942         p = find_task_by_vpid(pid);
943         if (!p)
944                 goto out;
945
946         err = -EINVAL;
947         if (!thread_group_leader(p))
948                 goto out;
949
950         if (same_thread_group(p->real_parent, group_leader)) {
951                 err = -EPERM;
952                 if (task_session(p) != task_session(group_leader))
953                         goto out;
954                 err = -EACCES;
955                 if (!(p->flags & PF_FORKNOEXEC))
956                         goto out;
957         } else {
958                 err = -ESRCH;
959                 if (p != group_leader)
960                         goto out;
961         }
962
963         err = -EPERM;
964         if (p->signal->leader)
965                 goto out;
966
967         pgrp = task_pid(p);
968         if (pgid != pid) {
969                 struct task_struct *g;
970
971                 pgrp = find_vpid(pgid);
972                 g = pid_task(pgrp, PIDTYPE_PGID);
973                 if (!g || task_session(g) != task_session(group_leader))
974                         goto out;
975         }
976
977         err = security_task_setpgid(p, pgid);
978         if (err)
979                 goto out;
980
981         if (task_pgrp(p) != pgrp)
982                 change_pid(p, PIDTYPE_PGID, pgrp);
983
984         err = 0;
985 out:
986         /* All paths lead to here, thus we are safe. -DaveM */
987         write_unlock_irq(&tasklist_lock);
988         rcu_read_unlock();
989         return err;
990 }
991
992 SYSCALL_DEFINE1(getpgid, pid_t, pid)
993 {
994         struct task_struct *p;
995         struct pid *grp;
996         int retval;
997
998         rcu_read_lock();
999         if (!pid)
1000                 grp = task_pgrp(current);
1001         else {
1002                 retval = -ESRCH;
1003                 p = find_task_by_vpid(pid);
1004                 if (!p)
1005                         goto out;
1006                 grp = task_pgrp(p);
1007                 if (!grp)
1008                         goto out;
1009
1010                 retval = security_task_getpgid(p);
1011                 if (retval)
1012                         goto out;
1013         }
1014         retval = pid_vnr(grp);
1015 out:
1016         rcu_read_unlock();
1017         return retval;
1018 }
1019
1020 #ifdef __ARCH_WANT_SYS_GETPGRP
1021
1022 SYSCALL_DEFINE0(getpgrp)
1023 {
1024         return sys_getpgid(0);
1025 }
1026
1027 #endif
1028
1029 SYSCALL_DEFINE1(getsid, pid_t, pid)
1030 {
1031         struct task_struct *p;
1032         struct pid *sid;
1033         int retval;
1034
1035         rcu_read_lock();
1036         if (!pid)
1037                 sid = task_session(current);
1038         else {
1039                 retval = -ESRCH;
1040                 p = find_task_by_vpid(pid);
1041                 if (!p)
1042                         goto out;
1043                 sid = task_session(p);
1044                 if (!sid)
1045                         goto out;
1046
1047                 retval = security_task_getsid(p);
1048                 if (retval)
1049                         goto out;
1050         }
1051         retval = pid_vnr(sid);
1052 out:
1053         rcu_read_unlock();
1054         return retval;
1055 }
1056
1057 static void set_special_pids(struct pid *pid)
1058 {
1059         struct task_struct *curr = current->group_leader;
1060
1061         if (task_session(curr) != pid)
1062                 change_pid(curr, PIDTYPE_SID, pid);
1063
1064         if (task_pgrp(curr) != pid)
1065                 change_pid(curr, PIDTYPE_PGID, pid);
1066 }
1067
1068 SYSCALL_DEFINE0(setsid)
1069 {
1070         struct task_struct *group_leader = current->group_leader;
1071         struct pid *sid = task_pid(group_leader);
1072         pid_t session = pid_vnr(sid);
1073         int err = -EPERM;
1074
1075         write_lock_irq(&tasklist_lock);
1076         /* Fail if I am already a session leader */
1077         if (group_leader->signal->leader)
1078                 goto out;
1079
1080         /* Fail if a process group id already exists that equals the
1081          * proposed session id.
1082          */
1083         if (pid_task(sid, PIDTYPE_PGID))
1084                 goto out;
1085
1086         group_leader->signal->leader = 1;
1087         set_special_pids(sid);
1088
1089         proc_clear_tty(group_leader);
1090
1091         err = session;
1092 out:
1093         write_unlock_irq(&tasklist_lock);
1094         if (err > 0) {
1095                 proc_sid_connector(group_leader);
1096                 sched_autogroup_create_attach(group_leader);
1097         }
1098         return err;
1099 }
1100
1101 DECLARE_RWSEM(uts_sem);
1102
1103 #ifdef COMPAT_UTS_MACHINE
1104 #define override_architecture(name) \
1105         (personality(current->personality) == PER_LINUX32 && \
1106          copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1107                       sizeof(COMPAT_UTS_MACHINE)))
1108 #else
1109 #define override_architecture(name)     0
1110 #endif
1111
1112 /*
1113  * Work around broken programs that cannot handle "Linux 3.0".
1114  * Instead we map 3.x to 2.6.40+x, so e.g. 3.0 would be 2.6.40
1115  * And we map 4.x to 2.6.60+x, so 4.0 would be 2.6.60.
1116  */
1117 static int override_release(char __user *release, size_t len)
1118 {
1119         int ret = 0;
1120
1121         if (current->personality & UNAME26) {
1122                 const char *rest = UTS_RELEASE;
1123                 char buf[65] = { 0 };
1124                 int ndots = 0;
1125                 unsigned v;
1126                 size_t copy;
1127
1128                 while (*rest) {
1129                         if (*rest == '.' && ++ndots >= 3)
1130                                 break;
1131                         if (!isdigit(*rest) && *rest != '.')
1132                                 break;
1133                         rest++;
1134                 }
1135                 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 60;
1136                 copy = clamp_t(size_t, len, 1, sizeof(buf));
1137                 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
1138                 ret = copy_to_user(release, buf, copy + 1);
1139         }
1140         return ret;
1141 }
1142
1143 SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
1144 {
1145         int errno = 0;
1146
1147         down_read(&uts_sem);
1148         if (copy_to_user(name, utsname(), sizeof *name))
1149                 errno = -EFAULT;
1150         up_read(&uts_sem);
1151
1152         if (!errno && override_release(name->release, sizeof(name->release)))
1153                 errno = -EFAULT;
1154         if (!errno && override_architecture(name))
1155                 errno = -EFAULT;
1156         return errno;
1157 }
1158
1159 #ifdef __ARCH_WANT_SYS_OLD_UNAME
1160 /*
1161  * Old cruft
1162  */
1163 SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1164 {
1165         int error = 0;
1166
1167         if (!name)
1168                 return -EFAULT;
1169
1170         down_read(&uts_sem);
1171         if (copy_to_user(name, utsname(), sizeof(*name)))
1172                 error = -EFAULT;
1173         up_read(&uts_sem);
1174
1175         if (!error && override_release(name->release, sizeof(name->release)))
1176                 error = -EFAULT;
1177         if (!error && override_architecture(name))
1178                 error = -EFAULT;
1179         return error;
1180 }
1181
1182 SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1183 {
1184         int error;
1185
1186         if (!name)
1187                 return -EFAULT;
1188         if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1189                 return -EFAULT;
1190
1191         down_read(&uts_sem);
1192         error = __copy_to_user(&name->sysname, &utsname()->sysname,
1193                                __OLD_UTS_LEN);
1194         error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1195         error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1196                                 __OLD_UTS_LEN);
1197         error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1198         error |= __copy_to_user(&name->release, &utsname()->release,
1199                                 __OLD_UTS_LEN);
1200         error |= __put_user(0, name->release + __OLD_UTS_LEN);
1201         error |= __copy_to_user(&name->version, &utsname()->version,
1202                                 __OLD_UTS_LEN);
1203         error |= __put_user(0, name->version + __OLD_UTS_LEN);
1204         error |= __copy_to_user(&name->machine, &utsname()->machine,
1205                                 __OLD_UTS_LEN);
1206         error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1207         up_read(&uts_sem);
1208
1209         if (!error && override_architecture(name))
1210                 error = -EFAULT;
1211         if (!error && override_release(name->release, sizeof(name->release)))
1212                 error = -EFAULT;
1213         return error ? -EFAULT : 0;
1214 }
1215 #endif
1216
1217 SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
1218 {
1219         int errno;
1220         char tmp[__NEW_UTS_LEN];
1221
1222         if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
1223                 return -EPERM;
1224
1225         if (len < 0 || len > __NEW_UTS_LEN)
1226                 return -EINVAL;
1227         down_write(&uts_sem);
1228         errno = -EFAULT;
1229         if (!copy_from_user(tmp, name, len)) {
1230                 struct new_utsname *u = utsname();
1231
1232                 memcpy(u->nodename, tmp, len);
1233                 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
1234                 errno = 0;
1235                 uts_proc_notify(UTS_PROC_HOSTNAME);
1236         }
1237         up_write(&uts_sem);
1238         return errno;
1239 }
1240
1241 #ifdef __ARCH_WANT_SYS_GETHOSTNAME
1242
1243 SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
1244 {
1245         int i, errno;
1246         struct new_utsname *u;
1247
1248         if (len < 0)
1249                 return -EINVAL;
1250         down_read(&uts_sem);
1251         u = utsname();
1252         i = 1 + strlen(u->nodename);
1253         if (i > len)
1254                 i = len;
1255         errno = 0;
1256         if (copy_to_user(name, u->nodename, i))
1257                 errno = -EFAULT;
1258         up_read(&uts_sem);
1259         return errno;
1260 }
1261
1262 #endif
1263
1264 /*
1265  * Only setdomainname; getdomainname can be implemented by calling
1266  * uname()
1267  */
1268 SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
1269 {
1270         int errno;
1271         char tmp[__NEW_UTS_LEN];
1272
1273         if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
1274                 return -EPERM;
1275         if (len < 0 || len > __NEW_UTS_LEN)
1276                 return -EINVAL;
1277
1278         down_write(&uts_sem);
1279         errno = -EFAULT;
1280         if (!copy_from_user(tmp, name, len)) {
1281                 struct new_utsname *u = utsname();
1282
1283                 memcpy(u->domainname, tmp, len);
1284                 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
1285                 errno = 0;
1286                 uts_proc_notify(UTS_PROC_DOMAINNAME);
1287         }
1288         up_write(&uts_sem);
1289         return errno;
1290 }
1291
1292 SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1293 {
1294         struct rlimit value;
1295         int ret;
1296
1297         ret = do_prlimit(current, resource, NULL, &value);
1298         if (!ret)
1299                 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1300
1301         return ret;
1302 }
1303
1304 #ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1305
1306 /*
1307  *      Back compatibility for getrlimit. Needed for some apps.
1308  */
1309 SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1310                 struct rlimit __user *, rlim)
1311 {
1312         struct rlimit x;
1313         if (resource >= RLIM_NLIMITS)
1314                 return -EINVAL;
1315
1316         task_lock(current->group_leader);
1317         x = current->signal->rlim[resource];
1318         task_unlock(current->group_leader);
1319         if (x.rlim_cur > 0x7FFFFFFF)
1320                 x.rlim_cur = 0x7FFFFFFF;
1321         if (x.rlim_max > 0x7FFFFFFF)
1322                 x.rlim_max = 0x7FFFFFFF;
1323         return copy_to_user(rlim, &x, sizeof(x)) ? -EFAULT : 0;
1324 }
1325
1326 #endif
1327
1328 static inline bool rlim64_is_infinity(__u64 rlim64)
1329 {
1330 #if BITS_PER_LONG < 64
1331         return rlim64 >= ULONG_MAX;
1332 #else
1333         return rlim64 == RLIM64_INFINITY;
1334 #endif
1335 }
1336
1337 static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1338 {
1339         if (rlim->rlim_cur == RLIM_INFINITY)
1340                 rlim64->rlim_cur = RLIM64_INFINITY;
1341         else
1342                 rlim64->rlim_cur = rlim->rlim_cur;
1343         if (rlim->rlim_max == RLIM_INFINITY)
1344                 rlim64->rlim_max = RLIM64_INFINITY;
1345         else
1346                 rlim64->rlim_max = rlim->rlim_max;
1347 }
1348
1349 static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1350 {
1351         if (rlim64_is_infinity(rlim64->rlim_cur))
1352                 rlim->rlim_cur = RLIM_INFINITY;
1353         else
1354                 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1355         if (rlim64_is_infinity(rlim64->rlim_max))
1356                 rlim->rlim_max = RLIM_INFINITY;
1357         else
1358                 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1359 }
1360
1361 /* make sure you are allowed to change @tsk limits before calling this */
1362 int do_prlimit(struct task_struct *tsk, unsigned int resource,
1363                 struct rlimit *new_rlim, struct rlimit *old_rlim)
1364 {
1365         struct rlimit *rlim;
1366         int retval = 0;
1367
1368         if (resource >= RLIM_NLIMITS)
1369                 return -EINVAL;
1370         if (new_rlim) {
1371                 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1372                         return -EINVAL;
1373                 if (resource == RLIMIT_NOFILE &&
1374                                 new_rlim->rlim_max > sysctl_nr_open)
1375                         return -EPERM;
1376         }
1377
1378         /* protect tsk->signal and tsk->sighand from disappearing */
1379         read_lock(&tasklist_lock);
1380         if (!tsk->sighand) {
1381                 retval = -ESRCH;
1382                 goto out;
1383         }
1384
1385         rlim = tsk->signal->rlim + resource;
1386         task_lock(tsk->group_leader);
1387         if (new_rlim) {
1388                 /* Keep the capable check against init_user_ns until
1389                    cgroups can contain all limits */
1390                 if (new_rlim->rlim_max > rlim->rlim_max &&
1391                                 !capable(CAP_SYS_RESOURCE))
1392                         retval = -EPERM;
1393                 if (!retval)
1394                         retval = security_task_setrlimit(tsk->group_leader,
1395                                         resource, new_rlim);
1396                 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1397                         /*
1398                          * The caller is asking for an immediate RLIMIT_CPU
1399                          * expiry.  But we use the zero value to mean "it was
1400                          * never set".  So let's cheat and make it one second
1401                          * instead
1402                          */
1403                         new_rlim->rlim_cur = 1;
1404                 }
1405         }
1406         if (!retval) {
1407                 if (old_rlim)
1408                         *old_rlim = *rlim;
1409                 if (new_rlim)
1410                         *rlim = *new_rlim;
1411         }
1412         task_unlock(tsk->group_leader);
1413
1414         /*
1415          * RLIMIT_CPU handling.   Note that the kernel fails to return an error
1416          * code if it rejected the user's attempt to set RLIMIT_CPU.  This is a
1417          * very long-standing error, and fixing it now risks breakage of
1418          * applications, so we live with it
1419          */
1420          if (!retval && new_rlim && resource == RLIMIT_CPU &&
1421              new_rlim->rlim_cur != RLIM_INFINITY &&
1422              IS_ENABLED(CONFIG_POSIX_TIMERS))
1423                 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
1424 out:
1425         read_unlock(&tasklist_lock);
1426         return retval;
1427 }
1428
1429 /* rcu lock must be held */
1430 static int check_prlimit_permission(struct task_struct *task)
1431 {
1432         const struct cred *cred = current_cred(), *tcred;
1433
1434         if (current == task)
1435                 return 0;
1436
1437         tcred = __task_cred(task);
1438         if (uid_eq(cred->uid, tcred->euid) &&
1439             uid_eq(cred->uid, tcred->suid) &&
1440             uid_eq(cred->uid, tcred->uid)  &&
1441             gid_eq(cred->gid, tcred->egid) &&
1442             gid_eq(cred->gid, tcred->sgid) &&
1443             gid_eq(cred->gid, tcred->gid))
1444                 return 0;
1445         if (ns_capable(tcred->user_ns, CAP_SYS_RESOURCE))
1446                 return 0;
1447
1448         return -EPERM;
1449 }
1450
1451 SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1452                 const struct rlimit64 __user *, new_rlim,
1453                 struct rlimit64 __user *, old_rlim)
1454 {
1455         struct rlimit64 old64, new64;
1456         struct rlimit old, new;
1457         struct task_struct *tsk;
1458         int ret;
1459
1460         if (new_rlim) {
1461                 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1462                         return -EFAULT;
1463                 rlim64_to_rlim(&new64, &new);
1464         }
1465
1466         rcu_read_lock();
1467         tsk = pid ? find_task_by_vpid(pid) : current;
1468         if (!tsk) {
1469                 rcu_read_unlock();
1470                 return -ESRCH;
1471         }
1472         ret = check_prlimit_permission(tsk);
1473         if (ret) {
1474                 rcu_read_unlock();
1475                 return ret;
1476         }
1477         get_task_struct(tsk);
1478         rcu_read_unlock();
1479
1480         ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1481                         old_rlim ? &old : NULL);
1482
1483         if (!ret && old_rlim) {
1484                 rlim_to_rlim64(&old, &old64);
1485                 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1486                         ret = -EFAULT;
1487         }
1488
1489         put_task_struct(tsk);
1490         return ret;
1491 }
1492
1493 SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1494 {
1495         struct rlimit new_rlim;
1496
1497         if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1498                 return -EFAULT;
1499         return do_prlimit(current, resource, &new_rlim, NULL);
1500 }
1501
1502 /*
1503  * It would make sense to put struct rusage in the task_struct,
1504  * except that would make the task_struct be *really big*.  After
1505  * task_struct gets moved into malloc'ed memory, it would
1506  * make sense to do this.  It will make moving the rest of the information
1507  * a lot simpler!  (Which we're not doing right now because we're not
1508  * measuring them yet).
1509  *
1510  * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1511  * races with threads incrementing their own counters.  But since word
1512  * reads are atomic, we either get new values or old values and we don't
1513  * care which for the sums.  We always take the siglock to protect reading
1514  * the c* fields from p->signal from races with exit.c updating those
1515  * fields when reaping, so a sample either gets all the additions of a
1516  * given child after it's reaped, or none so this sample is before reaping.
1517  *
1518  * Locking:
1519  * We need to take the siglock for CHILDEREN, SELF and BOTH
1520  * for  the cases current multithreaded, non-current single threaded
1521  * non-current multithreaded.  Thread traversal is now safe with
1522  * the siglock held.
1523  * Strictly speaking, we donot need to take the siglock if we are current and
1524  * single threaded,  as no one else can take our signal_struct away, no one
1525  * else can  reap the  children to update signal->c* counters, and no one else
1526  * can race with the signal-> fields. If we do not take any lock, the
1527  * signal-> fields could be read out of order while another thread was just
1528  * exiting. So we should  place a read memory barrier when we avoid the lock.
1529  * On the writer side,  write memory barrier is implied in  __exit_signal
1530  * as __exit_signal releases  the siglock spinlock after updating the signal->
1531  * fields. But we don't do this yet to keep things simple.
1532  *
1533  */
1534
1535 static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
1536 {
1537         r->ru_nvcsw += t->nvcsw;
1538         r->ru_nivcsw += t->nivcsw;
1539         r->ru_minflt += t->min_flt;
1540         r->ru_majflt += t->maj_flt;
1541         r->ru_inblock += task_io_get_inblock(t);
1542         r->ru_oublock += task_io_get_oublock(t);
1543 }
1544
1545 static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1546 {
1547         struct task_struct *t;
1548         unsigned long flags;
1549         u64 tgutime, tgstime, utime, stime;
1550         unsigned long maxrss = 0;
1551
1552         memset((char *)r, 0, sizeof (*r));
1553         utime = stime = 0;
1554
1555         if (who == RUSAGE_THREAD) {
1556                 task_cputime_adjusted(current, &utime, &stime);
1557                 accumulate_thread_rusage(p, r);
1558                 maxrss = p->signal->maxrss;
1559                 goto out;
1560         }
1561
1562         if (!lock_task_sighand(p, &flags))
1563                 return;
1564
1565         switch (who) {
1566         case RUSAGE_BOTH:
1567         case RUSAGE_CHILDREN:
1568                 utime = p->signal->cutime;
1569                 stime = p->signal->cstime;
1570                 r->ru_nvcsw = p->signal->cnvcsw;
1571                 r->ru_nivcsw = p->signal->cnivcsw;
1572                 r->ru_minflt = p->signal->cmin_flt;
1573                 r->ru_majflt = p->signal->cmaj_flt;
1574                 r->ru_inblock = p->signal->cinblock;
1575                 r->ru_oublock = p->signal->coublock;
1576                 maxrss = p->signal->cmaxrss;
1577
1578                 if (who == RUSAGE_CHILDREN)
1579                         break;
1580
1581         case RUSAGE_SELF:
1582                 thread_group_cputime_adjusted(p, &tgutime, &tgstime);
1583                 utime += tgutime;
1584                 stime += tgstime;
1585                 r->ru_nvcsw += p->signal->nvcsw;
1586                 r->ru_nivcsw += p->signal->nivcsw;
1587                 r->ru_minflt += p->signal->min_flt;
1588                 r->ru_majflt += p->signal->maj_flt;
1589                 r->ru_inblock += p->signal->inblock;
1590                 r->ru_oublock += p->signal->oublock;
1591                 if (maxrss < p->signal->maxrss)
1592                         maxrss = p->signal->maxrss;
1593                 t = p;
1594                 do {
1595                         accumulate_thread_rusage(t, r);
1596                 } while_each_thread(p, t);
1597                 break;
1598
1599         default:
1600                 BUG();
1601         }
1602         unlock_task_sighand(p, &flags);
1603
1604 out:
1605         r->ru_utime = ns_to_timeval(utime);
1606         r->ru_stime = ns_to_timeval(stime);
1607
1608         if (who != RUSAGE_CHILDREN) {
1609                 struct mm_struct *mm = get_task_mm(p);
1610
1611                 if (mm) {
1612                         setmax_mm_hiwater_rss(&maxrss, mm);
1613                         mmput(mm);
1614                 }
1615         }
1616         r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
1617 }
1618
1619 int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1620 {
1621         struct rusage r;
1622
1623         k_getrusage(p, who, &r);
1624         return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1625 }
1626
1627 SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
1628 {
1629         if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1630             who != RUSAGE_THREAD)
1631                 return -EINVAL;
1632         return getrusage(current, who, ru);
1633 }
1634
1635 #ifdef CONFIG_COMPAT
1636 COMPAT_SYSCALL_DEFINE2(getrusage, int, who, struct compat_rusage __user *, ru)
1637 {
1638         struct rusage r;
1639
1640         if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1641             who != RUSAGE_THREAD)
1642                 return -EINVAL;
1643
1644         k_getrusage(current, who, &r);
1645         return put_compat_rusage(&r, ru);
1646 }
1647 #endif
1648
1649 SYSCALL_DEFINE1(umask, int, mask)
1650 {
1651         mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1652         return mask;
1653 }
1654
1655 static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd)
1656 {
1657         struct fd exe;
1658         struct file *old_exe, *exe_file;
1659         struct inode *inode;
1660         int err;
1661
1662         exe = fdget(fd);
1663         if (!exe.file)
1664                 return -EBADF;
1665
1666         inode = file_inode(exe.file);
1667
1668         /*
1669          * Because the original mm->exe_file points to executable file, make
1670          * sure that this one is executable as well, to avoid breaking an
1671          * overall picture.
1672          */
1673         err = -EACCES;
1674         if (!S_ISREG(inode->i_mode) || path_noexec(&exe.file->f_path))
1675                 goto exit;
1676
1677         err = inode_permission(inode, MAY_EXEC);
1678         if (err)
1679                 goto exit;
1680
1681         /*
1682          * Forbid mm->exe_file change if old file still mapped.
1683          */
1684         exe_file = get_mm_exe_file(mm);
1685         err = -EBUSY;
1686         if (exe_file) {
1687                 struct vm_area_struct *vma;
1688
1689                 down_read(&mm->mmap_sem);
1690                 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1691                         if (!vma->vm_file)
1692                                 continue;
1693                         if (path_equal(&vma->vm_file->f_path,
1694                                        &exe_file->f_path))
1695                                 goto exit_err;
1696                 }
1697
1698                 up_read(&mm->mmap_sem);
1699                 fput(exe_file);
1700         }
1701
1702         err = 0;
1703         /* set the new file, lockless */
1704         get_file(exe.file);
1705         old_exe = xchg(&mm->exe_file, exe.file);
1706         if (old_exe)
1707                 fput(old_exe);
1708 exit:
1709         fdput(exe);
1710         return err;
1711 exit_err:
1712         up_read(&mm->mmap_sem);
1713         fput(exe_file);
1714         goto exit;
1715 }
1716
1717 /*
1718  * WARNING: we don't require any capability here so be very careful
1719  * in what is allowed for modification from userspace.
1720  */
1721 static int validate_prctl_map(struct prctl_mm_map *prctl_map)
1722 {
1723         unsigned long mmap_max_addr = TASK_SIZE;
1724         struct mm_struct *mm = current->mm;
1725         int error = -EINVAL, i;
1726
1727         static const unsigned char offsets[] = {
1728                 offsetof(struct prctl_mm_map, start_code),
1729                 offsetof(struct prctl_mm_map, end_code),
1730                 offsetof(struct prctl_mm_map, start_data),
1731                 offsetof(struct prctl_mm_map, end_data),
1732                 offsetof(struct prctl_mm_map, start_brk),
1733                 offsetof(struct prctl_mm_map, brk),
1734                 offsetof(struct prctl_mm_map, start_stack),
1735                 offsetof(struct prctl_mm_map, arg_start),
1736                 offsetof(struct prctl_mm_map, arg_end),
1737                 offsetof(struct prctl_mm_map, env_start),
1738                 offsetof(struct prctl_mm_map, env_end),
1739         };
1740
1741         /*
1742          * Make sure the members are not somewhere outside
1743          * of allowed address space.
1744          */
1745         for (i = 0; i < ARRAY_SIZE(offsets); i++) {
1746                 u64 val = *(u64 *)((char *)prctl_map + offsets[i]);
1747
1748                 if ((unsigned long)val >= mmap_max_addr ||
1749                     (unsigned long)val < mmap_min_addr)
1750                         goto out;
1751         }
1752
1753         /*
1754          * Make sure the pairs are ordered.
1755          */
1756 #define __prctl_check_order(__m1, __op, __m2)                           \
1757         ((unsigned long)prctl_map->__m1 __op                            \
1758          (unsigned long)prctl_map->__m2) ? 0 : -EINVAL
1759         error  = __prctl_check_order(start_code, <, end_code);
1760         error |= __prctl_check_order(start_data, <, end_data);
1761         error |= __prctl_check_order(start_brk, <=, brk);
1762         error |= __prctl_check_order(arg_start, <=, arg_end);
1763         error |= __prctl_check_order(env_start, <=, env_end);
1764         if (error)
1765                 goto out;
1766 #undef __prctl_check_order
1767
1768         error = -EINVAL;
1769
1770         /*
1771          * @brk should be after @end_data in traditional maps.
1772          */
1773         if (prctl_map->start_brk <= prctl_map->end_data ||
1774             prctl_map->brk <= prctl_map->end_data)
1775                 goto out;
1776
1777         /*
1778          * Neither we should allow to override limits if they set.
1779          */
1780         if (check_data_rlimit(rlimit(RLIMIT_DATA), prctl_map->brk,
1781                               prctl_map->start_brk, prctl_map->end_data,
1782                               prctl_map->start_data))
1783                         goto out;
1784
1785         /*
1786          * Someone is trying to cheat the auxv vector.
1787          */
1788         if (prctl_map->auxv_size) {
1789                 if (!prctl_map->auxv || prctl_map->auxv_size > sizeof(mm->saved_auxv))
1790                         goto out;
1791         }
1792
1793         /*
1794          * Finally, make sure the caller has the rights to
1795          * change /proc/pid/exe link: only local root should
1796          * be allowed to.
1797          */
1798         if (prctl_map->exe_fd != (u32)-1) {
1799                 struct user_namespace *ns = current_user_ns();
1800                 const struct cred *cred = current_cred();
1801
1802                 if (!uid_eq(cred->uid, make_kuid(ns, 0)) ||
1803                     !gid_eq(cred->gid, make_kgid(ns, 0)))
1804                         goto out;
1805         }
1806
1807         error = 0;
1808 out:
1809         return error;
1810 }
1811
1812 #ifdef CONFIG_CHECKPOINT_RESTORE
1813 static int prctl_set_mm_map(int opt, const void __user *addr, unsigned long data_size)
1814 {
1815         struct prctl_mm_map prctl_map = { .exe_fd = (u32)-1, };
1816         unsigned long user_auxv[AT_VECTOR_SIZE];
1817         struct mm_struct *mm = current->mm;
1818         int error;
1819
1820         BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1821         BUILD_BUG_ON(sizeof(struct prctl_mm_map) > 256);
1822
1823         if (opt == PR_SET_MM_MAP_SIZE)
1824                 return put_user((unsigned int)sizeof(prctl_map),
1825                                 (unsigned int __user *)addr);
1826
1827         if (data_size != sizeof(prctl_map))
1828                 return -EINVAL;
1829
1830         if (copy_from_user(&prctl_map, addr, sizeof(prctl_map)))
1831                 return -EFAULT;
1832
1833         error = validate_prctl_map(&prctl_map);
1834         if (error)
1835                 return error;
1836
1837         if (prctl_map.auxv_size) {
1838                 memset(user_auxv, 0, sizeof(user_auxv));
1839                 if (copy_from_user(user_auxv,
1840                                    (const void __user *)prctl_map.auxv,
1841                                    prctl_map.auxv_size))
1842                         return -EFAULT;
1843
1844                 /* Last entry must be AT_NULL as specification requires */
1845                 user_auxv[AT_VECTOR_SIZE - 2] = AT_NULL;
1846                 user_auxv[AT_VECTOR_SIZE - 1] = AT_NULL;
1847         }
1848
1849         if (prctl_map.exe_fd != (u32)-1) {
1850                 error = prctl_set_mm_exe_file(mm, prctl_map.exe_fd);
1851                 if (error)
1852                         return error;
1853         }
1854
1855         down_write(&mm->mmap_sem);
1856
1857         /*
1858          * We don't validate if these members are pointing to
1859          * real present VMAs because application may have correspond
1860          * VMAs already unmapped and kernel uses these members for statistics
1861          * output in procfs mostly, except
1862          *
1863          *  - @start_brk/@brk which are used in do_brk but kernel lookups
1864          *    for VMAs when updating these memvers so anything wrong written
1865          *    here cause kernel to swear at userspace program but won't lead
1866          *    to any problem in kernel itself
1867          */
1868
1869         mm->start_code  = prctl_map.start_code;
1870         mm->end_code    = prctl_map.end_code;
1871         mm->start_data  = prctl_map.start_data;
1872         mm->end_data    = prctl_map.end_data;
1873         mm->start_brk   = prctl_map.start_brk;
1874         mm->brk         = prctl_map.brk;
1875         mm->start_stack = prctl_map.start_stack;
1876         mm->arg_start   = prctl_map.arg_start;
1877         mm->arg_end     = prctl_map.arg_end;
1878         mm->env_start   = prctl_map.env_start;
1879         mm->env_end     = prctl_map.env_end;
1880
1881         /*
1882          * Note this update of @saved_auxv is lockless thus
1883          * if someone reads this member in procfs while we're
1884          * updating -- it may get partly updated results. It's
1885          * known and acceptable trade off: we leave it as is to
1886          * not introduce additional locks here making the kernel
1887          * more complex.
1888          */
1889         if (prctl_map.auxv_size)
1890                 memcpy(mm->saved_auxv, user_auxv, sizeof(user_auxv));
1891
1892         up_write(&mm->mmap_sem);
1893         return 0;
1894 }
1895 #endif /* CONFIG_CHECKPOINT_RESTORE */
1896
1897 static int prctl_set_auxv(struct mm_struct *mm, unsigned long addr,
1898                           unsigned long len)
1899 {
1900         /*
1901          * This doesn't move the auxiliary vector itself since it's pinned to
1902          * mm_struct, but it permits filling the vector with new values.  It's
1903          * up to the caller to provide sane values here, otherwise userspace
1904          * tools which use this vector might be unhappy.
1905          */
1906         unsigned long user_auxv[AT_VECTOR_SIZE];
1907
1908         if (len > sizeof(user_auxv))
1909                 return -EINVAL;
1910
1911         if (copy_from_user(user_auxv, (const void __user *)addr, len))
1912                 return -EFAULT;
1913
1914         /* Make sure the last entry is always AT_NULL */
1915         user_auxv[AT_VECTOR_SIZE - 2] = 0;
1916         user_auxv[AT_VECTOR_SIZE - 1] = 0;
1917
1918         BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1919
1920         task_lock(current);
1921         memcpy(mm->saved_auxv, user_auxv, len);
1922         task_unlock(current);
1923
1924         return 0;
1925 }
1926
1927 static int prctl_set_mm(int opt, unsigned long addr,
1928                         unsigned long arg4, unsigned long arg5)
1929 {
1930         struct mm_struct *mm = current->mm;
1931         struct prctl_mm_map prctl_map;
1932         struct vm_area_struct *vma;
1933         int error;
1934
1935         if (arg5 || (arg4 && (opt != PR_SET_MM_AUXV &&
1936                               opt != PR_SET_MM_MAP &&
1937                               opt != PR_SET_MM_MAP_SIZE)))
1938                 return -EINVAL;
1939
1940 #ifdef CONFIG_CHECKPOINT_RESTORE
1941         if (opt == PR_SET_MM_MAP || opt == PR_SET_MM_MAP_SIZE)
1942                 return prctl_set_mm_map(opt, (const void __user *)addr, arg4);
1943 #endif
1944
1945         if (!capable(CAP_SYS_RESOURCE))
1946                 return -EPERM;
1947
1948         if (opt == PR_SET_MM_EXE_FILE)
1949                 return prctl_set_mm_exe_file(mm, (unsigned int)addr);
1950
1951         if (opt == PR_SET_MM_AUXV)
1952                 return prctl_set_auxv(mm, addr, arg4);
1953
1954         if (addr >= TASK_SIZE || addr < mmap_min_addr)
1955                 return -EINVAL;
1956
1957         error = -EINVAL;
1958
1959         down_write(&mm->mmap_sem);
1960         vma = find_vma(mm, addr);
1961
1962         prctl_map.start_code    = mm->start_code;
1963         prctl_map.end_code      = mm->end_code;
1964         prctl_map.start_data    = mm->start_data;
1965         prctl_map.end_data      = mm->end_data;
1966         prctl_map.start_brk     = mm->start_brk;
1967         prctl_map.brk           = mm->brk;
1968         prctl_map.start_stack   = mm->start_stack;
1969         prctl_map.arg_start     = mm->arg_start;
1970         prctl_map.arg_end       = mm->arg_end;
1971         prctl_map.env_start     = mm->env_start;
1972         prctl_map.env_end       = mm->env_end;
1973         prctl_map.auxv          = NULL;
1974         prctl_map.auxv_size     = 0;
1975         prctl_map.exe_fd        = -1;
1976
1977         switch (opt) {
1978         case PR_SET_MM_START_CODE:
1979                 prctl_map.start_code = addr;
1980                 break;
1981         case PR_SET_MM_END_CODE:
1982                 prctl_map.end_code = addr;
1983                 break;
1984         case PR_SET_MM_START_DATA:
1985                 prctl_map.start_data = addr;
1986                 break;
1987         case PR_SET_MM_END_DATA:
1988                 prctl_map.end_data = addr;
1989                 break;
1990         case PR_SET_MM_START_STACK:
1991                 prctl_map.start_stack = addr;
1992                 break;
1993         case PR_SET_MM_START_BRK:
1994                 prctl_map.start_brk = addr;
1995                 break;
1996         case PR_SET_MM_BRK:
1997                 prctl_map.brk = addr;
1998                 break;
1999         case PR_SET_MM_ARG_START:
2000                 prctl_map.arg_start = addr;
2001                 break;
2002         case PR_SET_MM_ARG_END:
2003                 prctl_map.arg_end = addr;
2004                 break;
2005         case PR_SET_MM_ENV_START:
2006                 prctl_map.env_start = addr;
2007                 break;
2008         case PR_SET_MM_ENV_END:
2009                 prctl_map.env_end = addr;
2010                 break;
2011         default:
2012                 goto out;
2013         }
2014
2015         error = validate_prctl_map(&prctl_map);
2016         if (error)
2017                 goto out;
2018
2019         switch (opt) {
2020         /*
2021          * If command line arguments and environment
2022          * are placed somewhere else on stack, we can
2023          * set them up here, ARG_START/END to setup
2024          * command line argumets and ENV_START/END
2025          * for environment.
2026          */
2027         case PR_SET_MM_START_STACK:
2028         case PR_SET_MM_ARG_START:
2029         case PR_SET_MM_ARG_END:
2030         case PR_SET_MM_ENV_START:
2031         case PR_SET_MM_ENV_END:
2032                 if (!vma) {
2033                         error = -EFAULT;
2034                         goto out;
2035                 }
2036         }
2037
2038         mm->start_code  = prctl_map.start_code;
2039         mm->end_code    = prctl_map.end_code;
2040         mm->start_data  = prctl_map.start_data;
2041         mm->end_data    = prctl_map.end_data;
2042         mm->start_brk   = prctl_map.start_brk;
2043         mm->brk         = prctl_map.brk;
2044         mm->start_stack = prctl_map.start_stack;
2045         mm->arg_start   = prctl_map.arg_start;
2046         mm->arg_end     = prctl_map.arg_end;
2047         mm->env_start   = prctl_map.env_start;
2048         mm->env_end     = prctl_map.env_end;
2049
2050         error = 0;
2051 out:
2052         up_write(&mm->mmap_sem);
2053         return error;
2054 }
2055
2056 #ifdef CONFIG_CHECKPOINT_RESTORE
2057 static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2058 {
2059         return put_user(me->clear_child_tid, tid_addr);
2060 }
2061 #else
2062 static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2063 {
2064         return -EINVAL;
2065 }
2066 #endif
2067
2068 static int propagate_has_child_subreaper(struct task_struct *p, void *data)
2069 {
2070         /*
2071          * If task has has_child_subreaper - all its decendants
2072          * already have these flag too and new decendants will
2073          * inherit it on fork, skip them.
2074          *
2075          * If we've found child_reaper - skip descendants in
2076          * it's subtree as they will never get out pidns.
2077          */
2078         if (p->signal->has_child_subreaper ||
2079             is_child_reaper(task_pid(p)))
2080                 return 0;
2081
2082         p->signal->has_child_subreaper = 1;
2083         return 1;
2084 }
2085
2086 SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
2087                 unsigned long, arg4, unsigned long, arg5)
2088 {
2089         struct task_struct *me = current;
2090         unsigned char comm[sizeof(me->comm)];
2091         long error;
2092
2093         error = security_task_prctl(option, arg2, arg3, arg4, arg5);
2094         if (error != -ENOSYS)
2095                 return error;
2096
2097         error = 0;
2098         switch (option) {
2099         case PR_SET_PDEATHSIG:
2100                 if (!valid_signal(arg2)) {
2101                         error = -EINVAL;
2102                         break;
2103                 }
2104                 me->pdeath_signal = arg2;
2105                 break;
2106         case PR_GET_PDEATHSIG:
2107                 error = put_user(me->pdeath_signal, (int __user *)arg2);
2108                 break;
2109         case PR_GET_DUMPABLE:
2110                 error = get_dumpable(me->mm);
2111                 break;
2112         case PR_SET_DUMPABLE:
2113                 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) {
2114                         error = -EINVAL;
2115                         break;
2116                 }
2117                 set_dumpable(me->mm, arg2);
2118                 break;
2119
2120         case PR_SET_UNALIGN:
2121                 error = SET_UNALIGN_CTL(me, arg2);
2122                 break;
2123         case PR_GET_UNALIGN:
2124                 error = GET_UNALIGN_CTL(me, arg2);
2125                 break;
2126         case PR_SET_FPEMU:
2127                 error = SET_FPEMU_CTL(me, arg2);
2128                 break;
2129         case PR_GET_FPEMU:
2130                 error = GET_FPEMU_CTL(me, arg2);
2131                 break;
2132         case PR_SET_FPEXC:
2133                 error = SET_FPEXC_CTL(me, arg2);
2134                 break;
2135         case PR_GET_FPEXC:
2136                 error = GET_FPEXC_CTL(me, arg2);
2137                 break;
2138         case PR_GET_TIMING:
2139                 error = PR_TIMING_STATISTICAL;
2140                 break;
2141         case PR_SET_TIMING:
2142                 if (arg2 != PR_TIMING_STATISTICAL)
2143                         error = -EINVAL;
2144                 break;
2145         case PR_SET_NAME:
2146                 comm[sizeof(me->comm) - 1] = 0;
2147                 if (strncpy_from_user(comm, (char __user *)arg2,
2148                                       sizeof(me->comm) - 1) < 0)
2149                         return -EFAULT;
2150                 set_task_comm(me, comm);
2151                 proc_comm_connector(me);
2152                 break;
2153         case PR_GET_NAME:
2154                 get_task_comm(comm, me);
2155                 if (copy_to_user((char __user *)arg2, comm, sizeof(comm)))
2156                         return -EFAULT;
2157                 break;
2158         case PR_GET_ENDIAN:
2159                 error = GET_ENDIAN(me, arg2);
2160                 break;
2161         case PR_SET_ENDIAN:
2162                 error = SET_ENDIAN(me, arg2);
2163                 break;
2164         case PR_GET_SECCOMP:
2165                 error = prctl_get_seccomp();
2166                 break;
2167         case PR_SET_SECCOMP:
2168                 error = prctl_set_seccomp(arg2, (char __user *)arg3);
2169                 break;
2170         case PR_GET_TSC:
2171                 error = GET_TSC_CTL(arg2);
2172                 break;
2173         case PR_SET_TSC:
2174                 error = SET_TSC_CTL(arg2);
2175                 break;
2176         case PR_TASK_PERF_EVENTS_DISABLE:
2177                 error = perf_event_task_disable();
2178                 break;
2179         case PR_TASK_PERF_EVENTS_ENABLE:
2180                 error = perf_event_task_enable();
2181                 break;
2182         case PR_GET_TIMERSLACK:
2183                 if (current->timer_slack_ns > ULONG_MAX)
2184                         error = ULONG_MAX;
2185                 else
2186                         error = current->timer_slack_ns;
2187                 break;
2188         case PR_SET_TIMERSLACK:
2189                 if (arg2 <= 0)
2190                         current->timer_slack_ns =
2191                                         current->default_timer_slack_ns;
2192                 else
2193                         current->timer_slack_ns = arg2;
2194                 break;
2195         case PR_MCE_KILL:
2196                 if (arg4 | arg5)
2197                         return -EINVAL;
2198                 switch (arg2) {
2199                 case PR_MCE_KILL_CLEAR:
2200                         if (arg3 != 0)
2201                                 return -EINVAL;
2202                         current->flags &= ~PF_MCE_PROCESS;
2203                         break;
2204                 case PR_MCE_KILL_SET:
2205                         current->flags |= PF_MCE_PROCESS;
2206                         if (arg3 == PR_MCE_KILL_EARLY)
2207                                 current->flags |= PF_MCE_EARLY;
2208                         else if (arg3 == PR_MCE_KILL_LATE)
2209                                 current->flags &= ~PF_MCE_EARLY;
2210                         else if (arg3 == PR_MCE_KILL_DEFAULT)
2211                                 current->flags &=
2212                                                 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
2213                         else
2214                                 return -EINVAL;
2215                         break;
2216                 default:
2217                         return -EINVAL;
2218                 }
2219                 break;
2220         case PR_MCE_KILL_GET:
2221                 if (arg2 | arg3 | arg4 | arg5)
2222                         return -EINVAL;
2223                 if (current->flags & PF_MCE_PROCESS)
2224                         error = (current->flags & PF_MCE_EARLY) ?
2225                                 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
2226                 else
2227                         error = PR_MCE_KILL_DEFAULT;
2228                 break;
2229         case PR_SET_MM:
2230                 error = prctl_set_mm(arg2, arg3, arg4, arg5);
2231                 break;
2232         case PR_GET_TID_ADDRESS:
2233                 error = prctl_get_tid_address(me, (int __user **)arg2);
2234                 break;
2235         case PR_SET_CHILD_SUBREAPER:
2236                 me->signal->is_child_subreaper = !!arg2;
2237                 if (!arg2)
2238                         break;
2239
2240                 walk_process_tree(me, propagate_has_child_subreaper, NULL);
2241                 break;
2242         case PR_GET_CHILD_SUBREAPER:
2243                 error = put_user(me->signal->is_child_subreaper,
2244                                  (int __user *)arg2);
2245                 break;
2246         case PR_SET_NO_NEW_PRIVS:
2247                 if (arg2 != 1 || arg3 || arg4 || arg5)
2248                         return -EINVAL;
2249
2250                 task_set_no_new_privs(current);
2251                 break;
2252         case PR_GET_NO_NEW_PRIVS:
2253                 if (arg2 || arg3 || arg4 || arg5)
2254                         return -EINVAL;
2255                 return task_no_new_privs(current) ? 1 : 0;
2256         case PR_GET_THP_DISABLE:
2257                 if (arg2 || arg3 || arg4 || arg5)
2258                         return -EINVAL;
2259                 error = !!(me->mm->def_flags & VM_NOHUGEPAGE);
2260                 break;
2261         case PR_SET_THP_DISABLE:
2262                 if (arg3 || arg4 || arg5)
2263                         return -EINVAL;
2264                 if (down_write_killable(&me->mm->mmap_sem))
2265                         return -EINTR;
2266                 if (arg2)
2267                         me->mm->def_flags |= VM_NOHUGEPAGE;
2268                 else
2269                         me->mm->def_flags &= ~VM_NOHUGEPAGE;
2270                 up_write(&me->mm->mmap_sem);
2271                 break;
2272         case PR_MPX_ENABLE_MANAGEMENT:
2273                 if (arg2 || arg3 || arg4 || arg5)
2274                         return -EINVAL;
2275                 error = MPX_ENABLE_MANAGEMENT();
2276                 break;
2277         case PR_MPX_DISABLE_MANAGEMENT:
2278                 if (arg2 || arg3 || arg4 || arg5)
2279                         return -EINVAL;
2280                 error = MPX_DISABLE_MANAGEMENT();
2281                 break;
2282         case PR_SET_FP_MODE:
2283                 error = SET_FP_MODE(me, arg2);
2284                 break;
2285         case PR_GET_FP_MODE:
2286                 error = GET_FP_MODE(me);
2287                 break;
2288         default:
2289                 error = -EINVAL;
2290                 break;
2291         }
2292         return error;
2293 }
2294
2295 SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
2296                 struct getcpu_cache __user *, unused)
2297 {
2298         int err = 0;
2299         int cpu = raw_smp_processor_id();
2300
2301         if (cpup)
2302                 err |= put_user(cpu, cpup);
2303         if (nodep)
2304                 err |= put_user(cpu_to_node(cpu), nodep);
2305         return err ? -EFAULT : 0;
2306 }
2307
2308 /**
2309  * do_sysinfo - fill in sysinfo struct
2310  * @info: pointer to buffer to fill
2311  */
2312 static int do_sysinfo(struct sysinfo *info)
2313 {
2314         unsigned long mem_total, sav_total;
2315         unsigned int mem_unit, bitcount;
2316         struct timespec tp;
2317
2318         memset(info, 0, sizeof(struct sysinfo));
2319
2320         get_monotonic_boottime(&tp);
2321         info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
2322
2323         get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT);
2324
2325         info->procs = nr_threads;
2326
2327         si_meminfo(info);
2328         si_swapinfo(info);
2329
2330         /*
2331          * If the sum of all the available memory (i.e. ram + swap)
2332          * is less than can be stored in a 32 bit unsigned long then
2333          * we can be binary compatible with 2.2.x kernels.  If not,
2334          * well, in that case 2.2.x was broken anyways...
2335          *
2336          *  -Erik Andersen <andersee@debian.org>
2337          */
2338
2339         mem_total = info->totalram + info->totalswap;
2340         if (mem_total < info->totalram || mem_total < info->totalswap)
2341                 goto out;
2342         bitcount = 0;
2343         mem_unit = info->mem_unit;
2344         while (mem_unit > 1) {
2345                 bitcount++;
2346                 mem_unit >>= 1;
2347                 sav_total = mem_total;
2348                 mem_total <<= 1;
2349                 if (mem_total < sav_total)
2350                         goto out;
2351         }
2352
2353         /*
2354          * If mem_total did not overflow, multiply all memory values by
2355          * info->mem_unit and set it to 1.  This leaves things compatible
2356          * with 2.2.x, and also retains compatibility with earlier 2.4.x
2357          * kernels...
2358          */
2359
2360         info->mem_unit = 1;
2361         info->totalram <<= bitcount;
2362         info->freeram <<= bitcount;
2363         info->sharedram <<= bitcount;
2364         info->bufferram <<= bitcount;
2365         info->totalswap <<= bitcount;
2366         info->freeswap <<= bitcount;
2367         info->totalhigh <<= bitcount;
2368         info->freehigh <<= bitcount;
2369
2370 out:
2371         return 0;
2372 }
2373
2374 SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info)
2375 {
2376         struct sysinfo val;
2377
2378         do_sysinfo(&val);
2379
2380         if (copy_to_user(info, &val, sizeof(struct sysinfo)))
2381                 return -EFAULT;
2382
2383         return 0;
2384 }
2385
2386 #ifdef CONFIG_COMPAT
2387 struct compat_sysinfo {
2388         s32 uptime;
2389         u32 loads[3];
2390         u32 totalram;
2391         u32 freeram;
2392         u32 sharedram;
2393         u32 bufferram;
2394         u32 totalswap;
2395         u32 freeswap;
2396         u16 procs;
2397         u16 pad;
2398         u32 totalhigh;
2399         u32 freehigh;
2400         u32 mem_unit;
2401         char _f[20-2*sizeof(u32)-sizeof(int)];
2402 };
2403
2404 COMPAT_SYSCALL_DEFINE1(sysinfo, struct compat_sysinfo __user *, info)
2405 {
2406         struct sysinfo s;
2407
2408         do_sysinfo(&s);
2409
2410         /* Check to see if any memory value is too large for 32-bit and scale
2411          *  down if needed
2412          */
2413         if (upper_32_bits(s.totalram) || upper_32_bits(s.totalswap)) {
2414                 int bitcount = 0;
2415
2416                 while (s.mem_unit < PAGE_SIZE) {
2417                         s.mem_unit <<= 1;
2418                         bitcount++;
2419                 }
2420
2421                 s.totalram >>= bitcount;
2422                 s.freeram >>= bitcount;
2423                 s.sharedram >>= bitcount;
2424                 s.bufferram >>= bitcount;
2425                 s.totalswap >>= bitcount;
2426                 s.freeswap >>= bitcount;
2427                 s.totalhigh >>= bitcount;
2428                 s.freehigh >>= bitcount;
2429         }
2430
2431         if (!access_ok(VERIFY_WRITE, info, sizeof(struct compat_sysinfo)) ||
2432             __put_user(s.uptime, &info->uptime) ||
2433             __put_user(s.loads[0], &info->loads[0]) ||
2434             __put_user(s.loads[1], &info->loads[1]) ||
2435             __put_user(s.loads[2], &info->loads[2]) ||
2436             __put_user(s.totalram, &info->totalram) ||
2437             __put_user(s.freeram, &info->freeram) ||
2438             __put_user(s.sharedram, &info->sharedram) ||
2439             __put_user(s.bufferram, &info->bufferram) ||
2440             __put_user(s.totalswap, &info->totalswap) ||
2441             __put_user(s.freeswap, &info->freeswap) ||
2442             __put_user(s.procs, &info->procs) ||
2443             __put_user(s.totalhigh, &info->totalhigh) ||
2444             __put_user(s.freehigh, &info->freehigh) ||
2445             __put_user(s.mem_unit, &info->mem_unit))
2446                 return -EFAULT;
2447
2448         return 0;
2449 }
2450 #endif /* CONFIG_COMPAT */