Whamcloud - gitweb
resolve lots races and use after free.
[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 "LOV_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,
248                         LOV_MAXPOOLNAME);
249                 lmm_objects = lmmv3->lmm_objects;
250         } else {
251                 lmm_objects = lmmv1->lmm_objects;
252         }
253
254         for (i = 0; i < stripe_count; i++) {
255                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
256
257                 /* XXX LOV STACKING call down to osc_packmd() to do packing */
258                 LASSERTF(loi->loi_id, "lmm_oid "LPU64" stripe %u/%u idx %u\n",
259                          lmmv1->lmm_object_id, i, stripe_count, loi->loi_ost_idx);
260                 lmm_objects[i].l_object_id = cpu_to_le64(loi->loi_id);
261                 lmm_objects[i].l_object_gr = cpu_to_le64(loi->loi_gr);
262                 lmm_objects[i].l_ost_gen = cpu_to_le32(loi->loi_ost_gen);
263                 lmm_objects[i].l_ost_idx = cpu_to_le32(loi->loi_ost_idx);
264         }
265
266         RETURN(lmm_size);
267 }
268
269 /* Find the max stripecount we should use */
270 int lov_get_stripecnt(struct lov_obd *lov, __u32 stripe_count)
271 {
272         if (!stripe_count)
273                 stripe_count = lov->desc.ld_default_stripe_count;
274         if (stripe_count > lov->desc.ld_active_tgt_count)
275                 stripe_count = lov->desc.ld_active_tgt_count;
276         if (!stripe_count)
277                 stripe_count = 1;
278         /* for now, we limit the stripe count directly, when bug 4424 is
279          * fixed this needs to be somewhat dynamic based on whether ext3
280          * can handle larger EA sizes. */
281         if (stripe_count > LOV_MAX_STRIPE_COUNT)
282                 stripe_count = LOV_MAX_STRIPE_COUNT;
283
284         return stripe_count;
285 }
286
287
288 static int lov_verify_lmm(void *lmm, int lmm_bytes, int *stripe_count)
289 {
290         int rc;
291
292         if (lsm_op_find(le32_to_cpu(*(__u32 *)lmm)) == NULL) {
293                 char *buffer;
294                 int sz;
295
296                 CERROR("bad disk LOV MAGIC: 0x%08X; dumping LMM (size=%d):\n",
297                        le32_to_cpu(*(__u32 *)lmm), lmm_bytes);
298                 sz = lmm_bytes * 2 + 1;
299                 OBD_ALLOC(buffer, sz);
300                 if (buffer != NULL) {
301                         int i;
302
303                         for (i = 0; i < lmm_bytes; i++)
304                                 sprintf(buffer+2*i, "%.2X", ((char *)lmm)[i]);
305                         buffer[sz] = '\0';
306                         CERROR("%s\n", buffer);
307                         OBD_FREE(buffer, sz);
308                 }
309                 return -EINVAL;
310         }
311         rc = lsm_op_find(le32_to_cpu(*(__u32 *)lmm))->lsm_lmm_verify(lmm,
312                                      lmm_bytes, stripe_count);
313         return rc;
314 }
315
316 int lov_alloc_memmd(struct lov_stripe_md **lsmp, int stripe_count,
317                       int pattern, int magic)
318 {
319         int i, lsm_size;
320         ENTRY;
321
322         CDEBUG(D_INFO, "alloc lsm, stripe_count %d\n", stripe_count);
323
324         *lsmp = lsm_alloc_plain(stripe_count, &lsm_size);
325         if (!*lsmp) {
326                 CERROR("can't allocate lsmp stripe_count %d\n", stripe_count);
327                 RETURN(-ENOMEM);
328         }
329
330         spin_lock_init(&(*lsmp)->lsm_lock);
331         (*lsmp)->lsm_magic = magic;
332         (*lsmp)->lsm_stripe_count = stripe_count;
333         (*lsmp)->lsm_maxbytes = LUSTRE_STRIPE_MAXBYTES * stripe_count;
334         (*lsmp)->lsm_pattern = pattern;
335         (*lsmp)->lsm_pool_name[0] = '\0';
336         (*lsmp)->lsm_oinfo[0]->loi_ost_idx = ~0;
337
338         for (i = 0; i < stripe_count; i++)
339                 loi_init((*lsmp)->lsm_oinfo[i]);
340
341         RETURN(lsm_size);
342 }
343
344 void lov_free_memmd(struct lov_stripe_md **lsmp)
345 {
346         struct lov_stripe_md *lsm = *lsmp;
347
348         LASSERT(lsm_op_find(lsm->lsm_magic) != NULL);
349         lsm_op_find(lsm->lsm_magic)->lsm_free(lsm);
350
351         *lsmp = NULL;
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, stripe_count, lsm_size;
364         __u32 magic;
365         ENTRY;
366
367         /* If passed an MDS struct use values from there, otherwise defaults */
368         if (lmm) {
369                 rc = lov_verify_lmm(lmm, lmm_bytes, &stripe_count);
370                 if (rc)
371                         RETURN(rc);
372                 magic = le32_to_cpu(lmm->lmm_magic);
373         } else {
374                 stripe_count = lov_get_stripecnt(lov, 0);
375                 magic = LOV_MAGIC;
376         }
377
378         /* If we aren't passed an lsmp struct, we just want the size */
379         if (!lsmp) {
380                 /* XXX LOV STACKING call into osc for sizes */
381                 LBUG();
382                 RETURN(lov_stripe_md_size(stripe_count));
383         }
384         /* If we are passed an allocated struct but nothing to unpack, free */
385         if (*lsmp && !lmm) {
386                 lov_free_memmd(lsmp);
387                 RETURN(0);
388         }
389
390         lsm_size = lov_alloc_memmd(lsmp, stripe_count, LOV_PATTERN_RAID0,
391                                    magic);
392         if (lsm_size < 0)
393                 RETURN(lsm_size);
394
395         /* If we are passed a pointer but nothing to unpack, we only alloc */
396         if (!lmm)
397                 RETURN(lsm_size);
398
399         LASSERT(lsm_op_find(magic) != NULL);
400         rc = lsm_op_find(magic)->lsm_unpackmd(lov, *lsmp, lmm);
401         if (rc) {
402                 lov_free_memmd(lsmp);
403                 RETURN(rc);
404         }
405
406         RETURN(lsm_size);
407 }
408
409 static int __lov_setstripe(struct obd_export *exp, struct lov_stripe_md **lsmp,
410                            struct lov_user_md *lump)
411 {
412         struct obd_device *obd = class_exp2obd(exp);
413         struct lov_obd *lov = &obd->u.lov;
414         struct lov_user_md_v3 lumv3;
415         struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
416         int lmm_magic;
417         int stripe_count;
418         int rc;
419         ENTRY;
420
421         if (copy_from_user(&lumv3, lump, sizeof(struct lov_user_md_v1)))
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                 if (copy_from_user(&lumv3, lump, sizeof(lumv3)))
431                         RETURN(-EFAULT);
432         } else if (lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
433                 if (copy_from_user(&lumv3, lump, sizeof(lumv3)))
434                         RETURN(-EFAULT);
435                 lustre_swab_lov_user_md_v3(&lumv3);
436                 lmm_magic = LOV_USER_MAGIC_V3;
437         } else if (lmm_magic != LOV_USER_MAGIC_V1) {
438                 CDEBUG(D_IOCTL,
439                        "bad userland LOV MAGIC: %#08x != %#08x nor %#08x\n",
440                        lmm_magic, LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3);
441                        RETURN(-EINVAL);
442         }
443
444         /* in the rest of the tests, as *lumv1 and lumv3 have the same
445          * fields, we use lumv1 to avoid code duplication */
446
447         if (lumv1->lmm_pattern == 0) {
448                 lumv1->lmm_pattern = lov->desc.ld_pattern ?
449                         lov->desc.ld_pattern : LOV_PATTERN_RAID0;
450         }
451
452         if (lumv1->lmm_pattern != LOV_PATTERN_RAID0) {
453                 CDEBUG(D_IOCTL, "bad userland stripe pattern: %#x\n",
454                        lumv1->lmm_pattern);
455                 RETURN(-EINVAL);
456         }
457
458         /* 64kB is the largest common page size we see (ia64), and matches the
459          * check in lfs */
460         if (lumv1->lmm_stripe_size & (LOV_MIN_STRIPE_SIZE - 1)) {
461                 CDEBUG(D_IOCTL, "stripe size %u not multiple of %u, fixing\n",
462                        lumv1->lmm_stripe_size, LOV_MIN_STRIPE_SIZE);
463                 lumv1->lmm_stripe_size = LOV_MIN_STRIPE_SIZE;
464         }
465
466         if ((lumv1->lmm_stripe_offset >= lov->desc.ld_tgt_count) &&
467             (lumv1->lmm_stripe_offset !=
468              (typeof(lumv1->lmm_stripe_offset))(-1))) {
469                 CDEBUG(D_IOCTL, "stripe offset %u > number of OSTs %u\n",
470                        lumv1->lmm_stripe_offset, lov->desc.ld_tgt_count);
471                 RETURN(-EINVAL);
472         }
473         stripe_count = lov_get_stripecnt(lov, lumv1->lmm_stripe_count);
474
475         if (lmm_magic == LOV_USER_MAGIC_V3) {
476                 struct pool_desc *pool;
477
478                 pool = lov_find_pool(lov, lumv3.lmm_pool_name);
479                 if (pool == NULL)
480                         RETURN(-EINVAL);
481
482                 if (lumv3.lmm_stripe_offset !=
483                     (typeof(lumv3.lmm_stripe_offset))(-1)) {
484                         rc = lov_check_index_in_pool(lumv3.lmm_stripe_offset,
485                                                      pool);
486                         if (rc < 0) {
487                                 lov_pool_putref(pool);
488                                 RETURN(-EINVAL);
489                         }
490                 }
491
492                 if (stripe_count > pool_tgt_count(pool))
493                         stripe_count = pool_tgt_count(pool);
494
495                 lov_pool_putref(pool);
496         }
497
498         if ((__u64)lumv1->lmm_stripe_size * stripe_count > ~0UL) {
499                 CDEBUG(D_IOCTL, "stripe width %ux%i exeeds %lu bytes\n",
500                        lumv1->lmm_stripe_size, (int)lumv1->lmm_stripe_count,
501                        ~0UL);
502                 RETURN(-EINVAL);
503         }
504
505         rc = lov_alloc_memmd(lsmp, stripe_count, lumv1->lmm_pattern, lmm_magic);
506
507         if (rc >= 0) {
508                 (*lsmp)->lsm_oinfo[0]->loi_ost_idx = lumv1->lmm_stripe_offset;
509                 (*lsmp)->lsm_stripe_size = lumv1->lmm_stripe_size;
510                 if (lmm_magic == LOV_USER_MAGIC_V3)
511                         strncpy((*lsmp)->lsm_pool_name, lumv3.lmm_pool_name,
512                                 LOV_MAXPOOLNAME);
513                 rc = 0;
514         }
515
516         RETURN(rc);
517 }
518
519 /* Configure object striping information on a new file.
520  *
521  * @lmmu is a pointer to a user struct with one or more of the fields set to
522  * indicate the application preference: lmm_stripe_count, lmm_stripe_size,
523  * lmm_stripe_offset, and lmm_stripe_pattern.  lmm_magic must be LOV_MAGIC.
524  * @lsmp is a pointer to an in-core stripe MD that needs to be filled in.
525  */
526 int lov_setstripe(struct obd_export *exp, struct lov_stripe_md **lsmp,
527                   struct lov_user_md *lump)
528 {
529         int rc;
530         mm_segment_t seg;
531
532         seg = get_fs();
533         set_fs(KERNEL_DS);
534
535         rc = __lov_setstripe(exp, lsmp, lump);
536         set_fs(seg);
537         RETURN(rc);
538 }
539
540 int lov_setea(struct obd_export *exp, struct lov_stripe_md **lsmp,
541               struct lov_user_md *lump)
542 {
543         int i;
544         int rc;
545         struct obd_export *oexp;
546         struct lov_obd *lov = &exp->exp_obd->u.lov;
547         obd_id last_id = 0;
548         struct lov_user_ost_data_v1 *lmm_objects;
549
550         ENTRY;
551
552         if (lump->lmm_magic == LOV_USER_MAGIC_V3)
553                 lmm_objects = ((struct lov_user_md_v3 *)lump)->lmm_objects;
554         else
555                 lmm_objects = lump->lmm_objects;
556
557         for (i = 0; i < lump->lmm_stripe_count; i++) {
558                 __u32 len = sizeof(last_id);
559                 oexp = lov->lov_tgts[lmm_objects[i].l_ost_idx]->ltd_exp;
560                 rc = obd_get_info(oexp, sizeof(KEY_LAST_ID), KEY_LAST_ID,
561                                   &len, &last_id, NULL);
562                 if (rc)
563                         RETURN(rc);
564                 if (lmm_objects[i].l_object_id > last_id) {
565                         CERROR("Setting EA for object > than last id on "
566                                "ost idx %d "LPD64" > "LPD64" \n",
567                                lmm_objects[i].l_ost_idx,
568                                lmm_objects[i].l_object_id, last_id);
569                         RETURN(-EINVAL);
570                 }
571         }
572
573         rc = lov_setstripe(exp, lsmp, lump);
574         if (rc)
575                 RETURN(rc);
576
577         for (i = 0; i < lump->lmm_stripe_count; i++) {
578                 (*lsmp)->lsm_oinfo[i]->loi_ost_idx =
579                         lmm_objects[i].l_ost_idx;
580                 (*lsmp)->lsm_oinfo[i]->loi_id = lmm_objects[i].l_object_id;
581                 (*lsmp)->lsm_oinfo[i]->loi_gr = lmm_objects[i].l_object_gr;
582         }
583         RETURN(0);
584 }
585
586
587 /* Retrieve object striping information.
588  *
589  * @lump is a pointer to an in-core struct with lmm_ost_count indicating
590  * the maximum number of OST indices which will fit in the user buffer.
591  * lmm_magic must be LOV_USER_MAGIC.
592  */
593 int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm,
594                   struct lov_user_md *lump)
595 {
596         /*
597          * XXX huge struct allocated on stack.
598          */
599         /* we use lov_user_md_v3 because it is larger than lov_user_md_v1 */
600         struct lov_user_md_v3 lum;
601         struct lov_mds_md *lmmk = NULL;
602         int rc, lmm_size;
603         int lum_size;
604         mm_segment_t seg;
605         ENTRY;
606
607         if (!lsm)
608                 RETURN(-ENODATA);
609
610         /*
611          * "Switch to kernel segment" to allow copying from kernel space by
612          * copy_{to,from}_user().
613          */
614         seg = get_fs();
615         set_fs(KERNEL_DS);
616
617         /* we only need the header part from user space to get lmm_magic and
618          * lmm_stripe_count, (the header part is common to v1 and v3) */
619         lum_size = sizeof(struct lov_user_md_v1);
620         if (copy_from_user(&lum, lump, lum_size))
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                 if ((cpu_to_le32(LOV_MAGIC) != LOV_MAGIC) &&
643                     (lmmk->lmm_magic == cpu_to_le32(LOV_MAGIC)))
644                         lustre_swab_lov_mds_md(lmmk);
645                 /* User wasn't expecting this many OST entries */
646                 if (lum.lmm_stripe_count == 0) {
647                         copy_lov_mds2user(&lum, lmmk);
648                         if (copy_to_user(lump, &lum, lum_size))
649                                 rc = -EFAULT;
650                 } else if (lum.lmm_stripe_count < lmmk->lmm_stripe_count) {
651                         rc = -EOVERFLOW;
652                 } else {
653                         copy_lov_mds2user(&lum, lmmk);
654                         if (copy_to_user(lump, &lum, lmm_size))
655                                 rc = -EFAULT;
656                 }
657
658                 obd_free_diskmd(exp, &lmmk);
659         }
660         set_fs(seg);
661         RETURN(rc);
662 }