sched.h 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309
  1. #ifndef _LINUX_SCHED_H
  2. #define _LINUX_SCHED_H
  3. #include <uapi/linux/sched.h>
  4. #include <linux/sched/prio.h>
  5. struct sched_param {
  6. int sched_priority;
  7. };
  8. #include <asm/param.h> /* for HZ */
  9. #include <linux/capability.h>
  10. #include <linux/threads.h>
  11. #include <linux/kernel.h>
  12. #include <linux/types.h>
  13. #include <linux/timex.h>
  14. #include <linux/jiffies.h>
  15. #include <linux/mutex.h>
  16. #include <linux/plist.h>
  17. #include <linux/rbtree.h>
  18. #include <linux/thread_info.h>
  19. #include <linux/cpumask.h>
  20. #include <linux/errno.h>
  21. #include <linux/nodemask.h>
  22. #include <linux/mm_types.h>
  23. #include <linux/preempt.h>
  24. #include <asm/page.h>
  25. #include <asm/ptrace.h>
  26. #include <linux/smp.h>
  27. #include <linux/sem.h>
  28. #include <linux/shm.h>
  29. #include <linux/signal.h>
  30. #include <linux/compiler.h>
  31. #include <linux/completion.h>
  32. #include <linux/signal_types.h>
  33. #include <linux/pid.h>
  34. #include <linux/percpu.h>
  35. #include <linux/topology.h>
  36. #include <linux/seccomp.h>
  37. #include <linux/rcupdate.h>
  38. #include <linux/rculist.h>
  39. #include <linux/rtmutex.h>
  40. #include <linux/time.h>
  41. #include <linux/param.h>
  42. #include <linux/resource.h>
  43. #include <linux/timer.h>
  44. #include <linux/hrtimer.h>
  45. #include <linux/kcov.h>
  46. #include <linux/task_io_accounting.h>
  47. #include <linux/latencytop.h>
  48. #include <linux/cred.h>
  49. #include <linux/llist.h>
  50. #include <linux/uidgid.h>
  51. #include <linux/gfp.h>
  52. #include <linux/topology.h>
  53. #include <linux/magic.h>
  54. #include <linux/cgroup-defs.h>
  55. #include <asm/processor.h>
  56. #define SCHED_ATTR_SIZE_VER0 48 /* sizeof first published struct */
  57. /*
  58. * Extended scheduling parameters data structure.
  59. *
  60. * This is needed because the original struct sched_param can not be
  61. * altered without introducing ABI issues with legacy applications
  62. * (e.g., in sched_getparam()).
  63. *
  64. * However, the possibility of specifying more than just a priority for
  65. * the tasks may be useful for a wide variety of application fields, e.g.,
  66. * multimedia, streaming, automation and control, and many others.
  67. *
  68. * This variant (sched_attr) is meant at describing a so-called
  69. * sporadic time-constrained task. In such model a task is specified by:
  70. * - the activation period or minimum instance inter-arrival time;
  71. * - the maximum (or average, depending on the actual scheduling
  72. * discipline) computation time of all instances, a.k.a. runtime;
  73. * - the deadline (relative to the actual activation time) of each
  74. * instance.
  75. * Very briefly, a periodic (sporadic) task asks for the execution of
  76. * some specific computation --which is typically called an instance--
  77. * (at most) every period. Moreover, each instance typically lasts no more
  78. * than the runtime and must be completed by time instant t equal to
  79. * the instance activation time + the deadline.
  80. *
  81. * This is reflected by the actual fields of the sched_attr structure:
  82. *
  83. * @size size of the structure, for fwd/bwd compat.
  84. *
  85. * @sched_policy task's scheduling policy
  86. * @sched_flags for customizing the scheduler behaviour
  87. * @sched_nice task's nice value (SCHED_NORMAL/BATCH)
  88. * @sched_priority task's static priority (SCHED_FIFO/RR)
  89. * @sched_deadline representative of the task's deadline
  90. * @sched_runtime representative of the task's runtime
  91. * @sched_period representative of the task's period
  92. *
  93. * Given this task model, there are a multiplicity of scheduling algorithms
  94. * and policies, that can be used to ensure all the tasks will make their
  95. * timing constraints.
  96. *
  97. * As of now, the SCHED_DEADLINE policy (sched_dl scheduling class) is the
  98. * only user of this new interface. More information about the algorithm
  99. * available in the scheduling class file or in Documentation/.
  100. */
  101. struct sched_attr {
  102. u32 size;
  103. u32 sched_policy;
  104. u64 sched_flags;
  105. /* SCHED_NORMAL, SCHED_BATCH */
  106. s32 sched_nice;
  107. /* SCHED_FIFO, SCHED_RR */
  108. u32 sched_priority;
  109. /* SCHED_DEADLINE */
  110. u64 sched_runtime;
  111. u64 sched_deadline;
  112. u64 sched_period;
  113. };
  114. struct futex_pi_state;
  115. struct robust_list_head;
  116. struct bio_list;
  117. struct fs_struct;
  118. struct perf_event_context;
  119. struct blk_plug;
  120. struct filename;
  121. struct nameidata;
  122. /*
  123. * These are the constant used to fake the fixed-point load-average
  124. * counting. Some notes:
  125. * - 11 bit fractions expand to 22 bits by the multiplies: this gives
  126. * a load-average precision of 10 bits integer + 11 bits fractional
  127. * - if you want to count load-averages more often, you need more
  128. * precision, or rounding will get you. With 2-second counting freq,
  129. * the EXP_n values would be 1981, 2034 and 2043 if still using only
  130. * 11 bit fractions.
  131. */
  132. extern unsigned long avenrun[]; /* Load averages */
  133. extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);
  134. #define FSHIFT 11 /* nr of bits of precision */
  135. #define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
  136. #define LOAD_FREQ (5*HZ+1) /* 5 sec intervals */
  137. #define EXP_1 1884 /* 1/exp(5sec/1min) as fixed-point */
  138. #define EXP_5 2014 /* 1/exp(5sec/5min) */
  139. #define EXP_15 2037 /* 1/exp(5sec/15min) */
  140. #define CALC_LOAD(load,exp,n) \
  141. load *= exp; \
  142. load += n*(FIXED_1-exp); \
  143. load >>= FSHIFT;
  144. extern unsigned long total_forks;
  145. extern int nr_threads;
  146. DECLARE_PER_CPU(unsigned long, process_counts);
  147. extern int nr_processes(void);
  148. extern unsigned long nr_running(void);
  149. extern bool single_task_running(void);
  150. extern unsigned long nr_iowait(void);
  151. extern unsigned long nr_iowait_cpu(int cpu);
  152. extern void get_iowait_load(unsigned long *nr_waiters, unsigned long *load);
  153. extern void calc_global_load(unsigned long ticks);
  154. #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
  155. extern void cpu_load_update_nohz_start(void);
  156. extern void cpu_load_update_nohz_stop(void);
  157. #else
  158. static inline void cpu_load_update_nohz_start(void) { }
  159. static inline void cpu_load_update_nohz_stop(void) { }
  160. #endif
  161. extern void dump_cpu_task(int cpu);
  162. struct seq_file;
  163. struct cfs_rq;
  164. struct task_group;
  165. #ifdef CONFIG_SCHED_DEBUG
  166. extern void proc_sched_show_task(struct task_struct *p, struct seq_file *m);
  167. extern void proc_sched_set_task(struct task_struct *p);
  168. #endif
  169. /*
  170. * Task state bitmask. NOTE! These bits are also
  171. * encoded in fs/proc/array.c: get_task_state().
  172. *
  173. * We have two separate sets of flags: task->state
  174. * is about runnability, while task->exit_state are
  175. * about the task exiting. Confusing, but this way
  176. * modifying one set can't modify the other one by
  177. * mistake.
  178. */
  179. #define TASK_RUNNING 0
  180. #define TASK_INTERRUPTIBLE 1
  181. #define TASK_UNINTERRUPTIBLE 2
  182. #define __TASK_STOPPED 4
  183. #define __TASK_TRACED 8
  184. /* in tsk->exit_state */
  185. #define EXIT_DEAD 16
  186. #define EXIT_ZOMBIE 32
  187. #define EXIT_TRACE (EXIT_ZOMBIE | EXIT_DEAD)
  188. /* in tsk->state again */
  189. #define TASK_DEAD 64
  190. #define TASK_WAKEKILL 128
  191. #define TASK_WAKING 256
  192. #define TASK_PARKED 512
  193. #define TASK_NOLOAD 1024
  194. #define TASK_NEW 2048
  195. #define TASK_STATE_MAX 4096
  196. #define TASK_STATE_TO_CHAR_STR "RSDTtXZxKWPNn"
  197. /* Convenience macros for the sake of set_current_state */
  198. #define TASK_KILLABLE (TASK_WAKEKILL | TASK_UNINTERRUPTIBLE)
  199. #define TASK_STOPPED (TASK_WAKEKILL | __TASK_STOPPED)
  200. #define TASK_TRACED (TASK_WAKEKILL | __TASK_TRACED)
  201. #define TASK_IDLE (TASK_UNINTERRUPTIBLE | TASK_NOLOAD)
  202. /* Convenience macros for the sake of wake_up */
  203. #define TASK_NORMAL (TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE)
  204. #define TASK_ALL (TASK_NORMAL | __TASK_STOPPED | __TASK_TRACED)
  205. /* get_task_state() */
  206. #define TASK_REPORT (TASK_RUNNING | TASK_INTERRUPTIBLE | \
  207. TASK_UNINTERRUPTIBLE | __TASK_STOPPED | \
  208. __TASK_TRACED | EXIT_ZOMBIE | EXIT_DEAD)
  209. #define task_is_traced(task) ((task->state & __TASK_TRACED) != 0)
  210. #define task_is_stopped(task) ((task->state & __TASK_STOPPED) != 0)
  211. #define task_is_stopped_or_traced(task) \
  212. ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0)
  213. #define task_contributes_to_load(task) \
  214. ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \
  215. (task->flags & PF_FROZEN) == 0 && \
  216. (task->state & TASK_NOLOAD) == 0)
  217. #ifdef CONFIG_DEBUG_ATOMIC_SLEEP
  218. #define __set_current_state(state_value) \
  219. do { \
  220. current->task_state_change = _THIS_IP_; \
  221. current->state = (state_value); \
  222. } while (0)
  223. #define set_current_state(state_value) \
  224. do { \
  225. current->task_state_change = _THIS_IP_; \
  226. smp_store_mb(current->state, (state_value)); \
  227. } while (0)
  228. #else
  229. /*
  230. * set_current_state() includes a barrier so that the write of current->state
  231. * is correctly serialised wrt the caller's subsequent test of whether to
  232. * actually sleep:
  233. *
  234. * for (;;) {
  235. * set_current_state(TASK_UNINTERRUPTIBLE);
  236. * if (!need_sleep)
  237. * break;
  238. *
  239. * schedule();
  240. * }
  241. * __set_current_state(TASK_RUNNING);
  242. *
  243. * If the caller does not need such serialisation (because, for instance, the
  244. * condition test and condition change and wakeup are under the same lock) then
  245. * use __set_current_state().
  246. *
  247. * The above is typically ordered against the wakeup, which does:
  248. *
  249. * need_sleep = false;
  250. * wake_up_state(p, TASK_UNINTERRUPTIBLE);
  251. *
  252. * Where wake_up_state() (and all other wakeup primitives) imply enough
  253. * barriers to order the store of the variable against wakeup.
  254. *
  255. * Wakeup will do: if (@state & p->state) p->state = TASK_RUNNING, that is,
  256. * once it observes the TASK_UNINTERRUPTIBLE store the waking CPU can issue a
  257. * TASK_RUNNING store which can collide with __set_current_state(TASK_RUNNING).
  258. *
  259. * This is obviously fine, since they both store the exact same value.
  260. *
  261. * Also see the comments of try_to_wake_up().
  262. */
  263. #define __set_current_state(state_value) \
  264. do { current->state = (state_value); } while (0)
  265. #define set_current_state(state_value) \
  266. smp_store_mb(current->state, (state_value))
  267. #endif
  268. /* Task command name length */
  269. #define TASK_COMM_LEN 16
  270. #include <linux/spinlock.h>
  271. /*
  272. * This serializes "schedule()" and also protects
  273. * the run-queue from deletions/modifications (but
  274. * _adding_ to the beginning of the run-queue has
  275. * a separate lock).
  276. */
  277. extern rwlock_t tasklist_lock;
  278. extern spinlock_t mmlist_lock;
  279. struct task_struct;
  280. #ifdef CONFIG_PROVE_RCU
  281. extern int lockdep_tasklist_lock_is_held(void);
  282. #endif /* #ifdef CONFIG_PROVE_RCU */
  283. extern void sched_init(void);
  284. extern void sched_init_smp(void);
  285. extern asmlinkage void schedule_tail(struct task_struct *prev);
  286. extern void init_idle(struct task_struct *idle, int cpu);
  287. extern void init_idle_bootup_task(struct task_struct *idle);
  288. extern cpumask_var_t cpu_isolated_map;
  289. extern int runqueue_is_locked(int cpu);
  290. #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
  291. extern void nohz_balance_enter_idle(int cpu);
  292. extern void set_cpu_sd_state_idle(void);
  293. extern int get_nohz_timer_target(void);
  294. #else
  295. static inline void nohz_balance_enter_idle(int cpu) { }
  296. static inline void set_cpu_sd_state_idle(void) { }
  297. #endif
  298. /*
  299. * Only dump TASK_* tasks. (0 for all tasks)
  300. */
  301. extern void show_state_filter(unsigned long state_filter);
  302. static inline void show_state(void)
  303. {
  304. show_state_filter(0);
  305. }
  306. extern void show_regs(struct pt_regs *);
  307. /*
  308. * TASK is a pointer to the task whose backtrace we want to see (or NULL for current
  309. * task), SP is the stack pointer of the first frame that should be shown in the back
  310. * trace (or NULL if the entire call-chain of the task should be shown).
  311. */
  312. extern void show_stack(struct task_struct *task, unsigned long *sp);
  313. extern void cpu_init (void);
  314. extern void trap_init(void);
  315. extern void update_process_times(int user);
  316. extern void scheduler_tick(void);
  317. extern int sched_cpu_starting(unsigned int cpu);
  318. extern int sched_cpu_activate(unsigned int cpu);
  319. extern int sched_cpu_deactivate(unsigned int cpu);
  320. #ifdef CONFIG_HOTPLUG_CPU
  321. extern int sched_cpu_dying(unsigned int cpu);
  322. #else
  323. # define sched_cpu_dying NULL
  324. #endif
  325. extern void sched_show_task(struct task_struct *p);
  326. #ifdef CONFIG_LOCKUP_DETECTOR
  327. extern void touch_softlockup_watchdog_sched(void);
  328. extern void touch_softlockup_watchdog(void);
  329. extern void touch_softlockup_watchdog_sync(void);
  330. extern void touch_all_softlockup_watchdogs(void);
  331. extern int proc_dowatchdog_thresh(struct ctl_table *table, int write,
  332. void __user *buffer,
  333. size_t *lenp, loff_t *ppos);
  334. extern unsigned int softlockup_panic;
  335. extern unsigned int hardlockup_panic;
  336. void lockup_detector_init(void);
  337. #else
  338. static inline void touch_softlockup_watchdog_sched(void)
  339. {
  340. }
  341. static inline void touch_softlockup_watchdog(void)
  342. {
  343. }
  344. static inline void touch_softlockup_watchdog_sync(void)
  345. {
  346. }
  347. static inline void touch_all_softlockup_watchdogs(void)
  348. {
  349. }
  350. static inline void lockup_detector_init(void)
  351. {
  352. }
  353. #endif
  354. #ifdef CONFIG_DETECT_HUNG_TASK
  355. void reset_hung_task_detector(void);
  356. #else
  357. static inline void reset_hung_task_detector(void)
  358. {
  359. }
  360. #endif
  361. /* Attach to any functions which should be ignored in wchan output. */
  362. #define __sched __attribute__((__section__(".sched.text")))
  363. /* Linker adds these: start and end of __sched functions */
  364. extern char __sched_text_start[], __sched_text_end[];
  365. /* Is this address in the __sched functions? */
  366. extern int in_sched_functions(unsigned long addr);
  367. #define MAX_SCHEDULE_TIMEOUT LONG_MAX
  368. extern signed long schedule_timeout(signed long timeout);
  369. extern signed long schedule_timeout_interruptible(signed long timeout);
  370. extern signed long schedule_timeout_killable(signed long timeout);
  371. extern signed long schedule_timeout_uninterruptible(signed long timeout);
  372. extern signed long schedule_timeout_idle(signed long timeout);
  373. asmlinkage void schedule(void);
  374. extern void schedule_preempt_disabled(void);
  375. extern int __must_check io_schedule_prepare(void);
  376. extern void io_schedule_finish(int token);
  377. extern long io_schedule_timeout(long timeout);
  378. extern void io_schedule(void);
  379. void __noreturn do_task_dead(void);
  380. struct nsproxy;
  381. struct user_namespace;
  382. #ifdef CONFIG_MMU
  383. extern void arch_pick_mmap_layout(struct mm_struct *mm);
  384. extern unsigned long
  385. arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
  386. unsigned long, unsigned long);
  387. extern unsigned long
  388. arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
  389. unsigned long len, unsigned long pgoff,
  390. unsigned long flags);
  391. #else
  392. static inline void arch_pick_mmap_layout(struct mm_struct *mm) {}
  393. #endif
  394. #define SUID_DUMP_DISABLE 0 /* No setuid dumping */
  395. #define SUID_DUMP_USER 1 /* Dump as user of process */
  396. #define SUID_DUMP_ROOT 2 /* Dump as root */
  397. /* mm flags */
  398. /* for SUID_DUMP_* above */
  399. #define MMF_DUMPABLE_BITS 2
  400. #define MMF_DUMPABLE_MASK ((1 << MMF_DUMPABLE_BITS) - 1)
  401. extern void set_dumpable(struct mm_struct *mm, int value);
  402. /*
  403. * This returns the actual value of the suid_dumpable flag. For things
  404. * that are using this for checking for privilege transitions, it must
  405. * test against SUID_DUMP_USER rather than treating it as a boolean
  406. * value.
  407. */
  408. static inline int __get_dumpable(unsigned long mm_flags)
  409. {
  410. return mm_flags & MMF_DUMPABLE_MASK;
  411. }
  412. static inline int get_dumpable(struct mm_struct *mm)
  413. {
  414. return __get_dumpable(mm->flags);
  415. }
  416. /* coredump filter bits */
  417. #define MMF_DUMP_ANON_PRIVATE 2
  418. #define MMF_DUMP_ANON_SHARED 3
  419. #define MMF_DUMP_MAPPED_PRIVATE 4
  420. #define MMF_DUMP_MAPPED_SHARED 5
  421. #define MMF_DUMP_ELF_HEADERS 6
  422. #define MMF_DUMP_HUGETLB_PRIVATE 7
  423. #define MMF_DUMP_HUGETLB_SHARED 8
  424. #define MMF_DUMP_DAX_PRIVATE 9
  425. #define MMF_DUMP_DAX_SHARED 10
  426. #define MMF_DUMP_FILTER_SHIFT MMF_DUMPABLE_BITS
  427. #define MMF_DUMP_FILTER_BITS 9
  428. #define MMF_DUMP_FILTER_MASK \
  429. (((1 << MMF_DUMP_FILTER_BITS) - 1) << MMF_DUMP_FILTER_SHIFT)
  430. #define MMF_DUMP_FILTER_DEFAULT \
  431. ((1 << MMF_DUMP_ANON_PRIVATE) | (1 << MMF_DUMP_ANON_SHARED) |\
  432. (1 << MMF_DUMP_HUGETLB_PRIVATE) | MMF_DUMP_MASK_DEFAULT_ELF)
  433. #ifdef CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS
  434. # define MMF_DUMP_MASK_DEFAULT_ELF (1 << MMF_DUMP_ELF_HEADERS)
  435. #else
  436. # define MMF_DUMP_MASK_DEFAULT_ELF 0
  437. #endif
  438. /* leave room for more dump flags */
  439. #define MMF_VM_MERGEABLE 16 /* KSM may merge identical pages */
  440. #define MMF_VM_HUGEPAGE 17 /* set when VM_HUGEPAGE is set on vma */
  441. /*
  442. * This one-shot flag is dropped due to necessity of changing exe once again
  443. * on NFS restore
  444. */
  445. //#define MMF_EXE_FILE_CHANGED 18 /* see prctl_set_mm_exe_file() */
  446. #define MMF_HAS_UPROBES 19 /* has uprobes */
  447. #define MMF_RECALC_UPROBES 20 /* MMF_HAS_UPROBES can be wrong */
  448. #define MMF_OOM_SKIP 21 /* mm is of no interest for the OOM killer */
  449. #define MMF_UNSTABLE 22 /* mm is unstable for copy_from_user */
  450. #define MMF_HUGE_ZERO_PAGE 23 /* mm has ever used the global huge zero page */
  451. #define MMF_INIT_MASK (MMF_DUMPABLE_MASK | MMF_DUMP_FILTER_MASK)
  452. struct sighand_struct {
  453. atomic_t count;
  454. struct k_sigaction action[_NSIG];
  455. spinlock_t siglock;
  456. wait_queue_head_t signalfd_wqh;
  457. };
  458. struct pacct_struct {
  459. int ac_flag;
  460. long ac_exitcode;
  461. unsigned long ac_mem;
  462. u64 ac_utime, ac_stime;
  463. unsigned long ac_minflt, ac_majflt;
  464. };
  465. struct cpu_itimer {
  466. u64 expires;
  467. u64 incr;
  468. };
  469. /**
  470. * struct prev_cputime - snaphsot of system and user cputime
  471. * @utime: time spent in user mode
  472. * @stime: time spent in system mode
  473. * @lock: protects the above two fields
  474. *
  475. * Stores previous user/system time values such that we can guarantee
  476. * monotonicity.
  477. */
  478. struct prev_cputime {
  479. #ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
  480. u64 utime;
  481. u64 stime;
  482. raw_spinlock_t lock;
  483. #endif
  484. };
  485. static inline void prev_cputime_init(struct prev_cputime *prev)
  486. {
  487. #ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
  488. prev->utime = prev->stime = 0;
  489. raw_spin_lock_init(&prev->lock);
  490. #endif
  491. }
  492. /**
  493. * struct task_cputime - collected CPU time counts
  494. * @utime: time spent in user mode, in nanoseconds
  495. * @stime: time spent in kernel mode, in nanoseconds
  496. * @sum_exec_runtime: total time spent on the CPU, in nanoseconds
  497. *
  498. * This structure groups together three kinds of CPU time that are tracked for
  499. * threads and thread groups. Most things considering CPU time want to group
  500. * these counts together and treat all three of them in parallel.
  501. */
  502. struct task_cputime {
  503. u64 utime;
  504. u64 stime;
  505. unsigned long long sum_exec_runtime;
  506. };
  507. /* Alternate field names when used to cache expirations. */
  508. #define virt_exp utime
  509. #define prof_exp stime
  510. #define sched_exp sum_exec_runtime
  511. /*
  512. * This is the atomic variant of task_cputime, which can be used for
  513. * storing and updating task_cputime statistics without locking.
  514. */
  515. struct task_cputime_atomic {
  516. atomic64_t utime;
  517. atomic64_t stime;
  518. atomic64_t sum_exec_runtime;
  519. };
  520. #define INIT_CPUTIME_ATOMIC \
  521. (struct task_cputime_atomic) { \
  522. .utime = ATOMIC64_INIT(0), \
  523. .stime = ATOMIC64_INIT(0), \
  524. .sum_exec_runtime = ATOMIC64_INIT(0), \
  525. }
  526. #define PREEMPT_DISABLED (PREEMPT_DISABLE_OFFSET + PREEMPT_ENABLED)
  527. /*
  528. * Disable preemption until the scheduler is running -- use an unconditional
  529. * value so that it also works on !PREEMPT_COUNT kernels.
  530. *
  531. * Reset by start_kernel()->sched_init()->init_idle()->init_idle_preempt_count().
  532. */
  533. #define INIT_PREEMPT_COUNT PREEMPT_OFFSET
  534. /*
  535. * Initial preempt_count value; reflects the preempt_count schedule invariant
  536. * which states that during context switches:
  537. *
  538. * preempt_count() == 2*PREEMPT_DISABLE_OFFSET
  539. *
  540. * Note: PREEMPT_DISABLE_OFFSET is 0 for !PREEMPT_COUNT kernels.
  541. * Note: See finish_task_switch().
  542. */
  543. #define FORK_PREEMPT_COUNT (2*PREEMPT_DISABLE_OFFSET + PREEMPT_ENABLED)
  544. /**
  545. * struct thread_group_cputimer - thread group interval timer counts
  546. * @cputime_atomic: atomic thread group interval timers.
  547. * @running: true when there are timers running and
  548. * @cputime_atomic receives updates.
  549. * @checking_timer: true when a thread in the group is in the
  550. * process of checking for thread group timers.
  551. *
  552. * This structure contains the version of task_cputime, above, that is
  553. * used for thread group CPU timer calculations.
  554. */
  555. struct thread_group_cputimer {
  556. struct task_cputime_atomic cputime_atomic;
  557. bool running;
  558. bool checking_timer;
  559. };
  560. #include <linux/rwsem.h>
  561. struct autogroup;
  562. /*
  563. * NOTE! "signal_struct" does not have its own
  564. * locking, because a shared signal_struct always
  565. * implies a shared sighand_struct, so locking
  566. * sighand_struct is always a proper superset of
  567. * the locking of signal_struct.
  568. */
  569. struct signal_struct {
  570. atomic_t sigcnt;
  571. atomic_t live;
  572. int nr_threads;
  573. struct list_head thread_head;
  574. wait_queue_head_t wait_chldexit; /* for wait4() */
  575. /* current thread group signal load-balancing target: */
  576. struct task_struct *curr_target;
  577. /* shared signal handling: */
  578. struct sigpending shared_pending;
  579. /* thread group exit support */
  580. int group_exit_code;
  581. /* overloaded:
  582. * - notify group_exit_task when ->count is equal to notify_count
  583. * - everyone except group_exit_task is stopped during signal delivery
  584. * of fatal signals, group_exit_task processes the signal.
  585. */
  586. int notify_count;
  587. struct task_struct *group_exit_task;
  588. /* thread group stop support, overloads group_exit_code too */
  589. int group_stop_count;
  590. unsigned int flags; /* see SIGNAL_* flags below */
  591. /*
  592. * PR_SET_CHILD_SUBREAPER marks a process, like a service
  593. * manager, to re-parent orphan (double-forking) child processes
  594. * to this process instead of 'init'. The service manager is
  595. * able to receive SIGCHLD signals and is able to investigate
  596. * the process until it calls wait(). All children of this
  597. * process will inherit a flag if they should look for a
  598. * child_subreaper process at exit.
  599. */
  600. unsigned int is_child_subreaper:1;
  601. unsigned int has_child_subreaper:1;
  602. #ifdef CONFIG_POSIX_TIMERS
  603. /* POSIX.1b Interval Timers */
  604. int posix_timer_id;
  605. struct list_head posix_timers;
  606. /* ITIMER_REAL timer for the process */
  607. struct hrtimer real_timer;
  608. ktime_t it_real_incr;
  609. /*
  610. * ITIMER_PROF and ITIMER_VIRTUAL timers for the process, we use
  611. * CPUCLOCK_PROF and CPUCLOCK_VIRT for indexing array as these
  612. * values are defined to 0 and 1 respectively
  613. */
  614. struct cpu_itimer it[2];
  615. /*
  616. * Thread group totals for process CPU timers.
  617. * See thread_group_cputimer(), et al, for details.
  618. */
  619. struct thread_group_cputimer cputimer;
  620. /* Earliest-expiration cache. */
  621. struct task_cputime cputime_expires;
  622. struct list_head cpu_timers[3];
  623. #endif
  624. struct pid *leader_pid;
  625. #ifdef CONFIG_NO_HZ_FULL
  626. atomic_t tick_dep_mask;
  627. #endif
  628. struct pid *tty_old_pgrp;
  629. /* boolean value for session group leader */
  630. int leader;
  631. struct tty_struct *tty; /* NULL if no tty */
  632. #ifdef CONFIG_SCHED_AUTOGROUP
  633. struct autogroup *autogroup;
  634. #endif
  635. /*
  636. * Cumulative resource counters for dead threads in the group,
  637. * and for reaped dead child processes forked by this group.
  638. * Live threads maintain their own counters and add to these
  639. * in __exit_signal, except for the group leader.
  640. */
  641. seqlock_t stats_lock;
  642. u64 utime, stime, cutime, cstime;
  643. u64 gtime;
  644. u64 cgtime;
  645. struct prev_cputime prev_cputime;
  646. unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw;
  647. unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
  648. unsigned long inblock, oublock, cinblock, coublock;
  649. unsigned long maxrss, cmaxrss;
  650. struct task_io_accounting ioac;
  651. /*
  652. * Cumulative ns of schedule CPU time fo dead threads in the
  653. * group, not including a zombie group leader, (This only differs
  654. * from jiffies_to_ns(utime + stime) if sched_clock uses something
  655. * other than jiffies.)
  656. */
  657. unsigned long long sum_sched_runtime;
  658. /*
  659. * We don't bother to synchronize most readers of this at all,
  660. * because there is no reader checking a limit that actually needs
  661. * to get both rlim_cur and rlim_max atomically, and either one
  662. * alone is a single word that can safely be read normally.
  663. * getrlimit/setrlimit use task_lock(current->group_leader) to
  664. * protect this instead of the siglock, because they really
  665. * have no need to disable irqs.
  666. */
  667. struct rlimit rlim[RLIM_NLIMITS];
  668. #ifdef CONFIG_BSD_PROCESS_ACCT
  669. struct pacct_struct pacct; /* per-process accounting information */
  670. #endif
  671. #ifdef CONFIG_TASKSTATS
  672. struct taskstats *stats;
  673. #endif
  674. #ifdef CONFIG_AUDIT
  675. unsigned audit_tty;
  676. struct tty_audit_buf *tty_audit_buf;
  677. #endif
  678. /*
  679. * Thread is the potential origin of an oom condition; kill first on
  680. * oom
  681. */
  682. bool oom_flag_origin;
  683. short oom_score_adj; /* OOM kill score adjustment */
  684. short oom_score_adj_min; /* OOM kill score adjustment min value.
  685. * Only settable by CAP_SYS_RESOURCE. */
  686. struct mm_struct *oom_mm; /* recorded mm when the thread group got
  687. * killed by the oom killer */
  688. struct mutex cred_guard_mutex; /* guard against foreign influences on
  689. * credential calculations
  690. * (notably. ptrace) */
  691. };
  692. /*
  693. * Bits in flags field of signal_struct.
  694. */
  695. #define SIGNAL_STOP_STOPPED 0x00000001 /* job control stop in effect */
  696. #define SIGNAL_STOP_CONTINUED 0x00000002 /* SIGCONT since WCONTINUED reap */
  697. #define SIGNAL_GROUP_EXIT 0x00000004 /* group exit in progress */
  698. #define SIGNAL_GROUP_COREDUMP 0x00000008 /* coredump in progress */
  699. /*
  700. * Pending notifications to parent.
  701. */
  702. #define SIGNAL_CLD_STOPPED 0x00000010
  703. #define SIGNAL_CLD_CONTINUED 0x00000020
  704. #define SIGNAL_CLD_MASK (SIGNAL_CLD_STOPPED|SIGNAL_CLD_CONTINUED)
  705. #define SIGNAL_UNKILLABLE 0x00000040 /* for init: ignore fatal signals */
  706. #define SIGNAL_STOP_MASK (SIGNAL_CLD_MASK | SIGNAL_STOP_STOPPED | \
  707. SIGNAL_STOP_CONTINUED)
  708. static inline void signal_set_stop_flags(struct signal_struct *sig,
  709. unsigned int flags)
  710. {
  711. WARN_ON(sig->flags & (SIGNAL_GROUP_EXIT|SIGNAL_GROUP_COREDUMP));
  712. sig->flags = (sig->flags & ~SIGNAL_STOP_MASK) | flags;
  713. }
  714. /* If true, all threads except ->group_exit_task have pending SIGKILL */
  715. static inline int signal_group_exit(const struct signal_struct *sig)
  716. {
  717. return (sig->flags & SIGNAL_GROUP_EXIT) ||
  718. (sig->group_exit_task != NULL);
  719. }
  720. /*
  721. * Some day this will be a full-fledged user tracking system..
  722. */
  723. struct user_struct {
  724. atomic_t __count; /* reference count */
  725. atomic_t processes; /* How many processes does this user have? */
  726. atomic_t sigpending; /* How many pending signals does this user have? */
  727. #ifdef CONFIG_FANOTIFY
  728. atomic_t fanotify_listeners;
  729. #endif
  730. #ifdef CONFIG_EPOLL
  731. atomic_long_t epoll_watches; /* The number of file descriptors currently watched */
  732. #endif
  733. #ifdef CONFIG_POSIX_MQUEUE
  734. /* protected by mq_lock */
  735. unsigned long mq_bytes; /* How many bytes can be allocated to mqueue? */
  736. #endif
  737. unsigned long locked_shm; /* How many pages of mlocked shm ? */
  738. unsigned long unix_inflight; /* How many files in flight in unix sockets */
  739. atomic_long_t pipe_bufs; /* how many pages are allocated in pipe buffers */
  740. #ifdef CONFIG_KEYS
  741. struct key *uid_keyring; /* UID specific keyring */
  742. struct key *session_keyring; /* UID's default session keyring */
  743. #endif
  744. /* Hash table maintenance information */
  745. struct hlist_node uidhash_node;
  746. kuid_t uid;
  747. #if defined(CONFIG_PERF_EVENTS) || defined(CONFIG_BPF_SYSCALL)
  748. atomic_long_t locked_vm;
  749. #endif
  750. };
  751. extern int uids_sysfs_init(void);
  752. extern struct user_struct *find_user(kuid_t);
  753. extern struct user_struct root_user;
  754. #define INIT_USER (&root_user)
  755. struct backing_dev_info;
  756. struct reclaim_state;
  757. #ifdef CONFIG_SCHED_INFO
  758. struct sched_info {
  759. /* cumulative counters */
  760. unsigned long pcount; /* # of times run on this cpu */
  761. unsigned long long run_delay; /* time spent waiting on a runqueue */
  762. /* timestamps */
  763. unsigned long long last_arrival,/* when we last ran on a cpu */
  764. last_queued; /* when we were last queued to run */
  765. };
  766. #endif /* CONFIG_SCHED_INFO */
  767. #ifdef CONFIG_TASK_DELAY_ACCT
  768. struct task_delay_info {
  769. spinlock_t lock;
  770. unsigned int flags; /* Private per-task flags */
  771. /* For each stat XXX, add following, aligned appropriately
  772. *
  773. * struct timespec XXX_start, XXX_end;
  774. * u64 XXX_delay;
  775. * u32 XXX_count;
  776. *
  777. * Atomicity of updates to XXX_delay, XXX_count protected by
  778. * single lock above (split into XXX_lock if contention is an issue).
  779. */
  780. /*
  781. * XXX_count is incremented on every XXX operation, the delay
  782. * associated with the operation is added to XXX_delay.
  783. * XXX_delay contains the accumulated delay time in nanoseconds.
  784. */
  785. u64 blkio_start; /* Shared by blkio, swapin */
  786. u64 blkio_delay; /* wait for sync block io completion */
  787. u64 swapin_delay; /* wait for swapin block io completion */
  788. u32 blkio_count; /* total count of the number of sync block */
  789. /* io operations performed */
  790. u32 swapin_count; /* total count of the number of swapin block */
  791. /* io operations performed */
  792. u64 freepages_start;
  793. u64 freepages_delay; /* wait for memory reclaim */
  794. u32 freepages_count; /* total count of memory reclaim */
  795. };
  796. #endif /* CONFIG_TASK_DELAY_ACCT */
  797. static inline int sched_info_on(void)
  798. {
  799. #ifdef CONFIG_SCHEDSTATS
  800. return 1;
  801. #elif defined(CONFIG_TASK_DELAY_ACCT)
  802. extern int delayacct_on;
  803. return delayacct_on;
  804. #else
  805. return 0;
  806. #endif
  807. }
  808. #ifdef CONFIG_SCHEDSTATS
  809. void force_schedstat_enabled(void);
  810. #endif
  811. /*
  812. * Integer metrics need fixed point arithmetic, e.g., sched/fair
  813. * has a few: load, load_avg, util_avg, freq, and capacity.
  814. *
  815. * We define a basic fixed point arithmetic range, and then formalize
  816. * all these metrics based on that basic range.
  817. */
  818. # define SCHED_FIXEDPOINT_SHIFT 10
  819. # define SCHED_FIXEDPOINT_SCALE (1L << SCHED_FIXEDPOINT_SHIFT)
  820. struct io_context; /* See blkdev.h */
  821. #ifdef ARCH_HAS_PREFETCH_SWITCH_STACK
  822. extern void prefetch_stack(struct task_struct *t);
  823. #else
  824. static inline void prefetch_stack(struct task_struct *t) { }
  825. #endif
  826. struct audit_context; /* See audit.c */
  827. struct mempolicy;
  828. struct pipe_inode_info;
  829. struct uts_namespace;
  830. struct load_weight {
  831. unsigned long weight;
  832. u32 inv_weight;
  833. };
  834. /*
  835. * The load_avg/util_avg accumulates an infinite geometric series
  836. * (see __update_load_avg() in kernel/sched/fair.c).
  837. *
  838. * [load_avg definition]
  839. *
  840. * load_avg = runnable% * scale_load_down(load)
  841. *
  842. * where runnable% is the time ratio that a sched_entity is runnable.
  843. * For cfs_rq, it is the aggregated load_avg of all runnable and
  844. * blocked sched_entities.
  845. *
  846. * load_avg may also take frequency scaling into account:
  847. *
  848. * load_avg = runnable% * scale_load_down(load) * freq%
  849. *
  850. * where freq% is the CPU frequency normalized to the highest frequency.
  851. *
  852. * [util_avg definition]
  853. *
  854. * util_avg = running% * SCHED_CAPACITY_SCALE
  855. *
  856. * where running% is the time ratio that a sched_entity is running on
  857. * a CPU. For cfs_rq, it is the aggregated util_avg of all runnable
  858. * and blocked sched_entities.
  859. *
  860. * util_avg may also factor frequency scaling and CPU capacity scaling:
  861. *
  862. * util_avg = running% * SCHED_CAPACITY_SCALE * freq% * capacity%
  863. *
  864. * where freq% is the same as above, and capacity% is the CPU capacity
  865. * normalized to the greatest capacity (due to uarch differences, etc).
  866. *
  867. * N.B., the above ratios (runnable%, running%, freq%, and capacity%)
  868. * themselves are in the range of [0, 1]. To do fixed point arithmetics,
  869. * we therefore scale them to as large a range as necessary. This is for
  870. * example reflected by util_avg's SCHED_CAPACITY_SCALE.
  871. *
  872. * [Overflow issue]
  873. *
  874. * The 64-bit load_sum can have 4353082796 (=2^64/47742/88761) entities
  875. * with the highest load (=88761), always runnable on a single cfs_rq,
  876. * and should not overflow as the number already hits PID_MAX_LIMIT.
  877. *
  878. * For all other cases (including 32-bit kernels), struct load_weight's
  879. * weight will overflow first before we do, because:
  880. *
  881. * Max(load_avg) <= Max(load.weight)
  882. *
  883. * Then it is the load_weight's responsibility to consider overflow
  884. * issues.
  885. */
  886. struct sched_avg {
  887. u64 last_update_time, load_sum;
  888. u32 util_sum, period_contrib;
  889. unsigned long load_avg, util_avg;
  890. };
  891. #ifdef CONFIG_SCHEDSTATS
  892. struct sched_statistics {
  893. u64 wait_start;
  894. u64 wait_max;
  895. u64 wait_count;
  896. u64 wait_sum;
  897. u64 iowait_count;
  898. u64 iowait_sum;
  899. u64 sleep_start;
  900. u64 sleep_max;
  901. s64 sum_sleep_runtime;
  902. u64 block_start;
  903. u64 block_max;
  904. u64 exec_max;
  905. u64 slice_max;
  906. u64 nr_migrations_cold;
  907. u64 nr_failed_migrations_affine;
  908. u64 nr_failed_migrations_running;
  909. u64 nr_failed_migrations_hot;
  910. u64 nr_forced_migrations;
  911. u64 nr_wakeups;
  912. u64 nr_wakeups_sync;
  913. u64 nr_wakeups_migrate;
  914. u64 nr_wakeups_local;
  915. u64 nr_wakeups_remote;
  916. u64 nr_wakeups_affine;
  917. u64 nr_wakeups_affine_attempts;
  918. u64 nr_wakeups_passive;
  919. u64 nr_wakeups_idle;
  920. };
  921. #endif
  922. struct sched_entity {
  923. struct load_weight load; /* for load-balancing */
  924. struct rb_node run_node;
  925. struct list_head group_node;
  926. unsigned int on_rq;
  927. u64 exec_start;
  928. u64 sum_exec_runtime;
  929. u64 vruntime;
  930. u64 prev_sum_exec_runtime;
  931. u64 nr_migrations;
  932. #ifdef CONFIG_SCHEDSTATS
  933. struct sched_statistics statistics;
  934. #endif
  935. #ifdef CONFIG_FAIR_GROUP_SCHED
  936. int depth;
  937. struct sched_entity *parent;
  938. /* rq on which this entity is (to be) queued: */
  939. struct cfs_rq *cfs_rq;
  940. /* rq "owned" by this entity/group: */
  941. struct cfs_rq *my_q;
  942. #endif
  943. #ifdef CONFIG_SMP
  944. /*
  945. * Per entity load average tracking.
  946. *
  947. * Put into separate cache line so it does not
  948. * collide with read-mostly values above.
  949. */
  950. struct sched_avg avg ____cacheline_aligned_in_smp;
  951. #endif
  952. };
  953. struct sched_rt_entity {
  954. struct list_head run_list;
  955. unsigned long timeout;
  956. unsigned long watchdog_stamp;
  957. unsigned int time_slice;
  958. unsigned short on_rq;
  959. unsigned short on_list;
  960. struct sched_rt_entity *back;
  961. #ifdef CONFIG_RT_GROUP_SCHED
  962. struct sched_rt_entity *parent;
  963. /* rq on which this entity is (to be) queued: */
  964. struct rt_rq *rt_rq;
  965. /* rq "owned" by this entity/group: */
  966. struct rt_rq *my_q;
  967. #endif
  968. };
  969. struct sched_dl_entity {
  970. struct rb_node rb_node;
  971. /*
  972. * Original scheduling parameters. Copied here from sched_attr
  973. * during sched_setattr(), they will remain the same until
  974. * the next sched_setattr().
  975. */
  976. u64 dl_runtime; /* maximum runtime for each instance */
  977. u64 dl_deadline; /* relative deadline of each instance */
  978. u64 dl_period; /* separation of two instances (period) */
  979. u64 dl_bw; /* dl_runtime / dl_deadline */
  980. /*
  981. * Actual scheduling parameters. Initialized with the values above,
  982. * they are continously updated during task execution. Note that
  983. * the remaining runtime could be < 0 in case we are in overrun.
  984. */
  985. s64 runtime; /* remaining runtime for this instance */
  986. u64 deadline; /* absolute deadline for this instance */
  987. unsigned int flags; /* specifying the scheduler behaviour */
  988. /*
  989. * Some bool flags:
  990. *
  991. * @dl_throttled tells if we exhausted the runtime. If so, the
  992. * task has to wait for a replenishment to be performed at the
  993. * next firing of dl_timer.
  994. *
  995. * @dl_boosted tells if we are boosted due to DI. If so we are
  996. * outside bandwidth enforcement mechanism (but only until we
  997. * exit the critical section);
  998. *
  999. * @dl_yielded tells if task gave up the cpu before consuming
  1000. * all its available runtime during the last job.
  1001. */
  1002. int dl_throttled, dl_boosted, dl_yielded;
  1003. /*
  1004. * Bandwidth enforcement timer. Each -deadline task has its
  1005. * own bandwidth to be enforced, thus we need one timer per task.
  1006. */
  1007. struct hrtimer dl_timer;
  1008. };
  1009. union rcu_special {
  1010. struct {
  1011. u8 blocked;
  1012. u8 need_qs;
  1013. u8 exp_need_qs;
  1014. u8 pad; /* Otherwise the compiler can store garbage here. */
  1015. } b; /* Bits. */
  1016. u32 s; /* Set of bits. */
  1017. };
  1018. struct rcu_node;
  1019. enum perf_event_task_context {
  1020. perf_invalid_context = -1,
  1021. perf_hw_context = 0,
  1022. perf_sw_context,
  1023. perf_nr_task_contexts,
  1024. };
  1025. struct wake_q_node {
  1026. struct wake_q_node *next;
  1027. };
  1028. /* Track pages that require TLB flushes */
  1029. struct tlbflush_unmap_batch {
  1030. /*
  1031. * Each bit set is a CPU that potentially has a TLB entry for one of
  1032. * the PFNs being flushed. See set_tlb_ubc_flush_pending().
  1033. */
  1034. struct cpumask cpumask;
  1035. /* True if any bit in cpumask is set */
  1036. bool flush_required;
  1037. /*
  1038. * If true then the PTE was dirty when unmapped. The entry must be
  1039. * flushed before IO is initiated or a stale TLB entry potentially
  1040. * allows an update without redirtying the page.
  1041. */
  1042. bool writable;
  1043. };
  1044. struct task_struct {
  1045. #ifdef CONFIG_THREAD_INFO_IN_TASK
  1046. /*
  1047. * For reasons of header soup (see current_thread_info()), this
  1048. * must be the first element of task_struct.
  1049. */
  1050. struct thread_info thread_info;
  1051. #endif
  1052. volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped */
  1053. void *stack;
  1054. atomic_t usage;
  1055. unsigned int flags; /* per process flags, defined below */
  1056. unsigned int ptrace;
  1057. #ifdef CONFIG_SMP
  1058. struct llist_node wake_entry;
  1059. int on_cpu;
  1060. #ifdef CONFIG_THREAD_INFO_IN_TASK
  1061. unsigned int cpu; /* current CPU */
  1062. #endif
  1063. unsigned int wakee_flips;
  1064. unsigned long wakee_flip_decay_ts;
  1065. struct task_struct *last_wakee;
  1066. int wake_cpu;
  1067. #endif
  1068. int on_rq;
  1069. int prio, static_prio, normal_prio;
  1070. unsigned int rt_priority;
  1071. const struct sched_class *sched_class;
  1072. struct sched_entity se;
  1073. struct sched_rt_entity rt;
  1074. #ifdef CONFIG_CGROUP_SCHED
  1075. struct task_group *sched_task_group;
  1076. #endif
  1077. struct sched_dl_entity dl;
  1078. #ifdef CONFIG_PREEMPT_NOTIFIERS
  1079. /* list of struct preempt_notifier: */
  1080. struct hlist_head preempt_notifiers;
  1081. #endif
  1082. #ifdef CONFIG_BLK_DEV_IO_TRACE
  1083. unsigned int btrace_seq;
  1084. #endif
  1085. unsigned int policy;
  1086. int nr_cpus_allowed;
  1087. cpumask_t cpus_allowed;
  1088. #ifdef CONFIG_PREEMPT_RCU
  1089. int rcu_read_lock_nesting;
  1090. union rcu_special rcu_read_unlock_special;
  1091. struct list_head rcu_node_entry;
  1092. struct rcu_node *rcu_blocked_node;
  1093. #endif /* #ifdef CONFIG_PREEMPT_RCU */
  1094. #ifdef CONFIG_TASKS_RCU
  1095. unsigned long rcu_tasks_nvcsw;
  1096. bool rcu_tasks_holdout;
  1097. struct list_head rcu_tasks_holdout_list;
  1098. int rcu_tasks_idle_cpu;
  1099. #endif /* #ifdef CONFIG_TASKS_RCU */
  1100. #ifdef CONFIG_SCHED_INFO
  1101. struct sched_info sched_info;
  1102. #endif
  1103. struct list_head tasks;
  1104. #ifdef CONFIG_SMP
  1105. struct plist_node pushable_tasks;
  1106. struct rb_node pushable_dl_tasks;
  1107. #endif
  1108. struct mm_struct *mm, *active_mm;
  1109. /* Per-thread vma caching: */
  1110. struct vmacache vmacache;
  1111. #if defined(SPLIT_RSS_COUNTING)
  1112. struct task_rss_stat rss_stat;
  1113. #endif
  1114. /* task state */
  1115. int exit_state;
  1116. int exit_code, exit_signal;
  1117. int pdeath_signal; /* The signal sent when the parent dies */
  1118. unsigned long jobctl; /* JOBCTL_*, siglock protected */
  1119. /* Used for emulating ABI behavior of previous Linux versions */
  1120. unsigned int personality;
  1121. /* scheduler bits, serialized by scheduler locks */
  1122. unsigned sched_reset_on_fork:1;
  1123. unsigned sched_contributes_to_load:1;
  1124. unsigned sched_migrated:1;
  1125. unsigned sched_remote_wakeup:1;
  1126. unsigned :0; /* force alignment to the next boundary */
  1127. /* unserialized, strictly 'current' */
  1128. unsigned in_execve:1; /* bit to tell LSMs we're in execve */
  1129. unsigned in_iowait:1;
  1130. #if !defined(TIF_RESTORE_SIGMASK)
  1131. unsigned restore_sigmask:1;
  1132. #endif
  1133. #ifdef CONFIG_MEMCG
  1134. unsigned memcg_may_oom:1;
  1135. #ifndef CONFIG_SLOB
  1136. unsigned memcg_kmem_skip_account:1;
  1137. #endif
  1138. #endif
  1139. #ifdef CONFIG_COMPAT_BRK
  1140. unsigned brk_randomized:1;
  1141. #endif
  1142. unsigned long atomic_flags; /* Flags needing atomic access. */
  1143. struct restart_block restart_block;
  1144. pid_t pid;
  1145. pid_t tgid;
  1146. #ifdef CONFIG_CC_STACKPROTECTOR
  1147. /* Canary value for the -fstack-protector gcc feature */
  1148. unsigned long stack_canary;
  1149. #endif
  1150. /*
  1151. * pointers to (original) parent process, youngest child, younger sibling,
  1152. * older sibling, respectively. (p->father can be replaced with
  1153. * p->real_parent->pid)
  1154. */
  1155. struct task_struct __rcu *real_parent; /* real parent process */
  1156. struct task_struct __rcu *parent; /* recipient of SIGCHLD, wait4() reports */
  1157. /*
  1158. * children/sibling forms the list of my natural children
  1159. */
  1160. struct list_head children; /* list of my children */
  1161. struct list_head sibling; /* linkage in my parent's children list */
  1162. struct task_struct *group_leader; /* threadgroup leader */
  1163. /*
  1164. * ptraced is the list of tasks this task is using ptrace on.
  1165. * This includes both natural children and PTRACE_ATTACH targets.
  1166. * p->ptrace_entry is p's link on the p->parent->ptraced list.
  1167. */
  1168. struct list_head ptraced;
  1169. struct list_head ptrace_entry;
  1170. /* PID/PID hash table linkage. */
  1171. struct pid_link pids[PIDTYPE_MAX];
  1172. struct list_head thread_group;
  1173. struct list_head thread_node;
  1174. struct completion *vfork_done; /* for vfork() */
  1175. int __user *set_child_tid; /* CLONE_CHILD_SETTID */
  1176. int __user *clear_child_tid; /* CLONE_CHILD_CLEARTID */
  1177. u64 utime, stime;
  1178. #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
  1179. u64 utimescaled, stimescaled;
  1180. #endif
  1181. u64 gtime;
  1182. struct prev_cputime prev_cputime;
  1183. #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
  1184. seqcount_t vtime_seqcount;
  1185. unsigned long long vtime_snap;
  1186. enum {
  1187. /* Task is sleeping or running in a CPU with VTIME inactive */
  1188. VTIME_INACTIVE = 0,
  1189. /* Task runs in userspace in a CPU with VTIME active */
  1190. VTIME_USER,
  1191. /* Task runs in kernelspace in a CPU with VTIME active */
  1192. VTIME_SYS,
  1193. } vtime_snap_whence;
  1194. #endif
  1195. #ifdef CONFIG_NO_HZ_FULL
  1196. atomic_t tick_dep_mask;
  1197. #endif
  1198. unsigned long nvcsw, nivcsw; /* context switch counts */
  1199. u64 start_time; /* monotonic time in nsec */
  1200. u64 real_start_time; /* boot based time in nsec */
  1201. /* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
  1202. unsigned long min_flt, maj_flt;
  1203. #ifdef CONFIG_POSIX_TIMERS
  1204. struct task_cputime cputime_expires;
  1205. struct list_head cpu_timers[3];
  1206. #endif
  1207. /* process credentials */
  1208. const struct cred __rcu *ptracer_cred; /* Tracer's credentials at attach */
  1209. const struct cred __rcu *real_cred; /* objective and real subjective task
  1210. * credentials (COW) */
  1211. const struct cred __rcu *cred; /* effective (overridable) subjective task
  1212. * credentials (COW) */
  1213. char comm[TASK_COMM_LEN]; /* executable name excluding path
  1214. - access with [gs]et_task_comm (which lock
  1215. it with task_lock())
  1216. - initialized normally by setup_new_exec */
  1217. /* file system info */
  1218. struct nameidata *nameidata;
  1219. #ifdef CONFIG_SYSVIPC
  1220. /* ipc stuff */
  1221. struct sysv_sem sysvsem;
  1222. struct sysv_shm sysvshm;
  1223. #endif
  1224. #ifdef CONFIG_DETECT_HUNG_TASK
  1225. /* hung task detection */
  1226. unsigned long last_switch_count;
  1227. #endif
  1228. /* filesystem information */
  1229. struct fs_struct *fs;
  1230. /* open file information */
  1231. struct files_struct *files;
  1232. /* namespaces */
  1233. struct nsproxy *nsproxy;
  1234. /* signal handlers */
  1235. struct signal_struct *signal;
  1236. struct sighand_struct *sighand;
  1237. sigset_t blocked, real_blocked;
  1238. sigset_t saved_sigmask; /* restored if set_restore_sigmask() was used */
  1239. struct sigpending pending;
  1240. unsigned long sas_ss_sp;
  1241. size_t sas_ss_size;
  1242. unsigned sas_ss_flags;
  1243. struct callback_head *task_works;
  1244. struct audit_context *audit_context;
  1245. #ifdef CONFIG_AUDITSYSCALL
  1246. kuid_t loginuid;
  1247. unsigned int sessionid;
  1248. #endif
  1249. struct seccomp seccomp;
  1250. /* Thread group tracking */
  1251. u32 parent_exec_id;
  1252. u32 self_exec_id;
  1253. /* Protection of (de-)allocation: mm, files, fs, tty, keyrings, mems_allowed,
  1254. * mempolicy */
  1255. spinlock_t alloc_lock;
  1256. /* Protection of the PI data structures: */
  1257. raw_spinlock_t pi_lock;
  1258. struct wake_q_node wake_q;
  1259. #ifdef CONFIG_RT_MUTEXES
  1260. /* PI waiters blocked on a rt_mutex held by this task */
  1261. struct rb_root pi_waiters;
  1262. struct rb_node *pi_waiters_leftmost;
  1263. /* Deadlock detection and priority inheritance handling */
  1264. struct rt_mutex_waiter *pi_blocked_on;
  1265. #endif
  1266. #ifdef CONFIG_DEBUG_MUTEXES
  1267. /* mutex deadlock detection */
  1268. struct mutex_waiter *blocked_on;
  1269. #endif
  1270. #ifdef CONFIG_TRACE_IRQFLAGS
  1271. unsigned int irq_events;
  1272. unsigned long hardirq_enable_ip;
  1273. unsigned long hardirq_disable_ip;
  1274. unsigned int hardirq_enable_event;
  1275. unsigned int hardirq_disable_event;
  1276. int hardirqs_enabled;
  1277. int hardirq_context;
  1278. unsigned long softirq_disable_ip;
  1279. unsigned long softirq_enable_ip;
  1280. unsigned int softirq_disable_event;
  1281. unsigned int softirq_enable_event;
  1282. int softirqs_enabled;
  1283. int softirq_context;
  1284. #endif
  1285. #ifdef CONFIG_LOCKDEP
  1286. # define MAX_LOCK_DEPTH 48UL
  1287. u64 curr_chain_key;
  1288. int lockdep_depth;
  1289. unsigned int lockdep_recursion;
  1290. struct held_lock held_locks[MAX_LOCK_DEPTH];
  1291. gfp_t lockdep_reclaim_gfp;
  1292. #endif
  1293. #ifdef CONFIG_UBSAN
  1294. unsigned int in_ubsan;
  1295. #endif
  1296. /* journalling filesystem info */
  1297. void *journal_info;
  1298. /* stacked block device info */
  1299. struct bio_list *bio_list;
  1300. #ifdef CONFIG_BLOCK
  1301. /* stack plugging */
  1302. struct blk_plug *plug;
  1303. #endif
  1304. /* VM state */
  1305. struct reclaim_state *reclaim_state;
  1306. struct backing_dev_info *backing_dev_info;
  1307. struct io_context *io_context;
  1308. unsigned long ptrace_message;
  1309. siginfo_t *last_siginfo; /* For ptrace use. */
  1310. struct task_io_accounting ioac;
  1311. #if defined(CONFIG_TASK_XACCT)
  1312. u64 acct_rss_mem1; /* accumulated rss usage */
  1313. u64 acct_vm_mem1; /* accumulated virtual memory usage */
  1314. u64 acct_timexpd; /* stime + utime since last update */
  1315. #endif
  1316. #ifdef CONFIG_CPUSETS
  1317. nodemask_t mems_allowed; /* Protected by alloc_lock */
  1318. seqcount_t mems_allowed_seq; /* Seqence no to catch updates */
  1319. int cpuset_mem_spread_rotor;
  1320. int cpuset_slab_spread_rotor;
  1321. #endif
  1322. #ifdef CONFIG_CGROUPS
  1323. /* Control Group info protected by css_set_lock */
  1324. struct css_set __rcu *cgroups;
  1325. /* cg_list protected by css_set_lock and tsk->alloc_lock */
  1326. struct list_head cg_list;
  1327. #endif
  1328. #ifdef CONFIG_INTEL_RDT_A
  1329. int closid;
  1330. #endif
  1331. #ifdef CONFIG_FUTEX
  1332. struct robust_list_head __user *robust_list;
  1333. #ifdef CONFIG_COMPAT
  1334. struct compat_robust_list_head __user *compat_robust_list;
  1335. #endif
  1336. struct list_head pi_state_list;
  1337. struct futex_pi_state *pi_state_cache;
  1338. #endif
  1339. #ifdef CONFIG_PERF_EVENTS
  1340. struct perf_event_context *perf_event_ctxp[perf_nr_task_contexts];
  1341. struct mutex perf_event_mutex;
  1342. struct list_head perf_event_list;
  1343. #endif
  1344. #ifdef CONFIG_DEBUG_PREEMPT
  1345. unsigned long preempt_disable_ip;
  1346. #endif
  1347. #ifdef CONFIG_NUMA
  1348. struct mempolicy *mempolicy; /* Protected by alloc_lock */
  1349. short il_next;
  1350. short pref_node_fork;
  1351. #endif
  1352. #ifdef CONFIG_NUMA_BALANCING
  1353. int numa_scan_seq;
  1354. unsigned int numa_scan_period;
  1355. unsigned int numa_scan_period_max;
  1356. int numa_preferred_nid;
  1357. unsigned long numa_migrate_retry;
  1358. u64 node_stamp; /* migration stamp */
  1359. u64 last_task_numa_placement;
  1360. u64 last_sum_exec_runtime;
  1361. struct callback_head numa_work;
  1362. struct list_head numa_entry;
  1363. struct numa_group *numa_group;
  1364. /*
  1365. * numa_faults is an array split into four regions:
  1366. * faults_memory, faults_cpu, faults_memory_buffer, faults_cpu_buffer
  1367. * in this precise order.
  1368. *
  1369. * faults_memory: Exponential decaying average of faults on a per-node
  1370. * basis. Scheduling placement decisions are made based on these
  1371. * counts. The values remain static for the duration of a PTE scan.
  1372. * faults_cpu: Track the nodes the process was running on when a NUMA
  1373. * hinting fault was incurred.
  1374. * faults_memory_buffer and faults_cpu_buffer: Record faults per node
  1375. * during the current scan window. When the scan completes, the counts
  1376. * in faults_memory and faults_cpu decay and these values are copied.
  1377. */
  1378. unsigned long *numa_faults;
  1379. unsigned long total_numa_faults;
  1380. /*
  1381. * numa_faults_locality tracks if faults recorded during the last
  1382. * scan window were remote/local or failed to migrate. The task scan
  1383. * period is adapted based on the locality of the faults with different
  1384. * weights depending on whether they were shared or private faults
  1385. */
  1386. unsigned long numa_faults_locality[3];
  1387. unsigned long numa_pages_migrated;
  1388. #endif /* CONFIG_NUMA_BALANCING */
  1389. #ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
  1390. struct tlbflush_unmap_batch tlb_ubc;
  1391. #endif
  1392. struct rcu_head rcu;
  1393. /*
  1394. * cache last used pipe for splice
  1395. */
  1396. struct pipe_inode_info *splice_pipe;
  1397. struct page_frag task_frag;
  1398. #ifdef CONFIG_TASK_DELAY_ACCT
  1399. struct task_delay_info *delays;
  1400. #endif
  1401. #ifdef CONFIG_FAULT_INJECTION
  1402. int make_it_fail;
  1403. #endif
  1404. /*
  1405. * when (nr_dirtied >= nr_dirtied_pause), it's time to call
  1406. * balance_dirty_pages() for some dirty throttling pause
  1407. */
  1408. int nr_dirtied;
  1409. int nr_dirtied_pause;
  1410. unsigned long dirty_paused_when; /* start of a write-and-pause period */
  1411. #ifdef CONFIG_LATENCYTOP
  1412. int latency_record_count;
  1413. struct latency_record latency_record[LT_SAVECOUNT];
  1414. #endif
  1415. /*
  1416. * time slack values; these are used to round up poll() and
  1417. * select() etc timeout values. These are in nanoseconds.
  1418. */
  1419. u64 timer_slack_ns;
  1420. u64 default_timer_slack_ns;
  1421. #ifdef CONFIG_KASAN
  1422. unsigned int kasan_depth;
  1423. #endif
  1424. #ifdef CONFIG_FUNCTION_GRAPH_TRACER
  1425. /* Index of current stored address in ret_stack */
  1426. int curr_ret_stack;
  1427. /* Stack of return addresses for return function tracing */
  1428. struct ftrace_ret_stack *ret_stack;
  1429. /* time stamp for last schedule */
  1430. unsigned long long ftrace_timestamp;
  1431. /*
  1432. * Number of functions that haven't been traced
  1433. * because of depth overrun.
  1434. */
  1435. atomic_t trace_overrun;
  1436. /* Pause for the tracing */
  1437. atomic_t tracing_graph_pause;
  1438. #endif
  1439. #ifdef CONFIG_TRACING
  1440. /* state flags for use by tracers */
  1441. unsigned long trace;
  1442. /* bitmask and counter of trace recursion */
  1443. unsigned long trace_recursion;
  1444. #endif /* CONFIG_TRACING */
  1445. #ifdef CONFIG_KCOV
  1446. /* Coverage collection mode enabled for this task (0 if disabled). */
  1447. enum kcov_mode kcov_mode;
  1448. /* Size of the kcov_area. */
  1449. unsigned kcov_size;
  1450. /* Buffer for coverage collection. */
  1451. void *kcov_area;
  1452. /* kcov desciptor wired with this task or NULL. */
  1453. struct kcov *kcov;
  1454. #endif
  1455. #ifdef CONFIG_MEMCG
  1456. struct mem_cgroup *memcg_in_oom;
  1457. gfp_t memcg_oom_gfp_mask;
  1458. int memcg_oom_order;
  1459. /* number of pages to reclaim on returning to userland */
  1460. unsigned int memcg_nr_pages_over_high;
  1461. #endif
  1462. #ifdef CONFIG_UPROBES
  1463. struct uprobe_task *utask;
  1464. #endif
  1465. #if defined(CONFIG_BCACHE) || defined(CONFIG_BCACHE_MODULE)
  1466. unsigned int sequential_io;
  1467. unsigned int sequential_io_avg;
  1468. #endif
  1469. #ifdef CONFIG_DEBUG_ATOMIC_SLEEP
  1470. unsigned long task_state_change;
  1471. #endif
  1472. int pagefault_disabled;
  1473. #ifdef CONFIG_MMU
  1474. struct task_struct *oom_reaper_list;
  1475. #endif
  1476. #ifdef CONFIG_VMAP_STACK
  1477. struct vm_struct *stack_vm_area;
  1478. #endif
  1479. #ifdef CONFIG_THREAD_INFO_IN_TASK
  1480. /* A live task holds one reference. */
  1481. atomic_t stack_refcount;
  1482. #endif
  1483. /* CPU-specific state of this task */
  1484. struct thread_struct thread;
  1485. /*
  1486. * WARNING: on x86, 'thread_struct' contains a variable-sized
  1487. * structure. It *MUST* be at the end of 'task_struct'.
  1488. *
  1489. * Do not put anything below here!
  1490. */
  1491. };
  1492. #ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT
  1493. extern int arch_task_struct_size __read_mostly;
  1494. #else
  1495. # define arch_task_struct_size (sizeof(struct task_struct))
  1496. #endif
  1497. #ifdef CONFIG_VMAP_STACK
  1498. static inline struct vm_struct *task_stack_vm_area(const struct task_struct *t)
  1499. {
  1500. return t->stack_vm_area;
  1501. }
  1502. #else
  1503. static inline struct vm_struct *task_stack_vm_area(const struct task_struct *t)
  1504. {
  1505. return NULL;
  1506. }
  1507. #endif
  1508. #define TNF_MIGRATED 0x01
  1509. #define TNF_NO_GROUP 0x02
  1510. #define TNF_SHARED 0x04
  1511. #define TNF_FAULT_LOCAL 0x08
  1512. #define TNF_MIGRATE_FAIL 0x10
  1513. static inline bool in_vfork(struct task_struct *tsk)
  1514. {
  1515. bool ret;
  1516. /*
  1517. * need RCU to access ->real_parent if CLONE_VM was used along with
  1518. * CLONE_PARENT.
  1519. *
  1520. * We check real_parent->mm == tsk->mm because CLONE_VFORK does not
  1521. * imply CLONE_VM
  1522. *
  1523. * CLONE_VFORK can be used with CLONE_PARENT/CLONE_THREAD and thus
  1524. * ->real_parent is not necessarily the task doing vfork(), so in
  1525. * theory we can't rely on task_lock() if we want to dereference it.
  1526. *
  1527. * And in this case we can't trust the real_parent->mm == tsk->mm
  1528. * check, it can be false negative. But we do not care, if init or
  1529. * another oom-unkillable task does this it should blame itself.
  1530. */
  1531. rcu_read_lock();
  1532. ret = tsk->vfork_done && tsk->real_parent->mm == tsk->mm;
  1533. rcu_read_unlock();
  1534. return ret;
  1535. }
  1536. #ifdef CONFIG_NUMA_BALANCING
  1537. extern void task_numa_fault(int last_node, int node, int pages, int flags);
  1538. extern pid_t task_numa_group_id(struct task_struct *p);
  1539. extern void set_numabalancing_state(bool enabled);
  1540. extern void task_numa_free(struct task_struct *p);
  1541. extern bool should_numa_migrate_memory(struct task_struct *p, struct page *page,
  1542. int src_nid, int dst_cpu);
  1543. #else
  1544. static inline void task_numa_fault(int last_node, int node, int pages,
  1545. int flags)
  1546. {
  1547. }
  1548. static inline pid_t task_numa_group_id(struct task_struct *p)
  1549. {
  1550. return 0;
  1551. }
  1552. static inline void set_numabalancing_state(bool enabled)
  1553. {
  1554. }
  1555. static inline void task_numa_free(struct task_struct *p)
  1556. {
  1557. }
  1558. static inline bool should_numa_migrate_memory(struct task_struct *p,
  1559. struct page *page, int src_nid, int dst_cpu)
  1560. {
  1561. return true;
  1562. }
  1563. #endif
  1564. static inline struct pid *task_pid(struct task_struct *task)
  1565. {
  1566. return task->pids[PIDTYPE_PID].pid;
  1567. }
  1568. static inline struct pid *task_tgid(struct task_struct *task)
  1569. {
  1570. return task->group_leader->pids[PIDTYPE_PID].pid;
  1571. }
  1572. /*
  1573. * Without tasklist or rcu lock it is not safe to dereference
  1574. * the result of task_pgrp/task_session even if task == current,
  1575. * we can race with another thread doing sys_setsid/sys_setpgid.
  1576. */
  1577. static inline struct pid *task_pgrp(struct task_struct *task)
  1578. {
  1579. return task->group_leader->pids[PIDTYPE_PGID].pid;
  1580. }
  1581. static inline struct pid *task_session(struct task_struct *task)
  1582. {
  1583. return task->group_leader->pids[PIDTYPE_SID].pid;
  1584. }
  1585. struct pid_namespace;
  1586. /*
  1587. * the helpers to get the task's different pids as they are seen
  1588. * from various namespaces
  1589. *
  1590. * task_xid_nr() : global id, i.e. the id seen from the init namespace;
  1591. * task_xid_vnr() : virtual id, i.e. the id seen from the pid namespace of
  1592. * current.
  1593. * task_xid_nr_ns() : id seen from the ns specified;
  1594. *
  1595. * set_task_vxid() : assigns a virtual id to a task;
  1596. *
  1597. * see also pid_nr() etc in include/linux/pid.h
  1598. */
  1599. pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type,
  1600. struct pid_namespace *ns);
  1601. static inline pid_t task_pid_nr(struct task_struct *tsk)
  1602. {
  1603. return tsk->pid;
  1604. }
  1605. static inline pid_t task_pid_nr_ns(struct task_struct *tsk,
  1606. struct pid_namespace *ns)
  1607. {
  1608. return __task_pid_nr_ns(tsk, PIDTYPE_PID, ns);
  1609. }
  1610. static inline pid_t task_pid_vnr(struct task_struct *tsk)
  1611. {
  1612. return __task_pid_nr_ns(tsk, PIDTYPE_PID, NULL);
  1613. }
  1614. static inline pid_t task_tgid_nr(struct task_struct *tsk)
  1615. {
  1616. return tsk->tgid;
  1617. }
  1618. pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns);
  1619. static inline pid_t task_tgid_vnr(struct task_struct *tsk)
  1620. {
  1621. return pid_vnr(task_tgid(tsk));
  1622. }
  1623. static inline int pid_alive(const struct task_struct *p);
  1624. static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns)
  1625. {
  1626. pid_t pid = 0;
  1627. rcu_read_lock();
  1628. if (pid_alive(tsk))
  1629. pid = task_tgid_nr_ns(rcu_dereference(tsk->real_parent), ns);
  1630. rcu_read_unlock();
  1631. return pid;
  1632. }
  1633. static inline pid_t task_ppid_nr(const struct task_struct *tsk)
  1634. {
  1635. return task_ppid_nr_ns(tsk, &init_pid_ns);
  1636. }
  1637. static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk,
  1638. struct pid_namespace *ns)
  1639. {
  1640. return __task_pid_nr_ns(tsk, PIDTYPE_PGID, ns);
  1641. }
  1642. static inline pid_t task_pgrp_vnr(struct task_struct *tsk)
  1643. {
  1644. return __task_pid_nr_ns(tsk, PIDTYPE_PGID, NULL);
  1645. }
  1646. static inline pid_t task_session_nr_ns(struct task_struct *tsk,
  1647. struct pid_namespace *ns)
  1648. {
  1649. return __task_pid_nr_ns(tsk, PIDTYPE_SID, ns);
  1650. }
  1651. static inline pid_t task_session_vnr(struct task_struct *tsk)
  1652. {
  1653. return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL);
  1654. }
  1655. /* obsolete, do not use */
  1656. static inline pid_t task_pgrp_nr(struct task_struct *tsk)
  1657. {
  1658. return task_pgrp_nr_ns(tsk, &init_pid_ns);
  1659. }
  1660. /**
  1661. * pid_alive - check that a task structure is not stale
  1662. * @p: Task structure to be checked.
  1663. *
  1664. * Test if a process is not yet dead (at most zombie state)
  1665. * If pid_alive fails, then pointers within the task structure
  1666. * can be stale and must not be dereferenced.
  1667. *
  1668. * Return: 1 if the process is alive. 0 otherwise.
  1669. */
  1670. static inline int pid_alive(const struct task_struct *p)
  1671. {
  1672. return p->pids[PIDTYPE_PID].pid != NULL;
  1673. }
  1674. /**
  1675. * is_global_init - check if a task structure is init. Since init
  1676. * is free to have sub-threads we need to check tgid.
  1677. * @tsk: Task structure to be checked.
  1678. *
  1679. * Check if a task structure is the first user space task the kernel created.
  1680. *
  1681. * Return: 1 if the task structure is init. 0 otherwise.
  1682. */
  1683. static inline int is_global_init(struct task_struct *tsk)
  1684. {
  1685. return task_tgid_nr(tsk) == 1;
  1686. }
  1687. extern struct pid *cad_pid;
  1688. extern void free_task(struct task_struct *tsk);
  1689. #define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
  1690. extern void __put_task_struct(struct task_struct *t);
  1691. static inline void put_task_struct(struct task_struct *t)
  1692. {
  1693. if (atomic_dec_and_test(&t->usage))
  1694. __put_task_struct(t);
  1695. }
  1696. struct task_struct *task_rcu_dereference(struct task_struct **ptask);
  1697. struct task_struct *try_get_task_struct(struct task_struct **ptask);
  1698. #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
  1699. extern void task_cputime(struct task_struct *t,
  1700. u64 *utime, u64 *stime);
  1701. extern u64 task_gtime(struct task_struct *t);
  1702. #else
  1703. static inline void task_cputime(struct task_struct *t,
  1704. u64 *utime, u64 *stime)
  1705. {
  1706. *utime = t->utime;
  1707. *stime = t->stime;
  1708. }
  1709. static inline u64 task_gtime(struct task_struct *t)
  1710. {
  1711. return t->gtime;
  1712. }
  1713. #endif
  1714. #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
  1715. static inline void task_cputime_scaled(struct task_struct *t,
  1716. u64 *utimescaled,
  1717. u64 *stimescaled)
  1718. {
  1719. *utimescaled = t->utimescaled;
  1720. *stimescaled = t->stimescaled;
  1721. }
  1722. #else
  1723. static inline void task_cputime_scaled(struct task_struct *t,
  1724. u64 *utimescaled,
  1725. u64 *stimescaled)
  1726. {
  1727. task_cputime(t, utimescaled, stimescaled);
  1728. }
  1729. #endif
  1730. extern void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
  1731. extern void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
  1732. /*
  1733. * Per process flags
  1734. */
  1735. #define PF_IDLE 0x00000002 /* I am an IDLE thread */
  1736. #define PF_EXITING 0x00000004 /* getting shut down */
  1737. #define PF_EXITPIDONE 0x00000008 /* pi exit done on shut down */
  1738. #define PF_VCPU 0x00000010 /* I'm a virtual CPU */
  1739. #define PF_WQ_WORKER 0x00000020 /* I'm a workqueue worker */
  1740. #define PF_FORKNOEXEC 0x00000040 /* forked but didn't exec */
  1741. #define PF_MCE_PROCESS 0x00000080 /* process policy on mce errors */
  1742. #define PF_SUPERPRIV 0x00000100 /* used super-user privileges */
  1743. #define PF_DUMPCORE 0x00000200 /* dumped core */
  1744. #define PF_SIGNALED 0x00000400 /* killed by a signal */
  1745. #define PF_MEMALLOC 0x00000800 /* Allocating memory */
  1746. #define PF_NPROC_EXCEEDED 0x00001000 /* set_user noticed that RLIMIT_NPROC was exceeded */
  1747. #define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */
  1748. #define PF_USED_ASYNC 0x00004000 /* used async_schedule*(), used by module init */
  1749. #define PF_NOFREEZE 0x00008000 /* this thread should not be frozen */
  1750. #define PF_FROZEN 0x00010000 /* frozen for system suspend */
  1751. #define PF_FSTRANS 0x00020000 /* inside a filesystem transaction */
  1752. #define PF_KSWAPD 0x00040000 /* I am kswapd */
  1753. #define PF_MEMALLOC_NOIO 0x00080000 /* Allocating memory without IO involved */
  1754. #define PF_LESS_THROTTLE 0x00100000 /* Throttle me less: I clean memory */
  1755. #define PF_KTHREAD 0x00200000 /* I am a kernel thread */
  1756. #define PF_RANDOMIZE 0x00400000 /* randomize virtual address space */
  1757. #define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */
  1758. #define PF_NO_SETAFFINITY 0x04000000 /* Userland is not allowed to meddle with cpus_allowed */
  1759. #define PF_MCE_EARLY 0x08000000 /* Early kill for mce process policy */
  1760. #define PF_MUTEX_TESTER 0x20000000 /* Thread belongs to the rt mutex tester */
  1761. #define PF_FREEZER_SKIP 0x40000000 /* Freezer should not count it as freezable */
  1762. #define PF_SUSPEND_TASK 0x80000000 /* this thread called freeze_processes and should not be frozen */
  1763. /*
  1764. * Only the _current_ task can read/write to tsk->flags, but other
  1765. * tasks can access tsk->flags in readonly mode for example
  1766. * with tsk_used_math (like during threaded core dumping).
  1767. * There is however an exception to this rule during ptrace
  1768. * or during fork: the ptracer task is allowed to write to the
  1769. * child->flags of its traced child (same goes for fork, the parent
  1770. * can write to the child->flags), because we're guaranteed the
  1771. * child is not running and in turn not changing child->flags
  1772. * at the same time the parent does it.
  1773. */
  1774. #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
  1775. #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
  1776. #define clear_used_math() clear_stopped_child_used_math(current)
  1777. #define set_used_math() set_stopped_child_used_math(current)
  1778. #define conditional_stopped_child_used_math(condition, child) \
  1779. do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
  1780. #define conditional_used_math(condition) \
  1781. conditional_stopped_child_used_math(condition, current)
  1782. #define copy_to_stopped_child_used_math(child) \
  1783. do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
  1784. /* NOTE: this will return 0 or PF_USED_MATH, it will never return 1 */
  1785. #define tsk_used_math(p) ((p)->flags & PF_USED_MATH)
  1786. #define used_math() tsk_used_math(current)
  1787. /* __GFP_IO isn't allowed if PF_MEMALLOC_NOIO is set in current->flags
  1788. * __GFP_FS is also cleared as it implies __GFP_IO.
  1789. */
  1790. static inline gfp_t memalloc_noio_flags(gfp_t flags)
  1791. {
  1792. if (unlikely(current->flags & PF_MEMALLOC_NOIO))
  1793. flags &= ~(__GFP_IO | __GFP_FS);
  1794. return flags;
  1795. }
  1796. static inline unsigned int memalloc_noio_save(void)
  1797. {
  1798. unsigned int flags = current->flags & PF_MEMALLOC_NOIO;
  1799. current->flags |= PF_MEMALLOC_NOIO;
  1800. return flags;
  1801. }
  1802. static inline void memalloc_noio_restore(unsigned int flags)
  1803. {
  1804. current->flags = (current->flags & ~PF_MEMALLOC_NOIO) | flags;
  1805. }
  1806. /* Per-process atomic flags. */
  1807. #define PFA_NO_NEW_PRIVS 0 /* May not gain new privileges. */
  1808. #define PFA_SPREAD_PAGE 1 /* Spread page cache over cpuset */
  1809. #define PFA_SPREAD_SLAB 2 /* Spread some slab caches over cpuset */
  1810. #define PFA_LMK_WAITING 3 /* Lowmemorykiller is waiting */
  1811. #define TASK_PFA_TEST(name, func) \
  1812. static inline bool task_##func(struct task_struct *p) \
  1813. { return test_bit(PFA_##name, &p->atomic_flags); }
  1814. #define TASK_PFA_SET(name, func) \
  1815. static inline void task_set_##func(struct task_struct *p) \
  1816. { set_bit(PFA_##name, &p->atomic_flags); }
  1817. #define TASK_PFA_CLEAR(name, func) \
  1818. static inline void task_clear_##func(struct task_struct *p) \
  1819. { clear_bit(PFA_##name, &p->atomic_flags); }
  1820. TASK_PFA_TEST(NO_NEW_PRIVS, no_new_privs)
  1821. TASK_PFA_SET(NO_NEW_PRIVS, no_new_privs)
  1822. TASK_PFA_TEST(SPREAD_PAGE, spread_page)
  1823. TASK_PFA_SET(SPREAD_PAGE, spread_page)
  1824. TASK_PFA_CLEAR(SPREAD_PAGE, spread_page)
  1825. TASK_PFA_TEST(SPREAD_SLAB, spread_slab)
  1826. TASK_PFA_SET(SPREAD_SLAB, spread_slab)
  1827. TASK_PFA_CLEAR(SPREAD_SLAB, spread_slab)
  1828. TASK_PFA_TEST(LMK_WAITING, lmk_waiting)
  1829. TASK_PFA_SET(LMK_WAITING, lmk_waiting)
  1830. /*
  1831. * task->jobctl flags
  1832. */
  1833. #define JOBCTL_STOP_SIGMASK 0xffff /* signr of the last group stop */
  1834. #define JOBCTL_STOP_DEQUEUED_BIT 16 /* stop signal dequeued */
  1835. #define JOBCTL_STOP_PENDING_BIT 17 /* task should stop for group stop */
  1836. #define JOBCTL_STOP_CONSUME_BIT 18 /* consume group stop count */
  1837. #define JOBCTL_TRAP_STOP_BIT 19 /* trap for STOP */
  1838. #define JOBCTL_TRAP_NOTIFY_BIT 20 /* trap for NOTIFY */
  1839. #define JOBCTL_TRAPPING_BIT 21 /* switching to TRACED */
  1840. #define JOBCTL_LISTENING_BIT 22 /* ptracer is listening for events */
  1841. #define JOBCTL_STOP_DEQUEUED (1UL << JOBCTL_STOP_DEQUEUED_BIT)
  1842. #define JOBCTL_STOP_PENDING (1UL << JOBCTL_STOP_PENDING_BIT)
  1843. #define JOBCTL_STOP_CONSUME (1UL << JOBCTL_STOP_CONSUME_BIT)
  1844. #define JOBCTL_TRAP_STOP (1UL << JOBCTL_TRAP_STOP_BIT)
  1845. #define JOBCTL_TRAP_NOTIFY (1UL << JOBCTL_TRAP_NOTIFY_BIT)
  1846. #define JOBCTL_TRAPPING (1UL << JOBCTL_TRAPPING_BIT)
  1847. #define JOBCTL_LISTENING (1UL << JOBCTL_LISTENING_BIT)
  1848. #define JOBCTL_TRAP_MASK (JOBCTL_TRAP_STOP | JOBCTL_TRAP_NOTIFY)
  1849. #define JOBCTL_PENDING_MASK (JOBCTL_STOP_PENDING | JOBCTL_TRAP_MASK)
  1850. extern bool task_set_jobctl_pending(struct task_struct *task,
  1851. unsigned long mask);
  1852. extern void task_clear_jobctl_trapping(struct task_struct *task);
  1853. extern void task_clear_jobctl_pending(struct task_struct *task,
  1854. unsigned long mask);
  1855. static inline void rcu_copy_process(struct task_struct *p)
  1856. {
  1857. #ifdef CONFIG_PREEMPT_RCU
  1858. p->rcu_read_lock_nesting = 0;
  1859. p->rcu_read_unlock_special.s = 0;
  1860. p->rcu_blocked_node = NULL;
  1861. INIT_LIST_HEAD(&p->rcu_node_entry);
  1862. #endif /* #ifdef CONFIG_PREEMPT_RCU */
  1863. #ifdef CONFIG_TASKS_RCU
  1864. p->rcu_tasks_holdout = false;
  1865. INIT_LIST_HEAD(&p->rcu_tasks_holdout_list);
  1866. p->rcu_tasks_idle_cpu = -1;
  1867. #endif /* #ifdef CONFIG_TASKS_RCU */
  1868. }
  1869. static inline void tsk_restore_flags(struct task_struct *task,
  1870. unsigned long orig_flags, unsigned long flags)
  1871. {
  1872. task->flags &= ~flags;
  1873. task->flags |= orig_flags & flags;
  1874. }
  1875. extern int cpuset_cpumask_can_shrink(const struct cpumask *cur,
  1876. const struct cpumask *trial);
  1877. extern int task_can_attach(struct task_struct *p,
  1878. const struct cpumask *cs_cpus_allowed);
  1879. #ifdef CONFIG_SMP
  1880. extern void do_set_cpus_allowed(struct task_struct *p,
  1881. const struct cpumask *new_mask);
  1882. extern int set_cpus_allowed_ptr(struct task_struct *p,
  1883. const struct cpumask *new_mask);
  1884. #else
  1885. static inline void do_set_cpus_allowed(struct task_struct *p,
  1886. const struct cpumask *new_mask)
  1887. {
  1888. }
  1889. static inline int set_cpus_allowed_ptr(struct task_struct *p,
  1890. const struct cpumask *new_mask)
  1891. {
  1892. if (!cpumask_test_cpu(0, new_mask))
  1893. return -EINVAL;
  1894. return 0;
  1895. }
  1896. #endif
  1897. #ifdef CONFIG_NO_HZ_COMMON
  1898. void calc_load_enter_idle(void);
  1899. void calc_load_exit_idle(void);
  1900. #else
  1901. static inline void calc_load_enter_idle(void) { }
  1902. static inline void calc_load_exit_idle(void) { }
  1903. #endif /* CONFIG_NO_HZ_COMMON */
  1904. #ifndef cpu_relax_yield
  1905. #define cpu_relax_yield() cpu_relax()
  1906. #endif
  1907. /*
  1908. * Do not use outside of architecture code which knows its limitations.
  1909. *
  1910. * sched_clock() has no promise of monotonicity or bounded drift between
  1911. * CPUs, use (which you should not) requires disabling IRQs.
  1912. *
  1913. * Please use one of the three interfaces below.
  1914. */
  1915. extern unsigned long long notrace sched_clock(void);
  1916. /*
  1917. * See the comment in kernel/sched/clock.c
  1918. */
  1919. extern u64 running_clock(void);
  1920. extern u64 sched_clock_cpu(int cpu);
  1921. extern void sched_clock_init(void);
  1922. #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
  1923. static inline void sched_clock_init_late(void)
  1924. {
  1925. }
  1926. static inline void sched_clock_tick(void)
  1927. {
  1928. }
  1929. static inline void clear_sched_clock_stable(void)
  1930. {
  1931. }
  1932. static inline void sched_clock_idle_sleep_event(void)
  1933. {
  1934. }
  1935. static inline void sched_clock_idle_wakeup_event(u64 delta_ns)
  1936. {
  1937. }
  1938. static inline u64 cpu_clock(int cpu)
  1939. {
  1940. return sched_clock();
  1941. }
  1942. static inline u64 local_clock(void)
  1943. {
  1944. return sched_clock();
  1945. }
  1946. #else
  1947. extern void sched_clock_init_late(void);
  1948. /*
  1949. * Architectures can set this to 1 if they have specified
  1950. * CONFIG_HAVE_UNSTABLE_SCHED_CLOCK in their arch Kconfig,
  1951. * but then during bootup it turns out that sched_clock()
  1952. * is reliable after all:
  1953. */
  1954. extern int sched_clock_stable(void);
  1955. extern void clear_sched_clock_stable(void);
  1956. extern void sched_clock_tick(void);
  1957. extern void sched_clock_idle_sleep_event(void);
  1958. extern void sched_clock_idle_wakeup_event(u64 delta_ns);
  1959. /*
  1960. * As outlined in clock.c, provides a fast, high resolution, nanosecond
  1961. * time source that is monotonic per cpu argument and has bounded drift
  1962. * between cpus.
  1963. *
  1964. * ######################### BIG FAT WARNING ##########################
  1965. * # when comparing cpu_clock(i) to cpu_clock(j) for i != j, time can #
  1966. * # go backwards !! #
  1967. * ####################################################################
  1968. */
  1969. static inline u64 cpu_clock(int cpu)
  1970. {
  1971. return sched_clock_cpu(cpu);
  1972. }
  1973. static inline u64 local_clock(void)
  1974. {
  1975. return sched_clock_cpu(raw_smp_processor_id());
  1976. }
  1977. #endif
  1978. #ifdef CONFIG_IRQ_TIME_ACCOUNTING
  1979. /*
  1980. * An i/f to runtime opt-in for irq time accounting based off of sched_clock.
  1981. * The reason for this explicit opt-in is not to have perf penalty with
  1982. * slow sched_clocks.
  1983. */
  1984. extern void enable_sched_clock_irqtime(void);
  1985. extern void disable_sched_clock_irqtime(void);
  1986. #else
  1987. static inline void enable_sched_clock_irqtime(void) {}
  1988. static inline void disable_sched_clock_irqtime(void) {}
  1989. #endif
  1990. extern unsigned long long
  1991. task_sched_runtime(struct task_struct *task);
  1992. /* sched_exec is called by processes performing an exec */
  1993. #ifdef CONFIG_SMP
  1994. extern void sched_exec(void);
  1995. #else
  1996. #define sched_exec() {}
  1997. #endif
  1998. extern void sched_clock_idle_sleep_event(void);
  1999. extern void sched_clock_idle_wakeup_event(u64 delta_ns);
  2000. #ifdef CONFIG_HOTPLUG_CPU
  2001. extern void idle_task_exit(void);
  2002. #else
  2003. static inline void idle_task_exit(void) {}
  2004. #endif
  2005. #if defined(CONFIG_NO_HZ_COMMON) && defined(CONFIG_SMP)
  2006. extern void wake_up_nohz_cpu(int cpu);
  2007. #else
  2008. static inline void wake_up_nohz_cpu(int cpu) { }
  2009. #endif
  2010. #ifdef CONFIG_NO_HZ_FULL
  2011. extern u64 scheduler_tick_max_deferment(void);
  2012. #endif
  2013. #ifdef CONFIG_SCHED_AUTOGROUP
  2014. extern void sched_autogroup_create_attach(struct task_struct *p);
  2015. extern void sched_autogroup_detach(struct task_struct *p);
  2016. extern void sched_autogroup_fork(struct signal_struct *sig);
  2017. extern void sched_autogroup_exit(struct signal_struct *sig);
  2018. extern void sched_autogroup_exit_task(struct task_struct *p);
  2019. #ifdef CONFIG_PROC_FS
  2020. extern void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m);
  2021. extern int proc_sched_autogroup_set_nice(struct task_struct *p, int nice);
  2022. #endif
  2023. #else
  2024. static inline void sched_autogroup_create_attach(struct task_struct *p) { }
  2025. static inline void sched_autogroup_detach(struct task_struct *p) { }
  2026. static inline void sched_autogroup_fork(struct signal_struct *sig) { }
  2027. static inline void sched_autogroup_exit(struct signal_struct *sig) { }
  2028. static inline void sched_autogroup_exit_task(struct task_struct *p) { }
  2029. #endif
  2030. extern int yield_to(struct task_struct *p, bool preempt);
  2031. extern void set_user_nice(struct task_struct *p, long nice);
  2032. extern int task_prio(const struct task_struct *p);
  2033. /**
  2034. * task_nice - return the nice value of a given task.
  2035. * @p: the task in question.
  2036. *
  2037. * Return: The nice value [ -20 ... 0 ... 19 ].
  2038. */
  2039. static inline int task_nice(const struct task_struct *p)
  2040. {
  2041. return PRIO_TO_NICE((p)->static_prio);
  2042. }
  2043. extern int can_nice(const struct task_struct *p, const int nice);
  2044. extern int task_curr(const struct task_struct *p);
  2045. extern int idle_cpu(int cpu);
  2046. extern int sched_setscheduler(struct task_struct *, int,
  2047. const struct sched_param *);
  2048. extern int sched_setscheduler_nocheck(struct task_struct *, int,
  2049. const struct sched_param *);
  2050. extern int sched_setattr(struct task_struct *,
  2051. const struct sched_attr *);
  2052. extern struct task_struct *idle_task(int cpu);
  2053. /**
  2054. * is_idle_task - is the specified task an idle task?
  2055. * @p: the task in question.
  2056. *
  2057. * Return: 1 if @p is an idle task. 0 otherwise.
  2058. */
  2059. static inline bool is_idle_task(const struct task_struct *p)
  2060. {
  2061. return !!(p->flags & PF_IDLE);
  2062. }
  2063. extern struct task_struct *curr_task(int cpu);
  2064. extern void ia64_set_curr_task(int cpu, struct task_struct *p);
  2065. void yield(void);
  2066. union thread_union {
  2067. #ifndef CONFIG_THREAD_INFO_IN_TASK
  2068. struct thread_info thread_info;
  2069. #endif
  2070. unsigned long stack[THREAD_SIZE/sizeof(long)];
  2071. };
  2072. #ifndef __HAVE_ARCH_KSTACK_END
  2073. static inline int kstack_end(void *addr)
  2074. {
  2075. /* Reliable end of stack detection:
  2076. * Some APM bios versions misalign the stack
  2077. */
  2078. return !(((unsigned long)addr+sizeof(void*)-1) & (THREAD_SIZE-sizeof(void*)));
  2079. }
  2080. #endif
  2081. extern union thread_union init_thread_union;
  2082. extern struct task_struct init_task;
  2083. extern struct mm_struct init_mm;
  2084. extern struct pid_namespace init_pid_ns;
  2085. /*
  2086. * find a task by one of its numerical ids
  2087. *
  2088. * find_task_by_pid_ns():
  2089. * finds a task by its pid in the specified namespace
  2090. * find_task_by_vpid():
  2091. * finds a task by its virtual pid
  2092. *
  2093. * see also find_vpid() etc in include/linux/pid.h
  2094. */
  2095. extern struct task_struct *find_task_by_vpid(pid_t nr);
  2096. extern struct task_struct *find_task_by_pid_ns(pid_t nr,
  2097. struct pid_namespace *ns);
  2098. /* per-UID process charging. */
  2099. extern struct user_struct * alloc_uid(kuid_t);
  2100. static inline struct user_struct *get_uid(struct user_struct *u)
  2101. {
  2102. atomic_inc(&u->__count);
  2103. return u;
  2104. }
  2105. extern void free_uid(struct user_struct *);
  2106. #include <asm/current.h>
  2107. extern void xtime_update(unsigned long ticks);
  2108. extern int wake_up_state(struct task_struct *tsk, unsigned int state);
  2109. extern int wake_up_process(struct task_struct *tsk);
  2110. extern void wake_up_new_task(struct task_struct *tsk);
  2111. #ifdef CONFIG_SMP
  2112. extern void kick_process(struct task_struct *tsk);
  2113. #else
  2114. static inline void kick_process(struct task_struct *tsk) { }
  2115. #endif
  2116. extern int sched_fork(unsigned long clone_flags, struct task_struct *p);
  2117. extern void sched_dead(struct task_struct *p);
  2118. extern void proc_caches_init(void);
  2119. extern void flush_signals(struct task_struct *);
  2120. extern void ignore_signals(struct task_struct *);
  2121. extern void flush_signal_handlers(struct task_struct *, int force_default);
  2122. extern int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info);
  2123. static inline int kernel_dequeue_signal(siginfo_t *info)
  2124. {
  2125. struct task_struct *tsk = current;
  2126. siginfo_t __info;
  2127. int ret;
  2128. spin_lock_irq(&tsk->sighand->siglock);
  2129. ret = dequeue_signal(tsk, &tsk->blocked, info ?: &__info);
  2130. spin_unlock_irq(&tsk->sighand->siglock);
  2131. return ret;
  2132. }
  2133. static inline void kernel_signal_stop(void)
  2134. {
  2135. spin_lock_irq(&current->sighand->siglock);
  2136. if (current->jobctl & JOBCTL_STOP_DEQUEUED)
  2137. __set_current_state(TASK_STOPPED);
  2138. spin_unlock_irq(&current->sighand->siglock);
  2139. schedule();
  2140. }
  2141. extern void release_task(struct task_struct * p);
  2142. extern int send_sig_info(int, struct siginfo *, struct task_struct *);
  2143. extern int force_sigsegv(int, struct task_struct *);
  2144. extern int force_sig_info(int, struct siginfo *, struct task_struct *);
  2145. extern int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp);
  2146. extern int kill_pid_info(int sig, struct siginfo *info, struct pid *pid);
  2147. extern int kill_pid_info_as_cred(int, struct siginfo *, struct pid *,
  2148. const struct cred *, u32);
  2149. extern int kill_pgrp(struct pid *pid, int sig, int priv);
  2150. extern int kill_pid(struct pid *pid, int sig, int priv);
  2151. extern int kill_proc_info(int, struct siginfo *, pid_t);
  2152. extern __must_check bool do_notify_parent(struct task_struct *, int);
  2153. extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent);
  2154. extern void force_sig(int, struct task_struct *);
  2155. extern int send_sig(int, struct task_struct *, int);
  2156. extern int zap_other_threads(struct task_struct *p);
  2157. extern struct sigqueue *sigqueue_alloc(void);
  2158. extern void sigqueue_free(struct sigqueue *);
  2159. extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group);
  2160. extern int do_sigaction(int, struct k_sigaction *, struct k_sigaction *);
  2161. #ifdef TIF_RESTORE_SIGMASK
  2162. /*
  2163. * Legacy restore_sigmask accessors. These are inefficient on
  2164. * SMP architectures because they require atomic operations.
  2165. */
  2166. /**
  2167. * set_restore_sigmask() - make sure saved_sigmask processing gets done
  2168. *
  2169. * This sets TIF_RESTORE_SIGMASK and ensures that the arch signal code
  2170. * will run before returning to user mode, to process the flag. For
  2171. * all callers, TIF_SIGPENDING is already set or it's no harm to set
  2172. * it. TIF_RESTORE_SIGMASK need not be in the set of bits that the
  2173. * arch code will notice on return to user mode, in case those bits
  2174. * are scarce. We set TIF_SIGPENDING here to ensure that the arch
  2175. * signal code always gets run when TIF_RESTORE_SIGMASK is set.
  2176. */
  2177. static inline void set_restore_sigmask(void)
  2178. {
  2179. set_thread_flag(TIF_RESTORE_SIGMASK);
  2180. WARN_ON(!test_thread_flag(TIF_SIGPENDING));
  2181. }
  2182. static inline void clear_restore_sigmask(void)
  2183. {
  2184. clear_thread_flag(TIF_RESTORE_SIGMASK);
  2185. }
  2186. static inline bool test_restore_sigmask(void)
  2187. {
  2188. return test_thread_flag(TIF_RESTORE_SIGMASK);
  2189. }
  2190. static inline bool test_and_clear_restore_sigmask(void)
  2191. {
  2192. return test_and_clear_thread_flag(TIF_RESTORE_SIGMASK);
  2193. }
  2194. #else /* TIF_RESTORE_SIGMASK */
  2195. /* Higher-quality implementation, used if TIF_RESTORE_SIGMASK doesn't exist. */
  2196. static inline void set_restore_sigmask(void)
  2197. {
  2198. current->restore_sigmask = true;
  2199. WARN_ON(!test_thread_flag(TIF_SIGPENDING));
  2200. }
  2201. static inline void clear_restore_sigmask(void)
  2202. {
  2203. current->restore_sigmask = false;
  2204. }
  2205. static inline bool test_restore_sigmask(void)
  2206. {
  2207. return current->restore_sigmask;
  2208. }
  2209. static inline bool test_and_clear_restore_sigmask(void)
  2210. {
  2211. if (!current->restore_sigmask)
  2212. return false;
  2213. current->restore_sigmask = false;
  2214. return true;
  2215. }
  2216. #endif
  2217. static inline void restore_saved_sigmask(void)
  2218. {
  2219. if (test_and_clear_restore_sigmask())
  2220. __set_current_blocked(&current->saved_sigmask);
  2221. }
  2222. static inline sigset_t *sigmask_to_save(void)
  2223. {
  2224. sigset_t *res = &current->blocked;
  2225. if (unlikely(test_restore_sigmask()))
  2226. res = &current->saved_sigmask;
  2227. return res;
  2228. }
  2229. static inline int kill_cad_pid(int sig, int priv)
  2230. {
  2231. return kill_pid(cad_pid, sig, priv);
  2232. }
  2233. /* These can be the second arg to send_sig_info/send_group_sig_info. */
  2234. #define SEND_SIG_NOINFO ((struct siginfo *) 0)
  2235. #define SEND_SIG_PRIV ((struct siginfo *) 1)
  2236. #define SEND_SIG_FORCED ((struct siginfo *) 2)
  2237. /*
  2238. * True if we are on the alternate signal stack.
  2239. */
  2240. static inline int on_sig_stack(unsigned long sp)
  2241. {
  2242. /*
  2243. * If the signal stack is SS_AUTODISARM then, by construction, we
  2244. * can't be on the signal stack unless user code deliberately set
  2245. * SS_AUTODISARM when we were already on it.
  2246. *
  2247. * This improves reliability: if user state gets corrupted such that
  2248. * the stack pointer points very close to the end of the signal stack,
  2249. * then this check will enable the signal to be handled anyway.
  2250. */
  2251. if (current->sas_ss_flags & SS_AUTODISARM)
  2252. return 0;
  2253. #ifdef CONFIG_STACK_GROWSUP
  2254. return sp >= current->sas_ss_sp &&
  2255. sp - current->sas_ss_sp < current->sas_ss_size;
  2256. #else
  2257. return sp > current->sas_ss_sp &&
  2258. sp - current->sas_ss_sp <= current->sas_ss_size;
  2259. #endif
  2260. }
  2261. static inline int sas_ss_flags(unsigned long sp)
  2262. {
  2263. if (!current->sas_ss_size)
  2264. return SS_DISABLE;
  2265. return on_sig_stack(sp) ? SS_ONSTACK : 0;
  2266. }
  2267. static inline void sas_ss_reset(struct task_struct *p)
  2268. {
  2269. p->sas_ss_sp = 0;
  2270. p->sas_ss_size = 0;
  2271. p->sas_ss_flags = SS_DISABLE;
  2272. }
  2273. static inline unsigned long sigsp(unsigned long sp, struct ksignal *ksig)
  2274. {
  2275. if (unlikely((ksig->ka.sa.sa_flags & SA_ONSTACK)) && ! sas_ss_flags(sp))
  2276. #ifdef CONFIG_STACK_GROWSUP
  2277. return current->sas_ss_sp;
  2278. #else
  2279. return current->sas_ss_sp + current->sas_ss_size;
  2280. #endif
  2281. return sp;
  2282. }
  2283. /*
  2284. * Routines for handling mm_structs
  2285. */
  2286. extern struct mm_struct * mm_alloc(void);
  2287. /**
  2288. * mmgrab() - Pin a &struct mm_struct.
  2289. * @mm: The &struct mm_struct to pin.
  2290. *
  2291. * Make sure that @mm will not get freed even after the owning task
  2292. * exits. This doesn't guarantee that the associated address space
  2293. * will still exist later on and mmget_not_zero() has to be used before
  2294. * accessing it.
  2295. *
  2296. * This is a preferred way to to pin @mm for a longer/unbounded amount
  2297. * of time.
  2298. *
  2299. * Use mmdrop() to release the reference acquired by mmgrab().
  2300. *
  2301. * See also <Documentation/vm/active_mm.txt> for an in-depth explanation
  2302. * of &mm_struct.mm_count vs &mm_struct.mm_users.
  2303. */
  2304. static inline void mmgrab(struct mm_struct *mm)
  2305. {
  2306. atomic_inc(&mm->mm_count);
  2307. }
  2308. /* mmdrop drops the mm and the page tables */
  2309. extern void __mmdrop(struct mm_struct *);
  2310. static inline void mmdrop(struct mm_struct *mm)
  2311. {
  2312. if (unlikely(atomic_dec_and_test(&mm->mm_count)))
  2313. __mmdrop(mm);
  2314. }
  2315. static inline void mmdrop_async_fn(struct work_struct *work)
  2316. {
  2317. struct mm_struct *mm = container_of(work, struct mm_struct, async_put_work);
  2318. __mmdrop(mm);
  2319. }
  2320. static inline void mmdrop_async(struct mm_struct *mm)
  2321. {
  2322. if (unlikely(atomic_dec_and_test(&mm->mm_count))) {
  2323. INIT_WORK(&mm->async_put_work, mmdrop_async_fn);
  2324. schedule_work(&mm->async_put_work);
  2325. }
  2326. }
  2327. /**
  2328. * mmget() - Pin the address space associated with a &struct mm_struct.
  2329. * @mm: The address space to pin.
  2330. *
  2331. * Make sure that the address space of the given &struct mm_struct doesn't
  2332. * go away. This does not protect against parts of the address space being
  2333. * modified or freed, however.
  2334. *
  2335. * Never use this function to pin this address space for an
  2336. * unbounded/indefinite amount of time.
  2337. *
  2338. * Use mmput() to release the reference acquired by mmget().
  2339. *
  2340. * See also <Documentation/vm/active_mm.txt> for an in-depth explanation
  2341. * of &mm_struct.mm_count vs &mm_struct.mm_users.
  2342. */
  2343. static inline void mmget(struct mm_struct *mm)
  2344. {
  2345. atomic_inc(&mm->mm_users);
  2346. }
  2347. static inline bool mmget_not_zero(struct mm_struct *mm)
  2348. {
  2349. return atomic_inc_not_zero(&mm->mm_users);
  2350. }
  2351. /* mmput gets rid of the mappings and all user-space */
  2352. extern void mmput(struct mm_struct *);
  2353. #ifdef CONFIG_MMU
  2354. /* same as above but performs the slow path from the async context. Can
  2355. * be called from the atomic context as well
  2356. */
  2357. extern void mmput_async(struct mm_struct *);
  2358. #endif
  2359. /* Grab a reference to a task's mm, if it is not already going away */
  2360. extern struct mm_struct *get_task_mm(struct task_struct *task);
  2361. /*
  2362. * Grab a reference to a task's mm, if it is not already going away
  2363. * and ptrace_may_access with the mode parameter passed to it
  2364. * succeeds.
  2365. */
  2366. extern struct mm_struct *mm_access(struct task_struct *task, unsigned int mode);
  2367. /* Remove the current tasks stale references to the old mm_struct */
  2368. extern void mm_release(struct task_struct *, struct mm_struct *);
  2369. #ifdef CONFIG_HAVE_COPY_THREAD_TLS
  2370. extern int copy_thread_tls(unsigned long, unsigned long, unsigned long,
  2371. struct task_struct *, unsigned long);
  2372. #else
  2373. extern int copy_thread(unsigned long, unsigned long, unsigned long,
  2374. struct task_struct *);
  2375. /* Architectures that haven't opted into copy_thread_tls get the tls argument
  2376. * via pt_regs, so ignore the tls argument passed via C. */
  2377. static inline int copy_thread_tls(
  2378. unsigned long clone_flags, unsigned long sp, unsigned long arg,
  2379. struct task_struct *p, unsigned long tls)
  2380. {
  2381. return copy_thread(clone_flags, sp, arg, p);
  2382. }
  2383. #endif
  2384. extern void flush_thread(void);
  2385. #ifdef CONFIG_HAVE_EXIT_THREAD
  2386. extern void exit_thread(struct task_struct *tsk);
  2387. #else
  2388. static inline void exit_thread(struct task_struct *tsk)
  2389. {
  2390. }
  2391. #endif
  2392. extern void exit_files(struct task_struct *);
  2393. extern void __cleanup_sighand(struct sighand_struct *);
  2394. extern void exit_itimers(struct signal_struct *);
  2395. extern void flush_itimer_signals(void);
  2396. extern void do_group_exit(int);
  2397. extern int do_execve(struct filename *,
  2398. const char __user * const __user *,
  2399. const char __user * const __user *);
  2400. extern int do_execveat(int, struct filename *,
  2401. const char __user * const __user *,
  2402. const char __user * const __user *,
  2403. int);
  2404. extern long _do_fork(unsigned long, unsigned long, unsigned long, int __user *, int __user *, unsigned long);
  2405. extern long do_fork(unsigned long, unsigned long, unsigned long, int __user *, int __user *);
  2406. struct task_struct *fork_idle(int);
  2407. extern pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  2408. extern void __set_task_comm(struct task_struct *tsk, const char *from, bool exec);
  2409. static inline void set_task_comm(struct task_struct *tsk, const char *from)
  2410. {
  2411. __set_task_comm(tsk, from, false);
  2412. }
  2413. extern char *get_task_comm(char *to, struct task_struct *tsk);
  2414. #ifdef CONFIG_SMP
  2415. void scheduler_ipi(void);
  2416. extern unsigned long wait_task_inactive(struct task_struct *, long match_state);
  2417. #else
  2418. static inline void scheduler_ipi(void) { }
  2419. static inline unsigned long wait_task_inactive(struct task_struct *p,
  2420. long match_state)
  2421. {
  2422. return 1;
  2423. }
  2424. #endif
  2425. #define tasklist_empty() \
  2426. list_empty(&init_task.tasks)
  2427. #define next_task(p) \
  2428. list_entry_rcu((p)->tasks.next, struct task_struct, tasks)
  2429. #define for_each_process(p) \
  2430. for (p = &init_task ; (p = next_task(p)) != &init_task ; )
  2431. extern bool current_is_single_threaded(void);
  2432. /*
  2433. * Careful: do_each_thread/while_each_thread is a double loop so
  2434. * 'break' will not work as expected - use goto instead.
  2435. */
  2436. #define do_each_thread(g, t) \
  2437. for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do
  2438. #define while_each_thread(g, t) \
  2439. while ((t = next_thread(t)) != g)
  2440. #define __for_each_thread(signal, t) \
  2441. list_for_each_entry_rcu(t, &(signal)->thread_head, thread_node)
  2442. #define for_each_thread(p, t) \
  2443. __for_each_thread((p)->signal, t)
  2444. /* Careful: this is a double loop, 'break' won't work as expected. */
  2445. #define for_each_process_thread(p, t) \
  2446. for_each_process(p) for_each_thread(p, t)
  2447. typedef int (*proc_visitor)(struct task_struct *p, void *data);
  2448. void walk_process_tree(struct task_struct *top, proc_visitor, void *);
  2449. static inline int get_nr_threads(struct task_struct *tsk)
  2450. {
  2451. return tsk->signal->nr_threads;
  2452. }
  2453. static inline bool thread_group_leader(struct task_struct *p)
  2454. {
  2455. return p->exit_signal >= 0;
  2456. }
  2457. /* Do to the insanities of de_thread it is possible for a process
  2458. * to have the pid of the thread group leader without actually being
  2459. * the thread group leader. For iteration through the pids in proc
  2460. * all we care about is that we have a task with the appropriate
  2461. * pid, we don't actually care if we have the right task.
  2462. */
  2463. static inline bool has_group_leader_pid(struct task_struct *p)
  2464. {
  2465. return task_pid(p) == p->signal->leader_pid;
  2466. }
  2467. static inline
  2468. bool same_thread_group(struct task_struct *p1, struct task_struct *p2)
  2469. {
  2470. return p1->signal == p2->signal;
  2471. }
  2472. static inline struct task_struct *next_thread(const struct task_struct *p)
  2473. {
  2474. return list_entry_rcu(p->thread_group.next,
  2475. struct task_struct, thread_group);
  2476. }
  2477. static inline int thread_group_empty(struct task_struct *p)
  2478. {
  2479. return list_empty(&p->thread_group);
  2480. }
  2481. #define delay_group_leader(p) \
  2482. (thread_group_leader(p) && !thread_group_empty(p))
  2483. /*
  2484. * Protects ->fs, ->files, ->mm, ->group_info, ->comm, keyring
  2485. * subscriptions and synchronises with wait4(). Also used in procfs. Also
  2486. * pins the final release of task.io_context. Also protects ->cpuset and
  2487. * ->cgroup.subsys[]. And ->vfork_done.
  2488. *
  2489. * Nests both inside and outside of read_lock(&tasklist_lock).
  2490. * It must not be nested with write_lock_irq(&tasklist_lock),
  2491. * neither inside nor outside.
  2492. */
  2493. static inline void task_lock(struct task_struct *p)
  2494. {
  2495. spin_lock(&p->alloc_lock);
  2496. }
  2497. static inline void task_unlock(struct task_struct *p)
  2498. {
  2499. spin_unlock(&p->alloc_lock);
  2500. }
  2501. extern struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
  2502. unsigned long *flags);
  2503. static inline struct sighand_struct *lock_task_sighand(struct task_struct *tsk,
  2504. unsigned long *flags)
  2505. {
  2506. struct sighand_struct *ret;
  2507. ret = __lock_task_sighand(tsk, flags);
  2508. (void)__cond_lock(&tsk->sighand->siglock, ret);
  2509. return ret;
  2510. }
  2511. static inline void unlock_task_sighand(struct task_struct *tsk,
  2512. unsigned long *flags)
  2513. {
  2514. spin_unlock_irqrestore(&tsk->sighand->siglock, *flags);
  2515. }
  2516. #ifdef CONFIG_THREAD_INFO_IN_TASK
  2517. static inline struct thread_info *task_thread_info(struct task_struct *task)
  2518. {
  2519. return &task->thread_info;
  2520. }
  2521. /*
  2522. * When accessing the stack of a non-current task that might exit, use
  2523. * try_get_task_stack() instead. task_stack_page will return a pointer
  2524. * that could get freed out from under you.
  2525. */
  2526. static inline void *task_stack_page(const struct task_struct *task)
  2527. {
  2528. return task->stack;
  2529. }
  2530. #define setup_thread_stack(new,old) do { } while(0)
  2531. static inline unsigned long *end_of_stack(const struct task_struct *task)
  2532. {
  2533. return task->stack;
  2534. }
  2535. #elif !defined(__HAVE_THREAD_FUNCTIONS)
  2536. #define task_thread_info(task) ((struct thread_info *)(task)->stack)
  2537. #define task_stack_page(task) ((void *)(task)->stack)
  2538. static inline void setup_thread_stack(struct task_struct *p, struct task_struct *org)
  2539. {
  2540. *task_thread_info(p) = *task_thread_info(org);
  2541. task_thread_info(p)->task = p;
  2542. }
  2543. /*
  2544. * Return the address of the last usable long on the stack.
  2545. *
  2546. * When the stack grows down, this is just above the thread
  2547. * info struct. Going any lower will corrupt the threadinfo.
  2548. *
  2549. * When the stack grows up, this is the highest address.
  2550. * Beyond that position, we corrupt data on the next page.
  2551. */
  2552. static inline unsigned long *end_of_stack(struct task_struct *p)
  2553. {
  2554. #ifdef CONFIG_STACK_GROWSUP
  2555. return (unsigned long *)((unsigned long)task_thread_info(p) + THREAD_SIZE) - 1;
  2556. #else
  2557. return (unsigned long *)(task_thread_info(p) + 1);
  2558. #endif
  2559. }
  2560. #endif
  2561. #ifdef CONFIG_THREAD_INFO_IN_TASK
  2562. static inline void *try_get_task_stack(struct task_struct *tsk)
  2563. {
  2564. return atomic_inc_not_zero(&tsk->stack_refcount) ?
  2565. task_stack_page(tsk) : NULL;
  2566. }
  2567. extern void put_task_stack(struct task_struct *tsk);
  2568. #else
  2569. static inline void *try_get_task_stack(struct task_struct *tsk)
  2570. {
  2571. return task_stack_page(tsk);
  2572. }
  2573. static inline void put_task_stack(struct task_struct *tsk) {}
  2574. #endif
  2575. #define task_stack_end_corrupted(task) \
  2576. (*(end_of_stack(task)) != STACK_END_MAGIC)
  2577. static inline int object_is_on_stack(void *obj)
  2578. {
  2579. void *stack = task_stack_page(current);
  2580. return (obj >= stack) && (obj < (stack + THREAD_SIZE));
  2581. }
  2582. extern void thread_stack_cache_init(void);
  2583. #ifdef CONFIG_DEBUG_STACK_USAGE
  2584. static inline unsigned long stack_not_used(struct task_struct *p)
  2585. {
  2586. unsigned long *n = end_of_stack(p);
  2587. do { /* Skip over canary */
  2588. # ifdef CONFIG_STACK_GROWSUP
  2589. n--;
  2590. # else
  2591. n++;
  2592. # endif
  2593. } while (!*n);
  2594. # ifdef CONFIG_STACK_GROWSUP
  2595. return (unsigned long)end_of_stack(p) - (unsigned long)n;
  2596. # else
  2597. return (unsigned long)n - (unsigned long)end_of_stack(p);
  2598. # endif
  2599. }
  2600. #endif
  2601. extern void set_task_stack_end_magic(struct task_struct *tsk);
  2602. /* set thread flags in other task's structures
  2603. * - see asm/thread_info.h for TIF_xxxx flags available
  2604. */
  2605. static inline void set_tsk_thread_flag(struct task_struct *tsk, int flag)
  2606. {
  2607. set_ti_thread_flag(task_thread_info(tsk), flag);
  2608. }
  2609. static inline void clear_tsk_thread_flag(struct task_struct *tsk, int flag)
  2610. {
  2611. clear_ti_thread_flag(task_thread_info(tsk), flag);
  2612. }
  2613. static inline int test_and_set_tsk_thread_flag(struct task_struct *tsk, int flag)
  2614. {
  2615. return test_and_set_ti_thread_flag(task_thread_info(tsk), flag);
  2616. }
  2617. static inline int test_and_clear_tsk_thread_flag(struct task_struct *tsk, int flag)
  2618. {
  2619. return test_and_clear_ti_thread_flag(task_thread_info(tsk), flag);
  2620. }
  2621. static inline int test_tsk_thread_flag(struct task_struct *tsk, int flag)
  2622. {
  2623. return test_ti_thread_flag(task_thread_info(tsk), flag);
  2624. }
  2625. static inline void set_tsk_need_resched(struct task_struct *tsk)
  2626. {
  2627. set_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
  2628. }
  2629. static inline void clear_tsk_need_resched(struct task_struct *tsk)
  2630. {
  2631. clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
  2632. }
  2633. static inline int test_tsk_need_resched(struct task_struct *tsk)
  2634. {
  2635. return unlikely(test_tsk_thread_flag(tsk,TIF_NEED_RESCHED));
  2636. }
  2637. static inline int restart_syscall(void)
  2638. {
  2639. set_tsk_thread_flag(current, TIF_SIGPENDING);
  2640. return -ERESTARTNOINTR;
  2641. }
  2642. static inline int signal_pending(struct task_struct *p)
  2643. {
  2644. return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING));
  2645. }
  2646. static inline int __fatal_signal_pending(struct task_struct *p)
  2647. {
  2648. return unlikely(sigismember(&p->pending.signal, SIGKILL));
  2649. }
  2650. static inline int fatal_signal_pending(struct task_struct *p)
  2651. {
  2652. return signal_pending(p) && __fatal_signal_pending(p);
  2653. }
  2654. static inline int signal_pending_state(long state, struct task_struct *p)
  2655. {
  2656. if (!(state & (TASK_INTERRUPTIBLE | TASK_WAKEKILL)))
  2657. return 0;
  2658. if (!signal_pending(p))
  2659. return 0;
  2660. return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p);
  2661. }
  2662. /*
  2663. * cond_resched() and cond_resched_lock(): latency reduction via
  2664. * explicit rescheduling in places that are safe. The return
  2665. * value indicates whether a reschedule was done in fact.
  2666. * cond_resched_lock() will drop the spinlock before scheduling,
  2667. * cond_resched_softirq() will enable bhs before scheduling.
  2668. */
  2669. #ifndef CONFIG_PREEMPT
  2670. extern int _cond_resched(void);
  2671. #else
  2672. static inline int _cond_resched(void) { return 0; }
  2673. #endif
  2674. #define cond_resched() ({ \
  2675. ___might_sleep(__FILE__, __LINE__, 0); \
  2676. _cond_resched(); \
  2677. })
  2678. extern int __cond_resched_lock(spinlock_t *lock);
  2679. #define cond_resched_lock(lock) ({ \
  2680. ___might_sleep(__FILE__, __LINE__, PREEMPT_LOCK_OFFSET);\
  2681. __cond_resched_lock(lock); \
  2682. })
  2683. extern int __cond_resched_softirq(void);
  2684. #define cond_resched_softirq() ({ \
  2685. ___might_sleep(__FILE__, __LINE__, SOFTIRQ_DISABLE_OFFSET); \
  2686. __cond_resched_softirq(); \
  2687. })
  2688. static inline void cond_resched_rcu(void)
  2689. {
  2690. #if defined(CONFIG_DEBUG_ATOMIC_SLEEP) || !defined(CONFIG_PREEMPT_RCU)
  2691. rcu_read_unlock();
  2692. cond_resched();
  2693. rcu_read_lock();
  2694. #endif
  2695. }
  2696. /*
  2697. * Does a critical section need to be broken due to another
  2698. * task waiting?: (technically does not depend on CONFIG_PREEMPT,
  2699. * but a general need for low latency)
  2700. */
  2701. static inline int spin_needbreak(spinlock_t *lock)
  2702. {
  2703. #ifdef CONFIG_PREEMPT
  2704. return spin_is_contended(lock);
  2705. #else
  2706. return 0;
  2707. #endif
  2708. }
  2709. static __always_inline bool need_resched(void)
  2710. {
  2711. return unlikely(tif_need_resched());
  2712. }
  2713. /*
  2714. * Thread group CPU time accounting.
  2715. */
  2716. void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times);
  2717. void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times);
  2718. /*
  2719. * Reevaluate whether the task has signals pending delivery.
  2720. * Wake the task if so.
  2721. * This is required every time the blocked sigset_t changes.
  2722. * callers must hold sighand->siglock.
  2723. */
  2724. extern void recalc_sigpending_and_wake(struct task_struct *t);
  2725. extern void recalc_sigpending(void);
  2726. extern void signal_wake_up_state(struct task_struct *t, unsigned int state);
  2727. static inline void signal_wake_up(struct task_struct *t, bool resume)
  2728. {
  2729. signal_wake_up_state(t, resume ? TASK_WAKEKILL : 0);
  2730. }
  2731. static inline void ptrace_signal_wake_up(struct task_struct *t, bool resume)
  2732. {
  2733. signal_wake_up_state(t, resume ? __TASK_TRACED : 0);
  2734. }
  2735. /*
  2736. * Wrappers for p->thread_info->cpu access. No-op on UP.
  2737. */
  2738. #ifdef CONFIG_SMP
  2739. static inline unsigned int task_cpu(const struct task_struct *p)
  2740. {
  2741. #ifdef CONFIG_THREAD_INFO_IN_TASK
  2742. return p->cpu;
  2743. #else
  2744. return task_thread_info(p)->cpu;
  2745. #endif
  2746. }
  2747. static inline int task_node(const struct task_struct *p)
  2748. {
  2749. return cpu_to_node(task_cpu(p));
  2750. }
  2751. extern void set_task_cpu(struct task_struct *p, unsigned int cpu);
  2752. #else
  2753. static inline unsigned int task_cpu(const struct task_struct *p)
  2754. {
  2755. return 0;
  2756. }
  2757. static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
  2758. {
  2759. }
  2760. #endif /* CONFIG_SMP */
  2761. /*
  2762. * In order to reduce various lock holder preemption latencies provide an
  2763. * interface to see if a vCPU is currently running or not.
  2764. *
  2765. * This allows us to terminate optimistic spin loops and block, analogous to
  2766. * the native optimistic spin heuristic of testing if the lock owner task is
  2767. * running or not.
  2768. */
  2769. #ifndef vcpu_is_preempted
  2770. # define vcpu_is_preempted(cpu) false
  2771. #endif
  2772. extern long sched_setaffinity(pid_t pid, const struct cpumask *new_mask);
  2773. extern long sched_getaffinity(pid_t pid, struct cpumask *mask);
  2774. #ifdef CONFIG_CGROUP_SCHED
  2775. extern struct task_group root_task_group;
  2776. #endif /* CONFIG_CGROUP_SCHED */
  2777. extern int task_can_switch_user(struct user_struct *up,
  2778. struct task_struct *tsk);
  2779. #ifdef CONFIG_TASK_XACCT
  2780. static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
  2781. {
  2782. tsk->ioac.rchar += amt;
  2783. }
  2784. static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
  2785. {
  2786. tsk->ioac.wchar += amt;
  2787. }
  2788. static inline void inc_syscr(struct task_struct *tsk)
  2789. {
  2790. tsk->ioac.syscr++;
  2791. }
  2792. static inline void inc_syscw(struct task_struct *tsk)
  2793. {
  2794. tsk->ioac.syscw++;
  2795. }
  2796. #else
  2797. static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
  2798. {
  2799. }
  2800. static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
  2801. {
  2802. }
  2803. static inline void inc_syscr(struct task_struct *tsk)
  2804. {
  2805. }
  2806. static inline void inc_syscw(struct task_struct *tsk)
  2807. {
  2808. }
  2809. #endif
  2810. #ifndef TASK_SIZE_OF
  2811. #define TASK_SIZE_OF(tsk) TASK_SIZE
  2812. #endif
  2813. #ifdef CONFIG_MEMCG
  2814. extern void mm_update_next_owner(struct mm_struct *mm);
  2815. #else
  2816. static inline void mm_update_next_owner(struct mm_struct *mm)
  2817. {
  2818. }
  2819. #endif /* CONFIG_MEMCG */
  2820. static inline unsigned long task_rlimit(const struct task_struct *tsk,
  2821. unsigned int limit)
  2822. {
  2823. return READ_ONCE(tsk->signal->rlim[limit].rlim_cur);
  2824. }
  2825. static inline unsigned long task_rlimit_max(const struct task_struct *tsk,
  2826. unsigned int limit)
  2827. {
  2828. return READ_ONCE(tsk->signal->rlim[limit].rlim_max);
  2829. }
  2830. static inline unsigned long rlimit(unsigned int limit)
  2831. {
  2832. return task_rlimit(current, limit);
  2833. }
  2834. static inline unsigned long rlimit_max(unsigned int limit)
  2835. {
  2836. return task_rlimit_max(current, limit);
  2837. }
  2838. #define SCHED_CPUFREQ_RT (1U << 0)
  2839. #define SCHED_CPUFREQ_DL (1U << 1)
  2840. #define SCHED_CPUFREQ_IOWAIT (1U << 2)
  2841. #define SCHED_CPUFREQ_RT_DL (SCHED_CPUFREQ_RT | SCHED_CPUFREQ_DL)
  2842. #ifdef CONFIG_CPU_FREQ
  2843. struct update_util_data {
  2844. void (*func)(struct update_util_data *data, u64 time, unsigned int flags);
  2845. };
  2846. void cpufreq_add_update_util_hook(int cpu, struct update_util_data *data,
  2847. void (*func)(struct update_util_data *data, u64 time,
  2848. unsigned int flags));
  2849. void cpufreq_remove_update_util_hook(int cpu);
  2850. #endif /* CONFIG_CPU_FREQ */
  2851. #endif