Whamcloud - gitweb
LU-11364 osd: remove unused 'ignore quota' parameters
[fs/lustre-release.git] / lustre / osp / osp_md_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) 2013, 2017, Intel Corporation.
24  */
25 /*
26  * lustre/osp/osp_md_object.c
27  *
28  * OST/MDT proxy device (OSP) Metadata methods
29  *
30  * This file implements methods for remote MD object, which include
31  * dt_object_operations, dt_index_operations and dt_body_operations.
32  *
33  * If there are multiple MDTs in one filesystem, one operation might
34  * include modifications in several MDTs. In such cases, clients
35  * send the RPC to the master MDT, then the operation is decomposed into
36  * object updates which will be dispatched to OSD or OSP. The local updates
37  * go to local OSD and the remote updates go to OSP. In OSP, these remote
38  * object updates will be packed into an update RPC, sent to the remote MDT
39  * and handled by Object Update Target (OUT).
40  *
41  * In DNE phase I, because of missing complete recovery solution, updates
42  * will be executed in order and synchronously.
43  *     1. The transaction is created.
44  *     2. In transaction declare, it collects and packs remote
45  *        updates (in osp_md_declare_xxx()).
46  *     3. In transaction start, it sends these remote updates
47  *        to remote MDTs, which will execute these updates synchronously.
48  *     4. In transaction execute phase, the local updates will be executed
49  *        synchronously.
50  *
51  * Author: Di Wang <di.wang@intel.com>
52  */
53
54 #define DEBUG_SUBSYSTEM S_MDS
55
56 #include <llog_swab.h>
57 #include <lustre_log.h>
58 #include "osp_internal.h"
59
60 #define OUT_UPDATE_BUFFER_SIZE_ADD      4096
61 #define OUT_UPDATE_BUFFER_SIZE_MAX      (256 * 4096)  /*  1M update size now */
62
63 /**
64  * Interpreter call for object creation
65  *
66  * Object creation interpreter, which will be called after creating
67  * the remote object to set flags and status.
68  *
69  * \param[in] env       execution environment
70  * \param[in] reply     update reply
71  * \param[in] req       ptlrpc update request for creating object
72  * \param[in] obj       object to be created
73  * \param[in] data      data used in this function.
74  * \param[in] index     index(position) of create update in the whole
75  *                      updates
76  * \param[in] rc        update result on the remote MDT.
77  *
78  * \retval              only return 0 for now
79  */
80 static int osp_create_interpreter(const struct lu_env *env,
81                                   struct object_update_reply *reply,
82                                   struct ptlrpc_request *req,
83                                   struct osp_object *obj,
84                                   void *data, int index, int rc)
85 {
86         if (rc != 0 && rc != -EEXIST) {
87                 obj->opo_obj.do_lu.lo_header->loh_attr &= ~LOHA_EXISTS;
88                 obj->opo_non_exist = 1;
89         }
90
91         /*
92          * invalidate opo cache for the object after the object is created, so
93          * attr_get will try to get attr from remote object.
94          */
95         osp_obj_invalidate_cache(obj);
96
97         return 0;
98 }
99
100 /**
101  * Implementation of dt_object_operations::do_declare_create
102  *
103  * Create the osp_update_request to track the update for this OSP
104  * in the transaction.
105  *
106  * \param[in] env       execution environment
107  * \param[in] dt        remote object to be created
108  * \param[in] attr      attribute of the created object
109  * \param[in] hint      creation hint
110  * \param[in] dof       creation format information
111  * \param[in] th        the transaction handle
112  *
113  * \retval              0 if preparation succeeds.
114  * \retval              negative errno if preparation fails.
115  */
116 int osp_md_declare_create(const struct lu_env *env, struct dt_object *dt,
117                           struct lu_attr *attr, struct dt_allocation_hint *hint,
118                           struct dt_object_format *dof, struct thandle *th)
119 {
120         return osp_trans_update_request_create(th);
121 }
122
123 struct object_update *
124 update_buffer_get_update(struct object_update_request *request,
125                          unsigned int index)
126 {
127         void    *ptr;
128         int     i;
129
130         if (index > request->ourq_count)
131                 return NULL;
132
133         ptr = &request->ourq_updates[0];
134         for (i = 0; i < index; i++)
135                 ptr += object_update_size(ptr);
136
137         return ptr;
138 }
139
140 /**
141  * Implementation of dt_object_operations::do_create
142  *
143  * It adds an OUT_CREATE sub-request into the OUT RPC that will be flushed
144  * when the transaction stop, and sets necessary flags for created object.
145  *
146  * \param[in] env       execution environment
147  * \param[in] dt        object to be created
148  * \param[in] attr      attribute of the created object
149  * \param[in] hint      creation hint
150  * \param[in] dof       creation format information
151  * \param[in] th        the transaction handle
152  *
153  * \retval              0 if packing creation succeeds.
154  * \retval              negative errno if packing creation fails.
155  */
156 int osp_md_create(const struct lu_env *env, struct dt_object *dt,
157                   struct lu_attr *attr, struct dt_allocation_hint *hint,
158                   struct dt_object_format *dof, struct thandle *th)
159 {
160         struct osp_update_request *update;
161         struct osp_object *obj = dt2osp_obj(dt);
162         int rc;
163
164         update = thandle_to_osp_update_request(th);
165         LASSERT(update != NULL);
166
167         LASSERT(attr->la_valid & LA_TYPE);
168         rc = OSP_UPDATE_RPC_PACK(env, out_create_pack, update,
169                                  lu_object_fid(&dt->do_lu), attr, hint, dof);
170         if (rc != 0)
171                 GOTO(out, rc);
172
173         rc = osp_insert_update_callback(env, update, dt2osp_obj(dt), NULL,
174                                         osp_create_interpreter);
175
176         if (rc < 0)
177                 GOTO(out, rc);
178
179         dt->do_lu.lo_header->loh_attr |= LOHA_EXISTS | (attr->la_mode & S_IFMT);
180         dt2osp_obj(dt)->opo_non_exist = 0;
181
182         obj->opo_attr = *attr;
183 out:
184         return rc;
185 }
186
187 /**
188  * Implementation of dt_object_operations::do_declare_ref_del
189  *
190  * Create the osp_update_request to track the update for this OSP
191  * in the transaction.
192  *
193  * \param[in] env       execution environment
194  * \param[in] dt        object to decrease the reference count.
195  * \param[in] th        the transaction handle of refcount decrease.
196  *
197  * \retval              0 if preparation succeeds.
198  * \retval              negative errno if preparation fails.
199  */
200 static int osp_md_declare_ref_del(const struct lu_env *env,
201                                   struct dt_object *dt, struct thandle *th)
202 {
203         return osp_trans_update_request_create(th);
204 }
205
206 /**
207  * Implementation of dt_object_operations::do_ref_del
208  *
209  * Add an OUT_REF_DEL sub-request into the OUT RPC that will be
210  * flushed when the transaction stop.
211  *
212  * \param[in] env       execution environment
213  * \param[in] dt        object to decrease the reference count
214  * \param[in] th        the transaction handle
215  *
216  * \retval              0 if packing ref_del succeeds.
217  * \retval              negative errno if packing fails.
218  */
219 static int osp_md_ref_del(const struct lu_env *env, struct dt_object *dt,
220                           struct thandle *th)
221 {
222         struct osp_update_request *update;
223         int rc;
224
225         update = thandle_to_osp_update_request(th);
226         LASSERT(update != NULL);
227
228         rc = OSP_UPDATE_RPC_PACK(env, out_ref_del_pack, update,
229                                  lu_object_fid(&dt->do_lu));
230         return rc;
231 }
232
233 /**
234  * Implementation of dt_object_operations::do_declare_ref_del
235  *
236  * Create the osp_update_request to track the update for this OSP
237  * in the transaction.
238  *
239  * \param[in] env       execution environment
240  * \param[in] dt        object on which to increase the reference count.
241  * \param[in] th        the transaction handle.
242  *
243  * \retval              0 if preparation succeeds.
244  * \retval              negative errno if preparation fails.
245  */
246 static int osp_md_declare_ref_add(const struct lu_env *env,
247                                   struct dt_object *dt, struct thandle *th)
248 {
249         return osp_trans_update_request_create(th);
250 }
251
252 /**
253  * Implementation of dt_object_operations::do_ref_add
254  *
255  * Add an OUT_REF_ADD sub-request into the OUT RPC that will be flushed
256  * when the transaction stop.
257  *
258  * \param[in] env       execution environment
259  * \param[in] dt        object on which to increase the reference count
260  * \param[in] th        the transaction handle
261  *
262  * \retval              0 if packing ref_add succeeds.
263  * \retval              negative errno if packing fails.
264  */
265 static int osp_md_ref_add(const struct lu_env *env, struct dt_object *dt,
266                           struct thandle *th)
267 {
268         struct osp_update_request *update;
269         int rc;
270
271         update = thandle_to_osp_update_request(th);
272         LASSERT(update != NULL);
273
274         rc = OSP_UPDATE_RPC_PACK(env, out_ref_add_pack, update,
275                                  lu_object_fid(&dt->do_lu));
276         return rc;
277 }
278
279 /**
280  * Implementation of dt_object_operations::do_ah_init
281  *
282  * Initialize the allocation hint for object creation, which is usually called
283  * before the creation, and these hints (parent and child mode) will be sent to
284  * the remote Object Update Target (OUT) and used in the object create process,
285  * same as OSD object creation.
286  *
287  * \param[in] env       execution environment
288  * \param[in] ah        the hint to be initialized
289  * \param[in] parent    the parent of the object
290  * \param[in] child     the object to be created
291  * \param[in] child_mode the mode of the created object
292  */
293 static void osp_md_ah_init(const struct lu_env *env,
294                            struct dt_allocation_hint *ah,
295                            struct dt_object *parent,
296                            struct dt_object *child,
297                            umode_t child_mode)
298 {
299         LASSERT(ah);
300
301         ah->dah_parent = parent;
302         ah->dah_mode = child_mode;
303 }
304
305 /**
306  * Implementation of dt_object_operations::do_declare_attr_get
307  *
308  * Create the osp_update_request to track the update for this OSP
309  * in the transaction.
310  *
311  * \param[in] env       execution environment
312  * \param[in] dt        object on which to set attributes
313  * \param[in] attr      attributes to be set
314  * \param[in] th        the transaction handle
315  *
316  * \retval              0 if preparation succeeds.
317  * \retval              negative errno if preparation fails.
318  */
319 int osp_md_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
320                             const struct lu_attr *attr, struct thandle *th)
321 {
322         return osp_trans_update_request_create(th);
323 }
324
325 /**
326  * Implementation of dt_object_operations::do_attr_set
327  *
328  * Set attributes to the specified remote object.
329  *
330  * Add the OUT_ATTR_SET sub-request into the OUT RPC that will be flushed
331  * when the transaction stop.
332  *
333  * \param[in] env       execution environment
334  * \param[in] dt        object to set attributes
335  * \param[in] attr      attributes to be set
336  * \param[in] th        the transaction handle
337  *
338  * \retval              0 if packing attr_set succeeds.
339  * \retval              negative errno if packing fails.
340  */
341 int osp_md_attr_set(const struct lu_env *env, struct dt_object *dt,
342                     const struct lu_attr *attr, struct thandle *th)
343 {
344         struct osp_update_request *update;
345         int rc;
346
347         update = thandle_to_osp_update_request(th);
348         LASSERT(update != NULL);
349
350         rc = OSP_UPDATE_RPC_PACK(env, out_attr_set_pack, update,
351                                  lu_object_fid(&dt->do_lu), attr);
352         return rc;
353 }
354
355 /**
356  * Implementation of dt_object_operations::do_read_lock
357  *
358  * osp_md_{read,write}_lock() will only lock the remote object in the
359  * local cache, which uses the semaphore (opo_sem) inside the osp_object to
360  * lock the object. Note: it will not lock the object in the whole cluster,
361  * which relies on the LDLM lock.
362  *
363  * \param[in] env       execution environment
364  * \param[in] dt        object to be locked
365  * \param[in] role      lock role from MDD layer, see mdd_object_role().
366  */
367 static void osp_md_read_lock(const struct lu_env *env, struct dt_object *dt,
368                              unsigned role)
369 {
370         struct osp_object  *obj = dt2osp_obj(dt);
371
372         LASSERT(obj->opo_owner != env);
373         down_read_nested(&obj->opo_sem, role);
374
375         LASSERT(obj->opo_owner == NULL);
376 }
377
378 /**
379  * Implementation of dt_object_operations::do_write_lock
380  *
381  * Lock the remote object in write mode.
382  *
383  * \param[in] env       execution environment
384  * \param[in] dt        object to be locked
385  * \param[in] role      lock role from MDD layer, see mdd_object_role().
386  */
387 static void osp_md_write_lock(const struct lu_env *env, struct dt_object *dt,
388                               unsigned role)
389 {
390         struct osp_object *obj = dt2osp_obj(dt);
391
392         down_write_nested(&obj->opo_sem, role);
393
394         LASSERT(obj->opo_owner == NULL);
395         obj->opo_owner = env;
396 }
397
398 /**
399  * Implementation of dt_object_operations::do_read_unlock
400  *
401  * Unlock the read lock of remote object.
402  *
403  * \param[in] env       execution environment
404  * \param[in] dt        object to be unlocked
405  */
406 static void osp_md_read_unlock(const struct lu_env *env, struct dt_object *dt)
407 {
408         struct osp_object *obj = dt2osp_obj(dt);
409
410         up_read(&obj->opo_sem);
411 }
412
413 /**
414  * Implementation of dt_object_operations::do_write_unlock
415  *
416  * Unlock the write lock of remote object.
417  *
418  * \param[in] env       execution environment
419  * \param[in] dt        object to be unlocked
420  */
421 static void osp_md_write_unlock(const struct lu_env *env, struct dt_object *dt)
422 {
423         struct osp_object *obj = dt2osp_obj(dt);
424
425         LASSERT(obj->opo_owner == env);
426         obj->opo_owner = NULL;
427         up_write(&obj->opo_sem);
428 }
429
430 /**
431  * Implementation of dt_object_operations::do_write_locked
432  *
433  * Test if the object is locked in write mode.
434  *
435  * \param[in] env       execution environment
436  * \param[in] dt        object to be tested
437  */
438 static int osp_md_write_locked(const struct lu_env *env, struct dt_object *dt)
439 {
440         struct osp_object *obj = dt2osp_obj(dt);
441
442         return obj->opo_owner == env;
443 }
444
445 /**
446  * Implementation of dt_index_operations::dio_lookup
447  *
448  * Look up record by key under a remote index object. It packs lookup update
449  * into RPC, sends to the remote OUT and waits for the lookup result.
450  *
451  * \param[in] env       execution environment
452  * \param[in] dt        index object to lookup
453  * \param[out] rec      record in which to return lookup result
454  * \param[in] key       key of index which will be looked up
455  *
456  * \retval              1 if the lookup succeeds.
457  * \retval              negative errno if the lookup fails.
458  */
459 static int osp_md_index_lookup(const struct lu_env *env, struct dt_object *dt,
460                                struct dt_rec *rec, const struct dt_key *key)
461 {
462         struct lu_buf           *lbuf   = &osp_env_info(env)->osi_lb2;
463         struct osp_device       *osp    = lu2osp_dev(dt->do_lu.lo_dev);
464         struct dt_device        *dt_dev = &osp->opd_dt_dev;
465         struct osp_update_request   *update;
466         struct object_update_reply *reply;
467         struct ptlrpc_request      *req = NULL;
468         struct lu_fid              *fid;
469         int                        rc;
470         ENTRY;
471
472         /* Because it needs send the update buffer right away,
473          * just create an update buffer, instead of attaching the
474          * update_remote list of the thandle.
475          */
476         update = osp_update_request_create(dt_dev);
477         if (IS_ERR(update))
478                 RETURN(PTR_ERR(update));
479
480         rc = OSP_UPDATE_RPC_PACK(env, out_index_lookup_pack, update,
481                                  lu_object_fid(&dt->do_lu), rec, key);
482         if (rc != 0) {
483                 CERROR("%s: Insert update error: rc = %d\n",
484                        dt_dev->dd_lu_dev.ld_obd->obd_name, rc);
485                 GOTO(out, rc);
486         }
487
488         rc = osp_remote_sync(env, osp, update, &req);
489         if (rc < 0)
490                 GOTO(out, rc);
491
492         reply = req_capsule_server_sized_get(&req->rq_pill,
493                                              &RMF_OUT_UPDATE_REPLY,
494                                              OUT_UPDATE_REPLY_SIZE);
495         if (reply->ourp_magic != UPDATE_REPLY_MAGIC) {
496                 CERROR("%s: Wrong version %x expected %x: rc = %d\n",
497                        dt_dev->dd_lu_dev.ld_obd->obd_name,
498                        reply->ourp_magic, UPDATE_REPLY_MAGIC, -EPROTO);
499                 GOTO(out, rc = -EPROTO);
500         }
501
502         rc = object_update_result_data_get(reply, lbuf, 0);
503         if (rc < 0)
504                 GOTO(out, rc);
505
506         if (lbuf->lb_len != sizeof(*fid)) {
507                 CERROR("%s: lookup "DFID" %s wrong size %d\n",
508                        dt_dev->dd_lu_dev.ld_obd->obd_name,
509                        PFID(lu_object_fid(&dt->do_lu)), (char *)key,
510                        (int)lbuf->lb_len);
511                 GOTO(out, rc = -EINVAL);
512         }
513
514         fid = lbuf->lb_buf;
515         if (ptlrpc_rep_need_swab(req))
516                 lustre_swab_lu_fid(fid);
517         if (!fid_is_sane(fid)) {
518                 CERROR("%s: lookup "DFID" %s invalid fid "DFID"\n",
519                        dt_dev->dd_lu_dev.ld_obd->obd_name,
520                        PFID(lu_object_fid(&dt->do_lu)), (char *)key, PFID(fid));
521                 GOTO(out, rc = -EINVAL);
522         }
523
524         memcpy(rec, fid, sizeof(*fid));
525
526         GOTO(out, rc = 1);
527
528 out:
529         if (req != NULL)
530                 ptlrpc_req_finished(req);
531
532         osp_update_request_destroy(env, update);
533
534         return rc;
535 }
536
537 /**
538  * Implementation of dt_index_operations::dio_declare_insert
539  *
540  * Create the osp_update_request to track the update for this OSP
541  * in the transaction.
542  *
543  * \param[in] env       execution environment
544  * \param[in] dt        object for which to insert index
545  * \param[in] rec       record of the index which will be inserted
546  * \param[in] key       key of the index which will be inserted
547  * \param[in] th        the transaction handle
548  *
549  * \retval              0 if preparation succeeds.
550  * \retval              negative errno if preparation fails.
551  */
552 static int osp_md_declare_index_insert(const struct lu_env *env,
553                                        struct dt_object *dt,
554                                        const struct dt_rec *rec,
555                                        const struct dt_key *key,
556                                        struct thandle *th)
557 {
558         return osp_trans_update_request_create(th);
559 }
560
561 /**
562  * Implementation of dt_index_operations::dio_insert
563  *
564  * Add an OUT_INDEX_INSERT sub-request into the OUT RPC that will
565  * be flushed when the transaction stop.
566  *
567  * \param[in] env       execution environment
568  * \param[in] dt        object for which to insert index
569  * \param[in] rec       record of the index to be inserted
570  * \param[in] key       key of the index to be inserted
571  * \param[in] th        the transaction handle
572  *
573  * \retval              0 if packing index insert succeeds.
574  * \retval              negative errno if packing fails.
575  */
576 static int osp_md_index_insert(const struct lu_env *env, struct dt_object *dt,
577                                const struct dt_rec *rec,
578                                const struct dt_key *key, struct thandle *th)
579 {
580         struct osp_update_request *update;
581         int rc;
582
583         update = thandle_to_osp_update_request(th);
584         LASSERT(update != NULL);
585
586         rc = OSP_UPDATE_RPC_PACK(env, out_index_insert_pack, update,
587                                  lu_object_fid(&dt->do_lu), rec, key);
588         return rc;
589 }
590
591 /**
592  * Implementation of dt_index_operations::dio_declare_delete
593  *
594  * Create the osp_update_request to track the update for this OSP
595  * in the transaction.
596  *
597  * \param[in] env       execution environment
598  * \param[in] dt        object for which to delete index
599  * \param[in] key       key of the index
600  * \param[in] th        the transaction handle
601  *
602  * \retval              0 if preparation succeeds.
603  * \retval              negative errno if preparation fails.
604  */
605 static int osp_md_declare_index_delete(const struct lu_env *env,
606                                        struct dt_object *dt,
607                                        const struct dt_key *key,
608                                        struct thandle *th)
609 {
610         return osp_trans_update_request_create(th);
611 }
612
613 /**
614  * Implementation of dt_index_operations::dio_delete
615  *
616  * Add an OUT_INDEX_DELETE sub-request into the OUT RPC that will
617  * be flushed when the transaction stop.
618  *
619  * \param[in] env       execution environment
620  * \param[in] dt        object for which to delete index
621  * \param[in] key       key of the index which will be deleted
622  * \param[in] th        the transaction handle
623  *
624  * \retval              0 if packing index delete succeeds.
625  * \retval              negative errno if packing fails.
626  */
627 static int osp_md_index_delete(const struct lu_env *env,
628                                struct dt_object *dt,
629                                const struct dt_key *key,
630                                struct thandle *th)
631 {
632         struct osp_update_request *update;
633         int                      rc;
634
635         update = thandle_to_osp_update_request(th);
636         LASSERT(update != NULL);
637
638         rc = OSP_UPDATE_RPC_PACK(env, out_index_delete_pack, update,
639                                  lu_object_fid(&dt->do_lu), key);
640
641         return rc;
642 }
643
644 /**
645  * Implementation of dt_index_operations::dio_it.next
646  *
647  * Advance the pointer of the iterator to the next entry. It shares a similar
648  * internal implementation with osp_orphan_it_next(), which is being used for
649  * remote orphan index object. This method will be used for remote directory.
650  *
651  * \param[in] env       execution environment
652  * \param[in] di        iterator of this iteration
653  *
654  * \retval              0 if the pointer is advanced successfully.
655  * \retval              1 if it reaches to the end of the index object.
656  * \retval              negative errno if the pointer cannot be advanced.
657  */
658 static int osp_md_index_it_next(const struct lu_env *env, struct dt_it *di)
659 {
660         struct osp_it           *it = (struct osp_it *)di;
661         struct lu_idxpage       *idxpage;
662         struct lu_dirent        *ent = (struct lu_dirent *)it->ooi_ent;
663         int                     rc;
664         ENTRY;
665
666 again:
667         idxpage = it->ooi_cur_idxpage;
668         if (idxpage != NULL) {
669                 if (idxpage->lip_nr == 0)
670                         RETURN(1);
671
672                 it->ooi_pos_ent++;
673                 if (ent == NULL) {
674                         it->ooi_ent =
675                               (struct lu_dirent *)idxpage->lip_entries;
676                         RETURN(0);
677                 } else if (le16_to_cpu(ent->lde_reclen) != 0 &&
678                            it->ooi_pos_ent < idxpage->lip_nr) {
679                         ent = (struct lu_dirent *)(((char *)ent) +
680                                         le16_to_cpu(ent->lde_reclen));
681                         it->ooi_ent = ent;
682                         RETURN(0);
683                 } else {
684                         it->ooi_ent = NULL;
685                 }
686         }
687
688         rc = osp_it_next_page(env, di);
689         if (rc == 0)
690                 goto again;
691
692         RETURN(rc);
693 }
694
695 /**
696  * Implementation of dt_index_operations::dio_it.key
697  *
698  * Get the key at current iterator poisiton. These iteration methods
699  * (dio_it) will only be used for iterating the remote directory, so
700  * the key is the name of the directory entry.
701  *
702  * \param[in] env       execution environment
703  * \param[in] di        iterator of this iteration
704  *
705  * \retval              name of the current entry
706  */
707 static struct dt_key *osp_it_key(const struct lu_env *env,
708                                  const struct dt_it *di)
709 {
710         struct osp_it           *it = (struct osp_it *)di;
711         struct lu_dirent        *ent = (struct lu_dirent *)it->ooi_ent;
712
713         return (struct dt_key *)ent->lde_name;
714 }
715
716 /**
717  * Implementation of dt_index_operations::dio_it.key_size
718  *
719  * Get the key size at current iterator poisiton. These iteration methods
720  * (dio_it) will only be used for iterating the remote directory, so the key
721  * size is the name size of the directory entry.
722  *
723  * \param[in] env       execution environment
724  * \param[in] di        iterator of this iteration
725  *
726  * \retval              name size of the current entry
727  */
728
729 static int osp_it_key_size(const struct lu_env *env, const struct dt_it *di)
730 {
731         struct osp_it           *it = (struct osp_it *)di;
732         struct lu_dirent        *ent = (struct lu_dirent *)it->ooi_ent;
733
734         return (int)le16_to_cpu(ent->lde_namelen);
735 }
736
737 /**
738  * Implementation of dt_index_operations::dio_it.rec
739  *
740  * Get the record at current iterator position. These iteration methods
741  * (dio_it) will only be used for iterating the remote directory, so it
742  * uses lu_dirent_calc_size() to calculate the record size.
743  *
744  * \param[in] env       execution environment
745  * \param[in] di        iterator of this iteration
746  * \param[out] rec      the record to be returned
747  * \param[in] attr      attributes of the index object, so it knows
748  *                      how to pack the entry.
749  *
750  * \retval              only return 0 for now
751  */
752 static int osp_md_index_it_rec(const struct lu_env *env, const struct dt_it *di,
753                                struct dt_rec *rec, __u32 attr)
754 {
755         struct osp_it           *it = (struct osp_it *)di;
756         struct lu_dirent        *ent = (struct lu_dirent *)it->ooi_ent;
757         size_t                  reclen;
758
759         reclen = lu_dirent_calc_size(le16_to_cpu(ent->lde_namelen), attr);
760         memcpy(rec, ent, reclen);
761         return 0;
762 }
763
764 /**
765  * Implementation of dt_index_operations::dio_it.load
766  *
767  * Locate the iteration cursor to the specified position (cookie).
768  *
769  * \param[in] env       pointer to the thread context
770  * \param[in] di        pointer to the iteration structure
771  * \param[in] hash      the specified position
772  *
773  * \retval              positive number for locating to the exactly position
774  *                      or the next
775  * \retval              0 for arriving at the end of the iteration
776  * \retval              negative error number on failure
777  */
778 static int osp_it_load(const struct lu_env *env, const struct dt_it *di,
779                        __u64 hash)
780 {
781         struct osp_it   *it     = (struct osp_it *)di;
782         int              rc;
783
784         it->ooi_next = hash;
785         rc = osp_md_index_it_next(env, (struct dt_it *)di);
786         if (rc == 1)
787                 return 0;
788
789         if (rc == 0)
790                 return 1;
791
792         return rc;
793 }
794
795 const struct dt_index_operations osp_md_index_ops = {
796         .dio_lookup         = osp_md_index_lookup,
797         .dio_declare_insert = osp_md_declare_index_insert,
798         .dio_insert         = osp_md_index_insert,
799         .dio_declare_delete = osp_md_declare_index_delete,
800         .dio_delete         = osp_md_index_delete,
801         .dio_it     = {
802                 .init     = osp_it_init,
803                 .fini     = osp_it_fini,
804                 .get      = osp_it_get,
805                 .put      = osp_it_put,
806                 .next     = osp_md_index_it_next,
807                 .key      = osp_it_key,
808                 .key_size = osp_it_key_size,
809                 .rec      = osp_md_index_it_rec,
810                 .store    = osp_it_store,
811                 .load     = osp_it_load,
812                 .key_rec  = osp_it_key_rec,
813         }
814 };
815
816 /**
817  * Implement OSP layer dt_object_operations::do_xattr_list() interface.
818  *
819  * List extended attribute from the specified MDT/OST object, result is not
820  * cached because this is called by directory migration only.
821  *
822  * \param[in] env       pointer to the thread context
823  * \param[in] dt        pointer to the OSP layer dt_object
824  * \param[out] buf      pointer to the lu_buf to hold the extended attribute
825  *
826  * \retval              positive bytes used/required in the buffer
827  * \retval              negative error number on failure
828  */
829 static int osp_md_xattr_list(const struct lu_env *env, struct dt_object *dt,
830                              const struct lu_buf *buf)
831 {
832         struct osp_device *osp = lu2osp_dev(dt->do_lu.lo_dev);
833         struct osp_object *obj = dt2osp_obj(dt);
834         struct dt_device *dev = &osp->opd_dt_dev;
835         struct lu_buf *rbuf = &osp_env_info(env)->osi_lb2;
836         struct osp_update_request *update = NULL;
837         struct ptlrpc_request *req = NULL;
838         struct object_update_reply *reply;
839         const char *dname  = dt->do_lu.lo_dev->ld_obd->obd_name;
840         int rc = 0;
841
842         ENTRY;
843
844         LASSERT(buf);
845
846         if (unlikely(obj->opo_non_exist))
847                 RETURN(-ENOENT);
848
849         update = osp_update_request_create(dev);
850         if (IS_ERR(update))
851                 RETURN(PTR_ERR(update));
852
853         rc = OSP_UPDATE_RPC_PACK(env, out_xattr_list_pack, update,
854                                  lu_object_fid(&dt->do_lu), buf->lb_len);
855         if (rc) {
856                 CERROR("%s: Insert update error "DFID": rc = %d\n",
857                        dname, PFID(lu_object_fid(&dt->do_lu)), rc);
858                 GOTO(out, rc);
859         }
860
861         rc = osp_remote_sync(env, osp, update, &req);
862         if (rc < 0) {
863                 if (rc == -ENOENT) {
864                         dt->do_lu.lo_header->loh_attr &= ~LOHA_EXISTS;
865                         obj->opo_non_exist = 1;
866                 }
867                 GOTO(out, rc);
868         }
869
870         reply = req_capsule_server_sized_get(&req->rq_pill,
871                                              &RMF_OUT_UPDATE_REPLY,
872                                              OUT_UPDATE_REPLY_SIZE);
873         if (reply->ourp_magic != UPDATE_REPLY_MAGIC) {
874                 DEBUG_REQ(D_ERROR, req,
875                           "%s: Wrong version %x expected %x "DFID": rc = %d\n",
876                           dname, reply->ourp_magic, UPDATE_REPLY_MAGIC,
877                           PFID(lu_object_fid(&dt->do_lu)), -EPROTO);
878
879                 GOTO(out, rc = -EPROTO);
880         }
881
882         rc = object_update_result_data_get(reply, rbuf, 0);
883         if (rc < 0)
884                 GOTO(out, rc);
885
886         if (!buf->lb_buf)
887                 GOTO(out, rc);
888
889         if (unlikely(buf->lb_len < rbuf->lb_len))
890                 GOTO(out, rc = -ERANGE);
891
892         memcpy(buf->lb_buf, rbuf->lb_buf, rbuf->lb_len);
893         EXIT;
894
895 out:
896         if (req)
897                 ptlrpc_req_finished(req);
898
899         if (update && !IS_ERR(update))
900                 osp_update_request_destroy(env, update);
901
902         return rc;
903 }
904
905 /**
906  * Implementation of dt_object_operations::do_index_try
907  *
908  * Try to initialize the index API pointer for the given object. This
909  * is the entry point of the index API, i.e. we must call this method
910  * to initialize the index object before calling other index methods.
911  *
912  * \param[in] env       execution environment
913  * \param[in] dt        index object to be initialized
914  * \param[in] feat      the index feature of the object
915  *
916  * \retval              0 if the initialization succeeds.
917  * \retval              negative errno if the initialization fails.
918  */
919 static int osp_md_index_try(const struct lu_env *env,
920                             struct dt_object *dt,
921                             const struct dt_index_features *feat)
922 {
923         dt->do_index_ops = &osp_md_index_ops;
924         return 0;
925 }
926
927 /**
928  * Implementation of dt_object_operations::do_object_lock
929  *
930  * Enqueue a lock (by ldlm_cli_enqueue()) of remote object on the remote MDT,
931  * which will lock the object in the global namespace. And because the
932  * cross-MDT locks are relatively rare compared with normal local MDT operation,
933  * let's release it right away, instead of putting it into the LRU list.
934  *
935  * \param[in] env       execution environment
936  * \param[in] dt        object to be locked
937  * \param[out] lh       lock handle
938  * \param[in] einfo     enqueue information
939  * \param[in] policy    lock policy
940  *
941  * \retval              ELDLM_OK if locking the object succeeds.
942  * \retval              negative errno if locking fails.
943  */
944 static int osp_md_object_lock(const struct lu_env *env,
945                               struct dt_object *dt,
946                               struct lustre_handle *lh,
947                               struct ldlm_enqueue_info *einfo,
948                               union ldlm_policy_data *policy)
949 {
950         struct ldlm_res_id      *res_id;
951         struct osp_device       *osp = dt2osp_dev(lu2dt_dev(dt->do_lu.lo_dev));
952         struct ptlrpc_request   *req;
953         int                     rc = 0;
954         __u64                   flags = LDLM_FL_NO_LRU;
955         ENTRY;
956
957         res_id = einfo->ei_res_id;
958         LASSERT(res_id != NULL);
959
960         if (einfo->ei_mode & (LCK_EX | LCK_PW))
961                 flags |= LDLM_FL_COS_INCOMPAT;
962
963         req = ldlm_enqueue_pack(osp->opd_exp, 0);
964         if (IS_ERR(req))
965                 RETURN(PTR_ERR(req));
966
967         osp_set_req_replay(osp, req);
968         rc = ldlm_cli_enqueue(osp->opd_exp, &req, einfo, res_id,
969                               (const union ldlm_policy_data *)policy,
970                               &flags, NULL, 0, LVB_T_NONE, lh, 0);
971
972         ptlrpc_req_finished(req);
973
974         RETURN(rc == ELDLM_OK ? 0 : -EIO);
975 }
976
977 /**
978  * Implementation of dt_object_operations::do_object_unlock
979  *
980  * Cancel a lock of a remote object.
981  *
982  * \param[in] env       execution environment
983  * \param[in] dt        object to be unlocked
984  * \param[in] einfo     lock enqueue information
985  * \param[in] policy    lock policy
986  *
987  * \retval              Only return 0 for now.
988  */
989 static int osp_md_object_unlock(const struct lu_env *env,
990                                 struct dt_object *dt,
991                                 struct ldlm_enqueue_info *einfo,
992                                 union ldlm_policy_data *policy)
993 {
994         struct lustre_handle    *lockh = einfo->ei_cbdata;
995
996         /* unlock finally */
997         ldlm_lock_decref(lockh, einfo->ei_mode);
998
999         return 0;
1000 }
1001
1002 /**
1003  * Implement OSP layer dt_object_operations::do_declare_destroy() interface.
1004  *
1005  * Create the dt_update_request to track the update for this OSP
1006  * in the transaction.
1007  *
1008  * \param[in] env       pointer to the thread context
1009  * \param[in] dt        pointer to the OSP layer dt_object to be destroyed
1010  * \param[in] th        pointer to the transaction handler
1011  *
1012  * \retval              0 for success
1013  * \retval              negative error number on failure
1014  */
1015 int osp_md_declare_destroy(const struct lu_env *env, struct dt_object *dt,
1016                            struct thandle *th)
1017 {
1018         return osp_trans_update_request_create(th);
1019 }
1020
1021 /**
1022  * Implement OSP layer dt_object_operations::do_destroy() interface.
1023  *
1024  * Pack the destroy update into the RPC buffer, which will be sent
1025  * to the remote MDT during transaction stop.
1026  *
1027  * It also marks the object as non-cached.
1028  *
1029  * \param[in] env       pointer to the thread context
1030  * \param[in] dt        pointer to the OSP layer dt_object to be destroyed
1031  * \param[in] th        pointer to the transaction handler
1032  *
1033  * \retval              0 for success
1034  * \retval              negative error number on failure
1035  */
1036 int osp_md_destroy(const struct lu_env *env, struct dt_object *dt,
1037                    struct thandle *th)
1038 {
1039         struct osp_object *o = dt2osp_obj(dt);
1040         struct osp_device *osp = lu2osp_dev(dt->do_lu.lo_dev);
1041         struct osp_update_request *update;
1042         int rc = 0;
1043
1044         ENTRY;
1045         o->opo_non_exist = 1;
1046
1047         LASSERT(osp->opd_connect_mdt);
1048         update = thandle_to_osp_update_request(th);
1049         LASSERT(update != NULL);
1050
1051         rc = OSP_UPDATE_RPC_PACK(env, out_destroy_pack, update,
1052                                  lu_object_fid(&dt->do_lu));
1053         if (rc != 0)
1054                 RETURN(rc);
1055
1056         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
1057         rc = osp_insert_update_callback(env, update, dt2osp_obj(dt), NULL,
1058                                         NULL);
1059
1060         RETURN(rc);
1061 }
1062
1063 struct dt_object_operations osp_md_obj_ops = {
1064         .do_read_lock         = osp_md_read_lock,
1065         .do_write_lock        = osp_md_write_lock,
1066         .do_read_unlock       = osp_md_read_unlock,
1067         .do_write_unlock      = osp_md_write_unlock,
1068         .do_write_locked      = osp_md_write_locked,
1069         .do_declare_create    = osp_md_declare_create,
1070         .do_create            = osp_md_create,
1071         .do_declare_ref_add   = osp_md_declare_ref_add,
1072         .do_ref_add           = osp_md_ref_add,
1073         .do_declare_ref_del   = osp_md_declare_ref_del,
1074         .do_ref_del           = osp_md_ref_del,
1075         .do_declare_destroy   = osp_md_declare_destroy,
1076         .do_destroy           = osp_md_destroy,
1077         .do_ah_init           = osp_md_ah_init,
1078         .do_attr_get          = osp_attr_get,
1079         .do_declare_attr_set  = osp_md_declare_attr_set,
1080         .do_attr_set          = osp_md_attr_set,
1081         .do_xattr_get         = osp_xattr_get,
1082         .do_xattr_list        = osp_md_xattr_list,
1083         .do_declare_xattr_set = osp_declare_xattr_set,
1084         .do_xattr_set         = osp_xattr_set,
1085         .do_declare_xattr_del = osp_declare_xattr_del,
1086         .do_xattr_del         = osp_xattr_del,
1087         .do_index_try         = osp_md_index_try,
1088         .do_object_lock       = osp_md_object_lock,
1089         .do_object_unlock     = osp_md_object_unlock,
1090         .do_invalidate        = osp_invalidate,
1091 };
1092
1093 /**
1094  * Implementation of dt_body_operations::dbo_declare_write
1095  *
1096  * Create the osp_update_request to track the update for this OSP
1097  * in the transaction.
1098   *
1099  * \param[in] env       execution environment
1100  * \param[in] dt        object to be written
1101  * \param[in] buf       buffer to write which includes an embedded size field
1102  * \param[in] pos       offet in the object to start writing at
1103  * \param[in] th        transaction handle
1104  *
1105  * \retval              0 if preparation succeeds.
1106  * \retval              negative errno if preparation fails.
1107  */
1108 static ssize_t osp_md_declare_write(const struct lu_env *env,
1109                                     struct dt_object *dt,
1110                                     const struct lu_buf *buf,
1111                                     loff_t pos, struct thandle *th)
1112 {
1113         struct osp_device *osp = dt2osp_dev(th->th_dev);
1114         int rc;
1115
1116         rc = osp_trans_update_request_create(th);
1117         if (rc != 0)
1118                 return rc;
1119
1120         if (osp->opd_update == NULL)
1121                 return 0;
1122
1123         if (dt2osp_obj(dt)->opo_stale)
1124                 return -ESTALE;
1125
1126         return 0;
1127 }
1128
1129 /**
1130  * Implementation of dt_body_operations::dbo_write
1131  *
1132  * Pack the write object update into the RPC buffer, which will be sent
1133  * to the remote MDT during transaction stop.
1134  *
1135  * \param[in] env       execution environment
1136  * \param[in] dt        object to be written
1137  * \param[in] buf       buffer to write which includes an embedded size field
1138  * \param[in] pos       offet in the object to start writing at
1139  * \param[in] th        transaction handle
1140  *
1141  * \retval              the buffer size in bytes if packing succeeds.
1142  * \retval              negative errno if packing fails.
1143  */
1144 static ssize_t osp_md_write(const struct lu_env *env, struct dt_object *dt,
1145                             const struct lu_buf *buf, loff_t *pos,
1146                             struct thandle *th)
1147 {
1148         struct osp_object         *obj = dt2osp_obj(dt);
1149         struct osp_update_request  *update;
1150         struct osp_thandle        *oth = thandle_to_osp_thandle(th);
1151         ssize_t                   rc;
1152         ENTRY;
1153
1154         update = thandle_to_osp_update_request(th);
1155         LASSERT(update != NULL);
1156
1157         CDEBUG(D_INFO, "write "DFID" offset = %llu length = %zu\n",
1158                PFID(lu_object_fid(&dt->do_lu)), *pos, buf->lb_len);
1159
1160         rc = OSP_UPDATE_RPC_PACK(env, out_write_pack, update,
1161                                  lu_object_fid(&dt->do_lu), buf, *pos);
1162         if (rc < 0)
1163                 RETURN(rc);
1164
1165         rc = osp_check_and_set_rpc_version(oth, obj);
1166         if (rc < 0)
1167                 RETURN(rc);
1168
1169         /* XXX: how about the write error happened later? */
1170         *pos += buf->lb_len;
1171
1172         if (obj->opo_attr.la_valid & LA_SIZE && obj->opo_attr.la_size < *pos)
1173                 obj->opo_attr.la_size = *pos;
1174
1175         spin_lock(&obj->opo_lock);
1176         if (list_empty(&obj->opo_invalidate_cb_list)) {
1177                 lu_object_get(&obj->opo_obj.do_lu);
1178
1179                 list_add_tail(&obj->opo_invalidate_cb_list,
1180                               &update->our_invalidate_cb_list);
1181         }
1182         spin_unlock(&obj->opo_lock);
1183
1184         RETURN(buf->lb_len);
1185 }
1186
1187 static inline void orr_le_to_cpu(struct out_read_reply *orr_dst,
1188                                  const struct out_read_reply *orr_src)
1189 {
1190         orr_dst->orr_size = le32_to_cpu(orr_src->orr_size);
1191         orr_dst->orr_padding = le32_to_cpu(orr_src->orr_padding);
1192         orr_dst->orr_offset = le64_to_cpu(orr_dst->orr_offset);
1193 }
1194
1195
1196
1197 static ssize_t osp_md_read(const struct lu_env *env, struct dt_object *dt,
1198                            struct lu_buf *rbuf, loff_t *pos)
1199 {
1200         struct osp_device *osp = lu2osp_dev(dt->do_lu.lo_dev);
1201         struct dt_device *dt_dev        = &osp->opd_dt_dev;
1202         struct lu_buf *lbuf = &osp_env_info(env)->osi_lb2;
1203         char *ptr = rbuf->lb_buf;
1204         struct osp_update_request *update;
1205         struct ptlrpc_request *req = NULL;
1206         struct out_read_reply *orr;
1207         struct ptlrpc_bulk_desc *desc;
1208         struct object_update_reply *reply;
1209         __u32 left_size;
1210         int nbufs;
1211         int i;
1212         int rc;
1213         ENTRY;
1214
1215         /* Because it needs send the update buffer right away,
1216          * just create an update buffer, instead of attaching the
1217          * update_remote list of the thandle.  */
1218         update = osp_update_request_create(dt_dev);
1219         if (IS_ERR(update))
1220                 RETURN(PTR_ERR(update));
1221
1222         rc = OSP_UPDATE_RPC_PACK(env, out_read_pack, update,
1223                                  lu_object_fid(&dt->do_lu),
1224                                  rbuf->lb_len, *pos);
1225         if (rc != 0) {
1226                 CERROR("%s: cannot insert update: rc = %d\n",
1227                        dt_dev->dd_lu_dev.ld_obd->obd_name, rc);
1228                 GOTO(out_update, rc);
1229         }
1230
1231         CDEBUG(D_INFO, "%s "DFID" read offset %llu size %zu\n",
1232                dt_dev->dd_lu_dev.ld_obd->obd_name,
1233                PFID(lu_object_fid(&dt->do_lu)), *pos, rbuf->lb_len);
1234         rc = osp_prep_update_req(env, osp->opd_obd->u.cli.cl_import, update,
1235                                  &req);
1236         if (rc != 0)
1237                 GOTO(out_update, rc);
1238
1239         nbufs = (rbuf->lb_len + OUT_BULK_BUFFER_SIZE - 1) /
1240                                         OUT_BULK_BUFFER_SIZE;
1241         /* allocate bulk descriptor */
1242         desc = ptlrpc_prep_bulk_imp(req, nbufs, 1,
1243                                     PTLRPC_BULK_PUT_SINK | PTLRPC_BULK_BUF_KVEC,
1244                                     MDS_BULK_PORTAL, &ptlrpc_bulk_kvec_ops);
1245         if (desc == NULL)
1246                 GOTO(out, rc = -ENOMEM);
1247
1248         /* split the buffer into small chunk size */
1249         left_size = rbuf->lb_len;
1250         for (i = 0; i < nbufs; i++) {
1251                 int read_size;
1252
1253                 read_size = left_size > OUT_BULK_BUFFER_SIZE ?
1254                                 OUT_BULK_BUFFER_SIZE : left_size;
1255                 desc->bd_frag_ops->add_iov_frag(desc, ptr, read_size);
1256
1257                 ptr += read_size;
1258         }
1259
1260         osp_set_req_replay(osp, req);
1261         req->rq_bulk_read = 1;
1262         /* send request to master and wait for RPC to complete */
1263         rc = ptlrpc_queue_wait(req);
1264         if (rc != 0)
1265                 GOTO(out, rc);
1266
1267         rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk,
1268                                           req->rq_bulk->bd_nob_transferred);
1269         if (rc < 0)
1270                 GOTO(out, rc);
1271
1272         reply = req_capsule_server_sized_get(&req->rq_pill,
1273                                              &RMF_OUT_UPDATE_REPLY,
1274                                              OUT_UPDATE_REPLY_SIZE);
1275
1276         if (reply->ourp_magic != UPDATE_REPLY_MAGIC) {
1277                 CERROR("%s: invalid update reply magic %x expected %x:"
1278                        " rc = %d\n", dt_dev->dd_lu_dev.ld_obd->obd_name,
1279                        reply->ourp_magic, UPDATE_REPLY_MAGIC, -EPROTO);
1280                 GOTO(out, rc = -EPROTO);
1281         }
1282
1283         rc = object_update_result_data_get(reply, lbuf, 0);
1284         if (rc < 0)
1285                 GOTO(out, rc);
1286
1287         if (lbuf->lb_len < sizeof(*orr))
1288                 GOTO(out, rc = -EPROTO);
1289
1290         orr = lbuf->lb_buf;
1291         orr_le_to_cpu(orr, orr);
1292         rc = orr->orr_size;
1293         *pos = orr->orr_offset;
1294 out:
1295         ptlrpc_req_finished(req);
1296
1297 out_update:
1298         osp_update_request_destroy(env, update);
1299
1300         RETURN(rc);
1301 }
1302
1303 /* These body operation will be used to write symlinks during migration etc */
1304 struct dt_body_operations osp_md_body_ops = {
1305         .dbo_declare_write      = osp_md_declare_write,
1306         .dbo_write              = osp_md_write,
1307         .dbo_read               = osp_md_read,
1308 };