nfs4filelayoutdev.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  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. buf[rlen] = '\0';
  196. memcpy(buf, r_addr, rlen);
  197. /* replace the port dots with dashes for the in4_pton() delimiter*/
  198. for (i = 0; i < 2; i++) {
  199. char *res = strrchr(buf, '.');
  200. if (!res) {
  201. dprintk("%s: Failed finding expected dots in port\n",
  202. __func__);
  203. goto out_free;
  204. }
  205. *res = '-';
  206. }
  207. /* Currently only support ipv4 address */
  208. if (in4_pton(buf, rlen, (u8 *)&ip_addr, '-', &ipend) == 0) {
  209. dprintk("%s: Only ipv4 addresses supported\n", __func__);
  210. goto out_free;
  211. }
  212. /* port */
  213. pstr = ipend;
  214. sscanf(pstr, "-%d-%d", &tmp[0], &tmp[1]);
  215. port = htons((tmp[0] << 8) | (tmp[1]));
  216. ds = nfs4_pnfs_ds_add(inode, ip_addr, port);
  217. dprintk("%s: Decoded address and port %s\n", __func__, buf);
  218. out_free:
  219. kfree(buf);
  220. out_err:
  221. return ds;
  222. }
  223. /* Decode opaque device data and return the result */
  224. static struct nfs4_file_layout_dsaddr*
  225. decode_device(struct inode *ino, struct pnfs_device *pdev)
  226. {
  227. int i, dummy;
  228. u32 cnt, num;
  229. u8 *indexp;
  230. __be32 *p = (__be32 *)pdev->area, *indicesp;
  231. struct nfs4_file_layout_dsaddr *dsaddr;
  232. /* Get the stripe count (number of stripe index) */
  233. cnt = be32_to_cpup(p++);
  234. dprintk("%s stripe count %d\n", __func__, cnt);
  235. if (cnt > NFS4_PNFS_MAX_STRIPE_CNT) {
  236. printk(KERN_WARNING "%s: stripe count %d greater than "
  237. "supported maximum %d\n", __func__,
  238. cnt, NFS4_PNFS_MAX_STRIPE_CNT);
  239. goto out_err;
  240. }
  241. /* Check the multipath list count */
  242. indicesp = p;
  243. p += XDR_QUADLEN(cnt << 2);
  244. num = be32_to_cpup(p++);
  245. dprintk("%s ds_num %u\n", __func__, num);
  246. if (num > NFS4_PNFS_MAX_MULTI_CNT) {
  247. printk(KERN_WARNING "%s: multipath count %d greater than "
  248. "supported maximum %d\n", __func__,
  249. num, NFS4_PNFS_MAX_MULTI_CNT);
  250. goto out_err;
  251. }
  252. dsaddr = kzalloc(sizeof(*dsaddr) +
  253. (sizeof(struct nfs4_pnfs_ds *) * (num - 1)),
  254. GFP_KERNEL);
  255. if (!dsaddr)
  256. goto out_err;
  257. dsaddr->stripe_indices = kzalloc(sizeof(u8) * cnt, GFP_KERNEL);
  258. if (!dsaddr->stripe_indices)
  259. goto out_err_free;
  260. dsaddr->stripe_count = cnt;
  261. dsaddr->ds_num = num;
  262. memcpy(&dsaddr->deviceid.de_id, &pdev->dev_id, sizeof(pdev->dev_id));
  263. /* Go back an read stripe indices */
  264. p = indicesp;
  265. indexp = &dsaddr->stripe_indices[0];
  266. for (i = 0; i < dsaddr->stripe_count; i++) {
  267. *indexp = be32_to_cpup(p++);
  268. if (*indexp >= num)
  269. goto out_err_free;
  270. indexp++;
  271. }
  272. /* Skip already read multipath list count */
  273. p++;
  274. for (i = 0; i < dsaddr->ds_num; i++) {
  275. int j;
  276. dummy = be32_to_cpup(p++); /* multipath count */
  277. if (dummy > 1) {
  278. printk(KERN_WARNING
  279. "%s: Multipath count %d not supported, "
  280. "skipping all greater than 1\n", __func__,
  281. dummy);
  282. }
  283. for (j = 0; j < dummy; j++) {
  284. if (j == 0) {
  285. dsaddr->ds_list[i] = decode_and_add_ds(&p, ino);
  286. if (dsaddr->ds_list[i] == NULL)
  287. goto out_err_free;
  288. } else {
  289. u32 len;
  290. /* skip extra multipath */
  291. len = be32_to_cpup(p++);
  292. p += XDR_QUADLEN(len);
  293. len = be32_to_cpup(p++);
  294. p += XDR_QUADLEN(len);
  295. continue;
  296. }
  297. }
  298. }
  299. return dsaddr;
  300. out_err_free:
  301. nfs4_fl_free_deviceid(dsaddr);
  302. out_err:
  303. dprintk("%s ERROR: returning NULL\n", __func__);
  304. return NULL;
  305. }
  306. /*
  307. * Decode the opaque device specified in 'dev'
  308. * and add it to the list of available devices.
  309. * If the deviceid is already cached, nfs4_add_deviceid will return
  310. * a pointer to the cached struct and throw away the new.
  311. */
  312. static struct nfs4_file_layout_dsaddr*
  313. decode_and_add_device(struct inode *inode, struct pnfs_device *dev)
  314. {
  315. struct nfs4_file_layout_dsaddr *dsaddr;
  316. struct pnfs_deviceid_node *d;
  317. dsaddr = decode_device(inode, dev);
  318. if (!dsaddr) {
  319. printk(KERN_WARNING "%s: Could not decode or add device\n",
  320. __func__);
  321. return NULL;
  322. }
  323. d = pnfs_add_deviceid(NFS_SERVER(inode)->nfs_client->cl_devid_cache,
  324. &dsaddr->deviceid);
  325. return container_of(d, struct nfs4_file_layout_dsaddr, deviceid);
  326. }
  327. /*
  328. * Retrieve the information for dev_id, add it to the list
  329. * of available devices, and return it.
  330. */
  331. struct nfs4_file_layout_dsaddr *
  332. get_device_info(struct inode *inode, struct nfs4_deviceid *dev_id)
  333. {
  334. struct pnfs_device *pdev = NULL;
  335. u32 max_resp_sz;
  336. int max_pages;
  337. struct page **pages = NULL;
  338. struct nfs4_file_layout_dsaddr *dsaddr = NULL;
  339. int rc, i;
  340. struct nfs_server *server = NFS_SERVER(inode);
  341. /*
  342. * Use the session max response size as the basis for setting
  343. * GETDEVICEINFO's maxcount
  344. */
  345. max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
  346. max_pages = max_resp_sz >> PAGE_SHIFT;
  347. dprintk("%s inode %p max_resp_sz %u max_pages %d\n",
  348. __func__, inode, max_resp_sz, max_pages);
  349. pdev = kzalloc(sizeof(struct pnfs_device), GFP_KERNEL);
  350. if (pdev == NULL)
  351. return NULL;
  352. pages = kzalloc(max_pages * sizeof(struct page *), GFP_KERNEL);
  353. if (pages == NULL) {
  354. kfree(pdev);
  355. return NULL;
  356. }
  357. for (i = 0; i < max_pages; i++) {
  358. pages[i] = alloc_page(GFP_KERNEL);
  359. if (!pages[i])
  360. goto out_free;
  361. }
  362. /* set pdev->area */
  363. pdev->area = vmap(pages, max_pages, VM_MAP, PAGE_KERNEL);
  364. if (!pdev->area)
  365. goto out_free;
  366. memcpy(&pdev->dev_id, dev_id, sizeof(*dev_id));
  367. pdev->layout_type = LAYOUT_NFSV4_1_FILES;
  368. pdev->pages = pages;
  369. pdev->pgbase = 0;
  370. pdev->pglen = PAGE_SIZE * max_pages;
  371. pdev->mincount = 0;
  372. rc = nfs4_proc_getdeviceinfo(server, pdev);
  373. dprintk("%s getdevice info returns %d\n", __func__, rc);
  374. if (rc)
  375. goto out_free;
  376. /*
  377. * Found new device, need to decode it and then add it to the
  378. * list of known devices for this mountpoint.
  379. */
  380. dsaddr = decode_and_add_device(inode, pdev);
  381. out_free:
  382. if (pdev->area != NULL)
  383. vunmap(pdev->area);
  384. for (i = 0; i < max_pages; i++)
  385. __free_page(pages[i]);
  386. kfree(pages);
  387. kfree(pdev);
  388. dprintk("<-- %s dsaddr %p\n", __func__, dsaddr);
  389. return dsaddr;
  390. }
  391. struct nfs4_file_layout_dsaddr *
  392. nfs4_fl_find_get_deviceid(struct nfs_client *clp, struct nfs4_deviceid *id)
  393. {
  394. struct pnfs_deviceid_node *d;
  395. d = pnfs_find_get_deviceid(clp->cl_devid_cache, id);
  396. return (d == NULL) ? NULL :
  397. container_of(d, struct nfs4_file_layout_dsaddr, deviceid);
  398. }