exit.c 42 KB

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