Whamcloud - gitweb
- changes about @flags in m_disconnect(). It should be cohenernt with m_connect(),
[fs/lustre-release.git] / lustre / lmv / lmv_objmgr.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #ifndef EXPORT_SYMTAB
23 # define EXPORT_SYMTAB
24 #endif
25 #define DEBUG_SUBSYSTEM S_LMV
26 #ifdef __KERNEL__
27 #include <linux/slab.h>
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/slab.h>
31 #include <linux/pagemap.h>
32 #include <asm/div64.h>
33 #include <linux/seq_file.h>
34 #else
35 #include <liblustre.h>
36 #endif
37
38 #include <linux/obd_support.h>
39 #include <linux/lustre_lib.h>
40 #include <linux/lustre_net.h>
41 #include <linux/lustre_idl.h>
42 #include <linux/lustre_dlm.h>
43 #include <linux/lustre_mds.h>
44 #include <linux/obd_class.h>
45 #include <linux/obd_ost.h>
46 #include <linux/lprocfs_status.h>
47 #include <linux/lustre_fsfilt.h>
48 #include <linux/obd_lmv.h>
49 #include "lmv_internal.h"
50
51 /* objects cache. */
52 extern kmem_cache_t *obj_cache;
53 extern atomic_t obj_cache_count;
54
55 /* object list and its guard. */
56 static LIST_HEAD(obj_list);
57 static spinlock_t obj_list_lock = SPIN_LOCK_UNLOCKED;
58
59 /* creates new obj on passed @id and @mea. */
60 struct lmv_obj *
61 lmv_alloc_obj(struct obd_device *obd,
62               struct lustre_id *id,
63               struct mea *mea)
64 {
65         int i;
66         struct lmv_obj *obj;
67         unsigned int obj_size;
68         struct lmv_obd *lmv = &obd->u.lmv;
69
70         LASSERT(mea->mea_magic == MEA_MAGIC_LAST_CHAR
71                 || mea->mea_magic == MEA_MAGIC_ALL_CHARS);
72
73         OBD_SLAB_ALLOC(obj, obj_cache, GFP_NOFS,
74                        sizeof(*obj));
75         if (!obj)
76                 return NULL;
77
78         atomic_inc(&obj_cache_count);
79         
80         obj->id = *id;
81         obj->obd = obd;
82         obj->state = 0;
83         obj->hashtype = mea->mea_magic;
84
85         init_MUTEX(&obj->guard);
86         atomic_set(&obj->count, 0);
87         obj->objcount = mea->mea_count;
88
89         obj_size = sizeof(struct lmv_inode) *
90                 lmv->desc.ld_tgt_count;
91         
92         OBD_ALLOC(obj->objs, obj_size);
93         if (!obj->objs)
94                 goto err_obj;
95
96         memset(obj->objs, 0, obj_size);
97
98         /* put all ids in */
99         for (i = 0; i < mea->mea_count; i++) {
100                 CDEBUG(D_OTHER, "subobj "DLID4"\n",
101                        OLID4(&mea->mea_ids[i]));
102                 obj->objs[i].id = mea->mea_ids[i];
103                 LASSERT(id_ino(&obj->objs[i].id));
104                 LASSERT(id_fid(&obj->objs[i].id));
105         }
106
107         return obj;
108         
109 err_obj:
110         OBD_FREE(obj, sizeof(*obj));
111         return NULL;
112 }
113
114 /* destroy passed @obj. */
115 void
116 lmv_free_obj(struct lmv_obj *obj)
117 {
118         unsigned int obj_size;
119         struct lmv_obd *lmv = &obj->obd->u.lmv;
120         
121         LASSERT(!atomic_read(&obj->count));
122         
123         obj_size = sizeof(struct lmv_inode) *
124                 lmv->desc.ld_tgt_count;
125         
126         OBD_FREE(obj->objs, obj_size);
127         OBD_SLAB_FREE(obj, obj_cache, sizeof(*obj));
128         atomic_dec(&obj_cache_count);
129 }
130
131 static void
132 __add_obj(struct lmv_obj *obj)
133 {
134         atomic_inc(&obj->count);
135         list_add(&obj->list, &obj_list);
136 }
137
138 void
139 lmv_add_obj(struct lmv_obj *obj)
140 {
141         spin_lock(&obj_list_lock);
142         __add_obj(obj);
143         spin_unlock(&obj_list_lock);
144 }
145
146 static void
147 __del_obj(struct lmv_obj *obj)
148 {
149         list_del(&obj->list);
150         lmv_free_obj(obj);
151 }
152
153 void
154 lmv_del_obj(struct lmv_obj *obj)
155 {
156         spin_lock(&obj_list_lock);
157         __del_obj(obj);
158         spin_unlock(&obj_list_lock);
159 }
160
161 static struct lmv_obj *
162 __get_obj(struct lmv_obj *obj)
163 {
164         LASSERT(obj != NULL);
165         atomic_inc(&obj->count);
166         return obj;
167 }
168
169 struct lmv_obj *
170 lmv_get_obj(struct lmv_obj *obj)
171 {
172         spin_lock(&obj_list_lock);
173         __get_obj(obj);
174         spin_unlock(&obj_list_lock);
175         return obj;
176 }
177
178 static void
179 __put_obj(struct lmv_obj *obj)
180 {
181         LASSERT(obj);
182
183         if (atomic_dec_and_test(&obj->count)) {
184                 struct lustre_id *id = &obj->id;
185                 CDEBUG(D_OTHER, "last reference to "DLID4" - "
186                        "destroying\n", OLID4(id));
187                 __del_obj(obj);
188         }
189 }
190
191 void
192 lmv_put_obj(struct lmv_obj *obj)
193 {
194         spin_lock(&obj_list_lock);
195         __put_obj(obj);
196         spin_unlock(&obj_list_lock);
197 }
198
199 static struct lmv_obj *
200 __grab_obj(struct obd_device *obd, struct lustre_id *id)
201 {
202         struct lmv_obj *obj;
203         struct list_head *cur;
204
205         list_for_each(cur, &obj_list) {
206                 obj = list_entry(cur, struct lmv_obj, list);
207
208                 /* check if object is in progress of destroying. If so - skip
209                  * it. */
210                 if (obj->state & O_FREEING)
211                         continue;
212
213                 /* 
214                  * we should make sure, that we have found object belong to
215                  * passed obd. It is possible that, object manager will have two
216                  * objects with the same fid belong to different obds, if client
217                  * and mds runs on the same host. May be it is good idea to have
218                  * objects list assosiated with obd.
219                  */
220                 if (obj->obd != obd)
221                         continue;
222
223                 /* check if this is what we're looking for. */
224                 if (id_equal_fid(&obj->id, id))
225                         return __get_obj(obj);
226         }
227
228         return NULL;
229 }
230
231 struct lmv_obj *
232 lmv_grab_obj(struct obd_device *obd, struct lustre_id *id)
233 {
234         struct lmv_obj *obj;
235         ENTRY;
236         
237         spin_lock(&obj_list_lock);
238         obj = __grab_obj(obd, id);
239         spin_unlock(&obj_list_lock);
240         
241         RETURN(obj);
242 }
243
244 /* looks in objects list for an object that matches passed @id. If it is not
245  * found -- creates it using passed @mea and puts onto list. */
246 static struct lmv_obj *
247 __create_obj(struct obd_device *obd, struct lustre_id *id, struct mea *mea)
248 {
249         struct lmv_obj *new, *obj;
250         ENTRY;
251
252         obj = lmv_grab_obj(obd, id);
253         if (obj)
254                 RETURN(obj);
255
256         /* no such object yet, allocate and initialize it. */
257         new = lmv_alloc_obj(obd, id, mea);
258         if (!new)
259                 RETURN(NULL);
260
261         /* check if someone create it already while we were dealing with
262          * allocating @obj. */
263         spin_lock(&obj_list_lock);
264         obj = __grab_obj(obd, id);
265         if (obj) {
266                 /* someone created it already - put @obj and getting out. */
267                 lmv_free_obj(new);
268                 spin_unlock(&obj_list_lock);
269                 RETURN(obj);
270         }
271
272         __add_obj(new);
273         __get_obj(new);
274         
275         spin_unlock(&obj_list_lock);
276
277         CDEBUG(D_OTHER, "new obj in lmv cache: "DLID4"\n",
278                OLID4(id));
279
280         RETURN(new);
281         
282 }
283
284 /* creates object from passed @id and @mea. If @mea is NULL, it will be
285  * obtained from correct MDT and used for constructing the object. */
286 struct lmv_obj *
287 lmv_create_obj(struct obd_export *exp, struct lustre_id *id, struct mea *mea)
288 {
289         struct obd_device *obd = exp->exp_obd;
290         struct lmv_obd *lmv = &obd->u.lmv;
291         struct ptlrpc_request *req = NULL;
292         struct lmv_obj *obj;
293         struct lustre_md md;
294         int mealen, rc;
295         ENTRY;
296
297         CDEBUG(D_OTHER, "get mea for "DLID4" and create lmv obj\n",
298                OLID4(id));
299
300         if (!mea) {
301                 __u64 valid;
302                 
303                 CDEBUG(D_OTHER, "mea isn't passed in, get it now\n");
304                 mealen = MEA_SIZE_LMV(lmv);
305                 
306                 /* time to update mea of parent id */
307                 md.mea = NULL;
308                 valid = OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
309
310                 rc = md_getattr(lmv->tgts[id_group(id)].ltd_exp,
311                                 id, valid, mealen, &req);
312                 if (rc) {
313                         CERROR("md_getattr() failed, error %d\n", rc);
314                         GOTO(cleanup, obj = ERR_PTR(rc));
315                 }
316
317                 rc = mdc_req2lustre_md(exp, req, 0, NULL, &md);
318                 if (rc) {
319                         CERROR("mdc_req2lustre_md() failed, error %d\n", rc);
320                         GOTO(cleanup, obj = ERR_PTR(rc));
321                 }
322
323                 if (!md.mea)
324                         GOTO(cleanup, obj = ERR_PTR(-ENODATA));
325                         
326                 mea = md.mea;
327         }
328
329         /* got mea, now create obj for it. */
330         obj = __create_obj(obd, id, mea);
331         if (!obj) {
332                 CERROR("Can't create new object "DLID4"\n",
333                        OLID4(id));
334                 GOTO(cleanup, obj = ERR_PTR(-ENOMEM));
335         }
336         EXIT;
337 cleanup:
338         if (req)
339                 ptlrpc_req_finished(req);
340         return obj;
341 }
342
343 /*
344  * looks for object with @id and orders to destroy it. It is possible the object
345  * will not be destroyed right now, because it is still using by someone. In
346  * this case it will be marked as "freeing" and will not be accessible anymore
347  * for subsequent callers of lmv_grab_obj().
348  */
349 int
350 lmv_delete_obj(struct obd_export *exp, struct lustre_id *id)
351 {
352         struct obd_device *obd = exp->exp_obd;
353         struct lmv_obj *obj;
354         int rc = 0;
355         ENTRY;
356
357         spin_lock(&obj_list_lock);
358         obj = __grab_obj(obd, id);
359         if (obj) {
360                 obj->state |= O_FREEING;
361                 __put_obj(obj);
362                 __put_obj(obj);
363                 rc = 1;
364         }
365         spin_unlock(&obj_list_lock);
366
367         RETURN(rc);
368 }
369
370 int
371 lmv_setup_mgr(struct obd_device *obd)
372 {
373         ENTRY;
374         LASSERT(obd != NULL);
375         
376         CDEBUG(D_INFO, "LMV object manager setup (%s)\n",
377                obd->obd_uuid.uuid);
378
379         RETURN(0);
380 }
381
382 void
383 lmv_cleanup_mgr(struct obd_device *obd)
384 {
385         struct list_head *cur, *tmp;
386         struct lmv_obj *obj;
387         ENTRY;
388
389         CDEBUG(D_INFO, "LMV object manager cleanup (%s)\n",
390                obd->obd_uuid.uuid);
391         
392         spin_lock(&obj_list_lock);
393         list_for_each_safe(cur, tmp, &obj_list) {
394                 obj = list_entry(cur, struct lmv_obj, list);
395                 
396                 if (obj->obd != obd)
397                         continue;
398
399                 obj->state |= O_FREEING;
400                 if (atomic_read(&obj->count) > 1) {
401                         CERROR("obj "DLID4" has count > 1 (%d)\n",
402                                OLID4(&obj->id), atomic_read(&obj->count));
403                 }
404                 __put_obj(obj);
405         }
406         spin_unlock(&obj_list_lock);
407         EXIT;
408 }