blob: 0e2f021109eed3321ae2ab0f93df972317b4301e [file] [log] [blame]
Sage Weil8f4e91d2009-10-06 11:31:14 -07001#include <linux/in.h>
2
Sage Weil8f4e91d2009-10-06 11:31:14 -07003#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004#include "mds_client.h"
5#include <linux/ceph/ceph_debug.h>
6
7#include "ioctl.h"
Sage Weil8f4e91d2009-10-06 11:31:14 -07008
9
10/*
11 * ioctls
12 */
13
14/*
15 * get and set the file layout
16 */
17static long ceph_ioctl_get_layout(struct file *file, void __user *arg)
18{
19 struct ceph_inode_info *ci = ceph_inode(file->f_dentry->d_inode);
20 struct ceph_ioctl_layout l;
21 int err;
22
23 err = ceph_do_getattr(file->f_dentry->d_inode, CEPH_STAT_CAP_LAYOUT);
24 if (!err) {
25 l.stripe_unit = ceph_file_layout_su(ci->i_layout);
26 l.stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
27 l.object_size = ceph_file_layout_object_size(ci->i_layout);
28 l.data_pool = le32_to_cpu(ci->i_layout.fl_pg_pool);
Sage Weil3469ac1a2012-05-07 15:33:36 -070029 l.preferred_osd = (s32)-1;
Sage Weil8f4e91d2009-10-06 11:31:14 -070030 if (copy_to_user(arg, &l, sizeof(l)))
31 return -EFAULT;
32 }
33
34 return err;
35}
36
Sage Weile49bf4c2012-05-07 15:34:35 -070037static long __validate_layout(struct ceph_mds_client *mdsc,
38 struct ceph_ioctl_layout *l)
39{
40 int i, err;
41
42 /* preferred_osd is no longer supported */
43 if (l->preferred_osd != -1)
44 return -EINVAL;
45
46 /* validate striping parameters */
47 if ((l->object_size & ~PAGE_MASK) ||
48 (l->stripe_unit & ~PAGE_MASK) ||
49 ((unsigned)l->object_size % (unsigned)l->stripe_unit))
50 return -EINVAL;
51
52 /* make sure it's a valid data pool */
53 mutex_lock(&mdsc->mutex);
54 err = -EINVAL;
55 for (i = 0; i < mdsc->mdsmap->m_num_data_pg_pools; i++)
56 if (mdsc->mdsmap->m_data_pg_pools[i] == l->data_pool) {
57 err = 0;
58 break;
59 }
60 mutex_unlock(&mdsc->mutex);
61 if (err)
62 return err;
63
64 return 0;
65}
66
Sage Weil8f4e91d2009-10-06 11:31:14 -070067static long ceph_ioctl_set_layout(struct file *file, void __user *arg)
68{
69 struct inode *inode = file->f_dentry->d_inode;
Sage Weil5f21c962011-07-26 11:30:29 -070070 struct inode *parent_inode;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070071 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weil8f4e91d2009-10-06 11:31:14 -070072 struct ceph_mds_request *req;
73 struct ceph_ioctl_layout l;
Greg Farnuma35eca92011-08-25 12:43:06 -070074 struct ceph_inode_info *ci = ceph_inode(file->f_dentry->d_inode);
75 struct ceph_ioctl_layout nl;
Sage Weile49bf4c2012-05-07 15:34:35 -070076 int err;
Sage Weil8f4e91d2009-10-06 11:31:14 -070077
Sage Weil8f4e91d2009-10-06 11:31:14 -070078 if (copy_from_user(&l, arg, sizeof(l)))
79 return -EFAULT;
80
Greg Farnuma35eca92011-08-25 12:43:06 -070081 /* validate changed params against current layout */
82 err = ceph_do_getattr(file->f_dentry->d_inode, CEPH_STAT_CAP_LAYOUT);
83 if (!err) {
84 nl.stripe_unit = ceph_file_layout_su(ci->i_layout);
85 nl.stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
86 nl.object_size = ceph_file_layout_object_size(ci->i_layout);
87 nl.data_pool = le32_to_cpu(ci->i_layout.fl_pg_pool);
Greg Farnuma35eca92011-08-25 12:43:06 -070088 } else
89 return err;
90
91 if (l.stripe_count)
92 nl.stripe_count = l.stripe_count;
93 if (l.stripe_unit)
94 nl.stripe_unit = l.stripe_unit;
95 if (l.object_size)
96 nl.object_size = l.object_size;
97 if (l.data_pool)
98 nl.data_pool = l.data_pool;
Greg Farnuma35eca92011-08-25 12:43:06 -070099
Sage Weile49bf4c2012-05-07 15:34:35 -0700100 err = __validate_layout(mdsc, &nl);
101 if (err)
102 return err;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700103
104 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETLAYOUT,
105 USE_AUTH_MDS);
106 if (IS_ERR(req))
107 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -0700108 req->r_inode = inode;
109 ihold(inode);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700110 req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL;
111
112 req->r_args.setlayout.layout.fl_stripe_unit =
113 cpu_to_le32(l.stripe_unit);
114 req->r_args.setlayout.layout.fl_stripe_count =
115 cpu_to_le32(l.stripe_count);
116 req->r_args.setlayout.layout.fl_object_size =
117 cpu_to_le32(l.object_size);
118 req->r_args.setlayout.layout.fl_pg_pool = cpu_to_le32(l.data_pool);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700119
Sage Weil5f21c962011-07-26 11:30:29 -0700120 parent_inode = ceph_get_dentry_parent_inode(file->f_dentry);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700121 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
Sage Weil5f21c962011-07-26 11:30:29 -0700122 iput(parent_inode);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700123 ceph_mdsc_put_request(req);
124 return err;
125}
126
127/*
Greg Farnum571dba52010-09-24 14:56:40 -0700128 * Set a layout policy on a directory inode. All items in the tree
129 * rooted at this inode will inherit this layout on creation,
130 * (It doesn't apply retroactively )
131 * unless a subdirectory has its own layout policy.
132 */
133static long ceph_ioctl_set_layout_policy (struct file *file, void __user *arg)
134{
135 struct inode *inode = file->f_dentry->d_inode;
136 struct ceph_mds_request *req;
137 struct ceph_ioctl_layout l;
Sage Weile49bf4c2012-05-07 15:34:35 -0700138 int err;
Greg Farnum571dba52010-09-24 14:56:40 -0700139 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
140
141 /* copy and validate */
142 if (copy_from_user(&l, arg, sizeof(l)))
143 return -EFAULT;
144
Sage Weile49bf4c2012-05-07 15:34:35 -0700145 err = __validate_layout(mdsc, &l);
146 if (err)
147 return err;
Greg Farnum571dba52010-09-24 14:56:40 -0700148
149 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETDIRLAYOUT,
150 USE_AUTH_MDS);
151
152 if (IS_ERR(req))
153 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -0700154 req->r_inode = inode;
155 ihold(inode);
Greg Farnum571dba52010-09-24 14:56:40 -0700156
157 req->r_args.setlayout.layout.fl_stripe_unit =
158 cpu_to_le32(l.stripe_unit);
159 req->r_args.setlayout.layout.fl_stripe_count =
160 cpu_to_le32(l.stripe_count);
161 req->r_args.setlayout.layout.fl_object_size =
162 cpu_to_le32(l.object_size);
163 req->r_args.setlayout.layout.fl_pg_pool =
164 cpu_to_le32(l.data_pool);
Greg Farnum571dba52010-09-24 14:56:40 -0700165
166 err = ceph_mdsc_do_request(mdsc, inode, req);
167 ceph_mdsc_put_request(req);
168 return err;
169}
170
171/*
Sage Weil8f4e91d2009-10-06 11:31:14 -0700172 * Return object name, size/offset information, and location (OSD
173 * number, network address) for a given file offset.
174 */
175static long ceph_ioctl_get_dataloc(struct file *file, void __user *arg)
176{
177 struct ceph_ioctl_dataloc dl;
178 struct inode *inode = file->f_dentry->d_inode;
179 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700180 struct ceph_osd_client *osdc =
181 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700182 u64 len = 1, olen;
183 u64 tmp;
184 struct ceph_object_layout ol;
Sage Weil51042122009-11-04 11:39:12 -0800185 struct ceph_pg pgid;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700186
187 /* copy and validate */
188 if (copy_from_user(&dl, arg, sizeof(dl)))
189 return -EFAULT;
190
191 down_read(&osdc->map_sem);
192 ceph_calc_file_object_mapping(&ci->i_layout, dl.file_offset, &len,
193 &dl.object_no, &dl.object_offset, &olen);
194 dl.file_offset -= dl.object_offset;
195 dl.object_size = ceph_file_layout_object_size(ci->i_layout);
196 dl.block_size = ceph_file_layout_su(ci->i_layout);
197
198 /* block_offset = object_offset % block_size */
199 tmp = dl.object_offset;
200 dl.block_offset = do_div(tmp, dl.block_size);
201
202 snprintf(dl.object_name, sizeof(dl.object_name), "%llx.%08llx",
203 ceph_ino(inode), dl.object_no);
204 ceph_calc_object_layout(&ol, dl.object_name, &ci->i_layout,
205 osdc->osdmap);
206
Sage Weil51042122009-11-04 11:39:12 -0800207 pgid = ol.ol_pgid;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700208 dl.osd = ceph_calc_pg_primary(osdc->osdmap, pgid);
209 if (dl.osd >= 0) {
210 struct ceph_entity_addr *a =
211 ceph_osd_addr(osdc->osdmap, dl.osd);
212 if (a)
213 memcpy(&dl.osd_addr, &a->in_addr, sizeof(dl.osd_addr));
214 } else {
215 memset(&dl.osd_addr, 0, sizeof(dl.osd_addr));
216 }
217 up_read(&osdc->map_sem);
218
219 /* send result back to user */
220 if (copy_to_user(arg, &dl, sizeof(dl)))
221 return -EFAULT;
222
223 return 0;
224}
225
Sage Weil8c6e9222010-04-16 09:53:43 -0700226static long ceph_ioctl_lazyio(struct file *file)
227{
228 struct ceph_file_info *fi = file->private_data;
229 struct inode *inode = file->f_dentry->d_inode;
230 struct ceph_inode_info *ci = ceph_inode(inode);
231
232 if ((fi->fmode & CEPH_FILE_MODE_LAZY) == 0) {
Sage Weilbe655592011-11-30 09:47:09 -0800233 spin_lock(&ci->i_ceph_lock);
Sage Weil8c6e9222010-04-16 09:53:43 -0700234 ci->i_nr_by_mode[fi->fmode]--;
235 fi->fmode |= CEPH_FILE_MODE_LAZY;
236 ci->i_nr_by_mode[fi->fmode]++;
Sage Weilbe655592011-11-30 09:47:09 -0800237 spin_unlock(&ci->i_ceph_lock);
Sage Weil8c6e9222010-04-16 09:53:43 -0700238 dout("ioctl_layzio: file %p marked lazy\n", file);
239
240 ceph_check_caps(ci, 0, NULL);
241 } else {
242 dout("ioctl_layzio: file %p already lazy\n", file);
243 }
244 return 0;
245}
246
Sage Weil4918b6d2011-07-26 11:26:07 -0700247static long ceph_ioctl_syncio(struct file *file)
248{
249 struct ceph_file_info *fi = file->private_data;
250
251 fi->flags |= CEPH_F_SYNC;
252 return 0;
253}
254
Sage Weil8f4e91d2009-10-06 11:31:14 -0700255long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
256{
257 dout("ioctl file %p cmd %u arg %lu\n", file, cmd, arg);
258 switch (cmd) {
259 case CEPH_IOC_GET_LAYOUT:
260 return ceph_ioctl_get_layout(file, (void __user *)arg);
261
262 case CEPH_IOC_SET_LAYOUT:
263 return ceph_ioctl_set_layout(file, (void __user *)arg);
264
Greg Farnum571dba52010-09-24 14:56:40 -0700265 case CEPH_IOC_SET_LAYOUT_POLICY:
266 return ceph_ioctl_set_layout_policy(file, (void __user *)arg);
267
Sage Weil8f4e91d2009-10-06 11:31:14 -0700268 case CEPH_IOC_GET_DATALOC:
269 return ceph_ioctl_get_dataloc(file, (void __user *)arg);
Sage Weil8c6e9222010-04-16 09:53:43 -0700270
271 case CEPH_IOC_LAZYIO:
272 return ceph_ioctl_lazyio(file);
Sage Weil4918b6d2011-07-26 11:26:07 -0700273
274 case CEPH_IOC_SYNCIO:
275 return ceph_ioctl_syncio(file);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700276 }
Greg Farnum571dba52010-09-24 14:56:40 -0700277
Sage Weil8f4e91d2009-10-06 11:31:14 -0700278 return -ENOTTY;
279}