1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
6 #include "mds_client.h"
8 #include <linux/ceph/striper.h>
15 * get and set the file layout
17 static long ceph_ioctl_get_layout(struct file *file, void __user *arg)
19 struct ceph_inode_info *ci = ceph_inode(file_inode(file));
20 struct ceph_ioctl_layout l;
23 err = ceph_do_getattr(file_inode(file), CEPH_STAT_CAP_LAYOUT, false);
25 l.stripe_unit = ci->i_layout.stripe_unit;
26 l.stripe_count = ci->i_layout.stripe_count;
27 l.object_size = ci->i_layout.object_size;
28 l.data_pool = ci->i_layout.pool_id;
30 if (copy_to_user(arg, &l, sizeof(l)))
37 static long __validate_layout(struct ceph_mds_client *mdsc,
38 struct ceph_ioctl_layout *l)
42 /* validate striping parameters */
43 if ((l->object_size & ~PAGE_MASK) ||
44 (l->stripe_unit & ~PAGE_MASK) ||
45 ((unsigned)l->stripe_unit != 0 &&
46 ((unsigned)l->object_size % (unsigned)l->stripe_unit)))
49 /* make sure it's a valid data pool */
50 mutex_lock(&mdsc->mutex);
52 for (i = 0; i < mdsc->mdsmap->m_num_data_pg_pools; i++)
53 if (mdsc->mdsmap->m_data_pg_pools[i] == l->data_pool) {
57 mutex_unlock(&mdsc->mutex);
64 static long ceph_ioctl_set_layout(struct file *file, void __user *arg)
66 struct inode *inode = file_inode(file);
67 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
68 struct ceph_mds_request *req;
69 struct ceph_ioctl_layout l;
70 struct ceph_inode_info *ci = ceph_inode(file_inode(file));
71 struct ceph_ioctl_layout nl;
74 if (copy_from_user(&l, arg, sizeof(l)))
77 /* validate changed params against current layout */
78 err = ceph_do_getattr(file_inode(file), CEPH_STAT_CAP_LAYOUT, false);
82 memset(&nl, 0, sizeof(nl));
84 nl.stripe_count = l.stripe_count;
86 nl.stripe_count = ci->i_layout.stripe_count;
88 nl.stripe_unit = l.stripe_unit;
90 nl.stripe_unit = ci->i_layout.stripe_unit;
92 nl.object_size = l.object_size;
94 nl.object_size = ci->i_layout.object_size;
96 nl.data_pool = l.data_pool;
98 nl.data_pool = ci->i_layout.pool_id;
100 /* this is obsolete, and always -1 */
101 nl.preferred_osd = -1;
103 err = __validate_layout(mdsc, &nl);
107 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETLAYOUT,
111 req->r_inode = inode;
115 req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL;
117 req->r_args.setlayout.layout.fl_stripe_unit =
118 cpu_to_le32(l.stripe_unit);
119 req->r_args.setlayout.layout.fl_stripe_count =
120 cpu_to_le32(l.stripe_count);
121 req->r_args.setlayout.layout.fl_object_size =
122 cpu_to_le32(l.object_size);
123 req->r_args.setlayout.layout.fl_pg_pool = cpu_to_le32(l.data_pool);
125 err = ceph_mdsc_do_request(mdsc, NULL, req);
126 ceph_mdsc_put_request(req);
131 * Set a layout policy on a directory inode. All items in the tree
132 * rooted at this inode will inherit this layout on creation,
133 * (It doesn't apply retroactively )
134 * unless a subdirectory has its own layout policy.
136 static long ceph_ioctl_set_layout_policy (struct file *file, void __user *arg)
138 struct inode *inode = file_inode(file);
139 struct ceph_mds_request *req;
140 struct ceph_ioctl_layout l;
142 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
144 /* copy and validate */
145 if (copy_from_user(&l, arg, sizeof(l)))
148 err = __validate_layout(mdsc, &l);
152 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETDIRLAYOUT,
157 req->r_inode = inode;
161 req->r_args.setlayout.layout.fl_stripe_unit =
162 cpu_to_le32(l.stripe_unit);
163 req->r_args.setlayout.layout.fl_stripe_count =
164 cpu_to_le32(l.stripe_count);
165 req->r_args.setlayout.layout.fl_object_size =
166 cpu_to_le32(l.object_size);
167 req->r_args.setlayout.layout.fl_pg_pool =
168 cpu_to_le32(l.data_pool);
170 err = ceph_mdsc_do_request(mdsc, inode, req);
171 ceph_mdsc_put_request(req);
176 * Return object name, size/offset information, and location (OSD
177 * number, network address) for a given file offset.
179 static long ceph_ioctl_get_dataloc(struct file *file, void __user *arg)
181 struct ceph_ioctl_dataloc dl;
182 struct inode *inode = file_inode(file);
183 struct ceph_inode_info *ci = ceph_inode(inode);
184 struct ceph_osd_client *osdc =
185 &ceph_sb_to_client(inode->i_sb)->client->osdc;
186 struct ceph_object_locator oloc;
187 CEPH_DEFINE_OID_ONSTACK(oid);
193 /* copy and validate */
194 if (copy_from_user(&dl, arg, sizeof(dl)))
197 down_read(&osdc->lock);
198 ceph_calc_file_object_mapping(&ci->i_layout, dl.file_offset, 1,
199 &dl.object_no, &dl.object_offset, &xlen);
200 dl.file_offset -= dl.object_offset;
201 dl.object_size = ci->i_layout.object_size;
202 dl.block_size = ci->i_layout.stripe_unit;
204 /* block_offset = object_offset % block_size */
205 tmp = dl.object_offset;
206 dl.block_offset = do_div(tmp, dl.block_size);
208 snprintf(dl.object_name, sizeof(dl.object_name), "%llx.%08llx",
209 ceph_ino(inode), dl.object_no);
211 oloc.pool = ci->i_layout.pool_id;
212 oloc.pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
213 ceph_oid_printf(&oid, "%s", dl.object_name);
215 r = ceph_object_locator_to_pg(osdc->osdmap, &oid, &oloc, &pgid);
217 ceph_oloc_destroy(&oloc);
219 up_read(&osdc->lock);
223 dl.osd = ceph_pg_to_acting_primary(osdc->osdmap, &pgid);
225 struct ceph_entity_addr *a =
226 ceph_osd_addr(osdc->osdmap, dl.osd);
228 memcpy(&dl.osd_addr, &a->in_addr, sizeof(dl.osd_addr));
230 memset(&dl.osd_addr, 0, sizeof(dl.osd_addr));
232 up_read(&osdc->lock);
234 /* send result back to user */
235 if (copy_to_user(arg, &dl, sizeof(dl)))
241 static long ceph_ioctl_lazyio(struct file *file)
243 struct ceph_file_info *fi = file->private_data;
244 struct inode *inode = file_inode(file);
245 struct ceph_inode_info *ci = ceph_inode(inode);
247 if ((fi->fmode & CEPH_FILE_MODE_LAZY) == 0) {
248 spin_lock(&ci->i_ceph_lock);
249 fi->fmode |= CEPH_FILE_MODE_LAZY;
250 ci->i_nr_by_mode[ffs(CEPH_FILE_MODE_LAZY)]++;
251 spin_unlock(&ci->i_ceph_lock);
252 dout("ioctl_layzio: file %p marked lazy\n", file);
254 ceph_check_caps(ci, 0, NULL);
256 dout("ioctl_layzio: file %p already lazy\n", file);
261 static long ceph_ioctl_syncio(struct file *file)
263 struct ceph_file_info *fi = file->private_data;
265 fi->flags |= CEPH_F_SYNC;
269 long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
271 dout("ioctl file %p cmd %u arg %lu\n", file, cmd, arg);
273 case CEPH_IOC_GET_LAYOUT:
274 return ceph_ioctl_get_layout(file, (void __user *)arg);
276 case CEPH_IOC_SET_LAYOUT:
277 return ceph_ioctl_set_layout(file, (void __user *)arg);
279 case CEPH_IOC_SET_LAYOUT_POLICY:
280 return ceph_ioctl_set_layout_policy(file, (void __user *)arg);
282 case CEPH_IOC_GET_DATALOC:
283 return ceph_ioctl_get_dataloc(file, (void __user *)arg);
285 case CEPH_IOC_LAZYIO:
286 return ceph_ioctl_lazyio(file);
288 case CEPH_IOC_SYNCIO:
289 return ceph_ioctl_syncio(file);