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