]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/kernel/sys.c | |
3 | * | |
4 | * Copyright (C) 1991, 1992 Linus Torvalds | |
5 | */ | |
6 | ||
7 | #include <linux/config.h> | |
8 | #include <linux/module.h> | |
9 | #include <linux/mm.h> | |
10 | #include <linux/utsname.h> | |
11 | #include <linux/mman.h> | |
12 | #include <linux/smp_lock.h> | |
13 | #include <linux/notifier.h> | |
14 | #include <linux/reboot.h> | |
15 | #include <linux/prctl.h> | |
16 | #include <linux/init.h> | |
17 | #include <linux/highuid.h> | |
18 | #include <linux/fs.h> | |
dc009d92 EB |
19 | #include <linux/kernel.h> |
20 | #include <linux/kexec.h> | |
1da177e4 LT |
21 | #include <linux/workqueue.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> | |
7ed20e1a | 30 | #include <linux/signal.h> |
1da177e4 LT |
31 | |
32 | #include <linux/compat.h> | |
33 | #include <linux/syscalls.h> | |
34 | ||
35 | #include <asm/uaccess.h> | |
36 | #include <asm/io.h> | |
37 | #include <asm/unistd.h> | |
38 | ||
39 | #ifndef SET_UNALIGN_CTL | |
40 | # define SET_UNALIGN_CTL(a,b) (-EINVAL) | |
41 | #endif | |
42 | #ifndef GET_UNALIGN_CTL | |
43 | # define GET_UNALIGN_CTL(a,b) (-EINVAL) | |
44 | #endif | |
45 | #ifndef SET_FPEMU_CTL | |
46 | # define SET_FPEMU_CTL(a,b) (-EINVAL) | |
47 | #endif | |
48 | #ifndef GET_FPEMU_CTL | |
49 | # define GET_FPEMU_CTL(a,b) (-EINVAL) | |
50 | #endif | |
51 | #ifndef SET_FPEXC_CTL | |
52 | # define SET_FPEXC_CTL(a,b) (-EINVAL) | |
53 | #endif | |
54 | #ifndef GET_FPEXC_CTL | |
55 | # define GET_FPEXC_CTL(a,b) (-EINVAL) | |
56 | #endif | |
57 | ||
58 | /* | |
59 | * this is where the system-wide overflow UID and GID are defined, for | |
60 | * architectures that now have 32-bit UID/GID but didn't in the past | |
61 | */ | |
62 | ||
63 | int overflowuid = DEFAULT_OVERFLOWUID; | |
64 | int overflowgid = DEFAULT_OVERFLOWGID; | |
65 | ||
66 | #ifdef CONFIG_UID16 | |
67 | EXPORT_SYMBOL(overflowuid); | |
68 | EXPORT_SYMBOL(overflowgid); | |
69 | #endif | |
70 | ||
71 | /* | |
72 | * the same as above, but for filesystems which can only store a 16-bit | |
73 | * UID and GID. as such, this is needed on all architectures | |
74 | */ | |
75 | ||
76 | int fs_overflowuid = DEFAULT_FS_OVERFLOWUID; | |
77 | int fs_overflowgid = DEFAULT_FS_OVERFLOWUID; | |
78 | ||
79 | EXPORT_SYMBOL(fs_overflowuid); | |
80 | EXPORT_SYMBOL(fs_overflowgid); | |
81 | ||
82 | /* | |
83 | * this indicates whether you can reboot with ctrl-alt-del: the default is yes | |
84 | */ | |
85 | ||
86 | int C_A_D = 1; | |
87 | int cad_pid = 1; | |
88 | ||
89 | /* | |
90 | * Notifier list for kernel code which wants to be called | |
91 | * at shutdown. This is used to stop any idling DMA operations | |
92 | * and the like. | |
93 | */ | |
94 | ||
95 | static struct notifier_block *reboot_notifier_list; | |
96 | static DEFINE_RWLOCK(notifier_lock); | |
97 | ||
98 | /** | |
99 | * notifier_chain_register - Add notifier to a notifier chain | |
100 | * @list: Pointer to root list pointer | |
101 | * @n: New entry in notifier chain | |
102 | * | |
103 | * Adds a notifier to a notifier chain. | |
104 | * | |
105 | * Currently always returns zero. | |
106 | */ | |
107 | ||
108 | int notifier_chain_register(struct notifier_block **list, struct notifier_block *n) | |
109 | { | |
110 | write_lock(¬ifier_lock); | |
111 | while(*list) | |
112 | { | |
113 | if(n->priority > (*list)->priority) | |
114 | break; | |
115 | list= &((*list)->next); | |
116 | } | |
117 | n->next = *list; | |
118 | *list=n; | |
119 | write_unlock(¬ifier_lock); | |
120 | return 0; | |
121 | } | |
122 | ||
123 | EXPORT_SYMBOL(notifier_chain_register); | |
124 | ||
125 | /** | |
126 | * notifier_chain_unregister - Remove notifier from a notifier chain | |
127 | * @nl: Pointer to root list pointer | |
128 | * @n: New entry in notifier chain | |
129 | * | |
130 | * Removes a notifier from a notifier chain. | |
131 | * | |
132 | * Returns zero on success, or %-ENOENT on failure. | |
133 | */ | |
134 | ||
135 | int notifier_chain_unregister(struct notifier_block **nl, struct notifier_block *n) | |
136 | { | |
137 | write_lock(¬ifier_lock); | |
138 | while((*nl)!=NULL) | |
139 | { | |
140 | if((*nl)==n) | |
141 | { | |
142 | *nl=n->next; | |
143 | write_unlock(¬ifier_lock); | |
144 | return 0; | |
145 | } | |
146 | nl=&((*nl)->next); | |
147 | } | |
148 | write_unlock(¬ifier_lock); | |
149 | return -ENOENT; | |
150 | } | |
151 | ||
152 | EXPORT_SYMBOL(notifier_chain_unregister); | |
153 | ||
154 | /** | |
155 | * notifier_call_chain - Call functions in a notifier chain | |
156 | * @n: Pointer to root pointer of notifier chain | |
157 | * @val: Value passed unmodified to notifier function | |
158 | * @v: Pointer passed unmodified to notifier function | |
159 | * | |
160 | * Calls each function in a notifier chain in turn. | |
161 | * | |
162 | * If the return value of the notifier can be and'd | |
163 | * with %NOTIFY_STOP_MASK, then notifier_call_chain | |
164 | * will return immediately, with the return value of | |
165 | * the notifier function which halted execution. | |
166 | * Otherwise, the return value is the return value | |
167 | * of the last notifier function called. | |
168 | */ | |
169 | ||
170 | int notifier_call_chain(struct notifier_block **n, unsigned long val, void *v) | |
171 | { | |
172 | int ret=NOTIFY_DONE; | |
173 | struct notifier_block *nb = *n; | |
174 | ||
175 | while(nb) | |
176 | { | |
177 | ret=nb->notifier_call(nb,val,v); | |
178 | if(ret&NOTIFY_STOP_MASK) | |
179 | { | |
180 | return ret; | |
181 | } | |
182 | nb=nb->next; | |
183 | } | |
184 | return ret; | |
185 | } | |
186 | ||
187 | EXPORT_SYMBOL(notifier_call_chain); | |
188 | ||
189 | /** | |
190 | * register_reboot_notifier - Register function to be called at reboot time | |
191 | * @nb: Info about notifier function to be called | |
192 | * | |
193 | * Registers a function with the list of functions | |
194 | * to be called at reboot time. | |
195 | * | |
196 | * Currently always returns zero, as notifier_chain_register | |
197 | * always returns zero. | |
198 | */ | |
199 | ||
200 | int register_reboot_notifier(struct notifier_block * nb) | |
201 | { | |
202 | return notifier_chain_register(&reboot_notifier_list, nb); | |
203 | } | |
204 | ||
205 | EXPORT_SYMBOL(register_reboot_notifier); | |
206 | ||
207 | /** | |
208 | * unregister_reboot_notifier - Unregister previously registered reboot notifier | |
209 | * @nb: Hook to be unregistered | |
210 | * | |
211 | * Unregisters a previously registered reboot | |
212 | * notifier function. | |
213 | * | |
214 | * Returns zero on success, or %-ENOENT on failure. | |
215 | */ | |
216 | ||
217 | int unregister_reboot_notifier(struct notifier_block * nb) | |
218 | { | |
219 | return notifier_chain_unregister(&reboot_notifier_list, nb); | |
220 | } | |
221 | ||
222 | EXPORT_SYMBOL(unregister_reboot_notifier); | |
223 | ||
224 | static int set_one_prio(struct task_struct *p, int niceval, int error) | |
225 | { | |
226 | int no_nice; | |
227 | ||
228 | if (p->uid != current->euid && | |
229 | p->euid != current->euid && !capable(CAP_SYS_NICE)) { | |
230 | error = -EPERM; | |
231 | goto out; | |
232 | } | |
e43379f1 | 233 | if (niceval < task_nice(p) && !can_nice(p, niceval)) { |
1da177e4 LT |
234 | error = -EACCES; |
235 | goto out; | |
236 | } | |
237 | no_nice = security_task_setnice(p, niceval); | |
238 | if (no_nice) { | |
239 | error = no_nice; | |
240 | goto out; | |
241 | } | |
242 | if (error == -ESRCH) | |
243 | error = 0; | |
244 | set_user_nice(p, niceval); | |
245 | out: | |
246 | return error; | |
247 | } | |
248 | ||
249 | asmlinkage long sys_setpriority(int which, int who, int niceval) | |
250 | { | |
251 | struct task_struct *g, *p; | |
252 | struct user_struct *user; | |
253 | int error = -EINVAL; | |
254 | ||
255 | if (which > 2 || which < 0) | |
256 | goto out; | |
257 | ||
258 | /* normalize: avoid signed division (rounding problems) */ | |
259 | error = -ESRCH; | |
260 | if (niceval < -20) | |
261 | niceval = -20; | |
262 | if (niceval > 19) | |
263 | niceval = 19; | |
264 | ||
265 | read_lock(&tasklist_lock); | |
266 | switch (which) { | |
267 | case PRIO_PROCESS: | |
268 | if (!who) | |
269 | who = current->pid; | |
270 | p = find_task_by_pid(who); | |
271 | if (p) | |
272 | error = set_one_prio(p, niceval, error); | |
273 | break; | |
274 | case PRIO_PGRP: | |
275 | if (!who) | |
276 | who = process_group(current); | |
277 | do_each_task_pid(who, PIDTYPE_PGID, p) { | |
278 | error = set_one_prio(p, niceval, error); | |
279 | } while_each_task_pid(who, PIDTYPE_PGID, p); | |
280 | break; | |
281 | case PRIO_USER: | |
282 | user = current->user; | |
283 | if (!who) | |
284 | who = current->uid; | |
285 | else | |
286 | if ((who != current->uid) && !(user = find_user(who))) | |
287 | goto out_unlock; /* No processes for this user */ | |
288 | ||
289 | do_each_thread(g, p) | |
290 | if (p->uid == who) | |
291 | error = set_one_prio(p, niceval, error); | |
292 | while_each_thread(g, p); | |
293 | if (who != current->uid) | |
294 | free_uid(user); /* For find_user() */ | |
295 | break; | |
296 | } | |
297 | out_unlock: | |
298 | read_unlock(&tasklist_lock); | |
299 | out: | |
300 | return error; | |
301 | } | |
302 | ||
303 | /* | |
304 | * Ugh. To avoid negative return values, "getpriority()" will | |
305 | * not return the normal nice-value, but a negated value that | |
306 | * has been offset by 20 (ie it returns 40..1 instead of -20..19) | |
307 | * to stay compatible. | |
308 | */ | |
309 | asmlinkage long sys_getpriority(int which, int who) | |
310 | { | |
311 | struct task_struct *g, *p; | |
312 | struct user_struct *user; | |
313 | long niceval, retval = -ESRCH; | |
314 | ||
315 | if (which > 2 || which < 0) | |
316 | return -EINVAL; | |
317 | ||
318 | read_lock(&tasklist_lock); | |
319 | switch (which) { | |
320 | case PRIO_PROCESS: | |
321 | if (!who) | |
322 | who = current->pid; | |
323 | p = find_task_by_pid(who); | |
324 | if (p) { | |
325 | niceval = 20 - task_nice(p); | |
326 | if (niceval > retval) | |
327 | retval = niceval; | |
328 | } | |
329 | break; | |
330 | case PRIO_PGRP: | |
331 | if (!who) | |
332 | who = process_group(current); | |
333 | do_each_task_pid(who, PIDTYPE_PGID, p) { | |
334 | niceval = 20 - task_nice(p); | |
335 | if (niceval > retval) | |
336 | retval = niceval; | |
337 | } while_each_task_pid(who, PIDTYPE_PGID, p); | |
338 | break; | |
339 | case PRIO_USER: | |
340 | user = current->user; | |
341 | if (!who) | |
342 | who = current->uid; | |
343 | else | |
344 | if ((who != current->uid) && !(user = find_user(who))) | |
345 | goto out_unlock; /* No processes for this user */ | |
346 | ||
347 | do_each_thread(g, p) | |
348 | if (p->uid == who) { | |
349 | niceval = 20 - task_nice(p); | |
350 | if (niceval > retval) | |
351 | retval = niceval; | |
352 | } | |
353 | while_each_thread(g, p); | |
354 | if (who != current->uid) | |
355 | free_uid(user); /* for find_user() */ | |
356 | break; | |
357 | } | |
358 | out_unlock: | |
359 | read_unlock(&tasklist_lock); | |
360 | ||
361 | return retval; | |
362 | } | |
363 | ||
7c903473 EB |
364 | void emergency_restart(void) |
365 | { | |
366 | machine_emergency_restart(); | |
367 | } | |
368 | EXPORT_SYMBOL_GPL(emergency_restart); | |
369 | ||
4a00ea1e EB |
370 | void kernel_restart(char *cmd) |
371 | { | |
372 | notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd); | |
373 | system_state = SYSTEM_RESTART; | |
4a00ea1e EB |
374 | device_shutdown(); |
375 | if (!cmd) { | |
376 | printk(KERN_EMERG "Restarting system.\n"); | |
377 | } else { | |
378 | printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd); | |
379 | } | |
380 | printk(".\n"); | |
381 | machine_restart(cmd); | |
382 | } | |
383 | EXPORT_SYMBOL_GPL(kernel_restart); | |
384 | ||
385 | void kernel_kexec(void) | |
386 | { | |
387 | #ifdef CONFIG_KEXEC | |
388 | struct kimage *image; | |
389 | image = xchg(&kexec_image, 0); | |
390 | if (!image) { | |
391 | return; | |
392 | } | |
393 | notifier_call_chain(&reboot_notifier_list, SYS_RESTART, NULL); | |
394 | system_state = SYSTEM_RESTART; | |
4a00ea1e EB |
395 | device_shutdown(); |
396 | printk(KERN_EMERG "Starting new kernel\n"); | |
397 | machine_shutdown(); | |
398 | machine_kexec(image); | |
399 | #endif | |
400 | } | |
401 | EXPORT_SYMBOL_GPL(kernel_kexec); | |
402 | ||
403 | void kernel_halt(void) | |
404 | { | |
405 | notifier_call_chain(&reboot_notifier_list, SYS_HALT, NULL); | |
406 | system_state = SYSTEM_HALT; | |
4a00ea1e EB |
407 | device_shutdown(); |
408 | printk(KERN_EMERG "System halted.\n"); | |
409 | machine_halt(); | |
410 | } | |
411 | EXPORT_SYMBOL_GPL(kernel_halt); | |
412 | ||
413 | void kernel_power_off(void) | |
414 | { | |
415 | notifier_call_chain(&reboot_notifier_list, SYS_POWER_OFF, NULL); | |
416 | system_state = SYSTEM_POWER_OFF; | |
4a00ea1e EB |
417 | device_shutdown(); |
418 | printk(KERN_EMERG "Power down.\n"); | |
419 | machine_power_off(); | |
420 | } | |
421 | EXPORT_SYMBOL_GPL(kernel_power_off); | |
1da177e4 LT |
422 | |
423 | /* | |
424 | * Reboot system call: for obvious reasons only root may call it, | |
425 | * and even root needs to set up some magic numbers in the registers | |
426 | * so that some mistake won't make this reboot the whole machine. | |
427 | * You can also set the meaning of the ctrl-alt-del-key here. | |
428 | * | |
429 | * reboot doesn't sync: do that yourself before calling this. | |
430 | */ | |
431 | asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd, void __user * arg) | |
432 | { | |
433 | char buffer[256]; | |
434 | ||
435 | /* We only trust the superuser with rebooting the system. */ | |
436 | if (!capable(CAP_SYS_BOOT)) | |
437 | return -EPERM; | |
438 | ||
439 | /* For safety, we require "magic" arguments. */ | |
440 | if (magic1 != LINUX_REBOOT_MAGIC1 || | |
441 | (magic2 != LINUX_REBOOT_MAGIC2 && | |
442 | magic2 != LINUX_REBOOT_MAGIC2A && | |
443 | magic2 != LINUX_REBOOT_MAGIC2B && | |
444 | magic2 != LINUX_REBOOT_MAGIC2C)) | |
445 | return -EINVAL; | |
446 | ||
447 | lock_kernel(); | |
448 | switch (cmd) { | |
449 | case LINUX_REBOOT_CMD_RESTART: | |
4a00ea1e | 450 | kernel_restart(NULL); |
1da177e4 LT |
451 | break; |
452 | ||
453 | case LINUX_REBOOT_CMD_CAD_ON: | |
454 | C_A_D = 1; | |
455 | break; | |
456 | ||
457 | case LINUX_REBOOT_CMD_CAD_OFF: | |
458 | C_A_D = 0; | |
459 | break; | |
460 | ||
461 | case LINUX_REBOOT_CMD_HALT: | |
4a00ea1e | 462 | kernel_halt(); |
1da177e4 LT |
463 | unlock_kernel(); |
464 | do_exit(0); | |
465 | break; | |
466 | ||
467 | case LINUX_REBOOT_CMD_POWER_OFF: | |
4a00ea1e | 468 | kernel_power_off(); |
1da177e4 LT |
469 | unlock_kernel(); |
470 | do_exit(0); | |
471 | break; | |
472 | ||
473 | case LINUX_REBOOT_CMD_RESTART2: | |
474 | if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) { | |
475 | unlock_kernel(); | |
476 | return -EFAULT; | |
477 | } | |
478 | buffer[sizeof(buffer) - 1] = '\0'; | |
479 | ||
4a00ea1e | 480 | kernel_restart(buffer); |
1da177e4 LT |
481 | break; |
482 | ||
dc009d92 | 483 | case LINUX_REBOOT_CMD_KEXEC: |
4a00ea1e EB |
484 | kernel_kexec(); |
485 | unlock_kernel(); | |
486 | return -EINVAL; | |
487 | ||
1da177e4 LT |
488 | #ifdef CONFIG_SOFTWARE_SUSPEND |
489 | case LINUX_REBOOT_CMD_SW_SUSPEND: | |
490 | { | |
491 | int ret = software_suspend(); | |
492 | unlock_kernel(); | |
493 | return ret; | |
494 | } | |
495 | #endif | |
496 | ||
497 | default: | |
498 | unlock_kernel(); | |
499 | return -EINVAL; | |
500 | } | |
501 | unlock_kernel(); | |
502 | return 0; | |
503 | } | |
504 | ||
505 | static void deferred_cad(void *dummy) | |
506 | { | |
abcd9e51 | 507 | kernel_restart(NULL); |
1da177e4 LT |
508 | } |
509 | ||
510 | /* | |
511 | * This function gets called by ctrl-alt-del - ie the keyboard interrupt. | |
512 | * As it's called within an interrupt, it may NOT sync: the only choice | |
513 | * is whether to reboot at once, or just ignore the ctrl-alt-del. | |
514 | */ | |
515 | void ctrl_alt_del(void) | |
516 | { | |
517 | static DECLARE_WORK(cad_work, deferred_cad, NULL); | |
518 | ||
519 | if (C_A_D) | |
520 | schedule_work(&cad_work); | |
521 | else | |
522 | kill_proc(cad_pid, SIGINT, 1); | |
523 | } | |
524 | ||
525 | ||
526 | /* | |
527 | * Unprivileged users may change the real gid to the effective gid | |
528 | * or vice versa. (BSD-style) | |
529 | * | |
530 | * If you set the real gid at all, or set the effective gid to a value not | |
531 | * equal to the real gid, then the saved gid is set to the new effective gid. | |
532 | * | |
533 | * This makes it possible for a setgid program to completely drop its | |
534 | * privileges, which is often a useful assertion to make when you are doing | |
535 | * a security audit over a program. | |
536 | * | |
537 | * The general idea is that a program which uses just setregid() will be | |
538 | * 100% compatible with BSD. A program which uses just setgid() will be | |
539 | * 100% compatible with POSIX with saved IDs. | |
540 | * | |
541 | * SMP: There are not races, the GIDs are checked only by filesystem | |
542 | * operations (as far as semantic preservation is concerned). | |
543 | */ | |
544 | asmlinkage long sys_setregid(gid_t rgid, gid_t egid) | |
545 | { | |
546 | int old_rgid = current->gid; | |
547 | int old_egid = current->egid; | |
548 | int new_rgid = old_rgid; | |
549 | int new_egid = old_egid; | |
550 | int retval; | |
551 | ||
552 | retval = security_task_setgid(rgid, egid, (gid_t)-1, LSM_SETID_RE); | |
553 | if (retval) | |
554 | return retval; | |
555 | ||
556 | if (rgid != (gid_t) -1) { | |
557 | if ((old_rgid == rgid) || | |
558 | (current->egid==rgid) || | |
559 | capable(CAP_SETGID)) | |
560 | new_rgid = rgid; | |
561 | else | |
562 | return -EPERM; | |
563 | } | |
564 | if (egid != (gid_t) -1) { | |
565 | if ((old_rgid == egid) || | |
566 | (current->egid == egid) || | |
567 | (current->sgid == egid) || | |
568 | capable(CAP_SETGID)) | |
569 | new_egid = egid; | |
570 | else { | |
571 | return -EPERM; | |
572 | } | |
573 | } | |
574 | if (new_egid != old_egid) | |
575 | { | |
d6e71144 | 576 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 577 | smp_wmb(); |
1da177e4 LT |
578 | } |
579 | if (rgid != (gid_t) -1 || | |
580 | (egid != (gid_t) -1 && egid != old_rgid)) | |
581 | current->sgid = new_egid; | |
582 | current->fsgid = new_egid; | |
583 | current->egid = new_egid; | |
584 | current->gid = new_rgid; | |
585 | key_fsgid_changed(current); | |
586 | return 0; | |
587 | } | |
588 | ||
589 | /* | |
590 | * setgid() is implemented like SysV w/ SAVED_IDS | |
591 | * | |
592 | * SMP: Same implicit races as above. | |
593 | */ | |
594 | asmlinkage long sys_setgid(gid_t gid) | |
595 | { | |
596 | int old_egid = current->egid; | |
597 | int retval; | |
598 | ||
599 | retval = security_task_setgid(gid, (gid_t)-1, (gid_t)-1, LSM_SETID_ID); | |
600 | if (retval) | |
601 | return retval; | |
602 | ||
603 | if (capable(CAP_SETGID)) | |
604 | { | |
605 | if(old_egid != gid) | |
606 | { | |
d6e71144 | 607 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 608 | smp_wmb(); |
1da177e4 LT |
609 | } |
610 | current->gid = current->egid = current->sgid = current->fsgid = gid; | |
611 | } | |
612 | else if ((gid == current->gid) || (gid == current->sgid)) | |
613 | { | |
614 | if(old_egid != gid) | |
615 | { | |
d6e71144 | 616 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 617 | smp_wmb(); |
1da177e4 LT |
618 | } |
619 | current->egid = current->fsgid = gid; | |
620 | } | |
621 | else | |
622 | return -EPERM; | |
623 | ||
624 | key_fsgid_changed(current); | |
625 | return 0; | |
626 | } | |
627 | ||
628 | static int set_user(uid_t new_ruid, int dumpclear) | |
629 | { | |
630 | struct user_struct *new_user; | |
631 | ||
632 | new_user = alloc_uid(new_ruid); | |
633 | if (!new_user) | |
634 | return -EAGAIN; | |
635 | ||
636 | if (atomic_read(&new_user->processes) >= | |
637 | current->signal->rlim[RLIMIT_NPROC].rlim_cur && | |
638 | new_user != &root_user) { | |
639 | free_uid(new_user); | |
640 | return -EAGAIN; | |
641 | } | |
642 | ||
643 | switch_uid(new_user); | |
644 | ||
645 | if(dumpclear) | |
646 | { | |
d6e71144 | 647 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 648 | smp_wmb(); |
1da177e4 LT |
649 | } |
650 | current->uid = new_ruid; | |
651 | return 0; | |
652 | } | |
653 | ||
654 | /* | |
655 | * Unprivileged users may change the real uid to the effective uid | |
656 | * or vice versa. (BSD-style) | |
657 | * | |
658 | * If you set the real uid at all, or set the effective uid to a value not | |
659 | * equal to the real uid, then the saved uid is set to the new effective uid. | |
660 | * | |
661 | * This makes it possible for a setuid program to completely drop its | |
662 | * privileges, which is often a useful assertion to make when you are doing | |
663 | * a security audit over a program. | |
664 | * | |
665 | * The general idea is that a program which uses just setreuid() will be | |
666 | * 100% compatible with BSD. A program which uses just setuid() will be | |
667 | * 100% compatible with POSIX with saved IDs. | |
668 | */ | |
669 | asmlinkage long sys_setreuid(uid_t ruid, uid_t euid) | |
670 | { | |
671 | int old_ruid, old_euid, old_suid, new_ruid, new_euid; | |
672 | int retval; | |
673 | ||
674 | retval = security_task_setuid(ruid, euid, (uid_t)-1, LSM_SETID_RE); | |
675 | if (retval) | |
676 | return retval; | |
677 | ||
678 | new_ruid = old_ruid = current->uid; | |
679 | new_euid = old_euid = current->euid; | |
680 | old_suid = current->suid; | |
681 | ||
682 | if (ruid != (uid_t) -1) { | |
683 | new_ruid = ruid; | |
684 | if ((old_ruid != ruid) && | |
685 | (current->euid != ruid) && | |
686 | !capable(CAP_SETUID)) | |
687 | return -EPERM; | |
688 | } | |
689 | ||
690 | if (euid != (uid_t) -1) { | |
691 | new_euid = euid; | |
692 | if ((old_ruid != euid) && | |
693 | (current->euid != euid) && | |
694 | (current->suid != euid) && | |
695 | !capable(CAP_SETUID)) | |
696 | return -EPERM; | |
697 | } | |
698 | ||
699 | if (new_ruid != old_ruid && set_user(new_ruid, new_euid != old_euid) < 0) | |
700 | return -EAGAIN; | |
701 | ||
702 | if (new_euid != old_euid) | |
703 | { | |
d6e71144 | 704 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 705 | smp_wmb(); |
1da177e4 LT |
706 | } |
707 | current->fsuid = current->euid = new_euid; | |
708 | if (ruid != (uid_t) -1 || | |
709 | (euid != (uid_t) -1 && euid != old_ruid)) | |
710 | current->suid = current->euid; | |
711 | current->fsuid = current->euid; | |
712 | ||
713 | key_fsuid_changed(current); | |
714 | ||
715 | return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RE); | |
716 | } | |
717 | ||
718 | ||
719 | ||
720 | /* | |
721 | * setuid() is implemented like SysV with SAVED_IDS | |
722 | * | |
723 | * Note that SAVED_ID's is deficient in that a setuid root program | |
724 | * like sendmail, for example, cannot set its uid to be a normal | |
725 | * user and then switch back, because if you're root, setuid() sets | |
726 | * the saved uid too. If you don't like this, blame the bright people | |
727 | * in the POSIX committee and/or USG. Note that the BSD-style setreuid() | |
728 | * will allow a root program to temporarily drop privileges and be able to | |
729 | * regain them by swapping the real and effective uid. | |
730 | */ | |
731 | asmlinkage long sys_setuid(uid_t uid) | |
732 | { | |
733 | int old_euid = current->euid; | |
734 | int old_ruid, old_suid, new_ruid, new_suid; | |
735 | int retval; | |
736 | ||
737 | retval = security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_ID); | |
738 | if (retval) | |
739 | return retval; | |
740 | ||
741 | old_ruid = new_ruid = current->uid; | |
742 | old_suid = current->suid; | |
743 | new_suid = old_suid; | |
744 | ||
745 | if (capable(CAP_SETUID)) { | |
746 | if (uid != old_ruid && set_user(uid, old_euid != uid) < 0) | |
747 | return -EAGAIN; | |
748 | new_suid = uid; | |
749 | } else if ((uid != current->uid) && (uid != new_suid)) | |
750 | return -EPERM; | |
751 | ||
752 | if (old_euid != uid) | |
753 | { | |
d6e71144 | 754 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 755 | smp_wmb(); |
1da177e4 LT |
756 | } |
757 | current->fsuid = current->euid = uid; | |
758 | current->suid = new_suid; | |
759 | ||
760 | key_fsuid_changed(current); | |
761 | ||
762 | return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_ID); | |
763 | } | |
764 | ||
765 | ||
766 | /* | |
767 | * This function implements a generic ability to update ruid, euid, | |
768 | * and suid. This allows you to implement the 4.4 compatible seteuid(). | |
769 | */ | |
770 | asmlinkage long sys_setresuid(uid_t ruid, uid_t euid, uid_t suid) | |
771 | { | |
772 | int old_ruid = current->uid; | |
773 | int old_euid = current->euid; | |
774 | int old_suid = current->suid; | |
775 | int retval; | |
776 | ||
777 | retval = security_task_setuid(ruid, euid, suid, LSM_SETID_RES); | |
778 | if (retval) | |
779 | return retval; | |
780 | ||
781 | if (!capable(CAP_SETUID)) { | |
782 | if ((ruid != (uid_t) -1) && (ruid != current->uid) && | |
783 | (ruid != current->euid) && (ruid != current->suid)) | |
784 | return -EPERM; | |
785 | if ((euid != (uid_t) -1) && (euid != current->uid) && | |
786 | (euid != current->euid) && (euid != current->suid)) | |
787 | return -EPERM; | |
788 | if ((suid != (uid_t) -1) && (suid != current->uid) && | |
789 | (suid != current->euid) && (suid != current->suid)) | |
790 | return -EPERM; | |
791 | } | |
792 | if (ruid != (uid_t) -1) { | |
793 | if (ruid != current->uid && set_user(ruid, euid != current->euid) < 0) | |
794 | return -EAGAIN; | |
795 | } | |
796 | if (euid != (uid_t) -1) { | |
797 | if (euid != current->euid) | |
798 | { | |
d6e71144 | 799 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 800 | smp_wmb(); |
1da177e4 LT |
801 | } |
802 | current->euid = euid; | |
803 | } | |
804 | current->fsuid = current->euid; | |
805 | if (suid != (uid_t) -1) | |
806 | current->suid = suid; | |
807 | ||
808 | key_fsuid_changed(current); | |
809 | ||
810 | return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RES); | |
811 | } | |
812 | ||
813 | asmlinkage long sys_getresuid(uid_t __user *ruid, uid_t __user *euid, uid_t __user *suid) | |
814 | { | |
815 | int retval; | |
816 | ||
817 | if (!(retval = put_user(current->uid, ruid)) && | |
818 | !(retval = put_user(current->euid, euid))) | |
819 | retval = put_user(current->suid, suid); | |
820 | ||
821 | return retval; | |
822 | } | |
823 | ||
824 | /* | |
825 | * Same as above, but for rgid, egid, sgid. | |
826 | */ | |
827 | asmlinkage long sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid) | |
828 | { | |
829 | int retval; | |
830 | ||
831 | retval = security_task_setgid(rgid, egid, sgid, LSM_SETID_RES); | |
832 | if (retval) | |
833 | return retval; | |
834 | ||
835 | if (!capable(CAP_SETGID)) { | |
836 | if ((rgid != (gid_t) -1) && (rgid != current->gid) && | |
837 | (rgid != current->egid) && (rgid != current->sgid)) | |
838 | return -EPERM; | |
839 | if ((egid != (gid_t) -1) && (egid != current->gid) && | |
840 | (egid != current->egid) && (egid != current->sgid)) | |
841 | return -EPERM; | |
842 | if ((sgid != (gid_t) -1) && (sgid != current->gid) && | |
843 | (sgid != current->egid) && (sgid != current->sgid)) | |
844 | return -EPERM; | |
845 | } | |
846 | if (egid != (gid_t) -1) { | |
847 | if (egid != current->egid) | |
848 | { | |
d6e71144 | 849 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 850 | smp_wmb(); |
1da177e4 LT |
851 | } |
852 | current->egid = egid; | |
853 | } | |
854 | current->fsgid = current->egid; | |
855 | if (rgid != (gid_t) -1) | |
856 | current->gid = rgid; | |
857 | if (sgid != (gid_t) -1) | |
858 | current->sgid = sgid; | |
859 | ||
860 | key_fsgid_changed(current); | |
861 | return 0; | |
862 | } | |
863 | ||
864 | asmlinkage long sys_getresgid(gid_t __user *rgid, gid_t __user *egid, gid_t __user *sgid) | |
865 | { | |
866 | int retval; | |
867 | ||
868 | if (!(retval = put_user(current->gid, rgid)) && | |
869 | !(retval = put_user(current->egid, egid))) | |
870 | retval = put_user(current->sgid, sgid); | |
871 | ||
872 | return retval; | |
873 | } | |
874 | ||
875 | ||
876 | /* | |
877 | * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This | |
878 | * is used for "access()" and for the NFS daemon (letting nfsd stay at | |
879 | * whatever uid it wants to). It normally shadows "euid", except when | |
880 | * explicitly set by setfsuid() or for access.. | |
881 | */ | |
882 | asmlinkage long sys_setfsuid(uid_t uid) | |
883 | { | |
884 | int old_fsuid; | |
885 | ||
886 | old_fsuid = current->fsuid; | |
887 | if (security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS)) | |
888 | return old_fsuid; | |
889 | ||
890 | if (uid == current->uid || uid == current->euid || | |
891 | uid == current->suid || uid == current->fsuid || | |
892 | capable(CAP_SETUID)) | |
893 | { | |
894 | if (uid != old_fsuid) | |
895 | { | |
d6e71144 | 896 | current->mm->dumpable = suid_dumpable; |
d59dd462 | 897 | smp_wmb(); |
1da177e4 LT |
898 | } |
899 | current->fsuid = uid; | |
900 | } | |
901 | ||
902 | key_fsuid_changed(current); | |
903 | ||
904 | security_task_post_setuid(old_fsuid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS); | |
905 | ||
906 | return old_fsuid; | |
907 | } | |
908 | ||
909 | /* | |
910 |