sched.h 92 KB

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