nfs4filelayoutdev.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. /*
  2. * Device operations for the pnfs nfs4 file layout driver.
  3. *
  4. * Copyright (c) 2002
  5. * The Regents of the University of Michigan
  6. * All Rights Reserved
  7. *
  8. * Dean Hildebrand <dhildebz@umich.edu>
  9. * Garth Goodson <Garth.Goodson@netapp.com>
  10. *
  11. * Permission is granted to use, copy, create derivative works, and
  12. * redistribute this software and such derivative works for any purpose,
  13. * so long as the name of the University of Michigan is not used in
  14. * any advertising or publicity pertaining to the use or distribution
  15. * of this software without specific, written prior authorization. If
  16. * the above copyright notice or any other identification of the
  17. * University of Michigan is included in any copy of any portion of
  18. * this software, then the disclaimer below must also be included.
  19. *
  20. * This software is provided as is, without representation or warranty
  21. * of any kind either express or implied, including without limitation
  22. * the implied warranties of merchantability, fitness for a particular
  23. * purpose, or noninfringement. The Regents of the University of
  24. * Michigan shall not be liable for any damages, including special,
  25. * indirect, incidental, or consequential damages, with respect to any
  26. * claim arising out of or in connection with the use of the software,
  27. * even if it has been or is hereafter advised of the possibility of
  28. * such damages.
  29. */
  30. #include <linux/nfs_fs.h>
  31. #include <linux/vmalloc.h>
  32. #include "internal.h"
  33. #include "nfs4filelayout.h"
  34. #define NFSDBG_FACILITY NFSDBG_PNFS_LD
  35. /*
  36. * Data server cache
  37. *
  38. * Data servers can be mapped to different device ids.
  39. * nfs4_pnfs_ds reference counting
  40. * - set to 1 on allocation
  41. * - incremented when a device id maps a data server already in the cache.
  42. * - decremented when deviceid is removed from the cache.
  43. */
  44. DEFINE_SPINLOCK(nfs4_ds_cache_lock);
  45. static LIST_HEAD(nfs4_data_server_cache);
  46. /* Debug routines */
  47. void
  48. print_ds(struct nfs4_pnfs_ds *ds)
  49. {
  50. if (ds == NULL) {
  51. printk("%s NULL device\n", __func__);
  52. return;
  53. }
  54. printk(" ip_addr %x port %hu\n"
  55. " ref count %d\n"
  56. " client %p\n"
  57. " cl_exchange_flags %x\n",
  58. ntohl(ds->ds_ip_addr), ntohs(ds->ds_port),
  59. atomic_read(&ds->ds_count), ds->ds_clp,
  60. ds->ds_clp ? ds->ds_clp->cl_exchange_flags : 0);
  61. }
  62. void
  63. print_ds_list(struct nfs4_file_layout_dsaddr *dsaddr)
  64. {
  65. int i;
  66. ifdebug(FACILITY) {
  67. printk("%s dsaddr->ds_num %d\n", __func__,
  68. dsaddr->ds_num);
  69. for (i = 0; i < dsaddr->ds_num; i++)
  70. print_ds(dsaddr->ds_list[i]);
  71. }
  72. }
  73. void print_deviceid(struct nfs4_deviceid *id)
  74. {
  75. u32 *p = (u32 *)id;
  76. dprintk("%s: device id= [%x%x%x%x]\n", __func__,
  77. p[0], p[1], p[2], p[3]);
  78. }
  79. /* nfs4_ds_cache_lock is held */
  80. static struct nfs4_pnfs_ds *
  81. _data_server_lookup_locked(u32 ip_addr, u32 port)
  82. {
  83. struct nfs4_pnfs_ds *ds;
  84. dprintk("_data_server_lookup: ip_addr=%x port=%hu\n",
  85. ntohl(ip_addr), ntohs(port));
  86. list_for_each_entry(ds, &nfs4_data_server_cache, ds_node) {
  87. if (ds->ds_ip_addr == ip_addr &&
  88. ds->ds_port == port) {
  89. return ds;
  90. }
  91. }
  92. return NULL;
  93. }
  94. static void
  95. destroy_ds(struct nfs4_pnfs_ds *ds)
  96. {
  97. dprintk("--> %s\n", __func__);
  98. ifdebug(FACILITY)
  99. print_ds(ds);
  100. if (ds->ds_clp)
  101. nfs_put_client(ds->ds_clp);
  102. kfree(ds);
  103. }
  104. static void
  105. nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr)
  106. {
  107. struct nfs4_pnfs_ds *ds;
  108. int i;
  109. print_deviceid(&dsaddr->deviceid.de_id);
  110. for (i = 0; i < dsaddr->ds_num; i++) {
  111. ds = dsaddr->ds_list[i];
  112. if (ds != NULL) {
  113. if (atomic_dec_and_lock(&ds->ds_count,
  114. &nfs4_ds_cache_lock)) {
  115. list_del_init(&ds->ds_node);
  116. spin_unlock(&nfs4_ds_cache_lock);
  117. destroy_ds(ds);
  118. }
  119. }
  120. }
  121. kfree(dsaddr->stripe_indices);
  122. kfree(dsaddr);
  123. }
  124. void
  125. nfs4_fl_free_deviceid_callback(struct pnfs_deviceid_node *device)
  126. {
  127. struct nfs4_file_layout_dsaddr *dsaddr =
  128. container_of(device, struct nfs4_file_layout_dsaddr, deviceid);
  129. nfs4_fl_free_deviceid(dsaddr);
  130. }
  131. static struct nfs4_pnfs_ds *
  132. nfs4_pnfs_ds_add(struct inode *inode, u32 ip_addr, u32 port)
  133. {
  134. struct nfs4_pnfs_ds *tmp_ds, *ds;
  135. ds = kzalloc(sizeof(*tmp_ds), GFP_KERNEL);
  136. if (!ds)
  137. goto out;
  138. spin_lock(&nfs4_ds_cache_lock);
  139. tmp_ds = _data_server_lookup_locked(ip_addr, port);
  140. if (tmp_ds == NULL) {
  141. ds->ds_ip_addr = ip_addr;
  142. ds->ds_port = port;
  143. atomic_set(&ds->ds_count, 1);
  144. INIT_LIST_HEAD(&ds->ds_node);
  145. ds->ds_clp = NULL;
  146. list_add(&ds->ds_node, &nfs4_data_server_cache);
  147. dprintk("%s add new data server ip 0x%x\n", __func__,
  148. ds->ds_ip_addr);
  149. } else {
  150. kfree(ds);
  151. atomic_inc(&tmp_ds->ds_count);
  152. dprintk("%s data server found ip 0x%x, inc'ed ds_count to %d\n",
  153. __func__, tmp_ds->ds_ip_addr,
  154. atomic_read(&tmp_ds->ds_count));
  155. ds = tmp_ds;
  156. }
  157. spin_unlock(&nfs4_ds_cache_lock);
  158. out:
  159. return ds;
  160. }
  161. /*
  162. * Currently only support ipv4, and one multi-path address.
  163. */
  164. static struct nfs4_pnfs_ds *
  165. decode_and_add_ds(__be32 **pp, struct inode *inode)
  166. {
  167. struct nfs4_pnfs_ds *ds = NULL;
  168. char *buf;
  169. const char *ipend, *pstr;
  170. u32 ip_addr, port;
  171. int nlen, rlen, i;
  172. int tmp[2];
  173. __be32 *r_netid, *r_addr, *p = *pp;
  174. /* r_netid */
  175. nlen = be32_to_cpup(p++);
  176. r_netid = p;
  177. p += XDR_QUADLEN(nlen);
  178. /* r_addr */
  179. rlen = be32_to_cpup(p++);
  180. r_addr = p;
  181. p += XDR_QUADLEN(rlen);
  182. *pp = p;
  183. /* Check that netid is "tcp" */
  184. if (nlen != 3 || memcmp((char *)r_netid, "tcp", 3)) {
  185. dprintk("%s: ERROR: non ipv4 TCP r_netid\n", __func__);
  186. goto out_err;
  187. }
  188. /* ipv6 length plus port is legal */
  189. if (rlen > INET6_ADDRSTRLEN + 8) {
  190. dprintk("%s: Invalid address, length %d\n", __func__,
  191. rlen);
  192. goto out_err;
  193. }
  194. buf = kmalloc(rlen + 1, GFP_KERNEL);
  195. if (!buf) {
  196. dprintk("%s: Not enough memory\n", __func__);
  197. goto out_err;
  198. }
  199. buf[rlen] = '\0';
  200. memcpy(buf, r_addr, rlen);
  201. /* replace the port dots with dashes for the in4_pton() delimiter*/
  202. for (i = 0; i < 2; i++) {
  203. char *res = strrchr(buf, '.');
  204. if (!res) {
  205. dprintk("%s: Failed finding expected dots in port\n",
  206. __func__);
  207. goto out_free;
  208. }
  209. *res = '-';
  210. }
  211. /* Currently only support ipv4 address */
  212. if (in4_pton(buf, rlen, (u8 *)&ip_addr, '-', &ipend) == 0) {
  213. dprintk("%s: Only ipv4 addresses supported\n", __func__);
  214. goto out_free;
  215. }
  216. /* port */
  217. pstr = ipend;
  218. sscanf(pstr, "-%d-%d", &tmp[0], &tmp[1]);
  219. port = htons((tmp[0] << 8) | (tmp[1]));
  220. ds = nfs4_pnfs_ds_add(inode, ip_addr, port);
  221. dprintk("%s: Decoded address and port %s\n", __func__, buf);
  222. out_free:
  223. kfree(buf);
  224. out_err:
  225. return ds;
  226. }
  227. /* Decode opaque device data and return the result */
  228. static struct nfs4_file_layout_dsaddr*
  229. decode_device(struct inode *ino, struct pnfs_device *pdev)
  230. {
  231. int i, dummy;
  232. u32 cnt, num;
  233. u8 *indexp;
  234. __be32 *p = (__be32 *)pdev->area, *indicesp;
  235. struct nfs4_file_layout_dsaddr *dsaddr;
  236. /* Get the stripe count (number of stripe index) */
  237. cnt = be32_to_cpup(p++);
  238. dprintk("%s stripe count %d\n", __func__, cnt);
  239. if (cnt > NFS4_PNFS_MAX_STRIPE_CNT) {
  240. printk(KERN_WARNING "%s: stripe count %d greater than "
  241. "supported maximum %d\n", __func__,
  242. cnt, NFS4_PNFS_MAX_STRIPE_CNT);
  243. goto out_err;
  244. }
  245. /* Check the multipath list count */
  246. indicesp = p;
  247. p += XDR_QUADLEN(cnt << 2);
  248. num = be32_to_cpup(p++);
  249. dprintk("%s ds_num %u\n", __func__, num);
  250. if (num > NFS4_PNFS_MAX_MULTI_CNT) {
  251. printk(KERN_WARNING "%s: multipath count %d greater than "
  252. "supported maximum %d\n", __func__,
  253. num, NFS4_PNFS_MAX_MULTI_CNT);
  254. goto out_err;
  255. }
  256. dsaddr = kzalloc(sizeof(*dsaddr) +
  257. (sizeof(struct nfs4_pnfs_ds *) * (num - 1)),
  258. GFP_KERNEL);
  259. if (!dsaddr)
  260. goto out_err;
  261. dsaddr->stripe_indices = kzalloc(sizeof(u8) * cnt, GFP_KERNEL);
  262. if (!dsaddr->stripe_indices)
  263. goto out_err_free;
  264. dsaddr->stripe_count = cnt;
  265. dsaddr->ds_num = num;
  266. memcpy(&dsaddr->deviceid.de_id, &pdev->dev_id, sizeof(pdev->dev_id));
  267. /* Go back an read stripe indices */
  268. p = indicesp;
  269. indexp = &dsaddr->stripe_indices[0];
  270. for (i = 0; i < dsaddr->stripe_count; i++) {
  271. *indexp = be32_to_cpup(p++);
  272. if (*indexp >= num)
  273. goto out_err_free;
  274. indexp++;
  275. }
  276. /* Skip already read multipath list count */
  277. p++;
  278. for (i = 0; i < dsaddr->ds_num; i++) {
  279. int j;
  280. dummy = be32_to_cpup(p++); /* multipath count */
  281. if (dummy > 1) {
  282. printk(KERN_WARNING
  283. "%s: Multipath count %d not supported, "
  284. "skipping all greater than 1\n", __func__,
  285. dummy);
  286. }
  287. for (j = 0; j < dummy; j++) {
  288. if (j == 0) {
  289. dsaddr->ds_list[i] = decode_and_add_ds(&p, ino);
  290. if (dsaddr->ds_list[i] == NULL)
  291. goto out_err_free;
  292. } else {
  293. u32 len;
  294. /* skip extra multipath */
  295. len = be32_to_cpup(p++);
  296. p += XDR_QUADLEN(len);
  297. len = be32_to_cpup(p++);
  298. p += XDR_QUADLEN(len);
  299. continue;
  300. }
  301. }
  302. }
  303. return dsaddr;
  304. out_err_free:
  305. nfs4_fl_free_deviceid(dsaddr);
  306. out_err:
  307. dprintk("%s ERROR: returning NULL\n", __func__);
  308. return NULL;
  309. }
  310. /*
  311. * Decode the opaque device specified in 'dev'
  312. * and add it to the list of available devices.
  313. * If the deviceid is already cached, nfs4_add_deviceid will return
  314. * a pointer to the cached struct and throw away the new.
  315. */
  316. static struct nfs4_file_layout_dsaddr*
  317. decode_and_add_device(struct inode *inode, struct pnfs_device *dev)
  318. {
  319. struct nfs4_file_layout_dsaddr *dsaddr;
  320. struct pnfs_deviceid_node *d;
  321. dsaddr = decode_device(inode, dev);
  322. if (!dsaddr) {
  323. printk(KERN_WARNING "%s: Could not decode or add device\n",
  324. __func__);
  325. return NULL;
  326. }
  327. d = pnfs_add_deviceid(NFS_SERVER(inode)->nfs_client->cl_devid_cache,
  328. &dsaddr->deviceid);
  329. return container_of(d, struct nfs4_file_layout_dsaddr, deviceid);
  330. }
  331. /*
  332. * Retrieve the information for dev_id, add it to the list
  333. * of available devices, and return it.
  334. */
  335. struct nfs4_file_layout_dsaddr *
  336. get_device_info(struct inode *inode, struct nfs4_deviceid *dev_id)
  337. {
  338. struct pnfs_device *pdev = NULL;
  339. u32 max_resp_sz;
  340. int max_pages;
  341. struct page **pages = NULL;
  342. struct nfs4_file_layout_dsaddr *dsaddr = NULL;
  343. int rc, i;
  344. struct nfs_server *server = NFS_SERVER(inode);
  345. /*
  346. * Use the session max response size as the basis for setting
  347. * GETDEVICEINFO's maxcount
  348. */
  349. max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
  350. max_pages = max_resp_sz >> PAGE_SHIFT;
  351. dprintk("%s inode %p max_resp_sz %u max_pages %d\n",
  352. __func__, inode, max_resp_sz, max_pages);
  353. pdev = kzalloc(sizeof(struct pnfs_device), GFP_KERNEL);
  354. if (pdev == NULL)
  355. return NULL;
  356. pages = kzalloc(max_pages * sizeof(struct page *), GFP_KERNEL);
  357. if (pages == NULL) {
  358. kfree(pdev);
  359. return NULL;
  360. }
  361. for (i = 0; i < max_pages; i++) {
  362. pages[i] = alloc_page(GFP_KERNEL);
  363. if (!pages[i])
  364. goto out_free;
  365. }
  366. /* set pdev->area */
  367. pdev->area = vmap(pages, max_pages, VM_MAP, PAGE_KERNEL);
  368. if (!pdev->area)
  369. goto out_free;
  370. memcpy(&pdev->dev_id, dev_id, sizeof(*dev_id));
  371. pdev->layout_type = LAYOUT_NFSV4_1_FILES;
  372. pdev->pages = pages;
  373. pdev->pgbase = 0;
  374. pdev->pglen = PAGE_SIZE * max_pages;
  375. pdev->mincount = 0;
  376. rc = nfs4_proc_getdeviceinfo(server, pdev);
  377. dprintk("%s getdevice info returns %d\n", __func__, rc);
  378. if (rc)
  379. goto out_free;
  380. /*
  381. * Found new device, need to decode it and then add it to the
  382. * list of known devices for this mountpoint.
  383. */
  384. dsaddr = decode_and_add_device(inode, pdev);
  385. out_free:
  386. if (pdev->area != NULL)
  387. vunmap(pdev->area);
  388. for (i = 0; i < max_pages; i++)
  389. __free_page(pages[i]);
  390. kfree(pages);
  391. kfree(pdev);
  392. dprintk("<-- %s dsaddr %p\n", __func__, dsaddr);
  393. return dsaddr;
  394. }
  395. struct nfs4_file_layout_dsaddr *
  396. nfs4_fl_find_get_deviceid(struct nfs_client *clp, struct nfs4_deviceid *id)
  397. {
  398. struct pnfs_deviceid_node *d;
  399. d = pnfs_find_get_deviceid(clp->cl_devid_cache, id);
  400. return (d == NULL) ? NULL :
  401. container_of(d, struct nfs4_file_layout_dsaddr, deviceid);
  402. }