123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701 |
- #include <linux/mm.h>
- #include <linux/slab.h>
- #include <linux/interrupt.h>
- #include <linux/module.h>
- #include <linux/capability.h>
- #include <linux/completion.h>
- #include <linux/personality.h>
- #include <linux/tty.h>
- #include <linux/iocontext.h>
- #include <linux/key.h>
- #include <linux/security.h>
- #include <linux/cpu.h>
- #include <linux/acct.h>
- #include <linux/tsacct_kern.h>
- #include <linux/file.h>
- #include <linux/fdtable.h>
- #include <linux/freezer.h>
- #include <linux/binfmts.h>
- #include <linux/nsproxy.h>
- #include <linux/pid_namespace.h>
- #include <linux/ptrace.h>
- #include <linux/profile.h>
- #include <linux/mount.h>
- #include <linux/proc_fs.h>
- #include <linux/kthread.h>
- #include <linux/mempolicy.h>
- #include <linux/taskstats_kern.h>
- #include <linux/delayacct.h>
- #include <linux/cgroup.h>
- #include <linux/syscalls.h>
- #include <linux/signal.h>
- #include <linux/posix-timers.h>
- #include <linux/cn_proc.h>
- #include <linux/mutex.h>
- #include <linux/futex.h>
- #include <linux/pipe_fs_i.h>
- #include <linux/audit.h> /* for audit_free() */
- #include <linux/resource.h>
- #include <linux/blkdev.h>
- #include <linux/task_io_accounting_ops.h>
- #include <linux/tracehook.h>
- #include <linux/fs_struct.h>
- #include <linux/init_task.h>
- #include <linux/perf_event.h>
- #include <trace/events/sched.h>
- #include <linux/hw_breakpoint.h>
- #include <linux/oom.h>
- #include <linux/writeback.h>
- #include <linux/shm.h>
- #include <linux/kcov.h>
- #include <asm/uaccess.h>
- #include <asm/unistd.h>
- #include <asm/pgtable.h>
- #include <asm/mmu_context.h>
- static void __unhash_process(struct task_struct *p, bool group_dead)
- {
- nr_threads--;
- detach_pid(p, PIDTYPE_PID);
- if (group_dead) {
- detach_pid(p, PIDTYPE_PGID);
- detach_pid(p, PIDTYPE_SID);
- list_del_rcu(&p->tasks);
- list_del_init(&p->sibling);
- __this_cpu_dec(process_counts);
- }
- list_del_rcu(&p->thread_group);
- list_del_rcu(&p->thread_node);
- }
- static void __exit_signal(struct task_struct *tsk)
- {
- struct signal_struct *sig = tsk->signal;
- bool group_dead = thread_group_leader(tsk);
- struct sighand_struct *sighand;
- struct tty_struct *uninitialized_var(tty);
- cputime_t utime, stime;
- sighand = rcu_dereference_check(tsk->sighand,
- lockdep_tasklist_lock_is_held());
- spin_lock(&sighand->siglock);
- posix_cpu_timers_exit(tsk);
- if (group_dead) {
- posix_cpu_timers_exit_group(tsk);
- tty = sig->tty;
- sig->tty = NULL;
- } else {
-
- if (unlikely(has_group_leader_pid(tsk)))
- posix_cpu_timers_exit_group(tsk);
-
- if (sig->notify_count > 0 && !--sig->notify_count)
- wake_up_process(sig->group_exit_task);
- if (tsk == sig->curr_target)
- sig->curr_target = next_thread(tsk);
- }
-
- task_cputime(tsk, &utime, &stime);
- write_seqlock(&sig->stats_lock);
- sig->utime += utime;
- sig->stime += stime;
- sig->gtime += task_gtime(tsk);
- sig->min_flt += tsk->min_flt;
- sig->maj_flt += tsk->maj_flt;
- sig->nvcsw += tsk->nvcsw;
- sig->nivcsw += tsk->nivcsw;
- sig->inblock += task_io_get_inblock(tsk);
- sig->oublock += task_io_get_oublock(tsk);
- task_io_accounting_add(&sig->ioac, &tsk->ioac);
- sig->sum_sched_runtime += tsk->se.sum_exec_runtime;
- sig->nr_threads--;
- __unhash_process(tsk, group_dead);
- write_sequnlock(&sig->stats_lock);
-
- flush_sigqueue(&tsk->pending);
- tsk->sighand = NULL;
- spin_unlock(&sighand->siglock);
- __cleanup_sighand(sighand);
- clear_tsk_thread_flag(tsk, TIF_SIGPENDING);
- if (group_dead) {
- flush_sigqueue(&sig->shared_pending);
- tty_kref_put(tty);
- }
- }
- static void delayed_put_task_struct(struct rcu_head *rhp)
- {
- struct task_struct *tsk = container_of(rhp, struct task_struct, rcu);
- perf_event_delayed_put(tsk);
- trace_sched_process_free(tsk);
- put_task_struct(tsk);
- }
- void release_task(struct task_struct *p)
- {
- struct task_struct *leader;
- int zap_leader;
- repeat:
-
- rcu_read_lock();
- atomic_dec(&__task_cred(p)->user->processes);
- rcu_read_unlock();
- proc_flush_task(p);
- write_lock_irq(&tasklist_lock);
- ptrace_release_task(p);
- __exit_signal(p);
-
- zap_leader = 0;
- leader = p->group_leader;
- if (leader != p && thread_group_empty(leader)
- && leader->exit_state == EXIT_ZOMBIE) {
-
- zap_leader = do_notify_parent(leader, leader->exit_signal);
- if (zap_leader)
- leader->exit_state = EXIT_DEAD;
- }
- write_unlock_irq(&tasklist_lock);
- release_thread(p);
- call_rcu(&p->rcu, delayed_put_task_struct);
- p = leader;
- if (unlikely(zap_leader))
- goto repeat;
- }
- struct task_struct *task_rcu_dereference(struct task_struct **ptask)
- {
- struct sighand_struct *sighand;
- struct task_struct *task;
-
- retry:
- task = rcu_dereference(*ptask);
- if (!task)
- return NULL;
- probe_kernel_address(&task->sighand, sighand);
-
- smp_rmb();
- if (unlikely(task != READ_ONCE(*ptask)))
- goto retry;
-
- if (!sighand)
- return NULL;
- return task;
- }
- struct task_struct *try_get_task_struct(struct task_struct **ptask)
- {
- struct task_struct *task;
- rcu_read_lock();
- task = task_rcu_dereference(ptask);
- if (task)
- get_task_struct(task);
- rcu_read_unlock();
- return task;
- }
- static int will_become_orphaned_pgrp(struct pid *pgrp,
- struct task_struct *ignored_task)
- {
- struct task_struct *p;
- do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
- if ((p == ignored_task) ||
- (p->exit_state && thread_group_empty(p)) ||
- is_global_init(p->real_parent))
- continue;
- if (task_pgrp(p->real_parent) != pgrp &&
- task_session(p->real_parent) == task_session(p))
- return 0;
- } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
- return 1;
- }
- int is_current_pgrp_orphaned(void)
- {
- int retval;
- read_lock(&tasklist_lock);
- retval = will_become_orphaned_pgrp(task_pgrp(current), NULL);
- read_unlock(&tasklist_lock);
- return retval;
- }
- static bool has_stopped_jobs(struct pid *pgrp)
- {
- struct task_struct *p;
- do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
- if (p->signal->flags & SIGNAL_STOP_STOPPED)
- return true;
- } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
- return false;
- }
- static void
- kill_orphaned_pgrp(struct task_struct *tsk, struct task_struct *parent)
- {
- struct pid *pgrp = task_pgrp(tsk);
- struct task_struct *ignored_task = tsk;
- if (!parent)
-
- parent = tsk->real_parent;
- else
-
- ignored_task = NULL;
- if (task_pgrp(parent) != pgrp &&
- task_session(parent) == task_session(tsk) &&
- will_become_orphaned_pgrp(pgrp, ignored_task) &&
- has_stopped_jobs(pgrp)) {
- __kill_pgrp_info(SIGHUP, SEND_SIG_PRIV, pgrp);
- __kill_pgrp_info(SIGCONT, SEND_SIG_PRIV, pgrp);
- }
- }
- #ifdef CONFIG_MEMCG
- void mm_update_next_owner(struct mm_struct *mm)
- {
- struct task_struct *c, *g, *p = current;
- retry:
-
- if (mm->owner != p)
- return;
-
- if (atomic_read(&mm->mm_users) <= 1) {
- mm->owner = NULL;
- return;
- }
- read_lock(&tasklist_lock);
-
- list_for_each_entry(c, &p->children, sibling) {
- if (c->mm == mm)
- goto assign_new_owner;
- }
-
- list_for_each_entry(c, &p->real_parent->children, sibling) {
- if (c->mm == mm)
- goto assign_new_owner;
- }
-
- for_each_process(g) {
- if (g->flags & PF_KTHREAD)
- continue;
- for_each_thread(g, c) {
- if (c->mm == mm)
- goto assign_new_owner;
- if (c->mm)
- break;
- }
- }
- read_unlock(&tasklist_lock);
-
- mm->owner = NULL;
- return;
- assign_new_owner:
- BUG_ON(c == p);
- get_task_struct(c);
-
- task_lock(c);
-
- read_unlock(&tasklist_lock);
- if (c->mm != mm) {
- task_unlock(c);
- put_task_struct(c);
- goto retry;
- }
- mm->owner = c;
- task_unlock(c);
- put_task_struct(c);
- }
- #endif
- static void exit_mm(struct task_struct *tsk)
- {
- struct mm_struct *mm = tsk->mm;
- struct core_state *core_state;
- mm_release(tsk, mm);
- if (!mm)
- return;
- sync_mm_rss(mm);
-
- down_read(&mm->mmap_sem);
- core_state = mm->core_state;
- if (core_state) {
- struct core_thread self;
- up_read(&mm->mmap_sem);
- self.task = tsk;
- self.next = xchg(&core_state->dumper.next, &self);
-
- if (atomic_dec_and_test(&core_state->nr_threads))
- complete(&core_state->startup);
- for (;;) {
- set_task_state(tsk, TASK_UNINTERRUPTIBLE);
- if (!self.task)
- break;
- freezable_schedule();
- }
- __set_task_state(tsk, TASK_RUNNING);
- down_read(&mm->mmap_sem);
- }
- atomic_inc(&mm->mm_count);
- BUG_ON(mm != tsk->active_mm);
-
- task_lock(tsk);
- tsk->mm = NULL;
- up_read(&mm->mmap_sem);
- enter_lazy_tlb(mm, current);
- task_unlock(tsk);
- mm_update_next_owner(mm);
- mmput(mm);
- if (test_thread_flag(TIF_MEMDIE))
- exit_oom_victim();
- }
- static struct task_struct *find_alive_thread(struct task_struct *p)
- {
- struct task_struct *t;
- for_each_thread(p, t) {
- if (!(t->flags & PF_EXITING))
- return t;
- }
- return NULL;
- }
- static struct task_struct *find_child_reaper(struct task_struct *father)
- __releases(&tasklist_lock)
- __acquires(&tasklist_lock)
- {
- struct pid_namespace *pid_ns = task_active_pid_ns(father);
- struct task_struct *reaper = pid_ns->child_reaper;
- if (likely(reaper != father))
- return reaper;
- reaper = find_alive_thread(father);
- if (reaper) {
- pid_ns->child_reaper = reaper;
- return reaper;
- }
- write_unlock_irq(&tasklist_lock);
- if (unlikely(pid_ns == &init_pid_ns)) {
- panic("Attempted to kill init! exitcode=0x%08x\n",
- father->signal->group_exit_code ?: father->exit_code);
- }
- zap_pid_ns_processes(pid_ns);
- write_lock_irq(&tasklist_lock);
- return father;
- }
- static struct task_struct *find_new_reaper(struct task_struct *father,
- struct task_struct *child_reaper)
- {
- struct task_struct *thread, *reaper;
- thread = find_alive_thread(father);
- if (thread)
- return thread;
- if (father->signal->has_child_subreaper) {
-
- for (reaper = father;
- !same_thread_group(reaper, child_reaper);
- reaper = reaper->real_parent) {
-
- if (reaper == &init_task)
- break;
- if (!reaper->signal->is_child_subreaper)
- continue;
- thread = find_alive_thread(reaper);
- if (thread)
- return thread;
- }
- }
- return child_reaper;
- }
- static void reparent_leader(struct task_struct *father, struct task_struct *p,
- struct list_head *dead)
- {
- if (unlikely(p->exit_state == EXIT_DEAD))
- return;
-
- p->exit_signal = SIGCHLD;
-
- if (!p->ptrace &&
- p->exit_state == EXIT_ZOMBIE && thread_group_empty(p)) {
- if (do_notify_parent(p, p->exit_signal)) {
- p->exit_state = EXIT_DEAD;
- list_add(&p->ptrace_entry, dead);
- }
- }
- kill_orphaned_pgrp(p, father);
- }
- static void forget_original_parent(struct task_struct *father,
- struct list_head *dead)
- {
- struct task_struct *p, *t, *reaper;
- if (unlikely(!list_empty(&father->ptraced)))
- exit_ptrace(father, dead);
-
- reaper = find_child_reaper(father);
- if (list_empty(&father->children))
- return;
- reaper = find_new_reaper(father, reaper);
- list_for_each_entry(p, &father->children, sibling) {
- for_each_thread(p, t) {
- t->real_parent = reaper;
- BUG_ON((!t->ptrace) != (t->parent == father));
- if (likely(!t->ptrace))
- t->parent = t->real_parent;
- if (t->pdeath_signal)
- group_send_sig_info(t->pdeath_signal,
- SEND_SIG_NOINFO, t);
- }
-
- if (!same_thread_group(reaper, father))
- reparent_leader(father, p, dead);
- }
- list_splice_tail_init(&father->children, &reaper->children);
- }
- static void exit_notify(struct task_struct *tsk, int group_dead)
- {
- bool autoreap;
- struct task_struct *p, *n;
- LIST_HEAD(dead);
- write_lock_irq(&tasklist_lock);
- forget_original_parent(tsk, &dead);
- if (group_dead)
- kill_orphaned_pgrp(tsk->group_leader, NULL);
- if (unlikely(tsk->ptrace)) {
- int sig = thread_group_leader(tsk) &&
- thread_group_empty(tsk) &&
- !ptrace_reparented(tsk) ?
- tsk->exit_signal : SIGCHLD;
- autoreap = do_notify_parent(tsk, sig);
- } else if (thread_group_leader(tsk)) {
- autoreap = thread_group_empty(tsk) &&
- do_notify_parent(tsk, tsk->exit_signal);
- } else {
- autoreap = true;
- }
- tsk->exit_state = autoreap ? EXIT_DEAD : EXIT_ZOMBIE;
- if (tsk->exit_state == EXIT_DEAD)
- list_add(&tsk->ptrace_entry, &dead);
-
- if (unlikely(tsk->signal->notify_count < 0))
- wake_up_process(tsk->signal->group_exit_task);
- write_unlock_irq(&tasklist_lock);
- list_for_each_entry_safe(p, n, &dead, ptrace_entry) {
- list_del_init(&p->ptrace_entry);
- release_task(p);
- }
- }
- #ifdef CONFIG_DEBUG_STACK_USAGE
- static void check_stack_usage(void)
- {
- static DEFINE_SPINLOCK(low_water_lock);
- static int lowest_to_date = THREAD_SIZE;
- unsigned long free;
- free = stack_not_used(current);
- if (free >= lowest_to_date)
- return;
- spin_lock(&low_water_lock);
- if (free < lowest_to_date) {
- pr_info("%s (%d) used greatest stack depth: %lu bytes left\n",
- current->comm, task_pid_nr(current), free);
- lowest_to_date = free;
- }
- spin_unlock(&low_water_lock);
- }
- #else
- static inline void check_stack_usage(void) {}
- #endif
- void __noreturn do_exit(long code)
- {
- struct task_struct *tsk = current;
- int group_dead;
- TASKS_RCU(int tasks_rcu_i);
- profile_task_exit(tsk);
- kcov_task_exit(tsk);
- WARN_ON(blk_needs_flush_plug(tsk));
- if (unlikely(in_interrupt()))
- panic("Aiee, killing interrupt handler!");
- if (unlikely(!tsk->pid))
- panic("Attempted to kill the idle task!");
-
- set_fs(USER_DS);
- ptrace_event(PTRACE_EVENT_EXIT, code);
- validate_creds_for_do_exit(tsk);
-
- if (unlikely(tsk->flags & PF_EXITING)) {
- pr_alert("Fixing recursive fault but reboot is needed!\n");
-
- tsk->flags |= PF_EXITPIDONE;
- set_current_state(TASK_UNINTERRUPTIBLE);
- schedule();
- }
- exit_signals(tsk);
-
- smp_mb();
-
- raw_spin_unlock_wait(&tsk->pi_lock);
- if (unlikely(in_atomic())) {
- pr_info("note: %s[%d] exited with preempt_count %d\n",
- current->comm, task_pid_nr(current),
- preempt_count());
- preempt_count_set(PREEMPT_ENABLED);
- }
-
- if (tsk->mm)
- sync_mm_rss(tsk->mm);
- acct_update_integrals(tsk);
- group_dead = atomic_dec_and_test(&tsk->signal->live);
- if (group_dead) {
- hrtimer_cancel(&tsk->signal->real_timer);
- exit_itimers(tsk->signal);
- if (tsk->mm)
- setmax_mm_hiwater_rss(&tsk->signal->maxrss, tsk->mm);
- }
- acct_collect(code, group_dead);
- if (group_dead)
- tty_audit_exit();
- audit_free(tsk);
- tsk->exit_code = code;
- taskstats_exit(tsk, group_dead);
- exit_mm(tsk);
- if (group_dead)
- acct_process();
- trace_sched_process_exit(tsk);
- exit_sem(tsk);
- exit_shm(tsk);
- exit_files(tsk);
- exit_fs(tsk);
- if (group_dead)
- disassociate_ctty(1);
- exit_task_namespaces(tsk);
- exit_task_work(tsk);
- exit_thread(tsk);
-
- perf_event_exit_task(tsk);
- sched_autogroup_exit_task(tsk);
- cgroup_exit(tsk);
-
- flush_ptrace_hw_breakpoint(tsk);
- TASKS_RCU(preempt_disable());
- TASKS_RCU(tasks_rcu_i = __srcu_read_lock(&tasks_rcu_exit_srcu));
- TASKS_RCU(preempt_enable());
- exit_notify(tsk, group_dead);
- proc_exit_connector(tsk);
- mpol_put_task_policy(tsk);
- #ifdef CONFIG_FUTEX
- if (unlikely(current->pi_state_cache))
- kfree(current->pi_state_cache);
- #endif
-
- debug_check_no_locks_held();
-
- tsk->flags |= PF_EXITPIDONE;
- if (tsk->io_context)
- exit_io_context(tsk);
- if (tsk->splice_pipe)
- free_pipe_info(tsk->splice_pipe);
- if (tsk->task_frag.page)
- put_page(tsk->task_frag.page);
- validate_creds_for_do_exit(tsk);
- check_stack_usage();
- preempt_disable();
- if (tsk->nr_dirtied)
- __this_cpu_add(dirty_throttle_leaks, tsk->nr_dirtied);
- exit_rcu();
- TASKS_RCU(__srcu_read_unlock(&tasks_rcu_exit_srcu, tasks_rcu_i));
- do_task_dead();
- }
- EXPORT_SYMBOL_GPL(do_exit);
- void complete_and_exit(struct completion *comp, long code)
- {
- if (comp)
- complete(comp);
- do_exit(code);
- }
- EXPORT_SYMBOL(complete_and_exit);
- SYSCALL_DEFINE1(exit, int, error_code)
- {
- do_exit((error_code&0xff)<<8);
- }
- void
- do_group_exit(int exit_code)
- {
- struct signal_struct *sig = current->signal;
- BUG_ON(exit_code & 0x80);
- if (signal_group_exit(sig))
- exit_code = sig->group_exit_code;
- else if (!thread_group_empty(current)) {
- struct sighand_struct *const sighand = current->sighand;
- spin_lock_irq(&sighand->siglock);
- if (signal_group_exit(sig))
-
- exit_code = sig->group_exit_code;
- else {
- sig->group_exit_code = exit_code;
- sig->flags = SIGNAL_GROUP_EXIT;
- zap_other_threads(current);
- }
- spin_unlock_irq(&sighand->siglock);
- }
- do_exit(exit_code);
-
- }
- SYSCALL_DEFINE1(exit_group, int, error_code)
- {
- do_group_exit((error_code & 0xff) << 8);
-
- return 0;
- }
- struct wait_opts {
- enum pid_type wo_type;
- int wo_flags;
- struct pid *wo_pid;
- struct siginfo __user *wo_info;
- int __user *wo_stat;
- struct rusage __user *wo_rusage;
- wait_queue_t child_wait;
- int notask_error;
- };
- static inline
- struct pid *task_pid_type(struct task_struct *task, enum pid_type type)
- {
- if (type != PIDTYPE_PID)
- task = task->group_leader;
- return task->pids[type].pid;
- }
- static int eligible_pid(struct wait_opts *wo, struct task_struct *p)
- {
- return wo->wo_type == PIDTYPE_MAX ||
- task_pid_type(p, wo->wo_type) == wo->wo_pid;
- }
- static int
- eligible_child(struct wait_opts *wo, bool ptrace, struct task_struct *p)
- {
- if (!eligible_pid(wo, p))
- return 0;
-
- if (ptrace || (wo->wo_flags & __WALL))
- return 1;
-
- if ((p->exit_signal != SIGCHLD) ^ !!(wo->wo_flags & __WCLONE))
- return 0;
- return 1;
- }
- static int wait_noreap_copyout(struct wait_opts *wo, struct task_struct *p,
- pid_t pid, uid_t uid, int why, int status)
- {
- struct siginfo __user *infop;
- int retval = wo->wo_rusage
- ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
- put_task_struct(p);
- infop = wo->wo_info;
- if (infop) {
- if (!retval)
- retval = put_user(SIGCHLD, &infop->si_signo);
- if (!retval)
- retval = put_user(0, &infop->si_errno);
- if (!retval)
- retval = put_user((short)why, &infop->si_code);
- if (!retval)
- retval = put_user(pid, &infop->si_pid);
- if (!retval)
- retval = put_user(uid, &infop->si_uid);
- if (!retval)
- retval = put_user(status, &infop->si_status);
- }
- if (!retval)
- retval = pid;
- return retval;
- }
- static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
- {
- int state, retval, status;
- pid_t pid = task_pid_vnr(p);
- uid_t uid = from_kuid_munged(current_user_ns(), task_uid(p));
- struct siginfo __user *infop;
- if (!likely(wo->wo_flags & WEXITED))
- return 0;
- if (unlikely(wo->wo_flags & WNOWAIT)) {
- int exit_code = p->exit_code;
- int why;
- get_task_struct(p);
- read_unlock(&tasklist_lock);
- sched_annotate_sleep();
- if ((exit_code & 0x7f) == 0) {
- why = CLD_EXITED;
- status = exit_code >> 8;
- } else {
- why = (exit_code & 0x80) ? CLD_DUMPED : CLD_KILLED;
- status = exit_code & 0x7f;
- }
- return wait_noreap_copyout(wo, p, pid, uid, why, status);
- }
-
- state = (ptrace_reparented(p) && thread_group_leader(p)) ?
- EXIT_TRACE : EXIT_DEAD;
- if (cmpxchg(&p->exit_state, EXIT_ZOMBIE, state) != EXIT_ZOMBIE)
- return 0;
-
- read_unlock(&tasklist_lock);
- sched_annotate_sleep();
-
- if (state == EXIT_DEAD && thread_group_leader(p)) {
- struct signal_struct *sig = p->signal;
- struct signal_struct *psig = current->signal;
- unsigned long maxrss;
- cputime_t tgutime, tgstime;
-
- thread_group_cputime_adjusted(p, &tgutime, &tgstime);
- spin_lock_irq(¤t->sighand->siglock);
- write_seqlock(&psig->stats_lock);
- psig->cutime += tgutime + sig->cutime;
- psig->cstime += tgstime + sig->cstime;
- psig->cgtime += task_gtime(p) + sig->gtime + sig->cgtime;
- psig->cmin_flt +=
- p->min_flt + sig->min_flt + sig->cmin_flt;
- psig->cmaj_flt +=
- p->maj_flt + sig->maj_flt + sig->cmaj_flt;
- psig->cnvcsw +=
- p->nvcsw + sig->nvcsw + sig->cnvcsw;
- psig->cnivcsw +=
- p->nivcsw + sig->nivcsw + sig->cnivcsw;
- psig->cinblock +=
- task_io_get_inblock(p) +
- sig->inblock + sig->cinblock;
- psig->coublock +=
- task_io_get_oublock(p) +
- sig->oublock + sig->coublock;
- maxrss = max(sig->maxrss, sig->cmaxrss);
- if (psig->cmaxrss < maxrss)
- psig->cmaxrss = maxrss;
- task_io_accounting_add(&psig->ioac, &p->ioac);
- task_io_accounting_add(&psig->ioac, &sig->ioac);
- write_sequnlock(&psig->stats_lock);
- spin_unlock_irq(¤t->sighand->siglock);
- }
- retval = wo->wo_rusage
- ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
- status = (p->signal->flags & SIGNAL_GROUP_EXIT)
- ? p->signal->group_exit_code : p->exit_code;
- if (!retval && wo->wo_stat)
- retval = put_user(status, wo->wo_stat);
- infop = wo->wo_info;
- if (!retval && infop)
- retval = put_user(SIGCHLD, &infop->si_signo);
- if (!retval && infop)
- retval = put_user(0, &infop->si_errno);
- if (!retval && infop) {
- int why;
- if ((status & 0x7f) == 0) {
- why = CLD_EXITED;
- status >>= 8;
- } else {
- why = (status & 0x80) ? CLD_DUMPED : CLD_KILLED;
- status &= 0x7f;
- }
- retval = put_user((short)why, &infop->si_code);
- if (!retval)
- retval = put_user(status, &infop->si_status);
- }
- if (!retval && infop)
- retval = put_user(pid, &infop->si_pid);
- if (!retval && infop)
- retval = put_user(uid, &infop->si_uid);
- if (!retval)
- retval = pid;
- if (state == EXIT_TRACE) {
- write_lock_irq(&tasklist_lock);
-
- ptrace_unlink(p);
-
- state = EXIT_ZOMBIE;
- if (do_notify_parent(p, p->exit_signal))
- state = EXIT_DEAD;
- p->exit_state = state;
- write_unlock_irq(&tasklist_lock);
- }
- if (state == EXIT_DEAD)
- release_task(p);
- return retval;
- }
- static int *task_stopped_code(struct task_struct *p, bool ptrace)
- {
- if (ptrace) {
- if (task_is_traced(p) && !(p->jobctl & JOBCTL_LISTENING))
- return &p->exit_code;
- } else {
- if (p->signal->flags & SIGNAL_STOP_STOPPED)
- return &p->signal->group_exit_code;
- }
- return NULL;
- }
- static int wait_task_stopped(struct wait_opts *wo,
- int ptrace, struct task_struct *p)
- {
- struct siginfo __user *infop;
- int retval, exit_code, *p_code, why;
- uid_t uid = 0;
- pid_t pid;
-
- if (!ptrace && !(wo->wo_flags & WUNTRACED))
- return 0;
- if (!task_stopped_code(p, ptrace))
- return 0;
- exit_code = 0;
- spin_lock_irq(&p->sighand->siglock);
- p_code = task_stopped_code(p, ptrace);
- if (unlikely(!p_code))
- goto unlock_sig;
- exit_code = *p_code;
- if (!exit_code)
- goto unlock_sig;
- if (!unlikely(wo->wo_flags & WNOWAIT))
- *p_code = 0;
- uid = from_kuid_munged(current_user_ns(), task_uid(p));
- unlock_sig:
- spin_unlock_irq(&p->sighand->siglock);
- if (!exit_code)
- return 0;
-
- get_task_struct(p);
- pid = task_pid_vnr(p);
- why = ptrace ? CLD_TRAPPED : CLD_STOPPED;
- read_unlock(&tasklist_lock);
- sched_annotate_sleep();
- if (unlikely(wo->wo_flags & WNOWAIT))
- return wait_noreap_copyout(wo, p, pid, uid, why, exit_code);
- retval = wo->wo_rusage
- ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
- if (!retval && wo->wo_stat)
- retval = put_user((exit_code << 8) | 0x7f, wo->wo_stat);
- infop = wo->wo_info;
- if (!retval && infop)
- retval = put_user(SIGCHLD, &infop->si_signo);
- if (!retval && infop)
- retval = put_user(0, &infop->si_errno);
- if (!retval && infop)
- retval = put_user((short)why, &infop->si_code);
- if (!retval && infop)
- retval = put_user(exit_code, &infop->si_status);
- if (!retval && infop)
- retval = put_user(pid, &infop->si_pid);
- if (!retval && infop)
- retval = put_user(uid, &infop->si_uid);
- if (!retval)
- retval = pid;
- put_task_struct(p);
- BUG_ON(!retval);
- return retval;
- }
- static int wait_task_continued(struct wait_opts *wo, struct task_struct *p)
- {
- int retval;
- pid_t pid;
- uid_t uid;
- if (!unlikely(wo->wo_flags & WCONTINUED))
- return 0;
- if (!(p->signal->flags & SIGNAL_STOP_CONTINUED))
- return 0;
- spin_lock_irq(&p->sighand->siglock);
-
- if (!(p->signal->flags & SIGNAL_STOP_CONTINUED)) {
- spin_unlock_irq(&p->sighand->siglock);
- return 0;
- }
- if (!unlikely(wo->wo_flags & WNOWAIT))
- p->signal->flags &= ~SIGNAL_STOP_CONTINUED;
- uid = from_kuid_munged(current_user_ns(), task_uid(p));
- spin_unlock_irq(&p->sighand->siglock);
- pid = task_pid_vnr(p);
- get_task_struct(p);
- read_unlock(&tasklist_lock);
- sched_annotate_sleep();
- if (!wo->wo_info) {
- retval = wo->wo_rusage
- ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
- put_task_struct(p);
- if (!retval && wo->wo_stat)
- retval = put_user(0xffff, wo->wo_stat);
- if (!retval)
- retval = pid;
- } else {
- retval = wait_noreap_copyout(wo, p, pid, uid,
- CLD_CONTINUED, SIGCONT);
- BUG_ON(retval == 0);
- }
- return retval;
- }
- static int wait_consider_task(struct wait_opts *wo, int ptrace,
- struct task_struct *p)
- {
-
- int exit_state = ACCESS_ONCE(p->exit_state);
- int ret;
- if (unlikely(exit_state == EXIT_DEAD))
- return 0;
- ret = eligible_child(wo, ptrace, p);
- if (!ret)
- return ret;
- ret = security_task_wait(p);
- if (unlikely(ret < 0)) {
-
- if (wo->notask_error)
- wo->notask_error = ret;
- return 0;
- }
- if (unlikely(exit_state == EXIT_TRACE)) {
-
- if (likely(!ptrace))
- wo->notask_error = 0;
- return 0;
- }
- if (likely(!ptrace) && unlikely(p->ptrace)) {
-
- if (!ptrace_reparented(p))
- ptrace = 1;
- }
-
- if (exit_state == EXIT_ZOMBIE) {
-
- if (!delay_group_leader(p)) {
-
- if (unlikely(ptrace) || likely(!p->ptrace))
- return wait_task_zombie(wo, p);
- }
-
- if (likely(!ptrace) || (wo->wo_flags & (WCONTINUED | WEXITED)))
- wo->notask_error = 0;
- } else {
-
- wo->notask_error = 0;
- }
-
- ret = wait_task_stopped(wo, ptrace, p);
- if (ret)
- return ret;
-
- return wait_task_continued(wo, p);
- }
- static int do_wait_thread(struct wait_opts *wo, struct task_struct *tsk)
- {
- struct task_struct *p;
- list_for_each_entry(p, &tsk->children, sibling) {
- int ret = wait_consider_task(wo, 0, p);
- if (ret)
- return ret;
- }
- return 0;
- }
- static int ptrace_do_wait(struct wait_opts *wo, struct task_struct *tsk)
- {
- struct task_struct *p;
- list_for_each_entry(p, &tsk->ptraced, ptrace_entry) {
- int ret = wait_consider_task(wo, 1, p);
- if (ret)
- return ret;
- }
- return 0;
- }
- static int child_wait_callback(wait_queue_t *wait, unsigned mode,
- int sync, void *key)
- {
- struct wait_opts *wo = container_of(wait, struct wait_opts,
- child_wait);
- struct task_struct *p = key;
- if (!eligible_pid(wo, p))
- return 0;
- if ((wo->wo_flags & __WNOTHREAD) && wait->private != p->parent)
- return 0;
- return default_wake_function(wait, mode, sync, key);
- }
- void __wake_up_parent(struct task_struct *p, struct task_struct *parent)
- {
- __wake_up_sync_key(&parent->signal->wait_chldexit,
- TASK_INTERRUPTIBLE, 1, p);
- }
- static long do_wait(struct wait_opts *wo)
- {
- struct task_struct *tsk;
- int retval;
- trace_sched_process_wait(wo->wo_pid);
- init_waitqueue_func_entry(&wo->child_wait, child_wait_callback);
- wo->child_wait.private = current;
- add_wait_queue(¤t->signal->wait_chldexit, &wo->child_wait);
- repeat:
-
- wo->notask_error = -ECHILD;
- if ((wo->wo_type < PIDTYPE_MAX) &&
- (!wo->wo_pid || hlist_empty(&wo->wo_pid->tasks[wo->wo_type])))
- goto notask;
- set_current_state(TASK_INTERRUPTIBLE);
- read_lock(&tasklist_lock);
- tsk = current;
- do {
- retval = do_wait_thread(wo, tsk);
- if (retval)
- goto end;
- retval = ptrace_do_wait(wo, tsk);
- if (retval)
- goto end;
- if (wo->wo_flags & __WNOTHREAD)
- break;
- } while_each_thread(current, tsk);
- read_unlock(&tasklist_lock);
- notask:
- retval = wo->notask_error;
- if (!retval && !(wo->wo_flags & WNOHANG)) {
- retval = -ERESTARTSYS;
- if (!signal_pending(current)) {
- schedule();
- goto repeat;
- }
- }
- end:
- __set_current_state(TASK_RUNNING);
- remove_wait_queue(¤t->signal->wait_chldexit, &wo->child_wait);
- return retval;
- }
- SYSCALL_DEFINE5(waitid, int, which, pid_t, upid, struct siginfo __user *,
- infop, int, options, struct rusage __user *, ru)
- {
- struct wait_opts wo;
- struct pid *pid = NULL;
- enum pid_type type;
- long ret;
- if (options & ~(WNOHANG|WNOWAIT|WEXITED|WSTOPPED|WCONTINUED|
- __WNOTHREAD|__WCLONE|__WALL))
- return -EINVAL;
- if (!(options & (WEXITED|WSTOPPED|WCONTINUED)))
- return -EINVAL;
- switch (which) {
- case P_ALL:
- type = PIDTYPE_MAX;
- break;
- case P_PID:
- type = PIDTYPE_PID;
- if (upid <= 0)
- return -EINVAL;
- break;
- case P_PGID:
- type = PIDTYPE_PGID;
- if (upid <= 0)
- return -EINVAL;
- break;
- default:
- return -EINVAL;
- }
- if (type < PIDTYPE_MAX)
- pid = find_get_pid(upid);
- wo.wo_type = type;
- wo.wo_pid = pid;
- wo.wo_flags = options;
- wo.wo_info = infop;
- wo.wo_stat = NULL;
- wo.wo_rusage = ru;
- ret = do_wait(&wo);
- if (ret > 0) {
- ret = 0;
- } else if (infop) {
-
- if (!ret)
- ret = put_user(0, &infop->si_signo);
- if (!ret)
- ret = put_user(0, &infop->si_errno);
- if (!ret)
- ret = put_user(0, &infop->si_code);
- if (!ret)
- ret = put_user(0, &infop->si_pid);
- if (!ret)
- ret = put_user(0, &infop->si_uid);
- if (!ret)
- ret = put_user(0, &infop->si_status);
- }
- put_pid(pid);
- return ret;
- }
- SYSCALL_DEFINE4(wait4, pid_t, upid, int __user *, stat_addr,
- int, options, struct rusage __user *, ru)
- {
- struct wait_opts wo;
- struct pid *pid = NULL;
- enum pid_type type;
- long ret;
- if (options & ~(WNOHANG|WUNTRACED|WCONTINUED|
- __WNOTHREAD|__WCLONE|__WALL))
- return -EINVAL;
- if (upid == -1)
- type = PIDTYPE_MAX;
- else if (upid < 0) {
- type = PIDTYPE_PGID;
- pid = find_get_pid(-upid);
- } else if (upid == 0) {
- type = PIDTYPE_PGID;
- pid = get_task_pid(current, PIDTYPE_PGID);
- } else {
- type = PIDTYPE_PID;
- pid = find_get_pid(upid);
- }
- wo.wo_type = type;
- wo.wo_pid = pid;
- wo.wo_flags = options | WEXITED;
- wo.wo_info = NULL;
- wo.wo_stat = stat_addr;
- wo.wo_rusage = ru;
- ret = do_wait(&wo);
- put_pid(pid);
- return ret;
- }
- #ifdef __ARCH_WANT_SYS_WAITPID
- SYSCALL_DEFINE3(waitpid, pid_t, pid, int __user *, stat_addr, int, options)
- {
- return sys_wait4(pid, stat_addr, options, NULL);
- }
- #endif
|