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