exit.c 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  1. /*
  2. * linux/kernel/exit.c
  3. *
  4. * Copyright (C) 1991, 1992 Linus Torvalds
  5. */
  6. #include <linux/mm.h>
  7. #include <linux/slab.h>
  8. #include <linux/interrupt.h>
  9. #include <linux/module.h>
  10. #include <linux/capability.h>
  11. #include <linux/completion.h>
  12. #include <linux/personality.h>
  13. #include <linux/tty.h>
  14. #include <linux/iocontext.h>
  15. #include <linux/key.h>
  16. #include <linux/security.h>
  17. #include <linux/cpu.h>
  18. #include <linux/acct.h>
  19. #include <linux/tsacct_kern.h>
  20. #include <linux/file.h>
  21. #include <linux/fdtable.h>
  22. #include <linux/binfmts.h>
  23. #include <linux/nsproxy.h>
  24. #include <linux/pid_namespace.h>
  25. #include <linux/ptrace.h>
  26. #include <linux/profile.h>
  27. #include <linux/mount.h>
  28. #include <linux/proc_fs.h>
  29. #include <linux/kthread.h>
  30. #include <linux/mempolicy.h>
  31. #include <linux/taskstats_kern.h>
  32. #include <linux/delayacct.h>
  33. #include <linux/freezer.h>
  34. #include <linux/cgroup.h>
  35. #include <linux/syscalls.h>
  36. #include <linux/signal.h>
  37. #include <linux/posix-timers.h>
  38. #include <linux/cn_proc.h>
  39. #include <linux/mutex.h>
  40. #include <linux/futex.h>
  41. #include <linux/pipe_fs_i.h>
  42. #include <linux/audit.h> /* for audit_free() */
  43. #include <linux/resource.h>
  44. #include <linux/blkdev.h>
  45. #include <linux/task_io_accounting_ops.h>
  46. #include <linux/tracehook.h>
  47. #include <linux/fs_struct.h>
  48. #include <linux/init_task.h>
  49. #include <linux/perf_event.h>
  50. #include <trace/events/sched.h>
  51. #include <linux/hw_breakpoint.h>
  52. #include <linux/oom.h>
  53. #include <linux/writeback.h>
  54. #include <linux/shm.h>
  55. #include <asm/uaccess.h>
  56. #include <asm/unistd.h>
  57. #include <asm/pgtable.h>
  58. #include <asm/mmu_context.h>
  59. static void exit_mm(struct task_struct * tsk);
  60. static void __unhash_process(struct task_struct *p, bool group_dead)
  61. {
  62. nr_threads--;
  63. detach_pid(p, PIDTYPE_PID);
  64. if (group_dead) {
  65. detach_pid(p, PIDTYPE_PGID);
  66. detach_pid(p, PIDTYPE_SID);
  67. list_del_rcu(&p->tasks);
  68. list_del_init(&p->sibling);
  69. __this_cpu_dec(process_counts);
  70. /*
  71. * If we are the last child process in a pid namespace to be
  72. * reaped, notify the reaper sleeping zap_pid_ns_processes().
  73. */
  74. if (IS_ENABLED(CONFIG_PID_NS)) {
  75. struct task_struct *parent = p->real_parent;
  76. if ((task_active_pid_ns(parent)->child_reaper == parent) &&
  77. list_empty(&parent->children) &&
  78. (parent->flags & PF_EXITING))
  79. wake_up_process(parent);
  80. }
  81. }
  82. list_del_rcu(&p->thread_group);
  83. }
  84. /*
  85. * This function expects the tasklist_lock write-locked.
  86. */
  87. static void __exit_signal(struct task_struct *tsk)
  88. {
  89. struct signal_struct *sig = tsk->signal;
  90. bool group_dead = thread_group_leader(tsk);
  91. struct sighand_struct *sighand;
  92. struct tty_struct *uninitialized_var(tty);
  93. sighand = rcu_dereference_check(tsk->sighand,
  94. lockdep_tasklist_lock_is_held());
  95. spin_lock(&sighand->siglock);
  96. posix_cpu_timers_exit(tsk);
  97. if (group_dead) {
  98. posix_cpu_timers_exit_group(tsk);
  99. tty = sig->tty;
  100. sig->tty = NULL;
  101. } else {
  102. /*
  103. * This can only happen if the caller is de_thread().
  104. * FIXME: this is the temporary hack, we should teach
  105. * posix-cpu-timers to handle this case correctly.
  106. */
  107. if (unlikely(has_group_leader_pid(tsk)))
  108. posix_cpu_timers_exit_group(tsk);
  109. /*
  110. * If there is any task waiting for the group exit
  111. * then notify it:
  112. */
  113. if (sig->notify_count > 0 && !--sig->notify_count)
  114. wake_up_process(sig->group_exit_task);
  115. if (tsk == sig->curr_target)
  116. sig->curr_target = next_thread(tsk);
  117. /*
  118. * Accumulate here the counters for all threads but the
  119. * group leader as they die, so they can be added into
  120. * the process-wide totals when those are taken.
  121. * The group leader stays around as a zombie as long
  122. * as there are other threads. When it gets reaped,
  123. * the exit.c code will add its counts into these totals.
  124. * We won't ever get here for the group leader, since it
  125. * will have been the last reference on the signal_struct.
  126. */
  127. sig->utime += tsk->utime;
  128. sig->stime += tsk->stime;
  129. sig->gtime += tsk->gtime;
  130. sig->min_flt += tsk->min_flt;
  131. sig->maj_flt += tsk->maj_flt;
  132. sig->nvcsw += tsk->nvcsw;
  133. sig->nivcsw += tsk->nivcsw;
  134. sig->inblock += task_io_get_inblock(tsk);
  135. sig->oublock += task_io_get_oublock(tsk);
  136. task_io_accounting_add(&sig->ioac, &tsk->ioac);
  137. sig->sum_sched_runtime += tsk->se.sum_exec_runtime;
  138. }
  139. sig->nr_threads--;
  140. __unhash_process(tsk, group_dead);
  141. /*
  142. * Do this under ->siglock, we can race with another thread
  143. * doing sigqueue_free() if we have SIGQUEUE_PREALLOC signals.
  144. */
  145. flush_sigqueue(&tsk->pending);
  146. tsk->sighand = NULL;
  147. spin_unlock(&sighand->siglock);
  148. __cleanup_sighand(sighand);
  149. clear_tsk_thread_flag(tsk,TIF_SIGPENDING);
  150. if (group_dead) {
  151. flush_sigqueue(&sig->shared_pending);
  152. tty_kref_put(tty);
  153. }
  154. }
  155. static void delayed_put_task_struct(struct rcu_head *rhp)
  156. {
  157. struct task_struct *tsk = container_of(rhp, struct task_struct, rcu);
  158. perf_event_delayed_put(tsk);
  159. trace_sched_process_free(tsk);
  160. put_task_struct(tsk);
  161. }
  162. void release_task(struct task_struct * p)
  163. {
  164. struct task_struct *leader;
  165. int zap_leader;
  166. repeat:
  167. /* don't need to get the RCU readlock here - the process is dead and
  168. * can't be modifying its own credentials. But shut RCU-lockdep up */
  169. rcu_read_lock();
  170. atomic_dec(&__task_cred(p)->user->processes);
  171. rcu_read_unlock();
  172. proc_flush_task(p);
  173. write_lock_irq(&tasklist_lock);
  174. ptrace_release_task(p);
  175. __exit_signal(p);
  176. /*
  177. * If we are the last non-leader member of the thread
  178. * group, and the leader is zombie, then notify the
  179. * group leader's parent process. (if it wants notification.)
  180. */
  181. zap_leader = 0;
  182. leader = p->group_leader;
  183. if (leader != p && thread_group_empty(leader) && leader->exit_state == EXIT_ZOMBIE) {
  184. /*
  185. * If we were the last child thread and the leader has
  186. * exited already, and the leader's parent ignores SIGCHLD,
  187. * then we are the one who should release the leader.
  188. */
  189. zap_leader = do_notify_parent(leader, leader->exit_signal);
  190. if (zap_leader)
  191. leader->exit_state = EXIT_DEAD;
  192. }
  193. write_unlock_irq(&tasklist_lock);
  194. release_thread(p);
  195. call_rcu(&p->rcu, delayed_put_task_struct);
  196. p = leader;
  197. if (unlikely(zap_leader))
  198. goto repeat;
  199. }
  200. /*
  201. * This checks not only the pgrp, but falls back on the pid if no
  202. * satisfactory pgrp is found. I dunno - gdb doesn't work correctly
  203. * without this...
  204. *
  205. * The caller must hold rcu lock or the tasklist lock.
  206. */
  207. struct pid *session_of_pgrp(struct pid *pgrp)
  208. {
  209. struct task_struct *p;
  210. struct pid *sid = NULL;
  211. p = pid_task(pgrp, PIDTYPE_PGID);
  212. if (p == NULL)
  213. p = pid_task(pgrp, PIDTYPE_PID);
  214. if (p != NULL)
  215. sid = task_session(p);
  216. return sid;
  217. }
  218. /*
  219. * Determine if a process group is "orphaned", according to the POSIX
  220. * definition in 2.2.2.52. Orphaned process groups are not to be affected
  221. * by terminal-generated stop signals. Newly orphaned process groups are
  222. * to receive a SIGHUP and a SIGCONT.
  223. *
  224. * "I ask you, have you ever known what it is to be an orphan?"
  225. */
  226. static int will_become_orphaned_pgrp(struct pid *pgrp, struct task_struct *ignored_task)
  227. {
  228. struct task_struct *p;
  229. do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
  230. if ((p == ignored_task) ||
  231. (p->exit_state && thread_group_empty(p)) ||
  232. is_global_init(p->real_parent))
  233. continue;
  234. if (task_pgrp(p->real_parent) != pgrp &&
  235. task_session(p->real_parent) == task_session(p))
  236. return 0;
  237. } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
  238. return 1;
  239. }
  240. int is_current_pgrp_orphaned(void)
  241. {
  242. int retval;
  243. read_lock(&tasklist_lock);
  244. retval = will_become_orphaned_pgrp(task_pgrp(current), NULL);
  245. read_unlock(&tasklist_lock);
  246. return retval;
  247. }
  248. static bool has_stopped_jobs(struct pid *pgrp)
  249. {
  250. struct task_struct *p;
  251. do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
  252. if (p->signal->flags & SIGNAL_STOP_STOPPED)
  253. return true;
  254. } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
  255. return false;
  256. }
  257. /*
  258. * Check to see if any process groups have become orphaned as
  259. * a result of our exiting, and if they have any stopped jobs,
  260. * send them a SIGHUP and then a SIGCONT. (POSIX 3.2.2.2)
  261. */
  262. static void
  263. kill_orphaned_pgrp(struct task_struct *tsk, struct task_struct *parent)
  264. {
  265. struct pid *pgrp = task_pgrp(tsk);
  266. struct task_struct *ignored_task = tsk;
  267. if (!parent)
  268. /* exit: our father is in a different pgrp than
  269. * we are and we were the only connection outside.
  270. */
  271. parent = tsk->real_parent;
  272. else
  273. /* reparent: our child is in a different pgrp than
  274. * we are, and it was the only connection outside.
  275. */
  276. ignored_task = NULL;
  277. if (task_pgrp(parent) != pgrp &&
  278. task_session(parent) == task_session(tsk) &&
  279. will_become_orphaned_pgrp(pgrp, ignored_task) &&
  280. has_stopped_jobs(pgrp)) {
  281. __kill_pgrp_info(SIGHUP, SEND_SIG_PRIV, pgrp);
  282. __kill_pgrp_info(SIGCONT, SEND_SIG_PRIV, pgrp);
  283. }
  284. }
  285. /**
  286. * reparent_to_kthreadd - Reparent the calling kernel thread to kthreadd
  287. *
  288. * If a kernel thread is launched as a result of a system call, or if
  289. * it ever exits, it should generally reparent itself to kthreadd so it
  290. * isn't in the way of other processes and is correctly cleaned up on exit.
  291. *
  292. * The various task state such as scheduling policy and priority may have
  293. * been inherited from a user process, so we reset them to sane values here.
  294. *
  295. * NOTE that reparent_to_kthreadd() gives the caller full capabilities.
  296. */
  297. static void reparent_to_kthreadd(void)
  298. {
  299. write_lock_irq(&tasklist_lock);
  300. ptrace_unlink(current);
  301. /* Reparent to init */
  302. current->real_parent = current->parent = kthreadd_task;
  303. list_move_tail(&current->sibling, &current->real_parent->children);
  304. /* Set the exit signal to SIGCHLD so we signal init on exit */
  305. current->exit_signal = SIGCHLD;
  306. if (task_nice(current) < 0)
  307. set_user_nice(current, 0);
  308. /* cpus_allowed? */
  309. /* rt_priority? */
  310. /* signals? */
  311. memcpy(current->signal->rlim, init_task.signal->rlim,
  312. sizeof(current->signal->rlim));
  313. atomic_inc(&init_cred.usage);
  314. commit_creds(&init_cred);
  315. write_unlock_irq(&tasklist_lock);
  316. }
  317. void __set_special_pids(struct pid *pid)
  318. {
  319. struct task_struct *curr = current->group_leader;
  320. if (task_session(curr) != pid)
  321. change_pid(curr, PIDTYPE_SID, pid);
  322. if (task_pgrp(curr) != pid)
  323. change_pid(curr, PIDTYPE_PGID, pid);
  324. }
  325. static void set_special_pids(struct pid *pid)
  326. {
  327. write_lock_irq(&tasklist_lock);
  328. __set_special_pids(pid);
  329. write_unlock_irq(&tasklist_lock);
  330. }
  331. /*
  332. * Let kernel threads use this to say that they allow a certain signal.
  333. * Must not be used if kthread was cloned with CLONE_SIGHAND.
  334. */
  335. int allow_signal(int sig)
  336. {
  337. if (!valid_signal(sig) || sig < 1)
  338. return -EINVAL;
  339. spin_lock_irq(&current->sighand->siglock);
  340. /* This is only needed for daemonize()'ed kthreads */
  341. sigdelset(&current->blocked, sig);
  342. /*
  343. * Kernel threads handle their own signals. Let the signal code
  344. * know it'll be handled, so that they don't get converted to
  345. * SIGKILL or just silently dropped.
  346. */
  347. current->sighand->action[(sig)-1].sa.sa_handler = (void __user *)2;
  348. recalc_sigpending();
  349. spin_unlock_irq(&current->sighand->siglock);
  350. return 0;
  351. }
  352. EXPORT_SYMBOL(allow_signal);
  353. int disallow_signal(int sig)
  354. {
  355. if (!valid_signal(sig) || sig < 1)
  356. return -EINVAL;
  357. spin_lock_irq(&current->sighand->siglock);
  358. current->sighand->action[(sig)-1].sa.sa_handler = SIG_IGN;
  359. recalc_sigpending();
  360. spin_unlock_irq(&current->sighand->siglock);
  361. return 0;
  362. }
  363. EXPORT_SYMBOL(disallow_signal);
  364. /*
  365. * Put all the gunge required to become a kernel thread without
  366. * attached user resources in one place where it belongs.
  367. */
  368. void daemonize(const char *name, ...)
  369. {
  370. va_list args;
  371. sigset_t blocked;
  372. va_start(args, name);
  373. vsnprintf(current->comm, sizeof(current->comm), name, args);
  374. va_end(args);
  375. /*
  376. * If we were started as result of loading a module, close all of the
  377. * user space pages. We don't need them, and if we didn't close them
  378. * they would be locked into memory.
  379. */
  380. exit_mm(current);
  381. /*
  382. * We don't want to get frozen, in case system-wide hibernation
  383. * or suspend transition begins right now.
  384. */
  385. current->flags |= (PF_NOFREEZE | PF_KTHREAD);
  386. if (current->nsproxy != &init_nsproxy) {
  387. get_nsproxy(&init_nsproxy);
  388. switch_task_namespaces(current, &init_nsproxy);
  389. }
  390. set_special_pids(&init_struct_pid);
  391. proc_clear_tty(current);
  392. /* Block and flush all signals */
  393. sigfillset(&blocked);
  394. sigprocmask(SIG_BLOCK, &blocked, NULL);
  395. flush_signals(current);
  396. /* Become as one with the init task */
  397. daemonize_fs_struct();
  398. exit_files(current);
  399. current->files = init_task.files;
  400. atomic_inc(&current->files->count);
  401. reparent_to_kthreadd();
  402. }
  403. EXPORT_SYMBOL(daemonize);
  404. static void close_files(struct files_struct * files)
  405. {
  406. int i, j;
  407. struct fdtable *fdt;
  408. j = 0;
  409. /*
  410. * It is safe to dereference the fd table without RCU or
  411. * ->file_lock because this is the last reference to the
  412. * files structure. But use RCU to shut RCU-lockdep up.
  413. */
  414. rcu_read_lock();
  415. fdt = files_fdtable(files);
  416. rcu_read_unlock();
  417. for (;;) {
  418. unsigned long set;
  419. i = j * __NFDBITS;
  420. if (i >= fdt->max_fds)
  421. break;
  422. set = fdt->open_fds[j++];
  423. while (set) {
  424. if (set & 1) {
  425. struct file * file = xchg(&fdt->fd[i], NULL);
  426. if (file) {
  427. filp_close(file, files);
  428. cond_resched();
  429. }
  430. }
  431. i++;
  432. set >>= 1;
  433. }
  434. }
  435. }
  436. struct files_struct *get_files_struct(struct task_struct *task)
  437. {
  438. struct files_struct *files;
  439. task_lock(task);
  440. files = task->files;
  441. if (files)
  442. atomic_inc(&files->count);
  443. task_unlock(task);
  444. return files;
  445. }
  446. void put_files_struct(struct files_struct *files)
  447. {
  448. struct fdtable *fdt;
  449. if (atomic_dec_and_test(&files->count)) {
  450. close_files(files);
  451. /*
  452. * Free the fd and fdset arrays if we expanded them.
  453. * If the fdtable was embedded, pass files for freeing
  454. * at the end of the RCU grace period. Otherwise,
  455. * you can free files immediately.
  456. */
  457. rcu_read_lock();
  458. fdt = files_fdtable(files);
  459. if (fdt != &files->fdtab)
  460. kmem_cache_free(files_cachep, files);
  461. free_fdtable(fdt);
  462. rcu_read_unlock();
  463. }
  464. }
  465. void reset_files_struct(struct files_struct *files)
  466. {
  467. struct task_struct *tsk = current;
  468. struct files_struct *old;
  469. old = tsk->files;
  470. task_lock(tsk);
  471. tsk->files = files;
  472. task_unlock(tsk);
  473. put_files_struct(old);
  474. }
  475. void exit_files(struct task_struct *tsk)
  476. {
  477. struct files_struct * files = tsk->files;
  478. if (files) {
  479. task_lock(tsk);
  480. tsk->files = NULL;
  481. task_unlock(tsk);
  482. put_files_struct(files);
  483. }
  484. }
  485. #ifdef CONFIG_MM_OWNER
  486. /*
  487. * A task is exiting. If it owned this mm, find a new owner for the mm.
  488. */
  489. void mm_update_next_owner(struct mm_struct *mm)
  490. {
  491. struct task_struct *c, *g, *p = current;
  492. retry:
  493. /*
  494. * If the exiting or execing task is not the owner, it's
  495. * someone else's problem.
  496. */
  497. if (mm->owner != p)
  498. return;
  499. /*
  500. * The current owner is exiting/execing and there are no other
  501. * candidates. Do not leave the mm pointing to a possibly
  502. * freed task structure.
  503. */
  504. if (atomic_read(&mm->mm_users) <= 1) {
  505. mm->owner = NULL;
  506. return;
  507. }
  508. read_lock(&tasklist_lock);
  509. /*
  510. * Search in the children
  511. */
  512. list_for_each_entry(c, &p->children, sibling) {
  513. if (c->mm == mm)
  514. goto assign_new_owner;
  515. }
  516. /*
  517. * Search in the siblings
  518. */
  519. list_for_each_entry(c, &p->real_parent->children, sibling) {
  520. if (c->mm == mm)
  521. goto assign_new_owner;
  522. }
  523. /*
  524. * Search through everything else. We should not get
  525. * here often
  526. */
  527. do_each_thread(g, c) {
  528. if (c->mm == mm)
  529. goto assign_new_owner;
  530. } while_each_thread(g, c);
  531. read_unlock(&tasklist_lock);
  532. /*
  533. * We found no owner yet mm_users > 1: this implies that we are
  534. * most likely racing with swapoff (try_to_unuse()) or /proc or
  535. * ptrace or page migration (get_task_mm()). Mark owner as NULL.
  536. */
  537. mm->owner = NULL;
  538. return;
  539. assign_new_owner:
  540. BUG_ON(c == p);
  541. get_task_struct(c);
  542. /*
  543. * The task_lock protects c->mm from changing.
  544. * We always want mm->owner->mm == mm
  545. */
  546. task_lock(c);
  547. /*
  548. * Delay read_unlock() till we have the task_lock()
  549. * to ensure that c does not slip away underneath us
  550. */
  551. read_unlock(&tasklist_lock);
  552. if (c->mm != mm) {
  553. task_unlock(c);
  554. put_task_struct(c);
  555. goto retry;
  556. }
  557. mm->owner = c;
  558. task_unlock(c);
  559. put_task_struct(c);
  560. }
  561. #endif /* CONFIG_MM_OWNER */
  562. /*
  563. * Turn us into a lazy TLB process if we
  564. * aren't already..
  565. */
  566. static void exit_mm(struct task_struct * tsk)
  567. {
  568. struct mm_struct *mm = tsk->mm;
  569. struct core_state *core_state;
  570. mm_release(tsk, mm);
  571. if (!mm)
  572. return;
  573. sync_mm_rss(mm);
  574. /*
  575. * Serialize with any possible pending coredump.
  576. * We must hold mmap_sem around checking core_state
  577. * and clearing tsk->mm. The core-inducing thread
  578. * will increment ->nr_threads for each thread in the
  579. * group with ->mm != NULL.
  580. */
  581. down_read(&mm->mmap_sem);
  582. core_state = mm->core_state;
  583. if (core_state) {
  584. struct core_thread self;
  585. up_read(&mm->mmap_sem);
  586. self.task = tsk;
  587. self.next = xchg(&core_state->dumper.next, &self);
  588. /*
  589. * Implies mb(), the result of xchg() must be visible
  590. * to core_state->dumper.
  591. */
  592. if (atomic_dec_and_test(&core_state->nr_threads))
  593. complete(&core_state->startup);
  594. for (;;) {
  595. set_task_state(tsk, TASK_UNINTERRUPTIBLE);
  596. if (!self.task) /* see coredump_finish() */
  597. break;
  598. schedule();
  599. }
  600. __set_task_state(tsk, TASK_RUNNING);
  601. down_read(&mm->mmap_sem);
  602. }
  603. atomic_inc(&mm->mm_count);
  604. BUG_ON(mm != tsk->active_mm);
  605. /* more a memory barrier than a real lock */
  606. task_lock(tsk);
  607. tsk->mm = NULL;
  608. up_read(&mm->mmap_sem);
  609. enter_lazy_tlb(mm, current);
  610. task_unlock(tsk);
  611. mm_update_next_owner(mm);
  612. mmput(mm);
  613. }
  614. /*
  615. * When we die, we re-parent all our children, and try to:
  616. * 1. give them to another thread in our thread group, if such a member exists
  617. * 2. give it to the first ancestor process which prctl'd itself as a
  618. * child_subreaper for its children (like a service manager)
  619. * 3. give it to the init process (PID 1) in our pid namespace
  620. */
  621. static struct task_struct *find_new_reaper(struct task_struct *father)
  622. __releases(&tasklist_lock)
  623. __acquires(&tasklist_lock)
  624. {
  625. struct pid_namespace *pid_ns = task_active_pid_ns(father);
  626. struct task_struct *thread;
  627. thread = father;
  628. while_each_thread(father, thread) {
  629. if (thread->flags & PF_EXITING)
  630. continue;
  631. if (unlikely(pid_ns->child_reaper == father))
  632. pid_ns->child_reaper = thread;
  633. return thread;
  634. }
  635. if (unlikely(pid_ns->child_reaper == father)) {
  636. write_unlock_irq(&tasklist_lock);
  637. if (unlikely(pid_ns == &init_pid_ns)) {
  638. panic("Attempted to kill init! exitcode=0x%08x\n",
  639. father->signal->group_exit_code ?:
  640. father->exit_code);
  641. }
  642. zap_pid_ns_processes(pid_ns);
  643. write_lock_irq(&tasklist_lock);
  644. } else if (father->signal->has_child_subreaper) {
  645. struct task_struct *reaper;
  646. /*
  647. * Find the first ancestor marked as child_subreaper.
  648. * Note that the code below checks same_thread_group(reaper,
  649. * pid_ns->child_reaper). This is what we need to DTRT in a
  650. * PID namespace. However we still need the check above, see
  651. * http://marc.info/?l=linux-kernel&m=131385460420380
  652. */
  653. for (reaper = father->real_parent;
  654. reaper != &init_task;
  655. reaper = reaper->real_parent) {
  656. if (same_thread_group(reaper, pid_ns->child_reaper))
  657. break;
  658. if (!reaper->signal->is_child_subreaper)
  659. continue;
  660. thread = reaper;
  661. do {
  662. if (!(thread->flags & PF_EXITING))
  663. return reaper;
  664. } while_each_thread(reaper, thread);
  665. }
  666. }
  667. return pid_ns->child_reaper;
  668. }
  669. /*
  670. * Any that need to be release_task'd are put on the @dead list.
  671. */
  672. static void reparent_leader(struct task_struct *father, struct task_struct *p,
  673. struct list_head *dead)
  674. {
  675. list_move_tail(&p->sibling, &p->real_parent->children);
  676. if (p->exit_state == EXIT_DEAD)
  677. return;
  678. /*
  679. * If this is a threaded reparent there is no need to
  680. * notify anyone anything has happened.
  681. */
  682. if (same_thread_group(p->real_parent, father))
  683. return;
  684. /* We don't want people slaying init. */
  685. p->exit_signal = SIGCHLD;
  686. /* If it has exited notify the new parent about this child's death. */
  687. if (!p->ptrace &&
  688. p->exit_state == EXIT_ZOMBIE && thread_group_empty(p)) {
  689. if (do_notify_parent(p, p->exit_signal)) {
  690. p->exit_state = EXIT_DEAD;
  691. list_move_tail(&p->sibling, dead);
  692. }
  693. }
  694. kill_orphaned_pgrp(p, father);
  695. }
  696. static void forget_original_parent(struct task_struct *father)
  697. {
  698. struct task_struct *p, *n, *reaper;
  699. LIST_HEAD(dead_children);
  700. write_lock_irq(&tasklist_lock);
  701. /*
  702. * Note that exit_ptrace() and find_new_reaper() might
  703. * drop tasklist_lock and reacquire it.
  704. */
  705. exit_ptrace(father);
  706. reaper = find_new_reaper(father);
  707. list_for_each_entry_safe(p, n, &father->children, sibling) {
  708. struct task_struct *t = p;
  709. do {
  710. t->real_parent = reaper;
  711. if (t->parent == father) {
  712. BUG_ON(t->ptrace);
  713. t->parent = t->real_parent;
  714. }
  715. if (t->pdeath_signal)
  716. group_send_sig_info(t->pdeath_signal,
  717. SEND_SIG_NOINFO, t);
  718. } while_each_thread(p, t);
  719. reparent_leader(father, p, &dead_children);
  720. }
  721. write_unlock_irq(&tasklist_lock);
  722. BUG_ON(!list_empty(&father->children));
  723. list_for_each_entry_safe(p, n, &dead_children, sibling) {
  724. list_del_init(&p->sibling);
  725. release_task(p);
  726. }
  727. }
  728. /*
  729. * Send signals to all our closest relatives so that they know
  730. * to properly mourn us..
  731. */
  732. static void exit_notify(struct task_struct *tsk, int group_dead)
  733. {
  734. bool autoreap;
  735. /*
  736. * This does two things:
  737. *
  738. * A. Make init inherit all the child processes
  739. * B. Check to see if any process groups have become orphaned
  740. * as a result of our exiting, and if they have any stopped
  741. * jobs, send them a SIGHUP and then a SIGCONT. (POSIX 3.2.2.2)
  742. */
  743. forget_original_parent(tsk);
  744. exit_task_namespaces(tsk);
  745. write_lock_irq(&tasklist_lock);
  746. if (group_dead)
  747. kill_orphaned_pgrp(tsk->group_leader, NULL);
  748. if (unlikely(tsk->ptrace)) {
  749. int sig = thread_group_leader(tsk) &&
  750. thread_group_empty(tsk) &&
  751. !ptrace_reparented(tsk) ?
  752. tsk->exit_signal : SIGCHLD;
  753. autoreap = do_notify_parent(tsk, sig);
  754. } else if (thread_group_leader(tsk)) {
  755. autoreap = thread_group_empty(tsk) &&
  756. do_notify_parent(tsk, tsk->exit_signal);
  757. } else {
  758. autoreap = true;
  759. }
  760. tsk->exit_state = autoreap ? EXIT_DEAD : EXIT_ZOMBIE;
  761. /* mt-exec, de_thread() is waiting for group leader */
  762. if (unlikely(tsk->signal->notify_count < 0))
  763. wake_up_process(tsk->signal->group_exit_task);
  764. write_unlock_irq(&tasklist_lock);
  765. /* If the process is dead, release it - nobody will wait for it */
  766. if (autoreap)
  767. release_task(tsk);
  768. }
  769. #ifdef CONFIG_DEBUG_STACK_USAGE
  770. static void check_stack_usage(void)
  771. {
  772. static DEFINE_SPINLOCK(low_water_lock);
  773. static int lowest_to_date = THREAD_SIZE;
  774. unsigned long free;
  775. free = stack_not_used(current);
  776. if (free >= lowest_to_date)
  777. return;
  778. spin_lock(&low_water_lock);
  779. if (free < lowest_to_date) {
  780. printk(KERN_WARNING "%s (%d) used greatest stack depth: "
  781. "%lu bytes left\n",
  782. current->comm, task_pid_nr(current), free);
  783. lowest_to_date = free;
  784. }
  785. spin_unlock(&low_water_lock);
  786. }
  787. #else
  788. static inline void check_stack_usage(void) {}
  789. #endif
  790. void do_exit(long code)
  791. {
  792. struct task_struct *tsk = current;
  793. int group_dead;
  794. profile_task_exit(tsk);
  795. WARN_ON(blk_needs_flush_plug(tsk));
  796. if (unlikely(in_interrupt()))
  797. panic("Aiee, killing interrupt handler!");
  798. if (unlikely(!tsk->pid))
  799. panic("Attempted to kill the idle task!");
  800. /*
  801. * If do_exit is called because this processes oopsed, it's possible
  802. * that get_fs() was left as KERNEL_DS, so reset it to USER_DS before
  803. * continuing. Amongst other possible reasons, this is to prevent
  804. * mm_release()->clear_child_tid() from writing to a user-controlled
  805. * kernel address.
  806. */
  807. set_fs(USER_DS);
  808. ptrace_event(PTRACE_EVENT_EXIT, code);
  809. validate_creds_for_do_exit(tsk);
  810. /*
  811. * We're taking recursive faults here in do_exit. Safest is to just
  812. * leave this task alone and wait for reboot.
  813. */
  814. if (unlikely(tsk->flags & PF_EXITING)) {
  815. printk(KERN_ALERT
  816. "Fixing recursive fault but reboot is needed!\n");
  817. /*
  818. * We can do this unlocked here. The futex code uses
  819. * this flag just to verify whether the pi state
  820. * cleanup has been done or not. In the worst case it
  821. * loops once more. We pretend that the cleanup was
  822. * done as there is no way to return. Either the
  823. * OWNER_DIED bit is set by now or we push the blocked
  824. * task into the wait for ever nirwana as well.
  825. */
  826. tsk->flags |= PF_EXITPIDONE;
  827. set_current_state(TASK_UNINTERRUPTIBLE);
  828. schedule();
  829. }
  830. exit_signals(tsk); /* sets PF_EXITING */
  831. /*
  832. * tsk->flags are checked in the futex code to protect against
  833. * an exiting task cleaning up the robust pi futexes, and in
  834. * task_work_add() to avoid the race with exit_task_work().
  835. */
  836. smp_mb();
  837. raw_spin_unlock_wait(&tsk->pi_lock);
  838. exit_task_work(tsk);
  839. if (unlikely(in_atomic()))
  840. printk(KERN_INFO "note: %s[%d] exited with preempt_count %d\n",
  841. current->comm, task_pid_nr(current),
  842. preempt_count());
  843. acct_update_integrals(tsk);
  844. /* sync mm's RSS info before statistics gathering */
  845. if (tsk->mm)
  846. sync_mm_rss(tsk->mm);
  847. group_dead = atomic_dec_and_test(&tsk->signal->live);
  848. if (group_dead) {
  849. hrtimer_cancel(&tsk->signal->real_timer);
  850. exit_itimers(tsk->signal);
  851. if (tsk->mm)
  852. setmax_mm_hiwater_rss(&tsk->signal->maxrss, tsk->mm);
  853. }
  854. acct_collect(code, group_dead);
  855. if (group_dead)
  856. tty_audit_exit();
  857. audit_free(tsk);
  858. tsk->exit_code = code;
  859. taskstats_exit(tsk, group_dead);
  860. exit_mm(tsk);
  861. if (group_dead)
  862. acct_process();
  863. trace_sched_process_exit(tsk);
  864. exit_sem(tsk);
  865. exit_shm(tsk);
  866. exit_files(tsk);
  867. exit_fs(tsk);
  868. check_stack_usage();
  869. exit_thread();
  870. /*
  871. * Flush inherited counters to the parent - before the parent
  872. * gets woken up by child-exit notifications.
  873. *
  874. * because of cgroup mode, must be called before cgroup_exit()
  875. */
  876. perf_event_exit_task(tsk);
  877. cgroup_exit(tsk, 1);
  878. if (group_dead)
  879. disassociate_ctty(1);
  880. module_put(task_thread_info(tsk)->exec_domain->module);
  881. proc_exit_connector(tsk);
  882. /*
  883. * FIXME: do that only when needed, using sched_exit tracepoint
  884. */
  885. ptrace_put_breakpoints(tsk);
  886. exit_notify(tsk, group_dead);
  887. #ifdef CONFIG_NUMA
  888. task_lock(tsk);
  889. mpol_put(tsk->mempolicy);
  890. tsk->mempolicy = NULL;
  891. task_unlock(tsk);
  892. #endif
  893. #ifdef CONFIG_FUTEX
  894. if (unlikely(current->pi_state_cache))
  895. kfree(current->pi_state_cache);
  896. #endif
  897. /*
  898. * Make sure we are holding no locks:
  899. */
  900. debug_check_no_locks_held(tsk);
  901. /*
  902. * We can do this unlocked here. The futex code uses this flag
  903. * just to verify whether the pi state cleanup has been done
  904. * or not. In the worst case it loops once more.
  905. */
  906. tsk->flags |= PF_EXITPIDONE;
  907. if (tsk->io_context)
  908. exit_io_context(tsk);
  909. if (tsk->splice_pipe)
  910. __free_pipe_info(tsk->splice_pipe);
  911. validate_creds_for_do_exit(tsk);
  912. preempt_disable();
  913. if (tsk->nr_dirtied)
  914. __this_cpu_add(dirty_throttle_leaks, tsk->nr_dirtied);
  915. exit_rcu();
  916. /*
  917. * The setting of TASK_RUNNING by try_to_wake_up() may be delayed
  918. * when the following two conditions become true.
  919. * - There is race condition of mmap_sem (It is acquired by
  920. * exit_mm()), and
  921. * - SMI occurs before setting TASK_RUNINNG.
  922. * (or hypervisor of virtual machine switches to other guest)
  923. * As a result, we may become TASK_RUNNING after becoming TASK_DEAD
  924. *
  925. * To avoid it, we have to wait for releasing tsk->pi_lock which
  926. * is held by try_to_wake_up()
  927. */
  928. smp_mb();
  929. raw_spin_unlock_wait(&tsk->pi_lock);
  930. /* causes final put_task_struct in finish_task_switch(). */
  931. tsk->state = TASK_DEAD;
  932. tsk->flags |= PF_NOFREEZE; /* tell freezer to ignore us */
  933. schedule();
  934. BUG();
  935. /* Avoid "noreturn function does return". */
  936. for (;;)
  937. cpu_relax(); /* For when BUG is null */
  938. }
  939. EXPORT_SYMBOL_GPL(do_exit);
  940. void complete_and_exit(struct completion *comp, long code)
  941. {
  942. if (comp)
  943. complete(comp);
  944. do_exit(code);
  945. }
  946. EXPORT_SYMBOL(complete_and_exit);
  947. SYSCALL_DEFINE1(exit, int, error_code)
  948. {
  949. do_exit((error_code&0xff)<<8);
  950. }
  951. /*
  952. * Take down every thread in the group. This is called by fatal signals
  953. * as well as by sys_exit_group (below).
  954. */
  955. void
  956. do_group_exit(int exit_code)
  957. {
  958. struct signal_struct *sig = current->signal;
  959. BUG_ON(exit_code & 0x80); /* core dumps don't get here */
  960. if (signal_group_exit(sig))
  961. exit_code = sig->group_exit_code;
  962. else if (!thread_group_empty(current)) {
  963. struct sighand_struct *const sighand = current->sighand;
  964. spin_lock_irq(&sighand->siglock);
  965. if (signal_group_exit(sig))
  966. /* Another thread got here before we took the lock. */
  967. exit_code = sig->group_exit_code;
  968. else {
  969. sig->group_exit_code = exit_code;
  970. sig->flags = SIGNAL_GROUP_EXIT;
  971. zap_other_threads(current);
  972. }
  973. spin_unlock_irq(&sighand->siglock);
  974. }
  975. do_exit(exit_code);
  976. /* NOTREACHED */
  977. }
  978. /*
  979. * this kills every thread in the thread group. Note that any externally
  980. * wait4()-ing process will get the correct exit code - even if this
  981. * thread is not the thread group leader.
  982. */
  983. SYSCALL_DEFINE1(exit_group, int, error_code)
  984. {
  985. do_group_exit((error_code & 0xff) << 8);
  986. /* NOTREACHED */
  987. return 0;
  988. }
  989. struct wait_opts {
  990. enum pid_type wo_type;
  991. int wo_flags;
  992. struct pid *wo_pid;
  993. struct siginfo __user *wo_info;
  994. int __user *wo_stat;
  995. struct rusage __user *wo_rusage;
  996. wait_queue_t child_wait;
  997. int notask_error;
  998. };
  999. static inline
  1000. struct pid *task_pid_type(struct task_struct *task, enum pid_type type)
  1001. {
  1002. if (type != PIDTYPE_PID)
  1003. task = task->group_leader;
  1004. return task->pids[type].pid;
  1005. }
  1006. static int eligible_pid(struct wait_opts *wo, struct task_struct *p)
  1007. {
  1008. return wo->wo_type == PIDTYPE_MAX ||
  1009. task_pid_type(p, wo->wo_type) == wo->wo_pid;
  1010. }
  1011. static int eligible_child(struct wait_opts *wo, struct task_struct *p)
  1012. {
  1013. if (!eligible_pid(wo, p))
  1014. return 0;
  1015. /* Wait for all children (clone and not) if __WALL is set;
  1016. * otherwise, wait for clone children *only* if __WCLONE is
  1017. * set; otherwise, wait for non-clone children *only*. (Note:
  1018. * A "clone" child here is one that reports to its parent
  1019. * using a signal other than SIGCHLD.) */
  1020. if (((p->exit_signal != SIGCHLD) ^ !!(wo->wo_flags & __WCLONE))
  1021. && !(wo->wo_flags & __WALL))
  1022. return 0;
  1023. return 1;
  1024. }
  1025. static int wait_noreap_copyout(struct wait_opts *wo, struct task_struct *p,
  1026. pid_t pid, uid_t uid, int why, int status)
  1027. {
  1028. struct siginfo __user *infop;
  1029. int retval = wo->wo_rusage
  1030. ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
  1031. put_task_struct(p);
  1032. infop = wo->wo_info;
  1033. if (infop) {
  1034. if (!retval)
  1035. retval = put_user(SIGCHLD, &infop->si_signo);
  1036. if (!retval)
  1037. retval = put_user(0, &infop->si_errno);
  1038. if (!retval)
  1039. retval = put_user((short)why, &infop->si_code);
  1040. if (!retval)
  1041. retval = put_user(pid, &infop->si_pid);
  1042. if (!retval)
  1043. retval = put_user(uid, &infop->si_uid);
  1044. if (!retval)
  1045. retval = put_user(status, &infop->si_status);
  1046. }
  1047. if (!retval)
  1048. retval = pid;
  1049. return retval;
  1050. }
  1051. /*
  1052. * Handle sys_wait4 work for one task in state EXIT_ZOMBIE. We hold
  1053. * read_lock(&tasklist_lock) on entry. If we return zero, we still hold
  1054. * the lock and this task is uninteresting. If we return nonzero, we have
  1055. * released the lock and the system call should return.
  1056. */
  1057. static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
  1058. {
  1059. unsigned long state;
  1060. int retval, status, traced;
  1061. pid_t pid = task_pid_vnr(p);
  1062. uid_t uid = from_kuid_munged(current_user_ns(), task_uid(p));
  1063. struct siginfo __user *infop;
  1064. if (!likely(wo->wo_flags & WEXITED))
  1065. return 0;
  1066. if (unlikely(wo->wo_flags & WNOWAIT)) {
  1067. int exit_code = p->exit_code;
  1068. int why;
  1069. get_task_struct(p);
  1070. read_unlock(&tasklist_lock);
  1071. if ((exit_code & 0x7f) == 0) {
  1072. why = CLD_EXITED;
  1073. status = exit_code >> 8;
  1074. } else {
  1075. why = (exit_code & 0x80) ? CLD_DUMPED : CLD_KILLED;
  1076. status = exit_code & 0x7f;
  1077. }
  1078. return wait_noreap_copyout(wo, p, pid, uid, why, status);
  1079. }
  1080. /*
  1081. * Try to move the task's state to DEAD
  1082. * only one thread is allowed to do this:
  1083. */
  1084. state = xchg(&p->exit_state, EXIT_DEAD);
  1085. if (state != EXIT_ZOMBIE) {
  1086. BUG_ON(state != EXIT_DEAD);
  1087. return 0;
  1088. }
  1089. traced = ptrace_reparented(p);
  1090. /*
  1091. * It can be ptraced but not reparented, check
  1092. * thread_group_leader() to filter out sub-threads.
  1093. */
  1094. if (likely(!traced) && thread_group_leader(p)) {
  1095. struct signal_struct *psig;
  1096. struct signal_struct *sig;
  1097. unsigned long maxrss;
  1098. cputime_t tgutime, tgstime;
  1099. /*
  1100. * The resource counters for the group leader are in its
  1101. * own task_struct. Those for dead threads in the group
  1102. * are in its signal_struct, as are those for the child
  1103. * processes it has previously reaped. All these
  1104. * accumulate in the parent's signal_struct c* fields.
  1105. *
  1106. * We don't bother to take a lock here to protect these
  1107. * p->signal fields, because they are only touched by
  1108. * __exit_signal, which runs with tasklist_lock
  1109. * write-locked anyway, and so is excluded here. We do
  1110. * need to protect the access to parent->signal fields,
  1111. * as other threads in the parent group can be right
  1112. * here reaping other children at the same time.
  1113. *
  1114. * We use thread_group_times() to get times for the thread
  1115. * group, which consolidates times for all threads in the
  1116. * group including the group leader.
  1117. */
  1118. thread_group_times(p, &tgutime, &tgstime);
  1119. spin_lock_irq(&p->real_parent->sighand->siglock);
  1120. psig = p->real_parent->signal;
  1121. sig = p->signal;
  1122. psig->cutime += tgutime + sig->cutime;
  1123. psig->cstime += tgstime + sig->cstime;
  1124. psig->cgtime += p->gtime + sig->gtime + sig->cgtime;
  1125. psig->cmin_flt +=
  1126. p->min_flt + sig->min_flt + sig->cmin_flt;
  1127. psig->cmaj_flt +=
  1128. p->maj_flt + sig->maj_flt + sig->cmaj_flt;
  1129. psig->cnvcsw +=
  1130. p->nvcsw + sig->nvcsw + sig->cnvcsw;
  1131. psig->cnivcsw +=
  1132. p->nivcsw + sig->nivcsw + sig->cnivcsw;
  1133. psig->cinblock +=
  1134. task_io_get_inblock(p) +
  1135. sig->inblock + sig->cinblock;
  1136. psig->coublock +=
  1137. task_io_get_oublock(p) +
  1138. sig->oublock + sig->coublock;
  1139. maxrss = max(sig->maxrss, sig->cmaxrss);
  1140. if (psig->cmaxrss < maxrss)
  1141. psig->cmaxrss = maxrss;
  1142. task_io_accounting_add(&psig->ioac, &p->ioac);
  1143. task_io_accounting_add(&psig->ioac, &sig->ioac);
  1144. spin_unlock_irq(&p->real_parent->sighand->siglock);
  1145. }
  1146. /*
  1147. * Now we are sure this task is interesting, and no other
  1148. * thread can reap it because we set its state to EXIT_DEAD.
  1149. */
  1150. read_unlock(&tasklist_lock);
  1151. retval = wo->wo_rusage
  1152. ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
  1153. status = (p->signal->flags & SIGNAL_GROUP_EXIT)
  1154. ? p->signal->group_exit_code : p->exit_code;
  1155. if (!retval && wo->wo_stat)
  1156. retval = put_user(status, wo->wo_stat);
  1157. infop = wo->wo_info;
  1158. if (!retval && infop)
  1159. retval = put_user(SIGCHLD, &infop->si_signo);
  1160. if (!retval && infop)
  1161. retval = put_user(0, &infop->si_errno);
  1162. if (!retval && infop) {
  1163. int why;
  1164. if ((status & 0x7f) == 0) {
  1165. why = CLD_EXITED;
  1166. status >>= 8;
  1167. } else {
  1168. why = (status & 0x80) ? CLD_DUMPED : CLD_KILLED;
  1169. status &= 0x7f;
  1170. }
  1171. retval = put_user((short)why, &infop->si_code);
  1172. if (!retval)
  1173. retval = put_user(status, &infop->si_status);
  1174. }
  1175. if (!retval && infop)
  1176. retval = put_user(pid, &infop->si_pid);
  1177. if (!retval && infop)
  1178. retval = put_user(uid, &infop->si_uid);
  1179. if (!retval)
  1180. retval = pid;
  1181. if (traced) {
  1182. write_lock_irq(&tasklist_lock);
  1183. /* We dropped tasklist, ptracer could die and untrace */
  1184. ptrace_unlink(p);
  1185. /*
  1186. * If this is not a sub-thread, notify the parent.
  1187. * If parent wants a zombie, don't release it now.
  1188. */
  1189. if (thread_group_leader(p) &&
  1190. !do_notify_parent(p, p->exit_signal)) {
  1191. p->exit_state = EXIT_ZOMBIE;
  1192. p = NULL;
  1193. }
  1194. write_unlock_irq(&tasklist_lock);
  1195. }
  1196. if (p != NULL)
  1197. release_task(p);
  1198. return retval;
  1199. }
  1200. static int *task_stopped_code(struct task_struct *p, bool ptrace)
  1201. {
  1202. if (ptrace) {
  1203. if (task_is_stopped_or_traced(p) &&
  1204. !(p->jobctl & JOBCTL_LISTENING))
  1205. return &p->exit_code;
  1206. } else {
  1207. if (p->signal->flags & SIGNAL_STOP_STOPPED)
  1208. return &p->signal->group_exit_code;
  1209. }
  1210. return NULL;
  1211. }
  1212. /**
  1213. * wait_task_stopped - Wait for %TASK_STOPPED or %TASK_TRACED
  1214. * @wo: wait options
  1215. * @ptrace: is the wait for ptrace
  1216. * @p: task to wait for
  1217. *
  1218. * Handle sys_wait4() work for %p in state %TASK_STOPPED or %TASK_TRACED.
  1219. *
  1220. * CONTEXT:
  1221. * read_lock(&tasklist_lock), which is released if return value is
  1222. * non-zero. Also, grabs and releases @p->sighand->siglock.
  1223. *
  1224. * RETURNS:
  1225. * 0 if wait condition didn't exist and search for other wait conditions
  1226. * should continue. Non-zero return, -errno on failure and @p's pid on
  1227. * success, implies that tasklist_lock is released and wait condition
  1228. * search should terminate.
  1229. */
  1230. static int wait_task_stopped(struct wait_opts *wo,
  1231. int ptrace, struct task_struct *p)
  1232. {
  1233. struct siginfo __user *infop;
  1234. int retval, exit_code, *p_code, why;
  1235. uid_t uid = 0; /* unneeded, required by compiler */
  1236. pid_t pid;
  1237. /*
  1238. * Traditionally we see ptrace'd stopped tasks regardless of options.
  1239. */
  1240. if (!ptrace && !(wo->wo_flags & WUNTRACED))
  1241. return 0;
  1242. if (!task_stopped_code(p, ptrace))
  1243. return 0;
  1244. exit_code = 0;
  1245. spin_lock_irq(&p->sighand->siglock);
  1246. p_code = task_stopped_code(p, ptrace);
  1247. if (unlikely(!p_code))
  1248. goto unlock_sig;
  1249. exit_code = *p_code;
  1250. if (!exit_code)
  1251. goto unlock_sig;
  1252. if (!unlikely(wo->wo_flags & WNOWAIT))
  1253. *p_code = 0;
  1254. uid = from_kuid_munged(current_user_ns(), task_uid(p));
  1255. unlock_sig:
  1256. spin_unlock_irq(&p->sighand->siglock);
  1257. if (!exit_code)
  1258. return 0;
  1259. /*
  1260. * Now we are pretty sure this task is interesting.
  1261. * Make sure it doesn't get reaped out from under us while we
  1262. * give up the lock and then examine it below. We don't want to
  1263. * keep holding onto the tasklist_lock while we call getrusage and
  1264. * possibly take page faults for user memory.
  1265. */
  1266. get_task_struct(p);
  1267. pid = task_pid_vnr(p);
  1268. why = ptrace ? CLD_TRAPPED : CLD_STOPPED;
  1269. read_unlock(&tasklist_lock);
  1270. if (unlikely(wo->wo_flags & WNOWAIT))
  1271. return wait_noreap_copyout(wo, p, pid, uid, why, exit_code);
  1272. retval = wo->wo_rusage
  1273. ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
  1274. if (!retval && wo->wo_stat)
  1275. retval = put_user((exit_code << 8) | 0x7f, wo->wo_stat);
  1276. infop = wo->wo_info;
  1277. if (!retval && infop)
  1278. retval = put_user(SIGCHLD, &infop->si_signo);
  1279. if (!retval && infop)
  1280. retval = put_user(0, &infop->si_errno);
  1281. if (!retval && infop)
  1282. retval = put_user((short)why, &infop->si_code);
  1283. if (!retval && infop)
  1284. retval = put_user(exit_code, &infop->si_status);
  1285. if (!retval && infop)
  1286. retval = put_user(pid, &infop->si_pid);
  1287. if (!retval && infop)
  1288. retval = put_user(uid, &infop->si_uid);
  1289. if (!retval)
  1290. retval = pid;
  1291. put_task_struct(p);
  1292. BUG_ON(!retval);
  1293. return retval;
  1294. }
  1295. /*
  1296. * Handle do_wait work for one task in a live, non-stopped state.
  1297. * read_lock(&tasklist_lock) on entry. If we return zero, we still hold
  1298. * the lock and this task is uninteresting. If we return nonzero, we have
  1299. * released the lock and the system call should return.
  1300. */
  1301. static int wait_task_continued(struct wait_opts *wo, struct task_struct *p)
  1302. {
  1303. int retval;
  1304. pid_t pid;
  1305. uid_t uid;
  1306. if (!unlikely(wo->wo_flags & WCONTINUED))
  1307. return 0;
  1308. if (!(p->signal->flags & SIGNAL_STOP_CONTINUED))
  1309. return 0;
  1310. spin_lock_irq(&p->sighand->siglock);
  1311. /* Re-check with the lock held. */
  1312. if (!(p->signal->flags & SIGNAL_STOP_CONTINUED)) {
  1313. spin_unlock_irq(&p->sighand->siglock);
  1314. return 0;
  1315. }
  1316. if (!unlikely(wo->wo_flags & WNOWAIT))
  1317. p->signal->flags &= ~SIGNAL_STOP_CONTINUED;
  1318. uid = from_kuid_munged(current_user_ns(), task_uid(p));
  1319. spin_unlock_irq(&p->sighand->siglock);
  1320. pid = task_pid_vnr(p);
  1321. get_task_struct(p);
  1322. read_unlock(&tasklist_lock);
  1323. if (!wo->wo_info) {
  1324. retval = wo->wo_rusage
  1325. ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
  1326. put_task_struct(p);
  1327. if (!retval && wo->wo_stat)
  1328. retval = put_user(0xffff, wo->wo_stat);
  1329. if (!retval)
  1330. retval = pid;
  1331. } else {
  1332. retval = wait_noreap_copyout(wo, p, pid, uid,
  1333. CLD_CONTINUED, SIGCONT);
  1334. BUG_ON(retval == 0);
  1335. }
  1336. return retval;
  1337. }
  1338. /*
  1339. * Consider @p for a wait by @parent.
  1340. *
  1341. * -ECHILD should be in ->notask_error before the first call.
  1342. * Returns nonzero for a final return, when we have unlocked tasklist_lock.
  1343. * Returns zero if the search for a child should continue;
  1344. * then ->notask_error is 0 if @p is an eligible child,
  1345. * or another error from security_task_wait(), or still -ECHILD.
  1346. */
  1347. static int wait_consider_task(struct wait_opts *wo, int ptrace,
  1348. struct task_struct *p)
  1349. {
  1350. int ret = eligible_child(wo, p);
  1351. if (!ret)
  1352. return ret;
  1353. ret = security_task_wait(p);
  1354. if (unlikely(ret < 0)) {
  1355. /*
  1356. * If we have not yet seen any eligible child,
  1357. * then let this error code replace -ECHILD.
  1358. * A permission error will give the user a clue
  1359. * to look for security policy problems, rather
  1360. * than for mysterious wait bugs.
  1361. */
  1362. if (wo->notask_error)
  1363. wo->notask_error = ret;
  1364. return 0;
  1365. }
  1366. /* dead body doesn't have much to contribute */
  1367. if (unlikely(p->exit_state == EXIT_DEAD)) {
  1368. /*
  1369. * But do not ignore this task until the tracer does
  1370. * wait_task_zombie()->do_notify_parent().
  1371. */
  1372. if (likely(!ptrace) && unlikely(ptrace_reparented(p)))
  1373. wo->notask_error = 0;
  1374. return 0;
  1375. }
  1376. /* slay zombie? */
  1377. if (p->exit_state == EXIT_ZOMBIE) {
  1378. /*
  1379. * A zombie ptracee is only visible to its ptracer.
  1380. * Notification and reaping will be cascaded to the real
  1381. * parent when the ptracer detaches.
  1382. */
  1383. if (likely(!ptrace) && unlikely(p->ptrace)) {
  1384. /* it will become visible, clear notask_error */
  1385. wo->notask_error = 0;
  1386. return 0;
  1387. }
  1388. /* we don't reap group leaders with subthreads */
  1389. if (!delay_group_leader(p))
  1390. return wait_task_zombie(wo, p);
  1391. /*
  1392. * Allow access to stopped/continued state via zombie by
  1393. * falling through. Clearing of notask_error is complex.
  1394. *
  1395. * When !@ptrace:
  1396. *
  1397. * If WEXITED is set, notask_error should naturally be
  1398. * cleared. If not, subset of WSTOPPED|WCONTINUED is set,
  1399. * so, if there are live subthreads, there are events to
  1400. * wait for. If all subthreads are dead, it's still safe
  1401. * to clear - this function will be called again in finite
  1402. * amount time once all the subthreads are released and
  1403. * will then return without clearing.
  1404. *
  1405. * When @ptrace:
  1406. *
  1407. * Stopped state is per-task and thus can't change once the
  1408. * target task dies. Only continued and exited can happen.
  1409. * Clear notask_error if WCONTINUED | WEXITED.
  1410. */
  1411. if (likely(!ptrace) || (wo->wo_flags & (WCONTINUED | WEXITED)))
  1412. wo->notask_error = 0;
  1413. } else {
  1414. /*
  1415. * If @p is ptraced by a task in its real parent's group,
  1416. * hide group stop/continued state when looking at @p as
  1417. * the real parent; otherwise, a single stop can be
  1418. * reported twice as group and ptrace stops.
  1419. *
  1420. * If a ptracer wants to distinguish the two events for its
  1421. * own children, it should create a separate process which
  1422. * takes the role of real parent.
  1423. */
  1424. if (likely(!ptrace) && p->ptrace && !ptrace_reparented(p))
  1425. return 0;
  1426. /*
  1427. * @p is alive and it's gonna stop, continue or exit, so
  1428. * there always is something to wait for.
  1429. */
  1430. wo->notask_error = 0;
  1431. }
  1432. /*
  1433. * Wait for stopped. Depending on @ptrace, different stopped state
  1434. * is used and the two don't interact with each other.
  1435. */
  1436. ret = wait_task_stopped(wo, ptrace, p);
  1437. if (ret)
  1438. return ret;
  1439. /*
  1440. * Wait for continued. There's only one continued state and the
  1441. * ptracer can consume it which can confuse the real parent. Don't
  1442. * use WCONTINUED from ptracer. You don't need or want it.
  1443. */
  1444. return wait_task_continued(wo, p);
  1445. }
  1446. /*
  1447. * Do the work of do_wait() for one thread in the group, @tsk.
  1448. *
  1449. * -ECHILD should be in ->notask_error before the first call.
  1450. * Returns nonzero for a final return, when we have unlocked tasklist_lock.
  1451. * Returns zero if the search for a child should continue; then
  1452. * ->notask_error is 0 if there were any eligible children,
  1453. * or another error from security_task_wait(), or still -ECHILD.
  1454. */
  1455. static int do_wait_thread(struct wait_opts *wo, struct task_struct *tsk)
  1456. {
  1457. struct task_struct *p;
  1458. list_for_each_entry(p, &tsk->children, sibling) {
  1459. int ret = wait_consider_task(wo, 0, p);
  1460. if (ret)
  1461. return ret;
  1462. }
  1463. return 0;
  1464. }
  1465. static int ptrace_do_wait(struct wait_opts *wo, struct task_struct *tsk)
  1466. {
  1467. struct task_struct *p;
  1468. list_for_each_entry(p, &tsk->ptraced, ptrace_entry) {
  1469. int ret = wait_consider_task(wo, 1, p);
  1470. if (ret)
  1471. return ret;
  1472. }
  1473. return 0;
  1474. }
  1475. static int child_wait_callback(wait_queue_t *wait, unsigned mode,
  1476. int sync, void *key)
  1477. {
  1478. struct wait_opts *wo = container_of(wait, struct wait_opts,
  1479. child_wait);
  1480. struct task_struct *p = key;
  1481. if (!eligible_pid(wo, p))
  1482. return 0;
  1483. if ((wo->wo_flags & __WNOTHREAD) && wait->private != p->parent)
  1484. return 0;
  1485. return default_wake_function(wait, mode, sync, key);
  1486. }
  1487. void __wake_up_parent(struct task_struct *p, struct task_struct *parent)
  1488. {
  1489. __wake_up_sync_key(&parent->signal->wait_chldexit,
  1490. TASK_INTERRUPTIBLE, 1, p);
  1491. }
  1492. static long do_wait(struct wait_opts *wo)
  1493. {
  1494. struct task_struct *tsk;
  1495. int retval;
  1496. trace_sched_process_wait(wo->wo_pid);
  1497. init_waitqueue_func_entry(&wo->child_wait, child_wait_callback);
  1498. wo->child_wait.private = current;
  1499. add_wait_queue(&current->signal->wait_chldexit, &wo->child_wait);
  1500. repeat:
  1501. /*
  1502. * If there is nothing that can match our critiera just get out.
  1503. * We will clear ->notask_error to zero if we see any child that
  1504. * might later match our criteria, even if we are not able to reap
  1505. * it yet.
  1506. */
  1507. wo->notask_error = -ECHILD;
  1508. if ((wo->wo_type < PIDTYPE_MAX) &&
  1509. (!wo->wo_pid || hlist_empty(&wo->wo_pid->tasks[wo->wo_type])))
  1510. goto notask;
  1511. set_current_state(TASK_INTERRUPTIBLE);
  1512. read_lock(&tasklist_lock);
  1513. tsk = current;
  1514. do {
  1515. retval = do_wait_thread(wo, tsk);
  1516. if (retval)
  1517. goto end;
  1518. retval = ptrace_do_wait(wo, tsk);
  1519. if (retval)
  1520. goto end;
  1521. if (wo->wo_flags & __WNOTHREAD)
  1522. break;
  1523. } while_each_thread(current, tsk);
  1524. read_unlock(&tasklist_lock);
  1525. notask:
  1526. retval = wo->notask_error;
  1527. if (!retval && !(wo->wo_flags & WNOHANG)) {
  1528. retval = -ERESTARTSYS;
  1529. if (!signal_pending(current)) {
  1530. schedule();
  1531. goto repeat;
  1532. }
  1533. }
  1534. end:
  1535. __set_current_state(TASK_RUNNING);
  1536. remove_wait_queue(&current->signal->wait_chldexit, &wo->child_wait);
  1537. return retval;
  1538. }
  1539. SYSCALL_DEFINE5(waitid, int, which, pid_t, upid, struct siginfo __user *,
  1540. infop, int, options, struct rusage __user *, ru)
  1541. {
  1542. struct wait_opts wo;
  1543. struct pid *pid = NULL;
  1544. enum pid_type type;
  1545. long ret;
  1546. if (options & ~(WNOHANG|WNOWAIT|WEXITED|WSTOPPED|WCONTINUED))
  1547. return -EINVAL;
  1548. if (!(options & (WEXITED|WSTOPPED|WCONTINUED)))
  1549. return -EINVAL;
  1550. switch (which) {
  1551. case P_ALL:
  1552. type = PIDTYPE_MAX;
  1553. break;
  1554. case P_PID:
  1555. type = PIDTYPE_PID;
  1556. if (upid <= 0)
  1557. return -EINVAL;
  1558. break;
  1559. case P_PGID:
  1560. type = PIDTYPE_PGID;
  1561. if (upid <= 0)
  1562. return -EINVAL;
  1563. break;
  1564. default:
  1565. return -EINVAL;
  1566. }
  1567. if (type < PIDTYPE_MAX)
  1568. pid = find_get_pid(upid);
  1569. wo.wo_type = type;
  1570. wo.wo_pid = pid;
  1571. wo.wo_flags = options;
  1572. wo.wo_info = infop;
  1573. wo.wo_stat = NULL;
  1574. wo.wo_rusage = ru;
  1575. ret = do_wait(&wo);
  1576. if (ret > 0) {
  1577. ret = 0;
  1578. } else if (infop) {
  1579. /*
  1580. * For a WNOHANG return, clear out all the fields
  1581. * we would set so the user can easily tell the
  1582. * difference.
  1583. */
  1584. if (!ret)
  1585. ret = put_user(0, &infop->si_signo);
  1586. if (!ret)
  1587. ret = put_user(0, &infop->si_errno);
  1588. if (!ret)
  1589. ret = put_user(0, &infop->si_code);
  1590. if (!ret)
  1591. ret = put_user(0, &infop->si_pid);
  1592. if (!ret)
  1593. ret = put_user(0, &infop->si_uid);
  1594. if (!ret)
  1595. ret = put_user(0, &infop->si_status);
  1596. }
  1597. put_pid(pid);
  1598. /* avoid REGPARM breakage on x86: */
  1599. asmlinkage_protect(5, ret, which, upid, infop, options, ru);
  1600. return ret;
  1601. }
  1602. SYSCALL_DEFINE4(wait4, pid_t, upid, int __user *, stat_addr,
  1603. int, options, struct rusage __user *, ru)
  1604. {
  1605. struct wait_opts wo;
  1606. struct pid *pid = NULL;
  1607. enum pid_type type;
  1608. long ret;
  1609. if (options & ~(WNOHANG|WUNTRACED|WCONTINUED|
  1610. __WNOTHREAD|__WCLONE|__WALL))
  1611. return -EINVAL;
  1612. if (upid == -1)
  1613. type = PIDTYPE_MAX;
  1614. else if (upid < 0) {
  1615. type = PIDTYPE_PGID;
  1616. pid = find_get_pid(-upid);
  1617. } else if (upid == 0) {
  1618. type = PIDTYPE_PGID;
  1619. pid = get_task_pid(current, PIDTYPE_PGID);
  1620. } else /* upid > 0 */ {
  1621. type = PIDTYPE_PID;
  1622. pid = find_get_pid(upid);
  1623. }
  1624. wo.wo_type = type;
  1625. wo.wo_pid = pid;
  1626. wo.wo_flags = options | WEXITED;
  1627. wo.wo_info = NULL;
  1628. wo.wo_stat = stat_addr;
  1629. wo.wo_rusage = ru;
  1630. ret = do_wait(&wo);
  1631. put_pid(pid);
  1632. /* avoid REGPARM breakage on x86: */
  1633. asmlinkage_protect(4, ret, upid, stat_addr, options, ru);
  1634. return ret;
  1635. }
  1636. #ifdef __ARCH_WANT_SYS_WAITPID
  1637. /*
  1638. * sys_waitpid() remains for compatibility. waitpid() should be
  1639. * implemented by calling sys_wait4() from libc.a.
  1640. */
  1641. SYSCALL_DEFINE3(waitpid, pid_t, pid, int __user *, stat_addr, int, options)
  1642. {
  1643. return sys_wait4(pid, stat_addr, options, NULL);
  1644. }
  1645. #endif