Whamcloud - gitweb
Land b1_8_gate onto b1_8 (20081218_1708)
[fs/lustre-release.git] / lustre / lov / lov_offset.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
37 #ifndef EXPORT_SYMTAB
38 # define EXPORT_SYMTAB
39 #endif
40 #define DEBUG_SUBSYSTEM S_LOV
41
42 #ifdef __KERNEL__
43 #include <libcfs/libcfs.h>
44 #else
45 #include <liblustre.h>
46 #endif
47
48 #include <obd_class.h>
49 #include <obd_lov.h>
50
51 #include "lov_internal.h"
52
53 /* compute object size given "stripeno" and the ost size */
54 obd_size lov_stripe_size(struct lov_stripe_md *lsm, obd_size ost_size,
55                          int stripeno)
56 {
57         obd_size ssize  = lsm->lsm_stripe_size;
58         unsigned long stripe_size;
59         obd_off swidth;
60         int sindex = stripeno;
61         obd_size lov_size;
62         int magic = lsm->lsm_magic;
63         ENTRY;
64
65         if (ost_size == 0)
66                 RETURN(0);
67
68         LASSERT(lsm_op_find(magic) != NULL);
69         lsm_op_find(magic)->lsm_stripe_by_index(lsm, &stripeno, NULL, &swidth);
70  
71         /* ll_do_div64(a, b) returns a % b, and a = a / b */
72         stripe_size = ll_do_div64(ost_size, ssize);
73         if (stripe_size)
74                 lov_size = ost_size * swidth + stripeno * ssize + stripe_size;
75         else
76                 lov_size = (ost_size - 1) * swidth + (stripeno + 1) * ssize;
77
78         lov_size += lsm_op_find(magic)->lsm_stripe_offset_by_index(lsm, sindex);
79         RETURN(lov_size);
80 }
81
82 /* we have an offset in file backed by an lov and want to find out where
83  * that offset lands in our given stripe of the file.  for the easy
84  * case where the offset is within the stripe, we just have to scale the
85  * offset down to make it relative to the stripe instead of the lov.
86  *
87  * the harder case is what to do when the offset doesn't intersect the
88  * stripe.  callers will want start offsets clamped ahead to the start
89  * of the nearest stripe in the file.  end offsets similarly clamped to the
90  * nearest ending byte of a stripe in the file:
91  *
92  * all this function does is move offsets to the nearest region of the
93  * stripe, and it does its work "mod" the full length of all the stripes.
94  * consider a file with 3 stripes:
95  *
96  *             S                                              E
97  * ---------------------------------------------------------------------
98  * |    0    |     1     |     2     |    0    |     1     |     2     |
99  * ---------------------------------------------------------------------
100  *
101  * to find stripe 1's offsets for S and E, it divides by the full stripe
102  * width and does its math in the context of a single set of stripes:
103  *
104  *             S         E
105  * -----------------------------------
106  * |    0    |     1     |     2     |
107  * -----------------------------------
108  *
109  * it'll notice that E is outside stripe 1 and clamp it to the end of the
110  * stripe, then multiply it back out by lov_off to give the real offsets in
111  * the stripe:
112  *
113  *   S                   E
114  * ---------------------------------------------------------------------
115  * |    1    |     1     |     1     |    1    |     1     |     1     |
116  * ---------------------------------------------------------------------
117  *
118  * it would have done similarly and pulled S forward to the start of a 1
119  * stripe if, say, S had landed in a 0 stripe.
120  *
121  * this rounding isn't always correct.  consider an E lov offset that lands
122  * on a 0 stripe, the "mod stripe width" math will pull it forward to the
123  * start of a 1 stripe, when in fact it wanted to be rounded back to the end
124  * of a previous 1 stripe.  this logic is handled by callers and this is why:
125  *
126  * this function returns < 0 when the offset was "before" the stripe and
127  * was moved forward to the start of the stripe in question;  0 when it
128  * falls in the stripe and no shifting was done; > 0 when the offset
129  * was outside the stripe and was pulled back to its final byte. */
130 int lov_stripe_offset(struct lov_stripe_md *lsm, obd_off lov_off,
131                       int stripeno, obd_off *obdoff)
132 {
133         unsigned long ssize  = lsm->lsm_stripe_size;
134         unsigned long stripe_off, this_stripe;
135         __u64 l_off, s_off;
136         obd_off swidth;
137         int magic = lsm->lsm_magic;
138         int ret = 0;
139
140         if (lov_off == OBD_OBJECT_EOF) {
141                 *obdoff = OBD_OBJECT_EOF;
142                 return 0;
143         }
144
145         LASSERT(lsm_op_find(magic) != NULL);
146         /*It will check whether the lov_off and stripeno 
147          *are in the same extent. 
148          *1) lov_off extent < stripeno extent, ret = -1, obdoff = 0
149          *2) lov_off extent > stripeno extent, ret = 1, 
150          *   obdoff = lov_off extent offset*/
151         l_off = lsm_op_find(magic)->lsm_stripe_offset_by_index(lsm, stripeno);
152         s_off = lsm_op_find(magic)->lsm_stripe_offset_by_offset(lsm, lov_off);
153         if (s_off < l_off) {
154                 ret = -1;
155                 *obdoff = 0;
156                 return ret;
157         } else if (s_off > l_off) {
158                 ret = 1;
159                 *obdoff = s_off;
160                 return ret;
161         }
162         /*If they are in the same extent, original logic*/
163         lsm_op_find(magic)->lsm_stripe_by_index(lsm, &stripeno, &lov_off,
164                                                 &swidth);
165        
166         /* ll_do_div64(a, b) returns a % b, and a = a / b */
167         stripe_off = ll_do_div64(lov_off, swidth);
168
169         this_stripe = stripeno * ssize;
170         if (stripe_off < this_stripe) {
171                 stripe_off = 0;
172                 ret = -1;
173         } else {
174                 stripe_off -= this_stripe;
175
176                 if (stripe_off >= ssize) {
177                         stripe_off = ssize;
178                         ret = 1;
179                 }
180         }
181
182         *obdoff = lov_off * ssize + stripe_off;
183         return ret;
184 }
185
186 /* Given a whole-file size and a stripe number, give the file size which
187  * corresponds to the individual object of that stripe.
188  *
189  * This behaves basically in the same was as lov_stripe_offset, except that
190  * file sizes falling before the beginning of a stripe are clamped to the end
191  * of the previous stripe, not the beginning of the next:
192  *
193  *                                               S
194  * ---------------------------------------------------------------------
195  * |    0    |     1     |     2     |    0    |     1     |     2     |
196  * ---------------------------------------------------------------------
197  *
198  * if clamped to stripe 2 becomes:
199  *
200  *                                   S
201  * ---------------------------------------------------------------------
202  * |    0    |     1     |     2     |    0    |     1     |     2     |
203  * ---------------------------------------------------------------------
204  */
205 obd_off lov_size_to_stripe(struct lov_stripe_md *lsm, obd_off file_size,
206                            int stripeno)
207 {
208         unsigned long ssize  = lsm->lsm_stripe_size;
209         unsigned long stripe_off, this_stripe;
210         obd_off swidth;
211         int magic = lsm->lsm_magic;
212
213         if (file_size == OBD_OBJECT_EOF)
214                 return OBD_OBJECT_EOF;
215
216         LASSERT(lsm_op_find(magic) != NULL);
217         lsm_op_find(magic)->lsm_stripe_by_index(lsm, &stripeno, &file_size,
218                                                 &swidth);
219
220         /* ll_do_div64(a, b) returns a % b, and a = a / b */
221         stripe_off = ll_do_div64(file_size, swidth);
222
223         this_stripe = stripeno * ssize;
224         if (stripe_off < this_stripe) {
225                 /* Move to end of previous stripe, or zero */
226                 if (file_size > 0) {
227                         file_size--;
228                         stripe_off = ssize;
229                 } else {
230                         stripe_off = 0;
231                 }
232         } else {
233                 stripe_off -= this_stripe;
234
235                 if (stripe_off >= ssize) {
236                         /* Clamp to end of this stripe */
237                         stripe_off = ssize;
238                 }
239         }
240
241         return (file_size * ssize + stripe_off);
242 }
243
244 /* given an extent in an lov and a stripe, calculate the extent of the stripe
245  * that is contained within the lov extent.  this returns true if the given
246  * stripe does intersect with the lov extent. */
247 int lov_stripe_intersects(struct lov_stripe_md *lsm, int stripeno,
248                           obd_off start, obd_off end,
249                           obd_off *obd_start, obd_off *obd_end)
250 {
251         int start_side, end_side;
252
253         start_side = lov_stripe_offset(lsm, start, stripeno, obd_start);
254         end_side = lov_stripe_offset(lsm, end, stripeno, obd_end);
255
256         CDEBUG(D_INODE, "["LPU64"->"LPU64"] -> [(%d) "LPU64"->"LPU64" (%d)]\n",
257                start, end, start_side, *obd_start, *obd_end, end_side);
258
259         /* this stripe doesn't intersect the file extent when neither
260          * start or the end intersected the stripe and obd_start and
261          * obd_end got rounded up to the save value. */
262         if (start_side != 0 && end_side != 0 && *obd_start == *obd_end)
263                 return 0;
264
265         /* as mentioned in the lov_stripe_offset commentary, end
266          * might have been shifted in the wrong direction.  This
267          * happens when an end offset is before the stripe when viewed
268          * through the "mod stripe size" math. we detect it being shifted
269          * in the wrong direction and touch it up.
270          * interestingly, this can't underflow since end must be > start
271          * if we passed through the previous check.
272          * (should we assert for that somewhere?) */
273         if (end_side != 0)
274                 (*obd_end)--;
275
276         return 1;
277 }
278
279 /* compute which stripe number "lov_off" will be written into */
280 int lov_stripe_number(struct lov_stripe_md *lsm, obd_off lov_off)
281 {
282         unsigned long ssize  = lsm->lsm_stripe_size;
283         unsigned long stripe_off;
284         obd_off swidth;
285         obd_off offset = lov_off;
286         int magic = lsm->lsm_magic;
287
288         LASSERT(lsm_op_find(magic) != NULL);
289         lsm_op_find(magic)->lsm_stripe_by_offset(lsm, NULL, &lov_off, &swidth);
290
291         stripe_off = ll_do_div64(lov_off, swidth);
292
293         return (stripe_off/ssize +
294                 lsm_op_find(magic)->lsm_stripe_index_by_offset(lsm, offset));
295 }