ceph: fix pr_fmt() redefinition
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / fs / ceph / ioctl.c
CommitLineData
96c57ade 1#include <linux/ceph/ceph_debug.h>
8f4e91de
SW
2#include <linux/in.h>
3
8f4e91de 4#include "super.h"
3d14c5d2 5#include "mds_client.h"
3d14c5d2 6#include "ioctl.h"
8f4e91de
SW
7
8
9/*
10 * ioctls
11 */
12
13/*
14 * get and set the file layout
15 */
16static long ceph_ioctl_get_layout(struct file *file, void __user *arg)
17{
496ad9aa 18 struct ceph_inode_info *ci = ceph_inode(file_inode(file));
8f4e91de
SW
19 struct ceph_ioctl_layout l;
20 int err;
21
496ad9aa 22 err = ceph_do_getattr(file_inode(file), CEPH_STAT_CAP_LAYOUT);
8f4e91de
SW
23 if (!err) {
24 l.stripe_unit = ceph_file_layout_su(ci->i_layout);
25 l.stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
26 l.object_size = ceph_file_layout_object_size(ci->i_layout);
27 l.data_pool = le32_to_cpu(ci->i_layout.fl_pg_pool);
3469ac1a 28 l.preferred_osd = (s32)-1;
8f4e91de
SW
29 if (copy_to_user(arg, &l, sizeof(l)))
30 return -EFAULT;
31 }
32
33 return err;
34}
35
e49bf4c5
SW
36static long __validate_layout(struct ceph_mds_client *mdsc,
37 struct ceph_ioctl_layout *l)
38{
39 int i, err;
40
e49bf4c5
SW
41 /* validate striping parameters */
42 if ((l->object_size & ~PAGE_MASK) ||
43 (l->stripe_unit & ~PAGE_MASK) ||
45f2e081
SW
44 (l->stripe_unit != 0 &&
45 ((unsigned)l->object_size % (unsigned)l->stripe_unit)))
e49bf4c5
SW
46 return -EINVAL;
47
48 /* make sure it's a valid data pool */
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 return 0;
61}
62
8f4e91de
SW
63static long ceph_ioctl_set_layout(struct file *file, void __user *arg)
64{
496ad9aa 65 struct inode *inode = file_inode(file);
3d14c5d2 66 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
8f4e91de
SW
67 struct ceph_mds_request *req;
68 struct ceph_ioctl_layout l;
496ad9aa 69 struct ceph_inode_info *ci = ceph_inode(file_inode(file));
a35eca95 70 struct ceph_ioctl_layout nl;
e49bf4c5 71 int err;
8f4e91de 72
8f4e91de
SW
73 if (copy_from_user(&l, arg, sizeof(l)))
74 return -EFAULT;
75
a35eca95 76 /* validate changed params against current layout */
496ad9aa 77 err = ceph_do_getattr(file_inode(file), CEPH_STAT_CAP_LAYOUT);
702aeb1f 78 if (err)
a35eca95
GF
79 return err;
80
702aeb1f 81 memset(&nl, 0, sizeof(nl));
a35eca95
GF
82 if (l.stripe_count)
83 nl.stripe_count = l.stripe_count;
702aeb1f
SW
84 else
85 nl.stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
a35eca95
GF
86 if (l.stripe_unit)
87 nl.stripe_unit = l.stripe_unit;
702aeb1f
SW
88 else
89 nl.stripe_unit = ceph_file_layout_su(ci->i_layout);
a35eca95
GF
90 if (l.object_size)
91 nl.object_size = l.object_size;
702aeb1f
SW
92 else
93 nl.object_size = ceph_file_layout_object_size(ci->i_layout);
a35eca95
GF
94 if (l.data_pool)
95 nl.data_pool = l.data_pool;
702aeb1f
SW
96 else
97 nl.data_pool = ceph_file_layout_pg_pool(ci->i_layout);
98
99 /* this is obsolete, and always -1 */
100 nl.preferred_osd = le64_to_cpu(-1);
a35eca95 101
e49bf4c5
SW
102 err = __validate_layout(mdsc, &nl);
103 if (err)
104 return err;
8f4e91de
SW
105
106 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETLAYOUT,
107 USE_AUTH_MDS);
108 if (IS_ERR(req))
109 return PTR_ERR(req);
70b666c3
SW
110 req->r_inode = inode;
111 ihold(inode);
8f4e91de
SW
112 req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL;
113
114 req->r_args.setlayout.layout.fl_stripe_unit =
115 cpu_to_le32(l.stripe_unit);
116 req->r_args.setlayout.layout.fl_stripe_count =
117 cpu_to_le32(l.stripe_count);
118 req->r_args.setlayout.layout.fl_object_size =
119 cpu_to_le32(l.object_size);
120 req->r_args.setlayout.layout.fl_pg_pool = cpu_to_le32(l.data_pool);
8f4e91de 121
752c8bdc 122 err = ceph_mdsc_do_request(mdsc, NULL, req);
8f4e91de
SW
123 ceph_mdsc_put_request(req);
124 return err;
125}
126
571dba52
GF
127/*
128 * 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{
496ad9aa 135 struct inode *inode = file_inode(file);
571dba52
GF
136 struct ceph_mds_request *req;
137 struct ceph_ioctl_layout l;
e49bf4c5 138 int err;
571dba52
GF
139 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
e49bf4c5
SW
145 err = __validate_layout(mdsc, &l);
146 if (err)
147 return err;
571dba52
GF
148
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);
70b666c3
SW
154 req->r_inode = inode;
155 ihold(inode);
571dba52
GF
156
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);
571dba52
GF
165
166 err = ceph_mdsc_do_request(mdsc, inode, req);
167 ceph_mdsc_put_request(req);
168 return err;
169}
170
8f4e91de
SW
171/*
172 * 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;
496ad9aa 178 struct inode *inode = file_inode(file);
8f4e91de 179 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2
YS
180 struct ceph_osd_client *osdc =
181 &ceph_sb_to_client(inode->i_sb)->client->osdc;
7c13cb64
ID
182 struct ceph_object_locator oloc;
183 struct ceph_object_id oid;
8f4e91de
SW
184 u64 len = 1, olen;
185 u64 tmp;
51042122 186 struct ceph_pg pgid;
457712a0 187 int r;
8f4e91de
SW
188
189 /* copy and validate */
190 if (copy_from_user(&dl, arg, sizeof(dl)))
191 return -EFAULT;
192
193 down_read(&osdc->map_sem);
e8afad65 194 r = ceph_calc_file_object_mapping(&ci->i_layout, dl.file_offset, len,
457712a0
SW
195 &dl.object_no, &dl.object_offset,
196 &olen);
494ddd11 197 if (r < 0) {
198 up_read(&osdc->map_sem);
457712a0 199 return -EIO;
494ddd11 200 }
8f4e91de
SW
201 dl.file_offset -= dl.object_offset;
202 dl.object_size = ceph_file_layout_object_size(ci->i_layout);
203 dl.block_size = ceph_file_layout_su(ci->i_layout);
204
205 /* block_offset = object_offset % block_size */
206 tmp = dl.object_offset;
207 dl.block_offset = do_div(tmp, dl.block_size);
208
209 snprintf(dl.object_name, sizeof(dl.object_name), "%llx.%08llx",
210 ceph_ino(inode), dl.object_no);
41766f87 211
7c13cb64
ID
212 oloc.pool = ceph_file_layout_pg_pool(ci->i_layout);
213 ceph_oid_set_name(&oid, dl.object_name);
214
215 r = ceph_oloc_oid_to_pg(osdc->osdmap, &oloc, &oid, &pgid);
2fbcbff1 216 if (r < 0) {
217 up_read(&osdc->map_sem);
218 return r;
219 }
8f4e91de 220
8f4e91de
SW
221 dl.osd = ceph_calc_pg_primary(osdc->osdmap, pgid);
222 if (dl.osd >= 0) {
223 struct ceph_entity_addr *a =
224 ceph_osd_addr(osdc->osdmap, dl.osd);
225 if (a)
226 memcpy(&dl.osd_addr, &a->in_addr, sizeof(dl.osd_addr));
227 } else {
228 memset(&dl.osd_addr, 0, sizeof(dl.osd_addr));
229 }
230 up_read(&osdc->map_sem);
231
232 /* send result back to user */
233 if (copy_to_user(arg, &dl, sizeof(dl)))
234 return -EFAULT;
235
236 return 0;
237}
238
8c6e9229
SW
239static long ceph_ioctl_lazyio(struct file *file)
240{
241 struct ceph_file_info *fi = file->private_data;
496ad9aa 242 struct inode *inode = file_inode(file);
8c6e9229
SW
243 struct ceph_inode_info *ci = ceph_inode(inode);
244
245 if ((fi->fmode & CEPH_FILE_MODE_LAZY) == 0) {
be655596 246 spin_lock(&ci->i_ceph_lock);
8c6e9229
SW
247 ci->i_nr_by_mode[fi->fmode]--;
248 fi->fmode |= CEPH_FILE_MODE_LAZY;
249 ci->i_nr_by_mode[fi->fmode]++;
be655596 250 spin_unlock(&ci->i_ceph_lock);
8c6e9229
SW
251 dout("ioctl_layzio: file %p marked lazy\n", file);
252
253 ceph_check_caps(ci, 0, NULL);
254 } else {
255 dout("ioctl_layzio: file %p already lazy\n", file);
256 }
257 return 0;
258}
259
4918b6d1
SW
260static long ceph_ioctl_syncio(struct file *file)
261{
262 struct ceph_file_info *fi = file->private_data;
263
264 fi->flags |= CEPH_F_SYNC;
265 return 0;
266}
267
8f4e91de
SW
268long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
269{
270 dout("ioctl file %p cmd %u arg %lu\n", file, cmd, arg);
271 switch (cmd) {
272 case CEPH_IOC_GET_LAYOUT:
273 return ceph_ioctl_get_layout(file, (void __user *)arg);
274
275 case CEPH_IOC_SET_LAYOUT:
276 return ceph_ioctl_set_layout(file, (void __user *)arg);
277
571dba52
GF
278 case CEPH_IOC_SET_LAYOUT_POLICY:
279 return ceph_ioctl_set_layout_policy(file, (void __user *)arg);
280
8f4e91de
SW
281 case CEPH_IOC_GET_DATALOC:
282 return ceph_ioctl_get_dataloc(file, (void __user *)arg);
8c6e9229
SW
283
284 case CEPH_IOC_LAZYIO:
285 return ceph_ioctl_lazyio(file);
4918b6d1
SW
286
287 case CEPH_IOC_SYNCIO:
288 return ceph_ioctl_syncio(file);
8f4e91de 289 }
571dba52 290
8f4e91de
SW
291 return -ENOTTY;
292}