nfs4client.c 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280
  1. /*
  2. * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
  3. * Written by David Howells (dhowells@redhat.com)
  4. */
  5. #include <linux/module.h>
  6. #include <linux/nfs_fs.h>
  7. #include <linux/nfs_mount.h>
  8. #include <linux/sunrpc/addr.h>
  9. #include <linux/sunrpc/auth.h>
  10. #include <linux/sunrpc/xprt.h>
  11. #include <linux/sunrpc/bc_xprt.h>
  12. #include <linux/sunrpc/rpc_pipe_fs.h>
  13. #include "internal.h"
  14. #include "callback.h"
  15. #include "delegation.h"
  16. #include "nfs4session.h"
  17. #include "nfs4idmap.h"
  18. #include "pnfs.h"
  19. #include "netns.h"
  20. #define NFSDBG_FACILITY NFSDBG_CLIENT
  21. /*
  22. * Get a unique NFSv4.0 callback identifier which will be used
  23. * by the V4.0 callback service to lookup the nfs_client struct
  24. */
  25. static int nfs_get_cb_ident_idr(struct nfs_client *clp, int minorversion)
  26. {
  27. int ret = 0;
  28. struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
  29. if (clp->rpc_ops->version != 4 || minorversion != 0)
  30. return ret;
  31. idr_preload(GFP_KERNEL);
  32. spin_lock(&nn->nfs_client_lock);
  33. ret = idr_alloc(&nn->cb_ident_idr, clp, 1, 0, GFP_NOWAIT);
  34. if (ret >= 0)
  35. clp->cl_cb_ident = ret;
  36. spin_unlock(&nn->nfs_client_lock);
  37. idr_preload_end();
  38. return ret < 0 ? ret : 0;
  39. }
  40. #ifdef CONFIG_NFS_V4_1
  41. /**
  42. * Per auth flavor data server rpc clients
  43. */
  44. struct nfs4_ds_server {
  45. struct list_head list; /* ds_clp->cl_ds_clients */
  46. struct rpc_clnt *rpc_clnt;
  47. };
  48. /**
  49. * Common lookup case for DS I/O
  50. */
  51. static struct nfs4_ds_server *
  52. nfs4_find_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor)
  53. {
  54. struct nfs4_ds_server *dss;
  55. rcu_read_lock();
  56. list_for_each_entry_rcu(dss, &ds_clp->cl_ds_clients, list) {
  57. if (dss->rpc_clnt->cl_auth->au_flavor != flavor)
  58. continue;
  59. goto out;
  60. }
  61. dss = NULL;
  62. out:
  63. rcu_read_unlock();
  64. return dss;
  65. }
  66. static struct nfs4_ds_server *
  67. nfs4_add_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor,
  68. struct nfs4_ds_server *new)
  69. {
  70. struct nfs4_ds_server *dss;
  71. spin_lock(&ds_clp->cl_lock);
  72. list_for_each_entry(dss, &ds_clp->cl_ds_clients, list) {
  73. if (dss->rpc_clnt->cl_auth->au_flavor != flavor)
  74. continue;
  75. goto out;
  76. }
  77. if (new)
  78. list_add_rcu(&new->list, &ds_clp->cl_ds_clients);
  79. dss = new;
  80. out:
  81. spin_unlock(&ds_clp->cl_lock); /* need some lock to protect list */
  82. return dss;
  83. }
  84. static struct nfs4_ds_server *
  85. nfs4_alloc_ds_server(struct nfs_client *ds_clp, rpc_authflavor_t flavor)
  86. {
  87. struct nfs4_ds_server *dss;
  88. dss = kmalloc(sizeof(*dss), GFP_NOFS);
  89. if (dss == NULL)
  90. return ERR_PTR(-ENOMEM);
  91. dss->rpc_clnt = rpc_clone_client_set_auth(ds_clp->cl_rpcclient, flavor);
  92. if (IS_ERR(dss->rpc_clnt)) {
  93. int err = PTR_ERR(dss->rpc_clnt);
  94. kfree (dss);
  95. return ERR_PTR(err);
  96. }
  97. INIT_LIST_HEAD(&dss->list);
  98. return dss;
  99. }
  100. static void
  101. nfs4_free_ds_server(struct nfs4_ds_server *dss)
  102. {
  103. rpc_release_client(dss->rpc_clnt);
  104. kfree(dss);
  105. }
  106. /**
  107. * Find or create a DS rpc client with th MDS server rpc client auth flavor
  108. * in the nfs_client cl_ds_clients list.
  109. */
  110. struct rpc_clnt *
  111. nfs4_find_or_create_ds_client(struct nfs_client *ds_clp, struct inode *inode)
  112. {
  113. struct nfs4_ds_server *dss, *new;
  114. rpc_authflavor_t flavor = NFS_SERVER(inode)->client->cl_auth->au_flavor;
  115. dss = nfs4_find_ds_client(ds_clp, flavor);
  116. if (dss != NULL)
  117. goto out;
  118. new = nfs4_alloc_ds_server(ds_clp, flavor);
  119. if (IS_ERR(new))
  120. return ERR_CAST(new);
  121. dss = nfs4_add_ds_client(ds_clp, flavor, new);
  122. if (dss != new)
  123. nfs4_free_ds_server(new);
  124. out:
  125. return dss->rpc_clnt;
  126. }
  127. EXPORT_SYMBOL_GPL(nfs4_find_or_create_ds_client);
  128. static void
  129. nfs4_shutdown_ds_clients(struct nfs_client *clp)
  130. {
  131. struct nfs4_ds_server *dss;
  132. LIST_HEAD(shutdown_list);
  133. while (!list_empty(&clp->cl_ds_clients)) {
  134. dss = list_entry(clp->cl_ds_clients.next,
  135. struct nfs4_ds_server, list);
  136. list_del(&dss->list);
  137. rpc_shutdown_client(dss->rpc_clnt);
  138. kfree (dss);
  139. }
  140. }
  141. static void
  142. nfs4_cleanup_callback(struct nfs_client *clp)
  143. {
  144. struct nfs4_copy_state *cp_state;
  145. while (!list_empty(&clp->pending_cb_stateids)) {
  146. cp_state = list_entry(clp->pending_cb_stateids.next,
  147. struct nfs4_copy_state, copies);
  148. list_del(&cp_state->copies);
  149. kfree(cp_state);
  150. }
  151. }
  152. void nfs41_shutdown_client(struct nfs_client *clp)
  153. {
  154. if (nfs4_has_session(clp)) {
  155. nfs4_cleanup_callback(clp);
  156. nfs4_shutdown_ds_clients(clp);
  157. nfs4_destroy_session(clp->cl_session);
  158. nfs4_destroy_clientid(clp);
  159. }
  160. }
  161. #endif /* CONFIG_NFS_V4_1 */
  162. void nfs40_shutdown_client(struct nfs_client *clp)
  163. {
  164. if (clp->cl_slot_tbl) {
  165. nfs4_shutdown_slot_table(clp->cl_slot_tbl);
  166. kfree(clp->cl_slot_tbl);
  167. }
  168. }
  169. struct nfs_client *nfs4_alloc_client(const struct nfs_client_initdata *cl_init)
  170. {
  171. int err;
  172. struct nfs_client *clp = nfs_alloc_client(cl_init);
  173. if (IS_ERR(clp))
  174. return clp;
  175. err = nfs_get_cb_ident_idr(clp, cl_init->minorversion);
  176. if (err)
  177. goto error;
  178. if (cl_init->minorversion > NFS4_MAX_MINOR_VERSION) {
  179. err = -EINVAL;
  180. goto error;
  181. }
  182. spin_lock_init(&clp->cl_lock);
  183. INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state);
  184. INIT_LIST_HEAD(&clp->cl_ds_clients);
  185. rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client");
  186. clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED;
  187. clp->cl_mvops = nfs_v4_minor_ops[cl_init->minorversion];
  188. clp->cl_mig_gen = 1;
  189. #if IS_ENABLED(CONFIG_NFS_V4_1)
  190. init_waitqueue_head(&clp->cl_lock_waitq);
  191. #endif
  192. INIT_LIST_HEAD(&clp->pending_cb_stateids);
  193. return clp;
  194. error:
  195. nfs_free_client(clp);
  196. return ERR_PTR(err);
  197. }
  198. /*
  199. * Destroy the NFS4 callback service
  200. */
  201. static void nfs4_destroy_callback(struct nfs_client *clp)
  202. {
  203. if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
  204. nfs_callback_down(clp->cl_mvops->minor_version, clp->cl_net);
  205. }
  206. static void nfs4_shutdown_client(struct nfs_client *clp)
  207. {
  208. if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
  209. nfs4_kill_renewd(clp);
  210. clp->cl_mvops->shutdown_client(clp);
  211. nfs4_destroy_callback(clp);
  212. if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
  213. nfs_idmap_delete(clp);
  214. rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
  215. kfree(clp->cl_serverowner);
  216. kfree(clp->cl_serverscope);
  217. kfree(clp->cl_implid);
  218. kfree(clp->cl_owner_id);
  219. }
  220. void nfs4_free_client(struct nfs_client *clp)
  221. {
  222. nfs4_shutdown_client(clp);
  223. nfs_free_client(clp);
  224. }
  225. /*
  226. * Initialize the NFS4 callback service
  227. */
  228. static int nfs4_init_callback(struct nfs_client *clp)
  229. {
  230. struct rpc_xprt *xprt;
  231. int error;
  232. xprt = rcu_dereference_raw(clp->cl_rpcclient->cl_xprt);
  233. if (nfs4_has_session(clp)) {
  234. error = xprt_setup_backchannel(xprt, NFS41_BC_MIN_CALLBACKS);
  235. if (error < 0)
  236. return error;
  237. }
  238. error = nfs_callback_up(clp->cl_mvops->minor_version, xprt);
  239. if (error < 0) {
  240. dprintk("%s: failed to start callback. Error = %d\n",
  241. __func__, error);
  242. return error;
  243. }
  244. __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
  245. return 0;
  246. }
  247. /**
  248. * nfs40_init_client - nfs_client initialization tasks for NFSv4.0
  249. * @clp - nfs_client to initialize
  250. *
  251. * Returns zero on success, or a negative errno if some error occurred.
  252. */
  253. int nfs40_init_client(struct nfs_client *clp)
  254. {
  255. struct nfs4_slot_table *tbl;
  256. int ret;
  257. tbl = kzalloc(sizeof(*tbl), GFP_NOFS);
  258. if (tbl == NULL)
  259. return -ENOMEM;
  260. ret = nfs4_setup_slot_table(tbl, NFS4_MAX_SLOT_TABLE,
  261. "NFSv4.0 transport Slot table");
  262. if (ret) {
  263. kfree(tbl);
  264. return ret;
  265. }
  266. clp->cl_slot_tbl = tbl;
  267. return 0;
  268. }
  269. #if defined(CONFIG_NFS_V4_1)
  270. /**
  271. * nfs41_init_client - nfs_client initialization tasks for NFSv4.1+
  272. * @clp - nfs_client to initialize
  273. *
  274. * Returns zero on success, or a negative errno if some error occurred.
  275. */
  276. int nfs41_init_client(struct nfs_client *clp)
  277. {
  278. struct nfs4_session *session = NULL;
  279. /*
  280. * Create the session and mark it expired.
  281. * When a SEQUENCE operation encounters the expired session
  282. * it will do session recovery to initialize it.
  283. */
  284. session = nfs4_alloc_session(clp);
  285. if (!session)
  286. return -ENOMEM;
  287. clp->cl_session = session;
  288. /*
  289. * The create session reply races with the server back
  290. * channel probe. Mark the client NFS_CS_SESSION_INITING
  291. * so that the client back channel can find the
  292. * nfs_client struct
  293. */
  294. nfs_mark_client_ready(clp, NFS_CS_SESSION_INITING);
  295. return 0;
  296. }
  297. #endif /* CONFIG_NFS_V4_1 */
  298. /*
  299. * Initialize the minor version specific parts of an NFS4 client record
  300. */
  301. static int nfs4_init_client_minor_version(struct nfs_client *clp)
  302. {
  303. int ret;
  304. ret = clp->cl_mvops->init_client(clp);
  305. if (ret)
  306. return ret;
  307. return nfs4_init_callback(clp);
  308. }
  309. /**
  310. * nfs4_init_client - Initialise an NFS4 client record
  311. *
  312. * @clp: nfs_client to initialise
  313. * @timeparms: timeout parameters for underlying RPC transport
  314. * @ip_addr: callback IP address in presentation format
  315. * @authflavor: authentication flavor for underlying RPC transport
  316. *
  317. * Returns pointer to an NFS client, or an ERR_PTR value.
  318. */
  319. struct nfs_client *nfs4_init_client(struct nfs_client *clp,
  320. const struct nfs_client_initdata *cl_init)
  321. {
  322. char buf[INET6_ADDRSTRLEN + 1];
  323. const char *ip_addr = cl_init->ip_addr;
  324. struct nfs_client *old;
  325. int error;
  326. if (clp->cl_cons_state == NFS_CS_READY)
  327. /* the client is initialised already */
  328. return clp;
  329. /* Check NFS protocol revision and initialize RPC op vector */
  330. clp->rpc_ops = &nfs_v4_clientops;
  331. if (clp->cl_minorversion != 0)
  332. __set_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags);
  333. __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags);
  334. __set_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags);
  335. error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_GSS_KRB5I);
  336. if (error == -EINVAL)
  337. error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_UNIX);
  338. if (error < 0)
  339. goto error;
  340. /* If no clientaddr= option was specified, find a usable cb address */
  341. if (ip_addr == NULL) {
  342. struct sockaddr_storage cb_addr;
  343. struct sockaddr *sap = (struct sockaddr *)&cb_addr;
  344. error = rpc_localaddr(clp->cl_rpcclient, sap, sizeof(cb_addr));
  345. if (error < 0)
  346. goto error;
  347. error = rpc_ntop(sap, buf, sizeof(buf));
  348. if (error < 0)
  349. goto error;
  350. ip_addr = (const char *)buf;
  351. }
  352. strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
  353. error = nfs_idmap_new(clp);
  354. if (error < 0) {
  355. dprintk("%s: failed to create idmapper. Error = %d\n",
  356. __func__, error);
  357. goto error;
  358. }
  359. __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
  360. error = nfs4_init_client_minor_version(clp);
  361. if (error < 0)
  362. goto error;
  363. error = nfs4_discover_server_trunking(clp, &old);
  364. if (error < 0)
  365. goto error;
  366. if (clp != old) {
  367. clp->cl_preserve_clid = true;
  368. /*
  369. * Mark the client as having failed initialization so other
  370. * processes walking the nfs_client_list in nfs_match_client()
  371. * won't try to use it.
  372. */
  373. nfs_mark_client_ready(clp, -EPERM);
  374. }
  375. nfs_put_client(clp);
  376. clear_bit(NFS_CS_TSM_POSSIBLE, &clp->cl_flags);
  377. return old;
  378. error:
  379. nfs_mark_client_ready(clp, error);
  380. nfs_put_client(clp);
  381. return ERR_PTR(error);
  382. }
  383. /*
  384. * SETCLIENTID just did a callback update with the callback ident in
  385. * "drop," but server trunking discovery claims "drop" and "keep" are
  386. * actually the same server. Swap the callback IDs so that "keep"
  387. * will continue to use the callback ident the server now knows about,
  388. * and so that "keep"'s original callback ident is destroyed when
  389. * "drop" is freed.
  390. */
  391. static void nfs4_swap_callback_idents(struct nfs_client *keep,
  392. struct nfs_client *drop)
  393. {
  394. struct nfs_net *nn = net_generic(keep->cl_net, nfs_net_id);
  395. unsigned int save = keep->cl_cb_ident;
  396. if (keep->cl_cb_ident == drop->cl_cb_ident)
  397. return;
  398. dprintk("%s: keeping callback ident %u and dropping ident %u\n",
  399. __func__, keep->cl_cb_ident, drop->cl_cb_ident);
  400. spin_lock(&nn->nfs_client_lock);
  401. idr_replace(&nn->cb_ident_idr, keep, drop->cl_cb_ident);
  402. keep->cl_cb_ident = drop->cl_cb_ident;
  403. idr_replace(&nn->cb_ident_idr, drop, save);
  404. drop->cl_cb_ident = save;
  405. spin_unlock(&nn->nfs_client_lock);
  406. }
  407. static bool nfs4_match_client_owner_id(const struct nfs_client *clp1,
  408. const struct nfs_client *clp2)
  409. {
  410. if (clp1->cl_owner_id == NULL || clp2->cl_owner_id == NULL)
  411. return true;
  412. return strcmp(clp1->cl_owner_id, clp2->cl_owner_id) == 0;
  413. }
  414. static bool nfs4_same_verifier(nfs4_verifier *v1, nfs4_verifier *v2)
  415. {
  416. return memcmp(v1->data, v2->data, sizeof(v1->data)) == 0;
  417. }
  418. static int nfs4_match_client(struct nfs_client *pos, struct nfs_client *new,
  419. struct nfs_client **prev, struct nfs_net *nn)
  420. {
  421. int status;
  422. if (pos->rpc_ops != new->rpc_ops)
  423. return 1;
  424. if (pos->cl_minorversion != new->cl_minorversion)
  425. return 1;
  426. /* If "pos" isn't marked ready, we can't trust the
  427. * remaining fields in "pos", especially the client
  428. * ID and serverowner fields. Wait for CREATE_SESSION
  429. * to finish. */
  430. if (pos->cl_cons_state > NFS_CS_READY) {
  431. refcount_inc(&pos->cl_count);
  432. spin_unlock(&nn->nfs_client_lock);
  433. nfs_put_client(*prev);
  434. *prev = pos;
  435. status = nfs_wait_client_init_complete(pos);
  436. spin_lock(&nn->nfs_client_lock);
  437. if (status < 0)
  438. return status;
  439. }
  440. if (pos->cl_cons_state != NFS_CS_READY)
  441. return 1;
  442. if (pos->cl_clientid != new->cl_clientid)
  443. return 1;
  444. /* NFSv4.1 always uses the uniform string, however someone
  445. * might switch the uniquifier string on us.
  446. */
  447. if (!nfs4_match_client_owner_id(pos, new))
  448. return 1;
  449. return 0;
  450. }
  451. /**
  452. * nfs40_walk_client_list - Find server that recognizes a client ID
  453. *
  454. * @new: nfs_client with client ID to test
  455. * @result: OUT: found nfs_client, or new
  456. * @cred: credential to use for trunking test
  457. *
  458. * Returns zero, a negative errno, or a negative NFS4ERR status.
  459. * If zero is returned, an nfs_client pointer is planted in "result."
  460. *
  461. * NB: nfs40_walk_client_list() relies on the new nfs_client being
  462. * the last nfs_client on the list.
  463. */
  464. int nfs40_walk_client_list(struct nfs_client *new,
  465. struct nfs_client **result,
  466. struct rpc_cred *cred)
  467. {
  468. struct nfs_net *nn = net_generic(new->cl_net, nfs_net_id);
  469. struct nfs_client *pos, *prev = NULL;
  470. struct nfs4_setclientid_res clid = {
  471. .clientid = new->cl_clientid,
  472. .confirm = new->cl_confirm,
  473. };
  474. int status = -NFS4ERR_STALE_CLIENTID;
  475. spin_lock(&nn->nfs_client_lock);
  476. list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {
  477. if (pos == new)
  478. goto found;
  479. status = nfs4_match_client(pos, new, &prev, nn);
  480. if (status < 0)
  481. goto out_unlock;
  482. if (status != 0)
  483. continue;
  484. /*
  485. * We just sent a new SETCLIENTID, which should have
  486. * caused the server to return a new cl_confirm. So if
  487. * cl_confirm is the same, then this is a different
  488. * server that just returned the same cl_confirm by
  489. * coincidence:
  490. */
  491. if ((new != pos) && nfs4_same_verifier(&pos->cl_confirm,
  492. &new->cl_confirm))
  493. continue;
  494. /*
  495. * But if the cl_confirm's are different, then the only
  496. * way that a SETCLIENTID_CONFIRM to pos can succeed is
  497. * if new and pos point to the same server:
  498. */
  499. found:
  500. refcount_inc(&pos->cl_count);
  501. spin_unlock(&nn->nfs_client_lock);
  502. nfs_put_client(prev);
  503. prev = pos;
  504. status = nfs4_proc_setclientid_confirm(pos, &clid, cred);
  505. switch (status) {
  506. case -NFS4ERR_STALE_CLIENTID:
  507. break;
  508. case 0:
  509. nfs4_swap_callback_idents(pos, new);
  510. pos->cl_confirm = new->cl_confirm;
  511. nfs_mark_client_ready(pos, NFS_CS_READY);
  512. prev = NULL;
  513. *result = pos;
  514. goto out;
  515. case -ERESTARTSYS:
  516. case -ETIMEDOUT:
  517. /* The callback path may have been inadvertently
  518. * changed. Schedule recovery!
  519. */
  520. nfs4_schedule_path_down_recovery(pos);
  521. default:
  522. goto out;
  523. }
  524. spin_lock(&nn->nfs_client_lock);
  525. }
  526. out_unlock:
  527. spin_unlock(&nn->nfs_client_lock);
  528. /* No match found. The server lost our clientid */
  529. out:
  530. nfs_put_client(prev);
  531. return status;
  532. }
  533. #ifdef CONFIG_NFS_V4_1
  534. /*
  535. * Returns true if the server major ids match
  536. */
  537. static bool
  538. nfs4_check_serverowner_major_id(struct nfs41_server_owner *o1,
  539. struct nfs41_server_owner *o2)
  540. {
  541. if (o1->major_id_sz != o2->major_id_sz)
  542. return false;
  543. return memcmp(o1->major_id, o2->major_id, o1->major_id_sz) == 0;
  544. }
  545. /*
  546. * Returns true if the server scopes match
  547. */
  548. static bool
  549. nfs4_check_server_scope(struct nfs41_server_scope *s1,
  550. struct nfs41_server_scope *s2)
  551. {
  552. if (s1->server_scope_sz != s2->server_scope_sz)
  553. return false;
  554. return memcmp(s1->server_scope, s2->server_scope,
  555. s1->server_scope_sz) == 0;
  556. }
  557. /**
  558. * nfs4_detect_session_trunking - Checks for session trunking.
  559. *
  560. * Called after a successful EXCHANGE_ID on a multi-addr connection.
  561. * Upon success, add the transport.
  562. *
  563. * @clp: original mount nfs_client
  564. * @res: result structure from an exchange_id using the original mount
  565. * nfs_client with a new multi_addr transport
  566. *
  567. * Returns zero on success, otherwise -EINVAL
  568. *
  569. * Note: since the exchange_id for the new multi_addr transport uses the
  570. * same nfs_client from the original mount, the cl_owner_id is reused,
  571. * so eir_clientowner is the same.
  572. */
  573. int nfs4_detect_session_trunking(struct nfs_client *clp,
  574. struct nfs41_exchange_id_res *res,
  575. struct rpc_xprt *xprt)
  576. {
  577. /* Check eir_clientid */
  578. if (clp->cl_clientid != res->clientid)
  579. goto out_err;
  580. /* Check eir_server_owner so_major_id */
  581. if (!nfs4_check_serverowner_major_id(clp->cl_serverowner,
  582. res->server_owner))
  583. goto out_err;
  584. /* Check eir_server_owner so_minor_id */
  585. if (clp->cl_serverowner->minor_id != res->server_owner->minor_id)
  586. goto out_err;
  587. /* Check eir_server_scope */
  588. if (!nfs4_check_server_scope(clp->cl_serverscope, res->server_scope))
  589. goto out_err;
  590. pr_info("NFS: %s: Session trunking succeeded for %s\n",
  591. clp->cl_hostname,
  592. xprt->address_strings[RPC_DISPLAY_ADDR]);
  593. return 0;
  594. out_err:
  595. pr_info("NFS: %s: Session trunking failed for %s\n", clp->cl_hostname,
  596. xprt->address_strings[RPC_DISPLAY_ADDR]);
  597. return -EINVAL;
  598. }
  599. /**
  600. * nfs41_walk_client_list - Find nfs_client that matches a client/server owner
  601. *
  602. * @new: nfs_client with client ID to test
  603. * @result: OUT: found nfs_client, or new
  604. * @cred: credential to use for trunking test
  605. *
  606. * Returns zero, a negative errno, or a negative NFS4ERR status.
  607. * If zero is returned, an nfs_client pointer is planted in "result."
  608. *
  609. * NB: nfs41_walk_client_list() relies on the new nfs_client being
  610. * the last nfs_client on the list.
  611. */
  612. int nfs41_walk_client_list(struct nfs_client *new,
  613. struct nfs_client **result,
  614. struct rpc_cred *cred)
  615. {
  616. struct nfs_net *nn = net_generic(new->cl_net, nfs_net_id);
  617. struct nfs_client *pos, *prev = NULL;
  618. int status = -NFS4ERR_STALE_CLIENTID;
  619. spin_lock(&nn->nfs_client_lock);
  620. list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {
  621. if (pos == new)
  622. goto found;
  623. status = nfs4_match_client(pos, new, &prev, nn);
  624. if (status < 0)
  625. goto out;
  626. if (status != 0)
  627. continue;
  628. /*
  629. * Note that session trunking is just a special subcase of
  630. * client id trunking. In either case, we want to fall back
  631. * to using the existing nfs_client.
  632. */
  633. if (!nfs4_check_serverowner_major_id(pos->cl_serverowner,
  634. new->cl_serverowner))
  635. continue;
  636. found:
  637. refcount_inc(&pos->cl_count);
  638. *result = pos;
  639. status = 0;
  640. break;
  641. }
  642. out:
  643. spin_unlock(&nn->nfs_client_lock);
  644. nfs_put_client(prev);
  645. return status;
  646. }
  647. #endif /* CONFIG_NFS_V4_1 */
  648. static void nfs4_destroy_server(struct nfs_server *server)
  649. {
  650. LIST_HEAD(freeme);
  651. nfs_server_return_all_delegations(server);
  652. unset_pnfs_layoutdriver(server);
  653. nfs4_purge_state_owners(server, &freeme);
  654. nfs4_free_state_owners(&freeme);
  655. }
  656. /*
  657. * NFSv4.0 callback thread helper
  658. *
  659. * Find a client by callback identifier
  660. */
  661. struct nfs_client *
  662. nfs4_find_client_ident(struct net *net, int cb_ident)
  663. {
  664. struct nfs_client *clp;
  665. struct nfs_net *nn = net_generic(net, nfs_net_id);
  666. spin_lock(&nn->nfs_client_lock);
  667. clp = idr_find(&nn->cb_ident_idr, cb_ident);
  668. if (clp)
  669. refcount_inc(&clp->cl_count);
  670. spin_unlock(&nn->nfs_client_lock);
  671. return clp;
  672. }
  673. #if defined(CONFIG_NFS_V4_1)
  674. /* Common match routine for v4.0 and v4.1 callback services */
  675. static bool nfs4_cb_match_client(const struct sockaddr *addr,
  676. struct nfs_client *clp, u32 minorversion)
  677. {
  678. struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
  679. /* Don't match clients that failed to initialise */
  680. if (!(clp->cl_cons_state == NFS_CS_READY ||
  681. clp->cl_cons_state == NFS_CS_SESSION_INITING))
  682. return false;
  683. smp_rmb();
  684. /* Match the version and minorversion */
  685. if (clp->rpc_ops->version != 4 ||
  686. clp->cl_minorversion != minorversion)
  687. return false;
  688. /* Match only the IP address, not the port number */
  689. return rpc_cmp_addr(addr, clap);
  690. }
  691. /*
  692. * NFSv4.1 callback thread helper
  693. * For CB_COMPOUND calls, find a client by IP address, protocol version,
  694. * minorversion, and sessionID
  695. *
  696. * Returns NULL if no such client
  697. */
  698. struct nfs_client *
  699. nfs4_find_client_sessionid(struct net *net, const struct sockaddr *addr,
  700. struct nfs4_sessionid *sid, u32 minorversion)
  701. {
  702. struct nfs_client *clp;
  703. struct nfs_net *nn = net_generic(net, nfs_net_id);
  704. spin_lock(&nn->nfs_client_lock);
  705. list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
  706. if (!nfs4_cb_match_client(addr, clp, minorversion))
  707. continue;
  708. if (!nfs4_has_session(clp))
  709. continue;
  710. /* Match sessionid*/
  711. if (memcmp(clp->cl_session->sess_id.data,
  712. sid->data, NFS4_MAX_SESSIONID_LEN) != 0)
  713. continue;
  714. refcount_inc(&clp->cl_count);
  715. spin_unlock(&nn->nfs_client_lock);
  716. return clp;
  717. }
  718. spin_unlock(&nn->nfs_client_lock);
  719. return NULL;
  720. }
  721. #else /* CONFIG_NFS_V4_1 */
  722. struct nfs_client *
  723. nfs4_find_client_sessionid(struct net *net, const struct sockaddr *addr,
  724. struct nfs4_sessionid *sid, u32 minorversion)
  725. {
  726. return NULL;
  727. }
  728. #endif /* CONFIG_NFS_V4_1 */
  729. /*
  730. * Set up an NFS4 client
  731. */
  732. static int nfs4_set_client(struct nfs_server *server,
  733. const char *hostname,
  734. const struct sockaddr *addr,
  735. const size_t addrlen,
  736. const char *ip_addr,
  737. int proto, const struct rpc_timeout *timeparms,
  738. u32 minorversion, struct net *net)
  739. {
  740. struct nfs_client_initdata cl_init = {
  741. .hostname = hostname,
  742. .addr = addr,
  743. .addrlen = addrlen,
  744. .ip_addr = ip_addr,
  745. .nfs_mod = &nfs_v4,
  746. .proto = proto,
  747. .minorversion = minorversion,
  748. .net = net,
  749. .timeparms = timeparms,
  750. };
  751. struct nfs_client *clp;
  752. if (server->flags & NFS_MOUNT_NORESVPORT)
  753. set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
  754. if (server->options & NFS_OPTION_MIGRATION)
  755. set_bit(NFS_CS_MIGRATION, &cl_init.init_flags);
  756. if (test_bit(NFS_MIG_TSM_POSSIBLE, &server->mig_status))
  757. set_bit(NFS_CS_TSM_POSSIBLE, &cl_init.init_flags);
  758. server->port = rpc_get_port(addr);
  759. /* Allocate or find a client reference we can use */
  760. clp = nfs_get_client(&cl_init);
  761. if (IS_ERR(clp))
  762. return PTR_ERR(clp);
  763. if (server->nfs_client == clp) {
  764. nfs_put_client(clp);
  765. return -ELOOP;
  766. }
  767. /*
  768. * Query for the lease time on clientid setup or renewal
  769. *
  770. * Note that this will be set on nfs_clients that were created
  771. * only for the DS role and did not set this bit, but now will
  772. * serve a dual role.
  773. */
  774. set_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state);
  775. server->nfs_client = clp;
  776. return 0;
  777. }
  778. /*
  779. * Set up a pNFS Data Server client.
  780. *
  781. * Return any existing nfs_client that matches server address,port,version
  782. * and minorversion.
  783. *
  784. * For a new nfs_client, use a soft mount (default), a low retrans and a
  785. * low timeout interval so that if a connection is lost, we retry through
  786. * the MDS.
  787. */
  788. struct nfs_client *nfs4_set_ds_client(struct nfs_server *mds_srv,
  789. const struct sockaddr *ds_addr, int ds_addrlen,
  790. int ds_proto, unsigned int ds_timeo, unsigned int ds_retrans,
  791. u32 minor_version)
  792. {
  793. struct rpc_timeout ds_timeout;
  794. struct nfs_client *mds_clp = mds_srv->nfs_client;
  795. struct nfs_client_initdata cl_init = {
  796. .addr = ds_addr,
  797. .addrlen = ds_addrlen,
  798. .nodename = mds_clp->cl_rpcclient->cl_nodename,
  799. .ip_addr = mds_clp->cl_ipaddr,
  800. .nfs_mod = &nfs_v4,
  801. .proto = ds_proto,
  802. .minorversion = minor_version,
  803. .net = mds_clp->cl_net,
  804. .timeparms = &ds_timeout,
  805. };
  806. char buf[INET6_ADDRSTRLEN + 1];
  807. if (rpc_ntop(ds_addr, buf, sizeof(buf)) <= 0)
  808. return ERR_PTR(-EINVAL);
  809. cl_init.hostname = buf;
  810. if (mds_srv->flags & NFS_MOUNT_NORESVPORT)
  811. __set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
  812. /*
  813. * Set an authflavor equual to the MDS value. Use the MDS nfs_client
  814. * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS
  815. * (section 13.1 RFC 5661).
  816. */
  817. nfs_init_timeout_values(&ds_timeout, ds_proto, ds_timeo, ds_retrans);
  818. return nfs_get_client(&cl_init);
  819. }
  820. EXPORT_SYMBOL_GPL(nfs4_set_ds_client);
  821. /*
  822. * Session has been established, and the client marked ready.
  823. * Limit the mount rsize, wsize and dtsize using negotiated fore
  824. * channel attributes.
  825. */
  826. static void nfs4_session_limit_rwsize(struct nfs_server *server)
  827. {
  828. #ifdef CONFIG_NFS_V4_1
  829. struct nfs4_session *sess;
  830. u32 server_resp_sz;
  831. u32 server_rqst_sz;
  832. if (!nfs4_has_session(server->nfs_client))
  833. return;
  834. sess = server->nfs_client->cl_session;
  835. server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
  836. server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
  837. if (server->dtsize > server_resp_sz)
  838. server->dtsize = server_resp_sz;
  839. if (server->rsize > server_resp_sz)
  840. server->rsize = server_resp_sz;
  841. if (server->wsize > server_rqst_sz)
  842. server->wsize = server_rqst_sz;
  843. #endif /* CONFIG_NFS_V4_1 */
  844. }
  845. static int nfs4_server_common_setup(struct nfs_server *server,
  846. struct nfs_fh *mntfh, bool auth_probe)
  847. {
  848. struct nfs_fattr *fattr;
  849. int error;
  850. /* data servers support only a subset of NFSv4.1 */
  851. if (is_ds_only_client(server->nfs_client))
  852. return -EPROTONOSUPPORT;
  853. fattr = nfs_alloc_fattr();
  854. if (fattr == NULL)
  855. return -ENOMEM;
  856. /* We must ensure the session is initialised first */
  857. error = nfs4_init_session(server->nfs_client);
  858. if (error < 0)
  859. goto out;
  860. /* Set the basic capabilities */
  861. server->caps |= server->nfs_client->cl_mvops->init_caps;
  862. if (server->flags & NFS_MOUNT_NORDIRPLUS)
  863. server->caps &= ~NFS_CAP_READDIRPLUS;
  864. /*
  865. * Don't use NFS uid/gid mapping if we're using AUTH_SYS or lower
  866. * authentication.
  867. */
  868. if (nfs4_disable_idmapping &&
  869. server->client->cl_auth->au_flavor == RPC_AUTH_UNIX)
  870. server->caps |= NFS_CAP_UIDGID_NOMAP;
  871. /* Probe the root fh to retrieve its FSID and filehandle */
  872. error = nfs4_get_rootfh(server, mntfh, auth_probe);
  873. if (error < 0)
  874. goto out;
  875. dprintk("Server FSID: %llx:%llx\n",
  876. (unsigned long long) server->fsid.major,
  877. (unsigned long long) server->fsid.minor);
  878. nfs_display_fhandle(mntfh, "Pseudo-fs root FH");
  879. error = nfs_probe_fsinfo(server, mntfh, fattr);
  880. if (error < 0)
  881. goto out;
  882. nfs4_session_limit_rwsize(server);
  883. if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
  884. server->namelen = NFS4_MAXNAMLEN;
  885. nfs_server_insert_lists(server);
  886. server->mount_time = jiffies;
  887. server->destroy = nfs4_destroy_server;
  888. out:
  889. nfs_free_fattr(fattr);
  890. return error;
  891. }
  892. /*
  893. * Create a version 4 volume record
  894. */
  895. static int nfs4_init_server(struct nfs_server *server,
  896. struct nfs_parsed_mount_data *data)
  897. {
  898. struct rpc_timeout timeparms;
  899. int error;
  900. nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
  901. data->timeo, data->retrans);
  902. /* Initialise the client representation from the mount data */
  903. server->flags = data->flags;
  904. server->options = data->options;
  905. server->auth_info = data->auth_info;
  906. /* Use the first specified auth flavor. If this flavor isn't
  907. * allowed by the server, use the SECINFO path to try the
  908. * other specified flavors */
  909. if (data->auth_info.flavor_len >= 1)
  910. data->selected_flavor = data->auth_info.flavors[0];
  911. else
  912. data->selected_flavor = RPC_AUTH_UNIX;
  913. /* Get a client record */
  914. error = nfs4_set_client(server,
  915. data->nfs_server.hostname,
  916. (const struct sockaddr *)&data->nfs_server.address,
  917. data->nfs_server.addrlen,
  918. data->client_address,
  919. data->nfs_server.protocol,
  920. &timeparms,
  921. data->minorversion,
  922. data->net);
  923. if (error < 0)
  924. return error;
  925. if (data->rsize)
  926. server->rsize = nfs_block_size(data->rsize, NULL);
  927. if (data->wsize)
  928. server->wsize = nfs_block_size(data->wsize, NULL);
  929. server->acregmin = data->acregmin * HZ;
  930. server->acregmax = data->acregmax * HZ;
  931. server->acdirmin = data->acdirmin * HZ;
  932. server->acdirmax = data->acdirmax * HZ;
  933. server->port = data->nfs_server.port;
  934. return nfs_init_server_rpcclient(server, &timeparms,
  935. data->selected_flavor);
  936. }
  937. /*
  938. * Create a version 4 volume record
  939. * - keyed on server and FSID
  940. */
  941. /*struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
  942. struct nfs_fh *mntfh)*/
  943. struct nfs_server *nfs4_create_server(struct nfs_mount_info *mount_info,
  944. struct nfs_subversion *nfs_mod)
  945. {
  946. struct nfs_server *server;
  947. bool auth_probe;
  948. int error;
  949. server = nfs_alloc_server();
  950. if (!server)
  951. return ERR_PTR(-ENOMEM);
  952. auth_probe = mount_info->parsed->auth_info.flavor_len < 1;
  953. /* set up the general RPC client */
  954. error = nfs4_init_server(server, mount_info->parsed);
  955. if (error < 0)
  956. goto error;
  957. error = nfs4_server_common_setup(server, mount_info->mntfh, auth_probe);
  958. if (error < 0)
  959. goto error;
  960. return server;
  961. error:
  962. nfs_free_server(server);
  963. return ERR_PTR(error);
  964. }
  965. /*
  966. * Create an NFS4 referral server record
  967. */
  968. struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
  969. struct nfs_fh *mntfh)
  970. {
  971. struct nfs_client *parent_client;
  972. struct nfs_server *server, *parent_server;
  973. bool auth_probe;
  974. int error;
  975. server = nfs_alloc_server();
  976. if (!server)
  977. return ERR_PTR(-ENOMEM);
  978. parent_server = NFS_SB(data->sb);
  979. parent_client = parent_server->nfs_client;
  980. /* Initialise the client representation from the parent server */
  981. nfs_server_copy_userdata(server, parent_server);
  982. /* Get a client representation */
  983. #if IS_ENABLED(CONFIG_SUNRPC_XPRT_RDMA)
  984. rpc_set_port(data->addr, NFS_RDMA_PORT);
  985. error = nfs4_set_client(server, data->hostname,
  986. data->addr,
  987. data->addrlen,
  988. parent_client->cl_ipaddr,
  989. XPRT_TRANSPORT_RDMA,
  990. parent_server->client->cl_timeout,
  991. parent_client->cl_mvops->minor_version,
  992. parent_client->cl_net);
  993. if (!error)
  994. goto init_server;
  995. #endif /* IS_ENABLED(CONFIG_SUNRPC_XPRT_RDMA) */
  996. rpc_set_port(data->addr, NFS_PORT);
  997. error = nfs4_set_client(server, data->hostname,
  998. data->addr,
  999. data->addrlen,
  1000. parent_client->cl_ipaddr,
  1001. XPRT_TRANSPORT_TCP,
  1002. parent_server->client->cl_timeout,
  1003. parent_client->cl_mvops->minor_version,
  1004. parent_client->cl_net);
  1005. if (error < 0)
  1006. goto error;
  1007. #if IS_ENABLED(CONFIG_SUNRPC_XPRT_RDMA)
  1008. init_server:
  1009. #endif
  1010. error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
  1011. if (error < 0)
  1012. goto error;
  1013. auth_probe = parent_server->auth_info.flavor_len < 1;
  1014. error = nfs4_server_common_setup(server, mntfh, auth_probe);
  1015. if (error < 0)
  1016. goto error;
  1017. return server;
  1018. error:
  1019. nfs_free_server(server);
  1020. return ERR_PTR(error);
  1021. }
  1022. /*
  1023. * Grab the destination's particulars, including lease expiry time.
  1024. *
  1025. * Returns zero if probe succeeded and retrieved FSID matches the FSID
  1026. * we have cached.
  1027. */
  1028. static int nfs_probe_destination(struct nfs_server *server)
  1029. {
  1030. struct inode *inode = d_inode(server->super->s_root);
  1031. struct nfs_fattr *fattr;
  1032. int error;
  1033. fattr = nfs_alloc_fattr();
  1034. if (fattr == NULL)
  1035. return -ENOMEM;
  1036. /* Sanity: the probe won't work if the destination server
  1037. * does not recognize the migrated FH. */
  1038. error = nfs_probe_fsinfo(server, NFS_FH(inode), fattr);
  1039. nfs_free_fattr(fattr);
  1040. return error;
  1041. }
  1042. /**
  1043. * nfs4_update_server - Move an nfs_server to a different nfs_client
  1044. *
  1045. * @server: represents FSID to be moved
  1046. * @hostname: new end-point's hostname
  1047. * @sap: new end-point's socket address
  1048. * @salen: size of "sap"
  1049. * @net: net namespace
  1050. *
  1051. * The nfs_server must be quiescent before this function is invoked.
  1052. * Either its session is drained (NFSv4.1+), or its transport is
  1053. * plugged and drained (NFSv4.0).
  1054. *
  1055. * Returns zero on success, or a negative errno value.
  1056. */
  1057. int nfs4_update_server(struct nfs_server *server, const char *hostname,
  1058. struct sockaddr *sap, size_t salen, struct net *net)
  1059. {
  1060. struct nfs_client *clp = server->nfs_client;
  1061. struct rpc_clnt *clnt = server->client;
  1062. struct xprt_create xargs = {
  1063. .ident = clp->cl_proto,
  1064. .net = net,
  1065. .dstaddr = sap,
  1066. .addrlen = salen,
  1067. .servername = hostname,
  1068. };
  1069. char buf[INET6_ADDRSTRLEN + 1];
  1070. struct sockaddr_storage address;
  1071. struct sockaddr *localaddr = (struct sockaddr *)&address;
  1072. int error;
  1073. error = rpc_switch_client_transport(clnt, &xargs, clnt->cl_timeout);
  1074. if (error != 0)
  1075. return error;
  1076. error = rpc_localaddr(clnt, localaddr, sizeof(address));
  1077. if (error != 0)
  1078. return error;
  1079. if (rpc_ntop(localaddr, buf, sizeof(buf)) == 0)
  1080. return -EAFNOSUPPORT;
  1081. nfs_server_remove_lists(server);
  1082. set_bit(NFS_MIG_TSM_POSSIBLE, &server->mig_status);
  1083. error = nfs4_set_client(server, hostname, sap, salen, buf,
  1084. clp->cl_proto, clnt->cl_timeout,
  1085. clp->cl_minorversion, net);
  1086. clear_bit(NFS_MIG_TSM_POSSIBLE, &server->mig_status);
  1087. if (error != 0) {
  1088. nfs_server_insert_lists(server);
  1089. return error;
  1090. }
  1091. nfs_put_client(clp);
  1092. if (server->nfs_client->cl_hostname == NULL)
  1093. server->nfs_client->cl_hostname = kstrdup(hostname, GFP_KERNEL);
  1094. nfs_server_insert_lists(server);
  1095. return nfs_probe_destination(server);
  1096. }