futex.c 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045
  1. /*
  2. * Fast Userspace Mutexes (which I call "Futexes!").
  3. * (C) Rusty Russell, IBM 2002
  4. *
  5. * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
  6. * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
  7. *
  8. * Removed page pinning, fix privately mapped COW pages and other cleanups
  9. * (C) Copyright 2003, 2004 Jamie Lokier
  10. *
  11. * Robust futex support started by Ingo Molnar
  12. * (C) Copyright 2006 Red Hat Inc, All Rights Reserved
  13. * Thanks to Thomas Gleixner for suggestions, analysis and fixes.
  14. *
  15. * PI-futex support started by Ingo Molnar and Thomas Gleixner
  16. * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
  17. * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
  18. *
  19. * PRIVATE futexes by Eric Dumazet
  20. * Copyright (C) 2007 Eric Dumazet <dada1@cosmosbay.com>
  21. *
  22. * Requeue-PI support by Darren Hart <dvhltc@us.ibm.com>
  23. * Copyright (C) IBM Corporation, 2009
  24. * Thanks to Thomas Gleixner for conceptual design and careful reviews.
  25. *
  26. * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
  27. * enough at me, Linus for the original (flawed) idea, Matthew
  28. * Kirkwood for proof-of-concept implementation.
  29. *
  30. * "The futexes are also cursed."
  31. * "But they come in a choice of three flavours!"
  32. *
  33. * This program is free software; you can redistribute it and/or modify
  34. * it under the terms of the GNU General Public License as published by
  35. * the Free Software Foundation; either version 2 of the License, or
  36. * (at your option) any later version.
  37. *
  38. * This program is distributed in the hope that it will be useful,
  39. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  40. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  41. * GNU General Public License for more details.
  42. *
  43. * You should have received a copy of the GNU General Public License
  44. * along with this program; if not, write to the Free Software
  45. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  46. */
  47. #include <linux/slab.h>
  48. #include <linux/poll.h>
  49. #include <linux/fs.h>
  50. #include <linux/file.h>
  51. #include <linux/jhash.h>
  52. #include <linux/init.h>
  53. #include <linux/futex.h>
  54. #include <linux/mount.h>
  55. #include <linux/pagemap.h>
  56. #include <linux/syscalls.h>
  57. #include <linux/signal.h>
  58. #include <linux/export.h>
  59. #include <linux/magic.h>
  60. #include <linux/pid.h>
  61. #include <linux/nsproxy.h>
  62. #include <linux/ptrace.h>
  63. #include <linux/sched/rt.h>
  64. #include <linux/hugetlb.h>
  65. #include <linux/freezer.h>
  66. #include <linux/bootmem.h>
  67. #include <asm/futex.h>
  68. #include "locking/rtmutex_common.h"
  69. /*
  70. * READ this before attempting to hack on futexes!
  71. *
  72. * Basic futex operation and ordering guarantees
  73. * =============================================
  74. *
  75. * The waiter reads the futex value in user space and calls
  76. * futex_wait(). This function computes the hash bucket and acquires
  77. * the hash bucket lock. After that it reads the futex user space value
  78. * again and verifies that the data has not changed. If it has not changed
  79. * it enqueues itself into the hash bucket, releases the hash bucket lock
  80. * and schedules.
  81. *
  82. * The waker side modifies the user space value of the futex and calls
  83. * futex_wake(). This function computes the hash bucket and acquires the
  84. * hash bucket lock. Then it looks for waiters on that futex in the hash
  85. * bucket and wakes them.
  86. *
  87. * In futex wake up scenarios where no tasks are blocked on a futex, taking
  88. * the hb spinlock can be avoided and simply return. In order for this
  89. * optimization to work, ordering guarantees must exist so that the waiter
  90. * being added to the list is acknowledged when the list is concurrently being
  91. * checked by the waker, avoiding scenarios like the following:
  92. *
  93. * CPU 0 CPU 1
  94. * val = *futex;
  95. * sys_futex(WAIT, futex, val);
  96. * futex_wait(futex, val);
  97. * uval = *futex;
  98. * *futex = newval;
  99. * sys_futex(WAKE, futex);
  100. * futex_wake(futex);
  101. * if (queue_empty())
  102. * return;
  103. * if (uval == val)
  104. * lock(hash_bucket(futex));
  105. * queue();
  106. * unlock(hash_bucket(futex));
  107. * schedule();
  108. *
  109. * This would cause the waiter on CPU 0 to wait forever because it
  110. * missed the transition of the user space value from val to newval
  111. * and the waker did not find the waiter in the hash bucket queue.
  112. *
  113. * The correct serialization ensures that a waiter either observes
  114. * the changed user space value before blocking or is woken by a
  115. * concurrent waker:
  116. *
  117. * CPU 0 CPU 1
  118. * val = *futex;
  119. * sys_futex(WAIT, futex, val);
  120. * futex_wait(futex, val);
  121. *
  122. * waiters++; (a)
  123. * mb(); (A) <-- paired with -.
  124. * |
  125. * lock(hash_bucket(futex)); |
  126. * |
  127. * uval = *futex; |
  128. * | *futex = newval;
  129. * | sys_futex(WAKE, futex);
  130. * | futex_wake(futex);
  131. * |
  132. * `-------> mb(); (B)
  133. * if (uval == val)
  134. * queue();
  135. * unlock(hash_bucket(futex));
  136. * schedule(); if (waiters)
  137. * lock(hash_bucket(futex));
  138. * else wake_waiters(futex);
  139. * waiters--; (b) unlock(hash_bucket(futex));
  140. *
  141. * Where (A) orders the waiters increment and the futex value read through
  142. * atomic operations (see hb_waiters_inc) and where (B) orders the write
  143. * to futex and the waiters read -- this is done by the barriers in
  144. * get_futex_key_refs(), through either ihold or atomic_inc, depending on the
  145. * futex type.
  146. *
  147. * This yields the following case (where X:=waiters, Y:=futex):
  148. *
  149. * X = Y = 0
  150. *
  151. * w[X]=1 w[Y]=1
  152. * MB MB
  153. * r[Y]=y r[X]=x
  154. *
  155. * Which guarantees that x==0 && y==0 is impossible; which translates back into
  156. * the guarantee that we cannot both miss the futex variable change and the
  157. * enqueue.
  158. *
  159. * Note that a new waiter is accounted for in (a) even when it is possible that
  160. * the wait call can return error, in which case we backtrack from it in (b).
  161. * Refer to the comment in queue_lock().
  162. *
  163. * Similarly, in order to account for waiters being requeued on another
  164. * address we always increment the waiters for the destination bucket before
  165. * acquiring the lock. It then decrements them again after releasing it -
  166. * the code that actually moves the futex(es) between hash buckets (requeue_futex)
  167. * will do the additional required waiter count housekeeping. This is done for
  168. * double_lock_hb() and double_unlock_hb(), respectively.
  169. */
  170. #ifndef CONFIG_HAVE_FUTEX_CMPXCHG
  171. int __read_mostly futex_cmpxchg_enabled;
  172. #endif
  173. /*
  174. * Futex flags used to encode options to functions and preserve them across
  175. * restarts.
  176. */
  177. #define FLAGS_SHARED 0x01
  178. #define FLAGS_CLOCKRT 0x02
  179. #define FLAGS_HAS_TIMEOUT 0x04
  180. /*
  181. * Priority Inheritance state:
  182. */
  183. struct futex_pi_state {
  184. /*
  185. * list of 'owned' pi_state instances - these have to be
  186. * cleaned up in do_exit() if the task exits prematurely:
  187. */
  188. struct list_head list;
  189. /*
  190. * The PI object:
  191. */
  192. struct rt_mutex pi_mutex;
  193. struct task_struct *owner;
  194. atomic_t refcount;
  195. union futex_key key;
  196. };
  197. /**
  198. * struct futex_q - The hashed futex queue entry, one per waiting task
  199. * @list: priority-sorted list of tasks waiting on this futex
  200. * @task: the task waiting on the futex
  201. * @lock_ptr: the hash bucket lock
  202. * @key: the key the futex is hashed on
  203. * @pi_state: optional priority inheritance state
  204. * @rt_waiter: rt_waiter storage for use with requeue_pi
  205. * @requeue_pi_key: the requeue_pi target futex key
  206. * @bitset: bitset for the optional bitmasked wakeup
  207. *
  208. * We use this hashed waitqueue, instead of a normal wait_queue_t, so
  209. * we can wake only the relevant ones (hashed queues may be shared).
  210. *
  211. * A futex_q has a woken state, just like tasks have TASK_RUNNING.
  212. * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
  213. * The order of wakeup is always to make the first condition true, then
  214. * the second.
  215. *
  216. * PI futexes are typically woken before they are removed from the hash list via
  217. * the rt_mutex code. See unqueue_me_pi().
  218. */
  219. struct futex_q {
  220. struct plist_node list;
  221. struct task_struct *task;
  222. spinlock_t *lock_ptr;
  223. union futex_key key;
  224. struct futex_pi_state *pi_state;
  225. struct rt_mutex_waiter *rt_waiter;
  226. union futex_key *requeue_pi_key;
  227. u32 bitset;
  228. };
  229. static const struct futex_q futex_q_init = {
  230. /* list gets initialized in queue_me()*/
  231. .key = FUTEX_KEY_INIT,
  232. .bitset = FUTEX_BITSET_MATCH_ANY
  233. };
  234. /*
  235. * Hash buckets are shared by all the futex_keys that hash to the same
  236. * location. Each key may have multiple futex_q structures, one for each task
  237. * waiting on a futex.
  238. */
  239. struct futex_hash_bucket {
  240. atomic_t waiters;
  241. spinlock_t lock;
  242. struct plist_head chain;
  243. } ____cacheline_aligned_in_smp;
  244. static unsigned long __read_mostly futex_hashsize;
  245. static struct futex_hash_bucket *futex_queues;
  246. static inline void futex_get_mm(union futex_key *key)
  247. {
  248. atomic_inc(&key->private.mm->mm_count);
  249. /*
  250. * Ensure futex_get_mm() implies a full barrier such that
  251. * get_futex_key() implies a full barrier. This is relied upon
  252. * as full barrier (B), see the ordering comment above.
  253. */
  254. smp_mb__after_atomic();
  255. }
  256. /*
  257. * Reflects a new waiter being added to the waitqueue.
  258. */
  259. static inline void hb_waiters_inc(struct futex_hash_bucket *hb)
  260. {
  261. #ifdef CONFIG_SMP
  262. atomic_inc(&hb->waiters);
  263. /*
  264. * Full barrier (A), see the ordering comment above.
  265. */
  266. smp_mb__after_atomic();
  267. #endif
  268. }
  269. /*
  270. * Reflects a waiter being removed from the waitqueue by wakeup
  271. * paths.
  272. */
  273. static inline void hb_waiters_dec(struct futex_hash_bucket *hb)
  274. {
  275. #ifdef CONFIG_SMP
  276. atomic_dec(&hb->waiters);
  277. #endif
  278. }
  279. static inline int hb_waiters_pending(struct futex_hash_bucket *hb)
  280. {
  281. #ifdef CONFIG_SMP
  282. return atomic_read(&hb->waiters);
  283. #else
  284. return 1;
  285. #endif
  286. }
  287. /*
  288. * We hash on the keys returned from get_futex_key (see below).
  289. */
  290. static struct futex_hash_bucket *hash_futex(union futex_key *key)
  291. {
  292. u32 hash = jhash2((u32*)&key->both.word,
  293. (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
  294. key->both.offset);
  295. return &futex_queues[hash & (futex_hashsize - 1)];
  296. }
  297. /*
  298. * Return 1 if two futex_keys are equal, 0 otherwise.
  299. */
  300. static inline int match_futex(union futex_key *key1, union futex_key *key2)
  301. {
  302. return (key1 && key2
  303. && key1->both.word == key2->both.word
  304. && key1->both.ptr == key2->both.ptr
  305. && key1->both.offset == key2->both.offset);
  306. }
  307. /*
  308. * Take a reference to the resource addressed by a key.
  309. * Can be called while holding spinlocks.
  310. *
  311. */
  312. static void get_futex_key_refs(union futex_key *key)
  313. {
  314. if (!key->both.ptr)
  315. return;
  316. switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
  317. case FUT_OFF_INODE:
  318. ihold(key->shared.inode); /* implies MB (B) */
  319. break;
  320. case FUT_OFF_MMSHARED:
  321. futex_get_mm(key); /* implies MB (B) */
  322. break;
  323. }
  324. }
  325. /*
  326. * Drop a reference to the resource addressed by a key.
  327. * The hash bucket spinlock must not be held.
  328. */
  329. static void drop_futex_key_refs(union futex_key *key)
  330. {
  331. if (!key->both.ptr) {
  332. /* If we're here then we tried to put a key we failed to get */
  333. WARN_ON_ONCE(1);
  334. return;
  335. }
  336. switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
  337. case FUT_OFF_INODE:
  338. iput(key->shared.inode);
  339. break;
  340. case FUT_OFF_MMSHARED:
  341. mmdrop(key->private.mm);
  342. break;
  343. }
  344. }
  345. /**
  346. * get_futex_key() - Get parameters which are the keys for a futex
  347. * @uaddr: virtual address of the futex
  348. * @fshared: 0 for a PROCESS_PRIVATE futex, 1 for PROCESS_SHARED
  349. * @key: address where result is stored.
  350. * @rw: mapping needs to be read/write (values: VERIFY_READ,
  351. * VERIFY_WRITE)
  352. *
  353. * Return: a negative error code or 0
  354. *
  355. * The key words are stored in *key on success.
  356. *
  357. * For shared mappings, it's (page->index, file_inode(vma->vm_file),
  358. * offset_within_page). For private mappings, it's (uaddr, current->mm).
  359. * We can usually work out the index without swapping in the page.
  360. *
  361. * lock_page() might sleep, the caller should not hold a spinlock.
  362. */
  363. static int
  364. get_futex_key(u32 __user *uaddr, int fshared, union futex_key *key, int rw)
  365. {
  366. unsigned long address = (unsigned long)uaddr;
  367. struct mm_struct *mm = current->mm;
  368. struct page *page, *page_head;
  369. int err, ro = 0;
  370. /*
  371. * The futex address must be "naturally" aligned.
  372. */
  373. key->both.offset = address % PAGE_SIZE;
  374. if (unlikely((address % sizeof(u32)) != 0))
  375. return -EINVAL;
  376. address -= key->both.offset;
  377. if (unlikely(!access_ok(rw, uaddr, sizeof(u32))))
  378. return -EFAULT;
  379. /*
  380. * PROCESS_PRIVATE futexes are fast.
  381. * As the mm cannot disappear under us and the 'key' only needs
  382. * virtual address, we dont even have to find the underlying vma.
  383. * Note : We do have to check 'uaddr' is a valid user address,
  384. * but access_ok() should be faster than find_vma()
  385. */
  386. if (!fshared) {
  387. key->private.mm = mm;
  388. key->private.address = address;
  389. get_futex_key_refs(key); /* implies MB (B) */
  390. return 0;
  391. }
  392. again:
  393. err = get_user_pages_fast(address, 1, 1, &page);
  394. /*
  395. * If write access is not required (eg. FUTEX_WAIT), try
  396. * and get read-only access.
  397. */
  398. if (err == -EFAULT && rw == VERIFY_READ) {
  399. err = get_user_pages_fast(address, 1, 0, &page);
  400. ro = 1;
  401. }
  402. if (err < 0)
  403. return err;
  404. else
  405. err = 0;
  406. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  407. page_head = page;
  408. if (unlikely(PageTail(page))) {
  409. put_page(page);
  410. /* serialize against __split_huge_page_splitting() */
  411. local_irq_disable();
  412. if (likely(__get_user_pages_fast(address, 1, !ro, &page) == 1)) {
  413. page_head = compound_head(page);
  414. /*
  415. * page_head is valid pointer but we must pin
  416. * it before taking the PG_lock and/or
  417. * PG_compound_lock. The moment we re-enable
  418. * irqs __split_huge_page_splitting() can
  419. * return and the head page can be freed from
  420. * under us. We can't take the PG_lock and/or
  421. * PG_compound_lock on a page that could be
  422. * freed from under us.
  423. */
  424. if (page != page_head) {
  425. get_page(page_head);
  426. put_page(page);
  427. }
  428. local_irq_enable();
  429. } else {
  430. local_irq_enable();
  431. goto again;
  432. }
  433. }
  434. #else
  435. page_head = compound_head(page);
  436. if (page != page_head) {
  437. get_page(page_head);
  438. put_page(page);
  439. }
  440. #endif
  441. lock_page(page_head);
  442. /*
  443. * If page_head->mapping is NULL, then it cannot be a PageAnon
  444. * page; but it might be the ZERO_PAGE or in the gate area or
  445. * in a special mapping (all cases which we are happy to fail);
  446. * or it may have been a good file page when get_user_pages_fast
  447. * found it, but truncated or holepunched or subjected to
  448. * invalidate_complete_page2 before we got the page lock (also
  449. * cases which we are happy to fail). And we hold a reference,
  450. * so refcount care in invalidate_complete_page's remove_mapping
  451. * prevents drop_caches from setting mapping to NULL beneath us.
  452. *
  453. * The case we do have to guard against is when memory pressure made
  454. * shmem_writepage move it from filecache to swapcache beneath us:
  455. * an unlikely race, but we do need to retry for page_head->mapping.
  456. */
  457. if (!page_head->mapping) {
  458. int shmem_swizzled = PageSwapCache(page_head);
  459. unlock_page(page_head);
  460. put_page(page_head);
  461. if (shmem_swizzled)
  462. goto again;
  463. return -EFAULT;
  464. }
  465. /*
  466. * Private mappings are handled in a simple way.
  467. *
  468. * NOTE: When userspace waits on a MAP_SHARED mapping, even if
  469. * it's a read-only handle, it's expected that futexes attach to
  470. * the object not the particular process.
  471. */
  472. if (PageAnon(page_head)) {
  473. /*
  474. * A RO anonymous page will never change and thus doesn't make
  475. * sense for futex operations.
  476. */
  477. if (ro) {
  478. err = -EFAULT;
  479. goto out;
  480. }
  481. key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
  482. key->private.mm = mm;
  483. key->private.address = address;
  484. } else {
  485. key->both.offset |= FUT_OFF_INODE; /* inode-based key */
  486. key->shared.inode = page_head->mapping->host;
  487. key->shared.pgoff = basepage_index(page);
  488. }
  489. get_futex_key_refs(key); /* implies MB (B) */
  490. out:
  491. unlock_page(page_head);
  492. put_page(page_head);
  493. return err;
  494. }
  495. static inline void put_futex_key(union futex_key *key)
  496. {
  497. drop_futex_key_refs(key);
  498. }
  499. /**
  500. * fault_in_user_writeable() - Fault in user address and verify RW access
  501. * @uaddr: pointer to faulting user space address
  502. *
  503. * Slow path to fixup the fault we just took in the atomic write
  504. * access to @uaddr.
  505. *
  506. * We have no generic implementation of a non-destructive write to the
  507. * user address. We know that we faulted in the atomic pagefault
  508. * disabled section so we can as well avoid the #PF overhead by
  509. * calling get_user_pages() right away.
  510. */
  511. static int fault_in_user_writeable(u32 __user *uaddr)
  512. {
  513. struct mm_struct *mm = current->mm;
  514. int ret;
  515. down_read(&mm->mmap_sem);
  516. ret = fixup_user_fault(current, mm, (unsigned long)uaddr,
  517. FAULT_FLAG_WRITE);
  518. up_read(&mm->mmap_sem);
  519. return ret < 0 ? ret : 0;
  520. }
  521. /**
  522. * futex_top_waiter() - Return the highest priority waiter on a futex
  523. * @hb: the hash bucket the futex_q's reside in
  524. * @key: the futex key (to distinguish it from other futex futex_q's)
  525. *
  526. * Must be called with the hb lock held.
  527. */
  528. static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb,
  529. union futex_key *key)
  530. {
  531. struct futex_q *this;
  532. plist_for_each_entry(this, &hb->chain, list) {
  533. if (match_futex(&this->key, key))
  534. return this;
  535. }
  536. return NULL;
  537. }
  538. static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
  539. u32 uval, u32 newval)
  540. {
  541. int ret;
  542. pagefault_disable();
  543. ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
  544. pagefault_enable();
  545. return ret;
  546. }
  547. static int get_futex_value_locked(u32 *dest, u32 __user *from)
  548. {
  549. int ret;
  550. pagefault_disable();
  551. ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
  552. pagefault_enable();
  553. return ret ? -EFAULT : 0;
  554. }
  555. /*
  556. * PI code:
  557. */
  558. static int refill_pi_state_cache(void)
  559. {
  560. struct futex_pi_state *pi_state;
  561. if (likely(current->pi_state_cache))
  562. return 0;
  563. pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
  564. if (!pi_state)
  565. return -ENOMEM;
  566. INIT_LIST_HEAD(&pi_state->list);
  567. /* pi_mutex gets initialized later */
  568. pi_state->owner = NULL;
  569. atomic_set(&pi_state->refcount, 1);
  570. pi_state->key = FUTEX_KEY_INIT;
  571. current->pi_state_cache = pi_state;
  572. return 0;
  573. }
  574. static struct futex_pi_state * alloc_pi_state(void)
  575. {
  576. struct futex_pi_state *pi_state = current->pi_state_cache;
  577. WARN_ON(!pi_state);
  578. current->pi_state_cache = NULL;
  579. return pi_state;
  580. }
  581. static void free_pi_state(struct futex_pi_state *pi_state)
  582. {
  583. if (!atomic_dec_and_test(&pi_state->refcount))
  584. return;
  585. /*
  586. * If pi_state->owner is NULL, the owner is most probably dying
  587. * and has cleaned up the pi_state already
  588. */
  589. if (pi_state->owner) {
  590. raw_spin_lock_irq(&pi_state->owner->pi_lock);
  591. list_del_init(&pi_state->list);
  592. raw_spin_unlock_irq(&pi_state->owner->pi_lock);
  593. rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
  594. }
  595. if (current->pi_state_cache)
  596. kfree(pi_state);
  597. else {
  598. /*
  599. * pi_state->list is already empty.
  600. * clear pi_state->owner.
  601. * refcount is at 0 - put it back to 1.
  602. */
  603. pi_state->owner = NULL;
  604. atomic_set(&pi_state->refcount, 1);
  605. current->pi_state_cache = pi_state;
  606. }
  607. }
  608. /*
  609. * Look up the task based on what TID userspace gave us.
  610. * We dont trust it.
  611. */
  612. static struct task_struct * futex_find_get_task(pid_t pid)
  613. {
  614. struct task_struct *p;
  615. rcu_read_lock();
  616. p = find_task_by_vpid(pid);
  617. if (p)
  618. get_task_struct(p);
  619. rcu_read_unlock();
  620. return p;
  621. }
  622. /*
  623. * This task is holding PI mutexes at exit time => bad.
  624. * Kernel cleans up PI-state, but userspace is likely hosed.
  625. * (Robust-futex cleanup is separate and might save the day for userspace.)
  626. */
  627. void exit_pi_state_list(struct task_struct *curr)
  628. {
  629. struct list_head *next, *head = &curr->pi_state_list;
  630. struct futex_pi_state *pi_state;
  631. struct futex_hash_bucket *hb;
  632. union futex_key key = FUTEX_KEY_INIT;
  633. if (!futex_cmpxchg_enabled)
  634. return;
  635. /*
  636. * We are a ZOMBIE and nobody can enqueue itself on
  637. * pi_state_list anymore, but we have to be careful
  638. * versus waiters unqueueing themselves:
  639. */
  640. raw_spin_lock_irq(&curr->pi_lock);
  641. while (!list_empty(head)) {
  642. next = head->next;
  643. pi_state = list_entry(next, struct futex_pi_state, list);
  644. key = pi_state->key;
  645. hb = hash_futex(&key);
  646. raw_spin_unlock_irq(&curr->pi_lock);
  647. spin_lock(&hb->lock);
  648. raw_spin_lock_irq(&curr->pi_lock);
  649. /*
  650. * We dropped the pi-lock, so re-check whether this
  651. * task still owns the PI-state:
  652. */
  653. if (head->next != next) {
  654. spin_unlock(&hb->lock);
  655. continue;
  656. }
  657. WARN_ON(pi_state->owner != curr);
  658. WARN_ON(list_empty(&pi_state->list));
  659. list_del_init(&pi_state->list);
  660. pi_state->owner = NULL;
  661. raw_spin_unlock_irq(&curr->pi_lock);
  662. rt_mutex_unlock(&pi_state->pi_mutex);
  663. spin_unlock(&hb->lock);
  664. raw_spin_lock_irq(&curr->pi_lock);
  665. }
  666. raw_spin_unlock_irq(&curr->pi_lock);
  667. }
  668. /*
  669. * We need to check the following states:
  670. *
  671. * Waiter | pi_state | pi->owner | uTID | uODIED | ?
  672. *
  673. * [1] NULL | --- | --- | 0 | 0/1 | Valid
  674. * [2] NULL | --- | --- | >0 | 0/1 | Valid
  675. *
  676. * [3] Found | NULL | -- | Any | 0/1 | Invalid
  677. *
  678. * [4] Found | Found | NULL | 0 | 1 | Valid
  679. * [5] Found | Found | NULL | >0 | 1 | Invalid
  680. *
  681. * [6] Found | Found | task | 0 | 1 | Valid
  682. *
  683. * [7] Found | Found | NULL | Any | 0 | Invalid
  684. *
  685. * [8] Found | Found | task | ==taskTID | 0/1 | Valid
  686. * [9] Found | Found | task | 0 | 0 | Invalid
  687. * [10] Found | Found | task | !=taskTID | 0/1 | Invalid
  688. *
  689. * [1] Indicates that the kernel can acquire the futex atomically. We
  690. * came came here due to a stale FUTEX_WAITERS/FUTEX_OWNER_DIED bit.
  691. *
  692. * [2] Valid, if TID does not belong to a kernel thread. If no matching
  693. * thread is found then it indicates that the owner TID has died.
  694. *
  695. * [3] Invalid. The waiter is queued on a non PI futex
  696. *
  697. * [4] Valid state after exit_robust_list(), which sets the user space
  698. * value to FUTEX_WAITERS | FUTEX_OWNER_DIED.
  699. *
  700. * [5] The user space value got manipulated between exit_robust_list()
  701. * and exit_pi_state_list()
  702. *
  703. * [6] Valid state after exit_pi_state_list() which sets the new owner in
  704. * the pi_state but cannot access the user space value.
  705. *
  706. * [7] pi_state->owner can only be NULL when the OWNER_DIED bit is set.
  707. *
  708. * [8] Owner and user space value match
  709. *
  710. * [9] There is no transient state which sets the user space TID to 0
  711. * except exit_robust_list(), but this is indicated by the
  712. * FUTEX_OWNER_DIED bit. See [4]
  713. *
  714. * [10] There is no transient state which leaves owner and user space
  715. * TID out of sync.
  716. */
  717. /*
  718. * Validate that the existing waiter has a pi_state and sanity check
  719. * the pi_state against the user space value. If correct, attach to
  720. * it.
  721. */
  722. static int attach_to_pi_state(u32 uval, struct futex_pi_state *pi_state,
  723. struct futex_pi_state **ps)
  724. {
  725. pid_t pid = uval & FUTEX_TID_MASK;
  726. /*
  727. * Userspace might have messed up non-PI and PI futexes [3]
  728. */
  729. if (unlikely(!pi_state))
  730. return -EINVAL;
  731. WARN_ON(!atomic_read(&pi_state->refcount));
  732. /*
  733. * Handle the owner died case:
  734. */
  735. if (uval & FUTEX_OWNER_DIED) {
  736. /*
  737. * exit_pi_state_list sets owner to NULL and wakes the
  738. * topmost waiter. The task which acquires the
  739. * pi_state->rt_mutex will fixup owner.
  740. */
  741. if (!pi_state->owner) {
  742. /*
  743. * No pi state owner, but the user space TID
  744. * is not 0. Inconsistent state. [5]
  745. */
  746. if (pid)
  747. return -EINVAL;
  748. /*
  749. * Take a ref on the state and return success. [4]
  750. */
  751. goto out_state;
  752. }
  753. /*
  754. * If TID is 0, then either the dying owner has not
  755. * yet executed exit_pi_state_list() or some waiter
  756. * acquired the rtmutex in the pi state, but did not
  757. * yet fixup the TID in user space.
  758. *
  759. * Take a ref on the state and return success. [6]
  760. */
  761. if (!pid)
  762. goto out_state;
  763. } else {
  764. /*
  765. * If the owner died bit is not set, then the pi_state
  766. * must have an owner. [7]
  767. */
  768. if (!pi_state->owner)
  769. return -EINVAL;
  770. }
  771. /*
  772. * Bail out if user space manipulated the futex value. If pi
  773. * state exists then the owner TID must be the same as the
  774. * user space TID. [9/10]
  775. */
  776. if (pid != task_pid_vnr(pi_state->owner))
  777. return -EINVAL;
  778. out_state:
  779. atomic_inc(&pi_state->refcount);
  780. *ps = pi_state;
  781. return 0;
  782. }
  783. /*
  784. * Lookup the task for the TID provided from user space and attach to
  785. * it after doing proper sanity checks.
  786. */
  787. static int attach_to_pi_owner(u32 uval, union futex_key *key,
  788. struct futex_pi_state **ps)
  789. {
  790. pid_t pid = uval & FUTEX_TID_MASK;
  791. struct futex_pi_state *pi_state;
  792. struct task_struct *p;
  793. /*
  794. * We are the first waiter - try to look up the real owner and attach
  795. * the new pi_state to it, but bail out when TID = 0 [1]
  796. */
  797. if (!pid)
  798. return -ESRCH;
  799. p = futex_find_get_task(pid);
  800. if (!p)
  801. return -ESRCH;
  802. if (!p->mm) {
  803. put_task_struct(p);
  804. return -EPERM;
  805. }
  806. /*
  807. * We need to look at the task state flags to figure out,
  808. * whether the task is exiting. To protect against the do_exit
  809. * change of the task flags, we do this protected by
  810. * p->pi_lock:
  811. */
  812. raw_spin_lock_irq(&p->pi_lock);
  813. if (unlikely(p->flags & PF_EXITING)) {
  814. /*
  815. * The task is on the way out. When PF_EXITPIDONE is
  816. * set, we know that the task has finished the
  817. * cleanup:
  818. */
  819. int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
  820. raw_spin_unlock_irq(&p->pi_lock);
  821. put_task_struct(p);
  822. return ret;
  823. }
  824. /*
  825. * No existing pi state. First waiter. [2]
  826. */
  827. pi_state = alloc_pi_state();
  828. /*
  829. * Initialize the pi_mutex in locked state and make @p
  830. * the owner of it:
  831. */
  832. rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
  833. /* Store the key for possible exit cleanups: */
  834. pi_state->key = *key;
  835. WARN_ON(!list_empty(&pi_state->list));
  836. list_add(&pi_state->list, &p->pi_state_list);
  837. pi_state->owner = p;
  838. raw_spin_unlock_irq(&p->pi_lock);
  839. put_task_struct(p);
  840. *ps = pi_state;
  841. return 0;
  842. }
  843. static int lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
  844. union futex_key *key, struct futex_pi_state **ps)
  845. {
  846. struct futex_q *match = futex_top_waiter(hb, key);
  847. /*
  848. * If there is a waiter on that futex, validate it and
  849. * attach to the pi_state when the validation succeeds.
  850. */
  851. if (match)
  852. return attach_to_pi_state(uval, match->pi_state, ps);
  853. /*
  854. * We are the first waiter - try to look up the owner based on
  855. * @uval and attach to it.
  856. */
  857. return attach_to_pi_owner(uval, key, ps);
  858. }
  859. static int lock_pi_update_atomic(u32 __user *uaddr, u32 uval, u32 newval)
  860. {
  861. u32 uninitialized_var(curval);
  862. if (unlikely(cmpxchg_futex_value_locked(&curval, uaddr, uval, newval)))
  863. return -EFAULT;
  864. /*If user space value changed, let the caller retry */
  865. return curval != uval ? -EAGAIN : 0;
  866. }
  867. /**
  868. * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex
  869. * @uaddr: the pi futex user address
  870. * @hb: the pi futex hash bucket
  871. * @key: the futex key associated with uaddr and hb
  872. * @ps: the pi_state pointer where we store the result of the
  873. * lookup
  874. * @task: the task to perform the atomic lock work for. This will
  875. * be "current" except in the case of requeue pi.
  876. * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
  877. *
  878. * Return:
  879. * 0 - ready to wait;
  880. * 1 - acquired the lock;
  881. * <0 - error
  882. *
  883. * The hb->lock and futex_key refs shall be held by the caller.
  884. */
  885. static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb,
  886. union futex_key *key,
  887. struct futex_pi_state **ps,
  888. struct task_struct *task, int set_waiters)
  889. {
  890. u32 uval, newval, vpid = task_pid_vnr(task);
  891. struct futex_q *match;
  892. int ret;
  893. /*
  894. * Read the user space value first so we can validate a few
  895. * things before proceeding further.
  896. */
  897. if (get_futex_value_locked(&uval, uaddr))
  898. return -EFAULT;
  899. /*
  900. * Detect deadlocks.
  901. */
  902. if ((unlikely((uval & FUTEX_TID_MASK) == vpid)))
  903. return -EDEADLK;
  904. /*
  905. * Lookup existing state first. If it exists, try to attach to
  906. * its pi_state.
  907. */
  908. match = futex_top_waiter(hb, key);
  909. if (match)
  910. return attach_to_pi_state(uval, match->pi_state, ps);
  911. /*
  912. * No waiter and user TID is 0. We are here because the
  913. * waiters or the owner died bit is set or called from
  914. * requeue_cmp_pi or for whatever reason something took the
  915. * syscall.
  916. */
  917. if (!(uval & FUTEX_TID_MASK)) {
  918. /*
  919. * We take over the futex. No other waiters and the user space
  920. * TID is 0. We preserve the owner died bit.
  921. */
  922. newval = uval & FUTEX_OWNER_DIED;
  923. newval |= vpid;
  924. /* The futex requeue_pi code can enforce the waiters bit */
  925. if (set_waiters)
  926. newval |= FUTEX_WAITERS;
  927. ret = lock_pi_update_atomic(uaddr, uval, newval);
  928. /* If the take over worked, return 1 */
  929. return ret < 0 ? ret : 1;
  930. }
  931. /*
  932. * First waiter. Set the waiters bit before attaching ourself to
  933. * the owner. If owner tries to unlock, it will be forced into
  934. * the kernel and blocked on hb->lock.
  935. */
  936. newval = uval | FUTEX_WAITERS;
  937. ret = lock_pi_update_atomic(uaddr, uval, newval);
  938. if (ret)
  939. return ret;
  940. /*
  941. * If the update of the user space value succeeded, we try to
  942. * attach to the owner. If that fails, no harm done, we only
  943. * set the FUTEX_WAITERS bit in the user space variable.
  944. */
  945. return attach_to_pi_owner(uval, key, ps);
  946. }
  947. /**
  948. * __unqueue_futex() - Remove the futex_q from its futex_hash_bucket
  949. * @q: The futex_q to unqueue
  950. *
  951. * The q->lock_ptr must not be NULL and must be held by the caller.
  952. */
  953. static void __unqueue_futex(struct futex_q *q)
  954. {
  955. struct futex_hash_bucket *hb;
  956. if (WARN_ON_SMP(!q->lock_ptr || !spin_is_locked(q->lock_ptr))
  957. || WARN_ON(plist_node_empty(&q->list)))
  958. return;
  959. hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock);
  960. plist_del(&q->list, &hb->chain);
  961. hb_waiters_dec(hb);
  962. }
  963. /*
  964. * The hash bucket lock must be held when this is called.
  965. * Afterwards, the futex_q must not be accessed.
  966. */
  967. static void wake_futex(struct futex_q *q)
  968. {
  969. struct task_struct *p = q->task;
  970. if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n"))
  971. return;
  972. /*
  973. * We set q->lock_ptr = NULL _before_ we wake up the task. If
  974. * a non-futex wake up happens on another CPU then the task
  975. * might exit and p would dereference a non-existing task
  976. * struct. Prevent this by holding a reference on p across the
  977. * wake up.
  978. */
  979. get_task_struct(p);
  980. __unqueue_futex(q);
  981. /*
  982. * The waiting task can free the futex_q as soon as
  983. * q->lock_ptr = NULL is written, without taking any locks. A
  984. * memory barrier is required here to prevent the following
  985. * store to lock_ptr from getting ahead of the plist_del.
  986. */
  987. smp_wmb();
  988. q->lock_ptr = NULL;
  989. wake_up_state(p, TASK_NORMAL);
  990. put_task_struct(p);
  991. }
  992. static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
  993. {
  994. struct task_struct *new_owner;
  995. struct futex_pi_state *pi_state = this->pi_state;
  996. u32 uninitialized_var(curval), newval;
  997. int ret = 0;
  998. if (!pi_state)
  999. return -EINVAL;
  1000. /*
  1001. * If current does not own the pi_state then the futex is
  1002. * inconsistent and user space fiddled with the futex value.
  1003. */
  1004. if (pi_state->owner != current)
  1005. return -EINVAL;
  1006. raw_spin_lock(&pi_state->pi_mutex.wait_lock);
  1007. new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
  1008. /*
  1009. * It is possible that the next waiter (the one that brought
  1010. * this owner to the kernel) timed out and is no longer
  1011. * waiting on the lock.
  1012. */
  1013. if (!new_owner)
  1014. new_owner = this->task;
  1015. /*
  1016. * We pass it to the next owner. The WAITERS bit is always
  1017. * kept enabled while there is PI state around. We cleanup the
  1018. * owner died bit, because we are the owner.
  1019. */
  1020. newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
  1021. if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
  1022. ret = -EFAULT;
  1023. else if (curval != uval)
  1024. ret = -EINVAL;
  1025. if (ret) {
  1026. raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
  1027. return ret;
  1028. }
  1029. raw_spin_lock_irq(&pi_state->owner->pi_lock);
  1030. WARN_ON(list_empty(&pi_state->list));
  1031. list_del_init(&pi_state->list);
  1032. raw_spin_unlock_irq(&pi_state->owner->pi_lock);
  1033. raw_spin_lock_irq(&new_owner->pi_lock);
  1034. WARN_ON(!list_empty(&pi_state->list));
  1035. list_add(&pi_state->list, &new_owner->pi_state_list);
  1036. pi_state->owner = new_owner;
  1037. raw_spin_unlock_irq(&new_owner->pi_lock);
  1038. raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
  1039. rt_mutex_unlock(&pi_state->pi_mutex);
  1040. return 0;
  1041. }
  1042. /*
  1043. * Express the locking dependencies for lockdep:
  1044. */
  1045. static inline void
  1046. double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
  1047. {
  1048. if (hb1 <= hb2) {
  1049. spin_lock(&hb1->lock);
  1050. if (hb1 < hb2)
  1051. spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
  1052. } else { /* hb1 > hb2 */
  1053. spin_lock(&hb2->lock);
  1054. spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
  1055. }
  1056. }
  1057. static inline void
  1058. double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
  1059. {
  1060. spin_unlock(&hb1->lock);
  1061. if (hb1 != hb2)
  1062. spin_unlock(&hb2->lock);
  1063. }
  1064. /*
  1065. * Wake up waiters matching bitset queued on this futex (uaddr).
  1066. */
  1067. static int
  1068. futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset)
  1069. {
  1070. struct futex_hash_bucket *hb;
  1071. struct futex_q *this, *next;
  1072. union futex_key key = FUTEX_KEY_INIT;
  1073. int ret;
  1074. if (!bitset)
  1075. return -EINVAL;
  1076. ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_READ);
  1077. if (unlikely(ret != 0))
  1078. goto out;
  1079. hb = hash_futex(&key);
  1080. /* Make sure we really have tasks to wakeup */
  1081. if (!hb_waiters_pending(hb))
  1082. goto out_put_key;
  1083. spin_lock(&hb->lock);
  1084. plist_for_each_entry_safe(this, next, &hb->chain, list) {
  1085. if (match_futex (&this->key, &key)) {
  1086. if (this->pi_state || this->rt_waiter) {
  1087. ret = -EINVAL;
  1088. break;
  1089. }
  1090. /* Check if one of the bits is set in both bitsets */
  1091. if (!(this->bitset & bitset))
  1092. continue;
  1093. wake_futex(this);
  1094. if (++ret >= nr_wake)
  1095. break;
  1096. }
  1097. }
  1098. spin_unlock(&hb->lock);
  1099. out_put_key:
  1100. put_futex_key(&key);
  1101. out:
  1102. return ret;
  1103. }
  1104. /*
  1105. * Wake up all waiters hashed on the physical page that is mapped
  1106. * to this virtual address:
  1107. */
  1108. static int
  1109. futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2,
  1110. int nr_wake, int nr_wake2, int op)
  1111. {
  1112. union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
  1113. struct futex_hash_bucket *hb1, *hb2;
  1114. struct futex_q *this, *next;
  1115. int ret, op_ret;
  1116. retry:
  1117. ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
  1118. if (unlikely(ret != 0))
  1119. goto out;
  1120. ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
  1121. if (unlikely(ret != 0))
  1122. goto out_put_key1;
  1123. hb1 = hash_futex(&key1);
  1124. hb2 = hash_futex(&key2);
  1125. retry_private:
  1126. double_lock_hb(hb1, hb2);
  1127. op_ret = futex_atomic_op_inuser(op, uaddr2);
  1128. if (unlikely(op_ret < 0)) {
  1129. double_unlock_hb(hb1, hb2);
  1130. #ifndef CONFIG_MMU
  1131. /*
  1132. * we don't get EFAULT from MMU faults if we don't have an MMU,
  1133. * but we might get them from range checking
  1134. */
  1135. ret = op_ret;
  1136. goto out_put_keys;
  1137. #endif
  1138. if (unlikely(op_ret != -EFAULT)) {
  1139. ret = op_ret;
  1140. goto out_put_keys;
  1141. }
  1142. ret = fault_in_user_writeable(uaddr2);
  1143. if (ret)
  1144. goto out_put_keys;
  1145. if (!(flags & FLAGS_SHARED))
  1146. goto retry_private;
  1147. put_futex_key(&key2);
  1148. put_futex_key(&key1);
  1149. goto retry;
  1150. }
  1151. plist_for_each_entry_safe(this, next, &hb1->chain, list) {
  1152. if (match_futex (&this->key, &key1)) {
  1153. if (this->pi_state || this->rt_waiter) {
  1154. ret = -EINVAL;
  1155. goto out_unlock;
  1156. }
  1157. wake_futex(this);
  1158. if (++ret >= nr_wake)
  1159. break;
  1160. }
  1161. }
  1162. if (op_ret > 0) {
  1163. op_ret = 0;
  1164. plist_for_each_entry_safe(this, next, &hb2->chain, list) {
  1165. if (match_futex (&this->key, &key2)) {
  1166. if (this->pi_state || this->rt_waiter) {
  1167. ret = -EINVAL;
  1168. goto out_unlock;
  1169. }
  1170. wake_futex(this);
  1171. if (++op_ret >= nr_wake2)
  1172. break;
  1173. }
  1174. }
  1175. ret += op_ret;
  1176. }
  1177. out_unlock:
  1178. double_unlock_hb(hb1, hb2);
  1179. out_put_keys:
  1180. put_futex_key(&key2);
  1181. out_put_key1:
  1182. put_futex_key(&key1);
  1183. out:
  1184. return ret;
  1185. }
  1186. /**
  1187. * requeue_futex() - Requeue a futex_q from one hb to another
  1188. * @q: the futex_q to requeue
  1189. * @hb1: the source hash_bucket
  1190. * @hb2: the target hash_bucket
  1191. * @key2: the new key for the requeued futex_q
  1192. */
  1193. static inline
  1194. void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
  1195. struct futex_hash_bucket *hb2, union futex_key *key2)
  1196. {
  1197. /*
  1198. * If key1 and key2 hash to the same bucket, no need to
  1199. * requeue.
  1200. */
  1201. if (likely(&hb1->chain != &hb2->chain)) {
  1202. plist_del(&q->list, &hb1->chain);
  1203. hb_waiters_dec(hb1);
  1204. plist_add(&q->list, &hb2->chain);
  1205. hb_waiters_inc(hb2);
  1206. q->lock_ptr = &hb2->lock;
  1207. }
  1208. get_futex_key_refs(key2);
  1209. q->key = *key2;
  1210. }
  1211. /**
  1212. * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
  1213. * @q: the futex_q
  1214. * @key: the key of the requeue target futex
  1215. * @hb: the hash_bucket of the requeue target futex
  1216. *
  1217. * During futex_requeue, with requeue_pi=1, it is possible to acquire the
  1218. * target futex if it is uncontended or via a lock steal. Set the futex_q key
  1219. * to the requeue target futex so the waiter can detect the wakeup on the right
  1220. * futex, but remove it from the hb and NULL the rt_waiter so it can detect
  1221. * atomic lock acquisition. Set the q->lock_ptr to the requeue target hb->lock
  1222. * to protect access to the pi_state to fixup the owner later. Must be called
  1223. * with both q->lock_ptr and hb->lock held.
  1224. */
  1225. static inline
  1226. void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key,
  1227. struct futex_hash_bucket *hb)
  1228. {
  1229. get_futex_key_refs(key);
  1230. q->key = *key;
  1231. __unqueue_futex(q);
  1232. WARN_ON(!q->rt_waiter);
  1233. q->rt_waiter = NULL;
  1234. q->lock_ptr = &hb->lock;
  1235. wake_up_state(q->task, TASK_NORMAL);
  1236. }
  1237. /**
  1238. * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
  1239. * @pifutex: the user address of the to futex
  1240. * @hb1: the from futex hash bucket, must be locked by the caller
  1241. * @hb2: the to futex hash bucket, must be locked by the caller
  1242. * @key1: the from futex key
  1243. * @key2: the to futex key
  1244. * @ps: address to store the pi_state pointer
  1245. * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
  1246. *
  1247. * Try and get the lock on behalf of the top waiter if we can do it atomically.
  1248. * Wake the top waiter if we succeed. If the caller specified set_waiters,
  1249. * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
  1250. * hb1 and hb2 must be held by the caller.
  1251. *
  1252. * Return:
  1253. * 0 - failed to acquire the lock atomically;
  1254. * >0 - acquired the lock, return value is vpid of the top_waiter
  1255. * <0 - error
  1256. */
  1257. static int futex_proxy_trylock_atomic(u32 __user *pifutex,
  1258. struct futex_hash_bucket *hb1,
  1259. struct futex_hash_bucket *hb2,
  1260. union futex_key *key1, union futex_key *key2,
  1261. struct futex_pi_state **ps, int set_waiters)
  1262. {
  1263. struct futex_q *top_waiter = NULL;
  1264. u32 curval;
  1265. int ret, vpid;
  1266. if (get_futex_value_locked(&curval, pifutex))
  1267. return -EFAULT;
  1268. /*
  1269. * Find the top_waiter and determine if there are additional waiters.
  1270. * If the caller intends to requeue more than 1 waiter to pifutex,
  1271. * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
  1272. * as we have means to handle the possible fault. If not, don't set
  1273. * the bit unecessarily as it will force the subsequent unlock to enter
  1274. * the kernel.
  1275. */
  1276. top_waiter = futex_top_waiter(hb1, key1);
  1277. /* There are no waiters, nothing for us to do. */
  1278. if (!top_waiter)
  1279. return 0;
  1280. /* Ensure we requeue to the expected futex. */
  1281. if (!match_futex(top_waiter->requeue_pi_key, key2))
  1282. return -EINVAL;
  1283. /*
  1284. * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in
  1285. * the contended case or if set_waiters is 1. The pi_state is returned
  1286. * in ps in contended cases.
  1287. */
  1288. vpid = task_pid_vnr(top_waiter->task);
  1289. ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
  1290. set_waiters);
  1291. if (ret == 1) {
  1292. requeue_pi_wake_futex(top_waiter, key2, hb2);
  1293. return vpid;
  1294. }
  1295. return ret;
  1296. }
  1297. /**
  1298. * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
  1299. * @uaddr1: source futex user address
  1300. * @flags: futex flags (FLAGS_SHARED, etc.)
  1301. * @uaddr2: target futex user address
  1302. * @nr_wake: number of waiters to wake (must be 1 for requeue_pi)
  1303. * @nr_requeue: number of waiters to requeue (0-INT_MAX)
  1304. * @cmpval: @uaddr1 expected value (or %NULL)
  1305. * @requeue_pi: if we are attempting to requeue from a non-pi futex to a
  1306. * pi futex (pi to pi requeue is not supported)
  1307. *
  1308. * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
  1309. * uaddr2 atomically on behalf of the top waiter.
  1310. *
  1311. * Return:
  1312. * >=0 - on success, the number of tasks requeued or woken;
  1313. * <0 - on error
  1314. */
  1315. static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
  1316. u32 __user *uaddr2, int nr_wake, int nr_requeue,
  1317. u32 *cmpval, int requeue_pi)
  1318. {
  1319. union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
  1320. int drop_count = 0, task_count = 0, ret;
  1321. struct futex_pi_state *pi_state = NULL;
  1322. struct futex_hash_bucket *hb1, *hb2;
  1323. struct futex_q *this, *next;
  1324. if (requeue_pi) {
  1325. /*
  1326. * Requeue PI only works on two distinct uaddrs. This
  1327. * check is only valid for private futexes. See below.
  1328. */
  1329. if (uaddr1 == uaddr2)
  1330. return -EINVAL;
  1331. /*
  1332. * requeue_pi requires a pi_state, try to allocate it now
  1333. * without any locks in case it fails.
  1334. */
  1335. if (refill_pi_state_cache())
  1336. return -ENOMEM;
  1337. /*
  1338. * requeue_pi must wake as many tasks as it can, up to nr_wake
  1339. * + nr_requeue, since it acquires the rt_mutex prior to
  1340. * returning to userspace, so as to not leave the rt_mutex with
  1341. * waiters and no owner. However, second and third wake-ups
  1342. * cannot be predicted as they involve race conditions with the
  1343. * first wake and a fault while looking up the pi_state. Both
  1344. * pthread_cond_signal() and pthread_cond_broadcast() should
  1345. * use nr_wake=1.
  1346. */
  1347. if (nr_wake != 1)
  1348. return -EINVAL;
  1349. }
  1350. retry:
  1351. if (pi_state != NULL) {
  1352. /*
  1353. * We will have to lookup the pi_state again, so free this one
  1354. * to keep the accounting correct.
  1355. */
  1356. free_pi_state(pi_state);
  1357. pi_state = NULL;
  1358. }
  1359. ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
  1360. if (unlikely(ret != 0))
  1361. goto out;
  1362. ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2,
  1363. requeue_pi ? VERIFY_WRITE : VERIFY_READ);
  1364. if (unlikely(ret != 0))
  1365. goto out_put_key1;
  1366. /*
  1367. * The check above which compares uaddrs is not sufficient for
  1368. * shared futexes. We need to compare the keys:
  1369. */
  1370. if (requeue_pi && match_futex(&key1, &key2)) {
  1371. ret = -EINVAL;
  1372. goto out_put_keys;
  1373. }
  1374. hb1 = hash_futex(&key1);
  1375. hb2 = hash_futex(&key2);
  1376. retry_private:
  1377. hb_waiters_inc(hb2);
  1378. double_lock_hb(hb1, hb2);
  1379. if (likely(cmpval != NULL)) {
  1380. u32 curval;
  1381. ret = get_futex_value_locked(&curval, uaddr1);
  1382. if (unlikely(ret)) {
  1383. double_unlock_hb(hb1, hb2);
  1384. hb_waiters_dec(hb2);
  1385. ret = get_user(curval, uaddr1);
  1386. if (ret)
  1387. goto out_put_keys;
  1388. if (!(flags & FLAGS_SHARED))
  1389. goto retry_private;
  1390. put_futex_key(&key2);
  1391. put_futex_key(&key1);
  1392. goto retry;
  1393. }
  1394. if (curval != *cmpval) {
  1395. ret = -EAGAIN;
  1396. goto out_unlock;
  1397. }
  1398. }
  1399. if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
  1400. /*
  1401. * Attempt to acquire uaddr2 and wake the top waiter. If we
  1402. * intend to requeue waiters, force setting the FUTEX_WAITERS
  1403. * bit. We force this here where we are able to easily handle
  1404. * faults rather in the requeue loop below.
  1405. */
  1406. ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
  1407. &key2, &pi_state, nr_requeue);
  1408. /*
  1409. * At this point the top_waiter has either taken uaddr2 or is
  1410. * waiting on it. If the former, then the pi_state will not
  1411. * exist yet, look it up one more time to ensure we have a
  1412. * reference to it. If the lock was taken, ret contains the
  1413. * vpid of the top waiter task.
  1414. */
  1415. if (ret > 0) {
  1416. WARN_ON(pi_state);
  1417. drop_count++;
  1418. task_count++;
  1419. /*
  1420. * If we acquired the lock, then the user
  1421. * space value of uaddr2 should be vpid. It
  1422. * cannot be changed by the top waiter as it
  1423. * is blocked on hb2 lock if it tries to do
  1424. * so. If something fiddled with it behind our
  1425. * back the pi state lookup might unearth
  1426. * it. So we rather use the known value than
  1427. * rereading and handing potential crap to
  1428. * lookup_pi_state.
  1429. */
  1430. ret = lookup_pi_state(ret, hb2, &key2, &pi_state);
  1431. }
  1432. switch (ret) {
  1433. case 0:
  1434. break;
  1435. case -EFAULT:
  1436. double_unlock_hb(hb1, hb2);
  1437. hb_waiters_dec(hb2);
  1438. put_futex_key(&key2);
  1439. put_futex_key(&key1);
  1440. ret = fault_in_user_writeable(uaddr2);
  1441. if (!ret)
  1442. goto retry;
  1443. goto out;
  1444. case -EAGAIN:
  1445. /*
  1446. * Two reasons for this:
  1447. * - Owner is exiting and we just wait for the
  1448. * exit to complete.
  1449. * - The user space value changed.
  1450. */
  1451. double_unlock_hb(hb1, hb2);
  1452. hb_waiters_dec(hb2);
  1453. put_futex_key(&key2);
  1454. put_futex_key(&key1);
  1455. cond_resched();
  1456. goto retry;
  1457. default:
  1458. goto out_unlock;
  1459. }
  1460. }
  1461. plist_for_each_entry_safe(this, next, &hb1->chain, list) {
  1462. if (task_count - nr_wake >= nr_requeue)
  1463. break;
  1464. if (!match_futex(&this->key, &key1))
  1465. continue;
  1466. /*
  1467. * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always
  1468. * be paired with each other and no other futex ops.
  1469. *
  1470. * We should never be requeueing a futex_q with a pi_state,
  1471. * which is awaiting a futex_unlock_pi().
  1472. */
  1473. if ((requeue_pi && !this->rt_waiter) ||
  1474. (!requeue_pi && this->rt_waiter) ||
  1475. this->pi_state) {
  1476. ret = -EINVAL;
  1477. break;
  1478. }
  1479. /*
  1480. * Wake nr_wake waiters. For requeue_pi, if we acquired the
  1481. * lock, we already woke the top_waiter. If not, it will be
  1482. * woken by futex_unlock_pi().
  1483. */
  1484. if (++task_count <= nr_wake && !requeue_pi) {
  1485. wake_futex(this);
  1486. continue;
  1487. }
  1488. /* Ensure we requeue to the expected futex for requeue_pi. */
  1489. if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) {
  1490. ret = -EINVAL;
  1491. break;
  1492. }
  1493. /*
  1494. * Requeue nr_requeue waiters and possibly one more in the case
  1495. * of requeue_pi if we couldn't acquire the lock atomically.
  1496. */
  1497. if (requeue_pi) {
  1498. /* Prepare the waiter to take the rt_mutex. */
  1499. atomic_inc(&pi_state->refcount);
  1500. this->pi_state = pi_state;
  1501. ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
  1502. this->rt_waiter,
  1503. this->task);
  1504. if (ret == 1) {
  1505. /* We got the lock. */
  1506. requeue_pi_wake_futex(this, &key2, hb2);
  1507. drop_count++;
  1508. continue;
  1509. } else if (ret) {
  1510. /* -EDEADLK */
  1511. this->pi_state = NULL;
  1512. free_pi_state(pi_state);
  1513. goto out_unlock;
  1514. }
  1515. }
  1516. requeue_futex(this, hb1, hb2, &key2);
  1517. drop_count++;
  1518. }
  1519. out_unlock:
  1520. double_unlock_hb(hb1, hb2);
  1521. hb_waiters_dec(hb2);
  1522. /*
  1523. * drop_futex_key_refs() must be called outside the spinlocks. During
  1524. * the requeue we moved futex_q's from the hash bucket at key1 to the
  1525. * one at key2 and updated their key pointer. We no longer need to
  1526. * hold the references to key1.
  1527. */
  1528. while (--drop_count >= 0)
  1529. drop_futex_key_refs(&key1);
  1530. out_put_keys:
  1531. put_futex_key(&key2);
  1532. out_put_key1:
  1533. put_futex_key(&key1);
  1534. out:
  1535. if (pi_state != NULL)
  1536. free_pi_state(pi_state);
  1537. return ret ? ret : task_count;
  1538. }
  1539. /* The key must be already stored in q->key. */
  1540. static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
  1541. __acquires(&hb->lock)
  1542. {
  1543. struct futex_hash_bucket *hb;
  1544. hb = hash_futex(&q->key);
  1545. /*
  1546. * Increment the counter before taking the lock so that
  1547. * a potential waker won't miss a to-be-slept task that is
  1548. * waiting for the spinlock. This is safe as all queue_lock()
  1549. * users end up calling queue_me(). Similarly, for housekeeping,
  1550. * decrement the counter at queue_unlock() when some error has
  1551. * occurred and we don't end up adding the task to the list.
  1552. */
  1553. hb_waiters_inc(hb);
  1554. q->lock_ptr = &hb->lock;
  1555. spin_lock(&hb->lock); /* implies MB (A) */
  1556. return hb;
  1557. }
  1558. static inline void
  1559. queue_unlock(struct futex_hash_bucket *hb)
  1560. __releases(&hb->lock)
  1561. {
  1562. spin_unlock(&hb->lock);
  1563. hb_waiters_dec(hb);
  1564. }
  1565. /**
  1566. * queue_me() - Enqueue the futex_q on the futex_hash_bucket
  1567. * @q: The futex_q to enqueue
  1568. * @hb: The destination hash bucket
  1569. *
  1570. * The hb->lock must be held by the caller, and is released here. A call to
  1571. * queue_me() is typically paired with exactly one call to unqueue_me(). The
  1572. * exceptions involve the PI related operations, which may use unqueue_me_pi()
  1573. * or nothing if the unqueue is done as part of the wake process and the unqueue
  1574. * state is implicit in the state of woken task (see futex_wait_requeue_pi() for
  1575. * an example).
  1576. */
  1577. static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
  1578. __releases(&hb->lock)
  1579. {
  1580. int prio;
  1581. /*
  1582. * The priority used to register this element is
  1583. * - either the real thread-priority for the real-time threads
  1584. * (i.e. threads with a priority lower than MAX_RT_PRIO)
  1585. * - or MAX_RT_PRIO for non-RT threads.
  1586. * Thus, all RT-threads are woken first in priority order, and
  1587. * the others are woken last, in FIFO order.
  1588. */
  1589. prio = min(current->normal_prio, MAX_RT_PRIO);
  1590. plist_node_init(&q->list, prio);
  1591. plist_add(&q->list, &hb->chain);
  1592. q->task = current;
  1593. spin_unlock(&hb->lock);
  1594. }
  1595. /**
  1596. * unqueue_me() - Remove the futex_q from its futex_hash_bucket
  1597. * @q: The futex_q to unqueue
  1598. *
  1599. * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must
  1600. * be paired with exactly one earlier call to queue_me().
  1601. *
  1602. * Return:
  1603. * 1 - if the futex_q was still queued (and we removed unqueued it);
  1604. * 0 - if the futex_q was already removed by the waking thread
  1605. */
  1606. static int unqueue_me(struct futex_q *q)
  1607. {
  1608. spinlock_t *lock_ptr;
  1609. int ret = 0;
  1610. /* In the common case we don't take the spinlock, which is nice. */
  1611. retry:
  1612. lock_ptr = q->lock_ptr;
  1613. barrier();
  1614. if (lock_ptr != NULL) {
  1615. spin_lock(lock_ptr);
  1616. /*
  1617. * q->lock_ptr can change between reading it and
  1618. * spin_lock(), causing us to take the wrong lock. This
  1619. * corrects the race condition.
  1620. *
  1621. * Reasoning goes like this: if we have the wrong lock,
  1622. * q->lock_ptr must have changed (maybe several times)
  1623. * between reading it and the spin_lock(). It can
  1624. * change again after the spin_lock() but only if it was
  1625. * already changed before the spin_lock(). It cannot,
  1626. * however, change back to the original value. Therefore
  1627. * we can detect whether we acquired the correct lock.
  1628. */
  1629. if (unlikely(lock_ptr != q->lock_ptr)) {
  1630. spin_unlock(lock_ptr);
  1631. goto retry;
  1632. }
  1633. __unqueue_futex(q);
  1634. BUG_ON(q->pi_state);
  1635. spin_unlock(lock_ptr);
  1636. ret = 1;
  1637. }
  1638. drop_futex_key_refs(&q->key);
  1639. return ret;
  1640. }
  1641. /*
  1642. * PI futexes can not be requeued and must remove themself from the
  1643. * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
  1644. * and dropped here.
  1645. */
  1646. static void unqueue_me_pi(struct futex_q *q)
  1647. __releases(q->lock_ptr)
  1648. {
  1649. __unqueue_futex(q);
  1650. BUG_ON(!q->pi_state);
  1651. free_pi_state(q->pi_state);
  1652. q->pi_state = NULL;
  1653. spin_unlock(q->lock_ptr);
  1654. }
  1655. /*
  1656. * Fixup the pi_state owner with the new owner.
  1657. *
  1658. * Must be called with hash bucket lock held and mm->sem held for non
  1659. * private futexes.
  1660. */
  1661. static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
  1662. struct task_struct *newowner)
  1663. {
  1664. u32 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
  1665. struct futex_pi_state *pi_state = q->pi_state;
  1666. struct task_struct *oldowner = pi_state->owner;
  1667. u32 uval, uninitialized_var(curval), newval;
  1668. int ret;
  1669. /* Owner died? */
  1670. if (!pi_state->owner)
  1671. newtid |= FUTEX_OWNER_DIED;
  1672. /*
  1673. * We are here either because we stole the rtmutex from the
  1674. * previous highest priority waiter or we are the highest priority
  1675. * waiter but failed to get the rtmutex the first time.
  1676. * We have to replace the newowner TID in the user space variable.
  1677. * This must be atomic as we have to preserve the owner died bit here.
  1678. *
  1679. * Note: We write the user space value _before_ changing the pi_state
  1680. * because we can fault here. Imagine swapped out pages or a fork
  1681. * that marked all the anonymous memory readonly for cow.
  1682. *
  1683. * Modifying pi_state _before_ the user space value would
  1684. * leave the pi_state in an inconsistent state when we fault
  1685. * here, because we need to drop the hash bucket lock to
  1686. * handle the fault. This might be observed in the PID check
  1687. * in lookup_pi_state.
  1688. */
  1689. retry:
  1690. if (get_futex_value_locked(&uval, uaddr))
  1691. goto handle_fault;
  1692. while (1) {
  1693. newval = (uval & FUTEX_OWNER_DIED) | newtid;
  1694. if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
  1695. goto handle_fault;
  1696. if (curval == uval)
  1697. break;
  1698. uval = curval;
  1699. }
  1700. /*
  1701. * We fixed up user space. Now we need to fix the pi_state
  1702. * itself.
  1703. */
  1704. if (pi_state->owner != NULL) {
  1705. raw_spin_lock_irq(&pi_state->owner->pi_lock);
  1706. WARN_ON(list_empty(&pi_state->list));
  1707. list_del_init(&pi_state->list);
  1708. raw_spin_unlock_irq(&pi_state->owner->pi_lock);
  1709. }
  1710. pi_state->owner = newowner;
  1711. raw_spin_lock_irq(&newowner->pi_lock);
  1712. WARN_ON(!list_empty(&pi_state->list));
  1713. list_add(&pi_state->list, &newowner->pi_state_list);
  1714. raw_spin_unlock_irq(&newowner->pi_lock);
  1715. return 0;
  1716. /*
  1717. * To handle the page fault we need to drop the hash bucket
  1718. * lock here. That gives the other task (either the highest priority
  1719. * waiter itself or the task which stole the rtmutex) the
  1720. * chance to try the fixup of the pi_state. So once we are
  1721. * back from handling the fault we need to check the pi_state
  1722. * after reacquiring the hash bucket lock and before trying to
  1723. * do another fixup. When the fixup has been done already we
  1724. * simply return.
  1725. */
  1726. handle_fault:
  1727. spin_unlock(q->lock_ptr);
  1728. ret = fault_in_user_writeable(uaddr);
  1729. spin_lock(q->lock_ptr);
  1730. /*
  1731. * Check if someone else fixed it for us:
  1732. */
  1733. if (pi_state->owner != oldowner)
  1734. return 0;
  1735. if (ret)
  1736. return ret;
  1737. goto retry;
  1738. }
  1739. static long futex_wait_restart(struct restart_block *restart);
  1740. /**
  1741. * fixup_owner() - Post lock pi_state and corner case management
  1742. * @uaddr: user address of the futex
  1743. * @q: futex_q (contains pi_state and access to the rt_mutex)
  1744. * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0)
  1745. *
  1746. * After attempting to lock an rt_mutex, this function is called to cleanup
  1747. * the pi_state owner as well as handle race conditions that may allow us to
  1748. * acquire the lock. Must be called with the hb lock held.
  1749. *
  1750. * Return:
  1751. * 1 - success, lock taken;
  1752. * 0 - success, lock not taken;
  1753. * <0 - on error (-EFAULT)
  1754. */
  1755. static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked)
  1756. {
  1757. struct task_struct *owner;
  1758. int ret = 0;
  1759. if (locked) {
  1760. /*
  1761. * Got the lock. We might not be the anticipated owner if we
  1762. * did a lock-steal - fix up the PI-state in that case:
  1763. */
  1764. if (q->pi_state->owner != current)
  1765. ret = fixup_pi_state_owner(uaddr, q, current);
  1766. goto out;
  1767. }
  1768. /*
  1769. * Catch the rare case, where the lock was released when we were on the
  1770. * way back before we locked the hash bucket.
  1771. */
  1772. if (q->pi_state->owner == current) {
  1773. /*
  1774. * Try to get the rt_mutex now. This might fail as some other
  1775. * task acquired the rt_mutex after we removed ourself from the
  1776. * rt_mutex waiters list.
  1777. */
  1778. if (rt_mutex_trylock(&q->pi_state->pi_mutex)) {
  1779. locked = 1;
  1780. goto out;
  1781. }
  1782. /*
  1783. * pi_state is incorrect, some other task did a lock steal and
  1784. * we returned due to timeout or signal without taking the
  1785. * rt_mutex. Too late.
  1786. */
  1787. raw_spin_lock(&q->pi_state->pi_mutex.wait_lock);
  1788. owner = rt_mutex_owner(&q->pi_state->pi_mutex);
  1789. if (!owner)
  1790. owner = rt_mutex_next_owner(&q->pi_state->pi_mutex);
  1791. raw_spin_unlock(&q->pi_state->pi_mutex.wait_lock);
  1792. ret = fixup_pi_state_owner(uaddr, q, owner);
  1793. goto out;
  1794. }
  1795. /*
  1796. * Paranoia check. If we did not take the lock, then we should not be
  1797. * the owner of the rt_mutex.
  1798. */
  1799. if (rt_mutex_owner(&q->pi_state->pi_mutex) == current)
  1800. printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
  1801. "pi-state %p\n", ret,
  1802. q->pi_state->pi_mutex.owner,
  1803. q->pi_state->owner);
  1804. out:
  1805. return ret ? ret : locked;
  1806. }
  1807. /**
  1808. * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
  1809. * @hb: the futex hash bucket, must be locked by the caller
  1810. * @q: the futex_q to queue up on
  1811. * @timeout: the prepared hrtimer_sleeper, or null for no timeout
  1812. */
  1813. static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
  1814. struct hrtimer_sleeper *timeout)
  1815. {
  1816. /*
  1817. * The task state is guaranteed to be set before another task can
  1818. * wake it. set_current_state() is implemented using set_mb() and
  1819. * queue_me() calls spin_unlock() upon completion, both serializing
  1820. * access to the hash list and forcing another memory barrier.
  1821. */
  1822. set_current_state(TASK_INTERRUPTIBLE);
  1823. queue_me(q, hb);
  1824. /* Arm the timer */
  1825. if (timeout) {
  1826. hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
  1827. if (!hrtimer_active(&timeout->timer))
  1828. timeout->task = NULL;
  1829. }
  1830. /*
  1831. * If we have been removed from the hash list, then another task
  1832. * has tried to wake us, and we can skip the call to schedule().
  1833. */
  1834. if (likely(!plist_node_empty(&q->list))) {
  1835. /*
  1836. * If the timer has already expired, current will already be
  1837. * flagged for rescheduling. Only call schedule if there
  1838. * is no timeout, or if it has yet to expire.
  1839. */
  1840. if (!timeout || timeout->task)
  1841. freezable_schedule();
  1842. }
  1843. __set_current_state(TASK_RUNNING);
  1844. }
  1845. /**
  1846. * futex_wait_setup() - Prepare to wait on a futex
  1847. * @uaddr: the futex userspace address
  1848. * @val: the expected value
  1849. * @flags: futex flags (FLAGS_SHARED, etc.)
  1850. * @q: the associated futex_q
  1851. * @hb: storage for hash_bucket pointer to be returned to caller
  1852. *
  1853. * Setup the futex_q and locate the hash_bucket. Get the futex value and
  1854. * compare it with the expected value. Handle atomic faults internally.
  1855. * Return with the hb lock held and a q.key reference on success, and unlocked
  1856. * with no q.key reference on failure.
  1857. *
  1858. * Return:
  1859. * 0 - uaddr contains val and hb has been locked;
  1860. * <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked
  1861. */
  1862. static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags,
  1863. struct futex_q *q, struct futex_hash_bucket **hb)
  1864. {
  1865. u32 uval;
  1866. int ret;
  1867. /*
  1868. * Access the page AFTER the hash-bucket is locked.
  1869. * Order is important:
  1870. *
  1871. * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
  1872. * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
  1873. *
  1874. * The basic logical guarantee of a futex is that it blocks ONLY
  1875. * if cond(var) is known to be true at the time of blocking, for
  1876. * any cond. If we locked the hash-bucket after testing *uaddr, that
  1877. * would open a race condition where we could block indefinitely with
  1878. * cond(var) false, which would violate the guarantee.
  1879. *
  1880. * On the other hand, we insert q and release the hash-bucket only
  1881. * after testing *uaddr. This guarantees that futex_wait() will NOT
  1882. * absorb a wakeup if *uaddr does not match the desired values
  1883. * while the syscall executes.
  1884. */
  1885. retry:
  1886. ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, VERIFY_READ);
  1887. if (unlikely(ret != 0))
  1888. return ret;
  1889. retry_private:
  1890. *hb = queue_lock(q);
  1891. ret = get_futex_value_locked(&uval, uaddr);
  1892. if (ret) {
  1893. queue_unlock(*hb);
  1894. ret = get_user(uval, uaddr);
  1895. if (ret)
  1896. goto out;
  1897. if (!(flags & FLAGS_SHARED))
  1898. goto retry_private;
  1899. put_futex_key(&q->key);
  1900. goto retry;
  1901. }
  1902. if (uval != val) {
  1903. queue_unlock(*hb);
  1904. ret = -EWOULDBLOCK;
  1905. }
  1906. out:
  1907. if (ret)
  1908. put_futex_key(&q->key);
  1909. return ret;
  1910. }
  1911. static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
  1912. ktime_t *abs_time, u32 bitset)
  1913. {
  1914. struct hrtimer_sleeper timeout, *to = NULL;
  1915. struct restart_block *restart;
  1916. struct futex_hash_bucket *hb;
  1917. struct futex_q q = futex_q_init;
  1918. int ret;
  1919. if (!bitset)
  1920. return -EINVAL;
  1921. q.bitset = bitset;
  1922. if (abs_time) {
  1923. to = &timeout;
  1924. hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
  1925. CLOCK_REALTIME : CLOCK_MONOTONIC,
  1926. HRTIMER_MODE_ABS);
  1927. hrtimer_init_sleeper(to, current);
  1928. hrtimer_set_expires_range_ns(&to->timer, *abs_time,
  1929. current->timer_slack_ns);
  1930. }
  1931. retry:
  1932. /*
  1933. * Prepare to wait on uaddr. On success, holds hb lock and increments
  1934. * q.key refs.
  1935. */
  1936. ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
  1937. if (ret)
  1938. goto out;
  1939. /* queue_me and wait for wakeup, timeout, or a signal. */
  1940. futex_wait_queue_me(hb, &q, to);
  1941. /* If we were woken (and unqueued), we succeeded, whatever. */
  1942. ret = 0;
  1943. /* unqueue_me() drops q.key ref */
  1944. if (!unqueue_me(&q))
  1945. goto out;
  1946. ret = -ETIMEDOUT;
  1947. if (to && !to->task)
  1948. goto out;
  1949. /*
  1950. * We expect signal_pending(current), but we might be the
  1951. * victim of a spurious wakeup as well.
  1952. */
  1953. if (!signal_pending(current))
  1954. goto retry;
  1955. ret = -ERESTARTSYS;
  1956. if (!abs_time)
  1957. goto out;
  1958. restart = &current_thread_info()->restart_block;
  1959. restart->fn = futex_wait_restart;
  1960. restart->futex.uaddr = uaddr;
  1961. restart->futex.val = val;
  1962. restart->futex.time = abs_time->tv64;
  1963. restart->futex.bitset = bitset;
  1964. restart->futex.flags = flags | FLAGS_HAS_TIMEOUT;
  1965. ret = -ERESTART_RESTARTBLOCK;
  1966. out:
  1967. if (to) {
  1968. hrtimer_cancel(&to->timer);
  1969. destroy_hrtimer_on_stack(&to->timer);
  1970. }
  1971. return ret;
  1972. }
  1973. static long futex_wait_restart(struct restart_block *restart)
  1974. {
  1975. u32 __user *uaddr = restart->futex.uaddr;
  1976. ktime_t t, *tp = NULL;
  1977. if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
  1978. t.tv64 = restart->futex.time;
  1979. tp = &t;
  1980. }
  1981. restart->fn = do_no_restart_syscall;
  1982. return (long)futex_wait(uaddr, restart->futex.flags,
  1983. restart->futex.val, tp, restart->futex.bitset);
  1984. }
  1985. /*
  1986. * Userspace tried a 0 -> TID atomic transition of the futex value
  1987. * and failed. The kernel side here does the whole locking operation:
  1988. * if there are waiters then it will block, it does PI, etc. (Due to
  1989. * races the kernel might see a 0 value of the futex too.)
  1990. */
  1991. static int futex_lock_pi(u32 __user *uaddr, unsigned int flags, int detect,
  1992. ktime_t *time, int trylock)
  1993. {
  1994. struct hrtimer_sleeper timeout, *to = NULL;
  1995. struct futex_hash_bucket *hb;
  1996. struct futex_q q = futex_q_init;
  1997. int res, ret;
  1998. if (refill_pi_state_cache())
  1999. return -ENOMEM;
  2000. if (time) {
  2001. to = &timeout;
  2002. hrtimer_init_on_stack(&to->timer, CLOCK_REALTIME,
  2003. HRTIMER_MODE_ABS);
  2004. hrtimer_init_sleeper(to, current);
  2005. hrtimer_set_expires(&to->timer, *time);
  2006. }
  2007. retry:
  2008. ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, VERIFY_WRITE);
  2009. if (unlikely(ret != 0))
  2010. goto out;
  2011. retry_private:
  2012. hb = queue_lock(&q);
  2013. ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, 0);
  2014. if (unlikely(ret)) {
  2015. switch (ret) {
  2016. case 1:
  2017. /* We got the lock. */
  2018. ret = 0;
  2019. goto out_unlock_put_key;
  2020. case -EFAULT:
  2021. goto uaddr_faulted;
  2022. case -EAGAIN:
  2023. /*
  2024. * Two reasons for this:
  2025. * - Task is exiting and we just wait for the
  2026. * exit to complete.
  2027. * - The user space value changed.
  2028. */
  2029. queue_unlock(hb);
  2030. put_futex_key(&q.key);
  2031. cond_resched();
  2032. goto retry;
  2033. default:
  2034. goto out_unlock_put_key;
  2035. }
  2036. }
  2037. /*
  2038. * Only actually queue now that the atomic ops are done:
  2039. */
  2040. queue_me(&q, hb);
  2041. WARN_ON(!q.pi_state);
  2042. /*
  2043. * Block on the PI mutex:
  2044. */
  2045. if (!trylock) {
  2046. ret = rt_mutex_timed_futex_lock(&q.pi_state->pi_mutex, to);
  2047. } else {
  2048. ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
  2049. /* Fixup the trylock return value: */
  2050. ret = ret ? 0 : -EWOULDBLOCK;
  2051. }
  2052. spin_lock(q.lock_ptr);
  2053. /*
  2054. * Fixup the pi_state owner and possibly acquire the lock if we
  2055. * haven't already.
  2056. */
  2057. res = fixup_owner(uaddr, &q, !ret);
  2058. /*
  2059. * If fixup_owner() returned an error, proprogate that. If it acquired
  2060. * the lock, clear our -ETIMEDOUT or -EINTR.
  2061. */
  2062. if (res)
  2063. ret = (res < 0) ? res : 0;
  2064. /*
  2065. * If fixup_owner() faulted and was unable to handle the fault, unlock
  2066. * it and return the fault to userspace.
  2067. */
  2068. if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current))
  2069. rt_mutex_unlock(&q.pi_state->pi_mutex);
  2070. /* Unqueue and drop the lock */
  2071. unqueue_me_pi(&q);
  2072. goto out_put_key;
  2073. out_unlock_put_key:
  2074. queue_unlock(hb);
  2075. out_put_key:
  2076. put_futex_key(&q.key);
  2077. out:
  2078. if (to)
  2079. destroy_hrtimer_on_stack(&to->timer);
  2080. return ret != -EINTR ? ret : -ERESTARTNOINTR;
  2081. uaddr_faulted:
  2082. queue_unlock(hb);
  2083. ret = fault_in_user_writeable(uaddr);
  2084. if (ret)
  2085. goto out_put_key;
  2086. if (!(flags & FLAGS_SHARED))
  2087. goto retry_private;
  2088. put_futex_key(&q.key);
  2089. goto retry;
  2090. }
  2091. /*
  2092. * Userspace attempted a TID -> 0 atomic transition, and failed.
  2093. * This is the in-kernel slowpath: we look up the PI state (if any),
  2094. * and do the rt-mutex unlock.
  2095. */
  2096. static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags)
  2097. {
  2098. u32 uninitialized_var(curval), uval, vpid = task_pid_vnr(current);
  2099. union futex_key key = FUTEX_KEY_INIT;
  2100. struct futex_hash_bucket *hb;
  2101. struct futex_q *match;
  2102. int ret;
  2103. retry:
  2104. if (get_user(uval, uaddr))
  2105. return -EFAULT;
  2106. /*
  2107. * We release only a lock we actually own:
  2108. */
  2109. if ((uval & FUTEX_TID_MASK) != vpid)
  2110. return -EPERM;
  2111. ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_WRITE);
  2112. if (ret)
  2113. return ret;
  2114. hb = hash_futex(&key);
  2115. spin_lock(&hb->lock);
  2116. /*
  2117. * Check waiters first. We do not trust user space values at
  2118. * all and we at least want to know if user space fiddled
  2119. * with the futex value instead of blindly unlocking.
  2120. */
  2121. match = futex_top_waiter(hb, &key);
  2122. if (match) {
  2123. ret = wake_futex_pi(uaddr, uval, match);
  2124. /*
  2125. * The atomic access to the futex value generated a
  2126. * pagefault, so retry the user-access and the wakeup:
  2127. */
  2128. if (ret == -EFAULT)
  2129. goto pi_faulted;
  2130. goto out_unlock;
  2131. }
  2132. /*
  2133. * We have no kernel internal state, i.e. no waiters in the
  2134. * kernel. Waiters which are about to queue themselves are stuck
  2135. * on hb->lock. So we can safely ignore them. We do neither
  2136. * preserve the WAITERS bit not the OWNER_DIED one. We are the
  2137. * owner.
  2138. */
  2139. if (cmpxchg_futex_value_locked(&curval, uaddr, uval, 0))
  2140. goto pi_faulted;
  2141. /*
  2142. * If uval has changed, let user space handle it.
  2143. */
  2144. ret = (curval == uval) ? 0 : -EAGAIN;
  2145. out_unlock:
  2146. spin_unlock(&hb->lock);
  2147. put_futex_key(&key);
  2148. return ret;
  2149. pi_faulted:
  2150. spin_unlock(&hb->lock);
  2151. put_futex_key(&key);
  2152. ret = fault_in_user_writeable(uaddr);
  2153. if (!ret)
  2154. goto retry;
  2155. return ret;
  2156. }
  2157. /**
  2158. * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
  2159. * @hb: the hash_bucket futex_q was original enqueued on
  2160. * @q: the futex_q woken while waiting to be requeued
  2161. * @key2: the futex_key of the requeue target futex
  2162. * @timeout: the timeout associated with the wait (NULL if none)
  2163. *
  2164. * Detect if the task was woken on the initial futex as opposed to the requeue
  2165. * target futex. If so, determine if it was a timeout or a signal that caused
  2166. * the wakeup and return the appropriate error code to the caller. Must be
  2167. * called with the hb lock held.
  2168. *
  2169. * Return:
  2170. * 0 = no early wakeup detected;
  2171. * <0 = -ETIMEDOUT or -ERESTARTNOINTR
  2172. */
  2173. static inline
  2174. int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
  2175. struct futex_q *q, union futex_key *key2,
  2176. struct hrtimer_sleeper *timeout)
  2177. {
  2178. int ret = 0;
  2179. /*
  2180. * With the hb lock held, we avoid races while we process the wakeup.
  2181. * We only need to hold hb (and not hb2) to ensure atomicity as the
  2182. * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
  2183. * It can't be requeued from uaddr2 to something else since we don't
  2184. * support a PI aware source futex for requeue.
  2185. */
  2186. if (!match_futex(&q->key, key2)) {
  2187. WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
  2188. /*
  2189. * We were woken prior to requeue by a timeout or a signal.
  2190. * Unqueue the futex_q and determine which it was.
  2191. */
  2192. plist_del(&q->list, &hb->chain);
  2193. hb_waiters_dec(hb);
  2194. /* Handle spurious wakeups gracefully */
  2195. ret = -EWOULDBLOCK;
  2196. if (timeout && !timeout->task)
  2197. ret = -ETIMEDOUT;
  2198. else if (signal_pending(current))
  2199. ret = -ERESTARTNOINTR;
  2200. }
  2201. return ret;
  2202. }
  2203. /**
  2204. * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
  2205. * @uaddr: the futex we initially wait on (non-pi)
  2206. * @flags: futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be
  2207. * the same type, no requeueing from private to shared, etc.
  2208. * @val: the expected value of uaddr
  2209. * @abs_time: absolute timeout
  2210. * @bitset: 32 bit wakeup bitset set by userspace, defaults to all
  2211. * @uaddr2: the pi futex we will take prior to returning to user-space
  2212. *
  2213. * The caller will wait on uaddr and will be requeued by futex_requeue() to
  2214. * uaddr2 which must be PI aware and unique from uaddr. Normal wakeup will wake
  2215. * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to
  2216. * userspace. This ensures the rt_mutex maintains an owner when it has waiters;
  2217. * without one, the pi logic would not know which task to boost/deboost, if
  2218. * there was a need to.
  2219. *
  2220. * We call schedule in futex_wait_queue_me() when we enqueue and return there
  2221. * via the following--
  2222. * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
  2223. * 2) wakeup on uaddr2 after a requeue
  2224. * 3) signal
  2225. * 4) timeout
  2226. *
  2227. * If 3, cleanup and return -ERESTARTNOINTR.
  2228. *
  2229. * If 2, we may then block on trying to take the rt_mutex and return via:
  2230. * 5) successful lock
  2231. * 6) signal
  2232. * 7) timeout
  2233. * 8) other lock acquisition failure
  2234. *
  2235. * If 6, return -EWOULDBLOCK (restarting the syscall would do the same).
  2236. *
  2237. * If 4 or 7, we cleanup and return with -ETIMEDOUT.
  2238. *
  2239. * Return:
  2240. * 0 - On success;
  2241. * <0 - On error
  2242. */
  2243. static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags,
  2244. u32 val, ktime_t *abs_time, u32 bitset,
  2245. u32 __user *uaddr2)
  2246. {
  2247. struct hrtimer_sleeper timeout, *to = NULL;
  2248. struct rt_mutex_waiter rt_waiter;
  2249. struct rt_mutex *pi_mutex = NULL;
  2250. struct futex_hash_bucket *hb;
  2251. union futex_key key2 = FUTEX_KEY_INIT;
  2252. struct futex_q q = futex_q_init;
  2253. int res, ret;
  2254. if (uaddr == uaddr2)
  2255. return -EINVAL;
  2256. if (!bitset)
  2257. return -EINVAL;
  2258. if (abs_time) {
  2259. to = &timeout;
  2260. hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
  2261. CLOCK_REALTIME : CLOCK_MONOTONIC,
  2262. HRTIMER_MODE_ABS);
  2263. hrtimer_init_sleeper(to, current);
  2264. hrtimer_set_expires_range_ns(&to->timer, *abs_time,
  2265. current->timer_slack_ns);
  2266. }
  2267. /*
  2268. * The waiter is allocated on our stack, manipulated by the requeue
  2269. * code while we sleep on uaddr.
  2270. */
  2271. debug_rt_mutex_init_waiter(&rt_waiter);
  2272. RB_CLEAR_NODE(&rt_waiter.pi_tree_entry);
  2273. RB_CLEAR_NODE(&rt_waiter.tree_entry);
  2274. rt_waiter.task = NULL;
  2275. ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
  2276. if (unlikely(ret != 0))
  2277. goto out;
  2278. q.bitset = bitset;
  2279. q.rt_waiter = &rt_waiter;
  2280. q.requeue_pi_key = &key2;
  2281. /*
  2282. * Prepare to wait on uaddr. On success, increments q.key (key1) ref
  2283. * count.
  2284. */
  2285. ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
  2286. if (ret)
  2287. goto out_key2;
  2288. /*
  2289. * The check above which compares uaddrs is not sufficient for
  2290. * shared futexes. We need to compare the keys:
  2291. */
  2292. if (match_futex(&q.key, &key2)) {
  2293. queue_unlock(hb);
  2294. ret = -EINVAL;
  2295. goto out_put_keys;
  2296. }
  2297. /* Queue the futex_q, drop the hb lock, wait for wakeup. */
  2298. futex_wait_queue_me(hb, &q, to);
  2299. spin_lock(&hb->lock);
  2300. ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
  2301. spin_unlock(&hb->lock);
  2302. if (ret)
  2303. goto out_put_keys;
  2304. /*
  2305. * In order for us to be here, we know our q.key == key2, and since
  2306. * we took the hb->lock above, we also know that futex_requeue() has
  2307. * completed and we no longer have to concern ourselves with a wakeup
  2308. * race with the atomic proxy lock acquisition by the requeue code. The
  2309. * futex_requeue dropped our key1 reference and incremented our key2
  2310. * reference count.
  2311. */
  2312. /* Check if the requeue code acquired the second futex for us. */
  2313. if (!q.rt_waiter) {
  2314. /*
  2315. * Got the lock. We might not be the anticipated owner if we
  2316. * did a lock-steal - fix up the PI-state in that case.
  2317. */
  2318. if (q.pi_state && (q.pi_state->owner != current)) {
  2319. spin_lock(q.lock_ptr);
  2320. ret = fixup_pi_state_owner(uaddr2, &q, current);
  2321. spin_unlock(q.lock_ptr);
  2322. }
  2323. } else {
  2324. /*
  2325. * We have been woken up by futex_unlock_pi(), a timeout, or a
  2326. * signal. futex_unlock_pi() will not destroy the lock_ptr nor
  2327. * the pi_state.
  2328. */
  2329. WARN_ON(!q.pi_state);
  2330. pi_mutex = &q.pi_state->pi_mutex;
  2331. ret = rt_mutex_finish_proxy_lock(pi_mutex, to, &rt_waiter);
  2332. debug_rt_mutex_free_waiter(&rt_waiter);
  2333. spin_lock(q.lock_ptr);
  2334. /*
  2335. * Fixup the pi_state owner and possibly acquire the lock if we
  2336. * haven't already.
  2337. */
  2338. res = fixup_owner(uaddr2, &q, !ret);
  2339. /*
  2340. * If fixup_owner() returned an error, proprogate that. If it
  2341. * acquired the lock, clear -ETIMEDOUT or -EINTR.
  2342. */
  2343. if (res)
  2344. ret = (res < 0) ? res : 0;
  2345. /* Unqueue and drop the lock. */
  2346. unqueue_me_pi(&q);
  2347. }
  2348. /*
  2349. * If fixup_pi_state_owner() faulted and was unable to handle the
  2350. * fault, unlock the rt_mutex and return the fault to userspace.
  2351. */
  2352. if (ret == -EFAULT) {
  2353. if (pi_mutex && rt_mutex_owner(pi_mutex) == current)
  2354. rt_mutex_unlock(pi_mutex);
  2355. } else if (ret == -EINTR) {
  2356. /*
  2357. * We've already been requeued, but cannot restart by calling
  2358. * futex_lock_pi() directly. We could restart this syscall, but
  2359. * it would detect that the user space "val" changed and return
  2360. * -EWOULDBLOCK. Save the overhead of the restart and return
  2361. * -EWOULDBLOCK directly.
  2362. */
  2363. ret = -EWOULDBLOCK;
  2364. }
  2365. out_put_keys:
  2366. put_futex_key(&q.key);
  2367. out_key2:
  2368. put_futex_key(&key2);
  2369. out:
  2370. if (to) {
  2371. hrtimer_cancel(&to->timer);
  2372. destroy_hrtimer_on_stack(&to->timer);
  2373. }
  2374. return ret;
  2375. }
  2376. /*
  2377. * Support for robust futexes: the kernel cleans up held futexes at
  2378. * thread exit time.
  2379. *
  2380. * Implementation: user-space maintains a per-thread list of locks it
  2381. * is holding. Upon do_exit(), the kernel carefully walks this list,
  2382. * and marks all locks that are owned by this thread with the
  2383. * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
  2384. * always manipulated with the lock held, so the list is private and
  2385. * per-thread. Userspace also maintains a per-thread 'list_op_pending'
  2386. * field, to allow the kernel to clean up if the thread dies after
  2387. * acquiring the lock, but just before it could have added itself to
  2388. * the list. There can only be one such pending lock.
  2389. */
  2390. /**
  2391. * sys_set_robust_list() - Set the robust-futex list head of a task
  2392. * @head: pointer to the list-head
  2393. * @len: length of the list-head, as userspace expects
  2394. */
  2395. SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
  2396. size_t, len)
  2397. {
  2398. if (!futex_cmpxchg_enabled)
  2399. return -ENOSYS;
  2400. /*
  2401. * The kernel knows only one size for now:
  2402. */
  2403. if (unlikely(len != sizeof(*head)))
  2404. return -EINVAL;
  2405. current->robust_list = head;
  2406. return 0;
  2407. }
  2408. /**
  2409. * sys_get_robust_list() - Get the robust-futex list head of a task
  2410. * @pid: pid of the process [zero for current task]
  2411. * @head_ptr: pointer to a list-head pointer, the kernel fills it in
  2412. * @len_ptr: pointer to a length field, the kernel fills in the header size
  2413. */
  2414. SYSCALL_DEFINE3(get_robust_list, int, pid,
  2415. struct robust_list_head __user * __user *, head_ptr,
  2416. size_t __user *, len_ptr)
  2417. {
  2418. struct robust_list_head __user *head;
  2419. unsigned long ret;
  2420. struct task_struct *p;
  2421. if (!futex_cmpxchg_enabled)
  2422. return -ENOSYS;
  2423. rcu_read_lock();
  2424. ret = -ESRCH;
  2425. if (!pid)
  2426. p = current;
  2427. else {
  2428. p = find_task_by_vpid(pid);
  2429. if (!p)
  2430. goto err_unlock;
  2431. }
  2432. ret = -EPERM;
  2433. if (!ptrace_may_access(p, PTRACE_MODE_READ))
  2434. goto err_unlock;
  2435. head = p->robust_list;
  2436. rcu_read_unlock();
  2437. if (put_user(sizeof(*head), len_ptr))
  2438. return -EFAULT;
  2439. return put_user(head, head_ptr);
  2440. err_unlock:
  2441. rcu_read_unlock();
  2442. return ret;
  2443. }
  2444. /*
  2445. * Process a futex-list entry, check whether it's owned by the
  2446. * dying task, and do notification if so:
  2447. */
  2448. int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
  2449. {
  2450. u32 uval, uninitialized_var(nval), mval;
  2451. retry:
  2452. if (get_user(uval, uaddr))
  2453. return -1;
  2454. if ((uval & FUTEX_TID_MASK) == task_pid_vnr(curr)) {
  2455. /*
  2456. * Ok, this dying thread is truly holding a futex
  2457. * of interest. Set the OWNER_DIED bit atomically
  2458. * via cmpxchg, and if the value had FUTEX_WAITERS
  2459. * set, wake up a waiter (if any). (We have to do a
  2460. * futex_wake() even if OWNER_DIED is already set -
  2461. * to handle the rare but possible case of recursive
  2462. * thread-death.) The rest of the cleanup is done in
  2463. * userspace.
  2464. */
  2465. mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
  2466. /*
  2467. * We are not holding a lock here, but we want to have
  2468. * the pagefault_disable/enable() protection because
  2469. * we want to handle the fault gracefully. If the
  2470. * access fails we try to fault in the futex with R/W
  2471. * verification via get_user_pages. get_user() above
  2472. * does not guarantee R/W access. If that fails we
  2473. * give up and leave the futex locked.
  2474. */
  2475. if (cmpxchg_futex_value_locked(&nval, uaddr, uval, mval)) {
  2476. if (fault_in_user_writeable(uaddr))
  2477. return -1;
  2478. goto retry;
  2479. }
  2480. if (nval != uval)
  2481. goto retry;
  2482. /*
  2483. * Wake robust non-PI futexes here. The wakeup of
  2484. * PI futexes happens in exit_pi_state():
  2485. */
  2486. if (!pi && (uval & FUTEX_WAITERS))
  2487. futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
  2488. }
  2489. return 0;
  2490. }
  2491. /*
  2492. * Fetch a robust-list pointer. Bit 0 signals PI futexes:
  2493. */
  2494. static inline int fetch_robust_entry(struct robust_list __user **entry,
  2495. struct robust_list __user * __user *head,
  2496. unsigned int *pi)
  2497. {
  2498. unsigned long uentry;
  2499. if (get_user(uentry, (unsigned long __user *)head))
  2500. return -EFAULT;
  2501. *entry = (void __user *)(uentry & ~1UL);
  2502. *pi = uentry & 1;
  2503. return 0;
  2504. }
  2505. /*
  2506. * Walk curr->robust_list (very carefully, it's a userspace list!)
  2507. * and mark any locks found there dead, and notify any waiters.
  2508. *
  2509. * We silently return on any sign of list-walking problem.
  2510. */
  2511. void exit_robust_list(struct task_struct *curr)
  2512. {
  2513. struct robust_list_head __user *head = curr->robust_list;
  2514. struct robust_list __user *entry, *next_entry, *pending;
  2515. unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
  2516. unsigned int uninitialized_var(next_pi);
  2517. unsigned long futex_offset;
  2518. int rc;
  2519. if (!futex_cmpxchg_enabled)
  2520. return;
  2521. /*
  2522. * Fetch the list head (which was registered earlier, via
  2523. * sys_set_robust_list()):
  2524. */
  2525. if (fetch_robust_entry(&entry, &head->list.next, &pi))
  2526. return;
  2527. /*
  2528. * Fetch the relative futex offset:
  2529. */
  2530. if (get_user(futex_offset, &head->futex_offset))
  2531. return;
  2532. /*
  2533. * Fetch any possibly pending lock-add first, and handle it
  2534. * if it exists:
  2535. */
  2536. if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
  2537. return;
  2538. next_entry = NULL; /* avoid warning with gcc */
  2539. while (entry != &head->list) {
  2540. /*
  2541. * Fetch the next entry in the list before calling
  2542. * handle_futex_death:
  2543. */
  2544. rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
  2545. /*
  2546. * A pending lock might already be on the list, so
  2547. * don't process it twice:
  2548. */
  2549. if (entry != pending)
  2550. if (handle_futex_death((void __user *)entry + futex_offset,
  2551. curr, pi))
  2552. return;
  2553. if (rc)
  2554. return;
  2555. entry = next_entry;
  2556. pi = next_pi;
  2557. /*
  2558. * Avoid excessively long or circular lists:
  2559. */
  2560. if (!--limit)
  2561. break;
  2562. cond_resched();
  2563. }
  2564. if (pending)
  2565. handle_futex_death((void __user *)pending + futex_offset,
  2566. curr, pip);
  2567. }
  2568. long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
  2569. u32 __user *uaddr2, u32 val2, u32 val3)
  2570. {
  2571. int cmd = op & FUTEX_CMD_MASK;
  2572. unsigned int flags = 0;
  2573. if (!(op & FUTEX_PRIVATE_FLAG))
  2574. flags |= FLAGS_SHARED;
  2575. if (op & FUTEX_CLOCK_REALTIME) {
  2576. flags |= FLAGS_CLOCKRT;
  2577. if (cmd != FUTEX_WAIT_BITSET && cmd != FUTEX_WAIT_REQUEUE_PI)
  2578. return -ENOSYS;
  2579. }
  2580. switch (cmd) {
  2581. case FUTEX_LOCK_PI:
  2582. case FUTEX_UNLOCK_PI:
  2583. case FUTEX_TRYLOCK_PI:
  2584. case FUTEX_WAIT_REQUEUE_PI:
  2585. case FUTEX_CMP_REQUEUE_PI:
  2586. if (!futex_cmpxchg_enabled)
  2587. return -ENOSYS;
  2588. }
  2589. switch (cmd) {
  2590. case FUTEX_WAIT:
  2591. val3 = FUTEX_BITSET_MATCH_ANY;
  2592. case FUTEX_WAIT_BITSET:
  2593. return futex_wait(uaddr, flags, val, timeout, val3);
  2594. case FUTEX_WAKE:
  2595. val3 = FUTEX_BITSET_MATCH_ANY;
  2596. case FUTEX_WAKE_BITSET:
  2597. return futex_wake(uaddr, flags, val, val3);
  2598. case FUTEX_REQUEUE:
  2599. return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0);
  2600. case FUTEX_CMP_REQUEUE:
  2601. return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0);
  2602. case FUTEX_WAKE_OP:
  2603. return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3);
  2604. case FUTEX_LOCK_PI:
  2605. return futex_lock_pi(uaddr, flags, val, timeout, 0);
  2606. case FUTEX_UNLOCK_PI:
  2607. return futex_unlock_pi(uaddr, flags);
  2608. case FUTEX_TRYLOCK_PI:
  2609. return futex_lock_pi(uaddr, flags, 0, timeout, 1);
  2610. case FUTEX_WAIT_REQUEUE_PI:
  2611. val3 = FUTEX_BITSET_MATCH_ANY;
  2612. return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3,
  2613. uaddr2);
  2614. case FUTEX_CMP_REQUEUE_PI:
  2615. return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1);
  2616. }
  2617. return -ENOSYS;
  2618. }
  2619. SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
  2620. struct timespec __user *, utime, u32 __user *, uaddr2,
  2621. u32, val3)
  2622. {
  2623. struct timespec ts;
  2624. ktime_t t, *tp = NULL;
  2625. u32 val2 = 0;
  2626. int cmd = op & FUTEX_CMD_MASK;
  2627. if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
  2628. cmd == FUTEX_WAIT_BITSET ||
  2629. cmd == FUTEX_WAIT_REQUEUE_PI)) {
  2630. if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
  2631. return -EFAULT;
  2632. if (!timespec_valid(&ts))
  2633. return -EINVAL;
  2634. t = timespec_to_ktime(ts);
  2635. if (cmd == FUTEX_WAIT)
  2636. t = ktime_add_safe(ktime_get(), t);
  2637. tp = &t;
  2638. }
  2639. /*
  2640. * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
  2641. * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
  2642. */
  2643. if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
  2644. cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
  2645. val2 = (u32) (unsigned long) utime;
  2646. return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
  2647. }
  2648. static void __init futex_detect_cmpxchg(void)
  2649. {
  2650. #ifndef CONFIG_HAVE_FUTEX_CMPXCHG
  2651. u32 curval;
  2652. /*
  2653. * This will fail and we want it. Some arch implementations do
  2654. * runtime detection of the futex_atomic_cmpxchg_inatomic()
  2655. * functionality. We want to know that before we call in any
  2656. * of the complex code paths. Also we want to prevent
  2657. * registration of robust lists in that case. NULL is
  2658. * guaranteed to fault and we get -EFAULT on functional
  2659. * implementation, the non-functional ones will return
  2660. * -ENOSYS.
  2661. */
  2662. if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT)
  2663. futex_cmpxchg_enabled = 1;
  2664. #endif
  2665. }
  2666. static int __init futex_init(void)
  2667. {
  2668. unsigned int futex_shift;
  2669. unsigned long i;
  2670. #if CONFIG_BASE_SMALL
  2671. futex_hashsize = 16;
  2672. #else
  2673. futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus());
  2674. #endif
  2675. futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues),
  2676. futex_hashsize, 0,
  2677. futex_hashsize < 256 ? HASH_SMALL : 0,
  2678. &futex_shift, NULL,
  2679. futex_hashsize, futex_hashsize);
  2680. futex_hashsize = 1UL << futex_shift;
  2681. futex_detect_cmpxchg();
  2682. for (i = 0; i < futex_hashsize; i++) {
  2683. atomic_set(&futex_queues[i].waiters, 0);
  2684. plist_head_init(&futex_queues[i].chain);
  2685. spin_lock_init(&futex_queues[i].lock);
  2686. }
  2687. return 0;
  2688. }
  2689. __initcall(futex_init);