Whamcloud - gitweb
7d1d552f55b770811e1337752abb555060074709
[fs/lustre-release.git] / lustre / lov / lov_pack.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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_v1(int level, struct lov_mds_md_v1 *lmm)
58 {
59         struct lov_ost_data_v1 *lod;
60         int i;
61         
62         CDEBUG(level, "objid "LPX64", magic 0x%08x, pattern %#x\n",
63                le64_to_cpu(lmm->lmm_object_id), le32_to_cpu(lmm->lmm_magic),
64                le32_to_cpu(lmm->lmm_pattern));
65         CDEBUG(level,"stripe_size %u, stripe_count %u\n",
66                le32_to_cpu(lmm->lmm_stripe_size),
67                le32_to_cpu(lmm->lmm_stripe_count));
68
69         if (le32_to_cpu(lmm->lmm_stripe_count) <= LOV_V1_INSANE_STRIPE_COUNT) {
70                 for (i = 0, lod = lmm->lmm_objects;
71                      i < (int)le32_to_cpu(lmm->lmm_stripe_count); i++, lod++)
72                          CDEBUG(level,
73                                 "stripe %u idx %u subobj "LPX64"/"LPX64"\n",
74                                 i, le32_to_cpu(lod->l_ost_idx),
75                                 le64_to_cpu(lod->l_object_gr),
76                                 le64_to_cpu(lod->l_object_id));
77         } else {
78                 CDEBUG(level, "bad stripe_count %u > max_stripe_count %u\n",
79                        le32_to_cpu(lmm->lmm_stripe_count),
80                        LOV_V1_INSANE_STRIPE_COUNT);
81         }
82 }
83
84 void lov_dump_lmm_join(int level, struct lov_mds_md_join *lmmj)
85 {
86
87         CDEBUG(level, "objid "LPX64", magic 0x%08X, pattern %#X\n",
88                le64_to_cpu(lmmj->lmmj_md.lmm_object_id),
89                le32_to_cpu(lmmj->lmmj_md.lmm_magic),
90                le32_to_cpu(lmmj->lmmj_md.lmm_pattern));
91         CDEBUG(level,"stripe_size %u, stripe_count %u extent_count %u \n",
92                le32_to_cpu(lmmj->lmmj_md.lmm_stripe_size),
93                le32_to_cpu(lmmj->lmmj_md.lmm_stripe_count),
94                le32_to_cpu(lmmj->lmmj_extent_count));
95 }
96
97 void lov_dump_lmm_v3(int level, struct lov_mds_md_v3 *lmm)
98 {
99         struct lov_ost_data_v1 *lod;
100         int i;
101
102         CDEBUG(level, "objid "LPX64", magic 0x%08x, pattern %#x\n",
103                le64_to_cpu(lmm->lmm_object_id), le32_to_cpu(lmm->lmm_magic),
104                le32_to_cpu(lmm->lmm_pattern));
105         CDEBUG(level,"stripe_size %u, stripe_count %u\n",
106                le32_to_cpu(lmm->lmm_stripe_size),
107                le32_to_cpu(lmm->lmm_stripe_count));
108         CDEBUG(level,"pool_name "POOLNAMEF"\n", lmm->lmm_pool_name);
109
110         if (le32_to_cpu(lmm->lmm_stripe_count) <= LOV_V1_INSANE_STRIPE_COUNT) {
111                 for (i = 0, lod = lmm->lmm_objects;
112                      i < (int)le32_to_cpu(lmm->lmm_stripe_count); i++, lod++)
113                          CDEBUG(level,
114                                 "stripe %u idx %u subobj "LPX64"/"LPX64"\n",
115                                 i, le32_to_cpu(lod->l_ost_idx),
116                                 le64_to_cpu(lod->l_object_gr),
117                                 le64_to_cpu(lod->l_object_id));
118         } else {
119                 CDEBUG(level, "bad stripe_count %u > max_stripe_count %u\n",
120                        le32_to_cpu(lmm->lmm_stripe_count),
121                        LOV_V1_INSANE_STRIPE_COUNT);
122         }
123 }
124
125 void lov_dump_lmm(int level, void *lmm)
126 {
127         int magic;
128
129         magic = ((struct lov_mds_md_v1 *)(lmm))->lmm_magic;
130         switch (magic) {
131         case LOV_MAGIC_V1:
132                 return lov_dump_lmm_v1(level, (struct lov_mds_md_v1 *)(lmm));
133         case LOV_MAGIC_JOIN:
134                 return lov_dump_lmm_join(level, (struct lov_mds_md_join *)(lmm));
135         case LOV_MAGIC_V3:
136                 return lov_dump_lmm_v3(level, (struct lov_mds_md_v3 *)(lmm));
137         default:
138                 CERROR("Cannot recognize lmm_magic %x", magic);
139         }
140         return;
141 }
142
143 #define LMM_ASSERT(test)                                                \
144 do {                                                                    \
145         if (!(test)) lov_dump_lmm(D_ERROR, lmm);                        \
146         LASSERT(test); /* so we know what assertion failed */           \
147 } while(0)
148
149 /* Pack LOV object metadata for disk storage.  It is packed in LE byte
150  * order and is opaque to the networking layer.
151  *
152  * XXX In the future, this will be enhanced to get the EA size from the
153  *     underlying OSC device(s) to get their EA sizes so we can stack
154  *     LOVs properly.  For now lov_mds_md_size() just assumes one obd_id
155  *     per stripe.
156  */
157 int lov_packmd(struct obd_export *exp, struct lov_mds_md **lmmp,
158                struct lov_stripe_md *lsm)
159 {
160         struct obd_device *obd = class_exp2obd(exp);
161         struct lov_obd *lov = &obd->u.lov;
162         struct lov_mds_md_v1 *lmmv1;
163         struct lov_mds_md_v3 *lmmv3;
164         int stripe_count;
165         struct lov_ost_data_v1 *lmm_objects;
166         int lmm_size, lmm_magic;
167         int i;
168         ENTRY;
169
170         if (lsm) {
171                 lmm_magic = lsm->lsm_magic;
172
173                 /* If we are just sizing the EA, limit the stripe count
174                  * to the actual number of OSTs in this filesystem. */
175                 if (!lmmp) {
176                         stripe_count = lov_get_stripecnt(lov,
177                                                          lsm->lsm_stripe_count);
178                         lsm->lsm_stripe_count = stripe_count;
179                 } else {
180                         stripe_count = lsm->lsm_stripe_count;
181                 }
182         } else {
183                 /* No needs to allocated more than LOV_MAX_STRIPE_COUNT.
184                  * Anyway, this is pretty inaccurate since ld_tgt_count now
185                  * represents max index and we should rely on the actual number
186                  * of OSTs instead */
187                 stripe_count = min((__u32)LOV_MAX_STRIPE_COUNT,
188                                    lov->desc.ld_tgt_count);
189
190                 if (lmmp && *lmmp)
191                         lmm_magic = le32_to_cpu((*lmmp)->lmm_magic);
192                 else
193                         /* lsm == NULL and lmmp == NULL */
194                         lmm_magic = LOV_MAGIC;
195         }
196
197         if ((lmm_magic != LOV_MAGIC_V1) &&
198             (lmm_magic != LOV_MAGIC_V3)) {
199                 CERROR("bad mem LOV MAGIC: 0x%08X != 0x%08X nor 0x%08X\n",
200                         lmm_magic, LOV_MAGIC_V1, LOV_MAGIC_V3);
201                 RETURN(-EINVAL);
202
203         }
204
205         /* XXX LOV STACKING call into osc for sizes */
206         lmm_size = lov_mds_md_size(stripe_count, lmm_magic);
207
208         if (!lmmp)
209                 RETURN(lmm_size);
210
211         if (*lmmp && !lsm) {
212                 stripe_count = le32_to_cpu((*lmmp)->lmm_stripe_count);
213                 lmm_size = lov_mds_md_size(stripe_count, lmm_magic);
214                 OBD_FREE(*lmmp, lmm_size);
215                 *lmmp = NULL;
216                 RETURN(0);
217         }
218
219         if (!*lmmp) {
220                 OBD_ALLOC(*lmmp, lmm_size);
221                 if (!*lmmp)
222                         RETURN(-ENOMEM);
223         }
224
225         CDEBUG(D_INFO, "lov_packmd: LOV_MAGIC 0x%08X, lmm_size = %d \n",
226                lmm_magic, lmm_size);
227
228         lmmv1 = *lmmp;
229         lmmv3 = (struct lov_mds_md_v3 *)*lmmp;
230         if (lmm_magic == LOV_MAGIC_V3)
231                 lmmv3->lmm_magic = cpu_to_le32(LOV_MAGIC_V3);
232         else
233                 lmmv1->lmm_magic = cpu_to_le32(LOV_MAGIC_V1);
234
235         if (!lsm)
236                 RETURN(lmm_size);
237
238         /* lmmv1 and lmmv3 point to the same struct and have the
239          * same first fields
240          */
241         lmmv1->lmm_object_id = cpu_to_le64(lsm->lsm_object_id);
242         lmmv1->lmm_object_gr = cpu_to_le64(lsm->lsm_object_gr);
243         lmmv1->lmm_stripe_size = cpu_to_le32(lsm->lsm_stripe_size);
244         lmmv1->lmm_stripe_count = cpu_to_le32(stripe_count);
245         lmmv1->lmm_pattern = cpu_to_le32(lsm->lsm_pattern);
246         if (lsm->lsm_magic == LOV_MAGIC_V3) {
247                 strncpy(lmmv3->lmm_pool_name, lsm->lsm_pool_name, MAXPOOLNAME);
248                 lmm_objects = lmmv3->lmm_objects;
249         } else {
250                 lmm_objects = lmmv1->lmm_objects;
251         }
252
253         for (i = 0; i < stripe_count; i++) {
254                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
255
256                 /* XXX LOV STACKING call down to osc_packmd() to do packing */
257                 LASSERTF(loi->loi_id, "lmm_oid "LPU64" stripe %u/%u idx %u\n",
258                          lmmv1->lmm_object_id, i, stripe_count, loi->loi_ost_idx);
259                 lmm_objects[i].l_object_id = cpu_to_le64(loi->loi_id);
260                 lmm_objects[i].l_object_gr = cpu_to_le64(loi->loi_gr);
261                 lmm_objects[i].l_ost_gen = cpu_to_le32(loi->loi_ost_gen);
262                 lmm_objects[i].l_ost_idx = cpu_to_le32(loi->loi_ost_idx);
263         }
264
265         RETURN(lmm_size);
266 }
267
268 /* Find the max stripecount we should use */
269 int lov_get_stripecnt(struct lov_obd *lov, __u32 stripe_count)
270 {
271         if (!stripe_count)
272                 stripe_count = lov->desc.ld_default_stripe_count;
273         if (stripe_count > lov->desc.ld_active_tgt_count)
274                 stripe_count = lov->desc.ld_active_tgt_count;
275         if (!stripe_count)
276                 stripe_count = 1;
277         /* for now, we limit the stripe count directly, when bug 4424 is
278          * fixed this needs to be somewhat dynamic based on whether ext3
279          * can handle larger EA sizes. */
280         if (stripe_count > LOV_MAX_STRIPE_COUNT)
281                 stripe_count = LOV_MAX_STRIPE_COUNT;
282
283         return stripe_count;
284 }
285
286
287 static int lov_verify_lmm(void *lmm, int lmm_bytes, int *stripe_count)
288 {
289         int rc;
290
291         if (lsm_op_find(le32_to_cpu(*(__u32 *)lmm)) == NULL) {
292                 char *buffer;
293                 int sz;
294
295                 CERROR("bad disk LOV MAGIC: 0x%08X; dumping LMM (size=%d):\n",
296                        le32_to_cpu(*(__u32 *)lmm), lmm_bytes);
297                 sz = lmm_bytes * 2 + 1;
298                 OBD_ALLOC(buffer, sz);
299                 if (buffer != NULL) {
300                         int i;
301
302                         for (i = 0; i < lmm_bytes; i++)
303                                 sprintf(buffer+2*i, "%.2X", ((char *)lmm)[i]);
304                         buffer[sz] = '\0';
305                         CERROR("%s\n", buffer);
306                         OBD_FREE(buffer, sz);
307                 }
308                 return -EINVAL;
309         }
310         rc = lsm_op_find(le32_to_cpu(*(__u32 *)lmm))->lsm_lmm_verify(lmm,
311                                      lmm_bytes, stripe_count);
312         return rc;
313 }
314
315 int lov_alloc_memmd(struct lov_stripe_md **lsmp, int stripe_count,
316                       int pattern, int magic)
317 {
318         int i, lsm_size;
319         ENTRY;
320
321         CDEBUG(D_INFO, "alloc lsm, stripe_count %d\n", stripe_count);
322
323         *lsmp = lsm_alloc_plain(stripe_count, &lsm_size);
324         if (!*lsmp) {
325                 CERROR("can't allocate lsmp stripe_count %d\n", stripe_count);
326                 RETURN(-ENOMEM);
327         }
328
329         spin_lock_init(&(*lsmp)->lsm_lock);
330         (*lsmp)->lsm_magic = magic;
331         (*lsmp)->lsm_stripe_count = stripe_count;
332         (*lsmp)->lsm_maxbytes = LUSTRE_STRIPE_MAXBYTES * stripe_count;
333         (*lsmp)->lsm_pattern = pattern;
334         (*lsmp)->lsm_pool_name[0] = '\0';
335         (*lsmp)->lsm_oinfo[0]->loi_ost_idx = ~0;
336
337         for (i = 0; i < stripe_count; i++)
338                 loi_init((*lsmp)->lsm_oinfo[i]);
339
340         RETURN(lsm_size);
341 }
342
343 void lov_free_memmd(struct lov_stripe_md **lsmp)
344 {
345         struct lov_stripe_md *lsm = *lsmp;
346
347         LASSERT(lsm_op_find(lsm->lsm_magic) != NULL);
348         lsm_op_find(lsm->lsm_magic)->lsm_free(lsm);
349
350         *lsmp = NULL;
351 }
352
353
354 /* Unpack LOV object metadata from disk storage.  It is packed in LE byte
355  * order and is opaque to the networking layer.
356  */
357 int lov_unpackmd(struct obd_export *exp,  struct lov_stripe_md **lsmp,
358                  struct lov_mds_md *lmm, int lmm_bytes)
359 {
360         struct obd_device *obd = class_exp2obd(exp);
361         struct lov_obd *lov = &obd->u.lov;
362         int rc = 0, stripe_count, lsm_size;
363         __u32 magic;
364         ENTRY;
365
366         /* If passed an MDS struct use values from there, otherwise defaults */
367         if (lmm) {
368                 rc = lov_verify_lmm(lmm, lmm_bytes, &stripe_count);
369                 if (rc)
370                         RETURN(rc);
371                 magic = le32_to_cpu(lmm->lmm_magic);
372         } else {
373                 stripe_count = lov_get_stripecnt(lov, 0);
374                 magic = LOV_MAGIC;
375         }
376
377         /* If we aren't passed an lsmp struct, we just want the size */
378         if (!lsmp) {
379                 /* XXX LOV STACKING call into osc for sizes */
380                 LBUG();
381                 RETURN(lov_stripe_md_size(stripe_count));
382         }
383         /* If we are passed an allocated struct but nothing to unpack, free */
384         if (*lsmp && !lmm) {
385                 lov_free_memmd(lsmp);
386                 RETURN(0);
387         }
388
389         lsm_size = lov_alloc_memmd(lsmp, stripe_count, LOV_PATTERN_RAID0,
390                                    magic);
391         if (lsm_size < 0)
392                 RETURN(lsm_size);
393
394         /* If we are passed a pointer but nothing to unpack, we only alloc */
395         if (!lmm)
396                 RETURN(lsm_size);
397
398         LASSERT(lsm_op_find(magic) != NULL);
399         rc = lsm_op_find(magic)->lsm_unpackmd(lov, *lsmp, lmm);
400         if (rc) {
401                 lov_free_memmd(lsmp);
402                 RETURN(rc);
403         }
404
405         RETURN(lsm_size);
406 }
407
408 static int __lov_setstripe(struct obd_export *exp, struct lov_stripe_md **lsmp,
409                            struct lov_user_md *lump)
410 {
411         struct obd_device *obd = class_exp2obd(exp);
412         struct lov_obd *lov = &obd->u.lov;
413         struct lov_user_md_v3 lumv3;
414         struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
415         int lmm_magic;
416         int stripe_count;
417         int rc;
418         ENTRY;
419
420         rc = copy_from_user(&lumv3, lump, sizeof(struct lov_user_md_v1));
421         if (rc)
422                 RETURN(-EFAULT);
423
424         lmm_magic = lumv1->lmm_magic;
425
426         if (lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
427                 lustre_swab_lov_user_md_v1(lumv1);
428                 lmm_magic = LOV_USER_MAGIC_V1;
429         } else if (lmm_magic == LOV_USER_MAGIC_V3) {
430                 rc = copy_from_user(&lumv3, lump, sizeof(lumv3));
431                 if (rc)
432                         RETURN(-EFAULT);
433         } else if (lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
434                 rc = copy_from_user(&lumv3, lump, sizeof(lumv3));
435                 if (rc)
436                         RETURN(-EFAULT);
437                 lustre_swab_lov_user_md_v3(&lumv3);
438                 lmm_magic = LOV_USER_MAGIC_V3;
439         } else if (lmm_magic != LOV_USER_MAGIC_V1) {
440                 CDEBUG(D_IOCTL,
441                        "bad userland LOV MAGIC: %#08x != %#08x nor %#08x\n",
442                        lmm_magic, LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3);
443                        RETURN(-EINVAL);
444         }
445
446         /* in the rest of the tests, as *lumv1 and lumv3 have the same
447          * fields, we use lumv1 to avoid code duplication */
448
449         if (lumv1->lmm_pattern == 0) {
450                 lumv1->lmm_pattern = lov->desc.ld_pattern ?
451                         lov->desc.ld_pattern : LOV_PATTERN_RAID0;
452         }
453
454         if (lumv1->lmm_pattern != LOV_PATTERN_RAID0) {
455                 CDEBUG(D_IOCTL, "bad userland stripe pattern: %#x\n",
456                        lumv1->lmm_pattern);
457                 RETURN(-EINVAL);
458         }
459
460         /* 64kB is the largest common page size we see (ia64), and matches the
461          * check in lfs */
462         if (lumv1->lmm_stripe_size & (LOV_MIN_STRIPE_SIZE - 1)) {
463                 CDEBUG(D_IOCTL, "stripe size %u not multiple of %u, fixing\n",
464                        lumv1->lmm_stripe_size, LOV_MIN_STRIPE_SIZE);
465                 lumv1->lmm_stripe_size = LOV_MIN_STRIPE_SIZE;
466         }
467
468         if ((lumv1->lmm_stripe_offset >= lov->desc.ld_tgt_count) &&
469             (lumv1->lmm_stripe_offset !=
470              (typeof(lumv1->lmm_stripe_offset))(-1))) {
471                 CDEBUG(D_IOCTL, "stripe offset %u > number of OSTs %u\n",
472                        lumv1->lmm_stripe_offset, lov->desc.ld_tgt_count);
473                 RETURN(-EINVAL);
474         }
475         stripe_count = lov_get_stripecnt(lov, lumv1->lmm_stripe_count);
476
477         if (lmm_magic == LOV_USER_MAGIC_V3) {
478                 struct pool_desc *pool;
479
480                 pool = lov_find_pool(lov, lumv3.lmm_pool_name);
481                 if (pool == NULL)
482                         RETURN(-EINVAL);
483
484                 if (lumv3.lmm_stripe_offset !=
485                     (typeof(lumv3.lmm_stripe_offset))(-1)) {
486                         rc = lov_check_index_in_pool(lumv3.lmm_stripe_offset,
487                                                      pool);
488                         if (rc < 0)
489                                 RETURN(-EINVAL);
490                 }
491
492                 if (stripe_count > pool_tgt_count(pool))
493                         stripe_count = pool_tgt_count(pool);
494         }
495
496         if ((__u64)lumv1->lmm_stripe_size * stripe_count > ~0UL) {
497                 CDEBUG(D_IOCTL, "stripe width %ux%i exeeds %lu bytes\n",
498                        lumv1->lmm_stripe_size, (int)lumv1->lmm_stripe_count,
499                        ~0UL);
500                 RETURN(-EINVAL);
501         }
502
503         rc = lov_alloc_memmd(lsmp, stripe_count, lumv1->lmm_pattern, lmm_magic);
504
505         if (rc >= 0) {
506                 (*lsmp)->lsm_oinfo[0]->loi_ost_idx = lumv1->lmm_stripe_offset;
507                 (*lsmp)->lsm_stripe_size = lumv1->lmm_stripe_size;
508                 if (lmm_magic == LOV_USER_MAGIC_V3)
509                         strncpy((*lsmp)->lsm_pool_name, lumv3.lmm_pool_name,
510                                 MAXPOOLNAME);
511                 rc = 0;
512         }
513
514         RETURN(rc);
515 }
516
517 /* Configure object striping information on a new file.
518  *
519  * @lmmu is a pointer to a user struct with one or more of the fields set to
520  * indicate the application preference: lmm_stripe_count, lmm_stripe_size,
521  * lmm_stripe_offset, and lmm_stripe_pattern.  lmm_magic must be LOV_MAGIC.
522  * @lsmp is a pointer to an in-core stripe MD that needs to be filled in.
523  */
524 int lov_setstripe(struct obd_export *exp, struct lov_stripe_md **lsmp,
525                   struct lov_user_md *lump)
526 {
527         int rc;
528         mm_segment_t seg;
529
530         seg = get_fs();
531         set_fs(KERNEL_DS);
532
533         rc = __lov_setstripe(exp, lsmp, lump);
534         set_fs(seg);
535         RETURN(rc);
536 }
537
538 int lov_setea(struct obd_export *exp, struct lov_stripe_md **lsmp,
539               struct lov_user_md *lump)
540 {
541         int i;
542         int rc;
543         struct obd_export *oexp;
544         struct lov_obd *lov = &exp->exp_obd->u.lov;
545         obd_id last_id = 0;
546         struct lov_user_ost_data_v1 *lmm_objects;
547
548         ENTRY;
549
550         if (lump->lmm_magic == LOV_USER_MAGIC_V3)
551                 lmm_objects = ((struct lov_user_md_v3 *)lump)->lmm_objects;
552         else
553                 lmm_objects = lump->lmm_objects;
554
555         for (i = 0; i < lump->lmm_stripe_count; i++) {
556                 __u32 len = sizeof(last_id);
557                 oexp = lov->lov_tgts[lmm_objects[i].l_ost_idx]->ltd_exp;
558                 rc = obd_get_info(oexp, sizeof(KEY_LAST_ID), KEY_LAST_ID,
559                                   &len, &last_id, NULL);
560                 if (rc)
561                         RETURN(rc);
562                 if (lmm_objects[i].l_object_id > last_id) {
563                         CERROR("Setting EA for object > than last id on "
564                                "ost idx %d "LPD64" > "LPD64" \n",
565                                lmm_objects[i].l_ost_idx,
566                                lmm_objects[i].l_object_id, last_id);
567                         RETURN(-EINVAL);
568                 }
569         }
570
571         rc = lov_setstripe(exp, lsmp, lump);
572         if (rc)
573                 RETURN(rc);
574
575         for (i = 0; i < lump->lmm_stripe_count; i++) {
576                 (*lsmp)->lsm_oinfo[i]->loi_ost_idx =
577                         lmm_objects[i].l_ost_idx;
578                 (*lsmp)->lsm_oinfo[i]->loi_id = lmm_objects[i].l_object_id;
579                 (*lsmp)->lsm_oinfo[i]->loi_gr = lmm_objects[i].l_object_gr;
580         }
581         RETURN(0);
582 }
583
584
585 /* Retrieve object striping information.
586  *
587  * @lump is a pointer to an in-core struct with lmm_ost_count indicating
588  * the maximum number of OST indices which will fit in the user buffer.
589  * lmm_magic must be LOV_USER_MAGIC.
590  */
591 int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm,
592                   struct lov_user_md *lump)
593 {
594         /*
595          * XXX huge struct allocated on stack.
596          */
597         /* we use lov_user_md_v3 because it is larger than lov_user_md_v1 */
598         struct lov_user_md_v3 lum;
599         struct lov_mds_md *lmmk = NULL;
600         int rc, lmm_size;
601         int lum_size;
602         mm_segment_t seg;
603         ENTRY;
604
605         if (!lsm)
606                 RETURN(-ENODATA);
607
608         /*
609          * "Switch to kernel segment" to allow copying from kernel space by
610          * copy_{to,from}_user().
611          */
612         seg = get_fs();
613         set_fs(KERNEL_DS);
614
615         /* we only need the header part from user space to get lmm_magic and
616          * lmm_stripe_count, (the header part is common to v1 and v3) */
617         lum_size = sizeof(struct lov_user_md_v1);
618         rc = copy_from_user(&lum, lump, lum_size);
619
620         if (rc)
621                 rc = -EFAULT;
622         else if ((lum.lmm_magic != LOV_USER_MAGIC) &&
623                  (lum.lmm_magic != LOV_USER_MAGIC_V3))
624                 rc = -EINVAL;
625         else {
626                 /* if v3 we just have to update the lum_size */
627                 if (lum.lmm_magic == LOV_USER_MAGIC_V3)
628                         lum_size = sizeof(struct lov_user_md_v3);
629
630                 rc = lov_packmd(exp, &lmmk, lsm);
631                 if (rc < 0)
632                         RETURN(rc);
633                 lmm_size = rc;
634                 rc = 0;
635
636                 /* FIXME: Bug 1185 - copy fields properly when structs change */
637                 /* struct lov_user_md_v3 and struct lov_mds_md_v3 must be the same */
638                 CLASSERT(sizeof(lum) == sizeof(struct lov_mds_md_v3));
639                 CLASSERT(sizeof lum.lmm_objects[0] ==
640                          sizeof lmmk->lmm_objects[0]);
641
642                 /* User wasn't expecting this many OST entries */
643                 if (lum.lmm_stripe_count == 0) {
644                         if (copy_to_user(lump, lmmk, lum_size))
645                                 rc = -EFAULT;
646                 } else if (lum.lmm_stripe_count < lmmk->lmm_stripe_count) {
647                         rc = -EOVERFLOW;
648                 } else if (copy_to_user(lump, lmmk, lmm_size))
649                         rc = -EFAULT;
650
651                 obd_free_diskmd(exp, &lmmk);
652         }
653         set_fs(seg);
654         RETURN(rc);
655 }