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