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