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