Whamcloud - gitweb
c316b52629307ffb72fab54a606ba83b2c4234bc
[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         if (d->opd_pre == NULL)
799                 RETURN(0);
800
801         CDEBUG(D_OTHER, "%s: %llu blocks, %llu free, %llu avail, "
802                "%u bsize, %u reserved mb low, %u reserved mb high, "
803                "%llu files, %llu free files\n", d->opd_obd->obd_name,
804                sfs->os_blocks, sfs->os_bfree, sfs->os_bavail, sfs->os_bsize,
805                d->opd_reserved_mb_low, d->opd_reserved_mb_high,
806                sfs->os_files, sfs->os_ffree);
807
808
809         if (info && !info->os_enable_pre)
810                 RETURN(0);
811
812         /*
813          * The layer above osp (usually lod) can use f_precreated to
814          * estimate how many objects are available for immediate usage.
815          */
816         spin_lock(&d->opd_pre_lock);
817         sfs->os_fprecreated = osp_fid_diff(&d->opd_pre_last_created_fid,
818                                            &d->opd_pre_used_fid);
819         sfs->os_fprecreated -= d->opd_pre_reserved;
820         LASSERTF(sfs->os_fprecreated <= OST_MAX_PRECREATE * 2,
821                  "last_created "DFID", next_fid "DFID", reserved %llu\n",
822                  PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_pre_used_fid),
823                  d->opd_pre_reserved);
824         spin_unlock(&d->opd_pre_lock);
825         RETURN(0);
826 }
827
828 /**
829  * Implementation of dt_device_operations::dt_sync
830  *
831  * This function synchronizes the OSP cache to the remote target. It wakes
832  * up unlink log threads and sends out unlink records to the remote OST.
833  *
834  * \param[in] env       execution environment
835  * \param[in] dev       dt_device of OSP
836  *
837  * \retval 0            0 if synchronization succeeds
838  * \retval negative     negative errno if synchronization fails
839  */
840 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
841 {
842         struct osp_device *d = dt2osp_dev(dev);
843         time64_t start = ktime_get_seconds();
844         int recs, rc = 0;
845         u64 old;
846
847         ENTRY;
848
849         /* No Sync between MDTs yet. */
850         if (d->opd_connect_mdt)
851                 RETURN(0);
852
853         recs = atomic_read(&d->opd_sync_changes);
854         old = atomic64_read(&d->opd_sync_processed_recs);
855
856         osp_sync_force(env, dt2osp_dev(dev));
857
858         if (unlikely(d->opd_imp_active == 0))
859                 RETURN(-ENOTCONN);
860
861         down_write(&d->opd_async_updates_rwsem);
862
863         CDEBUG(D_OTHER, "%s: async updates %d\n", d->opd_obd->obd_name,
864                atomic_read(&d->opd_async_updates_count));
865
866         /* make sure the connection is fine */
867         rc = wait_event_idle_timeout(
868                 d->opd_sync_barrier_waitq,
869                 atomic_read(&d->opd_async_updates_count) == 0,
870                 cfs_time_seconds(obd_timeout));
871         if (rc > 0)
872                 rc = 0;
873         else if (rc == 0)
874                 rc = -ETIMEDOUT;
875
876         up_write(&d->opd_async_updates_rwsem);
877         if (rc != 0)
878                 GOTO(out, rc);
879
880         CDEBUG(D_CACHE, "%s: processed %llu\n", d->opd_obd->obd_name,
881                (unsigned long long)atomic64_read(&d->opd_sync_processed_recs));
882
883         while (atomic64_read(&d->opd_sync_processed_recs) < old + recs) {
884                 __u64 last = atomic64_read(&d->opd_sync_processed_recs);
885                 /* make sure the connection is fine */
886                 wait_event_idle_timeout(
887                         d->opd_sync_barrier_waitq,
888                         atomic64_read(&d->opd_sync_processed_recs)
889                              >= old + recs,
890                         cfs_time_seconds(obd_timeout));
891
892                 if (atomic64_read(&d->opd_sync_processed_recs) >= old + recs)
893                         break;
894
895                 if (atomic64_read(&d->opd_sync_processed_recs) != last) {
896                         /* some progress have been made,
897                          * keep trying... */
898                         continue;
899                 }
900
901                 /* no changes and expired, something is wrong */
902                 GOTO(out, rc = -ETIMEDOUT);
903         }
904
905         /* block new processing (barrier>0 - few callers are possible */
906         atomic_inc(&d->opd_sync_barrier);
907
908         CDEBUG(D_CACHE, "%s: %u in flight\n", d->opd_obd->obd_name,
909                atomic_read(&d->opd_sync_rpcs_in_flight));
910
911         /* wait till all-in-flight are replied, so executed by the target */
912         /* XXX: this is used by LFSCK at the moment, which doesn't require
913          *      all the changes to be committed, but in general it'd be
914          *      better to wait till commit */
915         while (atomic_read(&d->opd_sync_rpcs_in_flight) > 0) {
916                 old = atomic_read(&d->opd_sync_rpcs_in_flight);
917
918                 wait_event_idle_timeout(
919                         d->opd_sync_barrier_waitq,
920                         atomic_read(&d->opd_sync_rpcs_in_flight) == 0,
921                         cfs_time_seconds(obd_timeout));
922
923                 if (atomic_read(&d->opd_sync_rpcs_in_flight) == 0)
924                         break;
925
926                 if (atomic_read(&d->opd_sync_rpcs_in_flight) != old) {
927                         /* some progress have been made */
928                         continue;
929                 }
930
931                 /* no changes and expired, something is wrong */
932                 GOTO(out, rc = -ETIMEDOUT);
933         }
934
935 out:
936         /* resume normal processing (barrier=0) */
937         atomic_dec(&d->opd_sync_barrier);
938         osp_sync_check_for_work(d);
939
940         CDEBUG(D_CACHE, "%s: done in %lld: rc = %d\n", d->opd_obd->obd_name,
941                ktime_get_seconds() - start, rc);
942
943         RETURN(rc);
944 }
945
946 static const struct dt_device_operations osp_dt_ops = {
947         .dt_statfs       = osp_statfs,
948         .dt_sync         = osp_sync,
949         .dt_trans_create = osp_trans_create,
950         .dt_trans_start  = osp_trans_start,
951         .dt_trans_stop   = osp_trans_stop,
952         .dt_trans_cb_add   = osp_trans_cb_add,
953 };
954
955 /**
956  * Connect OSP to local OSD.
957  *
958  * Locate the local OSD referenced by \a nextdev and connect to it. Sometimes,
959  * OSP needs to access the local OSD to store some information. For example,
960  * during precreate, it needs to update last used OID and sequence file
961  * (LAST_SEQ) in local OSD.
962  *
963  * \param[in] env       execution environment
964  * \param[in] osp       OSP device
965  * \param[in] nextdev   the name of local OSD
966  *
967  * \retval 0            0 connection succeeded
968  * \retval negative     negative errno connection failed
969  */
970 static int osp_connect_to_osd(const struct lu_env *env, struct osp_device *osp,
971                               const char *nextdev)
972 {
973         struct obd_connect_data *data = NULL;
974         struct obd_device       *obd;
975         int                      rc;
976
977         ENTRY;
978
979         LASSERT(osp->opd_storage_exp == NULL);
980
981         OBD_ALLOC_PTR(data);
982         if (data == NULL)
983                 RETURN(-ENOMEM);
984
985         obd = class_name2obd(nextdev);
986         if (obd == NULL) {
987                 CERROR("%s: can't locate next device: %s\n",
988                        osp->opd_obd->obd_name, nextdev);
989                 GOTO(out, rc = -ENOTCONN);
990         }
991
992         rc = obd_connect(env, &osp->opd_storage_exp, obd, &obd->obd_uuid, data,
993                          NULL);
994         if (rc) {
995                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
996                        osp->opd_obd->obd_name, nextdev, rc);
997                 GOTO(out, rc);
998         }
999
1000         osp->opd_dt_dev.dd_lu_dev.ld_site =
1001                 osp->opd_storage_exp->exp_obd->obd_lu_dev->ld_site;
1002         LASSERT(osp->opd_dt_dev.dd_lu_dev.ld_site);
1003         osp->opd_storage = lu2dt_dev(osp->opd_storage_exp->exp_obd->obd_lu_dev);
1004
1005 out:
1006         OBD_FREE_PTR(data);
1007         RETURN(rc);
1008 }
1009
1010 /**
1011  * Determine if the lock needs to be cancelled
1012  *
1013  * Determine if the unused lock should be cancelled before replay, see
1014  * (ldlm_cancel_no_wait_policy()). Currently, only inode bits lock exists
1015  * between MDTs.
1016  *
1017  * \param[in] lock      lock to be checked.
1018  *
1019  * \retval              1 if the lock needs to be cancelled before replay.
1020  * \retval              0 if the lock does not need to be cancelled before
1021  *                      replay.
1022  */
1023 static int osp_cancel_weight(struct ldlm_lock *lock)
1024 {
1025         if (lock->l_resource->lr_type != LDLM_IBITS)
1026                 RETURN(0);
1027
1028         RETURN(1);
1029 }
1030
1031 /**
1032  * Initialize OSP device according to the parameters in the configuration
1033  * log \a cfg.
1034  *
1035  * Reconstruct the local device name from the configuration profile, and
1036  * initialize necessary threads and structures according to the OSP type
1037  * (MDT or OST).
1038  *
1039  * Since there is no record in the MDT configuration for the local disk
1040  * device, we have to extract this from elsewhere in the profile.
1041  * The only information we get at setup is from the OSC records:
1042  * setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
1043  *
1044  * Note: configs generated by Lustre 1.8 are missing the -MDTxxxx part,
1045  * so, we need to reconstruct the name of the underlying OSD from this:
1046  * {fsname}-{svname}-osd, for example "lustre-MDT0000-osd".
1047  *
1048  * \param[in] env       execution environment
1049  * \param[in] osp       OSP device
1050  * \param[in] ldt       lu device type of OSP
1051  * \param[in] cfg       configuration log
1052  *
1053  * \retval 0            0 if OSP initialization succeeded.
1054  * \retval negative     negative errno if OSP initialization failed.
1055  */
1056 static int osp_init0(const struct lu_env *env, struct osp_device *osp,
1057                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
1058 {
1059         struct obd_device       *obd;
1060         struct obd_import       *imp;
1061         char *src, *tgt, *osdname = NULL;
1062         const char *mdt;
1063         int                     rc;
1064         u32 idx;
1065
1066         ENTRY;
1067
1068         mutex_init(&osp->opd_async_requests_mutex);
1069         INIT_LIST_HEAD(&osp->opd_async_updates);
1070         init_rwsem(&osp->opd_async_updates_rwsem);
1071         atomic_set(&osp->opd_async_updates_count, 0);
1072
1073         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1074         if (obd == NULL) {
1075                 CERROR("Cannot find obd with name %s\n",
1076                        lustre_cfg_string(cfg, 0));
1077                 RETURN(-ENODEV);
1078         }
1079         osp->opd_obd = obd;
1080
1081         src = lustre_cfg_string(cfg, 0);
1082         if (src == NULL)
1083                 RETURN(-EINVAL);
1084
1085         tgt = strrchr(src, '-');
1086         if (tgt == NULL) {
1087                 CERROR("%s: invalid target name %s: rc = %d\n",
1088                        osp->opd_obd->obd_name, lustre_cfg_string(cfg, 0),
1089                        -EINVAL);
1090                 RETURN(-EINVAL);
1091         }
1092
1093         if (strncmp(tgt, "-osc", 4) == 0) {
1094                 /* Old OSC name fsname-OSTXXXX-osc */
1095                 for (tgt--; tgt > src && *tgt != '-'; tgt--)
1096                         ;
1097                 if (tgt == src) {
1098                         CERROR("%s: invalid target name %s: rc = %d\n",
1099                                osp->opd_obd->obd_name,
1100                                lustre_cfg_string(cfg, 0), -EINVAL);
1101                         RETURN(-EINVAL);
1102                 }
1103
1104                 if (strncmp(tgt, "-OST", 4) != 0) {
1105                         CERROR("%s: invalid target name %s: rc = %d\n",
1106                                osp->opd_obd->obd_name,
1107                                lustre_cfg_string(cfg, 0), -EINVAL);
1108                         RETURN(-EINVAL);
1109                 }
1110
1111                 rc = target_name2index(tgt + 1, &idx, &mdt);
1112                 if (rc < 0 || rc & LDD_F_SV_ALL || mdt[0] != '-') {
1113                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1114                                osp->opd_obd->obd_name, src, -EINVAL);
1115                         RETURN(-EINVAL);
1116                 }
1117                 osp->opd_index = idx;
1118                 osp->opd_group = 0;
1119                 idx = tgt - src;
1120         } else {
1121                 /* New OSC name fsname-OSTXXXX-osc-MDTXXXX */
1122                 if (strncmp(tgt, "-MDT", 4) != 0 &&
1123                     strncmp(tgt, "-OST", 4) != 0) {
1124                         CERROR("%s: invalid target name %s: rc = %d\n",
1125                                osp->opd_obd->obd_name,
1126                                lustre_cfg_string(cfg, 0), -EINVAL);
1127                         RETURN(-EINVAL);
1128                 }
1129
1130                 rc = target_name2index(tgt + 1, &idx, &mdt);
1131                 if (rc < 0 || rc & LDD_F_SV_ALL || *mdt != '\0') {
1132                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1133                                osp->opd_obd->obd_name, src, -EINVAL);
1134                         RETURN(-EINVAL);
1135                 }
1136
1137                 /* Get MDT index from the name and set it to opd_group,
1138                  * which will be used by OSP to connect with OST */
1139                 osp->opd_group = idx;
1140                 if (tgt - src <= 12) {
1141                         CERROR("%s: invalid mdt index from %s: rc =%d\n",
1142                                osp->opd_obd->obd_name,
1143                                lustre_cfg_string(cfg, 0), -EINVAL);
1144                         RETURN(-EINVAL);
1145                 }
1146
1147                 if (strncmp(tgt - 12, "-MDT", 4) == 0)
1148                         osp->opd_connect_mdt = 1;
1149
1150                 rc = target_name2index(tgt - 11, &idx, &mdt);
1151                 if (rc < 0 || rc & LDD_F_SV_ALL || mdt[0] != '-') {
1152                         CERROR("%s: invalid OST index in '%s': rc =%d\n",
1153                                osp->opd_obd->obd_name, src, -EINVAL);
1154                         RETURN(-EINVAL);
1155                 }
1156
1157                 osp->opd_index = idx;
1158                 idx = tgt - src - 12;
1159         }
1160         /* check the fsname length, and after this everything else will fit */
1161         if (idx > MTI_NAME_MAXLEN) {
1162                 CERROR("%s: fsname too long in '%s': rc = %d\n",
1163                        osp->opd_obd->obd_name, src, -EINVAL);
1164                 RETURN(-EINVAL);
1165         }
1166
1167         OBD_ALLOC(osdname, MAX_OBD_NAME);
1168         if (osdname == NULL)
1169                 RETURN(-ENOMEM);
1170
1171         memcpy(osdname, src, idx); /* copy just the fsname part */
1172         osdname[idx] = '\0';
1173
1174         mdt = strstr(mdt, "-MDT");
1175         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
1176                 strcat(osdname, "-MDT0000");
1177         else
1178                 strcat(osdname, mdt);
1179         strcat(osdname, "-osd");
1180         CDEBUG(D_HA, "%s: connect to %s (%s)\n", obd->obd_name, osdname, src);
1181
1182         osp_init_rpc_lock(osp);
1183
1184         osp->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
1185         osp->opd_dt_dev.dd_ops = &osp_dt_ops;
1186
1187         obd->obd_lu_dev = &osp->opd_dt_dev.dd_lu_dev;
1188
1189         rc = osp_connect_to_osd(env, osp, osdname);
1190         if (rc)
1191                 GOTO(out_fini, rc);
1192
1193         rc = ptlrpcd_addref();
1194         if (rc)
1195                 GOTO(out_disconnect, rc);
1196
1197         rc = client_obd_setup(obd, cfg);
1198         if (rc) {
1199                 CERROR("%s: can't setup obd: rc = %d\n", osp->opd_obd->obd_name,
1200                        rc);
1201                 GOTO(out_ref, rc);
1202         }
1203
1204         osp_tunables_init(osp);
1205
1206         rc = obd_fid_init(osp->opd_obd, NULL, osp->opd_connect_mdt ?
1207                           LUSTRE_SEQ_METADATA : LUSTRE_SEQ_DATA);
1208         if (rc) {
1209                 CERROR("%s: fid init error: rc = %d\n",
1210                        osp->opd_obd->obd_name, rc);
1211                 GOTO(out_proc, rc);
1212         }
1213
1214         if (!osp->opd_connect_mdt) {
1215                 /* Initialize last id from the storage - will be
1216                  * used in orphan cleanup. */
1217                 if (!osp->opd_storage->dd_rdonly) {
1218                         rc = osp_last_used_init(env, osp);
1219                         if (rc)
1220                                 GOTO(out_fid, rc);
1221                 }
1222
1223                 /* Initialize precreation thread, it handles new
1224                  * connections as well. */
1225                 rc = osp_init_precreate(osp);
1226                 if (rc)
1227                         GOTO(out_last_used, rc);
1228
1229                 /*
1230                  * Initialize synhronization mechanism taking
1231                  * care of propogating changes to OST in near
1232                  * transactional manner.
1233                  */
1234                 rc = osp_sync_init(env, osp);
1235                 if (rc < 0)
1236                         GOTO(out_precreat, rc);
1237         } else {
1238                 osp->opd_got_disconnected = 1;
1239                 rc = osp_update_init(osp);
1240                 if (rc != 0)
1241                         GOTO(out_fid, rc);
1242         }
1243
1244         rc = osp_init_statfs(osp);
1245         if (rc)
1246                 GOTO(out_precreat, rc);
1247
1248         ns_register_cancel(obd->obd_namespace, osp_cancel_weight);
1249
1250         /*
1251          * Initiate connect to OST
1252          */
1253         imp = obd->u.cli.cl_import;
1254
1255         rc = ptlrpc_init_import(imp);
1256         if (rc)
1257                 GOTO(out, rc);
1258         if (osdname)
1259                 OBD_FREE(osdname, MAX_OBD_NAME);
1260         RETURN(0);
1261
1262 out:
1263         if (!osp->opd_connect_mdt)
1264                 /* stop sync thread */
1265                 osp_sync_fini(osp);
1266 out_precreat:
1267         /* stop precreate thread */
1268         if (!osp->opd_connect_mdt)
1269                 osp_precreate_fini(osp);
1270         else
1271                 osp_update_fini(env, osp);
1272 out_last_used:
1273         if (!osp->opd_connect_mdt)
1274                 osp_last_used_fini(env, osp);
1275 out_fid:
1276         obd_fid_fini(osp->opd_obd);
1277 out_proc:
1278         osp_tunables_fini(osp);
1279         client_obd_cleanup(obd);
1280 out_ref:
1281         ptlrpcd_decref();
1282 out_disconnect:
1283         obd_disconnect(osp->opd_storage_exp);
1284 out_fini:
1285         if (osdname)
1286                 OBD_FREE(osdname, MAX_OBD_NAME);
1287         RETURN(rc);
1288 }
1289
1290 /**
1291  * Implementation of lu_device_type_operations::ldto_device_free
1292  *
1293  * Free the OSP device in memory.  No return value is needed for now,
1294  * so always return NULL to comply with the interface.
1295  *
1296  * \param[in] env       execution environment
1297  * \param[in] lu        lu_device of OSP
1298  *
1299  * \retval NULL         NULL unconditionally
1300  */
1301 static struct lu_device *osp_device_free(const struct lu_env *env,
1302                                          struct lu_device *lu)
1303 {
1304         struct osp_device *osp = lu2osp_dev(lu);
1305
1306         lu_site_print(env, lu->ld_site, &lu->ld_ref, D_ERROR,
1307                       lu_cdebug_printer);
1308         dt_device_fini(&osp->opd_dt_dev);
1309         OBD_FREE_PTR(osp);
1310
1311         return NULL;
1312 }
1313
1314 /**
1315  * Implementation of lu_device_type_operations::ldto_device_alloc
1316  *
1317  * This function allocates and initializes OSP device in memory according to
1318  * the config log.
1319  *
1320  * \param[in] env       execution environment
1321  * \param[in] type      device type of OSP
1322  * \param[in] lcfg      config log
1323  *
1324  * \retval pointer              the pointer of allocated OSP if succeed.
1325  * \retval ERR_PTR(errno)       ERR_PTR(errno) if failed.
1326  */
1327 static struct lu_device *osp_device_alloc(const struct lu_env *env,
1328                                           struct lu_device_type *type,
1329                                           struct lustre_cfg *lcfg)
1330 {
1331         struct osp_device *osp;
1332         struct lu_device  *ld;
1333
1334         OBD_ALLOC_PTR(osp);
1335         if (osp == NULL) {
1336                 ld = ERR_PTR(-ENOMEM);
1337         } else {
1338                 int rc;
1339
1340                 ld = osp2lu_dev(osp);
1341                 dt_device_init(&osp->opd_dt_dev, type);
1342                 rc = osp_init0(env, osp, type, lcfg);
1343                 if (rc != 0) {
1344                         osp_device_free(env, ld);
1345                         ld = ERR_PTR(rc);
1346                 }
1347         }
1348         return ld;
1349 }
1350
1351 /**
1352  * Implementation of lu_device_type_operations::ldto_device_fini
1353  *
1354  * This function cleans up the OSP device, i.e. release and free those
1355  * attached items in osp_device.
1356  *
1357  * \param[in] env       execution environment
1358  * \param[in] ld        lu_device of OSP
1359  *
1360  * \retval NULL                 NULL if cleanup succeeded.
1361  * \retval ERR_PTR(errno)       ERR_PTR(errno) if cleanup failed.
1362  */
1363 static struct lu_device *osp_device_fini(const struct lu_env *env,
1364                                          struct lu_device *ld)
1365 {
1366         struct osp_device *osp = lu2osp_dev(ld);
1367         int                rc;
1368
1369         ENTRY;
1370
1371         if (osp->opd_async_requests != NULL) {
1372                 osp_update_request_destroy(env, osp->opd_async_requests);
1373                 osp->opd_async_requests = NULL;
1374         }
1375
1376         if (osp->opd_storage_exp) {
1377                 /* wait for the commit callbacks to complete */
1378                 wait_event(osp->opd_sync_waitq,
1379                           atomic_read(&osp->opd_commits_registered) == 0);
1380                 obd_disconnect(osp->opd_storage_exp);
1381         }
1382
1383         LASSERT(osp->opd_obd);
1384
1385         rc = client_obd_cleanup(osp->opd_obd);
1386         if (rc != 0) {
1387                 ptlrpcd_decref();
1388                 RETURN(ERR_PTR(rc));
1389         }
1390
1391         osp_tunables_fini(osp);
1392
1393         ptlrpcd_decref();
1394
1395         RETURN(NULL);
1396 }
1397
1398 /**
1399  * Implementation of obd_ops::o_reconnect
1400  *
1401  * This function is empty and does not need to do anything for now.
1402  */
1403 static int osp_reconnect(const struct lu_env *env,
1404                          struct obd_export *exp, struct obd_device *obd,
1405                          struct obd_uuid *cluuid,
1406                          struct obd_connect_data *data,
1407                          void *localdata)
1408 {
1409         return 0;
1410 }
1411
1412 /*
1413  * Implementation of obd_ops::o_connect
1414  *
1415  * Connect OSP to the remote target (MDT or OST). Allocate the
1416  * export and return it to the LOD, which calls this function
1417  * for each OSP to connect it to the remote target. This function
1418  * is currently only called once per OSP.
1419  *
1420  * \param[in] env       execution environment
1421  * \param[out] exp      export connected to OSP
1422  * \param[in] obd       OSP device
1423  * \param[in] cluuid    OSP device client uuid
1424  * \param[in] data      connect_data to be used to connect to the remote
1425  *                      target
1426  * \param[in] localdata necessary for the API interface, but not used in
1427  *                      this function
1428  *
1429  * \retval 0            0 if the connection succeeded.
1430  * \retval negative     negative errno if the connection failed.
1431  */
1432 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
1433                            struct obd_device *obd, struct obd_uuid *cluuid,
1434                            struct obd_connect_data *data, void *localdata)
1435 {
1436         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
1437         int rc;
1438
1439         ENTRY;
1440
1441         LASSERT(data != NULL);
1442         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
1443
1444         rc = client_connect_import(env, &osp->opd_exp, obd, cluuid, data,
1445                                    localdata);
1446         if (rc)
1447                 RETURN(rc);
1448
1449         osp->opd_obd->u.cli.cl_seq->lcs_exp = class_export_get(osp->opd_exp);
1450         *exp = osp->opd_exp;
1451
1452         RETURN(rc);
1453 }
1454
1455 /**
1456  * Implementation of obd_ops::o_disconnect
1457  *
1458  * Disconnect the export for the OSP.  This is called by LOD to release the
1459  * OSP during cleanup (\see lod_del_device()). The OSP will be released after
1460  * the export is released.
1461  *
1462  * \param[in] exp       export to be disconnected.
1463  *
1464  * \retval 0            0 if disconnection succeed
1465  * \retval negative     negative errno if disconnection failed
1466  */
1467 static int osp_obd_disconnect(struct obd_export *exp)
1468 {
1469         struct obd_device *obd = exp->exp_obd;
1470         int                rc;
1471         ENTRY;
1472
1473         rc = class_disconnect(exp);
1474         if (rc) {
1475                 CERROR("%s: class disconnect error: rc = %d\n",
1476                        obd->obd_name, rc);
1477                 RETURN(rc);
1478         }
1479
1480         /* destroy the device */
1481         class_manual_cleanup(obd);
1482
1483         RETURN(rc);
1484 }
1485
1486 /**
1487  * Implementation of obd_ops::o_statfs
1488  *
1489  * Send a RPC to the remote target to get statfs status. This is only used
1490  * in lprocfs helpers by obd_statfs.
1491  *
1492  * \param[in] env       execution environment
1493  * \param[in] exp       connection state from this OSP to the parent (LOD)
1494  *                      device
1495  * \param[out] osfs     hold the statfs result
1496  * \param[in] unused    Not used in this function for now
1497  * \param[in] flags     flags to indicate how OSP will issue the RPC
1498  *
1499  * \retval 0            0 if statfs succeeded.
1500  * \retval negative     negative errno if statfs failed.
1501  */
1502 static int osp_obd_statfs(const struct lu_env *env, struct obd_export *exp,
1503                           struct obd_statfs *osfs, time64_t unused, __u32 flags)
1504 {
1505         struct obd_statfs       *msfs;
1506         struct ptlrpc_request   *req;
1507         struct obd_import       *imp = NULL, *imp0;
1508         int                      rc;
1509
1510         ENTRY;
1511
1512         /* Since the request might also come from lprocfs, so we need
1513          * sync this with client_disconnect_export Bug15684
1514          */
1515         with_imp_locked(exp->exp_obd, imp0, rc)
1516                 imp = class_import_get(imp0);
1517         if (rc)
1518                 RETURN(rc);
1519
1520         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
1521
1522         class_import_put(imp);
1523
1524         if (req == NULL)
1525                 RETURN(-ENOMEM);
1526
1527         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
1528         if (rc) {
1529                 ptlrpc_request_free(req);
1530                 RETURN(rc);
1531         }
1532         ptlrpc_request_set_replen(req);
1533         req->rq_request_portal = OST_CREATE_PORTAL;
1534         ptlrpc_at_set_req_timeout(req);
1535
1536         if (flags & OBD_STATFS_NODELAY) {
1537                 /* procfs requests not want stat in wait for avoid deadlock */
1538                 req->rq_no_resend = 1;
1539                 req->rq_no_delay = 1;
1540         }
1541
1542         rc = ptlrpc_queue_wait(req);
1543         if (rc)
1544                 GOTO(out, rc);
1545
1546         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1547         if (msfs == NULL)
1548                 GOTO(out, rc = -EPROTO);
1549
1550         *osfs = *msfs;
1551
1552         EXIT;
1553 out:
1554         ptlrpc_req_finished(req);
1555         return rc;
1556 }
1557
1558 /**
1559  * Implementation of obd_ops::o_import_event
1560  *
1561  * This function is called when some related import event happens. It will
1562  * mark the necessary flags according to the event and notify the necessary
1563  * threads (mainly precreate thread).
1564  *
1565  * \param[in] obd       OSP OBD device
1566  * \param[in] imp       import attached from OSP to remote (OST/MDT) service
1567  * \param[in] event     event related to remote service (IMP_EVENT_*)
1568  *
1569  * \retval 0            0 if the event handling succeeded.
1570  * \retval negative     negative errno if the event handling failed.
1571  */
1572 static int osp_import_event(struct obd_device *obd, struct obd_import *imp,
1573                             enum obd_import_event event)
1574 {
1575         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
1576         int rc;
1577
1578         switch (event) {
1579         case IMP_EVENT_DISCON:
1580                 d->opd_got_disconnected = 1;
1581                 d->opd_imp_connected = 0;
1582                 if (d->opd_connect_mdt)
1583                         break;
1584
1585                 if (d->opd_pre != NULL) {
1586                         osp_pre_update_status(d, -ENODEV);
1587                         wake_up(&d->opd_pre_waitq);
1588                 }
1589
1590                 CDEBUG(D_HA, "got disconnected\n");
1591                 break;
1592         case IMP_EVENT_INACTIVE:
1593                 d->opd_imp_active = 0;
1594                 d->opd_imp_connected = 0;
1595                 d->opd_obd->obd_inactive = 1;
1596                 if (d->opd_connect_mdt)
1597                         break;
1598                 if (d->opd_pre != NULL) {
1599                         /* Import is invalid, we can`t get stripes so
1600                          * wakeup waiters */
1601                         rc = imp->imp_deactive ? -ESHUTDOWN : -ENODEV;
1602                         osp_pre_update_status(d, rc);
1603                         wake_up(&d->opd_pre_waitq);
1604                 }
1605
1606                 CDEBUG(D_HA, "got inactive\n");
1607                 break;
1608         case IMP_EVENT_ACTIVE:
1609                 d->opd_imp_active = 1;
1610
1611                 d->opd_new_connection = 1;
1612                 d->opd_imp_connected = 1;
1613                 d->opd_imp_seen_connected = 1;
1614                 d->opd_obd->obd_inactive = 0;
1615                 wake_up(&d->opd_pre_waitq);
1616                 if (d->opd_connect_mdt)
1617                         break;
1618
1619                 osp_sync_check_for_work(d);
1620                 CDEBUG(D_HA, "got connected\n");
1621                 break;
1622         case IMP_EVENT_INVALIDATE:
1623                 if (d->opd_connect_mdt)
1624                         osp_invalidate_request(d);
1625
1626                 if (obd->obd_namespace == NULL)
1627                         break;
1628                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
1629                 break;
1630         case IMP_EVENT_OCD:
1631         case IMP_EVENT_DEACTIVATE:
1632         case IMP_EVENT_ACTIVATE:
1633                 break;
1634         default:
1635                 CERROR("%s: unsupported import event: %#x\n",
1636                        obd->obd_name, event);
1637         }
1638         return 0;
1639 }
1640
1641 /**
1642  * Implementation of obd_ops: o_iocontrol
1643  *
1644  * This function is the ioctl handler for OSP. Note: lctl will access the OSP
1645  * directly by ioctl, instead of through the MDS stack.
1646  *
1647  * param[in] cmd        ioctl command.
1648  * param[in] exp        export of this OSP.
1649  * param[in] len        data length of \a karg.
1650  * param[in] karg       input argument which is packed as
1651  *                      obd_ioctl_data
1652  * param[out] uarg      pointer to userspace buffer (must access by
1653  *                      copy_to_user()).
1654  *
1655  * \retval 0            0 if the ioctl handling succeeded.
1656  * \retval negative     negative errno if the ioctl handling failed.
1657  */
1658 static int osp_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1659                          void *karg, void __user *uarg)
1660 {
1661         struct obd_device       *obd = exp->exp_obd;
1662         struct osp_device       *d;
1663         struct obd_ioctl_data   *data = karg;
1664         int                      rc = 0;
1665
1666         ENTRY;
1667
1668         LASSERT(obd->obd_lu_dev);
1669         d = lu2osp_dev(obd->obd_lu_dev);
1670         LASSERT(d->opd_dt_dev.dd_ops == &osp_dt_ops);
1671
1672         if (!try_module_get(THIS_MODULE)) {
1673                 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1674                        module_name(THIS_MODULE));
1675                 return -EINVAL;
1676         }
1677
1678         switch (cmd) {
1679         case OBD_IOC_CLIENT_RECOVER:
1680                 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
1681                                            data->ioc_inlbuf1, 0);
1682                 if (rc > 0)
1683                         rc = 0;
1684                 break;
1685         case IOC_OSC_SET_ACTIVE:
1686                 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
1687                                               data->ioc_offset);
1688                 break;
1689         default:
1690                 CERROR("%s: unrecognized ioctl %#x by %s\n", obd->obd_name,
1691                        cmd, current->comm);
1692                 rc = -ENOTTY;
1693         }
1694         module_put(THIS_MODULE);
1695         return rc;
1696 }
1697
1698
1699 /**
1700  * Implementation of obd_ops::o_get_info
1701  *
1702  * Retrieve information by key. Retrieval starts from the top layer
1703  * (MDT) of the MDS stack and traverses the stack by calling the
1704  * obd_get_info() method of the next sub-layer.
1705  *
1706  * \param[in] env       execution environment
1707  * \param[in] exp       export of this OSP
1708  * \param[in] keylen    length of \a key
1709  * \param[in] key       the key
1710  * \param[out] vallen   length of \a val
1711  * \param[out] val      holds the value returned by the key
1712  *
1713  * \retval 0            0 if getting information succeeded.
1714  * \retval negative     negative errno if getting information failed.
1715  */
1716 static int osp_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1717                             __u32 keylen, void *key, __u32 *vallen, void *val)
1718 {
1719         int rc = -EINVAL;
1720
1721         if (KEY_IS(KEY_OSP_CONNECTED)) {
1722                 struct obd_device       *obd = exp->exp_obd;
1723                 struct osp_device       *osp;
1724
1725                 if (!obd->obd_set_up || obd->obd_stopping)
1726                         RETURN(-EAGAIN);
1727
1728                 osp = lu2osp_dev(obd->obd_lu_dev);
1729                 LASSERT(osp);
1730                 /*
1731                  * 1.8/2.0 behaviour is that OST being connected once at least
1732                  * is considered "healthy". and one "healthy" OST is enough to
1733                  * allow lustre clients to connect to MDS
1734                  */
1735                 RETURN(!osp->opd_imp_seen_connected);
1736         }
1737
1738         RETURN(rc);
1739 }
1740
1741 static int osp_obd_set_info_async(const struct lu_env *env,
1742                                   struct obd_export *exp,
1743                                   u32 keylen, void *key,
1744                                   u32 vallen, void *val,
1745                                   struct ptlrpc_request_set *set)
1746 {
1747         struct obd_device       *obd = exp->exp_obd;
1748         struct obd_import       *imp = obd->u.cli.cl_import;
1749         struct osp_device       *osp;
1750         struct ptlrpc_request   *req;
1751         char                    *tmp;
1752         int                      rc;
1753
1754         if (KEY_IS(KEY_SPTLRPC_CONF)) {
1755                 sptlrpc_conf_client_adapt(exp->exp_obd);
1756                 RETURN(0);
1757         }
1758
1759         LASSERT(set != NULL);
1760         if (!obd->obd_set_up || obd->obd_stopping)
1761                 RETURN(-EAGAIN);
1762         osp = lu2osp_dev(obd->obd_lu_dev);
1763
1764         req = ptlrpc_request_alloc(imp, &RQF_OBD_SET_INFO);
1765         if (req == NULL)
1766                 RETURN(-ENOMEM);
1767
1768         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
1769                              RCL_CLIENT, keylen);
1770         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
1771                              RCL_CLIENT, vallen);
1772         if (osp->opd_connect_mdt)
1773                 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SET_INFO);
1774         else
1775                 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SET_INFO);
1776         if (rc) {
1777                 ptlrpc_request_free(req);
1778                 RETURN(rc);
1779         }
1780
1781         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1782         memcpy(tmp, key, keylen);
1783         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
1784         memcpy(tmp, val, vallen);
1785
1786         ptlrpc_request_set_replen(req);
1787         ptlrpc_set_add_req(set, req);
1788         ptlrpc_check_set(NULL, set);
1789
1790         RETURN(0);
1791 }
1792
1793 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
1794 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
1795 static void osp_key_exit(const struct lu_context *ctx,
1796                          struct lu_context_key *key, void *data)
1797 {
1798         struct osp_thread_info *info = data;
1799
1800         info->osi_attr.la_valid = 0;
1801 }
1802
1803 struct lu_context_key osp_thread_key = {
1804         .lct_tags = LCT_MD_THREAD,
1805         .lct_init = osp_key_init,
1806         .lct_fini = osp_key_fini,
1807         .lct_exit = osp_key_exit
1808 };
1809
1810 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
1811 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
1812
1813 struct lu_context_key osp_txn_key = {
1814         .lct_tags = LCT_OSP_THREAD,
1815         .lct_init = osp_txn_key_init,
1816         .lct_fini = osp_txn_key_fini
1817 };
1818 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
1819
1820 static const struct lu_device_type_operations osp_device_type_ops = {
1821         .ldto_init           = osp_type_init,
1822         .ldto_fini           = osp_type_fini,
1823
1824         .ldto_start          = osp_type_start,
1825         .ldto_stop           = osp_type_stop,
1826
1827         .ldto_device_alloc   = osp_device_alloc,
1828         .ldto_device_free    = osp_device_free,
1829
1830         .ldto_device_fini    = osp_device_fini
1831 };
1832
1833 static struct lu_device_type osp_device_type = {
1834         .ldt_tags     = LU_DEVICE_DT,
1835         .ldt_name     = LUSTRE_OSP_NAME,
1836         .ldt_ops      = &osp_device_type_ops,
1837         .ldt_ctx_tags = LCT_MD_THREAD | LCT_DT_THREAD,
1838 };
1839
1840 static const struct obd_ops osp_obd_device_ops = {
1841         .o_owner        = THIS_MODULE,
1842         .o_add_conn     = client_import_add_conn,
1843         .o_del_conn     = client_import_del_conn,
1844         .o_reconnect    = osp_reconnect,
1845         .o_connect      = osp_obd_connect,
1846         .o_disconnect   = osp_obd_disconnect,
1847         .o_get_info     = osp_obd_get_info,
1848         .o_set_info_async = osp_obd_set_info_async,
1849         .o_import_event = osp_import_event,
1850         .o_iocontrol    = osp_iocontrol,
1851         .o_statfs       = osp_obd_statfs,
1852         .o_fid_init     = client_fid_init,
1853         .o_fid_fini     = client_fid_fini,
1854 };
1855
1856 /**
1857  * Initialize OSP module.
1858  *
1859  * Register device types OSP and Light Weight Proxy (LWP) (\see lwp_dev.c)
1860  * in obd_types (\see class_obd.c).  Initialize procfs for the
1861  * the OSP device.  Note: OSP was called OSC before Lustre 2.4,
1862  * so for compatibility it still uses the name "osc" in procfs.
1863  * This is called at module load time.
1864  *
1865  * \retval 0            0 if initialization succeeds.
1866  * \retval negative     negative errno if initialization failed.
1867  */
1868 static int __init osp_init(void)
1869 {
1870         struct obd_type *sym;
1871         int rc;
1872
1873         rc = lu_kmem_init(osp_caches);
1874         if (rc)
1875                 return rc;
1876
1877         rc = class_register_type(&osp_obd_device_ops, NULL, false,
1878                                  LUSTRE_OSP_NAME, &osp_device_type);
1879         if (rc != 0) {
1880                 lu_kmem_fini(osp_caches);
1881                 return rc;
1882         }
1883
1884         rc = class_register_type(&lwp_obd_device_ops, NULL, false,
1885                                  LUSTRE_LWP_NAME, &lwp_device_type);
1886         if (rc != 0) {
1887                 class_unregister_type(LUSTRE_OSP_NAME);
1888                 lu_kmem_fini(osp_caches);
1889                 return rc;
1890         }
1891
1892         /* create "osc" entry for compatibility purposes */
1893         sym = class_add_symlinks(LUSTRE_OSC_NAME, true);
1894         if (IS_ERR(sym)) {
1895                 rc = PTR_ERR(sym);
1896                 /* does real "osc" already exist ? */
1897                 if (rc == -EEXIST)
1898                         rc = 0;
1899         }
1900
1901         return rc;
1902 }
1903
1904 /**
1905  * Finalize OSP module.
1906  *
1907  * This callback is called when kernel unloads OSP module from memory, and
1908  * it will deregister OSP and LWP device type from obd_types (\see class_obd.c).
1909  */
1910 static void __exit osp_exit(void)
1911 {
1912         struct obd_type *sym = class_search_type(LUSTRE_OSC_NAME);
1913
1914         /* if this was never fully initialized by the osc layer
1915          * then we are responsible for freeing this obd_type
1916          */
1917         if (sym) {
1918                 /* final put if we manage this obd type */
1919                 if (sym->typ_sym_filter)
1920                         kobject_put(&sym->typ_kobj);
1921                 /* put reference taken by class_search_type */
1922                 kobject_put(&sym->typ_kobj);
1923         }
1924
1925         class_unregister_type(LUSTRE_LWP_NAME);
1926         class_unregister_type(LUSTRE_OSP_NAME);
1927         lu_kmem_fini(osp_caches);
1928 }
1929
1930 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1931 MODULE_DESCRIPTION("Lustre OSD Storage Proxy ("LUSTRE_OSP_NAME")");
1932 MODULE_VERSION(LUSTRE_VERSION_STRING);
1933 MODULE_LICENSE("GPL");
1934
1935 module_init(osp_init);
1936 module_exit(osp_exit);