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