Whamcloud - gitweb
LU-7952 osp: Move strlen() call below LASSERT()
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * lustre/osp/osp_object.c
30  *
31  * Lustre OST Proxy Device (OSP) is the agent on the local MDT for the OST
32  * or remote MDT.
33  *
34  * OSP object attributes cache
35  * ---------------------------
36  * OSP object is the stub of the remote OST-object or MDT-object. Both the
37  * attribute and the extended attributes are stored on the peer side remotely.
38  * It is inefficient to send RPC to peer to fetch those attributes when every
39  * get_attr()/get_xattr() called. For a large system, the LFSCK synchronous
40  * mode scanning is prohibitively inefficient.
41  *
42  * So the OSP maintains the OSP object attributes cache to cache some
43  * attributes on the local MDT. The cache is organized against the OSP
44  * object as follows:
45  *
46  * struct osp_xattr_entry {
47  *      struct list_head         oxe_list;
48  *      atomic_t                 oxe_ref;
49  *      void                    *oxe_value;
50  *      int                      oxe_buflen;
51  *      int                      oxe_namelen;
52  *      int                      oxe_vallen;
53  *      unsigned int             oxe_exist:1,
54  *                               oxe_ready:1;
55  *      char                     oxe_buf[0];
56  * };
57  *
58  * struct osp_object {
59  *      ...
60  *      struct lu_attr          opo_attr;
61  *      struct list_head        opo_xattr_list;
62  *      spinlock_t              opo_lock;
63  *      ...
64  * };
65  *
66  * The basic attributes, such as owner/mode/flags, are stored in the
67  * osp_object::opo_attr. The extended attributes will be stored
68  * as osp_xattr_entry. Every extended attribute has an independent
69  * osp_xattr_entry, and all the osp_xattr_entry are linked into the
70  * osp_object::opo_xattr_list. The OSP object attributes cache
71  * is protected by the osp_object::opo_lock.
72  *
73  * Not all OSP objects have an attributes cache because maintaining
74  * the cache requires some resources. Currently, the OSP object
75  * attributes cache will be initialized when the attributes or the
76  * extended attributes are pre-fetched via osp_declare_attr_get()
77  * or osp_declare_xattr_get(). That is usually for LFSCK purpose,
78  * but it also can be shared by others.
79  *
80  *
81  * XXX: NOT prepare out RPC for remote transaction. ((please refer to the
82  *      comment of osp_trans_create() for remote transaction)
83  *
84  * According to our current transaction/dt_object_lock framework (to make
85  * the cross-MDTs modification for DNE1 to be workable), the transaction
86  * sponsor will start the transaction firstly, then try to acquire related
87  * dt_object_lock if needed. Under such rules, if we want to prepare the
88  * OUT RPC in the transaction declare phase, then related attr/xattr
89  * should be known without dt_object_lock. But such condition maybe not
90  * true for some remote transaction case. For example:
91  *
92  * For linkEA repairing (by LFSCK) case, before the LFSCK thread obtained
93  * the dt_object_lock on the target MDT-object, it cannot know whether
94  * the MDT-object has linkEA or not, neither invalid or not.
95  *
96  * Since the LFSCK thread cannot hold dt_object_lock before the remote
97  * transaction start (otherwise there will be some potential deadlock),
98  * it cannot prepare related OUT RPC for repairing during the declare
99  * phase as other normal transactions do.
100  *
101  * To resolve the trouble, we will make OSP to prepare related OUT RPC
102  * after remote transaction started, and trigger the remote updating
103  * (send RPC) when trans_stop. Then the up layer users, such as LFSCK,
104  * can follow the general rule to handle trans_start/dt_object_lock
105  * for repairing linkEA inconsistency without distinguishing remote
106  * MDT-object.
107  *
108  * In fact, above solution for remote transaction should be the normal
109  * model without considering DNE1. The trouble brought by DNE1 will be
110  * resolved in DNE2. At that time, this patch can be removed.
111  *
112  *
113  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
114  * Author: Mikhail Pershin <mike.tappro@intel.com>
115  */
116
117 #define DEBUG_SUBSYSTEM S_MDS
118
119 #include <lustre_obdo.h>
120 #include <lustre_swab.h>
121
122 #include "osp_internal.h"
123
124 static inline __u32 osp_dev2node(struct osp_device *osp)
125 {
126         return osp->opd_storage->dd_lu_dev.ld_site->ld_seq_site->ss_node_id;
127 }
128
129 static inline bool is_ost_obj(struct lu_object *lo)
130 {
131         return !lu2osp_dev(lo->lo_dev)->opd_connect_mdt;
132 }
133
134 /**
135  * Assign FID to the OST object.
136  *
137  * This function will assign the FID to the OST object of a striped file.
138  *
139  * \param[in] env       pointer to the thread context
140  * \param[in] d         pointer to the OSP device
141  * \param[in] o         pointer to the OSP object that the FID will be
142  *                      assigned to
143  */
144 static void osp_object_assign_fid(const struct lu_env *env,
145                                   struct osp_device *d, struct osp_object *o)
146 {
147         struct osp_thread_info *osi = osp_env_info(env);
148
149         LASSERT(fid_is_zero(lu_object_fid(&o->opo_obj.do_lu)));
150         LASSERT(o->opo_reserved);
151         o->opo_reserved = 0;
152
153         osp_precreate_get_fid(env, d, &osi->osi_fid);
154
155         lu_object_assign_fid(env, &o->opo_obj.do_lu, &osi->osi_fid);
156 }
157
158 /**
159  * Find the named extended attribute in the OSP object attributes cache.
160  *
161  * The caller should take the osp_object::opo_lock before calling
162  * this function.
163  *
164  * \param[in] obj       pointer to the OSP object
165  * \param[in] name      the name of the extended attribute
166  * \param[in] namelen   the name length of the extended attribute
167  *
168  * \retval              pointer to the found extended attribute entry
169  * \retval              NULL if the specified extended attribute is not
170  *                      in the cache
171  */
172 static struct osp_xattr_entry *
173 osp_oac_xattr_find_locked(struct osp_object *obj, const char *name,
174                           size_t namelen)
175 {
176         struct osp_xattr_entry *oxe;
177
178         list_for_each_entry(oxe, &obj->opo_xattr_list, oxe_list) {
179                 if (namelen == oxe->oxe_namelen &&
180                     strncmp(name, oxe->oxe_buf, namelen) == 0)
181                         return oxe;
182         }
183
184         return NULL;
185 }
186
187 /**
188  * Find the named extended attribute in the OSP object attributes cache.
189  *
190  * Call osp_oac_xattr_find_locked() with the osp_object::opo_lock held.
191  *
192  * \param[in] obj       pointer to the OSP object
193  * \param[in] name      the name of the extended attribute
194  * \param[in] unlink    true if the extended attribute entry is to be removed
195  *                      from the cache
196  *
197  * \retval              pointer to the found extended attribute entry
198  * \retval              NULL if the specified extended attribute is not
199  *                      in the cache
200  */
201 static struct osp_xattr_entry *osp_oac_xattr_find(struct osp_object *obj,
202                                                   const char *name, bool unlink)
203 {
204         struct osp_xattr_entry *oxe = NULL;
205
206         spin_lock(&obj->opo_lock);
207         oxe = osp_oac_xattr_find_locked(obj, name, strlen(name));
208         if (oxe != NULL) {
209                 if (unlink)
210                         list_del_init(&oxe->oxe_list);
211                 else
212                         atomic_inc(&oxe->oxe_ref);
213         }
214         spin_unlock(&obj->opo_lock);
215
216         return oxe;
217 }
218
219 /**
220  * Find the named extended attribute in the OSP object attributes cache.
221  *
222  * If it is not in the cache, then add an empty entry (that will be
223  * filled later) to cache with the given name.
224  *
225  * \param[in] obj       pointer to the OSP object
226  * \param[in] name      the name of the extended attribute
227  * \param[in] len       the length of the extended attribute value
228  *
229  * \retval              pointer to the found or new-created extended
230  *                      attribute entry
231  * \retval              NULL if the specified extended attribute is not in the
232  *                      cache or fail to add new empty entry to the cache.
233  */
234 static struct osp_xattr_entry *
235 osp_oac_xattr_find_or_add(struct osp_object *obj, const char *name, size_t len)
236 {
237         struct osp_xattr_entry *oxe;
238         struct osp_xattr_entry *tmp     = NULL;
239         size_t                  namelen = strlen(name);
240         size_t                  size    = sizeof(*oxe) + namelen + 1 + len;
241
242         oxe = osp_oac_xattr_find(obj, name, false);
243         if (oxe != NULL)
244                 return oxe;
245
246         OBD_ALLOC(oxe, size);
247         if (unlikely(oxe == NULL))
248                 return NULL;
249
250         INIT_LIST_HEAD(&oxe->oxe_list);
251         oxe->oxe_buflen = size;
252         oxe->oxe_namelen = namelen;
253         memcpy(oxe->oxe_buf, name, namelen);
254         oxe->oxe_value = oxe->oxe_buf + namelen + 1;
255         /* One ref is for the caller, the other is for the entry on the list. */
256         atomic_set(&oxe->oxe_ref, 2);
257
258         spin_lock(&obj->opo_lock);
259         tmp = osp_oac_xattr_find_locked(obj, name, namelen);
260         if (tmp == NULL)
261                 list_add_tail(&oxe->oxe_list, &obj->opo_xattr_list);
262         else
263                 atomic_inc(&tmp->oxe_ref);
264         spin_unlock(&obj->opo_lock);
265
266         if (tmp != NULL) {
267                 OBD_FREE(oxe, size);
268                 oxe = tmp;
269         }
270
271         return oxe;
272 }
273
274 /**
275  * Add the given extended attribute to the OSP object attributes cache.
276  *
277  * If there is an old extended attributed entry with the same name,
278  * remove it from the cache and return it via the parameter \a poxe.
279  *
280  * \param[in] obj       pointer to the OSP object
281  * \param[in,out] poxe  double pointer to the OSP object extended attribute
282  *                      entry: the new extended attribute entry is transferred
283  *                      via such pointer target, and if old the extended
284  *                      attribute entry exists, then it will be returned back
285  *                      via such pointer target.
286  * \param[in] len       the length of the (new) extended attribute value
287  *
288  * \retval              pointer to the new extended attribute entry
289  * \retval              NULL for failure cases.
290  */
291 static struct osp_xattr_entry *
292 osp_oac_xattr_replace(struct osp_object *obj,
293                       struct osp_xattr_entry **poxe, size_t len)
294 {
295         struct osp_xattr_entry *oxe;
296         size_t                  namelen = (*poxe)->oxe_namelen;
297         size_t                  size    = sizeof(*oxe) + namelen + 1 + len;
298
299         OBD_ALLOC(oxe, size);
300         if (unlikely(oxe == NULL))
301                 return NULL;
302
303         INIT_LIST_HEAD(&oxe->oxe_list);
304         oxe->oxe_buflen = size;
305         oxe->oxe_namelen = namelen;
306         memcpy(oxe->oxe_buf, (*poxe)->oxe_buf, namelen);
307         oxe->oxe_value = oxe->oxe_buf + namelen + 1;
308         /* One ref is for the caller, the other is for the entry on the list. */
309         atomic_set(&oxe->oxe_ref, 2);
310
311         spin_lock(&obj->opo_lock);
312         *poxe = osp_oac_xattr_find_locked(obj, oxe->oxe_buf, namelen);
313         LASSERT(*poxe != NULL);
314
315         list_del_init(&(*poxe)->oxe_list);
316         list_add_tail(&oxe->oxe_list, &obj->opo_xattr_list);
317         spin_unlock(&obj->opo_lock);
318
319         return oxe;
320 }
321
322 /**
323  * Release reference from the OSP object extended attribute entry.
324  *
325  * If it is the last reference, then free the entry.
326  *
327  * \param[in] oxe       pointer to the OSP object extended attribute entry.
328  */
329 static inline void osp_oac_xattr_put(struct osp_xattr_entry *oxe)
330 {
331         if (atomic_dec_and_test(&oxe->oxe_ref)) {
332                 LASSERT(list_empty(&oxe->oxe_list));
333
334                 OBD_FREE(oxe, oxe->oxe_buflen);
335         }
336 }
337
338 /**
339  * Parse the OSP object attribute from the RPC reply.
340  *
341  * If the attribute is valid, then it will be added to the OSP object
342  * attributes cache.
343  *
344  * \param[in] env       pointer to the thread context
345  * \param[in] reply     pointer to the RPC reply
346  * \param[in] req       pointer to the RPC request
347  * \param[out] attr     pointer to buffer to hold the output attribute
348  * \param[in] obj       pointer to the OSP object
349  * \param[in] index     the index of the attribute buffer in the reply
350  *
351  * \retval              0 for success
352  * \retval              negative error number on failure
353  */
354 static int osp_get_attr_from_reply(const struct lu_env *env,
355                                    struct object_update_reply *reply,
356                                    struct ptlrpc_request *req,
357                                    struct lu_attr *attr,
358                                    struct osp_object *obj, int index)
359 {
360         struct osp_thread_info  *osi    = osp_env_info(env);
361         struct lu_buf           *rbuf   = &osi->osi_lb2;
362         struct obdo             *lobdo  = &osi->osi_obdo;
363         struct obdo             *wobdo;
364         int                     rc;
365
366         rc = object_update_result_data_get(reply, rbuf, index);
367         if (rc < 0)
368                 return rc;
369
370         wobdo = rbuf->lb_buf;
371         if (rbuf->lb_len != sizeof(*wobdo))
372                 return -EPROTO;
373
374         LASSERT(req != NULL);
375         if (ptlrpc_req_need_swab(req))
376                 lustre_swab_obdo(wobdo);
377
378         lustre_get_wire_obdo(NULL, lobdo, wobdo);
379         spin_lock(&obj->opo_lock);
380         la_from_obdo(&obj->opo_attr, lobdo, lobdo->o_valid);
381         if (attr != NULL)
382                 *attr = obj->opo_attr;
383         spin_unlock(&obj->opo_lock);
384
385         return 0;
386 }
387
388 /**
389  * Interpreter function for getting OSP object attribute asynchronously.
390  *
391  * Called to interpret the result of an async mode RPC for getting the
392  * OSP object attribute.
393  *
394  * \param[in] env       pointer to the thread context
395  * \param[in] reply     pointer to the RPC reply
396  * \param[in] req       pointer to the RPC request
397  * \param[in] obj       pointer to the OSP object
398  * \param[out] data     pointer to buffer to hold the output attribute
399  * \param[in] index     the index of the attribute buffer in the reply
400  * \param[in] rc        the result for handling the RPC
401  *
402  * \retval              0 for success
403  * \retval              negative error number on failure
404  */
405 static int osp_attr_get_interpterer(const struct lu_env *env,
406                                     struct object_update_reply *reply,
407                                     struct ptlrpc_request *req,
408                                     struct osp_object *obj,
409                                     void *data, int index, int rc)
410 {
411         struct lu_attr *attr = data;
412
413         if (rc == 0) {
414                 osp2lu_obj(obj)->lo_header->loh_attr |= LOHA_EXISTS;
415                 obj->opo_non_exist = 0;
416
417                 return osp_get_attr_from_reply(env, reply, req, NULL, obj,
418                                                index);
419         } else {
420                 if (rc == -ENOENT) {
421                         osp2lu_obj(obj)->lo_header->loh_attr &= ~LOHA_EXISTS;
422                         obj->opo_non_exist = 1;
423                 }
424
425                 spin_lock(&obj->opo_lock);
426                 attr->la_valid = 0;
427                 spin_unlock(&obj->opo_lock);
428         }
429
430         return 0;
431 }
432
433 /**
434  * Implement OSP layer dt_object_operations::do_declare_attr_get() interface.
435  *
436  * Declare that the caller will get attribute from the specified OST object.
437  *
438  * This function adds an Object Unified Target (OUT) sub-request to the per-OSP
439  * based shared asynchronous request queue. The osp_attr_get_interpterer()
440  * is registered as the interpreter function to handle the result of this
441  * sub-request.
442  *
443  * \param[in] env       pointer to the thread context
444  * \param[in] dt        pointer to the OSP layer dt_object
445  *
446  * \retval              0 for success
447  * \retval              negative error number on failure
448  */
449 static int osp_declare_attr_get(const struct lu_env *env, struct dt_object *dt)
450 {
451         struct osp_object       *obj    = dt2osp_obj(dt);
452         struct osp_device       *osp    = lu2osp_dev(dt->do_lu.lo_dev);
453         int                      rc     = 0;
454
455         mutex_lock(&osp->opd_async_requests_mutex);
456         rc = osp_insert_async_request(env, OUT_ATTR_GET, obj, 0, NULL, NULL,
457                                       &obj->opo_attr, sizeof(struct obdo),
458                                       osp_attr_get_interpterer);
459         mutex_unlock(&osp->opd_async_requests_mutex);
460
461         return rc;
462 }
463
464 /**
465  * Implement OSP layer dt_object_operations::do_attr_get() interface.
466  *
467  * Get attribute from the specified MDT/OST object.
468  *
469  * If the attribute is in the OSP object attributes cache, then return
470  * the cached attribute directly. Otherwise it will trigger an OUT RPC
471  * to the peer to get the attribute synchronously, if successful, add it
472  * to the OSP attributes cache. (\see lustre/osp/osp_trans.c for OUT RPC.)
473  *
474  * \param[in] env       pointer to the thread context
475  * \param[in] dt        pointer to the OSP layer dt_object
476  * \param[out] attr     pointer to the buffer to hold the output attribute
477  *
478  * \retval              0 for success
479  * \retval              negative error number on failure
480  */
481 int osp_attr_get(const struct lu_env *env, struct dt_object *dt,
482                  struct lu_attr *attr)
483 {
484         struct osp_device               *osp = lu2osp_dev(dt->do_lu.lo_dev);
485         struct osp_object               *obj = dt2osp_obj(dt);
486         struct dt_device                *dev = &osp->opd_dt_dev;
487         struct osp_update_request       *update;
488         struct object_update_reply      *reply;
489         struct ptlrpc_request           *req = NULL;
490         int                             rc = 0;
491         ENTRY;
492
493         if (is_ost_obj(&dt->do_lu) && obj->opo_non_exist)
494                 RETURN(-ENOENT);
495
496         spin_lock(&obj->opo_lock);
497         if (obj->opo_attr.la_valid != 0 && !obj->opo_stale) {
498                 *attr = obj->opo_attr;
499                 spin_unlock(&obj->opo_lock);
500
501                 RETURN(0);
502         }
503         spin_unlock(&obj->opo_lock);
504
505         update = osp_update_request_create(dev);
506         if (IS_ERR(update))
507                 RETURN(PTR_ERR(update));
508
509         rc = osp_update_rpc_pack(env, attr_get, update, OUT_ATTR_GET,
510                                  lu_object_fid(&dt->do_lu));
511         if (rc != 0) {
512                 CERROR("%s: Insert update error "DFID": rc = %d\n",
513                        dev->dd_lu_dev.ld_obd->obd_name,
514                        PFID(lu_object_fid(&dt->do_lu)), rc);
515
516                 GOTO(out, rc);
517         }
518
519         rc = osp_remote_sync(env, osp, update, &req);
520         if (rc != 0) {
521                 if (rc == -ENOENT) {
522                         osp2lu_obj(obj)->lo_header->loh_attr &= ~LOHA_EXISTS;
523                         obj->opo_non_exist = 1;
524                 } else {
525                         CERROR("%s:osp_attr_get update error "DFID": rc = %d\n",
526                                dev->dd_lu_dev.ld_obd->obd_name,
527                                PFID(lu_object_fid(&dt->do_lu)), rc);
528                 }
529
530                 GOTO(out, rc);
531         }
532
533         osp2lu_obj(obj)->lo_header->loh_attr |= LOHA_EXISTS;
534         obj->opo_non_exist = 0;
535         reply = req_capsule_server_sized_get(&req->rq_pill,
536                                              &RMF_OUT_UPDATE_REPLY,
537                                              OUT_UPDATE_REPLY_SIZE);
538         if (reply == NULL || reply->ourp_magic != UPDATE_REPLY_MAGIC)
539                 GOTO(out, rc = -EPROTO);
540
541         rc = osp_get_attr_from_reply(env, reply, req, attr, obj, 0);
542         if (rc != 0)
543                 GOTO(out, rc);
544
545         spin_lock(&obj->opo_lock);
546         obj->opo_stale = 0;
547         spin_unlock(&obj->opo_lock);
548
549         GOTO(out, rc);
550
551 out:
552         if (req != NULL)
553                 ptlrpc_req_finished(req);
554
555         osp_update_request_destroy(env, update);
556
557         return rc;
558 }
559
560 /**
561  * Implement OSP layer dt_object_operations::do_declare_attr_set() interface.
562  *
563  * If the transaction is not remote one, then declare the credits that will
564  * be used for the subsequent llog record for the object's attributes.
565  *
566  * \param[in] env       pointer to the thread context
567  * \param[in] dt        pointer to the OSP layer dt_object
568  * \param[in] attr      pointer to the attribute to be set
569  * \param[in] th        pointer to the transaction handler
570  *
571  * \retval              0 for success
572  * \retval              negative error number on failure
573  */
574 static int osp_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
575                                 const struct lu_attr *attr, struct thandle *th)
576 {
577         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
578         struct osp_object       *o = dt2osp_obj(dt);
579         int                     rc;
580
581         if (is_only_remote_trans(th))
582                 return osp_md_declare_attr_set(env, dt, attr, th);
583         /*
584          * Usually we don't allow server stack to manipulate size
585          * but there is a special case when striping is created
586          * late, after stripeless file got truncated to non-zero.
587          *
588          * In this case we do the following:
589          *
590          * 1) grab id in declare - this can lead to leaked OST objects
591          *    but we don't currently have proper mechanism and the only
592          *    options we have are to do truncate RPC holding transaction
593          *    open (very bad) or to grab id in declare at cost of leaked
594          *    OST object in same very rare unfortunate case (just bad)
595          *    notice 1.6-2.0 do assignment outside of running transaction
596          *    all the time, meaning many more chances for leaked objects.
597          *
598          * 2) send synchronous truncate RPC with just assigned id
599          */
600
601         /* there are few places in MDD code still passing NULL
602          * XXX: to be fixed soon */
603         if (attr == NULL)
604                 RETURN(0);
605
606         if (attr->la_valid & LA_SIZE && attr->la_size > 0 &&
607             fid_is_zero(lu_object_fid(&o->opo_obj.do_lu))) {
608                 LASSERT(!dt_object_exists(dt));
609                 osp_object_assign_fid(env, d, o);
610                 rc = osp_object_truncate(env, dt, attr->la_size);
611                 if (rc != 0)
612                         RETURN(rc);
613         }
614
615         if (!(attr->la_valid & (LA_UID | LA_GID)))
616                 RETURN(0);
617
618         /* track all UID/GID changes via llog */
619         rc = osp_sync_declare_add(env, o, MDS_SETATTR64_REC, th);
620
621         return 0;
622 }
623
624 /**
625  * Implement OSP layer dt_object_operations::do_attr_set() interface.
626  *
627  * Set attribute to the specified OST object.
628  *
629  * If the transaction is a remote one, then add OUT_ATTR_SET sub-request
630  * in the OUT RPC that will be flushed when the remote transaction stop.
631  * Otherwise, it will generate a MDS_SETATTR64_REC record in the llog that
632  * will be handled by a dedicated thread asynchronously.
633  *
634  * If the attribute entry exists in the OSP object attributes cache,
635  * then update the cached attribute according to given attribute.
636  *
637  * \param[in] env       pointer to the thread context
638  * \param[in] dt        pointer to the OSP layer dt_object
639  * \param[in] attr      pointer to the attribute to be set
640  * \param[in] th        pointer to the transaction handler
641  *
642  * \retval              0 for success
643  * \retval              negative error number on failure
644  */
645 static int osp_attr_set(const struct lu_env *env, struct dt_object *dt,
646                         const struct lu_attr *attr, struct thandle *th)
647 {
648         struct osp_object       *o = dt2osp_obj(dt);
649         int                      rc = 0;
650         ENTRY;
651
652         /* we're interested in uid/gid changes only */
653         if (!(attr->la_valid & (LA_UID | LA_GID)))
654                 RETURN(0);
655
656         if (!is_only_remote_trans(th)) {
657                 rc = osp_sync_add(env, o, MDS_SETATTR64_REC, th, attr);
658                 /* XXX: send new uid/gid to OST ASAP? */
659         } else {
660                 struct lu_attr  *la;
661
662                 /* It is for OST-object attr_set directly without updating
663                  * local MDT-object attribute. It is usually used by LFSCK. */
664                 rc = osp_md_attr_set(env, dt, attr, th);
665                 CDEBUG(D_INFO, "(1) set attr "DFID": rc = %d\n",
666                        PFID(&dt->do_lu.lo_header->loh_fid), rc);
667
668                 if (rc != 0)
669                         RETURN(rc);
670
671                 /* Update the OSP object attributes cache. */
672                 la = &o->opo_attr;
673                 spin_lock(&o->opo_lock);
674                 if (attr->la_valid & LA_UID) {
675                         la->la_uid = attr->la_uid;
676                         la->la_valid |= LA_UID;
677                 }
678
679                 if (attr->la_valid & LA_GID) {
680                         la->la_gid = attr->la_gid;
681                         la->la_valid |= LA_GID;
682                 }
683                 spin_unlock(&o->opo_lock);
684         }
685
686         RETURN(rc);
687 }
688
689 /**
690  * Interpreter function for getting OSP object extended attribute asynchronously
691  *
692  * Called to interpret the result of an async mode RPC for getting the
693  * OSP object extended attribute.
694  *
695  * \param[in] env       pointer to the thread context
696  * \param[in] reply     pointer to the RPC reply
697  * \param[in] req       pointer to the RPC request
698  * \param[in] obj       pointer to the OSP object
699  * \param[out] data     pointer to OSP object attributes cache
700  * \param[in] index     the index of the attribute buffer in the reply
701  * \param[in] rc        the result for handling the RPC
702  *
703  * \retval              0 for success
704  * \retval              negative error number on failure
705  */
706 static int osp_xattr_get_interpterer(const struct lu_env *env,
707                                      struct object_update_reply *reply,
708                                      struct ptlrpc_request *req,
709                                      struct osp_object *obj,
710                                      void *data, int index, int rc)
711 {
712         struct osp_xattr_entry  *oxe  = data;
713         struct lu_buf           *rbuf = &osp_env_info(env)->osi_lb2;
714
715         if (rc == 0) {
716                 size_t len = sizeof(*oxe) + oxe->oxe_namelen + 1;
717
718                 rc = object_update_result_data_get(reply, rbuf, index);
719                 if (rc < 0 || rbuf->lb_len > (oxe->oxe_buflen - len)) {
720                         spin_lock(&obj->opo_lock);
721                         oxe->oxe_ready = 0;
722                         spin_unlock(&obj->opo_lock);
723                         osp_oac_xattr_put(oxe);
724
725                         return rc < 0 ? rc : -ERANGE;
726                 }
727
728                 spin_lock(&obj->opo_lock);
729                 oxe->oxe_vallen = rbuf->lb_len;
730                 memcpy(oxe->oxe_value, rbuf->lb_buf, rbuf->lb_len);
731                 oxe->oxe_exist = 1;
732                 oxe->oxe_ready = 1;
733                 spin_unlock(&obj->opo_lock);
734         } else if (rc == -ENOENT || rc == -ENODATA) {
735                 spin_lock(&obj->opo_lock);
736                 oxe->oxe_exist = 0;
737                 oxe->oxe_ready = 1;
738                 spin_unlock(&obj->opo_lock);
739         } else {
740                 spin_lock(&obj->opo_lock);
741                 oxe->oxe_ready = 0;
742                 spin_unlock(&obj->opo_lock);
743         }
744
745         osp_oac_xattr_put(oxe);
746
747         return 0;
748 }
749
750 /**
751  * Implement OSP dt_object_operations::do_declare_xattr_get() interface.
752  *
753  * Declare that the caller will get extended attribute from the specified
754  * OST object.
755  *
756  * This function will add an OUT_XATTR_GET sub-request to the per OSP
757  * based shared asynchronous request queue with the interpreter function:
758  * osp_xattr_get_interpterer().
759  *
760  * \param[in] env       pointer to the thread context
761  * \param[in] dt        pointer to the OSP layer dt_object
762  * \param[out] buf      pointer to the lu_buf to hold the extended attribute
763  * \param[in] name      the name for the expected extended attribute
764  *
765  * \retval              0 for success
766  * \retval              negative error number on failure
767  */
768 static int osp_declare_xattr_get(const struct lu_env *env, struct dt_object *dt,
769                                  struct lu_buf *buf, const char *name)
770 {
771         struct osp_object       *obj     = dt2osp_obj(dt);
772         struct osp_device       *osp     = lu2osp_dev(dt->do_lu.lo_dev);
773         struct osp_xattr_entry  *oxe;
774         __u16 namelen;
775         int                      rc      = 0;
776
777         LASSERT(buf != NULL);
778         LASSERT(name != NULL);
779
780         namelen = strlen(name);
781
782         /* If only for xattr size, return directly. */
783         if (unlikely(buf->lb_len == 0))
784                 return 0;
785
786         oxe = osp_oac_xattr_find_or_add(obj, name, buf->lb_len);
787         if (oxe == NULL)
788                 return -ENOMEM;
789
790         mutex_lock(&osp->opd_async_requests_mutex);
791         rc = osp_insert_async_request(env, OUT_XATTR_GET, obj, 1,
792                                       &namelen, (const void **)&name,
793                                       oxe, buf->lb_len,
794                                       osp_xattr_get_interpterer);
795         if (rc != 0) {
796                 mutex_unlock(&osp->opd_async_requests_mutex);
797                 osp_oac_xattr_put(oxe);
798         } else {
799                 struct osp_update_request *our;
800                 struct osp_update_request_sub *ours;
801
802                 /* XXX: Currently, we trigger the batched async OUT
803                  *      RPC via dt_declare_xattr_get(). It is not
804                  *      perfect solution, but works well now.
805                  *
806                  *      We will improve it in the future. */
807                 our = osp->opd_async_requests;
808                 ours = osp_current_object_update_request(our);
809                 if (ours != NULL && ours->ours_req != NULL &&
810                     ours->ours_req->ourq_count > 0) {
811                         osp->opd_async_requests = NULL;
812                         mutex_unlock(&osp->opd_async_requests_mutex);
813                         rc = osp_unplug_async_request(env, osp, our);
814                 } else {
815                         mutex_unlock(&osp->opd_async_requests_mutex);
816                 }
817         }
818
819         return rc;
820 }
821
822 /**
823  * Implement OSP layer dt_object_operations::do_xattr_get() interface.
824  *
825  * Get extended attribute from the specified MDT/OST object.
826  *
827  * If the extended attribute is in the OSP object attributes cache, then
828  * return the cached extended attribute directly. Otherwise it will get
829  * the extended attribute synchronously, if successful, add it to the OSP
830  * attributes cache. (\see lustre/osp/osp_trans.c for OUT RPC.)
831  *
832  * There is a race condition: some other thread has added the named extended
833  * attributed entry to the OSP object attributes cache during the current
834  * OUT_XATTR_GET handling. If such case happens, the OSP will replace the
835  * (just) existing extended attribute entry with the new replied one.
836  *
837  * \param[in] env       pointer to the thread context
838  * \param[in] dt        pointer to the OSP layer dt_object
839  * \param[out] buf      pointer to the lu_buf to hold the extended attribute
840  * \param[in] name      the name for the expected extended attribute
841  *
842  * \retval              0 for success
843  * \retval              negative error number on failure
844  */
845 int osp_xattr_get(const struct lu_env *env, struct dt_object *dt,
846                   struct lu_buf *buf, const char *name)
847 {
848         struct osp_device       *osp    = lu2osp_dev(dt->do_lu.lo_dev);
849         struct osp_object       *obj    = dt2osp_obj(dt);
850         struct dt_device        *dev    = &osp->opd_dt_dev;
851         struct lu_buf           *rbuf   = &osp_env_info(env)->osi_lb2;
852         struct osp_update_request *update = NULL;
853         struct ptlrpc_request   *req    = NULL;
854         struct object_update_reply *reply;
855         struct osp_xattr_entry  *oxe    = NULL;
856         const char              *dname  = dt->do_lu.lo_dev->ld_obd->obd_name;
857         int                      rc     = 0;
858         ENTRY;
859
860         LASSERT(buf != NULL);
861         LASSERT(name != NULL);
862
863         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_NETWORK) &&
864             osp->opd_index == cfs_fail_val) {
865                 if (is_ost_obj(&dt->do_lu)) {
866                         if (osp_dev2node(osp) == cfs_fail_val)
867                                 RETURN(-ENOTCONN);
868                 } else {
869                         if (strcmp(name, XATTR_NAME_LINK) == 0)
870                                 RETURN(-ENOTCONN);
871                 }
872         }
873
874         if (unlikely(obj->opo_non_exist))
875                 RETURN(-ENOENT);
876
877         oxe = osp_oac_xattr_find(obj, name, false);
878         if (oxe != NULL) {
879                 spin_lock(&obj->opo_lock);
880                 if (oxe->oxe_ready) {
881                         if (!oxe->oxe_exist)
882                                 GOTO(unlock, rc = -ENODATA);
883
884                         if (buf->lb_buf == NULL)
885                                 GOTO(unlock, rc = oxe->oxe_vallen);
886
887                         if (buf->lb_len < oxe->oxe_vallen)
888                                 GOTO(unlock, rc = -ERANGE);
889
890                         memcpy(buf->lb_buf, oxe->oxe_value,
891                                oxe->oxe_vallen);
892
893                         GOTO(unlock, rc = oxe->oxe_vallen);
894
895 unlock:
896                         spin_unlock(&obj->opo_lock);
897                         osp_oac_xattr_put(oxe);
898
899                         return rc;
900                 }
901                 spin_unlock(&obj->opo_lock);
902         }
903         update = osp_update_request_create(dev);
904         if (IS_ERR(update))
905                 GOTO(out, rc = PTR_ERR(update));
906
907         rc = osp_update_rpc_pack(env, xattr_get, update, OUT_XATTR_GET,
908                                  lu_object_fid(&dt->do_lu), name, buf->lb_len);
909         if (rc != 0) {
910                 CERROR("%s: Insert update error "DFID": rc = %d\n",
911                        dname, PFID(lu_object_fid(&dt->do_lu)), rc);
912                 GOTO(out, rc);
913         }
914
915         rc = osp_remote_sync(env, osp, update, &req);
916         if (rc < 0) {
917                 if (rc == -ENOENT) {
918                         dt->do_lu.lo_header->loh_attr &= ~LOHA_EXISTS;
919                         obj->opo_non_exist = 1;
920                 }
921
922                 if (oxe == NULL)
923                         oxe = osp_oac_xattr_find_or_add(obj, name, buf->lb_len);
924
925                 if (oxe == NULL) {
926                         CWARN("%s: Fail to add xattr (%s) to cache for "
927                               DFID" (1): rc = %d\n", dname, name,
928                               PFID(lu_object_fid(&dt->do_lu)), rc);
929
930                         GOTO(out, rc);
931                 }
932
933                 spin_lock(&obj->opo_lock);
934                 if (rc == -ENOENT || rc == -ENODATA) {
935                         oxe->oxe_exist = 0;
936                         oxe->oxe_ready = 1;
937                 } else {
938                         oxe->oxe_ready = 0;
939                 }
940                 spin_unlock(&obj->opo_lock);
941
942                 GOTO(out, rc);
943         }
944
945         reply = req_capsule_server_sized_get(&req->rq_pill,
946                                              &RMF_OUT_UPDATE_REPLY,
947                                              OUT_UPDATE_REPLY_SIZE);
948         if (reply->ourp_magic != UPDATE_REPLY_MAGIC) {
949                 CERROR("%s: Wrong version %x expected %x "DFID": rc = %d\n",
950                        dname, reply->ourp_magic, UPDATE_REPLY_MAGIC,
951                        PFID(lu_object_fid(&dt->do_lu)), -EPROTO);
952
953                 GOTO(out, rc = -EPROTO);
954         }
955
956         rc = object_update_result_data_get(reply, rbuf, 0);
957         if (rc < 0)
958                 GOTO(out, rc);
959
960         if (buf->lb_buf == NULL)
961                 GOTO(out, rc);
962
963         if (unlikely(buf->lb_len < rbuf->lb_len))
964                 GOTO(out, rc = -ERANGE);
965
966         memcpy(buf->lb_buf, rbuf->lb_buf, rbuf->lb_len);
967
968         if (oxe == NULL) {
969                 oxe = osp_oac_xattr_find_or_add(obj, name, rbuf->lb_len);
970                 if (oxe == NULL) {
971                         CWARN("%s: Fail to add xattr (%s) to "
972                               "cache for "DFID" (2): rc = %d\n",
973                               dname, name, PFID(lu_object_fid(&dt->do_lu)), rc);
974
975                         GOTO(out, rc);
976                 }
977         }
978
979         if (oxe->oxe_buflen - oxe->oxe_namelen - 1 < rbuf->lb_len) {
980                 struct osp_xattr_entry *old = oxe;
981                 struct osp_xattr_entry *tmp;
982
983                 tmp = osp_oac_xattr_replace(obj, &old, rbuf->lb_len);
984                 osp_oac_xattr_put(oxe);
985                 oxe = tmp;
986                 if (tmp == NULL) {
987                         CWARN("%s: Fail to update xattr (%s) to "
988                               "cache for "DFID": rc = %d\n",
989                               dname, name, PFID(lu_object_fid(&dt->do_lu)), rc);
990                         spin_lock(&obj->opo_lock);
991                         old->oxe_ready = 0;
992                         spin_unlock(&obj->opo_lock);
993
994                         GOTO(out, rc);
995                 }
996
997                 /* Drop the ref for entry on list. */
998                 osp_oac_xattr_put(old);
999         }
1000
1001         spin_lock(&obj->opo_lock);
1002         oxe->oxe_vallen = rbuf->lb_len;
1003         memcpy(oxe->oxe_value, rbuf->lb_buf, rbuf->lb_len);
1004         oxe->oxe_exist = 1;
1005         oxe->oxe_ready = 1;
1006         spin_unlock(&obj->opo_lock);
1007
1008         GOTO(out, rc);
1009
1010 out:
1011         if (req != NULL)
1012                 ptlrpc_req_finished(req);
1013
1014         if (update != NULL && !IS_ERR(update))
1015                 osp_update_request_destroy(env, update);
1016
1017         if (oxe != NULL)
1018                 osp_oac_xattr_put(oxe);
1019
1020         return rc;
1021 }
1022
1023 /**
1024  * Implement OSP layer dt_object_operations::do_declare_xattr_set() interface.
1025  *
1026  * Declare that the caller will set extended attribute to the specified
1027  * MDT/OST object.
1028  *
1029  * If it is non-remote transaction, it will add an OUT_XATTR_SET sub-request
1030  * to the OUT RPC that will be flushed when the transaction start. And if the
1031  * OSP attributes cache is initialized, then check whether the name extended
1032  * attribute entry exists in the cache or not. If yes, replace it; otherwise,
1033  * add the extended attribute to the cache.
1034  *
1035  * \param[in] env       pointer to the thread context
1036  * \param[in] dt        pointer to the OSP layer dt_object
1037  * \param[in] buf       pointer to the lu_buf to hold the extended attribute
1038  * \param[in] name      the name of the extended attribute to be set
1039  * \param[in] flag      to indicate the detailed set operation: LU_XATTR_CREATE
1040  *                      or LU_XATTR_REPLACE or others
1041  * \param[in] th        pointer to the transaction handler
1042  *
1043  * \retval              0 for success
1044  * \retval              negative error number on failure
1045  */
1046 int osp_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
1047                           const struct lu_buf *buf, const char *name,
1048                           int flag, struct thandle *th)
1049 {
1050         return osp_trans_update_request_create(th);
1051 }
1052
1053 /**
1054  * Implement OSP layer dt_object_operations::do_xattr_set() interface.
1055  *
1056  * Set extended attribute to the specified MDT/OST object.
1057  *
1058  * Add an OUT_XATTR_SET sub-request into the OUT RPC that will be flushed in
1059  * the transaction stop. And if the OSP attributes cache is initialized, then
1060  * check whether the name extended attribute entry exists in the cache or not.
1061  * If yes, replace it; otherwise, add the extended attribute to the cache.
1062  *
1063  * \param[in] env       pointer to the thread context
1064  * \param[in] dt        pointer to the OSP layer dt_object
1065  * \param[in] buf       pointer to the lu_buf to hold the extended attribute
1066  * \param[in] name      the name of the extended attribute to be set
1067  * \param[in] fl        to indicate the detailed set operation: LU_XATTR_CREATE
1068  *                      or LU_XATTR_REPLACE or others
1069  * \param[in] th        pointer to the transaction handler
1070  *
1071  * \retval              0 for success
1072  * \retval              negative error number on failure
1073  */
1074 int osp_xattr_set(const struct lu_env *env, struct dt_object *dt,
1075                   const struct lu_buf *buf, const char *name, int fl,
1076                   struct thandle *th)
1077 {
1078         struct osp_object       *o = dt2osp_obj(dt);
1079         struct osp_update_request *update;
1080         struct osp_xattr_entry  *oxe;
1081         int                     rc;
1082         ENTRY;
1083
1084         update = thandle_to_osp_update_request(th);
1085         LASSERT(update != NULL);
1086
1087         CDEBUG(D_INODE, DFID" set xattr '%s' with size %zd\n",
1088                PFID(lu_object_fid(&dt->do_lu)), name, buf->lb_len);
1089
1090         rc = osp_update_rpc_pack(env, xattr_set, update, OUT_XATTR_SET,
1091                                  lu_object_fid(&dt->do_lu), buf, name, fl);
1092         if (rc != 0)
1093                 RETURN(rc);
1094
1095         oxe = osp_oac_xattr_find_or_add(o, name, buf->lb_len);
1096         if (oxe == NULL) {
1097                 CWARN("%s: cannot cache xattr '%s' of "DFID"\n",
1098                       dt->do_lu.lo_dev->ld_obd->obd_name,
1099                       name, PFID(lu_object_fid(&dt->do_lu)));
1100
1101                 RETURN(0);
1102         }
1103
1104         if (oxe->oxe_buflen - oxe->oxe_namelen - 1 < buf->lb_len) {
1105                 struct osp_xattr_entry *old = oxe;
1106                 struct osp_xattr_entry *tmp;
1107
1108                 tmp = osp_oac_xattr_replace(o, &old, buf->lb_len);
1109                 osp_oac_xattr_put(oxe);
1110                 oxe = tmp;
1111                 if (tmp == NULL) {
1112                         CWARN("%s: cannot update cached xattr '%s' of "DFID"\n",
1113                               dt->do_lu.lo_dev->ld_obd->obd_name,
1114                               name, PFID(lu_object_fid(&dt->do_lu)));
1115                         spin_lock(&o->opo_lock);
1116                         old->oxe_ready = 0;
1117                         spin_unlock(&o->opo_lock);
1118
1119                         RETURN(0);
1120                 }
1121
1122                 /* Drop the ref for entry on list. */
1123                 osp_oac_xattr_put(old);
1124         }
1125
1126         spin_lock(&o->opo_lock);
1127         oxe->oxe_vallen = buf->lb_len;
1128         memcpy(oxe->oxe_value, buf->lb_buf, buf->lb_len);
1129         oxe->oxe_exist = 1;
1130         oxe->oxe_ready = 1;
1131         spin_unlock(&o->opo_lock);
1132         osp_oac_xattr_put(oxe);
1133
1134         RETURN(0);
1135 }
1136
1137 /**
1138  * Implement OSP layer dt_object_operations::do_declare_xattr_del() interface.
1139  *
1140  * Declare that the caller will delete extended attribute on the specified
1141  * MDT/OST object.
1142  *
1143  * If it is non-remote transaction, it will add an OUT_XATTR_DEL sub-request
1144  * to the OUT RPC that will be flushed when the transaction start. And if the
1145  * name extended attribute entry exists in the OSP attributes cache, then remove
1146  * it from the cache.
1147  *
1148  * \param[in] env       pointer to the thread context
1149  * \param[in] dt        pointer to the OSP layer dt_object
1150  * \param[in] name      the name of the extended attribute to be set
1151  * \param[in] th        pointer to the transaction handler
1152  *
1153  * \retval              0 for success
1154  * \retval              negative error number on failure
1155  */
1156 int osp_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
1157                           const char *name, struct thandle *th)
1158 {
1159         return osp_trans_update_request_create(th);
1160 }
1161
1162 /**
1163  * Implement OSP layer dt_object_operations::do_xattr_del() interface.
1164  *
1165  * Delete extended attribute on the specified MDT/OST object.
1166  *
1167  * If it is remote transaction, it will add an OUT_XATTR_DEL sub-request into
1168  * the OUT RPC that will be flushed when the transaction stop. And if the name
1169  * extended attribute entry exists in the OSP attributes cache, then remove it
1170  * from the cache.
1171  *
1172  * \param[in] env       pointer to the thread context
1173  * \param[in] dt        pointer to the OSP layer dt_object
1174  * \param[in] name      the name of the extended attribute to be set
1175  * \param[in] th        pointer to the transaction handler
1176  *
1177  * \retval              0 for success
1178  * \retval              negative error number on failure
1179  */
1180 int osp_xattr_del(const struct lu_env *env, struct dt_object *dt,
1181                   const char *name, struct thandle *th)
1182 {
1183         struct osp_update_request *update;
1184         const struct lu_fid      *fid = lu_object_fid(&dt->do_lu);
1185         struct osp_object        *o     = dt2osp_obj(dt);
1186         struct osp_xattr_entry   *oxe;
1187         int                       rc;
1188
1189         update = thandle_to_osp_update_request(th);
1190         LASSERT(update != NULL);
1191
1192         rc = osp_update_rpc_pack(env, xattr_del, update, OUT_XATTR_DEL,
1193                                  fid, name);
1194         if (rc != 0)
1195                 return rc;
1196
1197         oxe = osp_oac_xattr_find(o, name, true);
1198         if (oxe != NULL)
1199                 /* Drop the ref for entry on list. */
1200                 osp_oac_xattr_put(oxe);
1201
1202         return 0;
1203 }
1204
1205 void osp_obj_invalidate_cache(struct osp_object *obj)
1206 {
1207         struct osp_xattr_entry *oxe;
1208         struct osp_xattr_entry *tmp;
1209
1210         spin_lock(&obj->opo_lock);
1211         list_for_each_entry_safe(oxe, tmp, &obj->opo_xattr_list, oxe_list) {
1212                 oxe->oxe_ready = 0;
1213                 list_del_init(&oxe->oxe_list);
1214                 osp_oac_xattr_put(oxe);
1215         }
1216         obj->opo_attr.la_valid = 0;
1217         spin_unlock(&obj->opo_lock);
1218 }
1219
1220 /**
1221  * Implement OSP layer dt_object_operations::do_invalidate() interface.
1222  *
1223  * Invalidate attributes cached on the specified MDT/OST object.
1224  *
1225  * \param[in] env       pointer to the thread context
1226  * \param[in] dt        pointer to the OSP layer dt_object
1227  *
1228  * \retval              0 for success
1229  * \retval              negative error number on failure
1230  */
1231 int osp_invalidate(const struct lu_env *env, struct dt_object *dt)
1232 {
1233         struct osp_object *obj = dt2osp_obj(dt);
1234         ENTRY;
1235
1236         osp_obj_invalidate_cache(obj);
1237
1238         spin_lock(&obj->opo_lock);
1239         obj->opo_stale = 1;
1240         spin_unlock(&obj->opo_lock);
1241
1242         RETURN(0);
1243 }
1244
1245 /**
1246  * Implement OSP layer dt_object_operations::do_declare_create() interface.
1247  *
1248  * Declare that the caller will create the OST object.
1249  *
1250  * If the transaction is a remote transaction and the FID for the OST-object
1251  * has been assigned already, then handle it as creating (remote) MDT object
1252  * via osp_md_declare_object_create(). This function is usually used for LFSCK
1253  * to re-create the lost OST object. Otherwise, if it is not replay case, the
1254  * OSP will reserve pre-created object for the subsequent create operation;
1255  * if the MDT side cached pre-created objects are less than some threshold,
1256  * then it will wakeup the pre-create thread.
1257  *
1258  * \param[in] env       pointer to the thread context
1259  * \param[in] dt        pointer to the OSP layer dt_object
1260  * \param[in] attr      the attribute for the object to be created
1261  * \param[in] hint      pointer to the hint for creating the object, such as
1262  *                      the parent object
1263  * \param[in] dof       pointer to the dt_object_format for help the creation
1264  * \param[in] th        pointer to the transaction handler
1265  *
1266  * \retval              0 for success
1267  * \retval              negative error number on failure
1268  */
1269 static int osp_declare_object_create(const struct lu_env *env,
1270                                      struct dt_object *dt,
1271                                      struct lu_attr *attr,
1272                                      struct dt_allocation_hint *hint,
1273                                      struct dt_object_format *dof,
1274                                      struct thandle *th)
1275 {
1276         struct osp_thread_info  *osi = osp_env_info(env);
1277         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
1278         struct osp_object       *o = dt2osp_obj(dt);
1279         const struct lu_fid     *fid = lu_object_fid(&dt->do_lu);
1280         struct thandle          *local_th;
1281         int                      rc = 0;
1282
1283         ENTRY;
1284
1285         if (is_only_remote_trans(th) && !fid_is_zero(fid)) {
1286                 LASSERT(fid_is_sane(fid));
1287
1288                 rc = osp_md_declare_object_create(env, dt, attr, hint, dof, th);
1289
1290                 RETURN(rc);
1291         }
1292
1293         /* should happen to non-0 OSP only so that at least one object
1294          * has been already declared in the scenario and LOD should
1295          * cleanup that */
1296         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OSC_CREATE_FAIL) && d->opd_index == 1)
1297                 RETURN(-ENOSPC);
1298
1299         LASSERT(d->opd_last_used_oid_file);
1300
1301         /*
1302          * There can be gaps in precreated ids and record to unlink llog
1303          * XXX: we do not handle gaps yet, implemented before solution
1304          *      was found to be racy, so we disabled that. there is no
1305          *      point in making useless but expensive llog declaration.
1306          */
1307         /* rc = osp_sync_declare_add(env, o, MDS_UNLINK64_REC, th); */
1308
1309         local_th = osp_get_storage_thandle(env, th, d);
1310         if (IS_ERR(local_th))
1311                 RETURN(PTR_ERR(local_th));
1312
1313         if (unlikely(!fid_is_zero(fid))) {
1314                 /* replay case: caller knows fid */
1315                 osi->osi_off = sizeof(osi->osi_id) * d->opd_index;
1316                 osi->osi_lb.lb_len = sizeof(osi->osi_id);
1317                 osi->osi_lb.lb_buf = NULL;
1318
1319                 rc = dt_declare_record_write(env, d->opd_last_used_oid_file,
1320                                              &osi->osi_lb, osi->osi_off,
1321                                              local_th);
1322                 RETURN(rc);
1323         }
1324
1325         /*
1326          * in declaration we need to reserve object so that we don't block
1327          * awaiting precreation RPC to complete
1328          */
1329         rc = osp_precreate_reserve(env, d);
1330         /*
1331          * we also need to declare update to local "last used id" file for
1332          * recovery if object isn't used for a reason, we need to release
1333          * reservation, this can be made in osd_object_release()
1334          */
1335         if (rc == 0) {
1336                 /* mark id is reserved: in create we don't want to talk
1337                  * to OST */
1338                 LASSERT(o->opo_reserved == 0);
1339                 o->opo_reserved = 1;
1340
1341                 /* common for all OSPs file hystorically */
1342                 osi->osi_off = sizeof(osi->osi_id) * d->opd_index;
1343                 osi->osi_lb.lb_len = sizeof(osi->osi_id);
1344                 osi->osi_lb.lb_buf = NULL;
1345                 rc = dt_declare_record_write(env, d->opd_last_used_oid_file,
1346                                              &osi->osi_lb, osi->osi_off,
1347                                              local_th);
1348         } else {
1349                 /* not needed in the cache anymore */
1350                 set_bit(LU_OBJECT_HEARD_BANSHEE,
1351                             &dt->do_lu.lo_header->loh_flags);
1352         }
1353         RETURN(rc);
1354 }
1355
1356 /**
1357  * Implement OSP layer dt_object_operations::do_create() interface.
1358  *
1359  * Create the OST object.
1360  *
1361  * If the transaction is a remote transaction and the FID for the OST-object
1362  * has been assigned already, then handle it as handling MDT object via the
1363  * osp_md_object_create(). For other cases, the OSP will assign FID to the
1364  * object to be created, and update last_used Object ID (OID) file.
1365  *
1366  * \param[in] env       pointer to the thread context
1367  * \param[in] dt        pointer to the OSP layer dt_object
1368  * \param[in] attr      the attribute for the object to be created
1369  * \param[in] hint      pointer to the hint for creating the object, such as
1370  *                      the parent object
1371  * \param[in] dof       pointer to the dt_object_format for help the creation
1372  * \param[in] th        pointer to the transaction handler
1373  *
1374  * \retval              0 for success
1375  * \retval              negative error number on failure
1376  */
1377 static int osp_object_create(const struct lu_env *env, struct dt_object *dt,
1378                              struct lu_attr *attr,
1379                              struct dt_allocation_hint *hint,
1380                              struct dt_object_format *dof, struct thandle *th)
1381 {
1382         struct osp_thread_info  *osi = osp_env_info(env);
1383         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
1384         struct osp_object       *o = dt2osp_obj(dt);
1385         int                     rc = 0;
1386         struct lu_fid           *fid = &osi->osi_fid;
1387         struct thandle          *local_th;
1388         ENTRY;
1389
1390         if (is_only_remote_trans(th) &&
1391             !fid_is_zero(lu_object_fid(&dt->do_lu))) {
1392                 LASSERT(fid_is_sane(lu_object_fid(&dt->do_lu)));
1393
1394                 rc = osp_md_object_create(env, dt, attr, hint, dof, th);
1395                 if (rc == 0)
1396                         o->opo_non_exist = 0;
1397
1398                 RETURN(rc);
1399         }
1400
1401         o->opo_non_exist = 0;
1402         if (o->opo_reserved) {
1403                 /* regular case, fid is assigned holding transaction open */
1404                  osp_object_assign_fid(env, d, o);
1405         }
1406
1407         memcpy(fid, lu_object_fid(&dt->do_lu), sizeof(*fid));
1408
1409         LASSERTF(fid_is_sane(fid), "fid for osp_object %p is insane"DFID"!\n",
1410                  o, PFID(fid));
1411
1412         if (!o->opo_reserved) {
1413                 /* special case, id was assigned outside of transaction
1414                  * see comments in osp_declare_attr_set */
1415                 LASSERT(d->opd_pre != NULL);
1416                 spin_lock(&d->opd_pre_lock);
1417                 osp_update_last_fid(d, fid);
1418                 spin_unlock(&d->opd_pre_lock);
1419         }
1420
1421         CDEBUG(D_INODE, "fid for osp_object %p is "DFID"\n", o, PFID(fid));
1422
1423         /* If the precreate ends, it means it will be ready to rollover to
1424          * the new sequence soon, all the creation should be synchronized,
1425          * otherwise during replay, the replay fid will be inconsistent with
1426          * last_used/create fid */
1427         if (osp_precreate_end_seq(env, d) && osp_is_fid_client(d))
1428                 th->th_sync = 1;
1429
1430         local_th = osp_get_storage_thandle(env, th, d);
1431         if (IS_ERR(local_th))
1432                 RETURN(PTR_ERR(local_th));
1433         /*
1434          * it's OK if the import is inactive by this moment - id was created
1435          * by OST earlier, we just need to maintain it consistently on the disk
1436          * once import is reconnected, OSP will claim this and other objects
1437          * used and OST either keep them, if they exist or recreate
1438          */
1439
1440         /* we might have lost precreated objects */
1441         if (unlikely(d->opd_gap_count) > 0) {
1442                 LASSERT(d->opd_pre != NULL);
1443                 spin_lock(&d->opd_pre_lock);
1444                 if (d->opd_gap_count > 0) {
1445                         int count = d->opd_gap_count;
1446
1447                         ostid_set_id(&osi->osi_oi,
1448                                      fid_oid(&d->opd_gap_start_fid));
1449                         d->opd_gap_count = 0;
1450                         spin_unlock(&d->opd_pre_lock);
1451
1452                         CDEBUG(D_HA, "Writing gap "DFID"+%d in llog\n",
1453                                PFID(&d->opd_gap_start_fid), count);
1454                         /* real gap handling is disabled intil ORI-692 will be
1455                          * fixed, now we only report gaps */
1456                 } else {
1457                         spin_unlock(&d->opd_pre_lock);
1458                 }
1459         }
1460
1461         /* Only need update last_used oid file, seq file will only be update
1462          * during seq rollover */
1463         osp_objid_buf_prep(&osi->osi_lb, &osi->osi_off,
1464                            &d->opd_last_used_fid.f_oid, d->opd_index);
1465
1466         rc = dt_record_write(env, d->opd_last_used_oid_file, &osi->osi_lb,
1467                              &osi->osi_off, local_th);
1468
1469         CDEBUG(D_HA, "%s: Wrote last used FID: "DFID", index %d: %d\n",
1470                d->opd_obd->obd_name, PFID(fid), d->opd_index, rc);
1471
1472         RETURN(rc);
1473 }
1474
1475 /**
1476  * Implement OSP layer dt_object_operations::do_declare_destroy() interface.
1477  *
1478  * Declare that the caller will destroy the specified OST object.
1479  *
1480  * The OST object destroy will be handled via llog asynchronously. This
1481  * function will declare the credits for generating MDS_UNLINK64_REC llog.
1482  *
1483  * \param[in] env       pointer to the thread context
1484  * \param[in] dt        pointer to the OSP layer dt_object to be destroyed
1485  * \param[in] th        pointer to the transaction handler
1486  *
1487  * \retval              0 for success
1488  * \retval              negative error number on failure
1489  */
1490 int osp_declare_object_destroy(const struct lu_env *env,
1491                                struct dt_object *dt, struct thandle *th)
1492 {
1493         struct osp_object       *o = dt2osp_obj(dt);
1494         struct osp_device       *osp = lu2osp_dev(dt->do_lu.lo_dev);
1495         int                      rc = 0;
1496
1497         ENTRY;
1498
1499         LASSERT(!osp->opd_connect_mdt);
1500         rc = osp_sync_declare_add(env, o, MDS_UNLINK64_REC, th);
1501
1502         RETURN(rc);
1503 }
1504
1505 /**
1506  * Implement OSP layer dt_object_operations::do_destroy() interface.
1507  *
1508  * Destroy the specified OST object.
1509  *
1510  * The OSP generates a MDS_UNLINK64_REC record in the llog. There
1511  * will be some dedicated thread to handle the llog asynchronously.
1512  *
1513  * It also marks the object as non-cached.
1514  *
1515  * \param[in] env       pointer to the thread context
1516  * \param[in] dt        pointer to the OSP layer dt_object to be destroyed
1517  * \param[in] th        pointer to the transaction handler
1518  *
1519  * \retval              0 for success
1520  * \retval              negative error number on failure
1521  */
1522 static int osp_object_destroy(const struct lu_env *env, struct dt_object *dt,
1523                               struct thandle *th)
1524 {
1525         struct osp_object       *o = dt2osp_obj(dt);
1526         struct osp_device       *osp = lu2osp_dev(dt->do_lu.lo_dev);
1527         int                      rc = 0;
1528
1529         ENTRY;
1530
1531         o->opo_non_exist = 1;
1532
1533         LASSERT(!osp->opd_connect_mdt);
1534         /* once transaction is committed put proper command on
1535          * the queue going to our OST. */
1536         rc = osp_sync_add(env, o, MDS_UNLINK64_REC, th, NULL);
1537         if (rc < 0)
1538                 RETURN(rc);
1539
1540         /* not needed in cache any more */
1541         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
1542
1543         RETURN(rc);
1544 }
1545
1546 static int osp_orphan_index_lookup(const struct lu_env *env,
1547                                    struct dt_object *dt,
1548                                    struct dt_rec *rec,
1549                                    const struct dt_key *key)
1550 {
1551         return -EOPNOTSUPP;
1552 }
1553
1554 static int osp_orphan_index_declare_insert(const struct lu_env *env,
1555                                            struct dt_object *dt,
1556                                            const struct dt_rec *rec,
1557                                            const struct dt_key *key,
1558                                            struct thandle *handle)
1559 {
1560         return -EOPNOTSUPP;
1561 }
1562
1563 static int osp_orphan_index_insert(const struct lu_env *env,
1564                                    struct dt_object *dt,
1565                                    const struct dt_rec *rec,
1566                                    const struct dt_key *key,
1567                                    struct thandle *handle,
1568                                    int ignore_quota)
1569 {
1570         return -EOPNOTSUPP;
1571 }
1572
1573 static int osp_orphan_index_declare_delete(const struct lu_env *env,
1574                                            struct dt_object *dt,
1575                                            const struct dt_key *key,
1576                                            struct thandle *handle)
1577 {
1578         return -EOPNOTSUPP;
1579 }
1580
1581 static int osp_orphan_index_delete(const struct lu_env *env,
1582                                    struct dt_object *dt,
1583                                    const struct dt_key *key,
1584                                    struct thandle *handle)
1585 {
1586         return -EOPNOTSUPP;
1587 }
1588
1589 /**
1590  * Initialize the OSP layer index iteration.
1591  *
1592  * \param[in] env       pointer to the thread context
1593  * \param[in] dt        pointer to the index object to be iterated
1594  * \param[in] attr      unused
1595  *
1596  * \retval              pointer to the iteration structure
1597  * \retval              negative error number on failure
1598  */
1599 struct dt_it *osp_it_init(const struct lu_env *env, struct dt_object *dt,
1600                           __u32 attr)
1601 {
1602         struct osp_it *it;
1603
1604         OBD_ALLOC_PTR(it);
1605         if (it == NULL)
1606                 return ERR_PTR(-ENOMEM);
1607
1608         it->ooi_pos_ent = -1;
1609         it->ooi_obj = dt;
1610         it->ooi_attr = attr;
1611
1612         return (struct dt_it *)it;
1613 }
1614
1615 /**
1616  * Finalize the OSP layer index iteration.
1617  *
1618  * \param[in] env       pointer to the thread context
1619  * \param[in] di        pointer to the iteration structure
1620  */
1621 void osp_it_fini(const struct lu_env *env, struct dt_it *di)
1622 {
1623         struct osp_it   *it = (struct osp_it *)di;
1624         struct page     **pages = it->ooi_pages;
1625         int             npages = it->ooi_total_npages;
1626         int             i;
1627
1628         if (pages != NULL) {
1629                 for (i = 0; i < npages; i++) {
1630                         if (pages[i] != NULL) {
1631                                 if (pages[i] == it->ooi_cur_page) {
1632                                         kunmap(pages[i]);
1633                                         it->ooi_cur_page = NULL;
1634                                 }
1635                                 __free_page(pages[i]);
1636                         }
1637                 }
1638                 OBD_FREE(pages, npages * sizeof(*pages));
1639         }
1640         OBD_FREE_PTR(it);
1641 }
1642
1643 /**
1644  * Get more records for the iteration from peer.
1645  *
1646  * The new records will be filled in an array of pages. The OSP side
1647  * allows 1MB bulk data to be transferred.
1648  *
1649  * \param[in] env       pointer to the thread context
1650  * \param[in] it        pointer to the iteration structure
1651  *
1652  * \retval              0 for success
1653  * \retval              negative error number on failure
1654  */
1655 static int osp_it_fetch(const struct lu_env *env, struct osp_it *it)
1656 {
1657         struct lu_device         *dev   = it->ooi_obj->do_lu.lo_dev;
1658         struct osp_device        *osp   = lu2osp_dev(dev);
1659         struct page             **pages;
1660         struct ptlrpc_request    *req   = NULL;
1661         struct ptlrpc_bulk_desc  *desc;
1662         struct idx_info          *ii;
1663         int                       npages;
1664         int                       rc;
1665         int                       i;
1666         ENTRY;
1667
1668         /* 1MB bulk */
1669         npages = min_t(unsigned int, OFD_MAX_BRW_SIZE, 1 << 20);
1670         npages /= PAGE_SIZE;
1671
1672         OBD_ALLOC(pages, npages * sizeof(*pages));
1673         if (pages == NULL)
1674                 RETURN(-ENOMEM);
1675
1676         it->ooi_pages = pages;
1677         it->ooi_total_npages = npages;
1678         for (i = 0; i < npages; i++) {
1679                 pages[i] = alloc_page(GFP_NOFS);
1680                 if (pages[i] == NULL)
1681                         RETURN(-ENOMEM);
1682         }
1683
1684         req = ptlrpc_request_alloc(osp->opd_obd->u.cli.cl_import,
1685                                    &RQF_OBD_IDX_READ);
1686         if (req == NULL)
1687                 RETURN(-ENOMEM);
1688
1689         rc = ptlrpc_request_pack(req, LUSTRE_OBD_VERSION, OBD_IDX_READ);
1690         if (rc != 0) {
1691                 ptlrpc_request_free(req);
1692                 RETURN(rc);
1693         }
1694
1695         osp_set_req_replay(osp, req);
1696         req->rq_request_portal = OUT_PORTAL;
1697         ii = req_capsule_client_get(&req->rq_pill, &RMF_IDX_INFO);
1698         memset(ii, 0, sizeof(*ii));
1699         if (fid_is_last_id(lu_object_fid(&it->ooi_obj->do_lu))) {
1700                 /* LFSCK will iterate orphan object[FID_SEQ_LAYOUT_BTREE,
1701                  * ost_index, 0] with LAST_ID FID, so it needs to replace
1702                  * the FID with orphan FID here */
1703                 ii->ii_fid.f_seq = FID_SEQ_LAYOUT_RBTREE;
1704                 ii->ii_fid.f_oid = osp->opd_index;
1705                 ii->ii_fid.f_ver = 0;
1706                 ii->ii_flags = II_FL_NOHASH;
1707                 ii->ii_attrs = osp_dev2node(osp);
1708         } else {
1709                 ii->ii_fid = *lu_object_fid(&it->ooi_obj->do_lu);
1710                 ii->ii_flags = II_FL_NOHASH | II_FL_NOKEY | II_FL_VARKEY |
1711                                II_FL_VARREC;
1712                 ii->ii_attrs = it->ooi_attr;
1713         }
1714         ii->ii_magic = IDX_INFO_MAGIC;
1715         ii->ii_count = npages * LU_PAGE_COUNT;
1716         ii->ii_hash_start = it->ooi_next;
1717
1718         ptlrpc_at_set_req_timeout(req);
1719
1720         desc = ptlrpc_prep_bulk_imp(req, npages, 1,
1721                                     PTLRPC_BULK_PUT_SINK | PTLRPC_BULK_BUF_KIOV,
1722                                     MDS_BULK_PORTAL,
1723                                     &ptlrpc_bulk_kiov_pin_ops);
1724         if (desc == NULL) {
1725                 ptlrpc_request_free(req);
1726                 RETURN(-ENOMEM);
1727         }
1728
1729         for (i = 0; i < npages; i++)
1730                 desc->bd_frag_ops->add_kiov_frag(desc, pages[i], 0,
1731                                                  PAGE_SIZE);
1732
1733         ptlrpc_request_set_replen(req);
1734         rc = ptlrpc_queue_wait(req);
1735         if (rc != 0)
1736                 GOTO(out, rc);
1737
1738         rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk,
1739                                           req->rq_bulk->bd_nob_transferred);
1740         if (rc < 0)
1741                 GOTO(out, rc);
1742         rc = 0;
1743
1744         ii = req_capsule_server_get(&req->rq_pill, &RMF_IDX_INFO);
1745         if (ii->ii_magic != IDX_INFO_MAGIC)
1746                  GOTO(out, rc = -EPROTO);
1747
1748         npages = (ii->ii_count + LU_PAGE_COUNT - 1) >>
1749                  (PAGE_SHIFT - LU_PAGE_SHIFT);
1750         if (npages > it->ooi_total_npages) {
1751                 CERROR("%s: returned more pages than expected, %u > %u\n",
1752                        osp->opd_obd->obd_name, npages, it->ooi_total_npages);
1753                 GOTO(out, rc = -EINVAL);
1754         }
1755
1756         it->ooi_valid_npages = npages;
1757         if (ptlrpc_rep_need_swab(req))
1758                 it->ooi_swab = 1;
1759
1760         it->ooi_next = ii->ii_hash_end;
1761
1762 out:
1763         ptlrpc_req_finished(req);
1764
1765         return rc;
1766 }
1767
1768 /**
1769  * Move the iteration cursor to the next lu_page.
1770  *
1771  * One system page (PAGE_SIZE) may contain multiple lu_page (4KB),
1772  * that depends on the LU_PAGE_COUNT. If it is not the last lu_page
1773  * in current system page, then move the iteration cursor to the next
1774  * lu_page in current system page. Otherwise, if there are more system
1775  * pages in the cache, then move the iteration cursor to the next system
1776  * page. If all the cached records (pages) have been iterated, then fetch
1777  * more records via osp_it_fetch().
1778  *
1779  * \param[in] env       pointer to the thread context
1780  * \param[in] di        pointer to the iteration structure
1781  *
1782  * \retval              positive for end of the directory
1783  * \retval              0 for success
1784  * \retval              negative error number on failure
1785  */
1786 int osp_it_next_page(const struct lu_env *env, struct dt_it *di)
1787 {
1788         struct osp_it           *it = (struct osp_it *)di;
1789         struct lu_idxpage       *idxpage;
1790         struct page             **pages;
1791         int                     rc;
1792         int                     i;
1793         ENTRY;
1794
1795 again2:
1796         idxpage = it->ooi_cur_idxpage;
1797         if (idxpage != NULL) {
1798                 if (idxpage->lip_nr == 0)
1799                         RETURN(1);
1800
1801                 if (it->ooi_pos_ent < idxpage->lip_nr) {
1802                         CDEBUG(D_INFO, "ooi_pos %d nr %d\n",
1803                                (int)it->ooi_pos_ent, (int)idxpage->lip_nr);
1804                         RETURN(0);
1805                 }
1806                 it->ooi_cur_idxpage = NULL;
1807                 it->ooi_pos_lu_page++;
1808
1809 again1:
1810                 if (it->ooi_pos_lu_page < LU_PAGE_COUNT) {
1811                         it->ooi_cur_idxpage = (void *)it->ooi_cur_page +
1812                                          LU_PAGE_SIZE * it->ooi_pos_lu_page;
1813                         if (it->ooi_swab)
1814                                 lustre_swab_lip_header(it->ooi_cur_idxpage);
1815                         if (it->ooi_cur_idxpage->lip_magic != LIP_MAGIC) {
1816                                 struct osp_device *osp =
1817                                         lu2osp_dev(it->ooi_obj->do_lu.lo_dev);
1818
1819                                 CERROR("%s: invalid magic (%x != %x) for page "
1820                                        "%d/%d while read layout orphan index\n",
1821                                        osp->opd_obd->obd_name,
1822                                        it->ooi_cur_idxpage->lip_magic,
1823                                        LIP_MAGIC, it->ooi_pos_page,
1824                                        it->ooi_pos_lu_page);
1825                                 /* Skip this lu_page next time. */
1826                                 it->ooi_pos_ent = idxpage->lip_nr - 1;
1827                                 RETURN(-EINVAL);
1828                         }
1829                         it->ooi_pos_ent = -1;
1830                         goto again2;
1831                 }
1832
1833                 kunmap(it->ooi_cur_page);
1834                 it->ooi_cur_page = NULL;
1835                 it->ooi_pos_page++;
1836
1837 again0:
1838                 pages = it->ooi_pages;
1839                 if (it->ooi_pos_page < it->ooi_valid_npages) {
1840                         it->ooi_cur_page = kmap(pages[it->ooi_pos_page]);
1841                         it->ooi_pos_lu_page = 0;
1842                         goto again1;
1843                 }
1844
1845                 for (i = 0; i < it->ooi_total_npages; i++) {
1846                         if (pages[i] != NULL)
1847                                 __free_page(pages[i]);
1848                 }
1849                 OBD_FREE(pages, it->ooi_total_npages * sizeof(*pages));
1850
1851                 it->ooi_pos_page = 0;
1852                 it->ooi_total_npages = 0;
1853                 it->ooi_valid_npages = 0;
1854                 it->ooi_swab = 0;
1855                 it->ooi_ent = NULL;
1856                 it->ooi_cur_page = NULL;
1857                 it->ooi_cur_idxpage = NULL;
1858                 it->ooi_pages = NULL;
1859         }
1860
1861         if (it->ooi_next == II_END_OFF)
1862                 RETURN(1);
1863
1864         rc = osp_it_fetch(env, it);
1865         if (rc == 0)
1866                 goto again0;
1867
1868         RETURN(rc);
1869 }
1870
1871 /**
1872  * Move the iteration cursor to the next record.
1873  *
1874  * If there are more records in the lu_page, then move the iteration
1875  * cursor to the next record directly. Otherwise, move the iteration
1876  * cursor to the record in the next lu_page via osp_it_next_page()
1877  *
1878  * \param[in] env       pointer to the thread context
1879  * \param[in] di        pointer to the iteration structure
1880  *
1881  * \retval              positive for end of the directory
1882  * \retval              0 for success
1883  * \retval              negative error number on failure
1884  */
1885 static int osp_orphan_it_next(const struct lu_env *env, struct dt_it *di)
1886 {
1887         struct osp_it           *it = (struct osp_it *)di;
1888         struct lu_idxpage       *idxpage;
1889         int                     rc;
1890         ENTRY;
1891
1892 again:
1893         idxpage = it->ooi_cur_idxpage;
1894         if (idxpage != NULL) {
1895                 if (idxpage->lip_nr == 0)
1896                         RETURN(1);
1897
1898                 it->ooi_pos_ent++;
1899                 if (it->ooi_pos_ent < idxpage->lip_nr) {
1900                         it->ooi_ent =
1901                                 (struct lu_orphan_ent *)idxpage->lip_entries +
1902                                                         it->ooi_pos_ent;
1903                         if (it->ooi_swab)
1904                                 lustre_swab_orphan_ent(it->ooi_ent);
1905                         RETURN(0);
1906                 }
1907         }
1908
1909         rc = osp_it_next_page(env, di);
1910         if (rc == 0)
1911                 goto again;
1912
1913         RETURN(rc);
1914 }
1915
1916 int osp_it_get(const struct lu_env *env, struct dt_it *di,
1917                const struct dt_key *key)
1918 {
1919         return 1;
1920 }
1921
1922 void osp_it_put(const struct lu_env *env, struct dt_it *di)
1923 {
1924 }
1925
1926 static struct dt_key *osp_orphan_it_key(const struct lu_env *env,
1927                                         const struct dt_it *di)
1928 {
1929         struct osp_it   *it  = (struct osp_it *)di;
1930         struct lu_orphan_ent    *ent = (struct lu_orphan_ent *)it->ooi_ent;
1931
1932         if (likely(ent != NULL))
1933                 return (struct dt_key *)(&ent->loe_key);
1934
1935         return NULL;
1936 }
1937
1938 static int osp_orphan_it_key_size(const struct lu_env *env,
1939                                   const struct dt_it *di)
1940 {
1941         return sizeof(struct lu_fid);
1942 }
1943
1944 static int osp_orphan_it_rec(const struct lu_env *env, const struct dt_it *di,
1945                              struct dt_rec *rec, __u32 attr)
1946 {
1947         struct osp_it   *it  = (struct osp_it *)di;
1948         struct lu_orphan_ent    *ent = (struct lu_orphan_ent *)it->ooi_ent;
1949
1950         if (likely(ent != NULL)) {
1951                 *(struct lu_orphan_rec *)rec = ent->loe_rec;
1952                 return 0;
1953         }
1954
1955         return -EINVAL;
1956 }
1957
1958 __u64 osp_it_store(const struct lu_env *env, const struct dt_it *di)
1959 {
1960         struct osp_it   *it = (struct osp_it *)di;
1961
1962         return it->ooi_next;
1963 }
1964
1965 /**
1966  * Locate the iteration cursor to the specified position (cookie).
1967  *
1968  * \param[in] env       pointer to the thread context
1969  * \param[in] di        pointer to the iteration structure
1970  * \param[in] hash      the specified position
1971  *
1972  * \retval              positive number for locating to the exactly position
1973  *                      or the next
1974  * \retval              0 for arriving at the end of the iteration
1975  * \retval              negative error number on failure
1976  */
1977 int osp_orphan_it_load(const struct lu_env *env, const struct dt_it *di,
1978                        __u64 hash)
1979 {
1980         struct osp_it   *it     = (struct osp_it *)di;
1981         int              rc;
1982
1983         it->ooi_next = hash;
1984         rc = osp_orphan_it_next(env, (struct dt_it *)di);
1985         if (rc == 1)
1986                 return 0;
1987
1988         if (rc == 0)
1989                 return 1;
1990
1991         return rc;
1992 }
1993
1994 int osp_it_key_rec(const struct lu_env *env, const struct dt_it *di,
1995                    void *key_rec)
1996 {
1997         return 0;
1998 }
1999
2000 static const struct dt_index_operations osp_orphan_index_ops = {
2001         .dio_lookup             = osp_orphan_index_lookup,
2002         .dio_declare_insert     = osp_orphan_index_declare_insert,
2003         .dio_insert             = osp_orphan_index_insert,
2004         .dio_declare_delete     = osp_orphan_index_declare_delete,
2005         .dio_delete             = osp_orphan_index_delete,
2006         .dio_it = {
2007                 .init           = osp_it_init,
2008                 .fini           = osp_it_fini,
2009                 .next           = osp_orphan_it_next,
2010                 .get            = osp_it_get,
2011                 .put            = osp_it_put,
2012                 .key            = osp_orphan_it_key,
2013                 .key_size       = osp_orphan_it_key_size,
2014                 .rec            = osp_orphan_it_rec,
2015                 .store          = osp_it_store,
2016                 .load           = osp_orphan_it_load,
2017                 .key_rec        = osp_it_key_rec,
2018         }
2019 };
2020
2021 /**
2022  * Implement OSP layer dt_object_operations::do_index_try() interface.
2023  *
2024  * Negotiate the index type.
2025  *
2026  * If the target index is an IDIF object, then use osp_orphan_index_ops.
2027  * Otherwise, assign osp_md_index_ops to the dt_object::do_index_ops.
2028  * (\see lustre/include/lustre_fid.h for IDIF.)
2029  *
2030  * \param[in] env       pointer to the thread context
2031  * \param[in] dt        pointer to the OSP layer dt_object
2032  * \param[in] feat      unused
2033  *
2034  * \retval              0 for success
2035  */
2036 static int osp_index_try(const struct lu_env *env,
2037                          struct dt_object *dt,
2038                          const struct dt_index_features *feat)
2039 {
2040         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2041
2042         if (fid_is_last_id(fid) && fid_is_idif(fid))
2043                 dt->do_index_ops = &osp_orphan_index_ops;
2044         else
2045                 dt->do_index_ops = &osp_md_index_ops;
2046         return 0;
2047 }
2048
2049 static struct dt_object_operations osp_obj_ops = {
2050         .do_declare_attr_get    = osp_declare_attr_get,
2051         .do_attr_get            = osp_attr_get,
2052         .do_declare_attr_set    = osp_declare_attr_set,
2053         .do_attr_set            = osp_attr_set,
2054         .do_declare_xattr_get   = osp_declare_xattr_get,
2055         .do_xattr_get           = osp_xattr_get,
2056         .do_declare_xattr_set   = osp_declare_xattr_set,
2057         .do_xattr_set           = osp_xattr_set,
2058         .do_declare_create      = osp_declare_object_create,
2059         .do_create              = osp_object_create,
2060         .do_declare_destroy     = osp_declare_object_destroy,
2061         .do_destroy             = osp_object_destroy,
2062         .do_index_try           = osp_index_try,
2063 };
2064
2065 /**
2066  * Implement OSP layer lu_object_operations::loo_object_init() interface.
2067  *
2068  * Initialize the object.
2069  *
2070  * If it is a remote MDT object, then call do_attr_get() to fetch
2071  * the attribute from the peer.
2072  *
2073  * \param[in] env       pointer to the thread context
2074  * \param[in] o         pointer to the OSP layer lu_object
2075  * \param[in] conf      unused
2076  *
2077  * \retval              0 for success
2078  * \retval              negative error number on failure
2079  */
2080 static int osp_object_init(const struct lu_env *env, struct lu_object *o,
2081                            const struct lu_object_conf *conf)
2082 {
2083         struct osp_object       *po = lu2osp_obj(o);
2084         int                     rc = 0;
2085         ENTRY;
2086
2087         spin_lock_init(&po->opo_lock);
2088         o->lo_header->loh_attr |= LOHA_REMOTE;
2089         INIT_LIST_HEAD(&po->opo_xattr_list);
2090         INIT_LIST_HEAD(&po->opo_invalidate_cb_list);
2091
2092         if (is_ost_obj(o)) {
2093                 po->opo_obj.do_ops = &osp_obj_ops;
2094         } else {
2095                 struct lu_attr *la = &osp_env_info(env)->osi_attr;
2096
2097                 po->opo_obj.do_ops = &osp_md_obj_ops;
2098                 po->opo_obj.do_body_ops = &osp_md_body_ops;
2099
2100                 if (conf != NULL && conf->loc_flags & LOC_F_NEW) {
2101                         po->opo_non_exist = 1;
2102                 } else {
2103                         rc = po->opo_obj.do_ops->do_attr_get(env, lu2dt_obj(o),
2104                                                              la);
2105                         if (rc == 0)
2106                                 o->lo_header->loh_attr |=
2107                                         LOHA_EXISTS | (la->la_mode & S_IFMT);
2108                         if (rc == -ENOENT) {
2109                                 po->opo_non_exist = 1;
2110                                 rc = 0;
2111                         }
2112                 }
2113                 init_rwsem(&po->opo_sem);
2114         }
2115         RETURN(rc);
2116 }
2117
2118 /**
2119  * Implement OSP layer lu_object_operations::loo_object_free() interface.
2120  *
2121  * Finalize the object.
2122  *
2123  * If the OSP object has attributes cache, then destroy the cache.
2124  * Free the object finally.
2125  *
2126  * \param[in] env       pointer to the thread context
2127  * \param[in] o         pointer to the OSP layer lu_object
2128  */
2129 static void osp_object_free(const struct lu_env *env, struct lu_object *o)
2130 {
2131         struct osp_object       *obj = lu2osp_obj(o);
2132         struct lu_object_header *h = o->lo_header;
2133         struct osp_xattr_entry *oxe;
2134         struct osp_xattr_entry *tmp;
2135         int                     count;
2136
2137         dt_object_fini(&obj->opo_obj);
2138         lu_object_header_fini(h);
2139         list_for_each_entry_safe(oxe, tmp, &obj->opo_xattr_list, oxe_list) {
2140                 list_del(&oxe->oxe_list);
2141                 count = atomic_read(&oxe->oxe_ref);
2142                 LASSERTF(count == 1,
2143                          "Still has %d users on the xattr entry %.*s\n",
2144                          count-1, (int)oxe->oxe_namelen, oxe->oxe_buf);
2145
2146                 OBD_FREE(oxe, oxe->oxe_buflen);
2147         }
2148         OBD_SLAB_FREE_PTR(obj, osp_object_kmem);
2149 }
2150
2151 /**
2152  * Implement OSP layer lu_object_operations::loo_object_release() interface.
2153  *
2154  * Cleanup (not free) the object.
2155  *
2156  * If it is a reserved object but failed to be created, or it is an OST
2157  * object, then mark the object as non-cached.
2158  *
2159  * \param[in] env       pointer to the thread context
2160  * \param[in] o         pointer to the OSP layer lu_object
2161  */
2162 static void osp_object_release(const struct lu_env *env, struct lu_object *o)
2163 {
2164         struct osp_object       *po = lu2osp_obj(o);
2165         struct osp_device       *d  = lu2osp_dev(o->lo_dev);
2166
2167         ENTRY;
2168
2169         /*
2170          * release reservation if object was declared but not created
2171          * this may require lu_object_put() in LOD
2172          */
2173         if (unlikely(po->opo_reserved)) {
2174                 LASSERT(d->opd_pre != NULL);
2175                 LASSERT(d->opd_pre_reserved > 0);
2176                 spin_lock(&d->opd_pre_lock);
2177                 d->opd_pre_reserved--;
2178                 spin_unlock(&d->opd_pre_lock);
2179
2180                 /* not needed in cache any more */
2181                 set_bit(LU_OBJECT_HEARD_BANSHEE, &o->lo_header->loh_flags);
2182         }
2183
2184         if (is_ost_obj(o))
2185                 /* XXX: Currently, NOT cache OST-object on MDT because:
2186                  *      1. it is not often accessed on MDT.
2187                  *      2. avoid up layer (such as LFSCK) to load too many
2188                  *         once-used OST-objects. */
2189                 set_bit(LU_OBJECT_HEARD_BANSHEE, &o->lo_header->loh_flags);
2190
2191         EXIT;
2192 }
2193
2194 static int osp_object_print(const struct lu_env *env, void *cookie,
2195                             lu_printer_t p, const struct lu_object *l)
2196 {
2197         const struct osp_object *o = lu2osp_obj((struct lu_object *)l);
2198
2199         return (*p)(env, cookie, LUSTRE_OSP_NAME"-object@%p", o);
2200 }
2201
2202 static int osp_object_invariant(const struct lu_object *o)
2203 {
2204         LBUG();
2205 }
2206
2207 struct lu_object_operations osp_lu_obj_ops = {
2208         .loo_object_init        = osp_object_init,
2209         .loo_object_free        = osp_object_free,
2210         .loo_object_release     = osp_object_release,
2211         .loo_object_print       = osp_object_print,
2212         .loo_object_invariant   = osp_object_invariant
2213 };