Whamcloud - gitweb
LU-16322: build: Add client build support for openEuler
[fs/lustre-release.git] / lustre / osp / osp_dev.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/osp/osp_dev.c
32  *
33  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
34  * Author: Mikhail Pershin <mike.pershin@intel.com>
35  * Author: Di Wang <di.wang@intel.com>
36  */
37 /*
38  * The Object Storage Proxy (OSP) module provides an implementation of
39  * the DT API for remote MDTs and OSTs. Every local OSP device (or
40  * object) is a proxy for a remote OSD device (or object). Thus OSP
41  * converts DT operations into RPCs, which are sent to the OUT service
42  * on a remote target, converted back to DT operations, and
43  * executed. Of course there are many ways in which this description
44  * is inaccurate but it's a good enough mental model. OSP is used by
45  * the MDT stack in several ways:
46  *
47  * - OSP devices allocate FIDs for the stripe sub-objects of a striped
48  *   file or directory.
49  *
50  * - OSP objects represent the remote MDT and OST objects that are
51  *   the stripes of a striped object.
52  *
53  * - OSP devices log, send, and track synchronous operations (setattr
54  *   and unlink) to remote targets.
55  *
56  * - OSP objects are the bottom slice of the compound LU object
57  *   representing a remote MDT object: MDT/MDD/LOD/OSP.
58  *
59  * - OSP objects are used by LFSCK to represent remote OST objects
60  *   during the verification of MDT-OST consistency.
61  *
62  * - OSP devices batch idempotent requests (declare_attr_get() and
63  *   declare_xattr_get()) to the remote target and cache their results.
64  *
65  * In addition the OSP layer implements a subset of the OBD device API
66  * to support being a client of a remote target, connecting to other
67  * layers, and FID allocation.
68  */
69
70 #define DEBUG_SUBSYSTEM S_MDS
71
72 #include <linux/kthread.h>
73
74 #include <uapi/linux/lustre/lustre_ioctl.h>
75 #include <lustre_log.h>
76 #include <lustre_obdo.h>
77 #include <uapi/linux/lustre/lustre_param.h>
78 #include <obd_class.h>
79
80 #include "osp_internal.h"
81
82 /* Slab for OSP object allocation */
83 struct kmem_cache *osp_object_kmem;
84
85 static struct lu_kmem_descr osp_caches[] = {
86         {
87                 .ckd_cache = &osp_object_kmem,
88                 .ckd_name  = "osp_obj",
89                 .ckd_size  = sizeof(struct osp_object)
90         },
91         {
92                 .ckd_cache = NULL
93         }
94 };
95
96 /**
97  * Implementation of lu_device_operations::ldo_object_alloc
98  *
99  * Allocates an OSP object in memory, whose FID is on the remote target.
100  *
101  * \param[in] env       execution environment
102  * \param[in] hdr       The header of the object stack. If it is NULL, it
103  *                      means the object is not built from top device, i.e.
104  *                      it is a sub-stripe object of striped directory or
105  *                      an OST object.
106  * \param[in] d         OSP device
107  *
108  * \retval object       object being created if the creation succeed.
109  * \retval NULL         NULL if the creation failed.
110  */
111 static struct lu_object *osp_object_alloc(const struct lu_env *env,
112                                           const struct lu_object_header *hdr,
113                                           struct lu_device *d)
114 {
115         struct osp_object *o;
116
117         OBD_SLAB_ALLOC_PTR_GFP(o, osp_object_kmem, GFP_NOFS);
118         if (o != NULL) {
119                 struct lu_object *l = &o->opo_obj.do_lu;
120
121                 /* If hdr is NULL, it means the object is not built
122                  * from the top dev(MDT/OST), usually it happens when
123                  * building striped object, like data object on MDT or
124                  * striped object for directory */
125                 if (hdr == NULL) {
126                         struct lu_object_header *h = &o->opo_header;
127
128                         lu_object_header_init(h);
129                         dt_object_init(&o->opo_obj, h, d);
130                         lu_object_add_top(h, l);
131                 } else {
132                         dt_object_init(&o->opo_obj, NULL, d);
133                 }
134
135                 l->lo_ops = &osp_lu_obj_ops;
136
137                 init_rwsem(&o->opo_sem);
138                 INIT_LIST_HEAD(&o->opo_xattr_list);
139                 INIT_LIST_HEAD(&o->opo_invalidate_cb_list);
140                 spin_lock_init(&o->opo_lock);
141                 init_rwsem(&o->opo_invalidate_sem);
142
143                 return l;
144         }
145
146         return NULL;
147 }
148
149 /**
150  * Find or create the local object
151  *
152  * Finds or creates the local file referenced by \a reg_id and return the
153  * attributes of the local file.
154  *
155  * \param[in] env       execution environment
156  * \param[in] osp       OSP device
157  * \param[out] attr     attributes of the object
158  * \param[in] reg_id    the local object ID of the file. It will be used
159  *                      to compose a local FID{FID_SEQ_LOCAL_FILE, reg_id, 0}
160  *                      to identify the object.
161  *
162  * \retval object               object(dt_object) found or created
163  * \retval ERR_PTR(errno)       ERR_PTR(errno) if not get the object.
164  */
165 static struct dt_object
166 *osp_find_or_create_local_file(const struct lu_env *env, struct osp_device *osp,
167                                struct lu_attr *attr, __u32 reg_id)
168 {
169         struct osp_thread_info *osi = osp_env_info(env);
170         struct dt_object_format dof = { 0 };
171         struct dt_object       *dto;
172         int                  rc;
173         ENTRY;
174
175         lu_local_obj_fid(&osi->osi_fid, reg_id);
176         attr->la_valid = LA_MODE;
177         attr->la_mode = S_IFREG | 0644;
178         dof.dof_type = DFT_REGULAR;
179         /* Find or create the local object by osi_fid. */
180         dto = dt_find_or_create(env, osp->opd_storage, &osi->osi_fid,
181                                 &dof, attr);
182         if (IS_ERR(dto))
183                 RETURN(dto);
184
185         /* Get attributes of the local object. */
186         rc = dt_attr_get(env, dto, attr);
187         if (rc) {
188                 CERROR("%s: can't be initialized: rc = %d\n",
189                        osp->opd_obd->obd_name, rc);
190                 dt_object_put(env, dto);
191                 RETURN(ERR_PTR(rc));
192         }
193         RETURN(dto);
194 }
195
196 /**
197  * Write data buffer to a local file object.
198  *
199  * \param[in] env       execution environment
200  * \param[in] osp       OSP device
201  * \param[in] dt_obj    object written to
202  * \param[in] buf       buffer containing byte array and length
203  * \param[in] offset    write offset in the object in bytes
204  *
205  * \retval 0            0 if write succeed
206  * \retval -EFAULT      -EFAULT if only part of buffer is written.
207  * \retval negative             other negative errno if write failed.
208  */
209 static int osp_write_local_file(const struct lu_env *env,
210                                 struct osp_device *osp,
211                                 struct dt_object *dt_obj,
212                                 struct lu_buf *buf,
213                                 loff_t offset)
214 {
215         struct thandle *th;
216         int rc;
217
218         if (osp->opd_storage->dd_rdonly)
219                 RETURN(0);
220
221         th = dt_trans_create(env, osp->opd_storage);
222         if (IS_ERR(th))
223                 RETURN(PTR_ERR(th));
224
225         rc = dt_declare_record_write(env, dt_obj, buf, offset, th);
226         if (rc)
227                 GOTO(out, rc);
228         rc = dt_trans_start_local(env, osp->opd_storage, th);
229         if (rc)
230                 GOTO(out, rc);
231
232         rc = dt_record_write(env, dt_obj, buf, &offset, th);
233 out:
234         dt_trans_stop(env, osp->opd_storage, th);
235         RETURN(rc);
236 }
237
238 /**
239  * Initialize last ID object.
240  *
241  * This function initializes the LAST_ID file, which stores the current last
242  * used id of data objects. The MDT will use the last used id and the last_seq
243  * (\see osp_init_last_seq()) to synchronize the precreate object cache with
244  * OSTs.
245  *
246  * \param[in] env       execution environment
247  * \param[in] osp       OSP device
248  *
249  * \retval 0            0 if initialization succeed
250  * \retval negative     negative errno if initialization failed
251  */
252 static int osp_init_last_objid(const struct lu_env *env, struct osp_device *osp)
253 {
254         struct osp_thread_info  *osi = osp_env_info(env);
255         struct lu_fid           *fid = &osp->opd_last_used_fid;
256         struct dt_object        *dto;
257         int                     rc = -EFAULT;
258         ENTRY;
259
260         dto = osp_find_or_create_local_file(env, osp, &osi->osi_attr,
261                                             MDD_LOV_OBJ_OID);
262         if (IS_ERR(dto))
263                 RETURN(PTR_ERR(dto));
264
265         osp_objid_buf_prep(&osi->osi_lb, &osi->osi_off, &osp->opd_last_id,
266                            osp->opd_index);
267
268         /* object will be released in device cleanup path */
269         if (osi->osi_attr.la_size >= (osi->osi_off + osi->osi_lb.lb_len)) {
270                 rc = dt_record_read(env, dto, &osi->osi_lb, &osi->osi_off);
271                 if (rc != 0 && rc != -EFAULT)
272                         GOTO(out, rc);
273                 /* In case of idif bits 32-48 go to f_seq
274                  * (see osp_init_last_seq). So don't care
275                  * about u64->u32 convertion. */
276                 fid->f_oid = osp->opd_last_id;
277         }
278
279         if (rc == -EFAULT) { /* fresh LAST_ID */
280                 osp->opd_last_id = 0;
281                 fid->f_oid = 0;
282                 rc = osp_write_local_file(env, osp, dto, &osi->osi_lb,
283                                           osi->osi_off);
284                 if (rc != 0)
285                         GOTO(out, rc);
286         }
287         osp->opd_last_used_oid_file = dto;
288         RETURN(0);
289 out:
290         /* object will be released in device cleanup path */
291         CERROR("%s: can't initialize lov_objid: rc = %d\n",
292                osp->opd_obd->obd_name, rc);
293         dt_object_put(env, dto);
294         osp->opd_last_used_oid_file = NULL;
295         RETURN(rc);
296 }
297
298 /**
299  * Initialize last sequence object.
300  *
301  * This function initializes the LAST_SEQ file in the local OSD, which stores
302  * the current last used sequence of data objects. The MDT will use the last
303  * sequence and last id (\see osp_init_last_objid()) to synchronize the
304  * precreate object cache with OSTs.
305  *
306  * \param[in] env       execution environment
307  * \param[in] osp       OSP device
308  *
309  * \retval 0            0 if initialization succeed
310  * \retval negative     negative errno if initialization failed
311  */
312 static int osp_init_last_seq(const struct lu_env *env, struct osp_device *osp)
313 {
314         struct osp_thread_info  *osi = osp_env_info(env);
315         struct lu_fid           *fid = &osp->opd_last_used_fid;
316         struct dt_object        *dto;
317         int                     rc = -EFAULT;
318         ENTRY;
319
320         dto = osp_find_or_create_local_file(env, osp, &osi->osi_attr,
321                                             MDD_LOV_OBJ_OSEQ);
322         if (IS_ERR(dto))
323                 RETURN(PTR_ERR(dto));
324
325         osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off, &fid->f_seq,
326                            osp->opd_index);
327
328         /* object will be released in device cleanup path */
329         if (osi->osi_attr.la_size >= (osi->osi_off + osi->osi_lb.lb_len)) {
330                 rc = dt_record_read(env, dto, &osi->osi_lb, &osi->osi_off);
331                 if (rc != 0 && rc != -EFAULT)
332                         GOTO(out, rc);
333                 if (fid_is_idif(fid))
334                         fid->f_seq = fid_idif_seq(osp->opd_last_id,
335                                                   osp->opd_index);
336         }
337
338         if (rc == -EFAULT) { /* fresh OSP */
339                 fid->f_seq = 0;
340                 rc = osp_write_local_file(env, osp, dto, &osi->osi_lb,
341                                           osi->osi_off);
342                 if (rc != 0)
343                         GOTO(out, rc);
344         }
345         osp->opd_last_used_seq_file = dto;
346         RETURN(0);
347 out:
348         /* object will be released in device cleanup path */
349         CERROR("%s: can't initialize lov_seq: rc = %d\n",
350                osp->opd_obd->obd_name, rc);
351         dt_object_put(env, dto);
352         osp->opd_last_used_seq_file = NULL;
353         RETURN(rc);
354 }
355
356 /**
357  * Initialize last OID and sequence object.
358  *
359  * If the MDT is just upgraded to 2.4 from the lower version, where the
360  * LAST_SEQ file does not exist, the file will be created and IDIF sequence
361  * will be written into the file.
362  *
363  * \param[in] env       execution environment
364  * \param[in] osp       OSP device
365  *
366  * \retval 0            0 if initialization succeed
367  * \retval negative     negative error if initialization failed
368  */
369 static int osp_last_used_init(const struct lu_env *env, struct osp_device *osp)
370 {
371         struct osp_thread_info *osi = osp_env_info(env);
372         int                  rc;
373         ENTRY;
374
375         fid_zero(&osp->opd_last_used_fid);
376         rc = osp_init_last_objid(env, osp);
377         if (rc < 0) {
378                 CERROR("%s: Can not get ids %d from old objid!\n",
379                        osp->opd_obd->obd_name, rc);
380                 RETURN(rc);
381         }
382
383         rc = osp_init_last_seq(env, osp);
384         if (rc < 0) {
385                 CERROR("%s: Can not get sequence %d from old objseq!\n",
386                        osp->opd_obd->obd_name, rc);
387                 GOTO(out, rc);
388         }
389
390         if (fid_oid(&osp->opd_last_used_fid) != 0 &&
391             fid_seq(&osp->opd_last_used_fid) == 0) {
392                 /* Just upgrade from the old version,
393                  * set the seq to be IDIF */
394                 osp->opd_last_used_fid.f_seq =
395                    fid_idif_seq(fid_oid(&osp->opd_last_used_fid),
396                                 osp->opd_index);
397                 osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off,
398                                     &osp->opd_last_used_fid.f_seq,
399                                     osp->opd_index);
400                 rc = osp_write_local_file(env, osp, osp->opd_last_used_seq_file,
401                                           &osi->osi_lb, osi->osi_off);
402                 if (rc) {
403                         CERROR("%s : Can not write seq file: rc = %d\n",
404                                osp->opd_obd->obd_name, rc);
405                         GOTO(out, rc);
406                 }
407         }
408
409         if (!fid_is_zero(&osp->opd_last_used_fid) &&
410                  !fid_is_sane(&osp->opd_last_used_fid)) {
411                 CERROR("%s: Got invalid FID "DFID"\n", osp->opd_obd->obd_name,
412                         PFID(&osp->opd_last_used_fid));
413                 GOTO(out, rc = -EINVAL);
414         }
415
416         osp_fid_to_obdid(&osp->opd_last_used_fid, &osp->opd_last_id);
417         CDEBUG(D_INFO, "%s: Init last used fid "DFID"\n",
418                osp->opd_obd->obd_name, PFID(&osp->opd_last_used_fid));
419 out:
420         if (rc != 0) {
421                 if (osp->opd_last_used_oid_file != NULL) {
422                         dt_object_put(env, osp->opd_last_used_oid_file);
423                         osp->opd_last_used_oid_file = NULL;
424                 }
425                 if (osp->opd_last_used_seq_file != NULL) {
426                         dt_object_put(env, osp->opd_last_used_seq_file);
427                         osp->opd_last_used_seq_file = NULL;
428                 }
429         }
430
431         RETURN(rc);
432 }
433
434 /**
435  * Release the last sequence and OID file objects in OSP device.
436  *
437  * \param[in] env       execution environment
438  * \param[in] osp       OSP device
439  */
440 static void osp_last_used_fini(const struct lu_env *env, struct osp_device *osp)
441 {
442         /* release last_used file */
443         if (osp->opd_last_used_oid_file != NULL) {
444                 dt_object_put(env, osp->opd_last_used_oid_file);
445                 osp->opd_last_used_oid_file = NULL;
446         }
447
448         if (osp->opd_last_used_seq_file != NULL) {
449                 dt_object_put(env, osp->opd_last_used_seq_file);
450                 osp->opd_last_used_seq_file = NULL;
451         }
452 }
453
454 /**
455  * Disconnects the connection between OSP and its correspondent MDT or OST, and
456  * the import will be marked as inactive. It will only be called during OSP
457  * cleanup process.
458  *
459  * \param[in] d         OSP device being disconnected
460  *
461  * \retval 0            0 if disconnection succeed
462  * \retval negative     negative errno if disconnection failed
463  */
464 static int osp_disconnect(struct osp_device *d)
465 {
466         struct obd_device *obd = d->opd_obd;
467         struct obd_import *imp;
468         int rc = 0;
469
470         imp = obd->u.cli.cl_import;
471
472         /* Mark import deactivated now, so we don't try to reconnect if any
473          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
474          * fully deactivate the import, or that would drop all requests. */
475         LASSERT(imp != NULL);
476         spin_lock(&imp->imp_lock);
477         imp->imp_deactive = 1;
478         spin_unlock(&imp->imp_lock);
479
480         ptlrpc_deactivate_import(imp);
481
482         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
483          * delete it regardless.  (It's safe to delete an import that was
484          * never added.) */
485         (void)ptlrpc_pinger_del_import(imp);
486
487         /* Send disconnect on healthy import, do force disconnect otherwise */
488         spin_lock(&imp->imp_lock);
489         imp->imp_obd->obd_force = imp->imp_state != LUSTRE_IMP_FULL;
490         spin_unlock(&imp->imp_lock);
491
492         rc = ptlrpc_disconnect_import(imp, 0);
493         if (rc != 0)
494                 CERROR("%s: can't disconnect: rc = %d\n", obd->obd_name, rc);
495
496         ptlrpc_invalidate_import(imp);
497
498         RETURN(rc);
499 }
500
501 /**
502  * Initialize the osp_update structure in OSP device
503  *
504  * Allocate osp update structure and start update thread.
505  *
506  * \param[in] osp       OSP device
507  *
508  * \retval              0 if initialization succeeds.
509  * \retval              negative errno if initialization fails.
510  */
511 static int osp_update_init(struct osp_device *osp)
512 {
513         struct task_struct *task;
514         int rc;
515
516         ENTRY;
517
518         LASSERT(osp->opd_connect_mdt);
519
520         if (osp->opd_storage->dd_rdonly)
521                 RETURN(0);
522
523         OBD_ALLOC_PTR(osp->opd_update);
524         if (osp->opd_update == NULL)
525                 RETURN(-ENOMEM);
526
527         init_waitqueue_head(&osp->opd_update->ou_waitq);
528         spin_lock_init(&osp->opd_update->ou_lock);
529         INIT_LIST_HEAD(&osp->opd_update->ou_list);
530         osp->opd_update->ou_rpc_version = 1;
531         osp->opd_update->ou_version = 1;
532         osp->opd_update->ou_generation = 0;
533
534         rc = lu_env_init(&osp->opd_update->ou_env,
535                          osp->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
536         if (rc < 0) {
537                 CERROR("%s: init env error: rc = %d\n", osp->opd_obd->obd_name,
538                        rc);
539                 OBD_FREE_PTR(osp->opd_update);
540                 osp->opd_update = NULL;
541                 RETURN(rc);
542         }
543         /* start thread handling sending updates to the remote MDT */
544         task = kthread_create(osp_send_update_thread, osp,
545                               "osp_up%u-%u", osp->opd_index, osp->opd_group);
546         if (IS_ERR(task)) {
547                 int rc = PTR_ERR(task);
548
549                 lu_env_fini(&osp->opd_update->ou_env);
550                 OBD_FREE_PTR(osp->opd_update);
551                 osp->opd_update = NULL;
552                 CERROR("%s: can't start precreate thread: rc = %d\n",
553                        osp->opd_obd->obd_name, rc);
554                 RETURN(rc);
555         }
556
557         osp->opd_update->ou_update_task = task;
558         wake_up_process(task);
559
560         RETURN(0);
561 }
562
563 /**
564  * Finialize osp_update structure in OSP device
565  *
566  * Stop the OSP update sending thread, then delete the left
567  * osp thandle in the sending list.
568  *
569  * \param [in] osp      OSP device.
570  */
571 static void osp_update_fini(const struct lu_env *env, struct osp_device *osp)
572 {
573         struct osp_update_request *our;
574         struct osp_update_request *tmp;
575         struct osp_updates *ou = osp->opd_update;
576
577         if (ou == NULL)
578                 return;
579
580         kthread_stop(ou->ou_update_task);
581         lu_env_fini(&ou->ou_env);
582
583         /* Remove the left osp thandle from the list */
584         spin_lock(&ou->ou_lock);
585         list_for_each_entry_safe(our, tmp, &ou->ou_list,
586                                  our_list) {
587                 list_del_init(&our->our_list);
588                 LASSERT(our->our_th != NULL);
589                 osp_trans_callback(env, our->our_th, -EIO);
590                 /* our will be destroyed in osp_thandle_put() */
591                 osp_thandle_put(env, our->our_th);
592         }
593         spin_unlock(&ou->ou_lock);
594
595         OBD_FREE_PTR(ou);
596         osp->opd_update = NULL;
597 }
598
599 /**
600  * Cleanup OSP, which includes disconnect import, cleanup unlink log, stop
601  * precreate threads etc.
602  *
603  * \param[in] env       execution environment.
604  * \param[in] d         OSP device being disconnected.
605  *
606  * \retval 0            0 if cleanup succeed
607  * \retval negative     negative errno if cleanup failed
608  */
609 static int osp_shutdown(const struct lu_env *env, struct osp_device *d)
610 {
611         int                      rc = 0;
612         ENTRY;
613
614         LASSERT(env);
615
616         rc = osp_disconnect(d);
617
618         osp_statfs_fini(d);
619
620         if (!d->opd_connect_mdt) {
621                 /* stop sync thread */
622                 osp_sync_fini(d);
623
624                 /* stop precreate thread */
625                 osp_precreate_fini(d);
626
627                 /* release last_used file */
628                 osp_last_used_fini(env, d);
629         }
630
631         obd_fid_fini(d->opd_obd);
632
633         RETURN(rc);
634 }
635
636 /**
637  * Implementation of osp_lu_ops::ldo_process_config
638  *
639  * This function processes config log records in OSP layer. It is usually
640  * called from the top layer of MDT stack, and goes through the stack by calling
641  * ldo_process_config of next layer.
642  *
643  * \param[in] env       execution environment
644  * \param[in] dev       lu_device of OSP
645  * \param[in] lcfg      config log
646  *
647  * \retval 0            0 if the config log record is executed correctly.
648  * \retval negative     negative errno if the record execution fails.
649  */
650 static int osp_process_config(const struct lu_env *env,
651                               struct lu_device *dev, struct lustre_cfg *lcfg)
652 {
653         struct osp_device *d = lu2osp_dev(dev);
654         struct dt_device *dt = lu2dt_dev(dev);
655         struct obd_device *obd = d->opd_obd;
656         ssize_t count;
657         int rc;
658
659         ENTRY;
660
661         switch (lcfg->lcfg_command) {
662         case LCFG_PRE_CLEANUP:
663                 rc = osp_disconnect(d);
664                 osp_update_fini(env, d);
665                 if (obd->obd_namespace != NULL)
666                         ldlm_namespace_free_prior(obd->obd_namespace, NULL, 1);
667                 break;
668         case LCFG_CLEANUP:
669                 lu_dev_del_linkage(dev->ld_site, dev);
670                 rc = osp_shutdown(env, d);
671                 break;
672         case LCFG_PARAM:
673                 count = class_modify_config(lcfg, d->opd_connect_mdt ?
674                                                   PARAM_OSP : PARAM_OSC,
675                                             &dt->dd_kobj);
676                 if (count < 0) {
677                         /* class_modify_config() haven't found matching
678                          * parameter and returned an error so that layer(s)
679                          * below could use that. But OSP is the bottom, so
680                          * just ignore it
681                          */
682                         CERROR("%s: unknown param %s\n",
683                                (char *)lustre_cfg_string(lcfg, 0),
684                                (char *)lustre_cfg_string(lcfg, 1));
685                 }
686                 rc = 0;
687                 break;
688         default:
689                 CERROR("%s: unknown command %u\n",
690                        (char *)lustre_cfg_string(lcfg, 0), lcfg->lcfg_command);
691                 rc = 0;
692                 break;
693         }
694
695         RETURN(rc);
696 }
697
698 /**
699  * Implementation of osp_lu_ops::ldo_recovery_complete
700  *
701  * This function is called after recovery is finished, and OSP layer
702  * will wake up precreate thread here.
703  *
704  * \param[in] env       execution environment
705  * \param[in] dev       lu_device of OSP
706  *
707  * \retval 0            0 unconditionally
708  */
709 static int osp_recovery_complete(const struct lu_env *env,
710                                  struct lu_device *dev)
711 {
712         struct osp_device       *osp = lu2osp_dev(dev);
713
714         ENTRY;
715         osp->opd_recovery_completed = 1;
716
717         if (!osp->opd_connect_mdt && osp->opd_pre != NULL)
718                 wake_up(&osp->opd_pre_waitq);
719
720         RETURN(0);
721 }
722
723 /**
724  * Implementation of lu_device_operations::ldo_fid_alloc() for OSP
725  *
726  * Allocate FID from remote MDT.
727  *
728  * see include/lu_object.h for the details.
729  */
730 static int osp_fid_alloc(const struct lu_env *env, struct lu_device *d,
731                          struct lu_fid *fid, struct lu_object *parent,
732                          const struct lu_name *name)
733 {
734         struct osp_device *osp = lu2osp_dev(d);
735         struct client_obd *cli = &osp->opd_obd->u.cli;
736         struct lu_client_seq *seq = cli->cl_seq;
737         int rc;
738
739         ENTRY;
740
741         /* Sigh, fid client is not ready yet */
742         if (!osp->opd_obd->u.cli.cl_seq)
743                 RETURN(-ENOTCONN);
744
745         if (!osp->opd_obd->u.cli.cl_seq->lcs_exp)
746                 RETURN(-ENOTCONN);
747
748         rc = seq_client_alloc_fid(env, seq, fid);
749
750         RETURN(rc);
751 }
752
753 const struct lu_device_operations osp_lu_ops = {
754         .ldo_object_alloc       = osp_object_alloc,
755         .ldo_process_config     = osp_process_config,
756         .ldo_recovery_complete  = osp_recovery_complete,
757         .ldo_fid_alloc          = osp_fid_alloc,
758 };
759
760 /**
761  * Implementation of dt_device_operations::dt_statfs
762  *
763  * This function provides statfs status (for precreation) from
764  * corresponding OST. Note: this function only retrieves the status
765  * from the OSP device, and the real statfs RPC happens inside
766  * precreate thread (\see osp_statfs_update). Note: OSP for MDT does
767  * not need to retrieve statfs data for now.
768  *
769  * \param[in] env       execution environment.
770  * \param[in] dev       dt_device of OSP.
771  * \param[out] sfs      holds the retrieved statfs data.
772  *
773  * \retval 0            0 statfs data was retrieved successfully or
774  *                      retrieval was not needed
775  * \retval negative     negative errno if get statfs failed.
776  */
777 static int osp_statfs(const struct lu_env *env, struct dt_device *dev,
778                       struct obd_statfs *sfs, struct obd_statfs_info *info)
779 {
780         struct osp_device *d = dt2osp_dev(dev);
781         struct obd_import *imp = d->opd_obd->u.cli.cl_import;
782
783         ENTRY;
784
785         if (imp->imp_state == LUSTRE_IMP_CLOSED)
786                 RETURN(-ESHUTDOWN);
787
788         if (unlikely(d->opd_imp_active == 0))
789                 RETURN(-ENOTCONN);
790
791         /* return recently updated data */
792         *sfs = d->opd_statfs;
793         if (info) {
794                 info->os_reserved_mb_low = d->opd_reserved_mb_low;
795                 info->os_reserved_mb_high = d->opd_reserved_mb_high;
796         }
797
798         CDEBUG(D_OTHER, "%s: %llu blocks, %llu free, %llu avail, "
799                "%u bsize, %u reserved mb low, %u reserved mb high, "
800                "%llu files, %llu free files\n", d->opd_obd->obd_name,
801                sfs->os_blocks, sfs->os_bfree, sfs->os_bavail, sfs->os_bsize,
802                d->opd_reserved_mb_low, d->opd_reserved_mb_high,
803                sfs->os_files, sfs->os_ffree);
804
805         if (d->opd_pre == NULL || (info && !info->os_enable_pre))
806                 RETURN(0);
807
808         /*
809          * The layer above osp (usually lod) can use f_precreated to
810          * estimate how many objects are available for immediate usage.
811          */
812         spin_lock(&d->opd_pre_lock);
813         sfs->os_fprecreated = osp_fid_diff(&d->opd_pre_last_created_fid,
814                                            &d->opd_pre_used_fid);
815         sfs->os_fprecreated -= d->opd_pre_reserved;
816         LASSERTF(sfs->os_fprecreated <= OST_MAX_PRECREATE * 2,
817                  "last_created "DFID", next_fid "DFID", reserved %llu\n",
818                  PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_pre_used_fid),
819                  d->opd_pre_reserved);
820         spin_unlock(&d->opd_pre_lock);
821         RETURN(0);
822 }
823
824 /**
825  * Implementation of dt_device_operations::dt_sync
826  *
827  * This function synchronizes the OSP cache to the remote target. It wakes
828  * up unlink log threads and sends out unlink records to the remote OST.
829  *
830  * \param[in] env       execution environment
831  * \param[in] dev       dt_device of OSP
832  *
833  * \retval 0            0 if synchronization succeeds
834  * \retval negative     negative errno if synchronization fails
835  */
836 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
837 {
838         struct osp_device *d = dt2osp_dev(dev);
839         time64_t start = ktime_get_seconds();
840         int recs, rc = 0;
841         u64 old;
842
843         ENTRY;
844
845         /* No Sync between MDTs yet. */
846         if (d->opd_connect_mdt)
847                 RETURN(0);
848
849         recs = atomic_read(&d->opd_sync_changes);
850         old = atomic64_read(&d->opd_sync_processed_recs);
851
852         osp_sync_force(env, dt2osp_dev(dev));
853
854         if (unlikely(d->opd_imp_active == 0))
855                 RETURN(-ENOTCONN);
856
857         down_write(&d->opd_async_updates_rwsem);
858
859         CDEBUG(D_OTHER, "%s: async updates %d\n", d->opd_obd->obd_name,
860                atomic_read(&d->opd_async_updates_count));
861
862         /* make sure the connection is fine */
863         rc = wait_event_idle_timeout(
864                 d->opd_sync_barrier_waitq,
865                 atomic_read(&d->opd_async_updates_count) == 0,
866                 cfs_time_seconds(obd_timeout));
867         if (rc > 0)
868                 rc = 0;
869         else if (rc == 0)
870                 rc = -ETIMEDOUT;
871
872         up_write(&d->opd_async_updates_rwsem);
873         if (rc != 0)
874                 GOTO(out, rc);
875
876         CDEBUG(D_CACHE, "%s: processed %llu\n", d->opd_obd->obd_name,
877                (unsigned long long)atomic64_read(&d->opd_sync_processed_recs));
878
879         while (atomic64_read(&d->opd_sync_processed_recs) < old + recs) {
880                 __u64 last = atomic64_read(&d->opd_sync_processed_recs);
881                 /* make sure the connection is fine */
882                 wait_event_idle_timeout(
883                         d->opd_sync_barrier_waitq,
884                         atomic64_read(&d->opd_sync_processed_recs)
885                              >= old + recs,
886                         cfs_time_seconds(obd_timeout));
887
888                 if (atomic64_read(&d->opd_sync_processed_recs) >= old + recs)
889                         break;
890
891                 if (atomic64_read(&d->opd_sync_processed_recs) != last) {
892                         /* some progress have been made,
893                          * keep trying... */
894                         continue;
895                 }
896
897                 /* no changes and expired, something is wrong */
898                 GOTO(out, rc = -ETIMEDOUT);
899         }
900
901         /* block new processing (barrier>0 - few callers are possible */
902         atomic_inc(&d->opd_sync_barrier);
903
904         CDEBUG(D_CACHE, "%s: %u in flight\n", d->opd_obd->obd_name,
905                atomic_read(&d->opd_sync_rpcs_in_flight));
906
907         /* wait till all-in-flight are replied, so executed by the target */
908         /* XXX: this is used by LFSCK at the moment, which doesn't require
909          *      all the changes to be committed, but in general it'd be
910          *      better to wait till commit */
911         while (atomic_read(&d->opd_sync_rpcs_in_flight) > 0) {
912                 old = atomic_read(&d->opd_sync_rpcs_in_flight);
913
914                 wait_event_idle_timeout(
915                         d->opd_sync_barrier_waitq,
916                         atomic_read(&d->opd_sync_rpcs_in_flight) == 0,
917                         cfs_time_seconds(obd_timeout));
918
919                 if (atomic_read(&d->opd_sync_rpcs_in_flight) == 0)
920                         break;
921
922                 if (atomic_read(&d->opd_sync_rpcs_in_flight) != old) {
923                         /* some progress have been made */
924                         continue;
925                 }
926
927                 /* no changes and expired, something is wrong */
928                 GOTO(out, rc = -ETIMEDOUT);
929         }
930
931 out:
932         /* resume normal processing (barrier=0) */
933         atomic_dec(&d->opd_sync_barrier);
934         osp_sync_check_for_work(d);
935
936         CDEBUG(D_CACHE, "%s: done in %lld: rc = %d\n", d->opd_obd->obd_name,
937                ktime_get_seconds() - start, rc);
938
939         RETURN(rc);
940 }
941
942 static const struct dt_device_operations osp_dt_ops = {
943         .dt_statfs       = osp_statfs,
944         .dt_sync         = osp_sync,
945         .dt_trans_create = osp_trans_create,
946         .dt_trans_start  = osp_trans_start,
947         .dt_trans_stop   = osp_trans_stop,
948         .dt_trans_cb_add   = osp_trans_cb_add,
949 };
950
951 /**
952  * Connect OSP to local OSD.
953  *
954  * Locate the local OSD referenced by \a nextdev and connect to it. Sometimes,
955  * OSP needs to access the local OSD to store some information. For example,
956  * during precreate, it needs to update last used OID and sequence file
957  * (LAST_SEQ) in local OSD.
958  *
959  * \param[in] env       execution environment
960  * \param[in] osp       OSP device
961  * \param[in] nextdev   the name of local OSD
962  *
963  * \retval 0            0 connection succeeded
964  * \retval negative     negative errno connection failed
965  */
966 static int osp_connect_to_osd(const struct lu_env *env, struct osp_device *osp,
967                               const char *nextdev)
968 {
969         struct obd_connect_data *data = NULL;
970         struct obd_device       *obd;
971         int                      rc;
972
973         ENTRY;
974
975         LASSERT(osp->opd_storage_exp == NULL);
976
977         OBD_ALLOC_PTR(data);
978         if (data == NULL)
979                 RETURN(-ENOMEM);
980
981         obd = class_name2obd(nextdev);
982         if (obd == NULL) {
983                 CERROR("%s: can't locate next device: %s\n",
984                        osp->opd_obd->obd_name, nextdev);
985                 GOTO(out, rc = -ENOTCONN);
986         }
987
988         rc = obd_connect(env, &osp->opd_storage_exp, obd, &obd->obd_uuid, data,
989                          NULL);
990         if (rc) {
991                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
992                        osp->opd_obd->obd_name, nextdev, rc);
993                 GOTO(out, rc);
994         }
995
996         osp->opd_dt_dev.dd_lu_dev.ld_site =
997                 osp->opd_storage_exp->exp_obd->obd_lu_dev->ld_site;
998         LASSERT(osp->opd_dt_dev.dd_lu_dev.ld_site);
999         osp->opd_storage = lu2dt_dev(osp->opd_storage_exp->exp_obd->obd_lu_dev);
1000
1001 out:
1002         OBD_FREE_PTR(data);
1003         RETURN(rc);
1004 }
1005
1006 /**
1007  * Determine if the lock needs to be cancelled
1008  *
1009  * Determine if the unused lock should be cancelled before replay, see
1010  * (ldlm_cancel_no_wait_policy()). Currently, only inode bits lock exists
1011  * between MDTs.
1012  *
1013  * \param[in] lock      lock to be checked.
1014  *
1015  * \retval              1 if the lock needs to be cancelled before replay.
1016  * \retval              0 if the lock does not need to be cancelled before
1017  *                      replay.
1018  */
1019 static int osp_cancel_weight(struct ldlm_lock *lock)
1020 {
1021         if (lock->l_resource->lr_type != LDLM_IBITS)
1022                 RETURN(0);
1023
1024         RETURN(1);
1025 }
1026
1027 /**
1028  * Initialize OSP device according to the parameters in the configuration
1029  * log \a cfg.
1030  *
1031  * Reconstruct the local device name from the configuration profile, and
1032  * initialize necessary threads and structures according to the OSP type
1033  * (MDT or OST).
1034  *
1035  * Since there is no record in the MDT configuration for the local disk
1036  * device, we have to extract this from elsewhere in the profile.
1037  * The only information we get at setup is from the OSC records:
1038  * setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
1039  *
1040  * Note: configs generated by Lustre 1.8 are missing the -MDTxxxx part,
1041  * so, we need to reconstruct the name of the underlying OSD from this:
1042  * {fsname}-{svname}-osd, for example "lustre-MDT0000-osd".
1043  *
1044  * \param[in] env       execution environment
1045  * \param[in] osp       OSP device
1046  * \param[in] ldt       lu device type of OSP
1047  * \param[in] cfg       configuration log
1048  *
1049  * \retval 0            0 if OSP initialization succeeded.
1050  * \retval negative     negative errno if OSP initialization failed.
1051  */
1052 static int osp_init0(const struct lu_env *env, struct osp_device *osp,
1053                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
1054 {
1055         struct obd_device       *obd;
1056         struct obd_import       *imp;
1057         char *src, *tgt, *osdname = NULL;
1058         const char *mdt;
1059         int                     rc;
1060         u32 idx;
1061
1062         ENTRY;
1063
1064         mutex_init(&osp->opd_async_requests_mutex);
1065         INIT_LIST_HEAD(&osp->opd_async_updates);
1066         init_rwsem(&osp->opd_async_updates_rwsem);
1067         atomic_set(&osp->opd_async_updates_count, 0);
1068
1069         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1070         if (obd == NULL) {
1071                 CERROR("Cannot find obd with name %s\n",
1072                        lustre_cfg_string(cfg, 0));
1073                 RETURN(-ENODEV);
1074         }
1075         osp->opd_obd = obd;
1076
1077         src = lustre_cfg_string(cfg, 0);
1078         if (src == NULL)
1079                 RETURN(-EINVAL);
1080
1081         tgt = strrchr(src, '-');
1082         if (tgt == NULL) {
1083                 CERROR("%s: invalid target name %s: rc = %d\n",
1084                        osp->opd_obd->obd_name, lustre_cfg_string(cfg, 0),
1085                        -EINVAL);
1086                 RETURN(-EINVAL);
1087         }
1088
1089         if (strncmp(tgt, "-osc", 4) == 0) {
1090                 /* Old OSC name fsname-OSTXXXX-osc */
1091                 for (tgt--; tgt > src && *tgt != '-'; tgt--)
1092                         ;
1093                 if (tgt == src) {
1094                         CERROR("%s: invalid target name %s: rc = %d\n",
1095                                osp->opd_obd->obd_name,
1096                                lustre_cfg_string(cfg, 0), -EINVAL);
1097                         RETURN(-EINVAL);
1098                 }
1099
1100                 if (strncmp(tgt, "-OST", 4) != 0) {
1101                         CERROR("%s: invalid target name %s: rc = %d\n",
1102                                osp->opd_obd->obd_name,
1103                                lustre_cfg_string(cfg, 0), -EINVAL);
1104                         RETURN(-EINVAL);
1105                 }
1106
1107                 rc = target_name2index(tgt + 1, &idx, &mdt);
1108                 if (rc < 0 || rc & LDD_F_SV_ALL || mdt[0] != '-') {
1109                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1110                                osp->opd_obd->obd_name, src, -EINVAL);
1111                         RETURN(-EINVAL);
1112                 }
1113                 osp->opd_index = idx;
1114                 osp->opd_group = 0;
1115                 idx = tgt - src;
1116         } else {
1117                 /* New OSC name fsname-OSTXXXX-osc-MDTXXXX */
1118                 if (strncmp(tgt, "-MDT", 4) != 0 &&
1119                     strncmp(tgt, "-OST", 4) != 0) {
1120                         CERROR("%s: invalid target name %s: rc = %d\n",
1121                                osp->opd_obd->obd_name,
1122                                lustre_cfg_string(cfg, 0), -EINVAL);
1123                         RETURN(-EINVAL);
1124                 }
1125
1126                 rc = target_name2index(tgt + 1, &idx, &mdt);
1127                 if (rc < 0 || rc & LDD_F_SV_ALL || *mdt != '\0') {
1128                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1129                                osp->opd_obd->obd_name, src, -EINVAL);
1130                         RETURN(-EINVAL);
1131                 }
1132
1133                 /* Get MDT index from the name and set it to opd_group,
1134                  * which will be used by OSP to connect with OST */
1135                 osp->opd_group = idx;
1136                 if (tgt - src <= 12) {
1137                         CERROR("%s: invalid mdt index from %s: rc =%d\n",
1138                                osp->opd_obd->obd_name,
1139                                lustre_cfg_string(cfg, 0), -EINVAL);
1140                         RETURN(-EINVAL);
1141                 }
1142
1143                 if (strncmp(tgt - 12, "-MDT", 4) == 0)
1144                         osp->opd_connect_mdt = 1;
1145
1146                 rc = target_name2index(tgt - 11, &idx, &mdt);
1147                 if (rc < 0 || rc & LDD_F_SV_ALL || mdt[0] != '-') {
1148                         CERROR("%s: invalid OST index in '%s': rc =%d\n",
1149                                osp->opd_obd->obd_name, src, -EINVAL);
1150                         RETURN(-EINVAL);
1151                 }
1152
1153                 osp->opd_index = idx;
1154                 idx = tgt - src - 12;
1155         }
1156         /* check the fsname length, and after this everything else will fit */
1157         if (idx > MTI_NAME_MAXLEN) {
1158                 CERROR("%s: fsname too long in '%s': rc = %d\n",
1159                        osp->opd_obd->obd_name, src, -EINVAL);
1160                 RETURN(-EINVAL);
1161         }
1162
1163         OBD_ALLOC(osdname, MAX_OBD_NAME);
1164         if (osdname == NULL)
1165                 RETURN(-ENOMEM);
1166
1167         memcpy(osdname, src, idx); /* copy just the fsname part */
1168         osdname[idx] = '\0';
1169
1170         mdt = strstr(mdt, "-MDT");
1171         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
1172                 strcat(osdname, "-MDT0000");
1173         else
1174                 strcat(osdname, mdt);
1175         strcat(osdname, "-osd");
1176         CDEBUG(D_HA, "%s: connect to %s (%s)\n", obd->obd_name, osdname, src);
1177
1178         osp->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
1179         osp->opd_dt_dev.dd_ops = &osp_dt_ops;
1180
1181         obd->obd_lu_dev = &osp->opd_dt_dev.dd_lu_dev;
1182
1183         rc = osp_connect_to_osd(env, osp, osdname);
1184         if (rc)
1185                 GOTO(out_fini, rc);
1186
1187         rc = ptlrpcd_addref();
1188         if (rc)
1189                 GOTO(out_disconnect, rc);
1190
1191         rc = client_obd_setup(obd, cfg);
1192         if (rc) {
1193                 CERROR("%s: can't setup obd: rc = %d\n", osp->opd_obd->obd_name,
1194                        rc);
1195                 GOTO(out_ref, rc);
1196         }
1197
1198         osp_tunables_init(osp);
1199
1200         rc = obd_fid_init(osp->opd_obd, NULL, osp->opd_connect_mdt ?
1201                           LUSTRE_SEQ_METADATA : LUSTRE_SEQ_DATA);
1202         if (rc) {
1203                 CERROR("%s: fid init error: rc = %d\n",
1204                        osp->opd_obd->obd_name, rc);
1205                 GOTO(out_proc, rc);
1206         }
1207
1208         if (!osp->opd_connect_mdt) {
1209                 /* Initialize last id from the storage - will be
1210                  * used in orphan cleanup. */
1211                 if (!osp->opd_storage->dd_rdonly) {
1212                         rc = osp_last_used_init(env, osp);
1213                         if (rc)
1214                                 GOTO(out_fid, rc);
1215                 }
1216
1217                 /* Initialize precreation thread, it handles new
1218                  * connections as well. */
1219                 rc = osp_init_precreate(osp);
1220                 if (rc)
1221                         GOTO(out_last_used, rc);
1222
1223                 /*
1224                  * Initialize synhronization mechanism taking
1225                  * care of propogating changes to OST in near
1226                  * transactional manner.
1227                  */
1228                 rc = osp_sync_init(env, osp);
1229                 if (rc < 0)
1230                         GOTO(out_precreat, rc);
1231         } else {
1232                 osp->opd_got_disconnected = 1;
1233                 rc = osp_update_init(osp);
1234                 if (rc != 0)
1235                         GOTO(out_fid, rc);
1236         }
1237
1238         rc = osp_init_statfs(osp);
1239         if (rc)
1240                 GOTO(out_precreat, rc);
1241
1242         ns_register_cancel(obd->obd_namespace, osp_cancel_weight);
1243
1244         /*
1245          * Initiate connect to OST
1246          */
1247         imp = obd->u.cli.cl_import;
1248
1249         rc = ptlrpc_init_import(imp);
1250         if (rc)
1251                 GOTO(out, rc);
1252         if (osdname)
1253                 OBD_FREE(osdname, MAX_OBD_NAME);
1254         init_waitqueue_head(&osp->opd_out_waitq);
1255         RETURN(0);
1256
1257 out:
1258         if (!osp->opd_connect_mdt)
1259                 /* stop sync thread */
1260                 osp_sync_fini(osp);
1261 out_precreat:
1262         /* stop precreate thread */
1263         if (!osp->opd_connect_mdt)
1264                 osp_precreate_fini(osp);
1265         else
1266                 osp_update_fini(env, osp);
1267 out_last_used:
1268         if (!osp->opd_connect_mdt)
1269                 osp_last_used_fini(env, osp);
1270 out_fid:
1271         obd_fid_fini(osp->opd_obd);
1272 out_proc:
1273         osp_tunables_fini(osp);
1274         client_obd_cleanup(obd);
1275 out_ref:
1276         ptlrpcd_decref();
1277 out_disconnect:
1278         obd_disconnect(osp->opd_storage_exp);
1279 out_fini:
1280         if (osdname)
1281                 OBD_FREE(osdname, MAX_OBD_NAME);
1282         RETURN(rc);
1283 }
1284
1285 /**
1286  * Implementation of lu_device_type_operations::ldto_device_free
1287  *
1288  * Free the OSP device in memory.  No return value is needed for now,
1289  * so always return NULL to comply with the interface.
1290  *
1291  * \param[in] env       execution environment
1292  * \param[in] lu        lu_device of OSP
1293  *
1294  * \retval NULL         NULL unconditionally
1295  */
1296 static struct lu_device *osp_device_free(const struct lu_env *env,
1297                                          struct lu_device *lu)
1298 {
1299         struct osp_device *osp = lu2osp_dev(lu);
1300
1301         lu_site_print(env, lu->ld_site, &lu->ld_ref, D_ERROR,
1302                       lu_cdebug_printer);
1303         dt_device_fini(&osp->opd_dt_dev);
1304         OBD_FREE_PTR(osp);
1305
1306         return NULL;
1307 }
1308
1309 /**
1310  * Implementation of lu_device_type_operations::ldto_device_alloc
1311  *
1312  * This function allocates and initializes OSP device in memory according to
1313  * the config log.
1314  *
1315  * \param[in] env       execution environment
1316  * \param[in] type      device type of OSP
1317  * \param[in] lcfg      config log
1318  *
1319  * \retval pointer              the pointer of allocated OSP if succeed.
1320  * \retval ERR_PTR(errno)       ERR_PTR(errno) if failed.
1321  */
1322 static struct lu_device *osp_device_alloc(const struct lu_env *env,
1323                                           struct lu_device_type *type,
1324                                           struct lustre_cfg *lcfg)
1325 {
1326         struct osp_device *osp;
1327         struct lu_device  *ld;
1328
1329         OBD_ALLOC_PTR(osp);
1330         if (osp == NULL) {
1331                 ld = ERR_PTR(-ENOMEM);
1332         } else {
1333                 int rc;
1334
1335                 ld = osp2lu_dev(osp);
1336                 dt_device_init(&osp->opd_dt_dev, type);
1337                 rc = osp_init0(env, osp, type, lcfg);
1338                 if (rc != 0) {
1339                         osp_device_free(env, ld);
1340                         ld = ERR_PTR(rc);
1341                 }
1342         }
1343         return ld;
1344 }
1345
1346 /**
1347  * Implementation of lu_device_type_operations::ldto_device_fini
1348  *
1349  * This function cleans up the OSP device, i.e. release and free those
1350  * attached items in osp_device.
1351  *
1352  * \param[in] env       execution environment
1353  * \param[in] ld        lu_device of OSP
1354  *
1355  * \retval NULL                 NULL if cleanup succeeded.
1356  * \retval ERR_PTR(errno)       ERR_PTR(errno) if cleanup failed.
1357  */
1358 static struct lu_device *osp_device_fini(const struct lu_env *env,
1359                                          struct lu_device *ld)
1360 {
1361         struct osp_device *osp = lu2osp_dev(ld);
1362         int                rc;
1363
1364         ENTRY;
1365
1366         if (osp->opd_async_requests != NULL) {
1367                 osp_update_request_destroy(env, osp->opd_async_requests);
1368                 osp->opd_async_requests = NULL;
1369         }
1370
1371         if (osp->opd_storage_exp) {
1372                 /* wait for the commit callbacks to complete */
1373                 wait_event(osp->opd_sync_waitq,
1374                           atomic_read(&osp->opd_commits_registered) == 0);
1375                 obd_disconnect(osp->opd_storage_exp);
1376         }
1377
1378         LASSERT(osp->opd_obd);
1379
1380         rc = client_obd_cleanup(osp->opd_obd);
1381         if (rc != 0) {
1382                 ptlrpcd_decref();
1383                 RETURN(ERR_PTR(rc));
1384         }
1385
1386         osp_tunables_fini(osp);
1387
1388         ptlrpcd_decref();
1389
1390         RETURN(NULL);
1391 }
1392
1393 /**
1394  * Implementation of obd_ops::o_reconnect
1395  *
1396  * This function is empty and does not need to do anything for now.
1397  */
1398 static int osp_reconnect(const struct lu_env *env,
1399                          struct obd_export *exp, struct obd_device *obd,
1400                          struct obd_uuid *cluuid,
1401                          struct obd_connect_data *data,
1402                          void *localdata)
1403 {
1404         return 0;
1405 }
1406
1407 /*
1408  * Implementation of obd_ops::o_connect
1409  *
1410  * Connect OSP to the remote target (MDT or OST). Allocate the
1411  * export and return it to the LOD, which calls this function
1412  * for each OSP to connect it to the remote target. This function
1413  * is currently only called once per OSP.
1414  *
1415  * \param[in] env       execution environment
1416  * \param[out] exp      export connected to OSP
1417  * \param[in] obd       OSP device
1418  * \param[in] cluuid    OSP device client uuid
1419  * \param[in] data      connect_data to be used to connect to the remote
1420  *                      target
1421  * \param[in] localdata necessary for the API interface, but not used in
1422  *                      this function
1423  *
1424  * \retval 0            0 if the connection succeeded.
1425  * \retval negative     negative errno if the connection failed.
1426  */
1427 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
1428                            struct obd_device *obd, struct obd_uuid *cluuid,
1429                            struct obd_connect_data *data, void *localdata)
1430 {
1431         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
1432         int rc;
1433
1434         ENTRY;
1435
1436         LASSERT(data != NULL);
1437         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
1438
1439         rc = client_connect_import(env, &osp->opd_exp, obd, cluuid, data,
1440                                    localdata);
1441         if (rc)
1442                 RETURN(rc);
1443
1444         *exp = osp->opd_exp;
1445
1446         osp->opd_obd->u.cli.cl_seq->lcs_exp = class_export_get(osp->opd_exp);
1447         /* precreate thread can be waiting for us to initialize fld client */
1448         wake_up(&osp->opd_pre_waitq);
1449
1450         RETURN(rc);
1451 }
1452
1453 /**
1454  * Implementation of obd_ops::o_disconnect
1455  *
1456  * Disconnect the export for the OSP.  This is called by LOD to release the
1457  * OSP during cleanup (\see lod_del_device()). The OSP will be released after
1458  * the export is released.
1459  *
1460  * \param[in] exp       export to be disconnected.
1461  *
1462  * \retval 0            0 if disconnection succeed
1463  * \retval negative     negative errno if disconnection failed
1464  */
1465 static int osp_obd_disconnect(struct obd_export *exp)
1466 {
1467         struct obd_device *obd = exp->exp_obd;
1468         int                rc;
1469         ENTRY;
1470
1471         rc = class_disconnect(exp);
1472         if (rc) {
1473                 CERROR("%s: class disconnect error: rc = %d\n",
1474                        obd->obd_name, rc);
1475                 RETURN(rc);
1476         }
1477
1478         /* destroy the device */
1479         class_manual_cleanup(obd);
1480
1481         RETURN(rc);
1482 }
1483
1484 /**
1485  * Implementation of obd_ops::o_statfs
1486  *
1487  * Send a RPC to the remote target to get statfs status. This is only used
1488  * in lprocfs helpers by obd_statfs.
1489  *
1490  * \param[in] env       execution environment
1491  * \param[in] exp       connection state from this OSP to the parent (LOD)
1492  *                      device
1493  * \param[out] osfs     hold the statfs result
1494  * \param[in] unused    Not used in this function for now
1495  * \param[in] flags     flags to indicate how OSP will issue the RPC
1496  *
1497  * \retval 0            0 if statfs succeeded.
1498  * \retval negative     negative errno if statfs failed.
1499  */
1500 static int osp_obd_statfs(const struct lu_env *env, struct obd_export *exp,
1501                           struct obd_statfs *osfs, time64_t unused, __u32 flags)
1502 {
1503         struct obd_statfs       *msfs;
1504         struct ptlrpc_request   *req;
1505         struct obd_import       *imp = NULL, *imp0;
1506         int                      rc;
1507
1508         ENTRY;
1509
1510         /* Since the request might also come from lprocfs, so we need
1511          * sync this with client_disconnect_export Bug15684
1512          */
1513         with_imp_locked(exp->exp_obd, imp0, rc)
1514                 imp = class_import_get(imp0);
1515         if (rc)
1516                 RETURN(rc);
1517
1518         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
1519
1520         class_import_put(imp);
1521
1522         if (req == NULL)
1523                 RETURN(-ENOMEM);
1524
1525         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
1526         if (rc) {
1527                 ptlrpc_request_free(req);
1528                 RETURN(rc);
1529         }
1530         ptlrpc_request_set_replen(req);
1531         req->rq_request_portal = OST_CREATE_PORTAL;
1532         ptlrpc_at_set_req_timeout(req);
1533
1534         if (flags & OBD_STATFS_NODELAY) {
1535                 /* procfs requests not want stat in wait for avoid deadlock */
1536                 req->rq_no_resend = 1;
1537                 req->rq_no_delay = 1;
1538         }
1539
1540         rc = ptlrpc_queue_wait(req);
1541         if (rc)
1542                 GOTO(out, rc);
1543
1544         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1545         if (msfs == NULL)
1546                 GOTO(out, rc = -EPROTO);
1547
1548         *osfs = *msfs;
1549
1550         EXIT;
1551 out:
1552         ptlrpc_req_finished(req);
1553         return rc;
1554 }
1555
1556 /**
1557  * Implementation of obd_ops::o_import_event
1558  *
1559  * This function is called when some related import event happens. It will
1560  * mark the necessary flags according to the event and notify the necessary
1561  * threads (mainly precreate thread).
1562  *
1563  * \param[in] obd       OSP OBD device
1564  * \param[in] imp       import attached from OSP to remote (OST/MDT) service
1565  * \param[in] event     event related to remote service (IMP_EVENT_*)
1566  *
1567  * \retval 0            0 if the event handling succeeded.
1568  * \retval negative     negative errno if the event handling failed.
1569  */
1570 static int osp_import_event(struct obd_device *obd, struct obd_import *imp,
1571                             enum obd_import_event event)
1572 {
1573         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
1574         int rc;
1575
1576         switch (event) {
1577         case IMP_EVENT_DISCON:
1578                 d->opd_got_disconnected = 1;
1579                 d->opd_imp_connected = 0;
1580                 if (d->opd_connect_mdt)
1581                         break;
1582
1583                 if (d->opd_pre != NULL) {
1584                         osp_pre_update_status(d, -ENODEV);
1585                         wake_up(&d->opd_pre_waitq);
1586                 }
1587
1588                 CDEBUG(D_HA, "got disconnected\n");
1589                 break;
1590         case IMP_EVENT_INACTIVE:
1591                 d->opd_imp_active = 0;
1592                 d->opd_imp_connected = 0;
1593                 d->opd_obd->obd_inactive = 1;
1594                 if (d->opd_connect_mdt)
1595                         break;
1596                 if (d->opd_pre != NULL) {
1597                         /* Import is invalid, we can`t get stripes so
1598                          * wakeup waiters */
1599                         rc = imp->imp_deactive ? -ESHUTDOWN : -ENODEV;
1600                         osp_pre_update_status(d, rc);
1601                         wake_up(&d->opd_pre_waitq);
1602                 }
1603
1604                 CDEBUG(D_HA, "got inactive\n");
1605                 break;
1606         case IMP_EVENT_ACTIVE:
1607                 d->opd_imp_active = 1;
1608
1609                 d->opd_new_connection = 1;
1610                 d->opd_imp_connected = 1;
1611                 d->opd_imp_seen_connected = 1;
1612                 d->opd_obd->obd_inactive = 0;
1613                 wake_up(&d->opd_pre_waitq);
1614                 if (d->opd_connect_mdt)
1615                         break;
1616
1617                 osp_sync_check_for_work(d);
1618                 CDEBUG(D_HA, "got connected\n");
1619                 break;
1620         case IMP_EVENT_INVALIDATE:
1621                 if (d->opd_connect_mdt)
1622                         osp_invalidate_request(d);
1623
1624                 if (obd->obd_namespace == NULL)
1625                         break;
1626                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
1627                 break;
1628         case IMP_EVENT_OCD:
1629         case IMP_EVENT_DEACTIVATE:
1630         case IMP_EVENT_ACTIVATE:
1631                 break;
1632         default:
1633                 CERROR("%s: unsupported import event: %#x\n",
1634                        obd->obd_name, event);
1635         }
1636         return 0;
1637 }
1638
1639 /**
1640  * Implementation of obd_ops: o_iocontrol
1641  *
1642  * This function is the ioctl handler for OSP. Note: lctl will access the OSP
1643  * directly by ioctl, instead of through the MDS stack.
1644  *
1645  * param[in] cmd        ioctl command.
1646  * param[in] exp        export of this OSP.
1647  * param[in] len        data length of \a karg.
1648  * param[in] karg       input argument which is packed as
1649  *                      obd_ioctl_data
1650  * param[out] uarg      pointer to userspace buffer (must access by
1651  *                      copy_to_user()).
1652  *
1653  * \retval 0            0 if the ioctl handling succeeded.
1654  * \retval negative     negative errno if the ioctl handling failed.
1655  */
1656 static int osp_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1657                          void *karg, void __user *uarg)
1658 {
1659         struct obd_device       *obd = exp->exp_obd;
1660         struct osp_device       *d;
1661         struct obd_ioctl_data   *data = karg;
1662         int                      rc = 0;
1663
1664         ENTRY;
1665
1666         LASSERT(obd->obd_lu_dev);
1667         d = lu2osp_dev(obd->obd_lu_dev);
1668         LASSERT(d->opd_dt_dev.dd_ops == &osp_dt_ops);
1669
1670         if (!try_module_get(THIS_MODULE)) {
1671                 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1672                        module_name(THIS_MODULE));
1673                 return -EINVAL;
1674         }
1675
1676         switch (cmd) {
1677         case OBD_IOC_CLIENT_RECOVER:
1678                 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
1679                                            data->ioc_inlbuf1, 0);
1680                 if (rc > 0)
1681                         rc = 0;
1682                 break;
1683         case IOC_OSC_SET_ACTIVE:
1684                 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
1685                                               data->ioc_offset);
1686                 break;
1687         default:
1688                 CERROR("%s: unrecognized ioctl %#x by %s\n", obd->obd_name,
1689                        cmd, current->comm);
1690                 rc = -ENOTTY;
1691         }
1692         module_put(THIS_MODULE);
1693         return rc;
1694 }
1695
1696
1697 /**
1698  * Implementation of obd_ops::o_get_info
1699  *
1700  * Retrieve information by key. Retrieval starts from the top layer
1701  * (MDT) of the MDS stack and traverses the stack by calling the
1702  * obd_get_info() method of the next sub-layer.
1703  *
1704  * \param[in] env       execution environment
1705  * \param[in] exp       export of this OSP
1706  * \param[in] keylen    length of \a key
1707  * \param[in] key       the key
1708  * \param[out] vallen   length of \a val
1709  * \param[out] val      holds the value returned by the key
1710  *
1711  * \retval 0            0 if getting information succeeded.
1712  * \retval negative     negative errno if getting information failed.
1713  */
1714 static int osp_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1715                             __u32 keylen, void *key, __u32 *vallen, void *val)
1716 {
1717         int rc = -EINVAL;
1718
1719         if (KEY_IS(KEY_OSP_CONNECTED)) {
1720                 struct obd_device       *obd = exp->exp_obd;
1721                 struct osp_device       *osp;
1722
1723                 if (!obd->obd_set_up || obd->obd_stopping)
1724                         RETURN(-EAGAIN);
1725
1726                 osp = lu2osp_dev(obd->obd_lu_dev);
1727                 LASSERT(osp);
1728                 /*
1729                  * 1.8/2.0 behaviour is that OST being connected once at least
1730                  * is considered "healthy". and one "healthy" OST is enough to
1731                  * allow lustre clients to connect to MDS
1732                  */
1733                 RETURN(!osp->opd_imp_seen_connected);
1734         }
1735
1736         RETURN(rc);
1737 }
1738
1739 static int osp_obd_set_info_async(const struct lu_env *env,
1740                                   struct obd_export *exp,
1741                                   u32 keylen, void *key,
1742                                   u32 vallen, void *val,
1743                                   struct ptlrpc_request_set *set)
1744 {
1745         struct obd_device       *obd = exp->exp_obd;
1746         struct obd_import       *imp = obd->u.cli.cl_import;
1747         struct osp_device       *osp;
1748         struct ptlrpc_request   *req;
1749         char                    *tmp;
1750         int                      rc;
1751
1752         if (KEY_IS(KEY_SPTLRPC_CONF)) {
1753                 sptlrpc_conf_client_adapt(exp->exp_obd);
1754                 RETURN(0);
1755         }
1756
1757         LASSERT(set != NULL);
1758         if (!obd->obd_set_up || obd->obd_stopping)
1759                 RETURN(-EAGAIN);
1760         osp = lu2osp_dev(obd->obd_lu_dev);
1761
1762         req = ptlrpc_request_alloc(imp, &RQF_OBD_SET_INFO);
1763         if (req == NULL)
1764                 RETURN(-ENOMEM);
1765
1766         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
1767                              RCL_CLIENT, keylen);
1768         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
1769                              RCL_CLIENT, vallen);
1770         if (osp->opd_connect_mdt)
1771                 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SET_INFO);
1772         else
1773                 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SET_INFO);
1774         if (rc) {
1775                 ptlrpc_request_free(req);
1776                 RETURN(rc);
1777         }
1778
1779         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1780         memcpy(tmp, key, keylen);
1781         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
1782         memcpy(tmp, val, vallen);
1783
1784         ptlrpc_request_set_replen(req);
1785         ptlrpc_set_add_req(set, req);
1786         ptlrpc_check_set(NULL, set);
1787
1788         RETURN(0);
1789 }
1790
1791 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
1792 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
1793 static void osp_key_exit(const struct lu_context *ctx,
1794                          struct lu_context_key *key, void *data)
1795 {
1796         struct osp_thread_info *info = data;
1797
1798         info->osi_attr.la_valid = 0;
1799 }
1800
1801 struct lu_context_key osp_thread_key = {
1802         .lct_tags = LCT_MD_THREAD,
1803         .lct_init = osp_key_init,
1804         .lct_fini = osp_key_fini,
1805         .lct_exit = osp_key_exit
1806 };
1807
1808 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
1809 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
1810
1811 struct lu_context_key osp_txn_key = {
1812         .lct_tags = LCT_OSP_THREAD,
1813         .lct_init = osp_txn_key_init,
1814         .lct_fini = osp_txn_key_fini
1815 };
1816 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
1817
1818 static const struct lu_device_type_operations osp_device_type_ops = {
1819         .ldto_init           = osp_type_init,
1820         .ldto_fini           = osp_type_fini,
1821
1822         .ldto_start          = osp_type_start,
1823         .ldto_stop           = osp_type_stop,
1824
1825         .ldto_device_alloc   = osp_device_alloc,
1826         .ldto_device_free    = osp_device_free,
1827
1828         .ldto_device_fini    = osp_device_fini
1829 };
1830
1831 static struct lu_device_type osp_device_type = {
1832         .ldt_tags     = LU_DEVICE_DT,
1833         .ldt_name     = LUSTRE_OSP_NAME,
1834         .ldt_ops      = &osp_device_type_ops,
1835         .ldt_ctx_tags = LCT_MD_THREAD | LCT_DT_THREAD,
1836 };
1837
1838 static const struct obd_ops osp_obd_device_ops = {
1839         .o_owner        = THIS_MODULE,
1840         .o_add_conn     = client_import_add_conn,
1841         .o_del_conn     = client_import_del_conn,
1842         .o_reconnect    = osp_reconnect,
1843         .o_connect      = osp_obd_connect,
1844         .o_disconnect   = osp_obd_disconnect,
1845         .o_get_info     = osp_obd_get_info,
1846         .o_set_info_async = osp_obd_set_info_async,
1847         .o_import_event = osp_import_event,
1848         .o_iocontrol    = osp_iocontrol,
1849         .o_statfs       = osp_obd_statfs,
1850         .o_fid_init     = client_fid_init,
1851         .o_fid_fini     = client_fid_fini,
1852 };
1853
1854 /**
1855  * Initialize OSP module.
1856  *
1857  * Register device types OSP and Light Weight Proxy (LWP) (\see lwp_dev.c)
1858  * in obd_types (\see class_obd.c).  Initialize procfs for the
1859  * the OSP device.  Note: OSP was called OSC before Lustre 2.4,
1860  * so for compatibility it still uses the name "osc" in procfs.
1861  * This is called at module load time.
1862  *
1863  * \retval 0            0 if initialization succeeds.
1864  * \retval negative     negative errno if initialization failed.
1865  */
1866 static int __init osp_init(void)
1867 {
1868         struct obd_type *sym;
1869         int rc;
1870
1871         rc = lu_kmem_init(osp_caches);
1872         if (rc)
1873                 return rc;
1874
1875         rc = class_register_type(&osp_obd_device_ops, NULL, false,
1876                                  LUSTRE_OSP_NAME, &osp_device_type);
1877         if (rc != 0) {
1878                 lu_kmem_fini(osp_caches);
1879                 return rc;
1880         }
1881
1882         rc = class_register_type(&lwp_obd_device_ops, NULL, false,
1883                                  LUSTRE_LWP_NAME, &lwp_device_type);
1884         if (rc != 0) {
1885                 class_unregister_type(LUSTRE_OSP_NAME);
1886                 lu_kmem_fini(osp_caches);
1887                 return rc;
1888         }
1889
1890         /* create "osc" entry for compatibility purposes */
1891         sym = class_add_symlinks(LUSTRE_OSC_NAME, true);
1892         if (IS_ERR(sym)) {
1893                 rc = PTR_ERR(sym);
1894                 /* does real "osc" already exist ? */
1895                 if (rc == -EEXIST)
1896                         rc = 0;
1897         }
1898
1899         return rc;
1900 }
1901
1902 /**
1903  * Finalize OSP module.
1904  *
1905  * This callback is called when kernel unloads OSP module from memory, and
1906  * it will deregister OSP and LWP device type from obd_types (\see class_obd.c).
1907  */
1908 static void __exit osp_exit(void)
1909 {
1910         struct obd_type *sym = class_search_type(LUSTRE_OSC_NAME);
1911
1912         /* if this was never fully initialized by the osc layer
1913          * then we are responsible for freeing this obd_type
1914          */
1915         if (sym) {
1916                 /* final put if we manage this obd type */
1917                 if (sym->typ_sym_filter)
1918                         kobject_put(&sym->typ_kobj);
1919                 /* put reference taken by class_search_type */
1920                 kobject_put(&sym->typ_kobj);
1921         }
1922
1923         class_unregister_type(LUSTRE_LWP_NAME);
1924         class_unregister_type(LUSTRE_OSP_NAME);
1925         lu_kmem_fini(osp_caches);
1926 }
1927
1928 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1929 MODULE_DESCRIPTION("Lustre OSD Storage Proxy ("LUSTRE_OSP_NAME")");
1930 MODULE_VERSION(LUSTRE_VERSION_STRING);
1931 MODULE_LICENSE("GPL");
1932
1933 module_init(osp_init);
1934 module_exit(osp_exit);