ioctl.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. #include <linux/in.h>
  2. #include "super.h"
  3. #include "mds_client.h"
  4. #include <linux/ceph/ceph_debug.h>
  5. #include "ioctl.h"
  6. /*
  7. * ioctls
  8. */
  9. /*
  10. * get and set the file layout
  11. */
  12. static long ceph_ioctl_get_layout(struct file *file, void __user *arg)
  13. {
  14. struct ceph_inode_info *ci = ceph_inode(file->f_dentry->d_inode);
  15. struct ceph_ioctl_layout l;
  16. int err;
  17. err = ceph_do_getattr(file->f_dentry->d_inode, CEPH_STAT_CAP_LAYOUT);
  18. if (!err) {
  19. l.stripe_unit = ceph_file_layout_su(ci->i_layout);
  20. l.stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
  21. l.object_size = ceph_file_layout_object_size(ci->i_layout);
  22. l.data_pool = le32_to_cpu(ci->i_layout.fl_pg_pool);
  23. l.preferred_osd = (s32)-1;
  24. if (copy_to_user(arg, &l, sizeof(l)))
  25. return -EFAULT;
  26. }
  27. return err;
  28. }
  29. static long __validate_layout(struct ceph_mds_client *mdsc,
  30. struct ceph_ioctl_layout *l)
  31. {
  32. int i, err;
  33. /* preferred_osd is no longer supported */
  34. if (l->preferred_osd != -1)
  35. return -EINVAL;
  36. /* validate striping parameters */
  37. if ((l->object_size & ~PAGE_MASK) ||
  38. (l->stripe_unit & ~PAGE_MASK) ||
  39. ((unsigned)l->object_size % (unsigned)l->stripe_unit))
  40. return -EINVAL;
  41. /* make sure it's a valid data pool */
  42. mutex_lock(&mdsc->mutex);
  43. err = -EINVAL;
  44. for (i = 0; i < mdsc->mdsmap->m_num_data_pg_pools; i++)
  45. if (mdsc->mdsmap->m_data_pg_pools[i] == l->data_pool) {
  46. err = 0;
  47. break;
  48. }
  49. mutex_unlock(&mdsc->mutex);
  50. if (err)
  51. return err;
  52. return 0;
  53. }
  54. static long ceph_ioctl_set_layout(struct file *file, void __user *arg)
  55. {
  56. struct inode *inode = file->f_dentry->d_inode;
  57. struct inode *parent_inode;
  58. struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
  59. struct ceph_mds_request *req;
  60. struct ceph_ioctl_layout l;
  61. struct ceph_inode_info *ci = ceph_inode(file->f_dentry->d_inode);
  62. struct ceph_ioctl_layout nl;
  63. int err;
  64. if (copy_from_user(&l, arg, sizeof(l)))
  65. return -EFAULT;
  66. /* validate changed params against current layout */
  67. err = ceph_do_getattr(file->f_dentry->d_inode, CEPH_STAT_CAP_LAYOUT);
  68. if (!err) {
  69. nl.stripe_unit = ceph_file_layout_su(ci->i_layout);
  70. nl.stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
  71. nl.object_size = ceph_file_layout_object_size(ci->i_layout);
  72. nl.data_pool = le32_to_cpu(ci->i_layout.fl_pg_pool);
  73. } else
  74. return err;
  75. if (l.stripe_count)
  76. nl.stripe_count = l.stripe_count;
  77. if (l.stripe_unit)
  78. nl.stripe_unit = l.stripe_unit;
  79. if (l.object_size)
  80. nl.object_size = l.object_size;
  81. if (l.data_pool)
  82. nl.data_pool = l.data_pool;
  83. err = __validate_layout(mdsc, &nl);
  84. if (err)
  85. return err;
  86. req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETLAYOUT,
  87. USE_AUTH_MDS);
  88. if (IS_ERR(req))
  89. return PTR_ERR(req);
  90. req->r_inode = inode;
  91. ihold(inode);
  92. req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL;
  93. req->r_args.setlayout.layout.fl_stripe_unit =
  94. cpu_to_le32(l.stripe_unit);
  95. req->r_args.setlayout.layout.fl_stripe_count =
  96. cpu_to_le32(l.stripe_count);
  97. req->r_args.setlayout.layout.fl_object_size =
  98. cpu_to_le32(l.object_size);
  99. req->r_args.setlayout.layout.fl_pg_pool = cpu_to_le32(l.data_pool);
  100. parent_inode = ceph_get_dentry_parent_inode(file->f_dentry);
  101. err = ceph_mdsc_do_request(mdsc, parent_inode, req);
  102. iput(parent_inode);
  103. ceph_mdsc_put_request(req);
  104. return err;
  105. }
  106. /*
  107. * Set a layout policy on a directory inode. All items in the tree
  108. * rooted at this inode will inherit this layout on creation,
  109. * (It doesn't apply retroactively )
  110. * unless a subdirectory has its own layout policy.
  111. */
  112. static long ceph_ioctl_set_layout_policy (struct file *file, void __user *arg)
  113. {
  114. struct inode *inode = file->f_dentry->d_inode;
  115. struct ceph_mds_request *req;
  116. struct ceph_ioctl_layout l;
  117. int err;
  118. struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
  119. /* copy and validate */
  120. if (copy_from_user(&l, arg, sizeof(l)))
  121. return -EFAULT;
  122. err = __validate_layout(mdsc, &l);
  123. if (err)
  124. return err;
  125. req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETDIRLAYOUT,
  126. USE_AUTH_MDS);
  127. if (IS_ERR(req))
  128. return PTR_ERR(req);
  129. req->r_inode = inode;
  130. ihold(inode);
  131. req->r_args.setlayout.layout.fl_stripe_unit =
  132. cpu_to_le32(l.stripe_unit);
  133. req->r_args.setlayout.layout.fl_stripe_count =
  134. cpu_to_le32(l.stripe_count);
  135. req->r_args.setlayout.layout.fl_object_size =
  136. cpu_to_le32(l.object_size);
  137. req->r_args.setlayout.layout.fl_pg_pool =
  138. cpu_to_le32(l.data_pool);
  139. err = ceph_mdsc_do_request(mdsc, inode, req);
  140. ceph_mdsc_put_request(req);
  141. return err;
  142. }
  143. /*
  144. * Return object name, size/offset information, and location (OSD
  145. * number, network address) for a given file offset.
  146. */
  147. static long ceph_ioctl_get_dataloc(struct file *file, void __user *arg)
  148. {
  149. struct ceph_ioctl_dataloc dl;
  150. struct inode *inode = file->f_dentry->d_inode;
  151. struct ceph_inode_info *ci = ceph_inode(inode);
  152. struct ceph_osd_client *osdc =
  153. &ceph_sb_to_client(inode->i_sb)->client->osdc;
  154. u64 len = 1, olen;
  155. u64 tmp;
  156. struct ceph_object_layout ol;
  157. struct ceph_pg pgid;
  158. /* copy and validate */
  159. if (copy_from_user(&dl, arg, sizeof(dl)))
  160. return -EFAULT;
  161. down_read(&osdc->map_sem);
  162. ceph_calc_file_object_mapping(&ci->i_layout, dl.file_offset, &len,
  163. &dl.object_no, &dl.object_offset, &olen);
  164. dl.file_offset -= dl.object_offset;
  165. dl.object_size = ceph_file_layout_object_size(ci->i_layout);
  166. dl.block_size = ceph_file_layout_su(ci->i_layout);
  167. /* block_offset = object_offset % block_size */
  168. tmp = dl.object_offset;
  169. dl.block_offset = do_div(tmp, dl.block_size);
  170. snprintf(dl.object_name, sizeof(dl.object_name), "%llx.%08llx",
  171. ceph_ino(inode), dl.object_no);
  172. ceph_calc_object_layout(&ol, dl.object_name, &ci->i_layout,
  173. osdc->osdmap);
  174. pgid = ol.ol_pgid;
  175. dl.osd = ceph_calc_pg_primary(osdc->osdmap, pgid);
  176. if (dl.osd >= 0) {
  177. struct ceph_entity_addr *a =
  178. ceph_osd_addr(osdc->osdmap, dl.osd);
  179. if (a)
  180. memcpy(&dl.osd_addr, &a->in_addr, sizeof(dl.osd_addr));
  181. } else {
  182. memset(&dl.osd_addr, 0, sizeof(dl.osd_addr));
  183. }
  184. up_read(&osdc->map_sem);
  185. /* send result back to user */
  186. if (copy_to_user(arg, &dl, sizeof(dl)))
  187. return -EFAULT;
  188. return 0;
  189. }
  190. static long ceph_ioctl_lazyio(struct file *file)
  191. {
  192. struct ceph_file_info *fi = file->private_data;
  193. struct inode *inode = file->f_dentry->d_inode;
  194. struct ceph_inode_info *ci = ceph_inode(inode);
  195. if ((fi->fmode & CEPH_FILE_MODE_LAZY) == 0) {
  196. spin_lock(&ci->i_ceph_lock);
  197. ci->i_nr_by_mode[fi->fmode]--;
  198. fi->fmode |= CEPH_FILE_MODE_LAZY;
  199. ci->i_nr_by_mode[fi->fmode]++;
  200. spin_unlock(&ci->i_ceph_lock);
  201. dout("ioctl_layzio: file %p marked lazy\n", file);
  202. ceph_check_caps(ci, 0, NULL);
  203. } else {
  204. dout("ioctl_layzio: file %p already lazy\n", file);
  205. }
  206. return 0;
  207. }
  208. static long ceph_ioctl_syncio(struct file *file)
  209. {
  210. struct ceph_file_info *fi = file->private_data;
  211. fi->flags |= CEPH_F_SYNC;
  212. return 0;
  213. }
  214. long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  215. {
  216. dout("ioctl file %p cmd %u arg %lu\n", file, cmd, arg);
  217. switch (cmd) {
  218. case CEPH_IOC_GET_LAYOUT:
  219. return ceph_ioctl_get_layout(file, (void __user *)arg);
  220. case CEPH_IOC_SET_LAYOUT:
  221. return ceph_ioctl_set_layout(file, (void __user *)arg);
  222. case CEPH_IOC_SET_LAYOUT_POLICY:
  223. return ceph_ioctl_set_layout_policy(file, (void __user *)arg);
  224. case CEPH_IOC_GET_DATALOC:
  225. return ceph_ioctl_get_dataloc(file, (void __user *)arg);
  226. case CEPH_IOC_LAZYIO:
  227. return ceph_ioctl_lazyio(file);
  228. case CEPH_IOC_SYNCIO:
  229. return ceph_ioctl_syncio(file);
  230. }
  231. return -ENOTTY;
  232. }