Whamcloud - gitweb
LU-14487 modules: remove references to Sun Trademark.
[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 rc;
713
714         ENTRY;
715
716         rc = tgt_statfs_internal(env, &ofd->ofd_lut, osfs, max_age, NULL);
717         if (unlikely(rc))
718                 GOTO(out, rc);
719
720         /*
721          * at least try to account for cached pages.  its still racy and
722          * might be under-reporting if clients haven't announced their
723          * caches with brw recently
724          */
725
726         CDEBUG(D_SUPER | D_CACHE,
727                "blocks cached %llu granted %llu pending %llu free %llu avail %llu\n",
728                tgd->tgd_tot_dirty, tgd->tgd_tot_granted,
729                tgd->tgd_tot_pending,
730                osfs->os_bfree << tgd->tgd_blockbits,
731                osfs->os_bavail << tgd->tgd_blockbits);
732
733         osfs->os_bavail -= min_t(u64, osfs->os_bavail,
734                                  ((tgd->tgd_tot_dirty + tgd->tgd_tot_pending +
735                                    osfs->os_bsize - 1) >> tgd->tgd_blockbits));
736
737         /*
738          * The QoS code on the MDS does not care about space reserved for
739          * precreate, so take it out.
740          */
741         if (exp_connect_flags(exp) & OBD_CONNECT_MDS) {
742                 struct tg_export_data *ted;
743
744                 ted = &obd->obd_self_export->exp_target_data;
745                 osfs->os_granted = min_t(u64, osfs->os_bavail,
746                                           ted->ted_grant >> tgd->tgd_blockbits);
747                 osfs->os_bavail -= osfs->os_granted;
748         }
749
750         tgt_grant_sanity_check(obd, __func__);
751         CDEBUG(D_CACHE, "%llu blocks: %llu free, %llu avail; "
752                "%llu objects: %llu free; state %x\n",
753                osfs->os_blocks, osfs->os_bfree, osfs->os_bavail,
754                osfs->os_files, osfs->os_ffree, osfs->os_state);
755
756         if (OBD_FAIL_CHECK_VALUE(OBD_FAIL_OST_ENOINO,
757                                  ofd->ofd_lut.lut_lsd.lsd_osd_index)) {
758                 /* Reduce free inode count to zero, but keep "used" intact */
759                 osfs->os_files -= osfs->os_ffree;
760                 osfs->os_ffree -= osfs->os_ffree;
761         }
762
763         /* OS_STATFS_READONLY can be set by OSD already */
764         if (ofd->ofd_raid_degraded)
765                 osfs->os_state |= OS_STATFS_DEGRADED;
766
767         if (ofd->ofd_no_precreate)
768                 osfs->os_state |= OS_STATFS_NOPRECREATE;
769
770         if (obd->obd_self_export != exp && !exp_grant_param_supp(exp) &&
771             tgd->tgd_blockbits > COMPAT_BSIZE_SHIFT) {
772                 /*
773                  * clients which don't support OBD_CONNECT_GRANT_PARAM
774                  * should not see a block size > page size, otherwise
775                  * cl_lost_grant goes mad. Therefore, we emulate a 4KB (=2^12)
776                  * block size which is the biggest block size known to work
777                  * with all client's page size.
778                  */
779                 osfs->os_blocks <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
780                 osfs->os_bfree  <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
781                 osfs->os_bavail <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
782                 osfs->os_granted <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
783                 osfs->os_bsize    = 1 << COMPAT_BSIZE_SHIFT;
784         }
785
786         if (OBD_FAIL_CHECK_VALUE(OBD_FAIL_OST_ENOSPC,
787                                  ofd->ofd_lut.lut_lsd.lsd_osd_index)) {
788                 /* Reduce free blocks count near zero, but keep "used" intact */
789                 osfs->os_bavail -= osfs->os_bavail - 2;
790                 osfs->os_blocks -= osfs->os_bfree - 2;
791                 osfs->os_bfree -= osfs->os_bfree - 2;
792         }
793
794         EXIT;
795 out:
796         return rc;
797 }
798
799 /**
800  * Implementation of obd_ops::o_setattr.
801  *
802  * This function is only used by ECHO client when it is run on top of OFD,
803  * \see  ofd_setattr_hdl() for request handler function.
804
805  * \param[in] env       execution environment
806  * \param[in] exp       OBD export of OFD device
807  * \param[in] oa        setattr parameters
808  *
809  * \retval              0 if successful
810  * \retval              negative value on error
811  */
812 static int ofd_echo_setattr(const struct lu_env *env, struct obd_export *exp,
813                             struct obdo *oa)
814 {
815         struct ofd_thread_info *info;
816         struct ofd_device *ofd = ofd_exp(exp);
817         struct ldlm_namespace *ns = ofd->ofd_namespace;
818         struct ldlm_resource *res;
819         struct ofd_object *fo;
820         struct lu_fid *fid = &oa->o_oi.oi_fid;
821         ktime_t kstart = ktime_get();
822         int rc = 0;
823
824         ENTRY;
825
826         info = ofd_info_init(env, exp);
827
828         ost_fid_build_resid(fid, &info->fti_resid);
829
830         /*
831          * This would be very bad - accidentally truncating a file when
832          * changing the time or similar - bug 12203.
833          */
834         if (oa->o_valid & OBD_MD_FLSIZE) {
835                 static char mdsinum[48];
836
837                 if (oa->o_valid & OBD_MD_FLFID)
838                         snprintf(mdsinum, sizeof(mdsinum) - 1,
839                                  "of parent "DFID, oa->o_parent_seq,
840                                  oa->o_parent_oid, 0);
841                 else
842                         mdsinum[0] = '\0';
843
844                 CERROR("%s: setattr from %s trying to truncate object "DFID
845                        " %s\n", ofd_name(ofd), obd_export_nid2str(exp),
846                        PFID(fid), mdsinum);
847                 GOTO(out, rc = -EPERM);
848         }
849
850         fo = ofd_object_find_exists(env, ofd, fid);
851         if (IS_ERR(fo)) {
852                 CERROR("%s: can't find object "DFID"\n",
853                        ofd_name(ofd), PFID(fid));
854                 GOTO(out, rc = PTR_ERR(fo));
855         }
856
857         la_from_obdo(&info->fti_attr, oa, oa->o_valid);
858         info->fti_attr.la_valid &= ~LA_TYPE;
859
860         /* setting objects attributes (including owner/group) */
861         rc = ofd_attr_set(env, fo, &info->fti_attr, oa);
862         if (rc)
863                 GOTO(out_unlock, rc);
864
865         ofd_counter_incr(exp, LPROC_OFD_STATS_SETATTR, NULL,
866                          ktime_us_delta(ktime_get(), kstart));
867         EXIT;
868 out_unlock:
869         ofd_object_put(env, fo);
870 out:
871         if (rc == 0) {
872                 /*
873                  * we do not call this before to avoid lu_object_find() in
874                  *  ->lvbo_update() holding another reference on the object.
875                  * otherwise concurrent destroy can make the object unavailable
876                  * for 2nd lu_object_find() waiting for the first reference
877                  * to go... deadlock!
878                  */
879                 res = ldlm_resource_get(ns, NULL, &info->fti_resid,
880                                         LDLM_EXTENT, 0);
881                 if (!IS_ERR(res)) {
882                         ldlm_res_lvbo_update(res, NULL, 0);
883                         ldlm_resource_putref(res);
884                 }
885         }
886
887         return rc;
888 }
889
890 /**
891  * Destroy OFD object by its FID.
892  *
893  * Supplemental function to destroy object by FID, it is used by request
894  * handler and by ofd_echo_destroy() below to find object by FID, lock it
895  * and call ofd_destroy() finally.
896  *
897  * \param[in] env       execution environment
898  * \param[in] ofd       OFD device
899  * \param[in] fid       FID of object
900  * \param[in] orphan    set if object being destroyed is an orphan
901  *
902  * \retval              0 if successful
903  * \retval              negative value on error
904  */
905 int ofd_destroy_by_fid(const struct lu_env *env, struct ofd_device *ofd,
906                        const struct lu_fid *fid, int orphan)
907 {
908         struct ofd_thread_info *info = ofd_info(env);
909         struct lustre_handle lockh;
910         union ldlm_policy_data policy = { .l_extent = { 0, OBD_OBJECT_EOF } };
911         struct ofd_object *fo;
912         __u64 flags = LDLM_FL_AST_DISCARD_DATA;
913         __u64 rc = 0;
914
915         ENTRY;
916
917         fo = ofd_object_find_exists(env, ofd, fid);
918         if (IS_ERR(fo))
919                 RETURN(PTR_ERR(fo));
920
921         /*
922          * Tell the clients that the object is gone now and that they should
923          * throw away any cached pages.
924          */
925         ost_fid_build_resid(fid, &info->fti_resid);
926         rc = ldlm_cli_enqueue_local(env, ofd->ofd_namespace, &info->fti_resid,
927                                     LDLM_EXTENT, &policy, LCK_PW, &flags,
928                                     ldlm_blocking_ast, ldlm_completion_ast,
929                                     NULL, NULL, 0, LVB_T_NONE, NULL, &lockh);
930
931         /* We only care about the side-effects, just drop the lock. */
932         if (rc == ELDLM_OK)
933                 ldlm_lock_decref(&lockh, LCK_PW);
934
935         LASSERT(fo != NULL);
936
937         rc = ofd_destroy(env, fo, orphan);
938         EXIT;
939
940         ofd_object_put(env, fo);
941         RETURN(rc);
942 }
943
944 /**
945  * Implementation of obd_ops::o_destroy.
946  *
947  * This function is only used by ECHO client when it is run on top of OFD,
948  * \see  ofd_destroy_hdl() for request handler function.
949
950  * \param[in] env       execution environment
951  * \param[in] exp       OBD export of OFD device
952  * \param[in] oa        obdo structure with FID
953  *
954  * Note: this is OBD API method which is common API for server OBDs and
955  * client OBDs. Thus some parameters used in client OBDs may not be used
956  * on server OBDs and vice versa.
957  *
958  * \retval              0 if successful
959  * \retval              negative value on error
960  */
961 static int ofd_echo_destroy(const struct lu_env *env, struct obd_export *exp,
962                             struct obdo *oa)
963 {
964         struct ofd_device *ofd = ofd_exp(exp);
965         struct lu_fid *fid = &oa->o_oi.oi_fid;
966         int rc = 0;
967
968         ENTRY;
969
970         ofd_info_init(env, exp);
971
972         rc = ofd_validate_seq(exp, ostid_seq(&oa->o_oi));
973         if (rc != 0)
974                 RETURN(rc);
975
976         CDEBUG(D_HA, "%s: Destroy object "DFID"\n", ofd_name(ofd), PFID(fid));
977
978         rc = ofd_destroy_by_fid(env, ofd, fid, 0);
979         if (rc == -ENOENT) {
980                 CDEBUG(D_INODE, "%s: destroying non-existent object "DFID"\n",
981                        ofd_name(ofd), PFID(fid));
982                 GOTO(out, rc);
983         } else if (rc != 0) {
984                 CERROR("%s: error destroying object "DFID": %d\n",
985                        ofd_name(ofd), PFID(fid), rc);
986                 GOTO(out, rc);
987         }
988         EXIT;
989 out:
990         return rc;
991 }
992
993 /**
994  * Implementation of obd_ops::o_create.
995  *
996  * This function is only used by ECHO client when it is run on top of OFD
997  * and just creates an object.
998  * \see  ofd_create_hdl() for request handler function.
999  *
1000  * \param[in]  env      execution environment
1001  * \param[in]  exp      OBD export of OFD device
1002  * \param[in]  oa       obdo structure with FID sequence to use
1003  *
1004  * Note: this is OBD API method which is common API for server OBDs and
1005  * client OBDs. Thus some parameters used in client OBDs may not be used
1006  * on server OBDs and vice versa.
1007  *
1008  * \retval              0 if successful
1009  * \retval              negative value on error
1010  */
1011 static int ofd_echo_create(const struct lu_env *env, struct obd_export *exp,
1012                            struct obdo *oa)
1013 {
1014         struct ofd_device *ofd = ofd_exp(exp);
1015         u64 seq = ostid_seq(&oa->o_oi);
1016         struct ofd_seq *oseq;
1017         long granted;
1018         u64 next_id;
1019         s64 diff = 1;
1020         int rc = 0;
1021         int count;
1022
1023         ENTRY;
1024
1025         if (ofd->ofd_no_precreate)
1026                 return -EPERM;
1027
1028         ofd_info_init(env, exp);
1029
1030         LASSERT(seq == FID_SEQ_ECHO);
1031         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
1032
1033         CDEBUG(D_INFO, "ofd_create("DOSTID")\n", POSTID(&oa->o_oi));
1034
1035         down_read(&ofd->ofd_lastid_rwsem);
1036         /*
1037          * Currently, for safe, we do not distinguish which LAST_ID is broken,
1038          * we may do that in the future.
1039          * Return -ENOSPC until the LAST_ID rebuilt.
1040          */
1041         if (unlikely(ofd->ofd_lastid_rebuilding))
1042                 GOTO(out_sem, rc = -ENOSPC);
1043
1044         rc = ofd_validate_seq(exp, seq);
1045         if (rc != 0)
1046                 RETURN(rc);
1047
1048         oseq = ofd_seq_load(env, ofd, seq);
1049         if (IS_ERR(oseq)) {
1050                 CERROR("%s: Can't find FID Sequence %#llx: rc = %ld\n",
1051                        ofd_name(ofd), seq, PTR_ERR(oseq));
1052                 GOTO(out_sem, rc = -EINVAL);
1053         }
1054
1055         mutex_lock(&oseq->os_create_lock);
1056         granted = tgt_grant_create(env, ofd_obd(ofd)->obd_self_export, &diff);
1057         if (granted < 0) {
1058                 rc = granted;
1059                 granted = 0;
1060                 CDEBUG(D_HA,
1061                        "%s: failed to acquire grant space for precreate (%lld): rc = %d\n",
1062                        ofd_name(ofd), diff, rc);
1063                 diff = 0;
1064                 GOTO(out, rc);
1065         }
1066
1067         next_id = ofd_seq_last_oid(oseq) + 1;
1068         count = ofd_precreate_batch(ofd, (int)diff);
1069
1070         rc = ofd_precreate_objects(env, ofd, next_id, oseq, count, 0);
1071         if (rc < 0) {
1072                 CERROR("%s: unable to precreate: rc = %d\n",
1073                        ofd_name(ofd), rc);
1074         } else {
1075                 rc = ostid_set_id(&oa->o_oi, ofd_seq_last_oid(oseq));
1076                 if (rc) {
1077                         CERROR("%s: Bad %llu to set " DOSTID " : rc %d\n",
1078                                ofd_name(ofd),
1079                                (unsigned long long)ofd_seq_last_oid(oseq),
1080                                POSTID(&oa->o_oi), rc);
1081                 }
1082                 oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGROUP;
1083         }
1084
1085         tgt_grant_commit(ofd_obd(ofd)->obd_self_export, granted, rc);
1086 out:
1087         mutex_unlock(&oseq->os_create_lock);
1088         ofd_seq_put(env, oseq);
1089
1090 out_sem:
1091         up_read(&ofd->ofd_lastid_rwsem);
1092         RETURN(rc);
1093 }
1094
1095 /**
1096  * Implementation of obd_ops::o_getattr.
1097  *
1098  * This function is only used by ECHO client when it is run on top of OFD
1099  * and returns attributes of object.
1100  * \see  ofd_getattr_hdl() for request handler function.
1101  *
1102  * \param[in]     env   execution environment
1103  * \param[in]     exp   OBD export of OFD device
1104  * \param[in,out] oa    contains FID of object to get attributes from and
1105  *                      is used to return attributes back
1106  *
1107  * \retval              0 if successful
1108  * \retval              negative value on error
1109  */
1110 static int ofd_echo_getattr(const struct lu_env *env, struct obd_export *exp,
1111                             struct obdo *oa)
1112 {
1113         struct ofd_device *ofd = ofd_exp(exp);
1114         struct ofd_thread_info *info;
1115         struct lu_fid *fid = &oa->o_oi.oi_fid;
1116         struct ofd_object *fo;
1117         int rc = 0;
1118
1119         ENTRY;
1120
1121         info = ofd_info_init(env, exp);
1122
1123         fo = ofd_object_find_exists(env, ofd, fid);
1124         if (IS_ERR(fo))
1125                 GOTO(out, rc = PTR_ERR(fo));
1126
1127         LASSERT(fo != NULL);
1128         rc = ofd_attr_get(env, fo, &info->fti_attr);
1129         oa->o_valid = OBD_MD_FLID;
1130         if (rc == 0) {
1131                 __u64 curr_version;
1132
1133                 obdo_from_la(oa, &info->fti_attr,
1134                              OFD_VALID_FLAGS | LA_UID | LA_GID | LA_PROJID);
1135
1136                 /* Store object version in reply */
1137                 curr_version = dt_version_get(env, ofd_object_child(fo));
1138                 if ((__s64)curr_version != -EOPNOTSUPP) {
1139                         oa->o_valid |= OBD_MD_FLDATAVERSION;
1140                         oa->o_data_version = curr_version;
1141                 }
1142         }
1143
1144         ofd_object_put(env, fo);
1145 out:
1146         RETURN(rc);
1147 }
1148
1149 /**
1150  * Get object version for OBD_IOC_GET_OBJ_VERSION ioctl.
1151  *
1152  * This is supplemental function for ofd_iocontrol() to return object
1153  * version for lctl tool.
1154  *
1155  * \param[in]  env      execution environment
1156  * \param[in]  ofd      OFD device
1157  * \param[out] karg     ioctl data
1158  *
1159  * \retval              0 if successful
1160  * \retval              negative value on error
1161  */
1162 static int ofd_ioc_get_obj_version(const struct lu_env *env,
1163                                    struct ofd_device *ofd, void *karg)
1164 {
1165         struct obd_ioctl_data *data = karg;
1166         struct lu_fid fid;
1167         struct ofd_object *fo;
1168         dt_obj_version_t version;
1169         int rc = 0;
1170
1171         ENTRY;
1172
1173         if (!data->ioc_inlbuf2 || data->ioc_inllen2 != sizeof(version))
1174                 GOTO(out, rc = -EINVAL);
1175
1176         if (data->ioc_inlbuf1 && data->ioc_inllen1 == sizeof(fid)) {
1177                 fid = *(struct lu_fid *)data->ioc_inlbuf1;
1178         } else if (data->ioc_inlbuf3 &&
1179                    data->ioc_inllen3 == sizeof(__u64) &&
1180                    data->ioc_inlbuf4 &&
1181                    data->ioc_inllen4 == sizeof(__u64)) {
1182                 struct ost_id ostid = { };
1183
1184                 ostid_set_seq(&ostid, *(__u64 *)data->ioc_inlbuf4);
1185                 rc = ostid_set_id(&ostid, *(__u64 *)data->ioc_inlbuf3);
1186                 if (rc)
1187                         GOTO(out, rc);
1188                 rc = ostid_to_fid(&fid, &ostid,
1189                                   ofd->ofd_lut.lut_lsd.lsd_osd_index);
1190                 if (rc != 0)
1191                         GOTO(out, rc);
1192         } else {
1193                 GOTO(out, rc = -EINVAL);
1194         }
1195
1196         if (!fid_is_sane(&fid))
1197                 GOTO(out, rc = -EINVAL);
1198
1199         fo = ofd_object_find(env, ofd, &fid);
1200         if (IS_ERR(fo))
1201                 GOTO(out, rc = PTR_ERR(fo));
1202
1203         if (!ofd_object_exists(fo))
1204                 GOTO(out_fo, rc = -ENOENT);
1205
1206         if (lu_object_remote(&fo->ofo_obj.do_lu))
1207                 GOTO(out_fo, rc = -EREMOTE);
1208
1209         version = dt_version_get(env, ofd_object_child(fo));
1210         if (version == 0)
1211                 GOTO(out_fo, rc = -EIO);
1212
1213         *(dt_obj_version_t *)data->ioc_inlbuf2 = version;
1214
1215         EXIT;
1216 out_fo:
1217         ofd_object_put(env, fo);
1218 out:
1219         return rc;
1220 }
1221
1222 /**
1223  * Implementation of obd_ops::o_iocontrol.
1224  *
1225  * This is OFD ioctl handling function which is primary interface for
1226  * Lustre tools like lfs, lctl and lfsck.
1227  *
1228  * \param[in]     cmd   ioctl command
1229  * \param[in]     exp   OBD export of OFD
1230  * \param[in]     len   not used
1231  * \param[in,out] karg  buffer with data
1232  * \param[in]     uarg  not used
1233  *
1234  * \retval              0 if successful
1235  * \retval              negative value on error
1236  */
1237 static int ofd_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1238                          void *karg, void __user *uarg)
1239 {
1240         struct lu_env env;
1241         struct ofd_device *ofd = ofd_exp(exp);
1242         struct obd_device *obd = ofd_obd(ofd);
1243         int rc;
1244
1245         ENTRY;
1246
1247         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
1248         rc = lu_env_init(&env, LCT_DT_THREAD);
1249         if (rc)
1250                 RETURN(rc);
1251
1252         switch (cmd) {
1253         case OBD_IOC_ABORT_RECOVERY:
1254                 CERROR("%s: aborting recovery\n", obd->obd_name);
1255                 obd->obd_abort_recovery = 1;
1256                 target_stop_recovery_thread(obd);
1257                 break;
1258         case OBD_IOC_SYNC:
1259                 CDEBUG(D_RPCTRACE, "syncing ost %s\n", obd->obd_name);
1260                 rc = dt_sync(&env, ofd->ofd_osd);
1261                 break;
1262         case OBD_IOC_SET_READONLY:
1263                 rc = dt_sync(&env, ofd->ofd_osd);
1264                 if (rc == 0)
1265                         rc = dt_ro(&env, ofd->ofd_osd);
1266                 break;
1267         case OBD_IOC_START_LFSCK: {
1268                 struct obd_ioctl_data *data = karg;
1269                 struct lfsck_start_param lsp;
1270
1271                 if (unlikely(!data)) {
1272                         rc = -EINVAL;
1273                         break;
1274                 }
1275
1276                 lsp.lsp_start = (struct lfsck_start *)(data->ioc_inlbuf1);
1277                 lsp.lsp_index_valid = 0;
1278                 rc = lfsck_start(&env, ofd->ofd_osd, &lsp);
1279                 break;
1280         }
1281         case OBD_IOC_STOP_LFSCK: {
1282                 struct obd_ioctl_data *data = karg;
1283                 struct lfsck_stop      stop;
1284
1285                 stop.ls_status = LS_STOPPED;
1286                 /* Old lfsck utils may pass NULL @stop. */
1287                 if (!data->ioc_inlbuf1)
1288                         stop.ls_flags = 0;
1289                 else
1290                         stop.ls_flags =
1291                         ((struct lfsck_stop *)(data->ioc_inlbuf1))->ls_flags;
1292
1293                 rc = lfsck_stop(&env, ofd->ofd_osd, &stop);
1294                 break;
1295         }
1296         case OBD_IOC_GET_OBJ_VERSION:
1297                 rc = ofd_ioc_get_obj_version(&env, ofd, karg);
1298                 break;
1299         default:
1300                 CERROR("%s: not supported cmd = %#x\n", obd->obd_name, cmd);
1301                 rc = -ENOTTY;
1302         }
1303
1304         lu_env_fini(&env);
1305         RETURN(rc);
1306 }
1307
1308 /**
1309  * Implementation of obd_ops::o_precleanup.
1310  *
1311  * This function stops device activity before shutting it down. It is called
1312  * from a cleanup function upon forceful device cleanup. For OFD there are no
1313  * special actions, it just invokes target_recovery_cleanup().
1314  *
1315  * \param[in] obd       OBD device of OFD
1316  *
1317  * \retval              0
1318  */
1319 static int ofd_precleanup(struct obd_device *obd)
1320 {
1321         ENTRY;
1322         target_cleanup_recovery(obd);
1323         RETURN(0);
1324 }
1325
1326 /**
1327  * Implementation of obd_ops::o_health_check.
1328  *
1329  * This function checks the OFD device health - ability to respond on
1330  * incoming requests. There are two health_check methods:
1331  * - get statfs from the OSD. It checks just responsiveness of
1332  *   bottom device
1333  * - do write attempt on bottom device to check it is fully operational and
1334  *   is not stuck. This is expensive method and requires special configuration
1335  *   option --enable-health-write while building Lustre, it is turned off
1336  *   by default.
1337  *
1338  * \param[in] nul       not used
1339  * \param[in] obd       OBD device of OFD
1340  *
1341  * \retval              0 if successful
1342  * \retval              negative value in case of error
1343  */
1344 static int ofd_health_check(const struct lu_env *nul, struct obd_device *obd)
1345 {
1346         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
1347         struct ofd_thread_info *info;
1348         struct lu_env env;
1349 #ifdef USE_HEALTH_CHECK_WRITE
1350         struct thandle *th;
1351 #endif
1352         int rc = 0;
1353
1354         /* obd_proc_read_health pass NULL env, we need real one */
1355         rc = lu_env_init(&env, LCT_DT_THREAD);
1356         if (rc)
1357                 RETURN(rc);
1358
1359         info = ofd_info_init(&env, NULL);
1360         rc = dt_statfs(&env, ofd->ofd_osd, &info->fti_u.osfs);
1361         if (unlikely(rc))
1362                 GOTO(out, rc);
1363
1364         if (info->fti_u.osfs.os_state & OS_STATFS_READONLY)
1365                 GOTO(out, rc = -EROFS);
1366
1367 #ifdef USE_HEALTH_CHECK_WRITE
1368         OBD_ALLOC(info->fti_buf.lb_buf, PAGE_SIZE);
1369         if (!info->fti_buf.lb_buf)
1370                 GOTO(out, rc = -ENOMEM);
1371
1372         info->fti_buf.lb_len = PAGE_SIZE;
1373         info->fti_off = 0;
1374
1375         th = dt_trans_create(&env, ofd->ofd_osd);
1376         if (IS_ERR(th))
1377                 GOTO(out, rc = PTR_ERR(th));
1378
1379         rc = dt_declare_record_write(&env, ofd->ofd_health_check_file,
1380                                      &info->fti_buf, info->fti_off, th);
1381         if (rc == 0) {
1382                 th->th_sync = 1; /* sync IO is needed */
1383                 rc = dt_trans_start_local(&env, ofd->ofd_osd, th);
1384                 if (rc == 0)
1385                         rc = dt_record_write(&env, ofd->ofd_health_check_file,
1386                                              &info->fti_buf, &info->fti_off,
1387                                              th);
1388         }
1389         dt_trans_stop(&env, ofd->ofd_osd, th);
1390
1391         OBD_FREE(info->fti_buf.lb_buf, PAGE_SIZE);
1392
1393         CDEBUG(D_INFO, "write 1 page synchronously for checking io rc %d\n",
1394                rc);
1395 #endif
1396 out:
1397         lu_env_fini(&env);
1398         return !!rc;
1399 }
1400
1401 const struct obd_ops ofd_obd_ops = {
1402         .o_owner                = THIS_MODULE,
1403         .o_connect              = ofd_obd_connect,
1404         .o_reconnect            = ofd_obd_reconnect,
1405         .o_disconnect           = ofd_obd_disconnect,
1406         .o_create               = ofd_echo_create,
1407         .o_statfs               = ofd_statfs,
1408         .o_setattr              = ofd_echo_setattr,
1409         .o_preprw               = ofd_preprw,
1410         .o_commitrw             = ofd_commitrw,
1411         .o_destroy              = ofd_echo_destroy,
1412         .o_init_export          = ofd_init_export,
1413         .o_destroy_export       = ofd_destroy_export,
1414         .o_postrecov            = ofd_obd_postrecov,
1415         .o_getattr              = ofd_echo_getattr,
1416         .o_iocontrol            = ofd_iocontrol,
1417         .o_precleanup           = ofd_precleanup,
1418         .o_health_check         = ofd_health_check,
1419         .o_set_info_async       = ofd_set_info_async,
1420         .o_get_info             = ofd_get_info,
1421 };