Whamcloud - gitweb
LU-2675 lod: remove lov and lod stuff from obd.h
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/lov/lov_pack.c
37  *
38  * (Un)packing of OST/MDS requests
39  *
40  * Author: Andreas Dilger <adilger@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_LOV
44 #ifndef __KERNEL__
45 #include <liblustre.h>
46 #endif
47
48 #include <lustre_net.h>
49 #include <obd.h>
50 #include <obd_lov.h>
51 #include <obd_class.h>
52 #include <obd_support.h>
53 #include <lustre/lustre_user.h>
54
55 #include "lov_internal.h"
56
57 void lov_dump_lmm_common(int level, void *lmmp)
58 {
59         struct lov_mds_md *lmm = lmmp;
60         struct ost_id   oi;
61
62         lmm_oi_le_to_cpu(&oi, &lmm->lmm_oi);
63         CDEBUG(level, "objid "DOSTID", magic 0x%08x, pattern %#x\n",
64                POSTID(&oi), le32_to_cpu(lmm->lmm_magic),
65                le32_to_cpu(lmm->lmm_pattern));
66         CDEBUG(level, "stripe_size %u, stripe_count %u, layout_gen %u\n",
67                le32_to_cpu(lmm->lmm_stripe_size),
68                le16_to_cpu(lmm->lmm_stripe_count),
69                le16_to_cpu(lmm->lmm_layout_gen));
70 }
71
72 static void lov_dump_lmm_objects(int level, struct lov_ost_data *lod,
73                                  int stripe_count)
74 {
75         int i;
76
77         if (stripe_count > LOV_V1_INSANE_STRIPE_COUNT) {
78                 CDEBUG(level, "bad stripe_count %u > max_stripe_count %u\n",
79                        stripe_count, LOV_V1_INSANE_STRIPE_COUNT);
80                 return;
81         }
82
83         for (i = 0; i < stripe_count; ++i, ++lod) {
84                 struct ost_id   oi;
85
86                 ostid_le_to_cpu(&lod->l_ost_oi, &oi);
87                 CDEBUG(level, "stripe %u idx %u subobj "DOSTID"\n", i,
88                        le32_to_cpu(lod->l_ost_idx), POSTID(&oi));
89         }
90 }
91
92 void lov_dump_lmm_v1(int level, struct lov_mds_md_v1 *lmm)
93 {
94         lov_dump_lmm_common(level, lmm);
95         lov_dump_lmm_objects(level, lmm->lmm_objects,
96                              le16_to_cpu(lmm->lmm_stripe_count));
97 }
98
99 void lov_dump_lmm_v3(int level, struct lov_mds_md_v3 *lmm)
100 {
101         lov_dump_lmm_common(level, lmm);
102         CDEBUG(level,"pool_name "LOV_POOLNAMEF"\n", lmm->lmm_pool_name);
103         lov_dump_lmm_objects(level, lmm->lmm_objects,
104                              le16_to_cpu(lmm->lmm_stripe_count));
105 }
106
107 void lov_dump_lmm(int level, void *lmm)
108 {
109         int magic;
110
111         magic = le32_to_cpu(((struct lov_mds_md *)lmm)->lmm_magic);
112         switch (magic) {
113         case LOV_MAGIC_V1:
114                 lov_dump_lmm_v1(level, (struct lov_mds_md_v1 *)lmm);
115                 break;
116         case LOV_MAGIC_V3:
117                 lov_dump_lmm_v3(level, (struct lov_mds_md_v3 *)lmm);
118                 break;
119         default:
120                 CDEBUG(level, "unrecognized lmm_magic %x, assuming %x\n",
121                        magic, LOV_MAGIC_V1);
122                 lov_dump_lmm_common(level, lmm);
123                 break;
124         }
125 }
126
127 /* Pack LOV object metadata for disk storage.  It is packed in LE byte
128  * order and is opaque to the networking layer.
129  *
130  * XXX In the future, this will be enhanced to get the EA size from the
131  *     underlying OSC device(s) to get their EA sizes so we can stack
132  *     LOVs properly.  For now lov_mds_md_size() just assumes one obd_id
133  *     per stripe.
134  */
135 int lov_packmd(struct obd_export *exp, struct lov_mds_md **lmmp,
136                struct lov_stripe_md *lsm)
137 {
138         struct obd_device *obd = class_exp2obd(exp);
139         struct lov_obd *lov = &obd->u.lov;
140         struct lov_mds_md_v1 *lmmv1;
141         struct lov_mds_md_v3 *lmmv3;
142         __u16 stripe_count;
143         struct lov_ost_data_v1 *lmm_objects;
144         int lmm_size, lmm_magic;
145         int i;
146         int cplen = 0;
147         ENTRY;
148
149         if (lsm) {
150                 lmm_magic = lsm->lsm_magic;
151         } else {
152                 if (lmmp && *lmmp)
153                         lmm_magic = le32_to_cpu((*lmmp)->lmm_magic);
154                 else
155                         /* lsm == NULL and lmmp == NULL */
156                         lmm_magic = LOV_MAGIC;
157         }
158
159         if ((lmm_magic != LOV_MAGIC_V1) &&
160             (lmm_magic != LOV_MAGIC_V3)) {
161                 CERROR("bad mem LOV MAGIC: 0x%08X != 0x%08X nor 0x%08X\n",
162                         lmm_magic, LOV_MAGIC_V1, LOV_MAGIC_V3);
163                 RETURN(-EINVAL);
164
165         }
166
167         if (lsm) {
168                 /* If we are just sizing the EA, limit the stripe count
169                  * to the actual number of OSTs in this filesystem. */
170                 if (!lmmp) {
171                         stripe_count = lov_get_stripecnt(lov, lmm_magic,
172                                                         lsm->lsm_stripe_count);
173                         lsm->lsm_stripe_count = stripe_count;
174                 } else if (!lsm_is_released(lsm)) {
175                         stripe_count = lsm->lsm_stripe_count;
176                 } else {
177                         stripe_count = 0;
178                 }
179         } else {
180                 /* No need to allocate more than maximum supported stripes.
181                  * Anyway, this is pretty inaccurate since ld_tgt_count now
182                  * represents max index and we should rely on the actual number
183                  * of OSTs instead */
184                 stripe_count = lov_mds_md_stripecnt(lov->lov_ocd.ocd_max_easize,
185                                                     lmm_magic);
186                 if (stripe_count > lov->desc.ld_tgt_count)
187                         stripe_count = lov->desc.ld_tgt_count;
188         }
189
190         /* XXX LOV STACKING call into osc for sizes */
191         lmm_size = lov_mds_md_size(stripe_count, lmm_magic);
192
193         if (!lmmp)
194                 RETURN(lmm_size);
195
196         if (*lmmp && !lsm) {
197                 stripe_count = le16_to_cpu((*lmmp)->lmm_stripe_count);
198                 lmm_size = lov_mds_md_size(stripe_count, lmm_magic);
199                 OBD_FREE_LARGE(*lmmp, lmm_size);
200                 *lmmp = NULL;
201                 RETURN(0);
202         }
203
204         if (!*lmmp) {
205                 OBD_ALLOC_LARGE(*lmmp, lmm_size);
206                 if (!*lmmp)
207                         RETURN(-ENOMEM);
208         }
209
210         CDEBUG(D_INFO, "lov_packmd: LOV_MAGIC 0x%08X, lmm_size = %d \n",
211                lmm_magic, lmm_size);
212
213         lmmv1 = *lmmp;
214         lmmv3 = (struct lov_mds_md_v3 *)*lmmp;
215         if (lmm_magic == LOV_MAGIC_V3)
216                 lmmv3->lmm_magic = cpu_to_le32(LOV_MAGIC_V3);
217         else
218                 lmmv1->lmm_magic = cpu_to_le32(LOV_MAGIC_V1);
219
220         if (!lsm)
221                 RETURN(lmm_size);
222
223         /* lmmv1 and lmmv3 point to the same struct and have the
224          * same first fields
225          */
226         lmm_oi_cpu_to_le(&lmmv1->lmm_oi, &lsm->lsm_oi);
227         lmmv1->lmm_stripe_size = cpu_to_le32(lsm->lsm_stripe_size);
228         lmmv1->lmm_stripe_count = cpu_to_le16(stripe_count);
229         lmmv1->lmm_pattern = cpu_to_le32(lsm->lsm_pattern);
230         lmmv1->lmm_layout_gen = cpu_to_le16(lsm->lsm_layout_gen);
231         if (lsm->lsm_magic == LOV_MAGIC_V3) {
232                 cplen = strlcpy(lmmv3->lmm_pool_name, lsm->lsm_pool_name,
233                                 sizeof(lmmv3->lmm_pool_name));
234                 if (cplen >= sizeof(lmmv3->lmm_pool_name))
235                         RETURN(-E2BIG);
236                 lmm_objects = lmmv3->lmm_objects;
237         } else {
238                 lmm_objects = lmmv1->lmm_objects;
239         }
240
241         for (i = 0; i < stripe_count; i++) {
242                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
243                 /* XXX LOV STACKING call down to osc_packmd() to do packing */
244                 LASSERTF(ostid_id(&loi->loi_oi) != 0, "lmm_oi "DOSTID
245                          " stripe %u/%u idx %u\n", POSTID(&lmmv1->lmm_oi),
246                          i, stripe_count, loi->loi_ost_idx);
247                 ostid_cpu_to_le(&loi->loi_oi, &lmm_objects[i].l_ost_oi);
248                 lmm_objects[i].l_ost_gen = cpu_to_le32(loi->loi_ost_gen);
249                 lmm_objects[i].l_ost_idx = cpu_to_le32(loi->loi_ost_idx);
250         }
251
252         RETURN(lmm_size);
253 }
254
255 /* Find the max stripecount we should use */
256 __u16 lov_get_stripecnt(struct lov_obd *lov, __u32 magic, __u16 stripe_count)
257 {
258         __u32 max_stripes = LOV_MAX_STRIPE_COUNT_OLD;
259
260         if (!stripe_count)
261                 stripe_count = lov->desc.ld_default_stripe_count;
262         if (stripe_count > lov->desc.ld_active_tgt_count)
263                 stripe_count = lov->desc.ld_active_tgt_count;
264         if (!stripe_count)
265                 stripe_count = 1;
266
267         /* stripe count is based on whether ldiskfs can handle
268          * larger EA sizes */
269         if (lov->lov_ocd.ocd_connect_flags & OBD_CONNECT_MAX_EASIZE &&
270             lov->lov_ocd.ocd_max_easize)
271                 max_stripes = lov_mds_md_stripecnt(lov->lov_ocd.ocd_max_easize,
272                                                    magic);
273
274         if (stripe_count > max_stripes)
275                 stripe_count = max_stripes;
276
277         return stripe_count;
278 }
279
280
281 static int lov_verify_lmm(void *lmm, int lmm_bytes, __u16 *stripe_count)
282 {
283         int rc;
284
285         if (lsm_op_find(le32_to_cpu(*(__u32 *)lmm)) == NULL) {
286                 char *buffer;
287                 int sz;
288
289                 CERROR("bad disk LOV MAGIC: 0x%08X; dumping LMM (size=%d):\n",
290                        le32_to_cpu(*(__u32 *)lmm), lmm_bytes);
291                 sz = lmm_bytes * 2 + 1;
292                 OBD_ALLOC_LARGE(buffer, sz);
293                 if (buffer != NULL) {
294                         int i;
295
296                         for (i = 0; i < lmm_bytes; i++)
297                                 sprintf(buffer+2*i, "%.2X", ((char *)lmm)[i]);
298                         buffer[sz - 1] = '\0';
299                         CERROR("%s\n", buffer);
300                         OBD_FREE_LARGE(buffer, sz);
301                 }
302                 return -EINVAL;
303         }
304         rc = lsm_op_find(le32_to_cpu(*(__u32 *)lmm))->lsm_lmm_verify(lmm,
305                                      lmm_bytes, stripe_count);
306         return rc;
307 }
308
309 int lov_alloc_memmd(struct lov_stripe_md **lsmp, __u16 stripe_count,
310                     int pattern, int magic)
311 {
312         int i, lsm_size;
313         ENTRY;
314
315         CDEBUG(D_INFO, "alloc lsm, stripe_count %d\n", stripe_count);
316
317         *lsmp = lsm_alloc_plain(stripe_count, &lsm_size);
318         if (!*lsmp) {
319                 CERROR("can't allocate lsmp stripe_count %d\n", stripe_count);
320                 RETURN(-ENOMEM);
321         }
322
323         cfs_atomic_set(&(*lsmp)->lsm_refc, 1);
324         spin_lock_init(&(*lsmp)->lsm_lock);
325         (*lsmp)->lsm_magic = magic;
326         (*lsmp)->lsm_stripe_count = stripe_count;
327         (*lsmp)->lsm_maxbytes = LUSTRE_STRIPE_MAXBYTES * stripe_count;
328         (*lsmp)->lsm_pattern = pattern;
329         (*lsmp)->lsm_pool_name[0] = '\0';
330         (*lsmp)->lsm_layout_gen = 0;
331         if (stripe_count > 0)
332                 (*lsmp)->lsm_oinfo[0]->loi_ost_idx = ~0;
333
334         for (i = 0; i < stripe_count; i++)
335                 loi_init((*lsmp)->lsm_oinfo[i]);
336
337         RETURN(lsm_size);
338 }
339
340 int lov_free_memmd(struct lov_stripe_md **lsmp)
341 {
342         struct lov_stripe_md *lsm = *lsmp;
343         int refc;
344
345         *lsmp = NULL;
346         LASSERT(cfs_atomic_read(&lsm->lsm_refc) > 0);
347         if ((refc = cfs_atomic_dec_return(&lsm->lsm_refc)) == 0) {
348                 LASSERT(lsm_op_find(lsm->lsm_magic) != NULL);
349                 lsm_op_find(lsm->lsm_magic)->lsm_free(lsm);
350         }
351         return refc;
352 }
353
354
355 /* Unpack LOV object metadata from disk storage.  It is packed in LE byte
356  * order and is opaque to the networking layer.
357  */
358 int lov_unpackmd(struct obd_export *exp,  struct lov_stripe_md **lsmp,
359                  struct lov_mds_md *lmm, int lmm_bytes)
360 {
361         struct obd_device *obd = class_exp2obd(exp);
362         struct lov_obd *lov = &obd->u.lov;
363         int rc = 0, lsm_size;
364         __u16 stripe_count;
365         __u32 magic;
366         __u32 pattern;
367         ENTRY;
368
369         /* If passed an MDS struct use values from there, otherwise defaults */
370         if (lmm) {
371                 rc = lov_verify_lmm(lmm, lmm_bytes, &stripe_count);
372                 if (rc)
373                         RETURN(rc);
374                 magic = le32_to_cpu(lmm->lmm_magic);
375                 pattern = le32_to_cpu(lmm->lmm_pattern);
376         } else {
377                 magic = LOV_MAGIC;
378                 stripe_count = lov_get_stripecnt(lov, magic, 0);
379                 pattern = LOV_PATTERN_RAID0;
380         }
381
382         /* If we aren't passed an lsmp struct, we just want the size */
383         if (!lsmp) {
384                 /* XXX LOV STACKING call into osc for sizes */
385                 LBUG();
386                 RETURN(lov_stripe_md_size(stripe_count));
387         }
388         /* If we are passed an allocated struct but nothing to unpack, free */
389         if (*lsmp && !lmm) {
390                 lov_free_memmd(lsmp);
391                 RETURN(0);
392         }
393
394         lsm_size = lov_alloc_memmd(lsmp, stripe_count, pattern, magic);
395         if (lsm_size < 0)
396                 RETURN(lsm_size);
397
398         /* If we are passed a pointer but nothing to unpack, we only alloc */
399         if (!lmm)
400                 RETURN(lsm_size);
401
402         LASSERT(lsm_op_find(magic) != NULL);
403         rc = lsm_op_find(magic)->lsm_unpackmd(lov, *lsmp, lmm);
404         if (rc) {
405                 lov_free_memmd(lsmp);
406                 RETURN(rc);
407         }
408
409         RETURN(lsm_size);
410 }
411
412 static inline int lov_lum_swab_if_needed(struct lov_user_md_v3 *lumv3,
413                                          int *lmm_magic,
414                                          struct lov_user_md *lum)
415 {
416         if (lum && copy_from_user(lumv3, lum, sizeof(struct lov_user_md_v1)))
417                 return -EFAULT;
418
419         *lmm_magic = lumv3->lmm_magic;
420
421         if (*lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
422                 lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lumv3);
423                 *lmm_magic = LOV_USER_MAGIC_V1;
424         } else if (*lmm_magic == LOV_USER_MAGIC_V3) {
425                 if (lum && copy_from_user(lumv3, lum, sizeof(*lumv3)))
426                         return -EFAULT;
427         } else if (*lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
428                 if (lum && copy_from_user(lumv3, lum, sizeof(*lumv3)))
429                         return -EFAULT;
430                 lustre_swab_lov_user_md_v3(lumv3);
431                 *lmm_magic = LOV_USER_MAGIC_V3;
432         } else if (*lmm_magic != LOV_USER_MAGIC_V1) {
433                 CDEBUG(D_IOCTL,
434                        "bad userland LOV MAGIC: %#08x != %#08x nor %#08x\n",
435                        *lmm_magic, LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3);
436                        return -EINVAL;
437         }
438         return 0;
439 }
440
441 static int __lov_setstripe(struct obd_export *exp, int max_lmm_size,
442                            struct lov_stripe_md **lsmp,
443                            struct lov_user_md *lump)
444 {
445         struct obd_device *obd = class_exp2obd(exp);
446         struct lov_obd *lov = &obd->u.lov;
447         char buffer[sizeof(struct lov_user_md_v3)];
448         struct lov_user_md_v3 *lumv3 = (struct lov_user_md_v3 *)&buffer[0];
449         struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&buffer[0];
450         int lmm_magic;
451         __u16 stripe_count;
452         int rc;
453         int cplen = 0;
454         ENTRY;
455
456         rc = lov_lum_swab_if_needed(lumv3, &lmm_magic, lump);
457         if (rc)
458                 RETURN(rc);
459
460         /* in the rest of the tests, as *lumv1 and lumv3 have the same
461          * fields, we use lumv1 to avoid code duplication */
462
463         if (lumv1->lmm_pattern == 0) {
464                 lumv1->lmm_pattern = lov->desc.ld_pattern ?
465                         lov->desc.ld_pattern : LOV_PATTERN_RAID0;
466         }
467
468         if (lov_pattern(lumv1->lmm_pattern) != LOV_PATTERN_RAID0) {
469                 CDEBUG(D_IOCTL, "bad userland stripe pattern: %#x\n",
470                        lumv1->lmm_pattern);
471                 RETURN(-EINVAL);
472         }
473
474         /* 64kB is the largest common page size we see (ia64), and matches the
475          * check in lfs */
476         if (lumv1->lmm_stripe_size & (LOV_MIN_STRIPE_SIZE - 1)) {
477                 CDEBUG(D_IOCTL, "stripe size %u not multiple of %u, fixing\n",
478                        lumv1->lmm_stripe_size, LOV_MIN_STRIPE_SIZE);
479                 lumv1->lmm_stripe_size = LOV_MIN_STRIPE_SIZE;
480         }
481
482         if ((lumv1->lmm_stripe_offset >= lov->desc.ld_tgt_count) &&
483             (lumv1->lmm_stripe_offset !=
484              (typeof(lumv1->lmm_stripe_offset))(-1))) {
485                 CDEBUG(D_IOCTL, "stripe offset %u > number of OSTs %u\n",
486                        lumv1->lmm_stripe_offset, lov->desc.ld_tgt_count);
487                 RETURN(-EINVAL);
488         }
489         stripe_count = lov_get_stripecnt(lov, lmm_magic,
490                                          lumv1->lmm_stripe_count);
491
492         if (max_lmm_size) {
493                 int max_stripes = (max_lmm_size -
494                                    lov_mds_md_size(0, lmm_magic)) /
495                                    sizeof(struct lov_ost_data_v1);
496                 if (unlikely(max_stripes < stripe_count)) {
497                         CDEBUG(D_IOCTL, "stripe count reset from %d to %d\n",
498                                stripe_count, max_stripes);
499                         stripe_count = max_stripes;
500                 }
501         }
502
503         if (lmm_magic == LOV_USER_MAGIC_V3) {
504                 struct pool_desc *pool;
505
506                 /* In the function below, .hs_keycmp resolves to
507                  * pool_hashkey_keycmp() */
508                 /* coverity[overrun-buffer-val] */
509                 pool = lov_find_pool(lov, lumv3->lmm_pool_name);
510                 if (pool != NULL) {
511                         if (lumv3->lmm_stripe_offset !=
512                             (typeof(lumv3->lmm_stripe_offset))(-1)) {
513                                 rc = lov_check_index_in_pool(
514                                         lumv3->lmm_stripe_offset, pool);
515                                 if (rc < 0) {
516                                         lov_pool_putref(pool);
517                                         RETURN(-EINVAL);
518                                 }
519                         }
520
521                         if (stripe_count > pool_tgt_count(pool))
522                                 stripe_count = pool_tgt_count(pool);
523
524                         lov_pool_putref(pool);
525                 }
526         }
527
528         if (lumv1->lmm_pattern & LOV_PATTERN_F_RELEASED)
529                 stripe_count = 0;
530
531         rc = lov_alloc_memmd(lsmp, stripe_count, lumv1->lmm_pattern, lmm_magic);
532
533         if (rc >= 0) {
534                 (*lsmp)->lsm_oinfo[0]->loi_ost_idx = lumv1->lmm_stripe_offset;
535                 (*lsmp)->lsm_stripe_size = lumv1->lmm_stripe_size;
536                 if (lmm_magic == LOV_USER_MAGIC_V3) {
537                         cplen = strlcpy((*lsmp)->lsm_pool_name,
538                                         lumv3->lmm_pool_name,
539                                         sizeof((*lsmp)->lsm_pool_name));
540                         if (cplen >= sizeof((*lsmp)->lsm_pool_name))
541                                 rc = -E2BIG;
542                 }
543                 rc = 0;
544         }
545
546         RETURN(rc);
547 }
548
549 /* Configure object striping information on a new file.
550  *
551  * @lmmu is a pointer to a user struct with one or more of the fields set to
552  * indicate the application preference: lmm_stripe_count, lmm_stripe_size,
553  * lmm_stripe_offset, and lmm_stripe_pattern.  lmm_magic must be LOV_MAGIC.
554  * @lsmp is a pointer to an in-core stripe MD that needs to be filled in.
555  */
556 int lov_setstripe(struct obd_export *exp, int max_lmm_size,
557                   struct lov_stripe_md **lsmp, struct lov_user_md *lump)
558 {
559         int rc;
560         mm_segment_t seg;
561
562         seg = get_fs();
563         set_fs(KERNEL_DS);
564
565         rc = __lov_setstripe(exp, max_lmm_size, lsmp, lump);
566         set_fs(seg);
567         RETURN(rc);
568 }
569
570 int lov_setea(struct obd_export *exp, struct lov_stripe_md **lsmp,
571               struct lov_user_md *lump)
572 {
573         int i;
574         int rc;
575         struct obd_export *oexp;
576         struct lov_obd *lov = &exp->exp_obd->u.lov;
577         obd_id last_id = 0;
578         struct lov_user_ost_data_v1 *lmm_objects;
579
580         ENTRY;
581
582         if (lump->lmm_magic == LOV_USER_MAGIC_V3)
583                 lmm_objects = ((struct lov_user_md_v3 *)lump)->lmm_objects;
584         else
585                 lmm_objects = lump->lmm_objects;
586
587         for (i = 0; i < lump->lmm_stripe_count; i++) {
588                 __u32 len = sizeof(last_id);
589                 oexp = lov->lov_tgts[lmm_objects[i].l_ost_idx]->ltd_exp;
590                 rc = obd_get_info(NULL, oexp, sizeof(KEY_LAST_ID), KEY_LAST_ID,
591                                   &len, &last_id, NULL);
592                 if (rc)
593                         RETURN(rc);
594                 if (ostid_id(&lmm_objects[i].l_ost_oi) > last_id) {
595                         CERROR("Setting EA for object > than last id on"
596                                " ost idx %d "DOSTID" > "LPD64" \n",
597                                lmm_objects[i].l_ost_idx,
598                                POSTID(&lmm_objects[i].l_ost_oi), last_id);
599                         RETURN(-EINVAL);
600                 }
601         }
602
603         rc = lov_setstripe(exp, 0, lsmp, lump);
604         if (rc)
605                 RETURN(rc);
606
607         for (i = 0; i < lump->lmm_stripe_count; i++) {
608                 (*lsmp)->lsm_oinfo[i]->loi_ost_idx =
609                         lmm_objects[i].l_ost_idx;
610                 (*lsmp)->lsm_oinfo[i]->loi_oi = lmm_objects[i].l_ost_oi;
611         }
612         RETURN(0);
613 }
614
615
616 /* Retrieve object striping information.
617  *
618  * @lump is a pointer to an in-core struct with lmm_ost_count indicating
619  * the maximum number of OST indices which will fit in the user buffer.
620  * lmm_magic must be LOV_USER_MAGIC.
621  */
622 int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm,
623                   struct lov_user_md *lump)
624 {
625         /*
626          * XXX huge struct allocated on stack.
627          */
628         /* we use lov_user_md_v3 because it is larger than lov_user_md_v1 */
629         struct lov_user_md_v3 lum;
630         struct lov_mds_md *lmmk = NULL;
631         int rc, lmm_size;
632         int lum_size;
633         ENTRY;
634
635         if (!lsm)
636                 RETURN(-ENODATA);
637
638         /* we only need the header part from user space to get lmm_magic and
639          * lmm_stripe_count, (the header part is common to v1 and v3) */
640         lum_size = sizeof(struct lov_user_md_v1);
641         if (copy_from_user(&lum, lump, lum_size))
642                 GOTO(out_set, rc = -EFAULT);
643         else if ((lum.lmm_magic != LOV_USER_MAGIC) &&
644                  (lum.lmm_magic != LOV_USER_MAGIC_V3))
645                 GOTO(out_set, rc = -EINVAL);
646
647         if (lum.lmm_stripe_count &&
648             (lum.lmm_stripe_count < lsm->lsm_stripe_count)) {
649                 /* Return right size of stripe to user */
650                 lum.lmm_stripe_count = lsm->lsm_stripe_count;
651                 rc = copy_to_user(lump, &lum, lum_size);
652                 GOTO(out_set, rc = -EOVERFLOW);
653         }
654         rc = lov_packmd(exp, &lmmk, lsm);
655         if (rc < 0)
656                 GOTO(out_set, rc);
657         lmm_size = rc;
658         rc = 0;
659
660         /* FIXME: Bug 1185 - copy fields properly when structs change */
661         /* struct lov_user_md_v3 and struct lov_mds_md_v3 must be the same */
662         CLASSERT(sizeof(lum) == sizeof(struct lov_mds_md_v3));
663         CLASSERT(sizeof lum.lmm_objects[0] == sizeof lmmk->lmm_objects[0]);
664
665         if ((cpu_to_le32(LOV_MAGIC) != LOV_MAGIC) &&
666             ((lmmk->lmm_magic == cpu_to_le32(LOV_MAGIC_V1)) ||
667             (lmmk->lmm_magic == cpu_to_le32(LOV_MAGIC_V3)))) {
668                 lustre_swab_lov_mds_md(lmmk);
669                 lustre_swab_lov_user_md_objects(
670                                 (struct lov_user_ost_data*)lmmk->lmm_objects,
671                                 lmmk->lmm_stripe_count);
672         }
673         if (lum.lmm_magic == LOV_USER_MAGIC) {
674                 /* User request for v1, we need skip lmm_pool_name */
675                 if (lmmk->lmm_magic == LOV_MAGIC_V3) {
676                         memmove(((struct lov_mds_md_v1 *)lmmk)->lmm_objects,
677                                 ((struct lov_mds_md_v3 *)lmmk)->lmm_objects,
678                                 lmmk->lmm_stripe_count *
679                                 sizeof(struct lov_ost_data_v1));
680                         lmm_size -= LOV_MAXPOOLNAME;
681                 }
682         } else {
683                 /* if v3 we just have to update the lum_size */
684                 lum_size = sizeof(struct lov_user_md_v3);
685         }
686
687         /* User wasn't expecting this many OST entries */
688         if (lum.lmm_stripe_count == 0)
689                 lmm_size = lum_size;
690         else if (lum.lmm_stripe_count < lmmk->lmm_stripe_count)
691                 GOTO(out_set, rc = -EOVERFLOW);
692         /*
693          * Have a difference between lov_mds_md & lov_user_md.
694          * So we have to re-order the data before copy to user.
695          */
696         lum.lmm_stripe_count = lmmk->lmm_stripe_count;
697         lum.lmm_layout_gen = lmmk->lmm_layout_gen;
698         ((struct lov_user_md *)lmmk)->lmm_layout_gen = lum.lmm_layout_gen;
699         ((struct lov_user_md *)lmmk)->lmm_stripe_count = lum.lmm_stripe_count;
700         if (copy_to_user(lump, lmmk, lmm_size))
701                 rc = -EFAULT;
702
703         obd_free_diskmd(exp, &lmmk);
704 out_set:
705         RETURN(rc);
706 }