blob: 6e061bf62ad4772682373d8d414c63786db9677f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds96c57ad2014-04-12 15:39:53 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil8f4e91d2009-10-06 11:31:14 -07003#include <linux/in.h>
4
Sage Weil8f4e91d2009-10-06 11:31:14 -07005#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07006#include "mds_client.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07007#include "ioctl.h"
Ilya Dryomov08c1ac52018-02-17 10:41:20 +01008#include <linux/ceph/striper.h>
Sage Weil8f4e91d2009-10-06 11:31:14 -07009
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{
Al Viro496ad9a2013-01-23 17:07:38 -050019 struct ceph_inode_info *ci = ceph_inode(file_inode(file));
Sage Weil8f4e91d2009-10-06 11:31:14 -070020 struct ceph_ioctl_layout l;
21 int err;
22
Yan, Zheng508b32d2014-09-16 21:46:17 +080023 err = ceph_do_getattr(file_inode(file), CEPH_STAT_CAP_LAYOUT, false);
Sage Weil8f4e91d2009-10-06 11:31:14 -070024 if (!err) {
Yan, Zheng76271512016-02-03 21:24:49 +080025 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;
Jeff Layton24c149a2017-01-12 14:42:40 -050029 l.preferred_osd = -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
Sage Weile49bf4c2012-05-07 15:34:35 -070042 /* validate striping parameters */
43 if ((l->object_size & ~PAGE_MASK) ||
44 (l->stripe_unit & ~PAGE_MASK) ||
Yan, Zheng0bc62282014-10-14 15:38:01 +080045 ((unsigned)l->stripe_unit != 0 &&
Sage Weil45f2e082012-08-21 12:11:51 -070046 ((unsigned)l->object_size % (unsigned)l->stripe_unit)))
Sage Weile49bf4c2012-05-07 15:34:35 -070047 return -EINVAL;
48
49 /* make sure it's a valid data pool */
50 mutex_lock(&mdsc->mutex);
51 err = -EINVAL;
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) {
54 err = 0;
55 break;
56 }
57 mutex_unlock(&mdsc->mutex);
58 if (err)
59 return err;
60
61 return 0;
62}
63
Sage Weil8f4e91d2009-10-06 11:31:14 -070064static long ceph_ioctl_set_layout(struct file *file, void __user *arg)
65{
Al Viro496ad9a2013-01-23 17:07:38 -050066 struct inode *inode = file_inode(file);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070067 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weil8f4e91d2009-10-06 11:31:14 -070068 struct ceph_mds_request *req;
69 struct ceph_ioctl_layout l;
Al Viro496ad9a2013-01-23 17:07:38 -050070 struct ceph_inode_info *ci = ceph_inode(file_inode(file));
Greg Farnuma35eca92011-08-25 12:43:06 -070071 struct ceph_ioctl_layout nl;
Sage Weile49bf4c2012-05-07 15:34:35 -070072 int err;
Sage Weil8f4e91d2009-10-06 11:31:14 -070073
Sage Weil8f4e91d2009-10-06 11:31:14 -070074 if (copy_from_user(&l, arg, sizeof(l)))
75 return -EFAULT;
76
Greg Farnuma35eca92011-08-25 12:43:06 -070077 /* validate changed params against current layout */
Yan, Zheng508b32d2014-09-16 21:46:17 +080078 err = ceph_do_getattr(file_inode(file), CEPH_STAT_CAP_LAYOUT, false);
Sage Weil702aeb12012-05-14 12:34:38 -070079 if (err)
Greg Farnuma35eca92011-08-25 12:43:06 -070080 return err;
81
Sage Weil702aeb12012-05-14 12:34:38 -070082 memset(&nl, 0, sizeof(nl));
Greg Farnuma35eca92011-08-25 12:43:06 -070083 if (l.stripe_count)
84 nl.stripe_count = l.stripe_count;
Sage Weil702aeb12012-05-14 12:34:38 -070085 else
Yan, Zheng76271512016-02-03 21:24:49 +080086 nl.stripe_count = ci->i_layout.stripe_count;
Greg Farnuma35eca92011-08-25 12:43:06 -070087 if (l.stripe_unit)
88 nl.stripe_unit = l.stripe_unit;
Sage Weil702aeb12012-05-14 12:34:38 -070089 else
Yan, Zheng76271512016-02-03 21:24:49 +080090 nl.stripe_unit = ci->i_layout.stripe_unit;
Greg Farnuma35eca92011-08-25 12:43:06 -070091 if (l.object_size)
92 nl.object_size = l.object_size;
Sage Weil702aeb12012-05-14 12:34:38 -070093 else
Yan, Zheng76271512016-02-03 21:24:49 +080094 nl.object_size = ci->i_layout.object_size;
Greg Farnuma35eca92011-08-25 12:43:06 -070095 if (l.data_pool)
96 nl.data_pool = l.data_pool;
Sage Weil702aeb12012-05-14 12:34:38 -070097 else
Yan, Zheng76271512016-02-03 21:24:49 +080098 nl.data_pool = ci->i_layout.pool_id;
Sage Weil702aeb12012-05-14 12:34:38 -070099
100 /* this is obsolete, and always -1 */
Jeff Layton24c149a2017-01-12 14:42:40 -0500101 nl.preferred_osd = -1;
Greg Farnuma35eca92011-08-25 12:43:06 -0700102
Sage Weile49bf4c2012-05-07 15:34:35 -0700103 err = __validate_layout(mdsc, &nl);
104 if (err)
105 return err;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700106
107 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETLAYOUT,
108 USE_AUTH_MDS);
109 if (IS_ERR(req))
110 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -0700111 req->r_inode = inode;
112 ihold(inode);
Yan, Zheng3bd58142014-04-27 09:17:45 +0800113 req->r_num_caps = 1;
114
Sage Weil8f4e91d2009-10-06 11:31:14 -0700115 req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL;
116
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);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700124
Sage Weil752c8bd2013-02-05 13:52:29 -0800125 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700126 ceph_mdsc_put_request(req);
127 return err;
128}
129
130/*
Greg Farnum571dba52010-09-24 14:56:40 -0700131 * 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.
135 */
136static long ceph_ioctl_set_layout_policy (struct file *file, void __user *arg)
137{
Al Viro496ad9a2013-01-23 17:07:38 -0500138 struct inode *inode = file_inode(file);
Greg Farnum571dba52010-09-24 14:56:40 -0700139 struct ceph_mds_request *req;
140 struct ceph_ioctl_layout l;
Sage Weile49bf4c2012-05-07 15:34:35 -0700141 int err;
Greg Farnum571dba52010-09-24 14:56:40 -0700142 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
143
144 /* copy and validate */
145 if (copy_from_user(&l, arg, sizeof(l)))
146 return -EFAULT;
147
Sage Weile49bf4c2012-05-07 15:34:35 -0700148 err = __validate_layout(mdsc, &l);
149 if (err)
150 return err;
Greg Farnum571dba52010-09-24 14:56:40 -0700151
152 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETDIRLAYOUT,
153 USE_AUTH_MDS);
154
155 if (IS_ERR(req))
156 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -0700157 req->r_inode = inode;
158 ihold(inode);
Yan, Zheng3bd58142014-04-27 09:17:45 +0800159 req->r_num_caps = 1;
Greg Farnum571dba52010-09-24 14:56:40 -0700160
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);
Greg Farnum571dba52010-09-24 14:56:40 -0700169
170 err = ceph_mdsc_do_request(mdsc, inode, req);
171 ceph_mdsc_put_request(req);
172 return err;
173}
174
175/*
Sage Weil8f4e91d2009-10-06 11:31:14 -0700176 * Return object name, size/offset information, and location (OSD
177 * number, network address) for a given file offset.
178 */
179static long ceph_ioctl_get_dataloc(struct file *file, void __user *arg)
180{
181 struct ceph_ioctl_dataloc dl;
Al Viro496ad9a2013-01-23 17:07:38 -0500182 struct inode *inode = file_inode(file);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700183 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700184 struct ceph_osd_client *osdc =
185 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Ilya Dryomov7c13cb62014-01-27 17:40:19 +0200186 struct ceph_object_locator oloc;
Ilya Dryomov281dbe52016-07-26 15:22:35 +0200187 CEPH_DEFINE_OID_ONSTACK(oid);
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100188 u32 xlen;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700189 u64 tmp;
Sage Weil51042122009-11-04 11:39:12 -0800190 struct ceph_pg pgid;
Sage Weil457712a2012-09-24 21:04:57 -0700191 int r;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700192
193 /* copy and validate */
194 if (copy_from_user(&dl, arg, sizeof(dl)))
195 return -EFAULT;
196
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200197 down_read(&osdc->lock);
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100198 ceph_calc_file_object_mapping(&ci->i_layout, dl.file_offset, 1,
199 &dl.object_no, &dl.object_offset, &xlen);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700200 dl.file_offset -= dl.object_offset;
Yan, Zheng76271512016-02-03 21:24:49 +0800201 dl.object_size = ci->i_layout.object_size;
202 dl.block_size = ci->i_layout.stripe_unit;
Sage Weil8f4e91d2009-10-06 11:31:14 -0700203
204 /* block_offset = object_offset % block_size */
205 tmp = dl.object_offset;
206 dl.block_offset = do_div(tmp, dl.block_size);
207
208 snprintf(dl.object_name, sizeof(dl.object_name), "%llx.%08llx",
209 ceph_ino(inode), dl.object_no);
Alex Elder41766f82013-03-01 18:00:15 -0600210
Yan, Zheng76271512016-02-03 21:24:49 +0800211 oloc.pool = ci->i_layout.pool_id;
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800212 oloc.pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200213 ceph_oid_printf(&oid, "%s", dl.object_name);
Ilya Dryomov7c13cb62014-01-27 17:40:19 +0200214
Ilya Dryomovd9591f52016-04-28 16:07:22 +0200215 r = ceph_object_locator_to_pg(osdc->osdmap, &oid, &oloc, &pgid);
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800216
217 ceph_oloc_destroy(&oloc);
majianpeng2fbcbff2013-08-02 18:14:48 +0800218 if (r < 0) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200219 up_read(&osdc->lock);
majianpeng2fbcbff2013-08-02 18:14:48 +0800220 return r;
221 }
Sage Weil8f4e91d2009-10-06 11:31:14 -0700222
Ilya Dryomovf81f1632016-04-28 16:07:23 +0200223 dl.osd = ceph_pg_to_acting_primary(osdc->osdmap, &pgid);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700224 if (dl.osd >= 0) {
225 struct ceph_entity_addr *a =
226 ceph_osd_addr(osdc->osdmap, dl.osd);
227 if (a)
228 memcpy(&dl.osd_addr, &a->in_addr, sizeof(dl.osd_addr));
229 } else {
230 memset(&dl.osd_addr, 0, sizeof(dl.osd_addr));
231 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200232 up_read(&osdc->lock);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700233
234 /* send result back to user */
235 if (copy_to_user(arg, &dl, sizeof(dl)))
236 return -EFAULT;
237
238 return 0;
239}
240
Sage Weil8c6e9222010-04-16 09:53:43 -0700241static long ceph_ioctl_lazyio(struct file *file)
242{
243 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -0500244 struct inode *inode = file_inode(file);
Sage Weil8c6e9222010-04-16 09:53:43 -0700245 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng719a2512020-03-05 20:21:00 +0800246 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weil8c6e9222010-04-16 09:53:43 -0700247
248 if ((fi->fmode & CEPH_FILE_MODE_LAZY) == 0) {
Sage Weilbe655592011-11-30 09:47:09 -0800249 spin_lock(&ci->i_ceph_lock);
Sage Weil8c6e9222010-04-16 09:53:43 -0700250 fi->fmode |= CEPH_FILE_MODE_LAZY;
Yan, Zheng774a6a12016-06-06 16:01:39 +0800251 ci->i_nr_by_mode[ffs(CEPH_FILE_MODE_LAZY)]++;
Yan, Zheng719a2512020-03-05 20:21:00 +0800252 __ceph_touch_fmode(ci, mdsc, fi->fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800253 spin_unlock(&ci->i_ceph_lock);
Sage Weil8c6e9222010-04-16 09:53:43 -0700254 dout("ioctl_layzio: file %p marked lazy\n", file);
255
256 ceph_check_caps(ci, 0, NULL);
257 } else {
258 dout("ioctl_layzio: file %p already lazy\n", file);
259 }
260 return 0;
261}
262
Sage Weil4918b6d2011-07-26 11:26:07 -0700263static long ceph_ioctl_syncio(struct file *file)
264{
265 struct ceph_file_info *fi = file->private_data;
266
267 fi->flags |= CEPH_F_SYNC;
268 return 0;
269}
270
Sage Weil8f4e91d2009-10-06 11:31:14 -0700271long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
272{
273 dout("ioctl file %p cmd %u arg %lu\n", file, cmd, arg);
274 switch (cmd) {
275 case CEPH_IOC_GET_LAYOUT:
276 return ceph_ioctl_get_layout(file, (void __user *)arg);
277
278 case CEPH_IOC_SET_LAYOUT:
279 return ceph_ioctl_set_layout(file, (void __user *)arg);
280
Greg Farnum571dba52010-09-24 14:56:40 -0700281 case CEPH_IOC_SET_LAYOUT_POLICY:
282 return ceph_ioctl_set_layout_policy(file, (void __user *)arg);
283
Sage Weil8f4e91d2009-10-06 11:31:14 -0700284 case CEPH_IOC_GET_DATALOC:
285 return ceph_ioctl_get_dataloc(file, (void __user *)arg);
Sage Weil8c6e9222010-04-16 09:53:43 -0700286
287 case CEPH_IOC_LAZYIO:
288 return ceph_ioctl_lazyio(file);
Sage Weil4918b6d2011-07-26 11:26:07 -0700289
290 case CEPH_IOC_SYNCIO:
291 return ceph_ioctl_syncio(file);
Sage Weil8f4e91d2009-10-06 11:31:14 -0700292 }
Greg Farnum571dba52010-09-24 14:56:40 -0700293
Sage Weil8f4e91d2009-10-06 11:31:14 -0700294 return -ENOTTY;
295}