ioctl.c 7.3 KB

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