Whamcloud - gitweb
LU-6142 lov: Fix style issues for lov_pack.c
[fs/lustre-release.git] / lustre / lov / lov_pack.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/lov/lov_pack.c
33  *
34  * (Un)packing of OST/MDS requests
35  *
36  * Author: Andreas Dilger <adilger@clusterfs.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_LOV
40
41 #include <lustre_net.h>
42 #include <lustre_swab.h>
43 #include <obd.h>
44 #include <obd_class.h>
45 #include <obd_support.h>
46
47 #include "lov_cl_internal.h"
48 #include "lov_internal.h"
49
50 void lov_dump_lmm_common(int level, void *lmmp)
51 {
52         struct lov_mds_md *lmm = lmmp;
53         struct ost_id oi;
54
55         lmm_oi_le_to_cpu(&oi, &lmm->lmm_oi);
56         CDEBUG(level, "objid "DOSTID", magic 0x%08x, pattern %#x\n",
57                POSTID(&oi), le32_to_cpu(lmm->lmm_magic),
58                le32_to_cpu(lmm->lmm_pattern));
59         CDEBUG(level, "stripe_size %u, stripe_count %u, layout_gen %u\n",
60                le32_to_cpu(lmm->lmm_stripe_size),
61                le16_to_cpu(lmm->lmm_stripe_count),
62                le16_to_cpu(lmm->lmm_layout_gen));
63 }
64
65 static void lov_dump_lmm_objects(int level, struct lov_ost_data *lod,
66                                  int stripe_count)
67 {
68         int i;
69
70         if (stripe_count > LOV_V1_INSANE_STRIPE_COUNT) {
71                 CDEBUG(level, "bad stripe_count %u > max_stripe_count %u\n",
72                        stripe_count, LOV_V1_INSANE_STRIPE_COUNT);
73                 return;
74         }
75
76         for (i = 0; i < stripe_count; ++i, ++lod) {
77                 struct ost_id oi;
78
79                 ostid_le_to_cpu(&lod->l_ost_oi, &oi);
80                 CDEBUG(level, "stripe %u idx %u subobj "DOSTID"\n", i,
81                        le32_to_cpu(lod->l_ost_idx), POSTID(&oi));
82         }
83 }
84
85 void lov_dump_lmm_v1(int level, struct lov_mds_md_v1 *lmm)
86 {
87         lov_dump_lmm_common(level, lmm);
88         lov_dump_lmm_objects(level, lmm->lmm_objects,
89                              le16_to_cpu(lmm->lmm_stripe_count));
90 }
91
92 void lov_dump_lmm_v3(int level, struct lov_mds_md_v3 *lmm)
93 {
94         lov_dump_lmm_common(level, lmm);
95         CDEBUG(level, "pool_name "LOV_POOLNAMEF"\n", lmm->lmm_pool_name);
96         lov_dump_lmm_objects(level, lmm->lmm_objects,
97                              le16_to_cpu(lmm->lmm_stripe_count));
98 }
99
100 void lov_dump_lmm(int level, void *lmm)
101 {
102         int magic;
103
104         magic = le32_to_cpu(((struct lov_mds_md *)lmm)->lmm_magic);
105         switch (magic) {
106         case LOV_MAGIC_V1:
107                 lov_dump_lmm_v1(level, (struct lov_mds_md_v1 *)lmm);
108                 break;
109         case LOV_MAGIC_V3:
110                 lov_dump_lmm_v3(level, (struct lov_mds_md_v3 *)lmm);
111                 break;
112         default:
113                 CDEBUG(level, "unrecognized lmm_magic %x, assuming %x\n",
114                        magic, LOV_MAGIC_V1);
115                 lov_dump_lmm_common(level, lmm);
116                 break;
117         }
118 }
119
120 /**
121  * Pack LOV striping metadata for disk storage format (in little
122  * endian byte order).
123  *
124  * This follows the getxattr() conventions. If \a buf_size is zero
125  * then return the size needed. If \a buf_size is too small then
126  * return -ERANGE. Otherwise return the size of the result.
127  */
128 ssize_t lov_lsm_pack_v1v3(const struct lov_stripe_md *lsm, void *buf,
129                           size_t buf_size)
130 {
131         struct lov_mds_md_v1 *lmmv1 = buf;
132         struct lov_mds_md_v3 *lmmv3 = buf;
133         struct lov_ost_data_v1 *lmm_objects;
134         size_t lmm_size;
135         unsigned int i;
136
137         ENTRY;
138
139         lmm_size = lov_mds_md_size(lsm->lsm_entries[0]->lsme_stripe_count,
140                                    lsm->lsm_magic);
141         if (buf_size == 0)
142                 RETURN(lmm_size);
143
144         if (buf_size < lmm_size)
145                 RETURN(-ERANGE);
146
147         /*
148          * lmmv1 and lmmv3 point to the same struct and have the
149          * same first fields
150          */
151         lmmv1->lmm_magic = cpu_to_le32(lsm->lsm_magic);
152         lmm_oi_cpu_to_le(&lmmv1->lmm_oi, &lsm->lsm_oi);
153         lmmv1->lmm_stripe_size = cpu_to_le32(
154                                 lsm->lsm_entries[0]->lsme_stripe_size);
155         lmmv1->lmm_stripe_count = cpu_to_le16(
156                                 lsm->lsm_entries[0]->lsme_stripe_count);
157         lmmv1->lmm_pattern = cpu_to_le32(lsm->lsm_entries[0]->lsme_pattern);
158         lmmv1->lmm_layout_gen = cpu_to_le16(lsm->lsm_layout_gen);
159
160         if (lsm->lsm_magic == LOV_MAGIC_V3) {
161                 CLASSERT(sizeof(lsm->lsm_entries[0]->lsme_pool_name) ==
162                          sizeof(lmmv3->lmm_pool_name));
163                 strlcpy(lmmv3->lmm_pool_name,
164                         lsm->lsm_entries[0]->lsme_pool_name,
165                         sizeof(lmmv3->lmm_pool_name));
166                 lmm_objects = lmmv3->lmm_objects;
167         } else {
168                 lmm_objects = lmmv1->lmm_objects;
169         }
170
171         if (lsm->lsm_is_released)
172                 RETURN(lmm_size);
173
174         for (i = 0; i < lsm->lsm_entries[0]->lsme_stripe_count; i++) {
175                 struct lov_oinfo *loi = lsm->lsm_entries[0]->lsme_oinfo[i];
176
177                 ostid_cpu_to_le(&loi->loi_oi, &lmm_objects[i].l_ost_oi);
178                 lmm_objects[i].l_ost_gen = cpu_to_le32(loi->loi_ost_gen);
179                 lmm_objects[i].l_ost_idx = cpu_to_le32(loi->loi_ost_idx);
180         }
181
182         RETURN(lmm_size);
183 }
184
185 ssize_t lov_lsm_pack(const struct lov_stripe_md *lsm, void *buf,
186                      size_t buf_size)
187 {
188         struct lov_comp_md_v1 *lcmv1 = buf;
189         struct lov_comp_md_entry_v1 *lcme;
190         struct lov_ost_data_v1 *lmm_objects;
191         size_t lmm_size;
192         unsigned int entry;
193         unsigned int offset;
194         unsigned int size;
195         unsigned int i;
196
197         ENTRY;
198
199         if (lsm->lsm_magic == LOV_MAGIC_V1 || lsm->lsm_magic == LOV_MAGIC_V3)
200                 return lov_lsm_pack_v1v3(lsm, buf, buf_size);
201
202         lmm_size = lov_comp_md_size(lsm);
203         if (buf_size == 0)
204                 RETURN(lmm_size);
205
206         if (buf_size < lmm_size)
207                 RETURN(-ERANGE);
208
209         lcmv1->lcm_magic = cpu_to_le32(lsm->lsm_magic);
210         lcmv1->lcm_size = cpu_to_le32(lmm_size);
211         lcmv1->lcm_layout_gen = cpu_to_le32(lsm->lsm_layout_gen);
212         lcmv1->lcm_flags = cpu_to_le16(lsm->lsm_flags);
213         lcmv1->lcm_mirror_count = cpu_to_le16(lsm->lsm_mirror_count);
214         lcmv1->lcm_entry_count = cpu_to_le16(lsm->lsm_entry_count);
215
216         offset = sizeof(*lcmv1) + sizeof(*lcme) * lsm->lsm_entry_count;
217
218         for (entry = 0; entry < lsm->lsm_entry_count; entry++) {
219                 struct lov_stripe_md_entry *lsme;
220                 struct lov_mds_md *lmm;
221                 __u16 stripe_count;
222
223                 lsme = lsm->lsm_entries[entry];
224                 lcme = &lcmv1->lcm_entries[entry];
225
226                 lcme->lcme_id = cpu_to_le32(lsme->lsme_id);
227                 lcme->lcme_flags = cpu_to_le32(lsme->lsme_flags);
228                 if (lsme->lsme_flags & LCME_FL_NOSYNC)
229                         lcme->lcme_timestamp =
230                                 cpu_to_le64(lsme->lsme_timestamp);
231                 lcme->lcme_extent.e_start =
232                         cpu_to_le64(lsme->lsme_extent.e_start);
233                 lcme->lcme_extent.e_end =
234                         cpu_to_le64(lsme->lsme_extent.e_end);
235                 lcme->lcme_offset = cpu_to_le32(offset);
236
237                 lmm = (struct lov_mds_md *)((char *)lcmv1 + offset);
238                 lmm->lmm_magic = cpu_to_le32(lsme->lsme_magic);
239                 /* lmm->lmm_oi not set */
240                 lmm->lmm_pattern = cpu_to_le32(lsme->lsme_pattern);
241                 lmm->lmm_stripe_size = cpu_to_le32(lsme->lsme_stripe_size);
242                 lmm->lmm_stripe_count = cpu_to_le16(lsme->lsme_stripe_count);
243                 lmm->lmm_layout_gen = cpu_to_le16(lsme->lsme_layout_gen);
244
245                 if (lsme->lsme_magic == LOV_MAGIC_V3) {
246                         struct lov_mds_md_v3 *lmmv3 =
247                                                 (struct lov_mds_md_v3 *)lmm;
248
249                         strlcpy(lmmv3->lmm_pool_name, lsme->lsme_pool_name,
250                                 sizeof(lmmv3->lmm_pool_name));
251                         lmm_objects = lmmv3->lmm_objects;
252                 } else {
253                         lmm_objects =
254                                 ((struct lov_mds_md_v1 *)lmm)->lmm_objects;
255                 }
256
257                 if (lsme_inited(lsme) &&
258                     !(lsme->lsme_pattern & LOV_PATTERN_F_RELEASED))
259                         stripe_count = lsme->lsme_stripe_count;
260                 else
261                         stripe_count = 0;
262
263                 for (i = 0; i < stripe_count; i++) {
264                         struct lov_oinfo *loi = lsme->lsme_oinfo[i];
265
266                         ostid_cpu_to_le(&loi->loi_oi, &lmm_objects[i].l_ost_oi);
267                         lmm_objects[i].l_ost_gen =
268                                         cpu_to_le32(loi->loi_ost_gen);
269                         lmm_objects[i].l_ost_idx =
270                                         cpu_to_le32(loi->loi_ost_idx);
271                 }
272
273                 size = lov_mds_md_size(stripe_count, lsme->lsme_magic);
274                 lcme->lcme_size = cpu_to_le32(size);
275                 offset += size;
276         } /* for each layout component */
277
278         RETURN(lmm_size);
279 }
280
281 /* Find the max stripecount we should use */
282 __u16 lov_get_stripe_count(struct lov_obd *lov, __u32 magic, __u16 stripe_count)
283 {
284         __u32 max_stripes = LOV_MAX_STRIPE_COUNT_OLD;
285
286         if (!stripe_count)
287                 stripe_count = lov->desc.ld_default_stripe_count;
288         if (stripe_count > lov->desc.ld_active_tgt_count)
289                 stripe_count = lov->desc.ld_active_tgt_count;
290         if (!stripe_count)
291                 stripe_count = 1;
292
293         /*
294          * stripe count is based on whether ldiskfs can handle
295          * larger EA sizes
296          */
297         if (lov->lov_ocd.ocd_connect_flags & OBD_CONNECT_MAX_EASIZE &&
298             lov->lov_ocd.ocd_max_easize)
299                 max_stripes = lov_mds_md_max_stripe_count(
300                         lov->lov_ocd.ocd_max_easize, magic);
301
302         if (stripe_count > max_stripes)
303                 stripe_count = max_stripes;
304
305         return stripe_count;
306 }
307
308 int lov_free_memmd(struct lov_stripe_md **lsmp)
309 {
310         struct lov_stripe_md *lsm = *lsmp;
311         int refc;
312
313         *lsmp = NULL;
314         refc = atomic_dec_return(&lsm->lsm_refc);
315         LASSERT(refc >= 0);
316         if (refc == 0)
317                 lsm_free(lsm);
318
319         return refc;
320 }
321
322 /*
323  * Unpack LOV object metadata from disk storage.  It is packed in LE byte
324  * order and is opaque to the networking layer.
325  */
326 struct lov_stripe_md *lov_unpackmd(struct lov_obd *lov, void *buf,
327                                    size_t buf_size)
328 {
329         const struct lsm_operations *op;
330         struct lov_stripe_md *lsm;
331         u32 magic;
332
333         ENTRY;
334
335         if (buf_size < sizeof(magic))
336                 RETURN(ERR_PTR(-EINVAL));
337
338         magic = le32_to_cpu(*(u32 *)buf);
339         op = lsm_op_find(magic);
340         if (!op)
341                 RETURN(ERR_PTR(-EINVAL));
342
343         lsm = op->lsm_unpackmd(lov, buf, buf_size);
344
345         RETURN(lsm);
346 }
347
348 /*
349  * Retrieve object striping information.
350  *
351  * @lump is a pointer to an in-core struct with lmm_ost_count indicating
352  * the maximum number of OST indices which will fit in the user buffer.
353  * lmm_magic must be LOV_USER_MAGIC.
354  *
355  * If @size > 0, User specified limited buffer size, usually the buffer is from
356  * ll_lov_setstripe(), and the buffer can only hold basic layout template info.
357  */
358 int lov_getstripe(const struct lu_env *env, struct lov_object *obj,
359                   struct lov_stripe_md *lsm, struct lov_user_md __user *lump,
360                   size_t size)
361 {
362         /* we use lov_user_md_v3 because it is larger than lov_user_md_v1 */
363         struct lov_mds_md *lmmk, *lmm;
364         struct lov_user_md_v1 lum;
365         size_t lmmk_size;
366         ssize_t lmm_size, lum_size = 0;
367         static bool printed;
368         int rc = 0;
369
370         ENTRY;
371
372         if (lsm->lsm_magic != LOV_MAGIC_V1 && lsm->lsm_magic != LOV_MAGIC_V3 &&
373             lsm->lsm_magic != LOV_MAGIC_COMP_V1) {
374                 CERROR("bad LSM MAGIC: 0x%08X != 0x%08X nor 0x%08X\n",
375                        lsm->lsm_magic, LOV_MAGIC_V1, LOV_MAGIC_V3);
376                 GOTO(out, rc = -EIO);
377         }
378
379         if (!printed) {
380                 LCONSOLE_WARN("%s: using old ioctl(LL_IOC_LOV_GETSTRIPE) on "
381                               DFID", use llapi_layout_get_by_path()\n",
382                               current->comm,
383                               PFID(&obj->lo_cl.co_lu.lo_header->loh_fid));
384                 printed = true;
385         }
386
387         lmmk_size = lov_comp_md_size(lsm);
388
389         OBD_ALLOC_LARGE(lmmk, lmmk_size);
390         if (!lmmk)
391                 GOTO(out, rc = -ENOMEM);
392
393         lmm_size = lov_lsm_pack(lsm, lmmk, lmmk_size);
394         if (lmm_size < 0)
395                 GOTO(out_free, rc = lmm_size);
396
397         if (cpu_to_le32(LOV_MAGIC) != LOV_MAGIC) {
398                 if (lmmk->lmm_magic == cpu_to_le32(LOV_MAGIC_V1) ||
399                     lmmk->lmm_magic == cpu_to_le32(LOV_MAGIC_V3)) {
400                         lustre_swab_lov_mds_md(lmmk);
401                         lustre_swab_lov_user_md_objects(
402                                 (struct lov_user_ost_data *)lmmk->lmm_objects,
403                                 lmmk->lmm_stripe_count);
404                 } else if (lmmk->lmm_magic == cpu_to_le32(LOV_MAGIC_COMP_V1)) {
405                         lustre_swab_lov_comp_md_v1(
406                                         (struct lov_comp_md_v1 *)lmmk);
407                 }
408         }
409
410         /*
411          * Legacy appication passes limited buffer, we need to figure out
412          * the user buffer size by the passed in lmm_stripe_count.
413          */
414         if (copy_from_user(&lum, lump, sizeof(struct lov_user_md_v1)))
415                 GOTO(out_free, rc = -EFAULT);
416
417         if (lum.lmm_magic == LOV_USER_MAGIC_V1 ||
418             lum.lmm_magic == LOV_USER_MAGIC_V3)
419                 lum_size = lov_user_md_size(lum.lmm_stripe_count,
420                                             lum.lmm_magic);
421
422         if (lum_size != 0) {
423                 struct lov_mds_md *comp_md = lmmk;
424
425                 /*
426                  * Legacy app (ADIO for instance) treats the layout as V1/V3
427                  * blindly, we'd return a reasonable V1/V3 for them.
428                  */
429                 if (lmmk->lmm_magic == LOV_MAGIC_COMP_V1) {
430                         struct lov_comp_md_v1 *comp_v1;
431                         struct cl_object *cl_obj;
432                         struct cl_attr attr;
433                         int i;
434
435                         attr.cat_size = 0;
436                         cl_obj = cl_object_top(&obj->lo_cl);
437                         cl_object_attr_lock(cl_obj);
438                         cl_object_attr_get(env, cl_obj, &attr);
439                         cl_object_attr_unlock(cl_obj);
440
441                         /*
442                          * return the last instantiated component if file size
443                          * is non-zero, otherwise, return the last component.
444                          */
445                         comp_v1 = (struct lov_comp_md_v1 *)lmmk;
446                         i = attr.cat_size == 0 ? comp_v1->lcm_entry_count : 0;
447                         for (; i < comp_v1->lcm_entry_count; i++) {
448                                 if (!(comp_v1->lcm_entries[i].lcme_flags &
449                                                 LCME_FL_INIT))
450                                         break;
451                         }
452                         if (i > 0)
453                                 i--;
454                         comp_md = (struct lov_mds_md *)((char *)comp_v1 +
455                                         comp_v1->lcm_entries[i].lcme_offset);
456                 }
457
458                 lmm = comp_md;
459                 lmm_size = lum_size;
460         } else {
461                 lmm = lmmk;
462                 lmm_size = lmmk_size;
463         }
464         /**
465          * User specified limited buffer size, usually the buffer is
466          * from ll_lov_setstripe(), and the buffer can only hold basic
467          * layout template info.
468          */
469         if (size == 0 || size > lmm_size)
470                 size = lmm_size;
471         if (copy_to_user(lump, lmm, size))
472                 GOTO(out_free, rc = -EFAULT);
473
474 out_free:
475         OBD_FREE_LARGE(lmmk, lmmk_size);
476 out:
477         RETURN(rc);
478 }