Whamcloud - gitweb
89bbf9f9f7d0446a937c5d09ba1296bdf076a234
[fs/lustre-release.git] / lustre / osp / osp_object.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel, Inc.
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/osp/osp_object.c
37  *
38  * Lustre OST Proxy Device
39  *
40  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
41  * Author: Mikhail Pershin <mike.tappro@intel.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_MDS
48
49 #include "osp_internal.h"
50
51 static __u64 osp_object_assign_id(const struct lu_env *env,
52                                   struct osp_device *d, struct osp_object *o)
53 {
54         struct osp_thread_info  *osi = osp_env_info(env);
55         const struct lu_fid     *f = lu_object_fid(&o->opo_obj.do_lu);
56
57         LASSERT(fid_is_zero(f));
58         LASSERT(o->opo_reserved);
59         o->opo_reserved = 0;
60
61         /* assign fid to anonymous object */
62         osi->osi_oi.oi_id = osp_precreate_get_id(d);
63         osi->osi_oi.oi_seq = FID_SEQ_OST_MDT0;
64         fid_ostid_unpack(&osi->osi_fid, &osi->osi_oi, d->opd_index);
65         lu_object_assign_fid(env, &o->opo_obj.do_lu, &osi->osi_fid);
66
67         return osi->osi_oi.oi_id;
68 }
69
70 static int osp_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
71                                 const struct lu_attr *attr, struct thandle *th)
72 {
73         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
74         struct osp_object       *o = dt2osp_obj(dt);
75         int                      rc = 0;
76
77         ENTRY;
78
79         /*
80          * Usually we don't allow server stack to manipulate size
81          * but there is a special case when striping is created
82          * late, after stripless file got truncated to non-zero.
83          *
84          * In this case we do the following:
85          *
86          * 1) grab id in declare - this can lead to leaked OST objects
87          *    but we don't currently have proper mechanism and the only
88          *    options we have are to do truncate RPC holding transaction
89          *    open (very bad) or to grab id in declare at cost of leaked
90          *    OST object in same very rare unfortunate case (just bad)
91          *    notice 1.6-2.0 do assignment outside of running transaction
92          *    all the time, meaning many more chances for leaked objects.
93          *
94          * 2) send synchronous truncate RPC with just assigned id
95          */
96         LASSERT(attr != NULL);
97         if (attr->la_valid & LA_SIZE && attr->la_size > 0) {
98                 LASSERT(!dt_object_exists(dt));
99                 osp_object_assign_id(env, d, o);
100                 rc = osp_object_truncate(env, dt, attr->la_size);
101                 if (rc)
102                         RETURN(rc);
103         }
104
105         if (!(attr->la_valid & (LA_UID | LA_GID)))
106                 RETURN(0);
107
108         /*
109          * track all UID/GID changes via llog
110          */
111         rc = osp_sync_declare_add(env, o, MDS_SETATTR64_REC, th);
112
113         RETURN(rc);
114 }
115
116 static int osp_attr_set(const struct lu_env *env, struct dt_object *dt,
117                         const struct lu_attr *attr, struct thandle *th,
118                         struct lustre_capa *capa)
119 {
120         struct osp_object       *o = dt2osp_obj(dt);
121         int                      rc = 0;
122
123         ENTRY;
124
125         /* we're interested in uid/gid changes only */
126         if (!(attr->la_valid & (LA_UID | LA_GID)))
127                 RETURN(0);
128
129         /*
130          * once transaction is committed put proper command on
131          * the queue going to our OST
132          */
133         rc = osp_sync_add(env, o, MDS_SETATTR64_REC, th, attr);
134
135         /* XXX: send new uid/gid to OST ASAP? */
136
137         RETURN(rc);
138 }
139
140 static int osp_declare_object_create(const struct lu_env *env,
141                                      struct dt_object *dt,
142                                      struct lu_attr *attr,
143                                      struct dt_allocation_hint *hint,
144                                      struct dt_object_format *dof,
145                                      struct thandle *th)
146 {
147         struct osp_thread_info  *osi = osp_env_info(env);
148         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
149         struct osp_object       *o = dt2osp_obj(dt);
150         const struct lu_fid     *fid;
151         int                      rc = 0;
152
153         ENTRY;
154
155         LASSERT(d->opd_last_used_file);
156         fid = lu_object_fid(&dt->do_lu);
157
158         /*
159          * There can be gaps in precreated ids and record to unlink llog
160          */
161         rc = osp_sync_declare_add(env, o, MDS_UNLINK64_REC, th);
162
163         if (unlikely(!fid_is_zero(fid))) {
164                 /* replay case: caller knows fid */
165                 osi->osi_off = sizeof(osi->osi_id) * d->opd_index;
166                 rc = dt_declare_record_write(env, d->opd_last_used_file,
167                                              sizeof(osi->osi_id), osi->osi_off,
168                                              th);
169                 RETURN(rc);
170         }
171
172         /*
173          * in declaration we need to reserve object so that we don't block
174          * awaiting precreation RPC to complete
175          */
176         rc = osp_precreate_reserve(env, d);
177         /*
178          * we also need to declare update to local "last used id" file for
179          * recovery if object isn't used for a reason, we need to release
180          * reservation, this can be made in osd_object_release()
181          */
182         if (rc == 0) {
183                 /* mark id is reserved: in create we don't want to talk
184                  * to OST */
185                 LASSERT(o->opo_reserved == 0);
186                 o->opo_reserved = 1;
187
188                 /* common for all OSPs file hystorically */
189                 osi->osi_off = sizeof(osi->osi_id) * d->opd_index;
190                 rc = dt_declare_record_write(env, d->opd_last_used_file,
191                                              sizeof(osi->osi_id), osi->osi_off,
192                                              th);
193         } else {
194                 /* not needed in the cache anymore */
195                 cfs_set_bit(LU_OBJECT_HEARD_BANSHEE,
196                             &dt->do_lu.lo_header->loh_flags);
197         }
198         RETURN(rc);
199 }
200
201 static int osp_object_create(const struct lu_env *env, struct dt_object *dt,
202                              struct lu_attr *attr,
203                              struct dt_allocation_hint *hint,
204                              struct dt_object_format *dof, struct thandle *th)
205 {
206         struct osp_thread_info  *osi = osp_env_info(env);
207         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
208         struct osp_object       *o = dt2osp_obj(dt);
209         int                      rc = 0;
210
211         ENTRY;
212
213         if (o->opo_reserved) {
214                 /* regular case, id is assigned holding transaction open */
215                 osi->osi_id = osp_object_assign_id(env, d, o);
216         } else {
217                 /* special case, id was assigned outside of transaction
218                  * see comments in osp_declare_attr_set */
219                 rc = fid_ostid_pack(lu_object_fid(&dt->do_lu), &osi->osi_oi);
220                 LASSERT(rc == 0);
221                 osi->osi_id = ostid_id(&osi->osi_oi);
222                 cfs_spin_lock(&d->opd_pre_lock);
223                 osp_update_last_id(d, osi->osi_id);
224                 cfs_spin_unlock(&d->opd_pre_lock);
225         }
226
227         LASSERT(osi->osi_id);
228
229         /*
230          * it's OK if the import is inactive by this moment - id was created
231          * by OST earlier, we just need to maintain it consistently on the disk
232          * once import is reconnected, OSP will claim this and other objects
233          * used and OST either keep them, if they exist or recreate
234          */
235
236         /* we might have lost precreated objects */
237         if (unlikely(d->opd_gap_count) > 0) {
238                 cfs_spin_lock(&d->opd_pre_lock);
239                 if (d->opd_gap_count > 0) {
240                         int count = d->opd_gap_count;
241
242                         osi->osi_oi.oi_id = d->opd_gap_start;
243                         d->opd_gap_count = 0;
244                         cfs_spin_unlock(&d->opd_pre_lock);
245
246                         CDEBUG(D_HA, "Found gap "LPU64"+%d in objids\n",
247                                d->opd_gap_start, count);
248                         /* real gap handling is disabled intil ORI-692 will be
249                          * fixed, now we only report gaps */
250                 } else {
251                         cfs_spin_unlock(&d->opd_pre_lock);
252                 }
253         }
254
255         osp_objid_buf_prep(osi, d, d->opd_index);
256         rc = dt_record_write(env, d->opd_last_used_file, &osi->osi_lb,
257                              &osi->osi_off, th);
258
259         RETURN(rc);
260 }
261
262 static int osp_declare_object_destroy(const struct lu_env *env,
263                                       struct dt_object *dt, struct thandle *th)
264 {
265         struct osp_object       *o = dt2osp_obj(dt);
266         int                      rc = 0;
267
268         ENTRY;
269
270         /*
271          * track objects to be destroyed via llog
272          */
273         rc = osp_sync_declare_add(env, o, MDS_UNLINK64_REC, th);
274
275         RETURN(rc);
276 }
277
278 static int osp_object_destroy(const struct lu_env *env, struct dt_object *dt,
279                               struct thandle *th)
280 {
281         struct osp_object       *o = dt2osp_obj(dt);
282         int                      rc = 0;
283
284         ENTRY;
285
286         /*
287          * once transaction is committed put proper command on
288          * the queue going to our OST
289          */
290         rc = osp_sync_add(env, o, MDS_UNLINK64_REC, th, NULL);
291
292         /* not needed in cache any more */
293         cfs_set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
294
295         RETURN(rc);
296 }
297
298 struct dt_object_operations osp_obj_ops = {
299         .do_declare_attr_set    = osp_declare_attr_set,
300         .do_attr_set            = osp_attr_set,
301         .do_declare_create      = osp_declare_object_create,
302         .do_create              = osp_object_create,
303         .do_declare_destroy     = osp_declare_object_destroy,
304         .do_destroy             = osp_object_destroy,
305 };
306
307 static int osp_object_init(const struct lu_env *env, struct lu_object *o,
308                            const struct lu_object_conf *unused)
309 {
310         struct osp_object *po = lu2osp_obj(o);
311
312         po->opo_obj.do_ops = &osp_obj_ops;
313
314         return 0;
315 }
316
317 static void osp_object_free(const struct lu_env *env, struct lu_object *o)
318 {
319         struct osp_object       *obj = lu2osp_obj(o);
320         struct lu_object_header *h = o->lo_header;
321
322         dt_object_fini(&obj->opo_obj);
323         lu_object_header_fini(h);
324         OBD_SLAB_FREE_PTR(obj, osp_object_kmem);
325 }
326
327 static void osp_object_release(const struct lu_env *env, struct lu_object *o)
328 {
329         struct osp_object       *po = lu2osp_obj(o);
330         struct osp_device       *d  = lu2osp_dev(o->lo_dev);
331
332         ENTRY;
333
334         /*
335          * release reservation if object was declared but not created
336          * this may require lu_object_put() in LOD
337          */
338         if (unlikely(po->opo_reserved)) {
339                 LASSERT(d->opd_pre_reserved > 0);
340                 cfs_spin_lock(&d->opd_pre_lock);
341                 d->opd_pre_reserved--;
342                 cfs_spin_unlock(&d->opd_pre_lock);
343
344                 /* not needed in cache any more */
345                 cfs_set_bit(LU_OBJECT_HEARD_BANSHEE, &o->lo_header->loh_flags);
346         }
347         EXIT;
348 }
349
350 static int osp_object_print(const struct lu_env *env, void *cookie,
351                             lu_printer_t p, const struct lu_object *l)
352 {
353         const struct osp_object *o = lu2osp_obj((struct lu_object *)l);
354
355         return (*p)(env, cookie, LUSTRE_OSP_NAME"-object@%p", o);
356 }
357
358 static int osp_object_invariant(const struct lu_object *o)
359 {
360         LBUG();
361 }
362
363 struct lu_object_operations osp_lu_obj_ops = {
364         .loo_object_init        = osp_object_init,
365         .loo_object_free        = osp_object_free,
366         .loo_object_release     = osp_object_release,
367         .loo_object_print       = osp_object_print,
368         .loo_object_invariant   = osp_object_invariant
369 };