Whamcloud - gitweb
1414050c338135d29b2cf9dced512dfa7db4a058
[fs/lustre-release.git] / lustre / ofd / ofd_obd.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) 2009, 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/ofd/ofd_obd.c
32  *
33  * This file contains OBD API methods for OBD Filter Device (OFD) which are
34  * used for export handling, configuration purposes and recovery.
35  * Several methods are used by ECHO client only since it still uses OBD API.
36  * Such methods have _echo_ prefix in name.
37  *
38  * Author: Andreas Dilger <andreas.dilger@intel.com>
39  * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
40  * Author: Mikhail Pershin <mike.pershin@intel.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_FILTER
44
45 #include "ofd_internal.h"
46 #include <obd_cksum.h>
47 #include <uapi/linux/lustre/lustre_ioctl.h>
48 #include <lustre_quota.h>
49 #include <lustre_lfsck.h>
50 #include <lustre_nodemap.h>
51
52 /**
53  * Initialize OFD per-export statistics.
54  *
55  * This function sets up procfs entries for various OFD export counters. These
56  * counters are for per-client statistics tracked on the server.
57  *
58  * \param[in] ofd        OFD device
59  * \param[in] exp        OBD export
60  * \param[in] client_nid NID of client
61  *
62  * \retval              0 if successful
63  * \retval              negative value on error
64  */
65 static int ofd_export_stats_init(struct ofd_device *ofd,
66                                  struct obd_export *exp,
67                                  lnet_nid_t *client_nid)
68 {
69         struct obd_device       *obd = ofd_obd(ofd);
70         struct nid_stat         *stats;
71         int                      rc;
72
73         ENTRY;
74
75         if (obd_uuid_equals(&exp->exp_client_uuid, &obd->obd_uuid))
76                 /* Self-export gets no proc entry */
77                 RETURN(0);
78
79         rc = lprocfs_exp_setup(exp, client_nid);
80         if (rc != 0)
81                 /* Mask error for already created /proc entries */
82                 RETURN(rc == -EALREADY ? 0 : rc);
83
84         stats = exp->exp_nid_stats;
85         stats->nid_stats = lprocfs_alloc_stats(LPROC_OFD_STATS_LAST,
86                                                LPROCFS_STATS_FLAG_NOPERCPU);
87         if (!stats->nid_stats)
88                 RETURN(-ENOMEM);
89
90         ofd_stats_counter_init(stats->nid_stats, 0);
91
92         rc = lprocfs_register_stats(stats->nid_proc, "stats", stats->nid_stats);
93         if (rc != 0) {
94                 lprocfs_free_stats(&stats->nid_stats);
95                 GOTO(out, rc);
96         }
97
98         rc = lprocfs_nid_ldlm_stats_init(stats);
99         if (rc != 0)
100                 GOTO(out, rc);
101
102 out:
103         RETURN(rc);
104 }
105
106 /**
107  * Match client and OST server connection feature flags.
108  *
109  * Compute the compatibility flags for a connection request based on
110  * features mutually supported by client and server.
111  *
112  * The obd_export::exp_connect_data.ocd_connect_flags field in \a exp
113  * must not be updated here, otherwise a partially initialized value may
114  * be exposed. After the connection request is successfully processed,
115  * the top-level tgt_connect() request handler atomically updates the export
116  * connect flags from the obd_connect_data::ocd_connect_flags field of the
117  * reply. \see tgt_connect().
118  *
119  * Before 2.7.50 clients will send a struct obd_connect_data_v1 rather than a
120  * full struct obd_connect_data. So care must be taken when accessing fields
121  * that are not present in struct obd_connect_data_v1. See LU-16.
122  *
123  * \param[in] env               execution environment
124  * \param[in] exp               the obd_export associated with this
125  *                              client/target pair
126  * \param[in] data              stores data for this connect request
127  * \param[in] new_connection    is this connection new or not
128  *
129  * \retval              0 if success
130  * \retval              -EPROTO client and server feature requirements are
131  *                      incompatible
132  * \retval              -EBADF  OST index in connect request doesn't match
133  *                      real OST index
134  */
135 static int ofd_parse_connect_data(const struct lu_env *env,
136                                   struct obd_export *exp,
137                                   struct obd_connect_data *data,
138                                   bool new_connection)
139 {
140         struct ofd_device *ofd = ofd_exp(exp);
141         struct filter_export_data *fed = &exp->exp_filter_data;
142
143         if (!data)
144                 RETURN(0);
145
146         CDEBUG(D_RPCTRACE,
147                "%s: cli %s/%p ocd_connect_flags: %#llx ocd_version: %x ocd_grant: %d ocd_index: %u ocd_group %u\n",
148                exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
149                data->ocd_connect_flags, data->ocd_version,
150                data->ocd_grant, data->ocd_index, data->ocd_group);
151
152         if (fed->fed_group != 0 && fed->fed_group != data->ocd_group) {
153                 CWARN("!!! This export (nid %s) used object group %d earlier; now it's trying to use group %d!  This could be a bug in the MDS. Please report to https://jira.whamcloud.com/\n",
154                       obd_export_nid2str(exp), fed->fed_group,
155                       data->ocd_group);
156                 RETURN(-EPROTO);
157         }
158         fed->fed_group = data->ocd_group;
159
160         data->ocd_connect_flags &= OST_CONNECT_SUPPORTED;
161
162         if (data->ocd_connect_flags & OBD_CONNECT_FLAGS2)
163                 data->ocd_connect_flags2 &= OST_CONNECT_SUPPORTED2;
164
165         /* Kindly make sure the SKIP_ORPHAN flag is from MDS. */
166         if (data->ocd_connect_flags & OBD_CONNECT_MDS)
167                 CDEBUG(D_HA, "%s: Received MDS connection for group %u\n",
168                        exp->exp_obd->obd_name, data->ocd_group);
169         else if (data->ocd_connect_flags & OBD_CONNECT_SKIP_ORPHAN)
170                 RETURN(-EPROTO);
171
172         /* Determine optimal brw size before calculating grant */
173         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_SIZE)) {
174                 data->ocd_brw_size = 65536;
175         } else if (OCD_HAS_FLAG(data, BRW_SIZE)) {
176                 if (data->ocd_brw_size > ofd->ofd_brw_size)
177                         data->ocd_brw_size = ofd->ofd_brw_size;
178                 if (data->ocd_brw_size == 0) {
179                         CERROR("%s: cli %s/%p ocd_connect_flags: %#llx ocd_version: %x ocd_grant: %d ocd_index: %u ocd_brw_size is unexpectedly zero, network data corruption? Refusing connection of this client\n",
180                                exp->exp_obd->obd_name,
181                                exp->exp_client_uuid.uuid,
182                                exp, data->ocd_connect_flags, data->ocd_version,
183                                data->ocd_grant, data->ocd_index);
184                         RETURN(-EPROTO);
185                 }
186         }
187
188         if (OCD_HAS_FLAG(data, GRANT_PARAM)) {
189                 struct dt_device_param *ddp = &ofd->ofd_lut.lut_dt_conf;
190
191                 /* client is reporting its page size, for future use */
192                 exp->exp_target_data.ted_pagebits = data->ocd_grant_blkbits;
193                 data->ocd_grant_blkbits  = ofd->ofd_lut.lut_tgd.tgd_blockbits;
194                 /*
195                  * ddp_inodespace may not be power-of-two value, eg. for ldiskfs
196                  * it's LDISKFS_DIR_REC_LEN(20) = 28.
197                  */
198                 data->ocd_grant_inobits = fls(ddp->ddp_inodespace - 1);
199                 /* ocd_grant_tax_kb is in 1K byte blocks */
200                 data->ocd_grant_tax_kb = ddp->ddp_extent_tax >> 10;
201                 data->ocd_grant_max_blks = ddp->ddp_max_extent_blks;
202         }
203
204         /*
205          * Save connect_data we have so far because tgt_grant_connect()
206          * uses it to calculate grant, and we want to save the client
207          * version before it is overwritten by LUSTRE_VERSION_CODE.
208          */
209         exp->exp_connect_data = *data;
210         if (OCD_HAS_FLAG(data, GRANT))
211                 tgt_grant_connect(env, exp, data, new_connection);
212
213         if (data->ocd_connect_flags & OBD_CONNECT_INDEX) {
214                 struct lr_server_data *lsd = &ofd->ofd_lut.lut_lsd;
215                 int                    index = lsd->lsd_osd_index;
216
217                 if (index != data->ocd_index) {
218                         LCONSOLE_ERROR_MSG(0x136,
219                                            "Connection from %s to index %u doesn't match actual OST index %u in last_rcvd file, bad configuration?\n",
220                                            obd_export_nid2str(exp), index,
221                                            data->ocd_index);
222                         RETURN(-EBADF);
223                 }
224                 if (!(lsd->lsd_feature_compat & OBD_COMPAT_OST)) {
225                         /* this will only happen on the first connect */
226                         lsd->lsd_feature_compat |= OBD_COMPAT_OST;
227                         /*
228                          * sync is not needed here as tgt_client_new will
229                          * set exp_need_sync flag
230                          */
231                         tgt_server_data_update(env, &ofd->ofd_lut, 0);
232                 }
233         }
234
235         if (data->ocd_connect_flags & OBD_CONNECT_CKSUM) {
236                 __u32 cksum_types = data->ocd_cksum_types;
237
238                 tgt_mask_cksum_types(&ofd->ofd_lut, &data->ocd_cksum_types);
239
240                 if (unlikely(data->ocd_cksum_types == 0)) {
241                         CERROR("%s: Connect with checksum support but no ocd_cksum_types is set\n",
242                                exp->exp_obd->obd_name);
243                         RETURN(-EPROTO);
244                 }
245
246                 CDEBUG(D_RPCTRACE,
247                        "%s: cli %s supports cksum type %x, return %x\n",
248                        exp->exp_obd->obd_name, obd_export_nid2str(exp),
249                        cksum_types, data->ocd_cksum_types);
250         } else {
251                 /*
252                  * This client does not support OBD_CONNECT_CKSUM.
253                  * Report failure to negotiate checksum at connect
254                  */
255                 CDEBUG(D_RPCTRACE,
256                        "%s: cli %s does not support OBD_CONNECT_CKSUM\n",
257                        exp->exp_obd->obd_name, obd_export_nid2str(exp));
258         }
259
260         if (data->ocd_connect_flags & OBD_CONNECT_MAXBYTES)
261                 data->ocd_maxbytes = ofd->ofd_lut.lut_dt_conf.ddp_maxbytes;
262
263         data->ocd_version = LUSTRE_VERSION_CODE;
264
265         if (OCD_HAS_FLAG(data, PINGLESS)) {
266                 if (ptlrpc_pinger_suppress_pings()) {
267                         spin_lock(&exp->exp_obd->obd_dev_lock);
268                         list_del_init(&exp->exp_obd_chain_timed);
269                         spin_unlock(&exp->exp_obd->obd_dev_lock);
270                 } else {
271                         data->ocd_connect_flags &= ~OBD_CONNECT_PINGLESS;
272                 }
273         }
274
275         if (!ofd->ofd_lut.lut_dt_conf.ddp_has_lseek_data_hole)
276                 data->ocd_connect_flags2 &= ~OBD_CONNECT2_LSEEK;
277
278         RETURN(0);
279 }
280
281 /**
282  * Re-initialize export upon client reconnection.
283  *
284  * This function parses connection data from reconnect and resets
285  * export statistics.
286  *
287  * \param[in] env       execution environment
288  * \param[in] exp       OBD export
289  * \param[in] obd       OFD device
290  * \param[in] cluuid    NID of client
291  * \param[in] data      connection data from request
292  * \param[in] localdata client NID
293  *
294  * \retval              0 if successful
295  * \retval              negative value on error
296  */
297 static int ofd_obd_reconnect(const struct lu_env *env, struct obd_export *exp,
298                              struct obd_device *obd, struct obd_uuid *cluuid,
299                              struct obd_connect_data *data,
300                              void *client_nid)
301 {
302         struct ofd_device *ofd;
303         int rc;
304
305         ENTRY;
306
307         if (!exp || !obd || !cluuid)
308                 RETURN(-EINVAL);
309
310         rc = nodemap_add_member(*(lnet_nid_t *)client_nid, exp);
311         if (rc != 0 && rc != -EEXIST)
312                 RETURN(rc);
313
314         ofd = ofd_dev(obd->obd_lu_dev);
315
316         rc = ofd_parse_connect_data(env, exp, data, false);
317         if (rc == 0)
318                 ofd_export_stats_init(ofd, exp, client_nid);
319         else
320                 nodemap_del_member(exp);
321
322         RETURN(rc);
323 }
324
325 /**
326  * Initialize new client connection.
327  *
328  * This function handles new connection to the OFD. The new export is
329  * created (in context of class_connect()) and persistent client data is
330  * initialized on storage.
331  *
332  * \param[in] env       execution environment
333  * \param[out] _exp     stores pointer to new export
334  * \param[in] obd       OFD device
335  * \param[in] cluuid    client UUID
336  * \param[in] data      connection data from request
337  * \param[in] localdata client NID
338  *
339  * \retval              0 if successful
340  * \retval              negative value on error
341  */
342 static int ofd_obd_connect(const struct lu_env *env, struct obd_export **_exp,
343                            struct obd_device *obd, struct obd_uuid *cluuid,
344                            struct obd_connect_data *data, void *localdata)
345 {
346         struct obd_export *exp;
347         struct ofd_device *ofd;
348         struct lustre_handle conn = { 0 };
349         int rc;
350
351         ENTRY;
352
353         if (!_exp || !obd || !cluuid)
354                 RETURN(-EINVAL);
355
356         ofd = ofd_dev(obd->obd_lu_dev);
357
358         rc = class_connect(&conn, obd, cluuid);
359         if (rc)
360                 RETURN(rc);
361
362         exp = class_conn2export(&conn);
363         LASSERT(exp != NULL);
364
365         if (localdata) {
366                 rc = nodemap_add_member(*(lnet_nid_t *)localdata, exp);
367                 if (rc != 0 && rc != -EEXIST)
368                         GOTO(out, rc);
369         } else {
370                 CDEBUG(D_HA,
371                        "%s: cannot find nodemap for client %s: nid is null\n",
372                        obd->obd_name, cluuid->uuid);
373         }
374
375         rc = ofd_parse_connect_data(env, exp, data, true);
376         if (rc)
377                 GOTO(out, rc);
378
379         if (obd->obd_replayable) {
380                 struct tg_export_data *ted = &exp->exp_target_data;
381
382                 memcpy(ted->ted_lcd->lcd_uuid, cluuid,
383                        sizeof(ted->ted_lcd->lcd_uuid));
384                 rc = tgt_client_new(env, exp);
385                 if (rc != 0)
386                         GOTO(out, rc);
387                 ofd_export_stats_init(ofd, exp, localdata);
388         }
389
390         CDEBUG(D_HA, "%s: get connection from MDS %d\n", obd->obd_name,
391                data ? data->ocd_group : -1);
392
393 out:
394         if (rc != 0) {
395                 class_disconnect(exp);
396                 nodemap_del_member(exp);
397                 *_exp = NULL;
398         } else {
399                 *_exp = exp;
400         }
401         RETURN(rc);
402 }
403
404 /**
405  * Disconnect a connected client.
406  *
407  * This function terminates the client connection. The client export is
408  * disconnected (cleaned up) and client data on persistent storage is removed.
409  *
410  * \param[in] exp       OBD export
411  *
412  * \retval              0 if successful
413  * \retval              negative value on error
414  */
415 int ofd_obd_disconnect(struct obd_export *exp)
416 {
417         struct ofd_device *ofd = ofd_exp(exp);
418         struct lu_env env;
419         int rc;
420
421         ENTRY;
422
423         LASSERT(exp);
424         class_export_get(exp);
425
426         if (!(exp->exp_flags & OBD_OPT_FORCE))
427                 tgt_grant_sanity_check(ofd_obd(ofd), __func__);
428
429         rc = server_disconnect_export(exp);
430
431         tgt_grant_discard(exp);
432
433         /* Do not erase record for recoverable client. */
434         if (exp->exp_obd->obd_replayable &&
435             (!exp->exp_obd->obd_fail || exp->exp_failed)) {
436                 rc = lu_env_init(&env, LCT_DT_THREAD);
437                 if (rc)
438                         GOTO(out, rc);
439
440                 tgt_client_del(&env, exp);
441                 lu_env_fini(&env);
442         }
443 out:
444         nodemap_del_member(exp);
445         class_export_put(exp);
446         RETURN(rc);
447 }
448
449 /**
450  * Implementation of obd_ops::o_init_export.
451  *
452  * This function is called from class_new_export() and initializes
453  * the OFD-specific data for new export.
454  *
455  * \param[in] exp       OBD export
456  *
457  * \retval              0 if successful
458  * \retval              negative value on error
459  */
460 static int ofd_init_export(struct obd_export *exp)
461 {
462         int rc;
463
464         atomic_set(&exp->exp_filter_data.fed_soft_sync_count, 0);
465         spin_lock(&exp->exp_lock);
466         exp->exp_connecting = 1;
467         spin_unlock(&exp->exp_lock);
468
469         /* self-export doesn't need client data and ldlm initialization */
470         if (unlikely(obd_uuid_equals(&exp->exp_obd->obd_uuid,
471                                      &exp->exp_client_uuid)))
472                 return 0;
473
474         rc = tgt_client_alloc(exp);
475         if (rc == 0)
476                 ldlm_init_export(exp);
477         if (rc)
478                 CERROR("%s: Can't initialize export: rc %d\n",
479                        exp->exp_obd->obd_name, rc);
480         return rc;
481 }
482
483 /**
484  * Implementation of obd_ops::o_destroy_export.
485  *
486  * This function is called from class_export_destroy() to cleanup
487  * the OFD-specific data for export being destroyed.
488  *
489  * \param[in] exp       OBD export
490  *
491  * \retval              0 if successful
492  * \retval              negative value on error
493  */
494 static int ofd_destroy_export(struct obd_export *exp)
495 {
496         struct ofd_device *ofd = ofd_exp(exp);
497
498         if (exp->exp_target_data.ted_pending)
499                 CERROR("%s: cli %s/%p has %lu pending on destroyed export\n",
500                        exp->exp_obd->obd_name, exp->exp_client_uuid.uuid,
501                        exp, exp->exp_target_data.ted_pending);
502
503         target_destroy_export(exp);
504
505         if (unlikely(obd_uuid_equals(&exp->exp_obd->obd_uuid,
506                                      &exp->exp_client_uuid)))
507                 return 0;
508
509         ldlm_destroy_export(exp);
510         tgt_client_free(exp);
511
512         /*
513          * discard grants once we're sure no more
514          * interaction with the client is possible
515          */
516         tgt_grant_discard(exp);
517
518         if (exp_connect_flags(exp) & OBD_CONNECT_GRANT)
519                 ofd->ofd_lut.lut_tgd.tgd_tot_granted_clients--;
520
521         if (!(exp->exp_flags & OBD_OPT_FORCE))
522                 tgt_grant_sanity_check(exp->exp_obd, __func__);
523
524         return 0;
525 }
526
527 /**
528  * Notify all devices in server stack about recovery completion.
529  *
530  * This function calls ldo_recovery_complete() for all lower devices in the
531  * server stack so they will be prepared for normal operations.
532  *
533  * \param[in] env       execution environment
534  * \param[in] ofd       OFD device
535  *
536  * \retval              0 if successful
537  * \retval              negative value on error
538  */
539 int ofd_postrecov(const struct lu_env *env, struct ofd_device *ofd)
540 {
541         struct lu_device *ldev = &ofd->ofd_dt_dev.dd_lu_dev;
542         int rc;
543
544         CDEBUG(D_HA, "%s: recovery is over\n", ofd_name(ofd));
545
546         if (!ofd->ofd_skip_lfsck && !ofd->ofd_osd->dd_rdonly) {
547                 struct lfsck_start_param lsp;
548
549                 lsp.lsp_start = NULL;
550                 lsp.lsp_index_valid = 0;
551                 rc = lfsck_start(env, ofd->ofd_osd, &lsp);
552                 if (rc != 0 && rc != -EALREADY)
553                         CWARN("%s: auto trigger paused LFSCK failed: rc = %d\n",
554                               ofd_name(ofd), rc);
555         }
556
557         return ldev->ld_ops->ldo_recovery_complete(env, ldev);
558 }
559
560 /**
561  * Implementation of obd_ops::o_postrecov.
562  *
563  * This function is called from target_finish_recovery() upon recovery
564  * completion.
565  *
566  * \param[in] obd       OBD device of OFD
567  *
568  * \retval              0 if successful
569  * \retval              negative value on error
570  */
571 static int ofd_obd_postrecov(struct obd_device *obd)
572 {
573         struct lu_env env;
574         struct lu_device *ldev = obd->obd_lu_dev;
575         int rc;
576
577         ENTRY;
578
579         rc = lu_env_init(&env, LCT_DT_THREAD);
580         if (rc)
581                 RETURN(rc);
582         ofd_info_init(&env, obd->obd_self_export);
583
584         rc = ofd_postrecov(&env, ofd_dev(ldev));
585
586         lu_env_fini(&env);
587         RETURN(rc);
588 }
589
590 /**
591  * Implementation of obd_ops::o_set_info_async.
592  *
593  * This function is not called from request handler, it is only used by
594  * class_notify_sptlrpc_conf() locally by direct obd_set_info_async() call.
595  * \see  ofd_set_info_hdl() for request handler function.
596  *
597  * \param[in] env       execution environment
598  * \param[in] exp       OBD export of OFD device
599  * \param[in] keylen    length of \a key
600  * \param[in] key       key name
601  * \param[in] vallen    length of \a val
602  * \param[in] val       the \a key value
603  * \param[in] set       not used in OFD
604  *
605  * \retval              0 if successful
606  * \retval              negative value on error
607  */
608 static int ofd_set_info_async(const struct lu_env *env, struct obd_export *exp,
609                               __u32 keylen, void *key, __u32 vallen, void *val,
610                               struct ptlrpc_request_set *set)
611 {
612         int rc = 0;
613
614         ENTRY;
615
616         if (!exp->exp_obd) {
617                 CDEBUG(D_IOCTL, "invalid export %p\n", exp);
618                 RETURN(-EINVAL);
619         }
620
621         if (KEY_IS(KEY_SPTLRPC_CONF)) {
622                 rc = tgt_adapt_sptlrpc_conf(class_exp2tgt(exp));
623         } else {
624                 CERROR("%s: Unsupported key %s\n",
625                        exp->exp_obd->obd_name, (char *)key);
626                 rc = -EOPNOTSUPP;
627         }
628         RETURN(rc);
629 }
630
631 /**
632  * Implementation of obd_ops::o_get_info.
633  *
634  * This function is not called from request handler, it is only used by
635  * direct call from nrs_orr_range_fill_physical() in ptlrpc, see LU-3239.
636  *
637  * \see  ofd_get_info_hdl() for request handler function.
638  *
639  * \param[in]  env      execution environment
640  * \param[in]  exp      OBD export of OFD device
641  * \param[in]  keylen   length of \a key
642  * \param[in]  key      key name
643  * \param[out] vallen   length of key value
644  * \param[out] val      the key value to return
645  *
646  * \retval              0 if successful
647  * \retval              negative value on error
648  */
649 static int ofd_get_info(const struct lu_env *env, struct obd_export *exp,
650                         __u32 keylen, void *key, __u32 *vallen, void *val)
651 {
652         struct ofd_thread_info *info;
653         struct ofd_device *ofd;
654         struct ll_fiemap_info_key *fm_key = key;
655         struct fiemap *fiemap = val;
656         int rc = 0;
657
658         ENTRY;
659
660         if (!exp->exp_obd) {
661                 CDEBUG(D_IOCTL, "invalid client export %p\n", exp);
662                 RETURN(-EINVAL);
663         }
664
665         ofd = ofd_exp(exp);
666
667         if (KEY_IS(KEY_FIEMAP)) {
668                 info = ofd_info_init(env, exp);
669
670                 rc = ostid_to_fid(&info->fti_fid, &fm_key->lfik_oa.o_oi,
671                                   ofd->ofd_lut.lut_lsd.lsd_osd_index);
672                 if (rc != 0)
673                         RETURN(rc);
674
675                 rc = ofd_fiemap_get(env, ofd, &info->fti_fid, fiemap);
676         } else {
677                 CERROR("%s: not supported key %s\n",
678                        ofd_name(ofd), (char *)key);
679                 rc = -EOPNOTSUPP;
680         }
681
682         RETURN(rc);
683 }
684
685 /**
686  * Implementation of obd_ops::o_statfs.
687  *
688  * This function returns information about a storage file system.
689  * It is called from several places by using the OBD API as well as
690  * by direct call, e.g. from request handler.
691  *
692  * \see  ofd_statfs_hdl() for request handler function.
693  *
694  * Report also the state of the OST to the caller in osfs->os_state
695  * (OS_STATFS_READONLY, OS_STATFS_DEGRADED).
696  *
697  * \param[in]  env      execution environment
698  * \param[in]  exp      OBD export of OFD device
699  * \param[out] osfs     statistic data to return
700  * \param[in]  max_age  maximum age for cached data
701  * \param[in]  flags    not used in OFD
702  *
703  * \retval              0 if successful
704  * \retval              negative value on error
705  */
706 int ofd_statfs(const struct lu_env *env,  struct obd_export *exp,
707                struct obd_statfs *osfs, time64_t max_age, __u32 flags)
708 {
709         struct obd_device *obd = class_exp2obd(exp);
710         struct ofd_device *ofd = ofd_exp(exp);
711         struct tg_grants_data *tgd = &ofd->ofd_lut.lut_tgd;
712         int current_blockbits;
713         int rc;
714
715         ENTRY;
716
717         rc = tgt_statfs_internal(env, &ofd->ofd_lut, osfs, max_age, NULL);
718         if (unlikely(rc))
719                 GOTO(out, rc);
720
721         /* tgd_blockbit is recordsize bits set during mkfs.
722          * This once set does not change. However, 'zfs set'
723          * can be used to change the OST blocksize. Instead
724          * of using cached value of 'tgd_blockbit' always
725          * calculate the blocksize bits which may have
726          * changed.
727          */
728         current_blockbits = fls64(osfs->os_bsize) - 1;
729
730         /*
731          * at least try to account for cached pages.  its still racy and
732          * might be under-reporting if clients haven't announced their
733          * caches with brw recently
734          */
735         CDEBUG(D_SUPER | D_CACHE,
736                "blocks cached %llu granted %llu pending %llu free %llu avail %llu\n",
737                tgd->tgd_tot_dirty, tgd->tgd_tot_granted,
738                tgd->tgd_tot_pending,
739                osfs->os_bfree << current_blockbits,
740                osfs->os_bavail << current_blockbits);
741
742         osfs->os_bavail -= min_t(u64, osfs->os_bavail,
743                                  ((tgd->tgd_tot_dirty + tgd->tgd_tot_pending +
744                                    osfs->os_bsize - 1) >> current_blockbits));
745
746         /*
747          * The QoS code on the MDS does not care about space reserved for
748          * precreate, so take it out.
749          */
750         if (exp_connect_flags(exp) & OBD_CONNECT_MDS) {
751                 struct tg_export_data *ted;
752
753                 ted = &obd->obd_self_export->exp_target_data;
754                 osfs->os_granted = min_t(u64, osfs->os_bavail,
755                                           ted->ted_grant >> current_blockbits);
756                 osfs->os_bavail -= osfs->os_granted;
757         }
758
759         tgt_grant_sanity_check(obd, __func__);
760         CDEBUG(D_CACHE, "%llu blocks: %llu free, %llu avail; "
761                "%llu objects: %llu free; state %x\n",
762                osfs->os_blocks, osfs->os_bfree, osfs->os_bavail,
763                osfs->os_files, osfs->os_ffree, osfs->os_state);
764
765         if (OBD_FAIL_CHECK_VALUE(OBD_FAIL_OST_ENOINO,
766                                  ofd->ofd_lut.lut_lsd.lsd_osd_index)) {
767                 /* Reduce free inode count to zero, but keep "used" intact */
768                 osfs->os_files -= osfs->os_ffree;
769                 osfs->os_ffree -= osfs->os_ffree;
770         }
771
772         /* OS_STATFS_READONLY can be set by OSD already */
773         if (ofd->ofd_raid_degraded)
774                 osfs->os_state |= OS_STATFS_DEGRADED;
775
776         if (ofd->ofd_no_precreate)
777                 osfs->os_state |= OS_STATFS_NOPRECREATE;
778
779         if (obd->obd_self_export != exp && !exp_grant_param_supp(exp) &&
780             current_blockbits > COMPAT_BSIZE_SHIFT) {
781                 /*
782                  * clients which don't support OBD_CONNECT_GRANT_PARAM
783                  * should not see a block size > page size, otherwise
784                  * cl_lost_grant goes mad. Therefore, we emulate a 4KB (=2^12)
785                  * block size which is the biggest block size known to work
786                  * with all client's page size.
787                  */
788                 osfs->os_blocks <<= current_blockbits - COMPAT_BSIZE_SHIFT;
789                 osfs->os_bfree  <<= current_blockbits - COMPAT_BSIZE_SHIFT;
790                 osfs->os_bavail <<= current_blockbits - COMPAT_BSIZE_SHIFT;
791                 osfs->os_granted <<= current_blockbits - COMPAT_BSIZE_SHIFT;
792                 osfs->os_bsize    = 1 << COMPAT_BSIZE_SHIFT;
793         }
794
795         if (OBD_FAIL_CHECK_VALUE(OBD_FAIL_OST_ENOSPC,
796                                  ofd->ofd_lut.lut_lsd.lsd_osd_index)) {
797                 /* Reduce free blocks count near zero, but keep "used" intact */
798                 osfs->os_bavail -= osfs->os_bavail - 2;
799                 osfs->os_blocks -= osfs->os_bfree - 2;
800                 osfs->os_bfree -= osfs->os_bfree - 2;
801         }
802
803         EXIT;
804 out:
805         return rc;
806 }
807
808 /**
809  * Implementation of obd_ops::o_setattr.
810  *
811  * This function is only used by ECHO client when it is run on top of OFD,
812  * \see  ofd_setattr_hdl() for request handler function.
813
814  * \param[in] env       execution environment
815  * \param[in] exp       OBD export of OFD device
816  * \param[in] oa        setattr parameters
817  *
818  * \retval              0 if successful
819  * \retval              negative value on error
820  */
821 static int ofd_echo_setattr(const struct lu_env *env, struct obd_export *exp,
822                             struct obdo *oa)
823 {
824         struct ofd_thread_info *info;
825         struct ofd_device *ofd = ofd_exp(exp);
826         struct ldlm_namespace *ns = ofd->ofd_namespace;
827         struct ldlm_resource *res;
828         struct ofd_object *fo;
829         struct lu_fid *fid = &oa->o_oi.oi_fid;
830         ktime_t kstart = ktime_get();
831         int rc = 0;
832
833         ENTRY;
834
835         info = ofd_info_init(env, exp);
836
837         ost_fid_build_resid(fid, &info->fti_resid);
838
839         /*
840          * This would be very bad - accidentally truncating a file when
841          * changing the time or similar - bug 12203.
842          */
843         if (oa->o_valid & OBD_MD_FLSIZE) {
844                 static char mdsinum[48];
845
846                 if (oa->o_valid & OBD_MD_FLFID)
847                         snprintf(mdsinum, sizeof(mdsinum) - 1,
848                                  "of parent "DFID, oa->o_parent_seq,
849                                  oa->o_parent_oid, 0);
850                 else
851                         mdsinum[0] = '\0';
852
853                 CERROR("%s: setattr from %s trying to truncate object "DFID
854                        " %s\n", ofd_name(ofd), obd_export_nid2str(exp),
855                        PFID(fid), mdsinum);
856                 GOTO(out, rc = -EPERM);
857         }
858
859         fo = ofd_object_find_exists(env, ofd, fid);
860         if (IS_ERR(fo)) {
861                 CERROR("%s: can't find object "DFID"\n",
862                        ofd_name(ofd), PFID(fid));
863                 GOTO(out, rc = PTR_ERR(fo));
864         }
865
866         la_from_obdo(&info->fti_attr, oa, oa->o_valid);
867         info->fti_attr.la_valid &= ~LA_TYPE;
868
869         /* setting objects attributes (including owner/group) */
870         rc = ofd_attr_set(env, fo, &info->fti_attr, oa);
871         if (rc)
872                 GOTO(out_unlock, rc);
873
874         ofd_counter_incr(exp, LPROC_OFD_STATS_SETATTR, NULL,
875                          ktime_us_delta(ktime_get(), kstart));
876         EXIT;
877 out_unlock:
878         ofd_object_put(env, fo);
879 out:
880         if (rc == 0) {
881                 /*
882                  * we do not call this before to avoid lu_object_find() in
883                  *  ->lvbo_update() holding another reference on the object.
884                  * otherwise concurrent destroy can make the object unavailable
885                  * for 2nd lu_object_find() waiting for the first reference
886                  * to go... deadlock!
887                  */
888                 res = ldlm_resource_get(ns, &info->fti_resid, LDLM_EXTENT, 0);
889                 if (!IS_ERR(res)) {
890                         ldlm_res_lvbo_update(res, NULL, 0);
891                         ldlm_resource_putref(res);
892                 }
893         }
894
895         return rc;
896 }
897
898 /**
899  * Destroy OFD object by its FID.
900  *
901  * Supplemental function to destroy object by FID, it is used by request
902  * handler and by ofd_echo_destroy() below to find object by FID, lock it
903  * and call ofd_destroy() finally.
904  *
905  * \param[in] env       execution environment
906  * \param[in] ofd       OFD device
907  * \param[in] fid       FID of object
908  * \param[in] orphan    set if object being destroyed is an orphan
909  *
910  * \retval              0 if successful
911  * \retval              negative value on error
912  */
913 int ofd_destroy_by_fid(const struct lu_env *env, struct ofd_device *ofd,
914                        const struct lu_fid *fid, int orphan)
915 {
916         struct ofd_thread_info *info = ofd_info(env);
917         struct lustre_handle lockh;
918         union ldlm_policy_data policy = { .l_extent = { 0, OBD_OBJECT_EOF } };
919         struct ofd_object *fo;
920         __u64 flags = LDLM_FL_AST_DISCARD_DATA;
921         __u64 rc = 0;
922
923         ENTRY;
924
925         fo = ofd_object_find_exists(env, ofd, fid);
926         if (IS_ERR(fo))
927                 RETURN(PTR_ERR(fo));
928
929         /*
930          * Tell the clients that the object is gone now and that they should
931          * throw away any cached pages.
932          */
933         ost_fid_build_resid(fid, &info->fti_resid);
934         rc = ldlm_cli_enqueue_local(env, ofd->ofd_namespace, &info->fti_resid,
935                                     LDLM_EXTENT, &policy, LCK_PW, &flags,
936                                     ldlm_blocking_ast, ldlm_completion_ast,
937                                     NULL, NULL, 0, LVB_T_NONE, NULL, &lockh);
938
939         /* We only care about the side-effects, just drop the lock. */
940         if (rc == ELDLM_OK)
941                 ldlm_lock_decref(&lockh, LCK_PW);
942
943         LASSERT(fo != NULL);
944
945         rc = ofd_destroy(env, fo, orphan);
946         EXIT;
947
948         ofd_object_put(env, fo);
949         RETURN(rc);
950 }
951
952 /**
953  * Implementation of obd_ops::o_destroy.
954  *
955  * This function is only used by ECHO client when it is run on top of OFD,
956  * \see  ofd_destroy_hdl() for request handler function.
957
958  * \param[in] env       execution environment
959  * \param[in] exp       OBD export of OFD device
960  * \param[in] oa        obdo structure with FID
961  *
962  * Note: this is OBD API method which is common API for server OBDs and
963  * client OBDs. Thus some parameters used in client OBDs may not be used
964  * on server OBDs and vice versa.
965  *
966  * \retval              0 if successful
967  * \retval              negative value on error
968  */
969 static int ofd_echo_destroy(const struct lu_env *env, struct obd_export *exp,
970                             struct obdo *oa)
971 {
972         struct ofd_device *ofd = ofd_exp(exp);
973         struct lu_fid *fid = &oa->o_oi.oi_fid;
974         int rc = 0;
975
976         ENTRY;
977
978         ofd_info_init(env, exp);
979
980         rc = ofd_validate_seq(exp, ostid_seq(&oa->o_oi));
981         if (rc != 0)
982                 RETURN(rc);
983
984         CDEBUG(D_HA, "%s: Destroy object "DFID"\n", ofd_name(ofd), PFID(fid));
985
986         rc = ofd_destroy_by_fid(env, ofd, fid, 0);
987         if (rc == -ENOENT) {
988                 CDEBUG(D_INODE, "%s: destroying non-existent object "DFID"\n",
989                        ofd_name(ofd), PFID(fid));
990                 GOTO(out, rc);
991         } else if (rc != 0) {
992                 CERROR("%s: error destroying object "DFID": %d\n",
993                        ofd_name(ofd), PFID(fid), rc);
994                 GOTO(out, rc);
995         }
996         EXIT;
997 out:
998         return rc;
999 }
1000
1001 /**
1002  * Implementation of obd_ops::o_create.
1003  *
1004  * This function is only used by ECHO client when it is run on top of OFD
1005  * and just creates an object.
1006  * \see  ofd_create_hdl() for request handler function.
1007  *
1008  * \param[in]  env      execution environment
1009  * \param[in]  exp      OBD export of OFD device
1010  * \param[in]  oa       obdo structure with FID sequence to use
1011  *
1012  * Note: this is OBD API method which is common API for server OBDs and
1013  * client OBDs. Thus some parameters used in client OBDs may not be used
1014  * on server OBDs and vice versa.
1015  *
1016  * \retval              0 if successful
1017  * \retval              negative value on error
1018  */
1019 static int ofd_echo_create(const struct lu_env *env, struct obd_export *exp,
1020                            struct obdo *oa)
1021 {
1022         struct ofd_device *ofd = ofd_exp(exp);
1023         u64 seq = ostid_seq(&oa->o_oi);
1024         struct ofd_seq *oseq;
1025         long granted;
1026         u64 next_id;
1027         s64 diff = 1;
1028         int rc = 0;
1029         int count;
1030
1031         ENTRY;
1032
1033         if (ofd->ofd_no_precreate)
1034                 return -EPERM;
1035
1036         ofd_info_init(env, exp);
1037
1038         LASSERT(seq == FID_SEQ_ECHO);
1039         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
1040
1041         CDEBUG(D_INFO, "ofd_create("DOSTID")\n", POSTID(&oa->o_oi));
1042
1043         down_read(&ofd->ofd_lastid_rwsem);
1044         /*
1045          * Currently, for safe, we do not distinguish which LAST_ID is broken,
1046          * we may do that in the future.
1047          * Return -ENOSPC until the LAST_ID rebuilt.
1048          */
1049         if (unlikely(ofd->ofd_lastid_rebuilding))
1050                 GOTO(out_sem, rc = -ENOSPC);
1051
1052         rc = ofd_validate_seq(exp, seq);
1053         if (rc != 0)
1054                 RETURN(rc);
1055
1056         oseq = ofd_seq_load(env, ofd, seq);
1057         if (IS_ERR(oseq)) {
1058                 CERROR("%s: Can't find FID Sequence %#llx: rc = %ld\n",
1059                        ofd_name(ofd), seq, PTR_ERR(oseq));
1060                 GOTO(out_sem, rc = -EINVAL);
1061         }
1062
1063         mutex_lock(&oseq->os_create_lock);
1064         granted = tgt_grant_create(env, ofd_obd(ofd)->obd_self_export, &diff);
1065         if (granted < 0) {
1066                 rc = granted;
1067                 granted = 0;
1068                 CDEBUG(D_HA,
1069                        "%s: failed to acquire grant space for precreate (%lld): rc = %d\n",
1070                        ofd_name(ofd), diff, rc);
1071                 diff = 0;
1072                 GOTO(out, rc);
1073         }
1074
1075         next_id = ofd_seq_last_oid(oseq) + 1;
1076         count = ofd_precreate_batch(ofd, (int)diff);
1077
1078         rc = ofd_precreate_objects(env, ofd, next_id, oseq, count, 0);
1079         if (rc < 0) {
1080                 CERROR("%s: unable to precreate: rc = %d\n",
1081                        ofd_name(ofd), rc);
1082         } else {
1083                 rc = ostid_set_id(&oa->o_oi, ofd_seq_last_oid(oseq));
1084                 if (rc) {
1085                         CERROR("%s: Bad %llu to set " DOSTID " : rc %d\n",
1086                                ofd_name(ofd),
1087                                (unsigned long long)ofd_seq_last_oid(oseq),
1088                                POSTID(&oa->o_oi), rc);
1089                 }
1090                 oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGROUP;
1091         }
1092
1093         tgt_grant_commit(ofd_obd(ofd)->obd_self_export, granted, rc);
1094 out:
1095         mutex_unlock(&oseq->os_create_lock);
1096         ofd_seq_put(env, oseq);
1097
1098 out_sem:
1099         up_read(&ofd->ofd_lastid_rwsem);
1100         RETURN(rc);
1101 }
1102
1103 /**
1104  * Implementation of obd_ops::o_getattr.
1105  *
1106  * This function is only used by ECHO client when it is run on top of OFD
1107  * and returns attributes of object.
1108  * \see  ofd_getattr_hdl() for request handler function.
1109  *
1110  * \param[in]     env   execution environment
1111  * \param[in]     exp   OBD export of OFD device
1112  * \param[in,out] oa    contains FID of object to get attributes from and
1113  *                      is used to return attributes back
1114  *
1115  * \retval              0 if successful
1116  * \retval              negative value on error
1117  */
1118 static int ofd_echo_getattr(const struct lu_env *env, struct obd_export *exp,
1119                             struct obdo *oa)
1120 {
1121         struct ofd_device *ofd = ofd_exp(exp);
1122         struct ofd_thread_info *info;
1123         struct lu_fid *fid = &oa->o_oi.oi_fid;
1124         struct ofd_object *fo;
1125         int rc = 0;
1126
1127         ENTRY;
1128
1129         info = ofd_info_init(env, exp);
1130
1131         fo = ofd_object_find_exists(env, ofd, fid);
1132         if (IS_ERR(fo))
1133                 GOTO(out, rc = PTR_ERR(fo));
1134
1135         LASSERT(fo != NULL);
1136         rc = ofd_attr_get(env, fo, &info->fti_attr);
1137         oa->o_valid = OBD_MD_FLID;
1138         if (rc == 0) {
1139                 __u64 curr_version;
1140
1141                 obdo_from_la(oa, &info->fti_attr,
1142                              OFD_VALID_FLAGS | LA_UID | LA_GID | LA_PROJID);
1143
1144                 /* Store object version in reply */
1145                 curr_version = dt_version_get(env, ofd_object_child(fo));
1146                 if ((__s64)curr_version != -EOPNOTSUPP) {
1147                         oa->o_valid |= OBD_MD_FLDATAVERSION;
1148                         oa->o_data_version = curr_version;
1149                 }
1150         }
1151
1152         ofd_object_put(env, fo);
1153 out:
1154         RETURN(rc);
1155 }
1156
1157 /**
1158  * Get object version for OBD_IOC_GET_OBJ_VERSION ioctl.
1159  *
1160  * This is supplemental function for ofd_iocontrol() to return object
1161  * version for lctl tool.
1162  *
1163  * \param[in]  env      execution environment
1164  * \param[in]  ofd      OFD device
1165  * \param[out] karg     ioctl data
1166  *
1167  * \retval              0 if successful
1168  * \retval              negative value on error
1169  */
1170 static int ofd_ioc_get_obj_version(const struct lu_env *env,
1171                                    struct ofd_device *ofd, void *karg)
1172 {
1173         struct obd_ioctl_data *data = karg;
1174         struct lu_fid fid;
1175         struct ofd_object *fo;
1176         dt_obj_version_t version;
1177         int rc = 0;
1178
1179         ENTRY;
1180
1181         if (!data->ioc_inlbuf2 || data->ioc_inllen2 != sizeof(version))
1182                 GOTO(out, rc = -EINVAL);
1183
1184         if (data->ioc_inlbuf1 && data->ioc_inllen1 == sizeof(fid)) {
1185                 fid = *(struct lu_fid *)data->ioc_inlbuf1;
1186         } else if (data->ioc_inlbuf3 &&
1187                    data->ioc_inllen3 == sizeof(__u64) &&
1188                    data->ioc_inlbuf4 &&
1189                    data->ioc_inllen4 == sizeof(__u64)) {
1190                 struct ost_id ostid = { };
1191
1192                 ostid_set_seq(&ostid, *(__u64 *)data->ioc_inlbuf4);
1193                 rc = ostid_set_id(&ostid, *(__u64 *)data->ioc_inlbuf3);
1194                 if (rc)
1195                         GOTO(out, rc);
1196                 rc = ostid_to_fid(&fid, &ostid,
1197                                   ofd->ofd_lut.lut_lsd.lsd_osd_index);
1198                 if (rc != 0)
1199                         GOTO(out, rc);
1200         } else {
1201                 GOTO(out, rc = -EINVAL);
1202         }
1203
1204         if (!fid_is_sane(&fid))
1205                 GOTO(out, rc = -EINVAL);
1206
1207         fo = ofd_object_find(env, ofd, &fid);
1208         if (IS_ERR(fo))
1209                 GOTO(out, rc = PTR_ERR(fo));
1210
1211         if (!ofd_object_exists(fo))
1212                 GOTO(out_fo, rc = -ENOENT);
1213
1214         if (lu_object_remote(&fo->ofo_obj.do_lu))
1215                 GOTO(out_fo, rc = -EREMOTE);
1216
1217         version = dt_version_get(env, ofd_object_child(fo));
1218         if (version == 0)
1219                 GOTO(out_fo, rc = -EIO);
1220
1221         *(dt_obj_version_t *)data->ioc_inlbuf2 = version;
1222
1223         EXIT;
1224 out_fo:
1225         ofd_object_put(env, fo);
1226 out:
1227         return rc;
1228 }
1229
1230 /**
1231  * Implementation of obd_ops::o_iocontrol.
1232  *
1233  * This is OFD ioctl handling function which is primary interface for
1234  * Lustre tools like lfs, lctl and lfsck.
1235  *
1236  * \param[in]     cmd   ioctl command
1237  * \param[in]     exp   OBD export of OFD
1238  * \param[in]     len   not used
1239  * \param[in,out] karg  buffer with data
1240  * \param[in]     uarg  not used
1241  *
1242  * \retval              0 if successful
1243  * \retval              negative value on error
1244  */
1245 static int ofd_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1246                          void *karg, void __user *uarg)
1247 {
1248         struct lu_env env;
1249         struct ofd_device *ofd = ofd_exp(exp);
1250         struct obd_device *obd = ofd_obd(ofd);
1251         int rc;
1252
1253         ENTRY;
1254
1255         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
1256         rc = lu_env_init(&env, LCT_DT_THREAD);
1257         if (rc)
1258                 RETURN(rc);
1259
1260         switch (cmd) {
1261         case OBD_IOC_ABORT_RECOVERY:
1262                 CERROR("%s: aborting recovery\n", obd->obd_name);
1263                 obd->obd_abort_recovery = 1;
1264                 target_stop_recovery_thread(obd);
1265                 break;
1266         case OBD_IOC_SYNC:
1267                 CDEBUG(D_RPCTRACE, "syncing ost %s\n", obd->obd_name);
1268                 rc = dt_sync(&env, ofd->ofd_osd);
1269                 break;
1270         case OBD_IOC_SET_READONLY:
1271                 rc = dt_sync(&env, ofd->ofd_osd);
1272                 if (rc == 0)
1273                         rc = dt_ro(&env, ofd->ofd_osd);
1274                 break;
1275         case OBD_IOC_START_LFSCK: {
1276                 struct obd_ioctl_data *data = karg;
1277                 struct lfsck_start_param lsp;
1278
1279                 if (unlikely(!data)) {
1280                         rc = -EINVAL;
1281                         break;
1282                 }
1283
1284                 lsp.lsp_start = (struct lfsck_start *)(data->ioc_inlbuf1);
1285                 lsp.lsp_index_valid = 0;
1286                 rc = lfsck_start(&env, ofd->ofd_osd, &lsp);
1287                 break;
1288         }
1289         case OBD_IOC_STOP_LFSCK: {
1290                 struct obd_ioctl_data *data = karg;
1291                 struct lfsck_stop      stop;
1292
1293                 stop.ls_status = LS_STOPPED;
1294                 /* Old lfsck utils may pass NULL @stop. */
1295                 if (!data->ioc_inlbuf1)
1296                         stop.ls_flags = 0;
1297                 else
1298                         stop.ls_flags =
1299                         ((struct lfsck_stop *)(data->ioc_inlbuf1))->ls_flags;
1300
1301                 rc = lfsck_stop(&env, ofd->ofd_osd, &stop);
1302                 break;
1303         }
1304         case OBD_IOC_GET_OBJ_VERSION:
1305                 rc = ofd_ioc_get_obj_version(&env, ofd, karg);
1306                 break;
1307         default:
1308                 CERROR("%s: not supported cmd = %#x\n", obd->obd_name, cmd);
1309                 rc = -ENOTTY;
1310         }
1311
1312         lu_env_fini(&env);
1313         RETURN(rc);
1314 }
1315
1316 /**
1317  * Implementation of obd_ops::o_precleanup.
1318  *
1319  * This function stops device activity before shutting it down. It is called
1320  * from a cleanup function upon forceful device cleanup. For OFD there are no
1321  * special actions, it just invokes target_recovery_cleanup().
1322  *
1323  * \param[in] obd       OBD device of OFD
1324  *
1325  * \retval              0
1326  */
1327 static int ofd_precleanup(struct obd_device *obd)
1328 {
1329         ENTRY;
1330         target_cleanup_recovery(obd);
1331         RETURN(0);
1332 }
1333
1334 /**
1335  * Implementation of obd_ops::o_health_check.
1336  *
1337  * This function checks the OFD device health - ability to respond on
1338  * incoming requests. There are two health_check methods:
1339  * - get statfs from the OSD. It checks just responsiveness of
1340  *   bottom device
1341  * - do write attempt on bottom device to check it is fully operational and
1342  *   is not stuck. This is expensive method and requires special configuration
1343  *   option --enable-health-write while building Lustre, it is turned off
1344  *   by default.
1345  *
1346  * \param[in] nul       not used
1347  * \param[in] obd       OBD device of OFD
1348  *
1349  * \retval              0 if successful
1350  * \retval              negative value in case of error
1351  */
1352 static int ofd_health_check(const struct lu_env *nul, struct obd_device *obd)
1353 {
1354         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
1355         struct ofd_thread_info *info;
1356         struct lu_env env;
1357 #ifdef USE_HEALTH_CHECK_WRITE
1358         struct thandle *th;
1359 #endif
1360         int rc = 0;
1361
1362         /* obd_proc_read_health pass NULL env, we need real one */
1363         rc = lu_env_init(&env, LCT_DT_THREAD);
1364         if (rc)
1365                 RETURN(rc);
1366
1367         info = ofd_info_init(&env, NULL);
1368         rc = dt_statfs(&env, ofd->ofd_osd, &info->fti_u.osfs);
1369         if (unlikely(rc))
1370                 GOTO(out, rc);
1371
1372         if (info->fti_u.osfs.os_state & OS_STATFS_READONLY)
1373                 GOTO(out, rc = -EROFS);
1374
1375 #ifdef USE_HEALTH_CHECK_WRITE
1376         OBD_ALLOC(info->fti_buf.lb_buf, PAGE_SIZE);
1377         if (!info->fti_buf.lb_buf)
1378                 GOTO(out, rc = -ENOMEM);
1379
1380         info->fti_buf.lb_len = PAGE_SIZE;
1381         info->fti_off = 0;
1382
1383         th = dt_trans_create(&env, ofd->ofd_osd);
1384         if (IS_ERR(th))
1385                 GOTO(out, rc = PTR_ERR(th));
1386
1387         rc = dt_declare_record_write(&env, ofd->ofd_health_check_file,
1388                                      &info->fti_buf, info->fti_off, th);
1389         if (rc == 0) {
1390                 th->th_sync = 1; /* sync IO is needed */
1391                 rc = dt_trans_start_local(&env, ofd->ofd_osd, th);
1392                 if (rc == 0)
1393                         rc = dt_record_write(&env, ofd->ofd_health_check_file,
1394                                              &info->fti_buf, &info->fti_off,
1395                                              th);
1396         }
1397         dt_trans_stop(&env, ofd->ofd_osd, th);
1398
1399         OBD_FREE(info->fti_buf.lb_buf, PAGE_SIZE);
1400
1401         CDEBUG(D_INFO, "write 1 page synchronously for checking io rc %d\n",
1402                rc);
1403 #endif
1404 out:
1405         lu_env_fini(&env);
1406         return !!rc;
1407 }
1408
1409 const struct obd_ops ofd_obd_ops = {
1410         .o_owner                = THIS_MODULE,
1411         .o_connect              = ofd_obd_connect,
1412         .o_reconnect            = ofd_obd_reconnect,
1413         .o_disconnect           = ofd_obd_disconnect,
1414         .o_create               = ofd_echo_create,
1415         .o_statfs               = ofd_statfs,
1416         .o_setattr              = ofd_echo_setattr,
1417         .o_preprw               = ofd_preprw,
1418         .o_commitrw             = ofd_commitrw,
1419         .o_destroy              = ofd_echo_destroy,
1420         .o_init_export          = ofd_init_export,
1421         .o_destroy_export       = ofd_destroy_export,
1422         .o_postrecov            = ofd_obd_postrecov,
1423         .o_getattr              = ofd_echo_getattr,
1424         .o_iocontrol            = ofd_iocontrol,
1425         .o_precleanup           = ofd_precleanup,
1426         .o_health_check         = ofd_health_check,
1427         .o_set_info_async       = ofd_set_info_async,
1428         .o_get_info             = ofd_get_info,
1429 };