Whamcloud - gitweb
LU-17705 ptlrpc: replace synchronize_rcu() with rcu_barrier()
[fs/lustre-release.git] / lustre / osp / osp_internal.h
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, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osp/osp_internal.h
33  *
34  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
35  */
36
37 #ifndef _OSP_INTERNAL_H
38 #define _OSP_INTERNAL_H
39
40 #include <obd.h>
41 #include <obd_class.h>
42 #include <dt_object.h>
43 #include <md_object.h>
44 #include <lustre_fid.h>
45 #include <lustre_update.h>
46 #include <lu_target.h>
47
48 /*
49  * Infrastructure to support tracking of last committed llog record
50  */
51 struct osp_id_tracker {
52         spinlock_t               otr_lock;
53         __u64                    otr_next_id;
54         __u64                    otr_committed_id;
55         /* callback is register once per diskfs -- that's the whole point */
56         struct dt_txn_callback   otr_tx_cb;
57         /* single node can run many clusters */
58         struct list_head         otr_wakeup_list;
59         struct list_head         otr_list;
60         /* underlying shared device */
61         struct dt_device        *otr_dev;
62         /* how many users of this tracker */
63         atomic_t                 otr_refcount;
64 };
65
66 struct osp_precreate {
67         /*
68          * Precreation pool
69          */
70
71         /* last fid to assign in creation */
72         struct lu_fid                    osp_pre_used_fid;
73         /* last created id OST reported, next-created - available id's */
74         struct lu_fid                    osp_pre_last_created_fid;
75         /* how many ids are reserved in declare, we shouldn't block in create */
76         __u64                            osp_pre_reserved;
77         /* consumers (who needs new ids) wait here */
78         wait_queue_head_t                osp_pre_user_waitq;
79         /* current precreation status: working, failed, stopping? */
80         int                              osp_pre_status;
81         /* how many objects to precreate next time */
82         int                              osp_pre_create_count;
83         int                              osp_pre_min_create_count;
84         int                              osp_pre_max_create_count;
85         /* whether to increase precreation window next time or not */
86         int                              osp_pre_create_slow;
87         /* cleaning up orphans or recreating missing objects */
88         int                              osp_pre_recovering;
89 };
90
91 struct osp_update_request_sub {
92         struct object_update_request    *ours_req; /* may be vmalloc'd */
93         size_t                          ours_req_size;
94         /* Linked to osp_update_request->our_req_list */
95         struct list_head                ours_list;
96 };
97
98 struct osp_update_request {
99         int                             our_flags;
100         /* update request result */
101         int                             our_rc;
102
103         /* List of osp_update_request_sub */
104         struct list_head                our_req_list;
105         int                             our_req_nr;
106         int                             our_update_nr;
107
108         struct list_head                our_cb_items;
109         struct list_head                our_invalidate_cb_list;
110
111         /* points to thandle if this update request belongs to one */
112         struct osp_thandle              *our_th;
113
114         __u64                           our_version;
115         __u64                           our_generation;
116         /* protect our_list and flag */
117         spinlock_t                      our_list_lock;
118         /* linked to the list(ou_list) in osp_updates */
119         struct list_head                our_list;
120         __u32                           our_batchid;
121         __u32                           our_req_ready:1;
122
123 };
124
125 struct osp_updates {
126         struct list_head        ou_list;
127         spinlock_t              ou_lock;
128         wait_queue_head_t       ou_waitq;
129
130         /* The next rpc version which supposed to be sent in
131          * osp_send_update_thread().*/
132         __u64                   ou_rpc_version;
133
134         /* The rpc version assigned to the osp thandle during (osp_md_write()),
135          * which will be sent by this order. Note: the osp_thandle has be sent
136          * by this order to make sure the remote update log will follow the
137          * llog format rule. XXX: these probably should be removed once we
138          * invent new llog format */
139         __u64                   ou_version;
140
141         /* The generation of current osp update RPC, which is used to make sure
142          * those stale RPC(with older generation) will not be sent, otherwise it
143          * will cause update lllog corruption */
144         __u64                   ou_generation;
145
146         /* dedicate update thread */
147         struct task_struct      *ou_update_task;
148         struct lu_env           ou_env;
149 };
150
151 struct osp_rpc_lock {
152         /** Lock protecting in-flight RPC concurrency. */
153         struct mutex            rpcl_mutex;
154         /** Used for MDS/RPC load testing purposes. */
155         unsigned int            rpcl_fakes;
156 };
157
158 struct osp_device {
159         struct dt_device                 opd_dt_dev;
160         /* corresponded OST index */
161         int                              opd_index;
162
163         /* corrsponded MDT index, which will be used when connecting to OST
164          * for validating the connection (see ofd_parse_connect_data) */
165         int                              opd_group;
166         /* device used to store persistent state (llogs, last ids) */
167         struct obd_export               *opd_storage_exp;
168         struct dt_device                *opd_storage;
169         struct dt_object                *opd_last_used_oid_file;
170         struct dt_object                *opd_last_used_seq_file;
171
172         /* stored persistently in LE format, updated directly to/from disk
173          * and required le64_to_cpu() conversion before use.
174          * Protected by opd_pre_lock */
175         struct lu_fid                   opd_last_used_fid;
176         /* on disk copy last_used_fid.f_oid or idif */
177         u64                             opd_last_id;
178         struct lu_fid                   opd_gap_start_fid;
179         int                              opd_gap_count;
180         /* connection to OST */
181         struct osp_rpc_lock              opd_rpc_lock;
182         struct obd_device               *opd_obd;
183         struct obd_export               *opd_exp;
184         struct obd_connect_data         *opd_connect_data;
185         int                              opd_connects;
186         /* connection status. */
187         unsigned int                     opd_new_connection:1,
188                                          opd_got_disconnected:1,
189                                          opd_imp_connected:1,
190                                          opd_imp_active:1,
191                                          opd_imp_seen_connected:1,
192                                          opd_connect_mdt:1;
193
194         /* whether local recovery is completed:
195          * reported via ->ldo_recovery_complete() */
196         int                              opd_recovery_completed;
197
198         /* precreate structure for OSP */
199         struct osp_precreate            *opd_pre;
200         /* dedicate precreate thread */
201         struct task_struct              *opd_pre_task;
202         spinlock_t                       opd_pre_lock;
203         /* thread waits for signals about pool going empty */
204         wait_queue_head_t                opd_pre_waitq;
205
206         /* send update thread */
207         struct osp_updates              *opd_update;
208
209         /*
210          * OST synchronization thread
211          */
212         spinlock_t                       opd_sync_lock;
213         /* unique generation, to recognize start of new records in the llog */
214         struct llog_gen                  opd_sync_generation;
215         /* number of changes to sync, used to wake up sync thread */
216         atomic_t                         opd_sync_changes;
217         /* processing of changes from previous mount is done? */
218         int                              opd_sync_prev_done;
219         /* found records */
220         struct task_struct              *opd_sync_task;
221         wait_queue_head_t                opd_sync_waitq;
222         /* list of in flight rpcs */
223         struct list_head                 opd_sync_in_flight_list;
224         /* list of remotely committed rpc */
225         struct list_head                 opd_sync_committed_there;
226         /* number of RPCs in flight - flow control */
227         atomic_t                         opd_sync_rpcs_in_flight;
228         int                              opd_sync_max_rpcs_in_flight;
229         /* number of RPC in processing (including non-committed by OST) */
230         atomic_t                         opd_sync_rpcs_in_progress;
231         int                              opd_sync_max_rpcs_in_progress;
232         /* osd api's commit cb control structure */
233         struct dt_txn_callback           opd_sync_txn_cb;
234         /* last used change number -- semantically similar to transno */
235         unsigned long                    opd_sync_last_used_id;
236         /* last committed change number -- semantically similar to
237          * last_committed */
238         __u64                            opd_sync_last_committed_id;
239         /* last processed catalog index */
240         int                              opd_sync_last_catalog_idx;
241         /* number of processed records */
242         atomic64_t                       opd_sync_processed_recs;
243         /* stop processing new requests until barrier=0 */
244         atomic_t                         opd_sync_barrier;
245         wait_queue_head_t                opd_sync_barrier_waitq;
246         /* last generated id */
247         ktime_t                          opd_sync_next_commit_cb;
248         atomic_t                         opd_commits_registered;
249
250         /*
251          * statfs related fields: OSP maintains it on its own
252          */
253         struct obd_statfs                opd_statfs;
254         ktime_t                          opd_statfs_fresh_till;
255         struct timer_list                opd_statfs_timer;
256         int                              opd_statfs_update_in_progress;
257         /* how often to update statfs data */
258         time64_t                         opd_statfs_maxage;
259
260         struct dentry                   *opd_debugfs;
261
262         /* If the caller wants to do some idempotent async operations on
263          * remote server, it can append the async remote requests on the
264          * osp_device::opd_async_requests via declare() functions, these
265          * requests can be packed together and sent to the remote server
266          * via single OUT RPC later. */
267         struct osp_update_request       *opd_async_requests;
268         /* Protect current operations on opd_async_requests. */
269         struct mutex                     opd_async_requests_mutex;
270         struct list_head                 opd_async_updates;
271         struct rw_semaphore              opd_async_updates_rwsem;
272         atomic_t                         opd_async_updates_count;
273
274         /*
275          * Limit the object allocation using ENOSPC for opd_pre_status
276          */
277         int                             opd_reserved_mb_high;
278         int                             opd_reserved_mb_low;
279 };
280
281 #define opd_pre_used_fid                opd_pre->osp_pre_used_fid
282 #define opd_pre_last_created_fid        opd_pre->osp_pre_last_created_fid
283 #define opd_pre_reserved                opd_pre->osp_pre_reserved
284 #define opd_pre_user_waitq              opd_pre->osp_pre_user_waitq
285 #define opd_pre_status                  opd_pre->osp_pre_status
286 #define opd_pre_create_count            opd_pre->osp_pre_create_count
287 #define opd_pre_min_create_count        opd_pre->osp_pre_min_create_count
288 #define opd_pre_max_create_count        opd_pre->osp_pre_max_create_count
289 #define opd_pre_create_slow             opd_pre->osp_pre_create_slow
290 #define opd_pre_recovering              opd_pre->osp_pre_recovering
291
292 extern struct kmem_cache *osp_object_kmem;
293
294 /* The first part of oxe_buf is xattr name, and is '\0' terminated.
295  * The left part is for value, binary mode. */
296 struct osp_xattr_entry {
297         struct list_head         oxe_list;
298         atomic_t                 oxe_ref;
299         void                    *oxe_value;
300         size_t                   oxe_buflen;
301         size_t                   oxe_namelen;
302         size_t                   oxe_vallen;
303         unsigned int             oxe_exist:1,
304                                  oxe_ready:1;
305         char                     oxe_buf[0];
306 };
307
308 /* this is a top object */
309 struct osp_object {
310         struct lu_object_header opo_header;
311         struct dt_object        opo_obj;
312         unsigned int            opo_reserved:1,
313                                 opo_non_exist:1,
314                                 opo_stale:1;
315
316         /* read/write lock for md osp object */
317         struct rw_semaphore     opo_sem;
318         const struct lu_env     *opo_owner;
319         struct lu_attr          opo_attr;
320         struct list_head        opo_xattr_list;
321         struct list_head        opo_invalidate_cb_list;
322         /* Protect opo_ooa. */
323         spinlock_t              opo_lock;
324         /* to implement in-flight invalidation */
325         atomic_t                opo_invalidate_seq;
326         struct rw_semaphore     opo_invalidate_sem;
327 };
328
329 extern const struct lu_object_operations osp_lu_obj_ops;
330 extern const struct dt_object_operations osp_md_obj_ops;
331 extern const struct dt_body_operations osp_md_body_ops;
332
333 struct osp_thread_info {
334         struct lu_buf            osi_lb;
335         struct lu_buf            osi_lb2;
336         struct lu_fid            osi_fid;
337         struct lu_attr           osi_attr;
338         struct ost_id            osi_oi;
339         struct ost_id            osi_oi2;
340         loff_t                   osi_off;
341         union {
342                 struct llog_rec_hdr             osi_hdr;
343                 struct llog_unlink64_rec        osi_unlink;
344                 struct llog_setattr64_rec_v2    osi_setattr;
345                 struct llog_gen_rec             osi_gen;
346         };
347         struct llog_cookie       osi_cookie;
348         struct llog_catid        osi_cid;
349         struct lu_seq_range      osi_seq;
350         struct ldlm_res_id       osi_resid;
351         struct obdo              osi_obdo;
352 };
353
354 /* Iterator for OSP */
355 struct osp_it {
356         __u32                     ooi_pos_page;
357         __u32                     ooi_pos_lu_page;
358         __u32                     ooi_attr;
359         __u32                     ooi_rec_size;
360         int                       ooi_pos_ent;
361         int                       ooi_total_npages;
362         int                       ooi_valid_npages;
363         unsigned int              ooi_swab:1;
364         __u64                     ooi_next;
365         struct dt_object         *ooi_obj;
366         void                     *ooi_ent;
367         struct page              *ooi_cur_page;
368         struct lu_idxpage        *ooi_cur_idxpage;
369         struct page              **ooi_pages;
370 };
371
372 #define OSP_THANDLE_MAGIC       0x20141214
373 struct osp_thandle {
374         struct thandle           ot_super;
375
376         /* OSP will use this thandle to update last oid*/
377         struct thandle          *ot_storage_th;
378         __u32                    ot_magic;
379         struct list_head         ot_commit_dcb_list;
380         struct list_head         ot_stop_dcb_list;
381         struct osp_update_request *ot_our;
382         atomic_t                 ot_refcount;
383 };
384
385 static inline struct osp_thandle *
386 thandle_to_osp_thandle(struct thandle *th)
387 {
388         return container_of(th, struct osp_thandle, ot_super);
389 }
390
391 static inline struct osp_update_request *
392 thandle_to_osp_update_request(struct thandle *th)
393 {
394         struct osp_thandle *oth;
395
396         oth = thandle_to_osp_thandle(th);
397         return oth->ot_our;
398 }
399
400 /* The transaction only include the updates on the remote node, and
401  * no local updates at all */
402 static inline bool is_only_remote_trans(struct thandle *th)
403 {
404         return th->th_top == NULL;
405 }
406
407 static inline void osp_objid_buf_prep(struct lu_buf *buf, loff_t *off,
408                                       __u64 *id, int index)
409 {
410         /* Note: through id is only 32 bits, it will also write 64 bits
411          * for oid to keep compatibility with the previous version. */
412         buf->lb_buf = (void *)id;
413         buf->lb_len = sizeof(u64);
414         *off = sizeof(u64) * index;
415 }
416
417 static inline void osp_objseq_buf_prep(struct lu_buf *buf, loff_t *off,
418                                        __u64 *seq, int index)
419 {
420         buf->lb_buf = (void *)seq;
421         buf->lb_len = sizeof(u64);
422         *off = sizeof(u64) * index;
423 }
424
425 static inline void osp_buf_prep(struct lu_buf *lb, void *buf, int buf_len)
426 {
427         lb->lb_buf = buf;
428         lb->lb_len = buf_len;
429 }
430
431 extern struct lu_context_key osp_thread_key;
432
433 static inline struct osp_thread_info *osp_env_info(const struct lu_env *env)
434 {
435         return lu_env_info(env, &osp_thread_key);
436 }
437
438 struct osp_txn_info {
439         __u64   oti_current_id;
440 };
441
442 extern struct lu_context_key osp_txn_key;
443
444 static inline struct osp_txn_info *osp_txn_info(struct lu_context *ctx)
445 {
446         struct osp_txn_info *info;
447
448         info = lu_context_key_get(ctx, &osp_txn_key);
449         return info;
450 }
451
452 extern const struct lu_device_operations osp_lu_ops;
453
454 static inline int lu_device_is_osp(struct lu_device *d)
455 {
456         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osp_lu_ops);
457 }
458
459 static inline struct osp_device *lu2osp_dev(struct lu_device *d)
460 {
461         LASSERT(lu_device_is_osp(d));
462         return container_of_safe(d, struct osp_device, opd_dt_dev.dd_lu_dev);
463 }
464
465 static inline struct lu_device *osp2lu_dev(struct osp_device *d)
466 {
467         return &d->opd_dt_dev.dd_lu_dev;
468 }
469
470 static inline struct osp_device *dt2osp_dev(struct dt_device *d)
471 {
472         LASSERT(lu_device_is_osp(&d->dd_lu_dev));
473         return container_of_safe(d, struct osp_device, opd_dt_dev);
474 }
475
476 static inline struct osp_object *lu2osp_obj(struct lu_object *o)
477 {
478         LASSERT(ergo(o != NULL, lu_device_is_osp(o->lo_dev)));
479         return container_of_safe(o, struct osp_object, opo_obj.do_lu);
480 }
481
482 static inline struct lu_object *osp2lu_obj(struct osp_object *obj)
483 {
484         return &obj->opo_obj.do_lu;
485 }
486
487 static inline struct osp_object *osp_obj(const struct lu_object *o)
488 {
489         LASSERT(lu_device_is_osp(o->lo_dev));
490         return container_of_safe(o, struct osp_object, opo_obj.do_lu);
491 }
492
493 static inline struct osp_object *dt2osp_obj(const struct dt_object *d)
494 {
495         return osp_obj(&d->do_lu);
496 }
497
498 static inline struct dt_object *osp_object_child(struct osp_object *o)
499 {
500         return container_of(lu_object_next(osp2lu_obj(o)),
501                             struct dt_object, do_lu);
502 }
503
504 static inline struct seq_server_site *osp_seq_site(struct osp_device *osp)
505 {
506         return osp->opd_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
507 }
508
509 /**
510  * Serializes in-flight MDT-modifying RPC requests to preserve idempotency.
511  *
512  * This mutex is used to implement execute-once semantics on the MDT.
513  * The MDT stores the last transaction ID and result for every client in
514  * its last_rcvd file. If the client doesn't get a reply, it can safely
515  * resend the request and the MDT will reconstruct the reply being aware
516  * that the request has already been executed. Without this lock,
517  * execution status of concurrent in-flight requests would be
518  * overwritten.
519  *
520  * This imlpementation limits the extent to which we can keep a full pipeline
521  * of in-flight requests from a single client.  This limitation can be
522  * overcome by allowing multiple slots per client in the last_rcvd file,
523  * see LU-6864.
524  */
525 #define OSP_FAKE_RPCL_IT ((void *)0x2c0012bfUL)
526
527 static inline void osp_init_rpc_lock(struct osp_device *osp)
528 {
529         struct osp_rpc_lock *lck = &osp->opd_rpc_lock;
530
531         mutex_init(&lck->rpcl_mutex);
532         lck->rpcl_fakes = 0;
533 }
534
535 static inline void osp_get_rpc_lock(struct osp_device *osp)
536 {
537         struct osp_rpc_lock *lck = &osp->opd_rpc_lock;
538
539         /* This would normally block until the existing request finishes.
540          * If fail_loc is set it will block until the regular request is
541          * done, then increment rpcl_fakes.  Once that is non-zero it
542          * will only be cleared when all fake requests are finished.
543          * Only when all fake requests are finished can normal requests
544          * be sent, to ensure they are recoverable again.
545          */
546  again:
547         mutex_lock(&lck->rpcl_mutex);
548
549         if (CFS_FAIL_CHECK_QUIET(OBD_FAIL_MDC_RPCS_SEM) ||
550             CFS_FAIL_CHECK_QUIET(OBD_FAIL_OSP_RPCS_SEM)) {
551                 lck->rpcl_fakes++;
552                 mutex_unlock(&lck->rpcl_mutex);
553
554                 return;
555         }
556
557         /* This will only happen when the CFS_FAIL_CHECK() was just turned
558          * off but there are still requests in progress.  Wait until they
559          * finish.  It doesn't need to be efficient in this extremely rare
560          * case, just have low overhead in the common case when it isn't true.
561          */
562         if (unlikely(lck->rpcl_fakes)) {
563                 mutex_unlock(&lck->rpcl_mutex);
564                 schedule_timeout_uninterruptible(cfs_time_seconds(1) / 4);
565
566                 goto again;
567         }
568 }
569
570 static inline void osp_put_rpc_lock(struct osp_device *osp)
571 {
572         struct osp_rpc_lock *lck = &osp->opd_rpc_lock;
573
574         if (lck->rpcl_fakes) { /* OBD_FAIL_OSP_RPCS_SEM */
575                 mutex_lock(&lck->rpcl_mutex);
576
577                 if (lck->rpcl_fakes) /* check again under lock */
578                         lck->rpcl_fakes--;
579         }
580
581         mutex_unlock(&lck->rpcl_mutex);
582 }
583
584 static inline int osp_fid_diff(const struct lu_fid *fid1,
585                                const struct lu_fid *fid2)
586 {
587         /* In 2.6+ ost_idx is packed into IDIF FID, while in 2.4 and 2.5 IDIF
588          * is always FID_SEQ_IDIF(0x100000000ULL), which does not include OST
589          * index in the seq. So we can not compare IDIF FID seq here */
590         if (fid_is_idif(fid1) && fid_is_idif(fid2)) {
591                 __u32 ost_idx1 = fid_idif_ost_idx(fid1);
592                 __u32 ost_idx2 = fid_idif_ost_idx(fid2);
593
594                 LASSERTF(ost_idx1 == 0 || ost_idx2 == 0 || ost_idx1 == ost_idx2,
595                          "fid1: "DFID", fid2: "DFID"\n", PFID(fid1),
596                          PFID(fid2));
597
598                 return fid_idif_id(fid1->f_seq, fid1->f_oid, 0) -
599                        fid_idif_id(fid2->f_seq, fid2->f_oid, 0);
600         }
601
602         LASSERTF(fid_seq(fid1) == fid_seq(fid2), "fid1:"DFID", fid2:"DFID"\n",
603                  PFID(fid1), PFID(fid2));
604
605         return fid_oid(fid1) - fid_oid(fid2);
606 }
607
608 static inline void osp_fid_to_obdid(struct lu_fid *last_fid, u64 *osi_id)
609 {
610         if (fid_is_idif((last_fid)))
611                 *osi_id = fid_idif_id(fid_seq(last_fid), fid_oid(last_fid),
612                                       fid_ver(last_fid));
613         else
614                 *osi_id = fid_oid(last_fid);
615 }
616
617 static inline void osp_update_last_fid(struct osp_device *d, struct lu_fid *fid)
618 {
619         int diff = osp_fid_diff(fid, &d->opd_last_used_fid);
620         struct lu_fid *gap_start = &d->opd_gap_start_fid;
621
622         /*
623          * we might have lost precreated objects due to VBR and precreate
624          * orphans, the gap in objid can be calculated properly only here
625          */
626         if (diff > 0) {
627                 if (diff > 1) {
628                         d->opd_gap_start_fid = d->opd_last_used_fid;
629                         if (fid_oid(gap_start) == LUSTRE_DATA_SEQ_MAX_WIDTH) {
630                                 gap_start->f_seq++;
631                                 gap_start->f_oid = fid_is_idif(gap_start) ?
632                                                                0 : 1;
633                         } else {
634                                 gap_start->f_oid++;
635                         }
636                         d->opd_gap_count = diff - 1;
637                         CDEBUG(D_HA, "Gap in objids: start="DFID", count =%d\n",
638                                PFID(&d->opd_gap_start_fid), d->opd_gap_count);
639                 }
640                 d->opd_last_used_fid = *fid;
641                 osp_fid_to_obdid(fid, &d->opd_last_id);
642         }
643 }
644
645 static int osp_fid_end_seq(const struct lu_env *env, struct lu_fid *fid)
646 {
647         if (fid_is_idif(fid)) {
648                 struct osp_thread_info *info = osp_env_info(env);
649                 struct ost_id *oi = &info->osi_oi;
650
651                 fid_to_ostid(fid, oi);
652                 return ostid_id(oi) == IDIF_MAX_OID;
653         } else {
654                 return fid_oid(fid) == LUSTRE_DATA_SEQ_MAX_WIDTH;
655         }
656 }
657
658 static inline int osp_precreate_end_seq_nolock(const struct lu_env *env,
659                                                struct osp_device *osp)
660 {
661         struct lu_fid *fid = &osp->opd_pre_last_created_fid;
662
663         return osp_fid_end_seq(env, fid);
664 }
665
666 static inline int osp_precreate_end_seq(const struct lu_env *env,
667                                         struct osp_device *osp)
668 {
669         int rc;
670
671         spin_lock(&osp->opd_pre_lock);
672         rc = osp_precreate_end_seq_nolock(env, osp);
673         spin_unlock(&osp->opd_pre_lock);
674         return rc;
675 }
676
677 static inline int osp_is_fid_client(struct osp_device *osp)
678 {
679         struct obd_import *imp = osp->opd_obd->u.cli.cl_import;
680
681         return imp->imp_connect_data.ocd_connect_flags & OBD_CONNECT_FID;
682 }
683
684 struct object_update *
685 update_buffer_get_update(struct object_update_request *request,
686                          unsigned int index);
687
688 int osp_extend_update_buffer(const struct lu_env *env,
689                              struct osp_update_request *our);
690
691 struct osp_update_request_sub *
692 osp_current_object_update_request(struct osp_update_request *our);
693
694 int osp_object_update_request_create(struct osp_update_request *our,
695                                      size_t size);
696
697 #define OSP_UPDATE_RPC_PACK(env, out_something_pack, our, ...)          \
698 ({                                                                      \
699         struct object_update *object_update;                            \
700         size_t max_update_length;                                       \
701         struct osp_update_request_sub *ours;                            \
702         int ret;                                                        \
703                                                                         \
704         while (1) {                                                     \
705                 ours = osp_current_object_update_request(our);          \
706                 LASSERT(ours != NULL);                                  \
707                 max_update_length = ours->ours_req_size -               \
708                             object_update_request_size(ours->ours_req); \
709                                                                         \
710                 object_update = update_buffer_get_update(ours->ours_req,\
711                                          ours->ours_req->ourq_count);   \
712                 ret = out_something_pack(env, object_update,            \
713                                          &max_update_length,            \
714                                          __VA_ARGS__);                  \
715                 if (ret == -E2BIG) {                                    \
716                         int rc1;                                        \
717                         /* Create new object update request */          \
718                         rc1 = osp_object_update_request_create(our,     \
719                                 max_update_length  +                    \
720                                 offsetof(struct object_update_request,  \
721                                          ourq_updates[0]) + 1);         \
722                         if (rc1 != 0) {                                 \
723                                 ret = rc1;                              \
724                                 break;                                  \
725                         }                                               \
726                         continue;                                       \
727                 } else {                                                \
728                         if (ret == 0) {                                 \
729                                 ours->ours_req->ourq_count++;           \
730                                 (our)->our_update_nr++;                 \
731                                 object_update->ou_batchid =             \
732                                                      (our)->our_batchid;\
733                                 object_update->ou_flags |=              \
734                                                      (our)->our_flags;  \
735                         }                                               \
736                         break;                                          \
737                 }                                                       \
738         }                                                               \
739         ret;                                                            \
740 })
741
742 typedef int (*osp_update_interpreter_t)(const struct lu_env *env,
743                                         struct object_update_reply *rep,
744                                         struct ptlrpc_request *req,
745                                         struct osp_object *obj,
746                                         void *data, int index, int rc);
747
748 /* osp_dev.c */
749 void osp_update_last_id(struct osp_device *d, u64 objid);
750
751 /* osp_trans.c */
752 int osp_insert_async_request(const struct lu_env *env, enum update_type op,
753                              struct osp_object *obj, int count, __u16 *lens,
754                              const void **bufs, void *data, __u32 repsize,
755                              osp_update_interpreter_t interpreter);
756
757 int osp_unplug_async_request(const struct lu_env *env,
758                              struct osp_device *osp,
759                              struct osp_update_request *update);
760 int osp_trans_update_request_create(struct thandle *th);
761 struct thandle *osp_trans_create(const struct lu_env *env,
762                                  struct dt_device *d);
763 int osp_trans_start(const struct lu_env *env, struct dt_device *dt,
764                     struct thandle *th);
765 int osp_insert_update_callback(const struct lu_env *env,
766                                struct osp_update_request *update,
767                                struct osp_object *obj, void *data,
768                                osp_update_interpreter_t interpreter);
769
770 struct osp_update_request *osp_update_request_create(struct dt_device *dt);
771 void osp_update_request_destroy(const struct lu_env *env,
772                                 struct osp_update_request *update);
773
774 int osp_send_update_thread(void *arg);
775 int osp_check_and_set_rpc_version(struct osp_thandle *oth,
776                                   struct osp_object *obj);
777
778 void osp_thandle_destroy(const struct lu_env *env, struct osp_thandle *oth);
779 static inline void osp_thandle_get(struct osp_thandle *oth)
780 {
781         atomic_inc(&oth->ot_refcount);
782 }
783
784 static inline void osp_thandle_put(const struct lu_env *env,
785                                    struct osp_thandle *oth)
786 {
787         if (atomic_dec_and_test(&oth->ot_refcount))
788                 osp_thandle_destroy(env, oth);
789 }
790
791 int osp_prep_update_req(const struct lu_env *env, struct obd_import *imp,
792                         struct osp_update_request *our,
793                         struct ptlrpc_request **reqp);
794 int osp_remote_sync(const struct lu_env *env, struct osp_device *osp,
795                     struct osp_update_request *update,
796                     struct ptlrpc_request **reqp);
797
798 struct thandle *osp_get_storage_thandle(const struct lu_env *env,
799                                         struct thandle *th,
800                                         struct osp_device *osp);
801 void osp_trans_callback(const struct lu_env *env,
802                         struct osp_thandle *oth, int rc);
803 void osp_invalidate_request(struct osp_device *osp);
804 /* osp_object.c */
805 int osp_attr_get(const struct lu_env *env, struct dt_object *dt,
806                  struct lu_attr *attr);
807 int osp_xattr_get(const struct lu_env *env, struct dt_object *dt,
808                   struct lu_buf *buf, const char *name);
809 int osp_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
810                           const struct lu_buf *buf, const char *name,
811                           int flag, struct thandle *th);
812 int osp_xattr_set(const struct lu_env *env, struct dt_object *dt,
813                   const struct lu_buf *buf, const char *name, int fl,
814                   struct thandle *th);
815 int osp_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
816                           const char *name, struct thandle *th);
817 int osp_xattr_del(const struct lu_env *env, struct dt_object *dt,
818                   const char *name, struct thandle *th);
819 int osp_invalidate(const struct lu_env *env, struct dt_object *dt);
820 bool osp_check_stale(struct dt_object *dt);
821 void osp_obj_invalidate_cache(struct osp_object *obj);
822
823 int osp_trans_stop(const struct lu_env *env, struct dt_device *dt,
824                    struct thandle *th);
825 int osp_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb);
826
827 struct dt_it *osp_it_init(const struct lu_env *env, struct dt_object *dt,
828                           __u32 attr);
829 void osp_it_fini(const struct lu_env *env, struct dt_it *di);
830 int osp_it_get(const struct lu_env *env, struct dt_it *di,
831                const struct dt_key *key);
832 void osp_it_put(const struct lu_env *env, struct dt_it *di);
833 __u64 osp_it_store(const struct lu_env *env, const struct dt_it *di);
834 int osp_it_key_rec(const struct lu_env *env, const struct dt_it *di,
835                    void *key_rec);
836 int osp_it_next_page(const struct lu_env *env, struct dt_it *di);
837 /* osp_md_object.c */
838 int osp_md_declare_create(const struct lu_env *env, struct dt_object *dt,
839                           struct lu_attr *attr, struct dt_allocation_hint *hint,
840                           struct dt_object_format *dof, struct thandle *th);
841 int osp_md_create(const struct lu_env *env, struct dt_object *dt,
842                   struct lu_attr *attr, struct dt_allocation_hint *hint,
843                   struct dt_object_format *dof, struct thandle *th);
844 int osp_md_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
845                             const struct lu_attr *attr, struct thandle *th);
846 int osp_md_attr_set(const struct lu_env *env, struct dt_object *dt,
847                     const struct lu_attr *attr, struct thandle *th);
848 extern const struct dt_index_operations osp_md_index_ops;
849
850 /* osp_precreate.c */
851 int osp_init_precreate(struct osp_device *d);
852 int osp_precreate_reserve(const struct lu_env *env,
853                           struct osp_device *d, bool can_block);
854 __u64 osp_precreate_get_id(struct osp_device *d);
855 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
856                           struct lu_fid *fid);
857 void osp_precreate_fini(struct osp_device *d);
858 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt, __u64);
859 void osp_pre_update_status(struct osp_device *d, int rc);
860 void osp_statfs_need_now(struct osp_device *d);
861 int osp_reset_last_used(const struct lu_env *env, struct osp_device *osp);
862 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
863                                  struct lu_fid *fid, int sync);
864 int osp_init_pre_fid(struct osp_device *osp);
865 int osp_init_statfs(struct osp_device *osp);
866 void osp_fini_statfs(struct osp_device *osp);
867 void osp_statfs_fini(struct osp_device *d);
868
869 /* lproc_osp.c */
870 void osp_tunables_init(struct osp_device *osp);
871 void osp_tunables_fini(struct osp_device *osp);
872
873 /* osp_sync.c */
874 int osp_sync_declare_add(const struct lu_env *env, struct osp_object *o,
875                          enum llog_op_type type, struct thandle *th);
876 int osp_sync_add(const struct lu_env *env, struct osp_object *o,
877                  enum llog_op_type type, struct thandle *th,
878                  const struct lu_attr *attr);
879 int osp_sync_init(const struct lu_env *env, struct osp_device *d);
880 int osp_sync_fini(struct osp_device *d);
881 void osp_sync_check_for_work(struct osp_device *osp);
882 void osp_sync_force(const struct lu_env *env, struct osp_device *d);
883 int osp_sync_add_commit_cb_1s(const struct lu_env *env, struct osp_device *d,
884                               struct thandle *th);
885
886 /* lwp_dev.c */
887 extern const struct obd_ops lwp_obd_device_ops;
888 extern struct lu_device_type lwp_device_type;
889
890 static inline struct lu_device *osp2top(const struct osp_device *osp)
891 {
892         return osp->opd_dt_dev.dd_lu_dev.ld_site->ls_top_dev;
893 }
894
895 static inline void osp_set_req_replay(const struct osp_device *osp,
896                                       struct ptlrpc_request *req)
897 {
898         struct obd_device *obd = osp2top(osp)->ld_obd;
899
900         /* The RPC must be recovery related for the cases:
901          *
902          * 1. sent during recovery, or
903          * 2. sent before the recovery thread target_recovery_thread() start,
904          *    such as triggered by lod_sub_recovery_thread(). */
905         if (obd->obd_recovering || (obd->obd_replayable && obd->obd_no_conn))
906                 req->rq_allow_replay = 1;
907 }
908
909 #endif