nfs4filelayoutdev.c 11 KB

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