nfs4state.c 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430
  1. /*
  2. * fs/nfs/nfs4state.c
  3. *
  4. * Client-side XDR for NFSv4.
  5. *
  6. * Copyright (c) 2002 The Regents of the University of Michigan.
  7. * All rights reserved.
  8. *
  9. * Kendrick Smith <kmsmith@umich.edu>
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. *
  15. * 1. Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright
  18. * notice, this list of conditions and the following disclaimer in the
  19. * documentation and/or other materials provided with the distribution.
  20. * 3. Neither the name of the University nor the names of its
  21. * contributors may be used to endorse or promote products derived
  22. * from this software without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  25. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  26. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  31. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  32. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  33. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  34. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35. *
  36. * Implementation of the NFSv4 state model. For the time being,
  37. * this is minimal, but will be made much more complex in a
  38. * subsequent patch.
  39. */
  40. #include <linux/kernel.h>
  41. #include <linux/slab.h>
  42. #include <linux/fs.h>
  43. #include <linux/nfs_fs.h>
  44. #include <linux/nfs_idmap.h>
  45. #include <linux/kthread.h>
  46. #include <linux/module.h>
  47. #include <linux/random.h>
  48. #include <linux/ratelimit.h>
  49. #include <linux/workqueue.h>
  50. #include <linux/bitops.h>
  51. #include <linux/jiffies.h>
  52. #include <linux/sunrpc/clnt.h>
  53. #include "nfs4_fs.h"
  54. #include "callback.h"
  55. #include "delegation.h"
  56. #include "internal.h"
  57. #include "nfs4session.h"
  58. #include "pnfs.h"
  59. #include "netns.h"
  60. #define NFSDBG_FACILITY NFSDBG_STATE
  61. #define OPENOWNER_POOL_SIZE 8
  62. const nfs4_stateid zero_stateid;
  63. static DEFINE_MUTEX(nfs_clid_init_mutex);
  64. int nfs4_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
  65. {
  66. struct nfs4_setclientid_res clid = {
  67. .clientid = clp->cl_clientid,
  68. .confirm = clp->cl_confirm,
  69. };
  70. unsigned short port;
  71. int status;
  72. struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
  73. if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state))
  74. goto do_confirm;
  75. port = nn->nfs_callback_tcpport;
  76. if (clp->cl_addr.ss_family == AF_INET6)
  77. port = nn->nfs_callback_tcpport6;
  78. status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
  79. if (status != 0)
  80. goto out;
  81. clp->cl_clientid = clid.clientid;
  82. clp->cl_confirm = clid.confirm;
  83. set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  84. do_confirm:
  85. status = nfs4_proc_setclientid_confirm(clp, &clid, cred);
  86. if (status != 0)
  87. goto out;
  88. clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  89. nfs4_schedule_state_renewal(clp);
  90. out:
  91. return status;
  92. }
  93. /**
  94. * nfs40_discover_server_trunking - Detect server IP address trunking (mv0)
  95. *
  96. * @clp: nfs_client under test
  97. * @result: OUT: found nfs_client, or clp
  98. * @cred: credential to use for trunking test
  99. *
  100. * Returns zero, a negative errno, or a negative NFS4ERR status.
  101. * If zero is returned, an nfs_client pointer is planted in
  102. * "result".
  103. *
  104. * Note: The returned client may not yet be marked ready.
  105. */
  106. int nfs40_discover_server_trunking(struct nfs_client *clp,
  107. struct nfs_client **result,
  108. struct rpc_cred *cred)
  109. {
  110. struct nfs4_setclientid_res clid = {
  111. .clientid = clp->cl_clientid,
  112. .confirm = clp->cl_confirm,
  113. };
  114. struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
  115. unsigned short port;
  116. int status;
  117. port = nn->nfs_callback_tcpport;
  118. if (clp->cl_addr.ss_family == AF_INET6)
  119. port = nn->nfs_callback_tcpport6;
  120. status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
  121. if (status != 0)
  122. goto out;
  123. clp->cl_clientid = clid.clientid;
  124. clp->cl_confirm = clid.confirm;
  125. status = nfs40_walk_client_list(clp, result, cred);
  126. if (status == 0) {
  127. /* Sustain the lease, even if it's empty. If the clientid4
  128. * goes stale it's of no use for trunking discovery. */
  129. nfs4_schedule_state_renewal(*result);
  130. }
  131. out:
  132. return status;
  133. }
  134. struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp)
  135. {
  136. struct rpc_cred *cred = NULL;
  137. if (clp->cl_machine_cred != NULL)
  138. cred = get_rpccred(clp->cl_machine_cred);
  139. return cred;
  140. }
  141. static void nfs4_root_machine_cred(struct nfs_client *clp)
  142. {
  143. struct rpc_cred *cred, *new;
  144. new = rpc_lookup_machine_cred(NULL);
  145. spin_lock(&clp->cl_lock);
  146. cred = clp->cl_machine_cred;
  147. clp->cl_machine_cred = new;
  148. spin_unlock(&clp->cl_lock);
  149. if (cred != NULL)
  150. put_rpccred(cred);
  151. }
  152. static struct rpc_cred *
  153. nfs4_get_renew_cred_server_locked(struct nfs_server *server)
  154. {
  155. struct rpc_cred *cred = NULL;
  156. struct nfs4_state_owner *sp;
  157. struct rb_node *pos;
  158. for (pos = rb_first(&server->state_owners);
  159. pos != NULL;
  160. pos = rb_next(pos)) {
  161. sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
  162. if (list_empty(&sp->so_states))
  163. continue;
  164. cred = get_rpccred(sp->so_cred);
  165. break;
  166. }
  167. return cred;
  168. }
  169. /**
  170. * nfs4_get_renew_cred_locked - Acquire credential for a renew operation
  171. * @clp: client state handle
  172. *
  173. * Returns an rpc_cred with reference count bumped, or NULL.
  174. * Caller must hold clp->cl_lock.
  175. */
  176. struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp)
  177. {
  178. struct rpc_cred *cred = NULL;
  179. struct nfs_server *server;
  180. /* Use machine credentials if available */
  181. cred = nfs4_get_machine_cred_locked(clp);
  182. if (cred != NULL)
  183. goto out;
  184. rcu_read_lock();
  185. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  186. cred = nfs4_get_renew_cred_server_locked(server);
  187. if (cred != NULL)
  188. break;
  189. }
  190. rcu_read_unlock();
  191. out:
  192. return cred;
  193. }
  194. static void nfs4_end_drain_slot_table(struct nfs4_slot_table *tbl)
  195. {
  196. if (test_and_clear_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state)) {
  197. spin_lock(&tbl->slot_tbl_lock);
  198. nfs41_wake_slot_table(tbl);
  199. spin_unlock(&tbl->slot_tbl_lock);
  200. }
  201. }
  202. static void nfs4_end_drain_session(struct nfs_client *clp)
  203. {
  204. struct nfs4_session *ses = clp->cl_session;
  205. if (clp->cl_slot_tbl) {
  206. nfs4_end_drain_slot_table(clp->cl_slot_tbl);
  207. return;
  208. }
  209. if (ses != NULL) {
  210. nfs4_end_drain_slot_table(&ses->bc_slot_table);
  211. nfs4_end_drain_slot_table(&ses->fc_slot_table);
  212. }
  213. }
  214. static int nfs4_drain_slot_tbl(struct nfs4_slot_table *tbl)
  215. {
  216. set_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state);
  217. spin_lock(&tbl->slot_tbl_lock);
  218. if (tbl->highest_used_slotid != NFS4_NO_SLOT) {
  219. reinit_completion(&tbl->complete);
  220. spin_unlock(&tbl->slot_tbl_lock);
  221. return wait_for_completion_interruptible(&tbl->complete);
  222. }
  223. spin_unlock(&tbl->slot_tbl_lock);
  224. return 0;
  225. }
  226. static int nfs4_begin_drain_session(struct nfs_client *clp)
  227. {
  228. struct nfs4_session *ses = clp->cl_session;
  229. int ret = 0;
  230. if (clp->cl_slot_tbl)
  231. return nfs4_drain_slot_tbl(clp->cl_slot_tbl);
  232. /* back channel */
  233. ret = nfs4_drain_slot_tbl(&ses->bc_slot_table);
  234. if (ret)
  235. return ret;
  236. /* fore channel */
  237. return nfs4_drain_slot_tbl(&ses->fc_slot_table);
  238. }
  239. #if defined(CONFIG_NFS_V4_1)
  240. static int nfs41_setup_state_renewal(struct nfs_client *clp)
  241. {
  242. int status;
  243. struct nfs_fsinfo fsinfo;
  244. if (!test_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state)) {
  245. nfs4_schedule_state_renewal(clp);
  246. return 0;
  247. }
  248. status = nfs4_proc_get_lease_time(clp, &fsinfo);
  249. if (status == 0) {
  250. /* Update lease time and schedule renewal */
  251. spin_lock(&clp->cl_lock);
  252. clp->cl_lease_time = fsinfo.lease_time * HZ;
  253. clp->cl_last_renewal = jiffies;
  254. spin_unlock(&clp->cl_lock);
  255. nfs4_schedule_state_renewal(clp);
  256. }
  257. return status;
  258. }
  259. static void nfs41_finish_session_reset(struct nfs_client *clp)
  260. {
  261. clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  262. clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
  263. /* create_session negotiated new slot table */
  264. clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
  265. nfs41_setup_state_renewal(clp);
  266. }
  267. int nfs41_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
  268. {
  269. int status;
  270. if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state))
  271. goto do_confirm;
  272. nfs4_begin_drain_session(clp);
  273. status = nfs4_proc_exchange_id(clp, cred);
  274. if (status != 0)
  275. goto out;
  276. set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  277. do_confirm:
  278. status = nfs4_proc_create_session(clp, cred);
  279. if (status != 0)
  280. goto out;
  281. nfs41_finish_session_reset(clp);
  282. nfs_mark_client_ready(clp, NFS_CS_READY);
  283. out:
  284. return status;
  285. }
  286. /**
  287. * nfs41_discover_server_trunking - Detect server IP address trunking (mv1)
  288. *
  289. * @clp: nfs_client under test
  290. * @result: OUT: found nfs_client, or clp
  291. * @cred: credential to use for trunking test
  292. *
  293. * Returns NFS4_OK, a negative errno, or a negative NFS4ERR status.
  294. * If NFS4_OK is returned, an nfs_client pointer is planted in
  295. * "result".
  296. *
  297. * Note: The returned client may not yet be marked ready.
  298. */
  299. int nfs41_discover_server_trunking(struct nfs_client *clp,
  300. struct nfs_client **result,
  301. struct rpc_cred *cred)
  302. {
  303. int status;
  304. status = nfs4_proc_exchange_id(clp, cred);
  305. if (status != NFS4_OK)
  306. return status;
  307. set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  308. return nfs41_walk_client_list(clp, result, cred);
  309. }
  310. #endif /* CONFIG_NFS_V4_1 */
  311. /**
  312. * nfs4_get_clid_cred - Acquire credential for a setclientid operation
  313. * @clp: client state handle
  314. *
  315. * Returns an rpc_cred with reference count bumped, or NULL.
  316. */
  317. struct rpc_cred *nfs4_get_clid_cred(struct nfs_client *clp)
  318. {
  319. struct rpc_cred *cred;
  320. spin_lock(&clp->cl_lock);
  321. cred = nfs4_get_machine_cred_locked(clp);
  322. spin_unlock(&clp->cl_lock);
  323. return cred;
  324. }
  325. static struct nfs4_state_owner *
  326. nfs4_find_state_owner_locked(struct nfs_server *server, struct rpc_cred *cred)
  327. {
  328. struct rb_node **p = &server->state_owners.rb_node,
  329. *parent = NULL;
  330. struct nfs4_state_owner *sp;
  331. while (*p != NULL) {
  332. parent = *p;
  333. sp = rb_entry(parent, struct nfs4_state_owner, so_server_node);
  334. if (cred < sp->so_cred)
  335. p = &parent->rb_left;
  336. else if (cred > sp->so_cred)
  337. p = &parent->rb_right;
  338. else {
  339. if (!list_empty(&sp->so_lru))
  340. list_del_init(&sp->so_lru);
  341. atomic_inc(&sp->so_count);
  342. return sp;
  343. }
  344. }
  345. return NULL;
  346. }
  347. static struct nfs4_state_owner *
  348. nfs4_insert_state_owner_locked(struct nfs4_state_owner *new)
  349. {
  350. struct nfs_server *server = new->so_server;
  351. struct rb_node **p = &server->state_owners.rb_node,
  352. *parent = NULL;
  353. struct nfs4_state_owner *sp;
  354. int err;
  355. while (*p != NULL) {
  356. parent = *p;
  357. sp = rb_entry(parent, struct nfs4_state_owner, so_server_node);
  358. if (new->so_cred < sp->so_cred)
  359. p = &parent->rb_left;
  360. else if (new->so_cred > sp->so_cred)
  361. p = &parent->rb_right;
  362. else {
  363. if (!list_empty(&sp->so_lru))
  364. list_del_init(&sp->so_lru);
  365. atomic_inc(&sp->so_count);
  366. return sp;
  367. }
  368. }
  369. err = ida_get_new(&server->openowner_id, &new->so_seqid.owner_id);
  370. if (err)
  371. return ERR_PTR(err);
  372. rb_link_node(&new->so_server_node, parent, p);
  373. rb_insert_color(&new->so_server_node, &server->state_owners);
  374. return new;
  375. }
  376. static void
  377. nfs4_remove_state_owner_locked(struct nfs4_state_owner *sp)
  378. {
  379. struct nfs_server *server = sp->so_server;
  380. if (!RB_EMPTY_NODE(&sp->so_server_node))
  381. rb_erase(&sp->so_server_node, &server->state_owners);
  382. ida_remove(&server->openowner_id, sp->so_seqid.owner_id);
  383. }
  384. static void
  385. nfs4_init_seqid_counter(struct nfs_seqid_counter *sc)
  386. {
  387. sc->create_time = ktime_get();
  388. sc->flags = 0;
  389. sc->counter = 0;
  390. spin_lock_init(&sc->lock);
  391. INIT_LIST_HEAD(&sc->list);
  392. rpc_init_wait_queue(&sc->wait, "Seqid_waitqueue");
  393. }
  394. static void
  395. nfs4_destroy_seqid_counter(struct nfs_seqid_counter *sc)
  396. {
  397. rpc_destroy_wait_queue(&sc->wait);
  398. }
  399. /*
  400. * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
  401. * create a new state_owner.
  402. *
  403. */
  404. static struct nfs4_state_owner *
  405. nfs4_alloc_state_owner(struct nfs_server *server,
  406. struct rpc_cred *cred,
  407. gfp_t gfp_flags)
  408. {
  409. struct nfs4_state_owner *sp;
  410. sp = kzalloc(sizeof(*sp), gfp_flags);
  411. if (!sp)
  412. return NULL;
  413. sp->so_server = server;
  414. sp->so_cred = get_rpccred(cred);
  415. spin_lock_init(&sp->so_lock);
  416. INIT_LIST_HEAD(&sp->so_states);
  417. nfs4_init_seqid_counter(&sp->so_seqid);
  418. atomic_set(&sp->so_count, 1);
  419. INIT_LIST_HEAD(&sp->so_lru);
  420. seqcount_init(&sp->so_reclaim_seqcount);
  421. mutex_init(&sp->so_delegreturn_mutex);
  422. return sp;
  423. }
  424. static void
  425. nfs4_drop_state_owner(struct nfs4_state_owner *sp)
  426. {
  427. struct rb_node *rb_node = &sp->so_server_node;
  428. if (!RB_EMPTY_NODE(rb_node)) {
  429. struct nfs_server *server = sp->so_server;
  430. struct nfs_client *clp = server->nfs_client;
  431. spin_lock(&clp->cl_lock);
  432. if (!RB_EMPTY_NODE(rb_node)) {
  433. rb_erase(rb_node, &server->state_owners);
  434. RB_CLEAR_NODE(rb_node);
  435. }
  436. spin_unlock(&clp->cl_lock);
  437. }
  438. }
  439. static void nfs4_free_state_owner(struct nfs4_state_owner *sp)
  440. {
  441. nfs4_destroy_seqid_counter(&sp->so_seqid);
  442. put_rpccred(sp->so_cred);
  443. kfree(sp);
  444. }
  445. static void nfs4_gc_state_owners(struct nfs_server *server)
  446. {
  447. struct nfs_client *clp = server->nfs_client;
  448. struct nfs4_state_owner *sp, *tmp;
  449. unsigned long time_min, time_max;
  450. LIST_HEAD(doomed);
  451. spin_lock(&clp->cl_lock);
  452. time_max = jiffies;
  453. time_min = (long)time_max - (long)clp->cl_lease_time;
  454. list_for_each_entry_safe(sp, tmp, &server->state_owners_lru, so_lru) {
  455. /* NB: LRU is sorted so that oldest is at the head */
  456. if (time_in_range(sp->so_expires, time_min, time_max))
  457. break;
  458. list_move(&sp->so_lru, &doomed);
  459. nfs4_remove_state_owner_locked(sp);
  460. }
  461. spin_unlock(&clp->cl_lock);
  462. list_for_each_entry_safe(sp, tmp, &doomed, so_lru) {
  463. list_del(&sp->so_lru);
  464. nfs4_free_state_owner(sp);
  465. }
  466. }
  467. /**
  468. * nfs4_get_state_owner - Look up a state owner given a credential
  469. * @server: nfs_server to search
  470. * @cred: RPC credential to match
  471. *
  472. * Returns a pointer to an instantiated nfs4_state_owner struct, or NULL.
  473. */
  474. struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server,
  475. struct rpc_cred *cred,
  476. gfp_t gfp_flags)
  477. {
  478. struct nfs_client *clp = server->nfs_client;
  479. struct nfs4_state_owner *sp, *new;
  480. spin_lock(&clp->cl_lock);
  481. sp = nfs4_find_state_owner_locked(server, cred);
  482. spin_unlock(&clp->cl_lock);
  483. if (sp != NULL)
  484. goto out;
  485. new = nfs4_alloc_state_owner(server, cred, gfp_flags);
  486. if (new == NULL)
  487. goto out;
  488. do {
  489. if (ida_pre_get(&server->openowner_id, gfp_flags) == 0)
  490. break;
  491. spin_lock(&clp->cl_lock);
  492. sp = nfs4_insert_state_owner_locked(new);
  493. spin_unlock(&clp->cl_lock);
  494. } while (sp == ERR_PTR(-EAGAIN));
  495. if (sp != new)
  496. nfs4_free_state_owner(new);
  497. out:
  498. nfs4_gc_state_owners(server);
  499. return sp;
  500. }
  501. /**
  502. * nfs4_put_state_owner - Release a nfs4_state_owner
  503. * @sp: state owner data to release
  504. *
  505. * Note that we keep released state owners on an LRU
  506. * list.
  507. * This caches valid state owners so that they can be
  508. * reused, to avoid the OPEN_CONFIRM on minor version 0.
  509. * It also pins the uniquifier of dropped state owners for
  510. * a while, to ensure that those state owner names are
  511. * never reused.
  512. */
  513. void nfs4_put_state_owner(struct nfs4_state_owner *sp)
  514. {
  515. struct nfs_server *server = sp->so_server;
  516. struct nfs_client *clp = server->nfs_client;
  517. if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
  518. return;
  519. sp->so_expires = jiffies;
  520. list_add_tail(&sp->so_lru, &server->state_owners_lru);
  521. spin_unlock(&clp->cl_lock);
  522. }
  523. /**
  524. * nfs4_purge_state_owners - Release all cached state owners
  525. * @server: nfs_server with cached state owners to release
  526. *
  527. * Called at umount time. Remaining state owners will be on
  528. * the LRU with ref count of zero.
  529. */
  530. void nfs4_purge_state_owners(struct nfs_server *server)
  531. {
  532. struct nfs_client *clp = server->nfs_client;
  533. struct nfs4_state_owner *sp, *tmp;
  534. LIST_HEAD(doomed);
  535. spin_lock(&clp->cl_lock);
  536. list_for_each_entry_safe(sp, tmp, &server->state_owners_lru, so_lru) {
  537. list_move(&sp->so_lru, &doomed);
  538. nfs4_remove_state_owner_locked(sp);
  539. }
  540. spin_unlock(&clp->cl_lock);
  541. list_for_each_entry_safe(sp, tmp, &doomed, so_lru) {
  542. list_del(&sp->so_lru);
  543. nfs4_free_state_owner(sp);
  544. }
  545. }
  546. static struct nfs4_state *
  547. nfs4_alloc_open_state(void)
  548. {
  549. struct nfs4_state *state;
  550. state = kzalloc(sizeof(*state), GFP_NOFS);
  551. if (!state)
  552. return NULL;
  553. atomic_set(&state->count, 1);
  554. INIT_LIST_HEAD(&state->lock_states);
  555. spin_lock_init(&state->state_lock);
  556. seqlock_init(&state->seqlock);
  557. return state;
  558. }
  559. void
  560. nfs4_state_set_mode_locked(struct nfs4_state *state, fmode_t fmode)
  561. {
  562. if (state->state == fmode)
  563. return;
  564. /* NB! List reordering - see the reclaim code for why. */
  565. if ((fmode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
  566. if (fmode & FMODE_WRITE)
  567. list_move(&state->open_states, &state->owner->so_states);
  568. else
  569. list_move_tail(&state->open_states, &state->owner->so_states);
  570. }
  571. state->state = fmode;
  572. }
  573. static struct nfs4_state *
  574. __nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
  575. {
  576. struct nfs_inode *nfsi = NFS_I(inode);
  577. struct nfs4_state *state;
  578. list_for_each_entry(state, &nfsi->open_states, inode_states) {
  579. if (state->owner != owner)
  580. continue;
  581. if (!nfs4_valid_open_stateid(state))
  582. continue;
  583. if (atomic_inc_not_zero(&state->count))
  584. return state;
  585. }
  586. return NULL;
  587. }
  588. static void
  589. nfs4_free_open_state(struct nfs4_state *state)
  590. {
  591. kfree(state);
  592. }
  593. struct nfs4_state *
  594. nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
  595. {
  596. struct nfs4_state *state, *new;
  597. struct nfs_inode *nfsi = NFS_I(inode);
  598. spin_lock(&inode->i_lock);
  599. state = __nfs4_find_state_byowner(inode, owner);
  600. spin_unlock(&inode->i_lock);
  601. if (state)
  602. goto out;
  603. new = nfs4_alloc_open_state();
  604. spin_lock(&owner->so_lock);
  605. spin_lock(&inode->i_lock);
  606. state = __nfs4_find_state_byowner(inode, owner);
  607. if (state == NULL && new != NULL) {
  608. state = new;
  609. state->owner = owner;
  610. atomic_inc(&owner->so_count);
  611. list_add(&state->inode_states, &nfsi->open_states);
  612. ihold(inode);
  613. state->inode = inode;
  614. spin_unlock(&inode->i_lock);
  615. /* Note: The reclaim code dictates that we add stateless
  616. * and read-only stateids to the end of the list */
  617. list_add_tail(&state->open_states, &owner->so_states);
  618. spin_unlock(&owner->so_lock);
  619. } else {
  620. spin_unlock(&inode->i_lock);
  621. spin_unlock(&owner->so_lock);
  622. if (new)
  623. nfs4_free_open_state(new);
  624. }
  625. out:
  626. return state;
  627. }
  628. void nfs4_put_open_state(struct nfs4_state *state)
  629. {
  630. struct inode *inode = state->inode;
  631. struct nfs4_state_owner *owner = state->owner;
  632. if (!atomic_dec_and_lock(&state->count, &owner->so_lock))
  633. return;
  634. spin_lock(&inode->i_lock);
  635. list_del(&state->inode_states);
  636. list_del(&state->open_states);
  637. spin_unlock(&inode->i_lock);
  638. spin_unlock(&owner->so_lock);
  639. iput(inode);
  640. nfs4_free_open_state(state);
  641. nfs4_put_state_owner(owner);
  642. }
  643. /*
  644. * Close the current file.
  645. */
  646. static void __nfs4_close(struct nfs4_state *state,
  647. fmode_t fmode, gfp_t gfp_mask, int wait)
  648. {
  649. struct nfs4_state_owner *owner = state->owner;
  650. int call_close = 0;
  651. fmode_t newstate;
  652. atomic_inc(&owner->so_count);
  653. /* Protect against nfs4_find_state() */
  654. spin_lock(&owner->so_lock);
  655. switch (fmode & (FMODE_READ | FMODE_WRITE)) {
  656. case FMODE_READ:
  657. state->n_rdonly--;
  658. break;
  659. case FMODE_WRITE:
  660. state->n_wronly--;
  661. break;
  662. case FMODE_READ|FMODE_WRITE:
  663. state->n_rdwr--;
  664. }
  665. newstate = FMODE_READ|FMODE_WRITE;
  666. if (state->n_rdwr == 0) {
  667. if (state->n_rdonly == 0) {
  668. newstate &= ~FMODE_READ;
  669. call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
  670. call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
  671. }
  672. if (state->n_wronly == 0) {
  673. newstate &= ~FMODE_WRITE;
  674. call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
  675. call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
  676. }
  677. if (newstate == 0)
  678. clear_bit(NFS_DELEGATED_STATE, &state->flags);
  679. }
  680. nfs4_state_set_mode_locked(state, newstate);
  681. spin_unlock(&owner->so_lock);
  682. if (!call_close) {
  683. nfs4_put_open_state(state);
  684. nfs4_put_state_owner(owner);
  685. } else
  686. nfs4_do_close(state, gfp_mask, wait);
  687. }
  688. void nfs4_close_state(struct nfs4_state *state, fmode_t fmode)
  689. {
  690. __nfs4_close(state, fmode, GFP_NOFS, 0);
  691. }
  692. void nfs4_close_sync(struct nfs4_state *state, fmode_t fmode)
  693. {
  694. __nfs4_close(state, fmode, GFP_KERNEL, 1);
  695. }
  696. /*
  697. * Search the state->lock_states for an existing lock_owner
  698. * that is compatible with current->files
  699. */
  700. static struct nfs4_lock_state *
  701. __nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
  702. {
  703. struct nfs4_lock_state *pos;
  704. list_for_each_entry(pos, &state->lock_states, ls_locks) {
  705. if (pos->ls_owner != fl_owner)
  706. continue;
  707. atomic_inc(&pos->ls_count);
  708. return pos;
  709. }
  710. return NULL;
  711. }
  712. /*
  713. * Return a compatible lock_state. If no initialized lock_state structure
  714. * exists, return an uninitialized one.
  715. *
  716. */
  717. static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
  718. {
  719. struct nfs4_lock_state *lsp;
  720. struct nfs_server *server = state->owner->so_server;
  721. lsp = kzalloc(sizeof(*lsp), GFP_NOFS);
  722. if (lsp == NULL)
  723. return NULL;
  724. nfs4_init_seqid_counter(&lsp->ls_seqid);
  725. atomic_set(&lsp->ls_count, 1);
  726. lsp->ls_state = state;
  727. lsp->ls_owner = fl_owner;
  728. lsp->ls_seqid.owner_id = ida_simple_get(&server->lockowner_id, 0, 0, GFP_NOFS);
  729. if (lsp->ls_seqid.owner_id < 0)
  730. goto out_free;
  731. INIT_LIST_HEAD(&lsp->ls_locks);
  732. return lsp;
  733. out_free:
  734. kfree(lsp);
  735. return NULL;
  736. }
  737. void nfs4_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
  738. {
  739. ida_simple_remove(&server->lockowner_id, lsp->ls_seqid.owner_id);
  740. nfs4_destroy_seqid_counter(&lsp->ls_seqid);
  741. kfree(lsp);
  742. }
  743. /*
  744. * Return a compatible lock_state. If no initialized lock_state structure
  745. * exists, return an uninitialized one.
  746. *
  747. */
  748. static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
  749. {
  750. struct nfs4_lock_state *lsp, *new = NULL;
  751. for(;;) {
  752. spin_lock(&state->state_lock);
  753. lsp = __nfs4_find_lock_state(state, owner);
  754. if (lsp != NULL)
  755. break;
  756. if (new != NULL) {
  757. list_add(&new->ls_locks, &state->lock_states);
  758. set_bit(LK_STATE_IN_USE, &state->flags);
  759. lsp = new;
  760. new = NULL;
  761. break;
  762. }
  763. spin_unlock(&state->state_lock);
  764. new = nfs4_alloc_lock_state(state, owner);
  765. if (new == NULL)
  766. return NULL;
  767. }
  768. spin_unlock(&state->state_lock);
  769. if (new != NULL)
  770. nfs4_free_lock_state(state->owner->so_server, new);
  771. return lsp;
  772. }
  773. /*
  774. * Release reference to lock_state, and free it if we see that
  775. * it is no longer in use
  776. */
  777. void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
  778. {
  779. struct nfs_server *server;
  780. struct nfs4_state *state;
  781. if (lsp == NULL)
  782. return;
  783. state = lsp->ls_state;
  784. if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock))
  785. return;
  786. list_del(&lsp->ls_locks);
  787. if (list_empty(&state->lock_states))
  788. clear_bit(LK_STATE_IN_USE, &state->flags);
  789. spin_unlock(&state->state_lock);
  790. server = state->owner->so_server;
  791. if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
  792. struct nfs_client *clp = server->nfs_client;
  793. clp->cl_mvops->free_lock_state(server, lsp);
  794. } else
  795. nfs4_free_lock_state(server, lsp);
  796. }
  797. static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
  798. {
  799. struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
  800. dst->fl_u.nfs4_fl.owner = lsp;
  801. atomic_inc(&lsp->ls_count);
  802. }
  803. static void nfs4_fl_release_lock(struct file_lock *fl)
  804. {
  805. nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
  806. }
  807. static const struct file_lock_operations nfs4_fl_lock_ops = {
  808. .fl_copy_lock = nfs4_fl_copy_lock,
  809. .fl_release_private = nfs4_fl_release_lock,
  810. };
  811. int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
  812. {
  813. struct nfs4_lock_state *lsp;
  814. if (fl->fl_ops != NULL)
  815. return 0;
  816. lsp = nfs4_get_lock_state(state, fl->fl_owner);
  817. if (lsp == NULL)
  818. return -ENOMEM;
  819. fl->fl_u.nfs4_fl.owner = lsp;
  820. fl->fl_ops = &nfs4_fl_lock_ops;
  821. return 0;
  822. }
  823. static int nfs4_copy_lock_stateid(nfs4_stateid *dst,
  824. struct nfs4_state *state,
  825. const struct nfs_lockowner *lockowner)
  826. {
  827. struct nfs4_lock_state *lsp;
  828. fl_owner_t fl_owner;
  829. int ret = -ENOENT;
  830. if (lockowner == NULL)
  831. goto out;
  832. if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
  833. goto out;
  834. fl_owner = lockowner->l_owner;
  835. spin_lock(&state->state_lock);
  836. lsp = __nfs4_find_lock_state(state, fl_owner);
  837. if (lsp && test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
  838. ret = -EIO;
  839. else if (lsp != NULL && test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) {
  840. nfs4_stateid_copy(dst, &lsp->ls_stateid);
  841. ret = 0;
  842. }
  843. spin_unlock(&state->state_lock);
  844. nfs4_put_lock_state(lsp);
  845. out:
  846. return ret;
  847. }
  848. static void nfs4_copy_open_stateid(nfs4_stateid *dst, struct nfs4_state *state)
  849. {
  850. const nfs4_stateid *src;
  851. int seq;
  852. do {
  853. src = &zero_stateid;
  854. seq = read_seqbegin(&state->seqlock);
  855. if (test_bit(NFS_OPEN_STATE, &state->flags))
  856. src = &state->open_stateid;
  857. nfs4_stateid_copy(dst, src);
  858. } while (read_seqretry(&state->seqlock, seq));
  859. }
  860. /*
  861. * Byte-range lock aware utility to initialize the stateid of read/write
  862. * requests.
  863. */
  864. int nfs4_select_rw_stateid(nfs4_stateid *dst, struct nfs4_state *state,
  865. fmode_t fmode, const struct nfs_lockowner *lockowner)
  866. {
  867. int ret = nfs4_copy_lock_stateid(dst, state, lockowner);
  868. if (ret == -EIO)
  869. /* A lost lock - don't even consider delegations */
  870. goto out;
  871. /* returns true if delegation stateid found and copied */
  872. if (nfs4_copy_delegation_stateid(dst, state->inode, fmode)) {
  873. ret = 0;
  874. goto out;
  875. }
  876. if (ret != -ENOENT)
  877. /* nfs4_copy_delegation_stateid() didn't over-write
  878. * dst, so it still has the lock stateid which we now
  879. * choose to use.
  880. */
  881. goto out;
  882. nfs4_copy_open_stateid(dst, state);
  883. ret = 0;
  884. out:
  885. if (nfs_server_capable(state->inode, NFS_CAP_STATEID_NFSV41))
  886. dst->seqid = 0;
  887. return ret;
  888. }
  889. struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask)
  890. {
  891. struct nfs_seqid *new;
  892. new = kmalloc(sizeof(*new), gfp_mask);
  893. if (new != NULL) {
  894. new->sequence = counter;
  895. INIT_LIST_HEAD(&new->list);
  896. new->task = NULL;
  897. }
  898. return new;
  899. }
  900. void nfs_release_seqid(struct nfs_seqid *seqid)
  901. {
  902. struct nfs_seqid_counter *sequence;
  903. if (list_empty(&seqid->list))
  904. return;
  905. sequence = seqid->sequence;
  906. spin_lock(&sequence->lock);
  907. list_del_init(&seqid->list);
  908. if (!list_empty(&sequence->list)) {
  909. struct nfs_seqid *next;
  910. next = list_first_entry(&sequence->list,
  911. struct nfs_seqid, list);
  912. rpc_wake_up_queued_task(&sequence->wait, next->task);
  913. }
  914. spin_unlock(&sequence->lock);
  915. }
  916. void nfs_free_seqid(struct nfs_seqid *seqid)
  917. {
  918. nfs_release_seqid(seqid);
  919. kfree(seqid);
  920. }
  921. /*
  922. * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
  923. * failed with a seqid incrementing error -
  924. * see comments nfs4.h:seqid_mutating_error()
  925. */
  926. static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
  927. {
  928. switch (status) {
  929. case 0:
  930. break;
  931. case -NFS4ERR_BAD_SEQID:
  932. if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
  933. return;
  934. pr_warn_ratelimited("NFS: v4 server returned a bad"
  935. " sequence-id error on an"
  936. " unconfirmed sequence %p!\n",
  937. seqid->sequence);
  938. case -NFS4ERR_STALE_CLIENTID:
  939. case -NFS4ERR_STALE_STATEID:
  940. case -NFS4ERR_BAD_STATEID:
  941. case -NFS4ERR_BADXDR:
  942. case -NFS4ERR_RESOURCE:
  943. case -NFS4ERR_NOFILEHANDLE:
  944. /* Non-seqid mutating errors */
  945. return;
  946. };
  947. /*
  948. * Note: no locking needed as we are guaranteed to be first
  949. * on the sequence list
  950. */
  951. seqid->sequence->counter++;
  952. }
  953. void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
  954. {
  955. struct nfs4_state_owner *sp = container_of(seqid->sequence,
  956. struct nfs4_state_owner, so_seqid);
  957. struct nfs_server *server = sp->so_server;
  958. if (status == -NFS4ERR_BAD_SEQID)
  959. nfs4_drop_state_owner(sp);
  960. if (!nfs4_has_session(server->nfs_client))
  961. nfs_increment_seqid(status, seqid);
  962. }
  963. /*
  964. * Increment the seqid if the LOCK/LOCKU succeeded, or
  965. * failed with a seqid incrementing error -
  966. * see comments nfs4.h:seqid_mutating_error()
  967. */
  968. void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
  969. {
  970. nfs_increment_seqid(status, seqid);
  971. }
  972. int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
  973. {
  974. struct nfs_seqid_counter *sequence = seqid->sequence;
  975. int status = 0;
  976. spin_lock(&sequence->lock);
  977. seqid->task = task;
  978. if (list_empty(&seqid->list))
  979. list_add_tail(&seqid->list, &sequence->list);
  980. if (list_first_entry(&sequence->list, struct nfs_seqid, list) == seqid)
  981. goto unlock;
  982. rpc_sleep_on(&sequence->wait, task, NULL);
  983. status = -EAGAIN;
  984. unlock:
  985. spin_unlock(&sequence->lock);
  986. return status;
  987. }
  988. static int nfs4_run_state_manager(void *);
  989. static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
  990. {
  991. smp_mb__before_atomic();
  992. clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
  993. smp_mb__after_atomic();
  994. wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
  995. rpc_wake_up(&clp->cl_rpcwaitq);
  996. }
  997. /*
  998. * Schedule the nfs_client asynchronous state management routine
  999. */
  1000. void nfs4_schedule_state_manager(struct nfs_client *clp)
  1001. {
  1002. struct task_struct *task;
  1003. char buf[INET6_ADDRSTRLEN + sizeof("-manager") + 1];
  1004. if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
  1005. return;
  1006. __module_get(THIS_MODULE);
  1007. atomic_inc(&clp->cl_count);
  1008. /* The rcu_read_lock() is not strictly necessary, as the state
  1009. * manager is the only thread that ever changes the rpc_xprt
  1010. * after it's initialized. At this point, we're single threaded. */
  1011. rcu_read_lock();
  1012. snprintf(buf, sizeof(buf), "%s-manager",
  1013. rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR));
  1014. rcu_read_unlock();
  1015. task = kthread_run(nfs4_run_state_manager, clp, "%s", buf);
  1016. if (IS_ERR(task)) {
  1017. printk(KERN_ERR "%s: kthread_run: %ld\n",
  1018. __func__, PTR_ERR(task));
  1019. nfs4_clear_state_manager_bit(clp);
  1020. nfs_put_client(clp);
  1021. module_put(THIS_MODULE);
  1022. }
  1023. }
  1024. /*
  1025. * Schedule a lease recovery attempt
  1026. */
  1027. void nfs4_schedule_lease_recovery(struct nfs_client *clp)
  1028. {
  1029. if (!clp)
  1030. return;
  1031. if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
  1032. set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
  1033. dprintk("%s: scheduling lease recovery for server %s\n", __func__,
  1034. clp->cl_hostname);
  1035. nfs4_schedule_state_manager(clp);
  1036. }
  1037. EXPORT_SYMBOL_GPL(nfs4_schedule_lease_recovery);
  1038. /**
  1039. * nfs4_schedule_migration_recovery - trigger migration recovery
  1040. *
  1041. * @server: FSID that is migrating
  1042. *
  1043. * Returns zero if recovery has started, otherwise a negative NFS4ERR
  1044. * value is returned.
  1045. */
  1046. int nfs4_schedule_migration_recovery(const struct nfs_server *server)
  1047. {
  1048. struct nfs_client *clp = server->nfs_client;
  1049. if (server->fh_expire_type != NFS4_FH_PERSISTENT) {
  1050. pr_err("NFS: volatile file handles not supported (server %s)\n",
  1051. clp->cl_hostname);
  1052. return -NFS4ERR_IO;
  1053. }
  1054. if (test_bit(NFS_MIG_FAILED, &server->mig_status))
  1055. return -NFS4ERR_IO;
  1056. dprintk("%s: scheduling migration recovery for (%llx:%llx) on %s\n",
  1057. __func__,
  1058. (unsigned long long)server->fsid.major,
  1059. (unsigned long long)server->fsid.minor,
  1060. clp->cl_hostname);
  1061. set_bit(NFS_MIG_IN_TRANSITION,
  1062. &((struct nfs_server *)server)->mig_status);
  1063. set_bit(NFS4CLNT_MOVED, &clp->cl_state);
  1064. nfs4_schedule_state_manager(clp);
  1065. return 0;
  1066. }
  1067. EXPORT_SYMBOL_GPL(nfs4_schedule_migration_recovery);
  1068. /**
  1069. * nfs4_schedule_lease_moved_recovery - start lease-moved recovery
  1070. *
  1071. * @clp: server to check for moved leases
  1072. *
  1073. */
  1074. void nfs4_schedule_lease_moved_recovery(struct nfs_client *clp)
  1075. {
  1076. dprintk("%s: scheduling lease-moved recovery for client ID %llx on %s\n",
  1077. __func__, clp->cl_clientid, clp->cl_hostname);
  1078. set_bit(NFS4CLNT_LEASE_MOVED, &clp->cl_state);
  1079. nfs4_schedule_state_manager(clp);
  1080. }
  1081. EXPORT_SYMBOL_GPL(nfs4_schedule_lease_moved_recovery);
  1082. int nfs4_wait_clnt_recover(struct nfs_client *clp)
  1083. {
  1084. int res;
  1085. might_sleep();
  1086. atomic_inc(&clp->cl_count);
  1087. res = wait_on_bit_action(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
  1088. nfs_wait_bit_killable, TASK_KILLABLE);
  1089. if (res)
  1090. goto out;
  1091. if (clp->cl_cons_state < 0)
  1092. res = clp->cl_cons_state;
  1093. out:
  1094. nfs_put_client(clp);
  1095. return res;
  1096. }
  1097. int nfs4_client_recover_expired_lease(struct nfs_client *clp)
  1098. {
  1099. unsigned int loop;
  1100. int ret;
  1101. for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
  1102. ret = nfs4_wait_clnt_recover(clp);
  1103. if (ret != 0)
  1104. break;
  1105. if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
  1106. !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
  1107. break;
  1108. nfs4_schedule_state_manager(clp);
  1109. ret = -EIO;
  1110. }
  1111. return ret;
  1112. }
  1113. /*
  1114. * nfs40_handle_cb_pathdown - return all delegations after NFS4ERR_CB_PATH_DOWN
  1115. * @clp: client to process
  1116. *
  1117. * Set the NFS4CLNT_LEASE_EXPIRED state in order to force a
  1118. * resend of the SETCLIENTID and hence re-establish the
  1119. * callback channel. Then return all existing delegations.
  1120. */
  1121. static void nfs40_handle_cb_pathdown(struct nfs_client *clp)
  1122. {
  1123. set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
  1124. nfs_expire_all_delegations(clp);
  1125. dprintk("%s: handling CB_PATHDOWN recovery for server %s\n", __func__,
  1126. clp->cl_hostname);
  1127. }
  1128. void nfs4_schedule_path_down_recovery(struct nfs_client *clp)
  1129. {
  1130. nfs40_handle_cb_pathdown(clp);
  1131. nfs4_schedule_state_manager(clp);
  1132. }
  1133. static int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
  1134. {
  1135. set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
  1136. /* Don't recover state that expired before the reboot */
  1137. if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
  1138. clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
  1139. return 0;
  1140. }
  1141. set_bit(NFS_OWNER_RECLAIM_REBOOT, &state->owner->so_flags);
  1142. set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
  1143. return 1;
  1144. }
  1145. int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
  1146. {
  1147. set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
  1148. clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
  1149. set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
  1150. set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
  1151. return 1;
  1152. }
  1153. int nfs4_schedule_stateid_recovery(const struct nfs_server *server, struct nfs4_state *state)
  1154. {
  1155. struct nfs_client *clp = server->nfs_client;
  1156. if (!nfs4_valid_open_stateid(state))
  1157. return -EBADF;
  1158. nfs4_state_mark_reclaim_nograce(clp, state);
  1159. dprintk("%s: scheduling stateid recovery for server %s\n", __func__,
  1160. clp->cl_hostname);
  1161. nfs4_schedule_state_manager(clp);
  1162. return 0;
  1163. }
  1164. EXPORT_SYMBOL_GPL(nfs4_schedule_stateid_recovery);
  1165. void nfs_inode_find_state_and_recover(struct inode *inode,
  1166. const nfs4_stateid *stateid)
  1167. {
  1168. struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
  1169. struct nfs_inode *nfsi = NFS_I(inode);
  1170. struct nfs_open_context *ctx;
  1171. struct nfs4_state *state;
  1172. bool found = false;
  1173. spin_lock(&inode->i_lock);
  1174. list_for_each_entry(ctx, &nfsi->open_files, list) {
  1175. state = ctx->state;
  1176. if (state == NULL)
  1177. continue;
  1178. if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
  1179. continue;
  1180. if (!nfs4_stateid_match(&state->stateid, stateid))
  1181. continue;
  1182. nfs4_state_mark_reclaim_nograce(clp, state);
  1183. found = true;
  1184. }
  1185. spin_unlock(&inode->i_lock);
  1186. if (found)
  1187. nfs4_schedule_state_manager(clp);
  1188. }
  1189. static void nfs4_state_mark_open_context_bad(struct nfs4_state *state)
  1190. {
  1191. struct inode *inode = state->inode;
  1192. struct nfs_inode *nfsi = NFS_I(inode);
  1193. struct nfs_open_context *ctx;
  1194. spin_lock(&inode->i_lock);
  1195. list_for_each_entry(ctx, &nfsi->open_files, list) {
  1196. if (ctx->state != state)
  1197. continue;
  1198. set_bit(NFS_CONTEXT_BAD, &ctx->flags);
  1199. }
  1200. spin_unlock(&inode->i_lock);
  1201. }
  1202. static void nfs4_state_mark_recovery_failed(struct nfs4_state *state, int error)
  1203. {
  1204. set_bit(NFS_STATE_RECOVERY_FAILED, &state->flags);
  1205. nfs4_state_mark_open_context_bad(state);
  1206. }
  1207. static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
  1208. {
  1209. struct inode *inode = state->inode;
  1210. struct nfs_inode *nfsi = NFS_I(inode);
  1211. struct file_lock *fl;
  1212. int status = 0;
  1213. if (inode->i_flock == NULL)
  1214. return 0;
  1215. /* Guard against delegation returns and new lock/unlock calls */
  1216. down_write(&nfsi->rwsem);
  1217. /* Protect inode->i_flock using the BKL */
  1218. spin_lock(&inode->i_lock);
  1219. for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
  1220. if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
  1221. continue;
  1222. if (nfs_file_open_context(fl->fl_file)->state != state)
  1223. continue;
  1224. spin_unlock(&inode->i_lock);
  1225. status = ops->recover_lock(state, fl);
  1226. switch (status) {
  1227. case 0:
  1228. break;
  1229. case -ESTALE:
  1230. case -NFS4ERR_ADMIN_REVOKED:
  1231. case -NFS4ERR_STALE_STATEID:
  1232. case -NFS4ERR_BAD_STATEID:
  1233. case -NFS4ERR_EXPIRED:
  1234. case -NFS4ERR_NO_GRACE:
  1235. case -NFS4ERR_STALE_CLIENTID:
  1236. case -NFS4ERR_BADSESSION:
  1237. case -NFS4ERR_BADSLOT:
  1238. case -NFS4ERR_BAD_HIGH_SLOT:
  1239. case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
  1240. goto out;
  1241. default:
  1242. printk(KERN_ERR "NFS: %s: unhandled error %d\n",
  1243. __func__, status);
  1244. case -ENOMEM:
  1245. case -NFS4ERR_DENIED:
  1246. case -NFS4ERR_RECLAIM_BAD:
  1247. case -NFS4ERR_RECLAIM_CONFLICT:
  1248. /* kill_proc(fl->fl_pid, SIGLOST, 1); */
  1249. status = 0;
  1250. }
  1251. spin_lock(&inode->i_lock);
  1252. }
  1253. spin_unlock(&inode->i_lock);
  1254. out:
  1255. up_write(&nfsi->rwsem);
  1256. return status;
  1257. }
  1258. static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
  1259. {
  1260. struct nfs4_state *state;
  1261. struct nfs4_lock_state *lock;
  1262. int status = 0;
  1263. /* Note: we rely on the sp->so_states list being ordered
  1264. * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
  1265. * states first.
  1266. * This is needed to ensure that the server won't give us any
  1267. * read delegations that we have to return if, say, we are
  1268. * recovering after a network partition or a reboot from a
  1269. * server that doesn't support a grace period.
  1270. */
  1271. spin_lock(&sp->so_lock);
  1272. raw_write_seqcount_begin(&sp->so_reclaim_seqcount);
  1273. restart:
  1274. list_for_each_entry(state, &sp->so_states, open_states) {
  1275. if (!test_and_clear_bit(ops->state_flag_bit, &state->flags))
  1276. continue;
  1277. if (!nfs4_valid_open_stateid(state))
  1278. continue;
  1279. if (state->state == 0)
  1280. continue;
  1281. atomic_inc(&state->count);
  1282. spin_unlock(&sp->so_lock);
  1283. status = ops->recover_open(sp, state);
  1284. if (status >= 0) {
  1285. status = nfs4_reclaim_locks(state, ops);
  1286. if (status >= 0) {
  1287. if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) {
  1288. spin_lock(&state->state_lock);
  1289. list_for_each_entry(lock, &state->lock_states, ls_locks) {
  1290. if (!test_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags))
  1291. pr_warn_ratelimited("NFS: "
  1292. "%s: Lock reclaim "
  1293. "failed!\n", __func__);
  1294. }
  1295. spin_unlock(&state->state_lock);
  1296. }
  1297. nfs4_put_open_state(state);
  1298. clear_bit(NFS4CLNT_RECLAIM_NOGRACE,
  1299. &state->flags);
  1300. spin_lock(&sp->so_lock);
  1301. goto restart;
  1302. }
  1303. }
  1304. switch (status) {
  1305. default:
  1306. printk(KERN_ERR "NFS: %s: unhandled error %d\n",
  1307. __func__, status);
  1308. case -ENOENT:
  1309. case -ENOMEM:
  1310. case -ESTALE:
  1311. /* Open state on this file cannot be recovered */
  1312. nfs4_state_mark_recovery_failed(state, status);
  1313. break;
  1314. case -EAGAIN:
  1315. ssleep(1);
  1316. case -NFS4ERR_ADMIN_REVOKED:
  1317. case -NFS4ERR_STALE_STATEID:
  1318. case -NFS4ERR_BAD_STATEID:
  1319. case -NFS4ERR_RECLAIM_BAD:
  1320. case -NFS4ERR_RECLAIM_CONFLICT:
  1321. nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
  1322. break;
  1323. case -NFS4ERR_EXPIRED:
  1324. case -NFS4ERR_NO_GRACE:
  1325. nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
  1326. case -NFS4ERR_STALE_CLIENTID:
  1327. case -NFS4ERR_BADSESSION:
  1328. case -NFS4ERR_BADSLOT:
  1329. case -NFS4ERR_BAD_HIGH_SLOT:
  1330. case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
  1331. goto out_err;
  1332. }
  1333. nfs4_put_open_state(state);
  1334. spin_lock(&sp->so_lock);
  1335. goto restart;
  1336. }
  1337. raw_write_seqcount_end(&sp->so_reclaim_seqcount);
  1338. spin_unlock(&sp->so_lock);
  1339. return 0;
  1340. out_err:
  1341. nfs4_put_open_state(state);
  1342. spin_lock(&sp->so_lock);
  1343. raw_write_seqcount_end(&sp->so_reclaim_seqcount);
  1344. spin_unlock(&sp->so_lock);
  1345. return status;
  1346. }
  1347. static void nfs4_clear_open_state(struct nfs4_state *state)
  1348. {
  1349. struct nfs4_lock_state *lock;
  1350. clear_bit(NFS_DELEGATED_STATE, &state->flags);
  1351. clear_bit(NFS_O_RDONLY_STATE, &state->flags);
  1352. clear_bit(NFS_O_WRONLY_STATE, &state->flags);
  1353. clear_bit(NFS_O_RDWR_STATE, &state->flags);
  1354. spin_lock(&state->state_lock);
  1355. list_for_each_entry(lock, &state->lock_states, ls_locks) {
  1356. lock->ls_seqid.flags = 0;
  1357. clear_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags);
  1358. }
  1359. spin_unlock(&state->state_lock);
  1360. }
  1361. static void nfs4_reset_seqids(struct nfs_server *server,
  1362. int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
  1363. {
  1364. struct nfs_client *clp = server->nfs_client;
  1365. struct nfs4_state_owner *sp;
  1366. struct rb_node *pos;
  1367. struct nfs4_state *state;
  1368. spin_lock(&clp->cl_lock);
  1369. for (pos = rb_first(&server->state_owners);
  1370. pos != NULL;
  1371. pos = rb_next(pos)) {
  1372. sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
  1373. sp->so_seqid.flags = 0;
  1374. spin_lock(&sp->so_lock);
  1375. list_for_each_entry(state, &sp->so_states, open_states) {
  1376. if (mark_reclaim(clp, state))
  1377. nfs4_clear_open_state(state);
  1378. }
  1379. spin_unlock(&sp->so_lock);
  1380. }
  1381. spin_unlock(&clp->cl_lock);
  1382. }
  1383. static void nfs4_state_mark_reclaim_helper(struct nfs_client *clp,
  1384. int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
  1385. {
  1386. struct nfs_server *server;
  1387. rcu_read_lock();
  1388. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
  1389. nfs4_reset_seqids(server, mark_reclaim);
  1390. rcu_read_unlock();
  1391. }
  1392. static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
  1393. {
  1394. /* Mark all delegations for reclaim */
  1395. nfs_delegation_mark_reclaim(clp);
  1396. nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
  1397. }
  1398. static void nfs4_reclaim_complete(struct nfs_client *clp,
  1399. const struct nfs4_state_recovery_ops *ops,
  1400. struct rpc_cred *cred)
  1401. {
  1402. /* Notify the server we're done reclaiming our state */
  1403. if (ops->reclaim_complete)
  1404. (void)ops->reclaim_complete(clp, cred);
  1405. }
  1406. static void nfs4_clear_reclaim_server(struct nfs_server *server)
  1407. {
  1408. struct nfs_client *clp = server->nfs_client;
  1409. struct nfs4_state_owner *sp;
  1410. struct rb_node *pos;
  1411. struct nfs4_state *state;
  1412. spin_lock(&clp->cl_lock);
  1413. for (pos = rb_first(&server->state_owners);
  1414. pos != NULL;
  1415. pos = rb_next(pos)) {
  1416. sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
  1417. spin_lock(&sp->so_lock);
  1418. list_for_each_entry(state, &sp->so_states, open_states) {
  1419. if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT,
  1420. &state->flags))
  1421. continue;
  1422. nfs4_state_mark_reclaim_nograce(clp, state);
  1423. }
  1424. spin_unlock(&sp->so_lock);
  1425. }
  1426. spin_unlock(&clp->cl_lock);
  1427. }
  1428. static int nfs4_state_clear_reclaim_reboot(struct nfs_client *clp)
  1429. {
  1430. struct nfs_server *server;
  1431. if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
  1432. return 0;
  1433. rcu_read_lock();
  1434. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
  1435. nfs4_clear_reclaim_server(server);
  1436. rcu_read_unlock();
  1437. nfs_delegation_reap_unclaimed(clp);
  1438. return 1;
  1439. }
  1440. static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
  1441. {
  1442. const struct nfs4_state_recovery_ops *ops;
  1443. struct rpc_cred *cred;
  1444. if (!nfs4_state_clear_reclaim_reboot(clp))
  1445. return;
  1446. ops = clp->cl_mvops->reboot_recovery_ops;
  1447. cred = nfs4_get_clid_cred(clp);
  1448. nfs4_reclaim_complete(clp, ops, cred);
  1449. put_rpccred(cred);
  1450. }
  1451. static void nfs_delegation_clear_all(struct nfs_client *clp)
  1452. {
  1453. nfs_delegation_mark_reclaim(clp);
  1454. nfs_delegation_reap_unclaimed(clp);
  1455. }
  1456. static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
  1457. {
  1458. nfs_delegation_clear_all(clp);
  1459. nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
  1460. }
  1461. static int nfs4_recovery_handle_error(struct nfs_client *clp, int error)
  1462. {
  1463. switch (error) {
  1464. case 0:
  1465. break;
  1466. case -NFS4ERR_CB_PATH_DOWN:
  1467. nfs40_handle_cb_pathdown(clp);
  1468. break;
  1469. case -NFS4ERR_NO_GRACE:
  1470. nfs4_state_end_reclaim_reboot(clp);
  1471. break;
  1472. case -NFS4ERR_STALE_CLIENTID:
  1473. set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
  1474. nfs4_state_clear_reclaim_reboot(clp);
  1475. nfs4_state_start_reclaim_reboot(clp);
  1476. break;
  1477. case -NFS4ERR_EXPIRED:
  1478. set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
  1479. nfs4_state_start_reclaim_nograce(clp);
  1480. break;
  1481. case -NFS4ERR_BADSESSION:
  1482. case -NFS4ERR_BADSLOT:
  1483. case -NFS4ERR_BAD_HIGH_SLOT:
  1484. case -NFS4ERR_DEADSESSION:
  1485. case -NFS4ERR_SEQ_FALSE_RETRY:
  1486. case -NFS4ERR_SEQ_MISORDERED:
  1487. set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
  1488. /* Zero session reset errors */
  1489. break;
  1490. case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
  1491. set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
  1492. break;
  1493. default:
  1494. dprintk("%s: failed to handle error %d for server %s\n",
  1495. __func__, error, clp->cl_hostname);
  1496. return error;
  1497. }
  1498. dprintk("%s: handled error %d for server %s\n", __func__, error,
  1499. clp->cl_hostname);
  1500. return 0;
  1501. }
  1502. static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
  1503. {
  1504. struct nfs4_state_owner *sp;
  1505. struct nfs_server *server;
  1506. struct rb_node *pos;
  1507. int status = 0;
  1508. restart:
  1509. rcu_read_lock();
  1510. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  1511. nfs4_purge_state_owners(server);
  1512. spin_lock(&clp->cl_lock);
  1513. for (pos = rb_first(&server->state_owners);
  1514. pos != NULL;
  1515. pos = rb_next(pos)) {
  1516. sp = rb_entry(pos,
  1517. struct nfs4_state_owner, so_server_node);
  1518. if (!test_and_clear_bit(ops->owner_flag_bit,
  1519. &sp->so_flags))
  1520. continue;
  1521. atomic_inc(&sp->so_count);
  1522. spin_unlock(&clp->cl_lock);
  1523. rcu_read_unlock();
  1524. status = nfs4_reclaim_open_state(sp, ops);
  1525. if (status < 0) {
  1526. set_bit(ops->owner_flag_bit, &sp->so_flags);
  1527. nfs4_put_state_owner(sp);
  1528. status = nfs4_recovery_handle_error(clp, status);
  1529. return (status != 0) ? status : -EAGAIN;
  1530. }
  1531. nfs4_put_state_owner(sp);
  1532. goto restart;
  1533. }
  1534. spin_unlock(&clp->cl_lock);
  1535. }
  1536. rcu_read_unlock();
  1537. return 0;
  1538. }
  1539. static int nfs4_check_lease(struct nfs_client *clp)
  1540. {
  1541. struct rpc_cred *cred;
  1542. const struct nfs4_state_maintenance_ops *ops =
  1543. clp->cl_mvops->state_renewal_ops;
  1544. int status;
  1545. /* Is the client already known to have an expired lease? */
  1546. if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
  1547. return 0;
  1548. spin_lock(&clp->cl_lock);
  1549. cred = ops->get_state_renewal_cred_locked(clp);
  1550. spin_unlock(&clp->cl_lock);
  1551. if (cred == NULL) {
  1552. cred = nfs4_get_clid_cred(clp);
  1553. status = -ENOKEY;
  1554. if (cred == NULL)
  1555. goto out;
  1556. }
  1557. status = ops->renew_lease(clp, cred);
  1558. put_rpccred(cred);
  1559. if (status == -ETIMEDOUT) {
  1560. set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
  1561. return 0;
  1562. }
  1563. out:
  1564. return nfs4_recovery_handle_error(clp, status);
  1565. }
  1566. /* Set NFS4CLNT_LEASE_EXPIRED and reclaim reboot state for all v4.0 errors
  1567. * and for recoverable errors on EXCHANGE_ID for v4.1
  1568. */
  1569. static int nfs4_handle_reclaim_lease_error(struct nfs_client *clp, int status)
  1570. {
  1571. switch (status) {
  1572. case -NFS4ERR_SEQ_MISORDERED:
  1573. if (test_and_set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state))
  1574. return -ESERVERFAULT;
  1575. /* Lease confirmation error: retry after purging the lease */
  1576. ssleep(1);
  1577. clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  1578. break;
  1579. case -NFS4ERR_STALE_CLIENTID:
  1580. clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  1581. nfs4_state_start_reclaim_reboot(clp);
  1582. break;
  1583. case -NFS4ERR_CLID_INUSE:
  1584. pr_err("NFS: Server %s reports our clientid is in use\n",
  1585. clp->cl_hostname);
  1586. nfs_mark_client_ready(clp, -EPERM);
  1587. clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  1588. return -EPERM;
  1589. case -EACCES:
  1590. case -NFS4ERR_DELAY:
  1591. case -ETIMEDOUT:
  1592. case -EAGAIN:
  1593. ssleep(1);
  1594. break;
  1595. case -NFS4ERR_MINOR_VERS_MISMATCH:
  1596. if (clp->cl_cons_state == NFS_CS_SESSION_INITING)
  1597. nfs_mark_client_ready(clp, -EPROTONOSUPPORT);
  1598. dprintk("%s: exit with error %d for server %s\n",
  1599. __func__, -EPROTONOSUPPORT, clp->cl_hostname);
  1600. return -EPROTONOSUPPORT;
  1601. case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
  1602. * in nfs4_exchange_id */
  1603. default:
  1604. dprintk("%s: exit with error %d for server %s\n", __func__,
  1605. status, clp->cl_hostname);
  1606. return status;
  1607. }
  1608. set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
  1609. dprintk("%s: handled error %d for server %s\n", __func__, status,
  1610. clp->cl_hostname);
  1611. return 0;
  1612. }
  1613. static int nfs4_establish_lease(struct nfs_client *clp)
  1614. {
  1615. struct rpc_cred *cred;
  1616. const struct nfs4_state_recovery_ops *ops =
  1617. clp->cl_mvops->reboot_recovery_ops;
  1618. int status;
  1619. cred = nfs4_get_clid_cred(clp);
  1620. if (cred == NULL)
  1621. return -ENOENT;
  1622. status = ops->establish_clid(clp, cred);
  1623. put_rpccred(cred);
  1624. if (status != 0)
  1625. return status;
  1626. pnfs_destroy_all_layouts(clp);
  1627. return 0;
  1628. }
  1629. /*
  1630. * Returns zero or a negative errno. NFS4ERR values are converted
  1631. * to local errno values.
  1632. */
  1633. static int nfs4_reclaim_lease(struct nfs_client *clp)
  1634. {
  1635. int status;
  1636. status = nfs4_establish_lease(clp);
  1637. if (status < 0)
  1638. return nfs4_handle_reclaim_lease_error(clp, status);
  1639. if (test_and_clear_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state))
  1640. nfs4_state_start_reclaim_nograce(clp);
  1641. if (!test_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state))
  1642. set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
  1643. clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
  1644. clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
  1645. return 0;
  1646. }
  1647. static int nfs4_purge_lease(struct nfs_client *clp)
  1648. {
  1649. int status;
  1650. status = nfs4_establish_lease(clp);
  1651. if (status < 0)
  1652. return nfs4_handle_reclaim_lease_error(clp, status);
  1653. clear_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
  1654. set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
  1655. nfs4_state_start_reclaim_nograce(clp);
  1656. return 0;
  1657. }
  1658. /*
  1659. * Try remote migration of one FSID from a source server to a
  1660. * destination server. The source server provides a list of
  1661. * potential destinations.
  1662. *
  1663. * Returns zero or a negative NFS4ERR status code.
  1664. */
  1665. static int nfs4_try_migration(struct nfs_server *server, struct rpc_cred *cred)
  1666. {
  1667. struct nfs_client *clp = server->nfs_client;
  1668. struct nfs4_fs_locations *locations = NULL;
  1669. struct inode *inode;
  1670. struct page *page;
  1671. int status, result;
  1672. dprintk("--> %s: FSID %llx:%llx on \"%s\"\n", __func__,
  1673. (unsigned long long)server->fsid.major,
  1674. (unsigned long long)server->fsid.minor,
  1675. clp->cl_hostname);
  1676. result = 0;
  1677. page = alloc_page(GFP_KERNEL);
  1678. locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
  1679. if (page == NULL || locations == NULL) {
  1680. dprintk("<-- %s: no memory\n", __func__);
  1681. goto out;
  1682. }
  1683. inode = server->super->s_root->d_inode;
  1684. result = nfs4_proc_get_locations(inode, locations, page, cred);
  1685. if (result) {
  1686. dprintk("<-- %s: failed to retrieve fs_locations: %d\n",
  1687. __func__, result);
  1688. goto out;
  1689. }
  1690. result = -NFS4ERR_NXIO;
  1691. if (!(locations->fattr.valid & NFS_ATTR_FATTR_V4_LOCATIONS)) {
  1692. dprintk("<-- %s: No fs_locations data, migration skipped\n",
  1693. __func__);
  1694. goto out;
  1695. }
  1696. nfs4_begin_drain_session(clp);
  1697. status = nfs4_replace_transport(server, locations);
  1698. if (status != 0) {
  1699. dprintk("<-- %s: failed to replace transport: %d\n",
  1700. __func__, status);
  1701. goto out;
  1702. }
  1703. result = 0;
  1704. dprintk("<-- %s: migration succeeded\n", __func__);
  1705. out:
  1706. if (page != NULL)
  1707. __free_page(page);
  1708. kfree(locations);
  1709. if (result) {
  1710. pr_err("NFS: migration recovery failed (server %s)\n",
  1711. clp->cl_hostname);
  1712. set_bit(NFS_MIG_FAILED, &server->mig_status);
  1713. }
  1714. return result;
  1715. }
  1716. /*
  1717. * Returns zero or a negative NFS4ERR status code.
  1718. */
  1719. static int nfs4_handle_migration(struct nfs_client *clp)
  1720. {
  1721. const struct nfs4_state_maintenance_ops *ops =
  1722. clp->cl_mvops->state_renewal_ops;
  1723. struct nfs_server *server;
  1724. struct rpc_cred *cred;
  1725. dprintk("%s: migration reported on \"%s\"\n", __func__,
  1726. clp->cl_hostname);
  1727. spin_lock(&clp->cl_lock);
  1728. cred = ops->get_state_renewal_cred_locked(clp);
  1729. spin_unlock(&clp->cl_lock);
  1730. if (cred == NULL)
  1731. return -NFS4ERR_NOENT;
  1732. clp->cl_mig_gen++;
  1733. restart:
  1734. rcu_read_lock();
  1735. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  1736. int status;
  1737. if (server->mig_gen == clp->cl_mig_gen)
  1738. continue;
  1739. server->mig_gen = clp->cl_mig_gen;
  1740. if (!test_and_clear_bit(NFS_MIG_IN_TRANSITION,
  1741. &server->mig_status))
  1742. continue;
  1743. rcu_read_unlock();
  1744. status = nfs4_try_migration(server, cred);
  1745. if (status < 0) {
  1746. put_rpccred(cred);
  1747. return status;
  1748. }
  1749. goto restart;
  1750. }
  1751. rcu_read_unlock();
  1752. put_rpccred(cred);
  1753. return 0;
  1754. }
  1755. /*
  1756. * Test each nfs_server on the clp's cl_superblocks list to see
  1757. * if it's moved to another server. Stop when the server no longer
  1758. * returns NFS4ERR_LEASE_MOVED.
  1759. */
  1760. static int nfs4_handle_lease_moved(struct nfs_client *clp)
  1761. {
  1762. const struct nfs4_state_maintenance_ops *ops =
  1763. clp->cl_mvops->state_renewal_ops;
  1764. struct nfs_server *server;
  1765. struct rpc_cred *cred;
  1766. dprintk("%s: lease moved reported on \"%s\"\n", __func__,
  1767. clp->cl_hostname);
  1768. spin_lock(&clp->cl_lock);
  1769. cred = ops->get_state_renewal_cred_locked(clp);
  1770. spin_unlock(&clp->cl_lock);
  1771. if (cred == NULL)
  1772. return -NFS4ERR_NOENT;
  1773. clp->cl_mig_gen++;
  1774. restart:
  1775. rcu_read_lock();
  1776. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  1777. struct inode *inode;
  1778. int status;
  1779. if (server->mig_gen == clp->cl_mig_gen)
  1780. continue;
  1781. server->mig_gen = clp->cl_mig_gen;
  1782. rcu_read_unlock();
  1783. inode = server->super->s_root->d_inode;
  1784. status = nfs4_proc_fsid_present(inode, cred);
  1785. if (status != -NFS4ERR_MOVED)
  1786. goto restart; /* wasn't this one */
  1787. if (nfs4_try_migration(server, cred) == -NFS4ERR_LEASE_MOVED)
  1788. goto restart; /* there are more */
  1789. goto out;
  1790. }
  1791. rcu_read_unlock();
  1792. out:
  1793. put_rpccred(cred);
  1794. return 0;
  1795. }
  1796. /**
  1797. * nfs4_discover_server_trunking - Detect server IP address trunking
  1798. *
  1799. * @clp: nfs_client under test
  1800. * @result: OUT: found nfs_client, or clp
  1801. *
  1802. * Returns zero or a negative errno. If zero is returned,
  1803. * an nfs_client pointer is planted in "result".
  1804. *
  1805. * Note: since we are invoked in process context, and
  1806. * not from inside the state manager, we cannot use
  1807. * nfs4_handle_reclaim_lease_error().
  1808. */
  1809. int nfs4_discover_server_trunking(struct nfs_client *clp,
  1810. struct nfs_client **result)
  1811. {
  1812. const struct nfs4_state_recovery_ops *ops =
  1813. clp->cl_mvops->reboot_recovery_ops;
  1814. struct rpc_clnt *clnt;
  1815. struct rpc_cred *cred;
  1816. int i, status;
  1817. dprintk("NFS: %s: testing '%s'\n", __func__, clp->cl_hostname);
  1818. clnt = clp->cl_rpcclient;
  1819. i = 0;
  1820. mutex_lock(&nfs_clid_init_mutex);
  1821. again:
  1822. status = -ENOENT;
  1823. cred = nfs4_get_clid_cred(clp);
  1824. if (cred == NULL)
  1825. goto out_unlock;
  1826. status = ops->detect_trunking(clp, result, cred);
  1827. put_rpccred(cred);
  1828. switch (status) {
  1829. case 0:
  1830. break;
  1831. case -ETIMEDOUT:
  1832. if (clnt->cl_softrtry)
  1833. break;
  1834. case -NFS4ERR_DELAY:
  1835. case -EAGAIN:
  1836. ssleep(1);
  1837. case -NFS4ERR_STALE_CLIENTID:
  1838. dprintk("NFS: %s after status %d, retrying\n",
  1839. __func__, status);
  1840. goto again;
  1841. case -EACCES:
  1842. if (i++ == 0) {
  1843. nfs4_root_machine_cred(clp);
  1844. goto again;
  1845. }
  1846. if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX)
  1847. break;
  1848. case -NFS4ERR_CLID_INUSE:
  1849. case -NFS4ERR_WRONGSEC:
  1850. /* No point in retrying if we already used RPC_AUTH_UNIX */
  1851. if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX) {
  1852. status = -EPERM;
  1853. break;
  1854. }
  1855. clnt = rpc_clone_client_set_auth(clnt, RPC_AUTH_UNIX);
  1856. if (IS_ERR(clnt)) {
  1857. status = PTR_ERR(clnt);
  1858. break;
  1859. }
  1860. /* Note: this is safe because we haven't yet marked the
  1861. * client as ready, so we are the only user of
  1862. * clp->cl_rpcclient
  1863. */
  1864. clnt = xchg(&clp->cl_rpcclient, clnt);
  1865. rpc_shutdown_client(clnt);
  1866. clnt = clp->cl_rpcclient;
  1867. goto again;
  1868. case -NFS4ERR_MINOR_VERS_MISMATCH:
  1869. status = -EPROTONOSUPPORT;
  1870. break;
  1871. case -EKEYEXPIRED:
  1872. case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
  1873. * in nfs4_exchange_id */
  1874. status = -EKEYEXPIRED;
  1875. break;
  1876. default:
  1877. pr_warn("NFS: %s unhandled error %d. Exiting with error EIO\n",
  1878. __func__, status);
  1879. status = -EIO;
  1880. }
  1881. out_unlock:
  1882. mutex_unlock(&nfs_clid_init_mutex);
  1883. dprintk("NFS: %s: status = %d\n", __func__, status);
  1884. return status;
  1885. }
  1886. #ifdef CONFIG_NFS_V4_1
  1887. void nfs4_schedule_session_recovery(struct nfs4_session *session, int err)
  1888. {
  1889. struct nfs_client *clp = session->clp;
  1890. switch (err) {
  1891. default:
  1892. set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
  1893. break;
  1894. case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
  1895. set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
  1896. }
  1897. nfs4_schedule_lease_recovery(clp);
  1898. }
  1899. EXPORT_SYMBOL_GPL(nfs4_schedule_session_recovery);
  1900. static void nfs41_ping_server(struct nfs_client *clp)
  1901. {
  1902. /* Use CHECK_LEASE to ping the server with a SEQUENCE */
  1903. set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
  1904. nfs4_schedule_state_manager(clp);
  1905. }
  1906. void nfs41_server_notify_target_slotid_update(struct nfs_client *clp)
  1907. {
  1908. nfs41_ping_server(clp);
  1909. }
  1910. void nfs41_server_notify_highest_slotid_update(struct nfs_client *clp)
  1911. {
  1912. nfs41_ping_server(clp);
  1913. }
  1914. static void nfs4_reset_all_state(struct nfs_client *clp)
  1915. {
  1916. if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
  1917. set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
  1918. clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
  1919. nfs4_state_start_reclaim_nograce(clp);
  1920. dprintk("%s: scheduling reset of all state for server %s!\n",
  1921. __func__, clp->cl_hostname);
  1922. nfs4_schedule_state_manager(clp);
  1923. }
  1924. }
  1925. static void nfs41_handle_server_reboot(struct nfs_client *clp)
  1926. {
  1927. if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
  1928. nfs4_state_start_reclaim_reboot(clp);
  1929. dprintk("%s: server %s rebooted!\n", __func__,
  1930. clp->cl_hostname);
  1931. nfs4_schedule_state_manager(clp);
  1932. }
  1933. }
  1934. static void nfs41_handle_state_revoked(struct nfs_client *clp)
  1935. {
  1936. nfs4_reset_all_state(clp);
  1937. dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
  1938. }
  1939. static void nfs41_handle_recallable_state_revoked(struct nfs_client *clp)
  1940. {
  1941. /* This will need to handle layouts too */
  1942. nfs_expire_all_delegations(clp);
  1943. dprintk("%s: Recallable state revoked on server %s!\n", __func__,
  1944. clp->cl_hostname);
  1945. }
  1946. static void nfs41_handle_backchannel_fault(struct nfs_client *clp)
  1947. {
  1948. nfs_expire_all_delegations(clp);
  1949. if (test_and_set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state) == 0)
  1950. nfs4_schedule_state_manager(clp);
  1951. dprintk("%s: server %s declared a backchannel fault\n", __func__,
  1952. clp->cl_hostname);
  1953. }
  1954. static void nfs41_handle_cb_path_down(struct nfs_client *clp)
  1955. {
  1956. if (test_and_set_bit(NFS4CLNT_BIND_CONN_TO_SESSION,
  1957. &clp->cl_state) == 0)
  1958. nfs4_schedule_state_manager(clp);
  1959. }
  1960. void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags)
  1961. {
  1962. if (!flags)
  1963. return;
  1964. dprintk("%s: \"%s\" (client ID %llx) flags=0x%08x\n",
  1965. __func__, clp->cl_hostname, clp->cl_clientid, flags);
  1966. if (flags & SEQ4_STATUS_RESTART_RECLAIM_NEEDED)
  1967. nfs41_handle_server_reboot(clp);
  1968. if (flags & (SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED |
  1969. SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED |
  1970. SEQ4_STATUS_ADMIN_STATE_REVOKED))
  1971. nfs41_handle_state_revoked(clp);
  1972. if (flags & SEQ4_STATUS_LEASE_MOVED)
  1973. nfs4_schedule_lease_moved_recovery(clp);
  1974. if (flags & SEQ4_STATUS_RECALLABLE_STATE_REVOKED)
  1975. nfs41_handle_recallable_state_revoked(clp);
  1976. if (flags & SEQ4_STATUS_BACKCHANNEL_FAULT)
  1977. nfs41_handle_backchannel_fault(clp);
  1978. else if (flags & (SEQ4_STATUS_CB_PATH_DOWN |
  1979. SEQ4_STATUS_CB_PATH_DOWN_SESSION))
  1980. nfs41_handle_cb_path_down(clp);
  1981. }
  1982. static int nfs4_reset_session(struct nfs_client *clp)
  1983. {
  1984. struct rpc_cred *cred;
  1985. int status;
  1986. if (!nfs4_has_session(clp))
  1987. return 0;
  1988. nfs4_begin_drain_session(clp);
  1989. cred = nfs4_get_clid_cred(clp);
  1990. status = nfs4_proc_destroy_session(clp->cl_session, cred);
  1991. switch (status) {
  1992. case 0:
  1993. case -NFS4ERR_BADSESSION:
  1994. case -NFS4ERR_DEADSESSION:
  1995. break;
  1996. case -NFS4ERR_BACK_CHAN_BUSY:
  1997. case -NFS4ERR_DELAY:
  1998. set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
  1999. status = 0;
  2000. ssleep(1);
  2001. goto out;
  2002. default:
  2003. status = nfs4_recovery_handle_error(clp, status);
  2004. goto out;
  2005. }
  2006. memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
  2007. status = nfs4_proc_create_session(clp, cred);
  2008. if (status) {
  2009. dprintk("%s: session reset failed with status %d for server %s!\n",
  2010. __func__, status, clp->cl_hostname);
  2011. status = nfs4_handle_reclaim_lease_error(clp, status);
  2012. goto out;
  2013. }
  2014. nfs41_finish_session_reset(clp);
  2015. dprintk("%s: session reset was successful for server %s!\n",
  2016. __func__, clp->cl_hostname);
  2017. out:
  2018. if (cred)
  2019. put_rpccred(cred);
  2020. return status;
  2021. }
  2022. static int nfs4_bind_conn_to_session(struct nfs_client *clp)
  2023. {
  2024. struct rpc_cred *cred;
  2025. int ret;
  2026. if (!nfs4_has_session(clp))
  2027. return 0;
  2028. nfs4_begin_drain_session(clp);
  2029. cred = nfs4_get_clid_cred(clp);
  2030. ret = nfs4_proc_bind_conn_to_session(clp, cred);
  2031. if (cred)
  2032. put_rpccred(cred);
  2033. clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
  2034. switch (ret) {
  2035. case 0:
  2036. dprintk("%s: bind_conn_to_session was successful for server %s!\n",
  2037. __func__, clp->cl_hostname);
  2038. break;
  2039. case -NFS4ERR_DELAY:
  2040. ssleep(1);
  2041. set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
  2042. break;
  2043. default:
  2044. return nfs4_recovery_handle_error(clp, ret);
  2045. }
  2046. return 0;
  2047. }
  2048. #else /* CONFIG_NFS_V4_1 */
  2049. static int nfs4_reset_session(struct nfs_client *clp) { return 0; }
  2050. static int nfs4_bind_conn_to_session(struct nfs_client *clp)
  2051. {
  2052. return 0;
  2053. }
  2054. #endif /* CONFIG_NFS_V4_1 */
  2055. static void nfs4_state_manager(struct nfs_client *clp)
  2056. {
  2057. int status = 0;
  2058. const char *section = "", *section_sep = "";
  2059. /* Ensure exclusive access to NFSv4 state */
  2060. do {
  2061. if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
  2062. section = "purge state";
  2063. status = nfs4_purge_lease(clp);
  2064. if (status < 0)
  2065. goto out_error;
  2066. continue;
  2067. }
  2068. if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) {
  2069. section = "lease expired";
  2070. /* We're going to have to re-establish a clientid */
  2071. status = nfs4_reclaim_lease(clp);
  2072. if (status < 0)
  2073. goto out_error;
  2074. continue;
  2075. }
  2076. /* Initialize or reset the session */
  2077. if (test_and_clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state)) {
  2078. section = "reset session";
  2079. status = nfs4_reset_session(clp);
  2080. if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
  2081. continue;
  2082. if (status < 0)
  2083. goto out_error;
  2084. }
  2085. /* Send BIND_CONN_TO_SESSION */
  2086. if (test_and_clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION,
  2087. &clp->cl_state)) {
  2088. section = "bind conn to session";
  2089. status = nfs4_bind_conn_to_session(clp);
  2090. if (status < 0)
  2091. goto out_error;
  2092. continue;
  2093. }
  2094. if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state)) {
  2095. section = "check lease";
  2096. status = nfs4_check_lease(clp);
  2097. if (status < 0)
  2098. goto out_error;
  2099. continue;
  2100. }
  2101. if (test_and_clear_bit(NFS4CLNT_MOVED, &clp->cl_state)) {
  2102. section = "migration";
  2103. status = nfs4_handle_migration(clp);
  2104. if (status < 0)
  2105. goto out_error;
  2106. }
  2107. if (test_and_clear_bit(NFS4CLNT_LEASE_MOVED, &clp->cl_state)) {
  2108. section = "lease moved";
  2109. status = nfs4_handle_lease_moved(clp);
  2110. if (status < 0)
  2111. goto out_error;
  2112. }
  2113. /* First recover reboot state... */
  2114. if (test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state)) {
  2115. section = "reclaim reboot";
  2116. status = nfs4_do_reclaim(clp,
  2117. clp->cl_mvops->reboot_recovery_ops);
  2118. if (status == -EAGAIN)
  2119. continue;
  2120. if (status < 0)
  2121. goto out_error;
  2122. nfs4_state_end_reclaim_reboot(clp);
  2123. }
  2124. /* Now recover expired state... */
  2125. if (test_and_clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state)) {
  2126. section = "reclaim nograce";
  2127. status = nfs4_do_reclaim(clp,
  2128. clp->cl_mvops->nograce_recovery_ops);
  2129. if (status == -EAGAIN)
  2130. continue;
  2131. if (status < 0)
  2132. goto out_error;
  2133. }
  2134. nfs4_end_drain_session(clp);
  2135. if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
  2136. nfs_client_return_marked_delegations(clp);
  2137. continue;
  2138. }
  2139. nfs4_clear_state_manager_bit(clp);
  2140. /* Did we race with an attempt to give us more work? */
  2141. if (clp->cl_state == 0)
  2142. break;
  2143. if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
  2144. break;
  2145. } while (atomic_read(&clp->cl_count) > 1);
  2146. return;
  2147. out_error:
  2148. if (strlen(section))
  2149. section_sep = ": ";
  2150. pr_warn_ratelimited("NFS: state manager%s%s failed on NFSv4 server %s"
  2151. " with error %d\n", section_sep, section,
  2152. clp->cl_hostname, -status);
  2153. ssleep(1);
  2154. nfs4_end_drain_session(clp);
  2155. nfs4_clear_state_manager_bit(clp);
  2156. }
  2157. static int nfs4_run_state_manager(void *ptr)
  2158. {
  2159. struct nfs_client *clp = ptr;
  2160. allow_signal(SIGKILL);
  2161. nfs4_state_manager(clp);
  2162. nfs_put_client(clp);
  2163. module_put_and_exit(0);
  2164. return 0;
  2165. }
  2166. /*
  2167. * Local variables:
  2168. * c-basic-offset: 8
  2169. * End:
  2170. */