ioctl.c 7.1 KB

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