Whamcloud - gitweb
a9ab53c371ae86d73468719ecb76a742141c139a
[fs/lustre-release.git] / lustre / osp / osp_precreate.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) 2007, 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/osp/osp_precreate.c
33  *
34  * Lustre OST Proxy Device
35  *
36  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
37  * Author: Mikhail Pershin <mike.pershin@intel.com>
38  * Author: Di Wang <di.wang@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <linux/kthread.h>
44
45 #include <lustre_obdo.h>
46
47 #include "osp_internal.h"
48
49 /*
50  * there are two specific states to take care about:
51  *
52  * = import is disconnected =
53  *
54  * = import is inactive =
55  *   in this case osp_declare_create() returns an error
56  *
57  */
58
59 /**
60  * Check whether statfs data is expired
61  *
62  * OSP device caches statfs data for the target, the function checks
63  * whether the data is expired or not.
64  *
65  * \param[in] d         OSP device
66  *
67  * \retval              0 - not expired, 1 - expired
68  */
69 static inline int osp_statfs_need_update(struct osp_device *d)
70 {
71         return !ktime_before(ktime_get(), d->opd_statfs_fresh_till);
72 }
73
74 /*
75  * OSP tries to maintain pool of available objects so that calls to create
76  * objects don't block most of time
77  *
78  * each time OSP gets connected to OST, we should start from precreation cleanup
79  */
80 static inline bool osp_precreate_running(struct osp_device *d)
81 {
82         return !!(d->opd_pre_thread.t_flags & SVC_RUNNING);
83 }
84
85 static inline bool osp_precreate_stopped(struct osp_device *d)
86 {
87         return !!(d->opd_pre_thread.t_flags & SVC_STOPPED);
88 }
89
90 static void osp_statfs_timer_cb(cfs_timer_cb_arg_t data)
91 {
92         struct osp_device *d = cfs_from_timer(d, data, opd_statfs_timer);
93
94         LASSERT(d);
95         if (osp_precreate_running(d))
96                 wake_up(&d->opd_pre_waitq);
97 }
98
99 static void osp_pre_update_msfs(struct osp_device *d, struct obd_statfs *msfs);
100
101 /*
102  * The function updates current precreation status if broken, and
103  * updates that cached statfs state if functional, then wakes up waiters.
104  * We don't clear opd_pre_status directly here, but rather leave this
105  * to osp_pre_update_msfs() to do if everything is OK so that we don't
106  * have a race to clear opd_pre_status and then set it to -ENOSPC again.
107  *
108  * \param[in] d         OSP device
109  * \param[in] msfs      statfs data
110  * \param[in] rc        new precreate status for device \a d
111  */
112 static void osp_pre_update_status_msfs(struct osp_device *d,
113                                        struct obd_statfs *msfs, int rc)
114 {
115         if (rc)
116                 d->opd_pre_status = rc;
117         else
118                 osp_pre_update_msfs(d, msfs);
119
120         wake_up(&d->opd_pre_user_waitq);
121 }
122
123 /* Pass in the old statfs data in case the limits have changed */
124 void osp_pre_update_status(struct osp_device *d, int rc)
125 {
126         osp_pre_update_status_msfs(d, &d->opd_statfs, rc);
127 }
128
129
130 /**
131  * RPC interpret callback for OST_STATFS RPC
132  *
133  * An interpretation callback called by ptlrpc for OST_STATFS RPC when it is
134  * replied by the target. It's used to maintain statfs cache for the target.
135  * The function fills data from the reply if successful and schedules another
136  * update.
137  *
138  * \param[in] env       LU environment provided by the caller
139  * \param[in] req       RPC replied
140  * \param[in] aa        callback data
141  * \param[in] rc        RPC result
142  *
143  * \retval 0            on success
144  * \retval negative     negated errno on error
145  */
146 static int osp_statfs_interpret(const struct lu_env *env,
147                                 struct ptlrpc_request *req, void *args, int rc)
148 {
149         union ptlrpc_async_args *aa = args;
150         struct obd_import *imp = req->rq_import;
151         struct obd_statfs *msfs;
152         struct osp_device *d;
153         u64 maxage_ns;
154
155         ENTRY;
156
157         aa = ptlrpc_req_async_args(aa, req);
158         d = aa->pointer_arg[0];
159         LASSERT(d);
160
161         if (rc != 0)
162                 GOTO(out, rc);
163
164         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
165         if (msfs == NULL)
166                 GOTO(out, rc = -EPROTO);
167
168         if (d->opd_pre)
169                 osp_pre_update_status_msfs(d, msfs, 0);
170         else
171                 d->opd_statfs = *msfs;
172
173         /* schedule next update */
174         maxage_ns = d->opd_statfs_maxage * NSEC_PER_SEC;
175         d->opd_statfs_fresh_till = ktime_add_ns(ktime_get(), maxage_ns);
176         mod_timer(&d->opd_statfs_timer,
177                   jiffies + cfs_time_seconds(d->opd_statfs_maxage));
178         d->opd_statfs_update_in_progress = 0;
179
180         CDEBUG(D_CACHE, "updated statfs %p\n", d);
181
182         RETURN(0);
183 out:
184         /* couldn't update statfs, try again with a small delay */
185         d->opd_statfs_fresh_till = ktime_add_ns(ktime_get(), 10 * NSEC_PER_SEC);
186         d->opd_statfs_update_in_progress = 0;
187         if (d->opd_pre != NULL && osp_precreate_running(d))
188                 wake_up(&d->opd_pre_waitq);
189
190         if (req->rq_import_generation == imp->imp_generation)
191                 CDEBUG(D_CACHE, "%s: couldn't update statfs: rc = %d\n",
192                        d->opd_obd->obd_name, rc);
193         RETURN(rc);
194 }
195
196 /**
197  * Send OST_STATFS RPC
198  *
199  * Sends OST_STATFS RPC to refresh cached statfs data for the target.
200  * Also disables scheduled updates as times OSP may need to refresh
201  * statfs data before expiration. The function doesn't block, instead
202  * an interpretation callback osp_statfs_interpret() is used.
203  *
204  * \param[in] d         OSP device
205  */
206 static int osp_statfs_update(const struct lu_env *env, struct osp_device *d)
207 {
208         u64 expire = obd_timeout * 1000 * NSEC_PER_SEC;
209         struct ptlrpc_request   *req;
210         struct obd_import       *imp;
211         union ptlrpc_async_args *aa;
212         int rc;
213
214         ENTRY;
215
216         CDEBUG(D_CACHE, "going to update statfs\n");
217
218         imp = d->opd_obd->u.cli.cl_import;
219         LASSERT(imp);
220
221         req = ptlrpc_request_alloc(imp,
222                            d->opd_pre ? &RQF_OST_STATFS : &RQF_MDS_STATFS);
223         if (req == NULL)
224                 RETURN(-ENOMEM);
225
226         rc = ptlrpc_request_pack(req,
227                          d->opd_pre ? LUSTRE_OST_VERSION : LUSTRE_MDS_VERSION,
228                          d->opd_pre ? OST_STATFS : MDS_STATFS);
229         if (rc) {
230                 ptlrpc_request_free(req);
231                 RETURN(rc);
232         }
233         ptlrpc_request_set_replen(req);
234         if (d->opd_pre)
235                 req->rq_request_portal = OST_CREATE_PORTAL;
236         ptlrpc_at_set_req_timeout(req);
237
238         req->rq_interpret_reply = osp_statfs_interpret;
239         aa = ptlrpc_req_async_args(aa, req);
240         aa->pointer_arg[0] = d;
241
242         /*
243          * no updates till reply
244          */
245         del_timer(&d->opd_statfs_timer);
246         d->opd_statfs_fresh_till = ktime_add_ns(ktime_get(), expire);
247         d->opd_statfs_update_in_progress = 1;
248
249         ptlrpcd_add_req(req);
250
251         /* we still want to sync changes if no new changes are coming */
252         if (ktime_before(ktime_get(), d->opd_sync_next_commit_cb))
253                 GOTO(out, rc);
254
255         if (atomic_read(&d->opd_sync_changes)) {
256                 struct thandle *th;
257
258                 th = dt_trans_create(env, d->opd_storage);
259                 if (IS_ERR(th)) {
260                         CERROR("%s: can't sync\n", d->opd_obd->obd_name);
261                         GOTO(out, rc);
262                 }
263                 rc = dt_trans_start_local(env, d->opd_storage, th);
264                 if (rc == 0) {
265                         CDEBUG(D_OTHER, "%s: sync forced, %d changes\n",
266                                d->opd_obd->obd_name,
267                                atomic_read(&d->opd_sync_changes));
268                         osp_sync_add_commit_cb_1s(env, d, th);
269                         dt_trans_stop(env, d->opd_storage, th);
270                 }
271         }
272
273 out:
274         RETURN(0);
275 }
276
277 /**
278  * Schedule an immediate update for statfs data
279  *
280  * If cached statfs data claim no free space, but OSP has got a request to
281  * destroy an object (so release some space probably), then we may need to
282  * refresh cached statfs data sooner than planned. The function checks there
283  * is no statfs update going and schedules immediate update if so.
284  * XXX: there might be a case where removed object(s) do not add free space (empty
285  * object). If the number of such deletions is high, then we can start to update
286  * statfs too often causing a RPC storm. some throttling is needed...
287  *
288  * \param[in] d         OSP device where statfs data needs to be refreshed
289  */
290 void osp_statfs_need_now(struct osp_device *d)
291 {
292         if (!d->opd_statfs_update_in_progress) {
293                 /*
294                  * if current status is -ENOSPC (lack of free space on OST)
295                  * then we should poll OST immediately once object destroy
296                  * is replied
297                  */
298                 d->opd_statfs_fresh_till = ktime_sub_ns(ktime_get(), NSEC_PER_SEC);
299                 del_timer(&d->opd_statfs_timer);
300                 wake_up(&d->opd_pre_waitq);
301         }
302 }
303
304 /**
305  * Return number of precreated objects
306  *
307  * A simple helper to calculate the number of precreated objects on the device.
308  *
309  * \param[in] env       LU environment provided by the caller
310  * \param[in] osp       OSP device
311  *
312  * \retval              the number of the precreated objects
313  */
314 static inline int osp_objs_precreated(const struct lu_env *env,
315                                       struct osp_device *osp)
316 {
317         return osp_fid_diff(&osp->opd_pre_last_created_fid,
318                             &osp->opd_pre_used_fid);
319 }
320
321 /**
322  * Check pool of precreated objects is nearly empty
323  *
324  * We should not wait till the pool of the precreated objects is exhausted,
325  * because then there will be a long period of OSP being unavailable for the
326  * new creations due to lenghty precreate RPC. Instead we ask for another
327  * precreation ahead and hopefully have it ready before the current pool is
328  * empty. Notice this function relies on an external locking.
329  *
330  * \param[in] env       LU environment provided by the caller
331  * \param[in] d         OSP device
332  *
333  * \retval              0 - current pool is good enough, 1 - time to precreate
334  */
335 static inline int osp_precreate_near_empty_nolock(const struct lu_env *env,
336                                                   struct osp_device *d)
337 {
338         int window = osp_objs_precreated(env, d);
339
340         /* don't consider new precreation till OST is healty and
341          * has free space */
342         return ((window - d->opd_pre_reserved < d->opd_pre_create_count / 2) &&
343                 (d->opd_pre_status == 0));
344 }
345
346 /**
347  * Check pool of precreated objects
348  *
349  * This is protected version of osp_precreate_near_empty_nolock(), check that
350  * for the details.
351  *
352  * \param[in] env       LU environment provided by the caller
353  * \param[in] d         OSP device
354  *
355  * \retval              0 - current pool is good enough, 1 - time to precreate
356  */
357 static inline int osp_precreate_near_empty(const struct lu_env *env,
358                                            struct osp_device *d)
359 {
360         int rc;
361
362         if (d->opd_pre == NULL)
363                 return 0;
364
365         /* XXX: do we really need locking here? */
366         spin_lock(&d->opd_pre_lock);
367         rc = osp_precreate_near_empty_nolock(env, d);
368         spin_unlock(&d->opd_pre_lock);
369         return rc;
370 }
371
372 /**
373  * Check given sequence is empty
374  *
375  * Returns a binary result whether the given sequence has some IDs left
376  * or not. Find the details in osp_fid_end_seq(). This is a lock protected
377  * version of that function.
378  *
379  * \param[in] env       LU environment provided by the caller
380  * \param[in] osp       OSP device
381  *
382  * \retval              0 - current sequence has no IDs, 1 - otherwise
383  */
384 static inline int osp_create_end_seq(const struct lu_env *env,
385                                      struct osp_device *osp)
386 {
387         struct lu_fid *fid = &osp->opd_pre_used_fid;
388         int rc;
389
390         spin_lock(&osp->opd_pre_lock);
391         rc = osp_fid_end_seq(env, fid);
392         spin_unlock(&osp->opd_pre_lock);
393         return rc;
394 }
395
396 /**
397  * Write FID into into last_oid/last_seq file
398  *
399  * The function stores the sequence and the in-sequence id into two dedicated
400  * files. The sync argument can be used to request synchronous commit, so the
401  * function won't return until the updates are committed.
402  *
403  * \param[in] env       LU environment provided by the caller
404  * \param[in] osp       OSP device
405  * \param[in] fid       fid where sequence/id is taken
406  * \param[in] sync      update mode: 0 - asynchronously, 1 - synchronously
407  *
408  * \retval 0            on success
409  * \retval negative     negated errno on error
410  **/
411 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
412                                  struct lu_fid *fid, int sync)
413 {
414         struct osp_thread_info  *oti = osp_env_info(env);
415         struct lu_buf      *lb_oid = &oti->osi_lb;
416         struct lu_buf      *lb_oseq = &oti->osi_lb2;
417         loff_t             oid_off;
418         u64                oid;
419         loff_t             oseq_off;
420         struct thandle    *th;
421         int                   rc;
422         ENTRY;
423
424         if (osp->opd_storage->dd_rdonly)
425                 RETURN(0);
426
427         /* Note: through f_oid is only 32 bits, it will also write 64 bits
428          * for oid to keep compatibility with the previous version. */
429         oid = fid->f_oid;
430         osp_objid_buf_prep(lb_oid, &oid_off,
431                            &oid, osp->opd_index);
432
433         osp_objseq_buf_prep(lb_oseq, &oseq_off,
434                             &fid->f_seq, osp->opd_index);
435
436         th = dt_trans_create(env, osp->opd_storage);
437         if (IS_ERR(th))
438                 RETURN(PTR_ERR(th));
439
440         th->th_sync |= sync;
441         rc = dt_declare_record_write(env, osp->opd_last_used_oid_file,
442                                      lb_oid, oid_off, th);
443         if (rc != 0)
444                 GOTO(out, rc);
445
446         rc = dt_declare_record_write(env, osp->opd_last_used_seq_file,
447                                      lb_oseq, oseq_off, th);
448         if (rc != 0)
449                 GOTO(out, rc);
450
451         rc = dt_trans_start_local(env, osp->opd_storage, th);
452         if (rc != 0)
453                 GOTO(out, rc);
454
455         rc = dt_record_write(env, osp->opd_last_used_oid_file, lb_oid,
456                              &oid_off, th);
457         if (rc != 0) {
458                 CERROR("%s: can not write to last seq file: rc = %d\n",
459                         osp->opd_obd->obd_name, rc);
460                 GOTO(out, rc);
461         }
462         rc = dt_record_write(env, osp->opd_last_used_seq_file, lb_oseq,
463                              &oseq_off, th);
464         if (rc) {
465                 CERROR("%s: can not write to last seq file: rc = %d\n",
466                         osp->opd_obd->obd_name, rc);
467                 GOTO(out, rc);
468         }
469 out:
470         dt_trans_stop(env, osp->opd_storage, th);
471         RETURN(rc);
472 }
473
474 /**
475  * Switch to another sequence
476  *
477  * When a current sequence has no available IDs left, OSP has to switch to
478  * another new sequence. OSP requests it using the regular FLDB protocol
479  * and stores synchronously before that is used in precreated. This is needed
480  * to basically have the sequences referenced (not orphaned), otherwise it's
481  * possible that OST has some objects precreated and the clients have data
482  * written to it, but after MDT failover nobody refers those objects and OSP
483  * has no idea that the sequence need cleanup to be done.
484  * While this is very expensive operation, it's supposed to happen very very
485  * infrequently because sequence has 2^32 or 2^48 objects (depending on type)
486  *
487  * \param[in] env       LU environment provided by the caller
488  * \param[in] osp       OSP device
489  *
490  * \retval 0            on success
491  * \retval negative     negated errno on error
492  */
493 static int osp_precreate_rollover_new_seq(struct lu_env *env,
494                                           struct osp_device *osp)
495 {
496         struct lu_fid   *fid = &osp_env_info(env)->osi_fid;
497         struct lu_fid   *last_fid = &osp->opd_last_used_fid;
498         int             rc;
499         ENTRY;
500
501         rc = seq_client_get_seq(env, osp->opd_obd->u.cli.cl_seq, &fid->f_seq);
502         if (rc != 0) {
503                 CERROR("%s: alloc fid error: rc = %d\n",
504                        osp->opd_obd->obd_name, rc);
505                 RETURN(rc);
506         }
507
508         fid->f_oid = 1;
509         fid->f_ver = 0;
510         LASSERTF(fid_seq(fid) != fid_seq(last_fid),
511                  "fid "DFID", last_fid "DFID"\n", PFID(fid),
512                  PFID(last_fid));
513
514         rc = osp_write_last_oid_seq_files(env, osp, fid, 1);
515         if (rc != 0) {
516                 CERROR("%s: Can not update oid/seq file: rc = %d\n",
517                        osp->opd_obd->obd_name, rc);
518                 RETURN(rc);
519         }
520
521         LCONSOLE_INFO("%s: update sequence from %#llx to %#llx\n",
522                       osp->opd_obd->obd_name, fid_seq(last_fid),
523                       fid_seq(fid));
524         /* Update last_xxx to the new seq */
525         spin_lock(&osp->opd_pre_lock);
526         osp->opd_last_used_fid = *fid;
527         osp_fid_to_obdid(fid, &osp->opd_last_id);
528         osp->opd_gap_start_fid = *fid;
529         osp->opd_pre_used_fid = *fid;
530         osp->opd_pre_last_created_fid = *fid;
531         spin_unlock(&osp->opd_pre_lock);
532
533         RETURN(rc);
534 }
535
536 /**
537  * Find IDs available in current sequence
538  *
539  * The function calculates the highest possible ID and the number of IDs
540  * available in the current sequence OSP is using. The number is limited
541  * artifically by the caller (grow param) and the number of IDs available
542  * in the sequence by nature. The function doesn't require an external
543  * locking.
544  *
545  * \param[in] env       LU environment provided by the caller
546  * \param[in] osp       OSP device
547  * \param[in] fid       FID the caller wants to start with
548  * \param[in] grow      how many the caller wants
549  * \param[out] fid      the highest calculated FID
550  * \param[out] grow     the number of available IDs calculated
551  *
552  * \retval              0 on success, 1 - the sequence is empty
553  */
554 static int osp_precreate_fids(const struct lu_env *env, struct osp_device *osp,
555                               struct lu_fid *fid, int *grow)
556 {
557         struct osp_thread_info  *osi = osp_env_info(env);
558         __u64                   end;
559         int                     i = 0;
560
561         if (fid_is_idif(fid)) {
562                 struct lu_fid   *last_fid;
563                 struct ost_id   *oi = &osi->osi_oi;
564                 int rc;
565
566                 spin_lock(&osp->opd_pre_lock);
567                 last_fid = &osp->opd_pre_last_created_fid;
568                 fid_to_ostid(last_fid, oi);
569                 end = min(ostid_id(oi) + *grow, IDIF_MAX_OID);
570                 *grow = end - ostid_id(oi);
571                 rc = ostid_set_id(oi, ostid_id(oi) + *grow);
572                 spin_unlock(&osp->opd_pre_lock);
573
574                 if (*grow == 0 || rc)
575                         return 1;
576
577                 ostid_to_fid(fid, oi, osp->opd_index);
578                 return 0;
579         }
580
581         spin_lock(&osp->opd_pre_lock);
582         *fid = osp->opd_pre_last_created_fid;
583         end = fid->f_oid;
584         end = min((end + *grow), (__u64)LUSTRE_DATA_SEQ_MAX_WIDTH);
585         *grow = end - fid->f_oid;
586         fid->f_oid += end - fid->f_oid;
587         spin_unlock(&osp->opd_pre_lock);
588
589         CDEBUG(D_INFO, "Expect %d, actual %d ["DFID" -- "DFID"]\n",
590                *grow, i, PFID(fid), PFID(&osp->opd_pre_last_created_fid));
591
592         return *grow > 0 ? 0 : 1;
593 }
594
595 /**
596  * Prepare and send precreate RPC
597  *
598  * The function finds how many objects should be precreated.  Then allocates,
599  * prepares and schedules precreate RPC synchronously. Upon reply the function
600  * wakes up the threads waiting for the new objects on this target. If the
601  * target wasn't able to create all the objects requested, then the next
602  * precreate will be asking for fewer objects (i.e. slow precreate down).
603  *
604  * \param[in] env       LU environment provided by the caller
605  * \param[in] d         OSP device
606  *
607  * \retval 0            on success
608  * \retval negative     negated errno on error
609  **/
610 static int osp_precreate_send(const struct lu_env *env, struct osp_device *d)
611 {
612         struct osp_thread_info  *oti = osp_env_info(env);
613         struct ptlrpc_request   *req;
614         struct obd_import       *imp;
615         struct ost_body         *body;
616         int                      rc, grow, diff;
617         struct lu_fid           *fid = &oti->osi_fid;
618         ENTRY;
619
620         /* don't precreate new objects till OST healthy and has free space */
621         if (unlikely(d->opd_pre_status)) {
622                 CDEBUG(D_INFO, "%s: don't send new precreate: rc = %d\n",
623                        d->opd_obd->obd_name, d->opd_pre_status);
624                 RETURN(0);
625         }
626
627         /*
628          * if not connection/initialization is compeleted, ignore
629          */
630         imp = d->opd_obd->u.cli.cl_import;
631         LASSERT(imp);
632
633         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
634         if (req == NULL)
635                 RETURN(-ENOMEM);
636         req->rq_request_portal = OST_CREATE_PORTAL;
637         /* we should not resend create request - anyway we will have delorphan
638          * and kill these objects */
639         req->rq_no_delay = req->rq_no_resend = 1;
640
641         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
642         if (rc) {
643                 ptlrpc_request_free(req);
644                 RETURN(rc);
645         }
646
647         spin_lock(&d->opd_pre_lock);
648         if (d->opd_pre_create_count > d->opd_pre_max_create_count / 2)
649                 d->opd_pre_create_count = d->opd_pre_max_create_count / 2;
650         grow = d->opd_pre_create_count;
651         spin_unlock(&d->opd_pre_lock);
652
653         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
654         LASSERT(body);
655
656         *fid = d->opd_pre_last_created_fid;
657         rc = osp_precreate_fids(env, d, fid, &grow);
658         if (rc == 1)
659                 /* Current seq has been used up*/
660                 GOTO(out_req, rc = -ENOSPC);
661
662         if (!osp_is_fid_client(d)) {
663                 /* Non-FID client will always send seq 0 because of
664                  * compatiblity */
665                 LASSERTF(fid_is_idif(fid), "Invalid fid "DFID"\n", PFID(fid));
666                 fid->f_seq = 0;
667         }
668
669         fid_to_ostid(fid, &body->oa.o_oi);
670         body->oa.o_valid = OBD_MD_FLGROUP;
671
672         ptlrpc_request_set_replen(req);
673
674         if (OBD_FAIL_CHECK(OBD_FAIL_OSP_FAKE_PRECREATE))
675                 GOTO(ready, rc = 0);
676
677         rc = ptlrpc_queue_wait(req);
678         if (rc) {
679                 CERROR("%s: can't precreate: rc = %d\n", d->opd_obd->obd_name,
680                        rc);
681                 GOTO(out_req, rc);
682         }
683         LASSERT(req->rq_transno == 0);
684
685         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
686         if (body == NULL)
687                 GOTO(out_req, rc = -EPROTO);
688
689         ostid_to_fid(fid, &body->oa.o_oi, d->opd_index);
690
691 ready:
692         if (osp_fid_diff(fid, &d->opd_pre_used_fid) <= 0) {
693                 CERROR("%s: precreate fid "DFID" <= local used fid "DFID
694                        ": rc = %d\n", d->opd_obd->obd_name,
695                        PFID(fid), PFID(&d->opd_pre_used_fid), -ESTALE);
696                 GOTO(out_req, rc = -ESTALE);
697         }
698
699         diff = osp_fid_diff(fid, &d->opd_pre_last_created_fid);
700
701         spin_lock(&d->opd_pre_lock);
702         if (diff < grow) {
703                 /* the OST has not managed to create all the
704                  * objects we asked for */
705                 d->opd_pre_create_count = max(diff, OST_MIN_PRECREATE);
706                 d->opd_pre_create_slow = 1;
707         } else {
708                 /* the OST is able to keep up with the work,
709                  * we could consider increasing create_count
710                  * next time if needed */
711                 d->opd_pre_create_slow = 0;
712         }
713
714         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
715         fid_to_ostid(fid, &body->oa.o_oi);
716
717         d->opd_pre_last_created_fid = *fid;
718         spin_unlock(&d->opd_pre_lock);
719
720         CDEBUG(D_HA, "%s: current precreated pool: "DFID"-"DFID"\n",
721                d->opd_obd->obd_name, PFID(&d->opd_pre_used_fid),
722                PFID(&d->opd_pre_last_created_fid));
723 out_req:
724         /* now we can wakeup all users awaiting for objects */
725         osp_pre_update_status(d, rc);
726         wake_up(&d->opd_pre_user_waitq);
727
728         ptlrpc_req_finished(req);
729         RETURN(rc);
730 }
731
732 /**
733  * Get last precreated object from target (OST)
734  *
735  * Sends synchronous RPC to the target (OST) to learn the last precreated
736  * object. This later is used to remove all unused objects (cleanup orphan
737  * procedure). Also, the next object after one we got will be used as a
738  * starting point for the new precreates.
739  *
740  * \param[in] env       LU environment provided by the caller
741  * \param[in] d         OSP device
742  *
743  * \retval 0            on success
744  * \retval negative     negated errno on error
745  **/
746 static int osp_get_lastfid_from_ost(const struct lu_env *env,
747                                     struct osp_device *d)
748 {
749         struct ptlrpc_request   *req = NULL;
750         struct obd_import       *imp;
751         struct lu_fid           *last_fid;
752         char                    *tmp;
753         int                     rc;
754         ENTRY;
755
756         imp = d->opd_obd->u.cli.cl_import;
757         LASSERT(imp);
758
759         req = ptlrpc_request_alloc(imp, &RQF_OST_GET_INFO_LAST_FID);
760         if (req == NULL)
761                 RETURN(-ENOMEM);
762
763         req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY, RCL_CLIENT,
764                              sizeof(KEY_LAST_FID));
765
766         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_GET_INFO);
767         if (rc) {
768                 ptlrpc_request_free(req);
769                 RETURN(rc);
770         }
771
772         tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
773         memcpy(tmp, KEY_LAST_FID, sizeof(KEY_LAST_FID));
774
775         req->rq_no_delay = req->rq_no_resend = 1;
776         last_fid = req_capsule_client_get(&req->rq_pill, &RMF_FID);
777         fid_cpu_to_le(last_fid, &d->opd_last_used_fid);
778
779         ptlrpc_request_set_replen(req);
780
781         rc = ptlrpc_queue_wait(req);
782         if (rc) {
783                 /* bad-bad OST.. let sysadm sort this out */
784                 if (rc == -ENOTSUPP) {
785                         CERROR("%s: server does not support FID: rc = %d\n",
786                                d->opd_obd->obd_name, -ENOTSUPP);
787                 }
788                 ptlrpc_set_import_active(imp, 0);
789                 GOTO(out, rc);
790         }
791
792         last_fid = req_capsule_server_get(&req->rq_pill, &RMF_FID);
793         if (last_fid == NULL) {
794                 CERROR("%s: Got last_fid failed.\n", d->opd_obd->obd_name);
795                 GOTO(out, rc = -EPROTO);
796         }
797
798         if (!fid_is_sane(last_fid)) {
799                 CERROR("%s: Got insane last_fid "DFID"\n",
800                        d->opd_obd->obd_name, PFID(last_fid));
801                 GOTO(out, rc = -EPROTO);
802         }
803
804         /* Only update the last used fid, if the OST has objects for
805          * this sequence, i.e. fid_oid > 0 */
806         if (fid_oid(last_fid) > 0)
807                 d->opd_last_used_fid = *last_fid;
808
809         CDEBUG(D_HA, "%s: Got last_fid "DFID"\n", d->opd_obd->obd_name,
810                PFID(last_fid));
811
812 out:
813         ptlrpc_req_finished(req);
814         RETURN(rc);
815 }
816
817 /**
818  * Cleanup orphans on OST
819  *
820  * This function is called in a contex of a dedicated thread handling
821  * all the precreation suff. The function waits till local recovery
822  * is complete, then identify all the unreferenced objects (orphans)
823  * using the highest ID referenced by a local and the highest object
824  * precreated by the target. The found range is a subject to removal
825  * using specially flagged RPC. During this process OSP is marked
826  * unavailable for new objects.
827  *
828  * \param[in] env       LU environment provided by the caller
829  * \param[in] d         OSP device
830  *
831  * \retval 0            on success
832  * \retval negative     negated errno on error
833  */
834 static int osp_precreate_cleanup_orphans(struct lu_env *env,
835                                          struct osp_device *d)
836 {
837         struct osp_thread_info  *osi = osp_env_info(env);
838         struct lu_fid           *last_fid = &osi->osi_fid;
839         struct ptlrpc_request   *req = NULL;
840         struct obd_import       *imp;
841         struct ost_body         *body;
842         struct l_wait_info       lwi = { 0 };
843         int                      update_status = 0;
844         int                      rc;
845         int                      diff;
846
847         ENTRY;
848
849         /*
850          * wait for local recovery to finish, so we can cleanup orphans
851          * orphans are all objects since "last used" (assigned), but
852          * there might be objects reserved and in some cases they won't
853          * be used. we can't cleanup them till we're sure they won't be
854          * used. also can't we allow new reservations because they may
855          * end up getting orphans being cleaned up below. so we block
856          * new reservations and wait till all reserved objects either
857          * user or released.
858          */
859         spin_lock(&d->opd_pre_lock);
860         d->opd_pre_recovering = 1;
861         spin_unlock(&d->opd_pre_lock);
862         /*
863          * The locking above makes sure the opd_pre_reserved check below will
864          * catch all osp_precreate_reserve() calls who find
865          * "!opd_pre_recovering".
866          */
867         l_wait_event(d->opd_pre_waitq,
868                      (!d->opd_pre_reserved && d->opd_recovery_completed) ||
869                      !osp_precreate_running(d) || d->opd_got_disconnected,
870                      &lwi);
871         if (!osp_precreate_running(d) || d->opd_got_disconnected)
872                 GOTO(out, rc = -EAGAIN);
873
874         CDEBUG(D_HA, "%s: going to cleanup orphans since "DFID"\n",
875                d->opd_obd->obd_name, PFID(&d->opd_last_used_fid));
876
877         *last_fid = d->opd_last_used_fid;
878         /* The OSP should already get the valid seq now */
879         LASSERT(!fid_is_zero(last_fid));
880         if (fid_oid(&d->opd_last_used_fid) < 2) {
881                 /* lastfid looks strange... ask OST */
882                 rc = osp_get_lastfid_from_ost(env, d);
883                 if (rc)
884                         GOTO(out, rc);
885         }
886
887         imp = d->opd_obd->u.cli.cl_import;
888         LASSERT(imp);
889
890         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
891         if (req == NULL)
892                 GOTO(out, rc = -ENOMEM);
893
894         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
895         if (rc) {
896                 ptlrpc_request_free(req);
897                 req = NULL;
898                 GOTO(out, rc);
899         }
900
901         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
902         if (body == NULL)
903                 GOTO(out, rc = -EPROTO);
904
905         body->oa.o_flags = OBD_FL_DELORPHAN;
906         body->oa.o_valid = OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
907
908         fid_to_ostid(&d->opd_last_used_fid, &body->oa.o_oi);
909
910         ptlrpc_request_set_replen(req);
911
912         /* Don't resend the delorphan req */
913         req->rq_no_resend = req->rq_no_delay = 1;
914
915         rc = ptlrpc_queue_wait(req);
916         if (rc) {
917                 update_status = 1;
918                 GOTO(out, rc);
919         }
920
921         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
922         if (body == NULL)
923                 GOTO(out, rc = -EPROTO);
924
925         /*
926          * OST provides us with id new pool starts from in body->oa.o_id
927          */
928         ostid_to_fid(last_fid, &body->oa.o_oi, d->opd_index);
929
930         spin_lock(&d->opd_pre_lock);
931         diff = osp_fid_diff(&d->opd_last_used_fid, last_fid);
932         if (diff > 0) {
933                 d->opd_pre_create_count = OST_MIN_PRECREATE + diff;
934                 d->opd_pre_last_created_fid = d->opd_last_used_fid;
935         } else {
936                 d->opd_pre_create_count = OST_MIN_PRECREATE;
937                 d->opd_pre_last_created_fid = *last_fid;
938         }
939         /*
940          * This empties the pre-creation pool and effectively blocks any new
941          * reservations.
942          */
943         LASSERT(fid_oid(&d->opd_pre_last_created_fid) <=
944                 LUSTRE_DATA_SEQ_MAX_WIDTH);
945         d->opd_pre_used_fid = d->opd_pre_last_created_fid;
946         d->opd_pre_create_slow = 0;
947         spin_unlock(&d->opd_pre_lock);
948
949         CDEBUG(D_HA, "%s: Got last_id "DFID" from OST, last_created "DFID
950                "last_used is "DFID"\n", d->opd_obd->obd_name, PFID(last_fid),
951                PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_last_used_fid));
952 out:
953         if (req)
954                 ptlrpc_req_finished(req);
955
956         /*
957          * If rc is zero, the pre-creation window should have been emptied.
958          * Since waking up the herd would be useless without pre-created
959          * objects, we defer the signal to osp_precreate_send() in that case.
960          */
961         if (rc != 0) {
962                 if (update_status) {
963                         CERROR("%s: cannot cleanup orphans: rc = %d\n",
964                                d->opd_obd->obd_name, rc);
965                         /* we can't proceed from here, OST seem to
966                          * be in a bad shape, better to wait for
967                          * a new instance of the server and repeat
968                          * from the beginning. notify possible waiters
969                          * this OSP isn't quite functional yet */
970                         osp_pre_update_status(d, rc);
971                 } else {
972                         wake_up(&d->opd_pre_user_waitq);
973                 }
974         } else {
975                 spin_lock(&d->opd_pre_lock);
976                 d->opd_pre_recovering = 0;
977                 spin_unlock(&d->opd_pre_lock);
978         }
979
980         RETURN(rc);
981 }
982
983 /**
984  * Update precreate status using statfs data
985  *
986  * The function decides whether this OSP should be used for new objects.
987  * IOW, whether this OST is used up or has some free space. Cached statfs
988  * data is used to make this decision. If the latest result of statfs
989  * request (rc argument) is not success, then just mark OSP unavailable
990  * right away.
991  *
992  * The new statfs data is passed in \a msfs and needs to be stored into
993  * opd_statfs, but only after the various flags in os_state are set, so
994  * that the new statfs data is not visible without appropriate flags set.
995  * As such, there is no need to clear the flags here, since this is called
996  * with new statfs data, and they should not be cleared if sent from OST.
997  *
998  * Add a bit of hysteresis so this flag isn't continually flapping, and
999  * ensure that new files don't get extremely fragmented due to only a
1000  * small amount of available space in the filesystem.  We want to set
1001  * the ENOSPC/ENOINO flags unconditionally when there is less than the
1002  * reserved size free, and still copy them from the old state when there
1003  * is less than 2*reserved size free space or inodes.
1004  *
1005  * \param[in] d         OSP device
1006  * \param[in] msfs      statfs data
1007  */
1008 static void osp_pre_update_msfs(struct osp_device *d, struct obd_statfs *msfs)
1009 {
1010         u32 old_state = d->opd_statfs.os_state;
1011         u32 reserved_ino_low = 32;      /* could be tunable in the future */
1012         u32 reserved_ino_high = reserved_ino_low * 2;
1013         u64 available_mb;
1014
1015         /* statfs structure not initialized yet */
1016         if (unlikely(!msfs->os_type))
1017                 return;
1018
1019         /* if the low and high watermarks have not been initialized yet */
1020         if (unlikely(d->opd_reserved_mb_high == 0 &&
1021                      d->opd_reserved_mb_low == 0)) {
1022                 /* Use ~0.1% by default to disable object allocation,
1023                  * and ~0.2% to enable, size in MB, set both watermark
1024                  */
1025                 spin_lock(&d->opd_pre_lock);
1026                 if (d->opd_reserved_mb_high == 0 &&
1027                     d->opd_reserved_mb_low == 0) {
1028                         d->opd_reserved_mb_low = ((msfs->os_bsize >> 10) *
1029                                                   msfs->os_blocks) >> 20;
1030                         if (d->opd_reserved_mb_low == 0)
1031                                 d->opd_reserved_mb_low = 1;
1032                         d->opd_reserved_mb_high =
1033                                 (d->opd_reserved_mb_low << 1) + 1;
1034                 }
1035                 spin_unlock(&d->opd_pre_lock);
1036         }
1037
1038         available_mb = (msfs->os_bavail * (msfs->os_bsize >> 10)) >> 10;
1039         if (msfs->os_ffree < reserved_ino_low)
1040                 msfs->os_state |= OS_STATE_ENOINO;
1041         else if (msfs->os_ffree <= reserved_ino_high)
1042                 msfs->os_state |= old_state & OS_STATE_ENOINO;
1043         /* else don't clear flags in new msfs->os_state sent from OST */
1044
1045         CDEBUG(D_INFO,
1046                "%s: blocks=%llu free=%llu avail=%llu avail_mb=%llu hwm_mb=%u files=%llu ffree=%llu state=%x: rc = %d\n",
1047                d->opd_obd->obd_name, msfs->os_blocks, msfs->os_bfree,
1048                msfs->os_bavail, available_mb, d->opd_reserved_mb_high,
1049                msfs->os_files, msfs->os_ffree, msfs->os_state,
1050                d->opd_pre_status);
1051         if (available_mb < d->opd_reserved_mb_low)
1052                 msfs->os_state |= OS_STATE_ENOSPC;
1053         else if (available_mb <= d->opd_reserved_mb_high)
1054                 msfs->os_state |= old_state & OS_STATE_ENOSPC;
1055         /* else don't clear flags in new msfs->os_state sent from OST */
1056
1057         if (msfs->os_state & (OS_STATE_ENOINO | OS_STATE_ENOSPC)) {
1058                 d->opd_pre_status = -ENOSPC;
1059                 if (!(old_state & (OS_STATE_ENOINO | OS_STATE_ENOSPC)))
1060                         CDEBUG(D_INFO, "%s: full: state=%x: rc = %x\n",
1061                                d->opd_obd->obd_name, msfs->os_state,
1062                                d->opd_pre_status);
1063                 CDEBUG(D_INFO, "uncommitted changes=%u in_progress=%u\n",
1064                        atomic_read(&d->opd_sync_changes),
1065                        atomic_read(&d->opd_sync_rpcs_in_progress));
1066         } else if (old_state & (OS_STATE_ENOINO | OS_STATE_ENOSPC)) {
1067                 d->opd_pre_status = 0;
1068                 spin_lock(&d->opd_pre_lock);
1069                 d->opd_pre_create_slow = 0;
1070                 d->opd_pre_create_count = OST_MIN_PRECREATE;
1071                 spin_unlock(&d->opd_pre_lock);
1072                 wake_up(&d->opd_pre_waitq);
1073
1074                 CDEBUG(D_INFO,
1075                        "%s: available: state=%x: rc = %d\n",
1076                        d->opd_obd->obd_name, msfs->os_state,
1077                        d->opd_pre_status);
1078         } else {
1079                 /* we only get here if rc == 0 in the caller */
1080                 d->opd_pre_status = 0;
1081         }
1082
1083         /* Object precreation skipped on OST if manually disabled */
1084         if (d->opd_pre_max_create_count == 0)
1085                 msfs->os_state |= OS_STATE_NOPRECREATE;
1086         /* else don't clear flags in new msfs->os_state sent from OST */
1087
1088         /* copy only new statfs state to make it visible to MDS threads */
1089         if (&d->opd_statfs != msfs)
1090                 d->opd_statfs = *msfs;
1091 }
1092
1093 /**
1094  * Initialize FID for precreation
1095  *
1096  * For a just created new target, a new sequence should be taken.
1097  * The function checks there is no IDIF in use (if the target was
1098  * added with the older version of Lustre), then requests a new
1099  * sequence from FLDB using the regular protocol. Then this new
1100  * sequence is stored on a persisten storage synchronously to prevent
1101  * possible object leakage (for the detail see the description for
1102  * osp_precreate_rollover_new_seq()).
1103  *
1104  * \param[in] osp       OSP device
1105  *
1106  * \retval 0            on success
1107  * \retval negative     negated errno on error
1108  */
1109 int osp_init_pre_fid(struct osp_device *osp)
1110 {
1111         struct lu_env           env;
1112         struct osp_thread_info  *osi;
1113         struct lu_client_seq    *cli_seq;
1114         struct lu_fid           *last_fid;
1115         int                     rc;
1116         ENTRY;
1117
1118         LASSERT(osp->opd_pre != NULL);
1119
1120         /* Let's check if the current last_seq/fid is valid,
1121          * otherwise request new sequence from the controller */
1122         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
1123                 /* Non-MDT0 can only use normal sequence for
1124                  * OST objects */
1125                 if (fid_is_norm(&osp->opd_last_used_fid))
1126                         RETURN(0);
1127         } else {
1128                 /* Initially MDT0 will start with IDIF, after
1129                  * that it will request new sequence from the
1130                  * controller */
1131                 if (fid_is_idif(&osp->opd_last_used_fid) ||
1132                     fid_is_norm(&osp->opd_last_used_fid))
1133                         RETURN(0);
1134         }
1135
1136         if (!fid_is_zero(&osp->opd_last_used_fid))
1137                 CWARN("%s: invalid last used fid "DFID
1138                       ", try to get new sequence.\n",
1139                       osp->opd_obd->obd_name,
1140                       PFID(&osp->opd_last_used_fid));
1141
1142         rc = lu_env_init(&env, osp->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
1143         if (rc) {
1144                 CERROR("%s: init env error: rc = %d\n",
1145                        osp->opd_obd->obd_name, rc);
1146                 RETURN(rc);
1147         }
1148
1149         osi = osp_env_info(&env);
1150         last_fid = &osi->osi_fid;
1151         fid_zero(last_fid);
1152         /* For a freshed fs, it will allocate a new sequence first */
1153         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
1154                 cli_seq = osp->opd_obd->u.cli.cl_seq;
1155                 rc = seq_client_get_seq(&env, cli_seq, &last_fid->f_seq);
1156                 if (rc != 0) {
1157                         CERROR("%s: alloc fid error: rc = %d\n",
1158                                osp->opd_obd->obd_name, rc);
1159                         GOTO(out, rc);
1160                 }
1161         } else {
1162                 last_fid->f_seq = fid_idif_seq(0, osp->opd_index);
1163         }
1164         last_fid->f_oid = 1;
1165         last_fid->f_ver = 0;
1166
1167         spin_lock(&osp->opd_pre_lock);
1168         osp->opd_last_used_fid = *last_fid;
1169         osp->opd_pre_used_fid = *last_fid;
1170         osp->opd_pre_last_created_fid = *last_fid;
1171         spin_unlock(&osp->opd_pre_lock);
1172         rc = osp_write_last_oid_seq_files(&env, osp, last_fid, 1);
1173         if (rc != 0) {
1174                 CERROR("%s: write fid error: rc = %d\n",
1175                        osp->opd_obd->obd_name, rc);
1176                 GOTO(out, rc);
1177         }
1178 out:
1179         lu_env_fini(&env);
1180         RETURN(rc);
1181 }
1182
1183 /**
1184  * The core of precreate functionality
1185  *
1186  * The function implements the main precreation loop. Basically it
1187  * involves connecting to the target, precerate FID initialization,
1188  * identifying and removing orphans, then serving precreation. As
1189  * part of the latter, the thread is responsible for statfs data
1190  * updates. The precreation is mostly driven by another threads
1191  * asking for new OST objects - those askers wake the thread when
1192  * the number of precreated objects reach low watermark.
1193  * After a disconnect, the sequence above repeats. This is keep going
1194  * until the thread is requested to stop.
1195  *
1196  * \param[in] _arg      private data the thread (OSP device to handle)
1197  *
1198  * \retval 0            on success
1199  * \retval negative     negated errno on error
1200  */
1201 static int osp_precreate_thread(void *_arg)
1202 {
1203         struct osp_device       *d = _arg;
1204         struct ptlrpc_thread    *thread = &d->opd_pre_thread;
1205         struct l_wait_info       lwi = { 0 };
1206         struct l_wait_info       lwi2 = LWI_TIMEOUT(cfs_time_seconds(5),
1207                                                     back_to_sleep, NULL);
1208         struct lu_env            env;
1209         int                      rc;
1210
1211         ENTRY;
1212
1213         rc = lu_env_init(&env, d->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
1214         if (rc) {
1215                 CERROR("%s: init env error: rc = %d\n", d->opd_obd->obd_name,
1216                        rc);
1217
1218                 spin_lock(&d->opd_pre_lock);
1219                 thread->t_flags = SVC_STOPPED;
1220                 spin_unlock(&d->opd_pre_lock);
1221                 wake_up(&thread->t_ctl_waitq);
1222
1223                 RETURN(rc);
1224         }
1225
1226         spin_lock(&d->opd_pre_lock);
1227         thread->t_flags = SVC_RUNNING;
1228         spin_unlock(&d->opd_pre_lock);
1229         wake_up(&thread->t_ctl_waitq);
1230
1231         while (osp_precreate_running(d)) {
1232                 /*
1233                  * need to be connected to OST
1234                  */
1235                 while (osp_precreate_running(d)) {
1236                         if ((d->opd_pre == NULL || d->opd_pre_recovering) &&
1237                             d->opd_imp_connected &&
1238                             !d->opd_got_disconnected)
1239                                 break;
1240                         l_wait_event(d->opd_pre_waitq,
1241                                      !osp_precreate_running(d) ||
1242                                      d->opd_new_connection,
1243                                      &lwi);
1244
1245                         if (!d->opd_new_connection)
1246                                 continue;
1247
1248                         d->opd_new_connection = 0;
1249                         d->opd_got_disconnected = 0;
1250                         break;
1251                 }
1252
1253                 if (!osp_precreate_running(d))
1254                         break;
1255
1256                 if (d->opd_pre) {
1257                         LASSERT(d->opd_obd->u.cli.cl_seq != NULL);
1258                         /* Sigh, fid client is not ready yet */
1259                         if (d->opd_obd->u.cli.cl_seq->lcs_exp == NULL)
1260                                 continue;
1261
1262                         /* Init fid for osp_precreate if necessary */
1263                         rc = osp_init_pre_fid(d);
1264                         if (rc != 0) {
1265                                 class_export_put(d->opd_exp);
1266                                 d->opd_obd->u.cli.cl_seq->lcs_exp = NULL;
1267                                 CERROR("%s: init pre fid error: rc = %d\n",
1268                                                 d->opd_obd->obd_name, rc);
1269                                 continue;
1270                         }
1271                 }
1272
1273                 if (osp_statfs_update(&env, d)) {
1274                         l_wait_event(d->opd_pre_waitq,
1275                                      !osp_precreate_running(d), &lwi2);
1276                         continue;
1277                 }
1278
1279                 if (d->opd_pre) {
1280                         /*
1281                          * Clean up orphans or recreate missing objects.
1282                          */
1283                         rc = osp_precreate_cleanup_orphans(&env, d);
1284                         if (rc != 0) {
1285                                 schedule_timeout_interruptible(cfs_time_seconds(1));
1286                                 continue;
1287                         }
1288                 }
1289
1290                 /*
1291                  * connected, can handle precreates now
1292                  */
1293                 while (osp_precreate_running(d)) {
1294                         l_wait_event(d->opd_pre_waitq,
1295                                      !osp_precreate_running(d) ||
1296                                      osp_precreate_near_empty(&env, d) ||
1297                                      osp_statfs_need_update(d) ||
1298                                      d->opd_got_disconnected, &lwi);
1299
1300                         if (!osp_precreate_running(d))
1301                                 break;
1302
1303                         /* something happened to the connection
1304                          * have to start from the beginning */
1305                         if (d->opd_got_disconnected)
1306                                 break;
1307
1308                         if (osp_statfs_need_update(d))
1309                                 if (osp_statfs_update(&env, d))
1310                                         break;
1311
1312                         if (d->opd_pre == NULL)
1313                                 continue;
1314
1315                         /* To avoid handling different seq in precreate/orphan
1316                          * cleanup, it will hold precreate until current seq is
1317                          * used up. */
1318                         if (unlikely(osp_precreate_end_seq(&env, d) &&
1319                             !osp_create_end_seq(&env, d)))
1320                                 continue;
1321
1322                         if (unlikely(osp_precreate_end_seq(&env, d) &&
1323                                      osp_create_end_seq(&env, d))) {
1324                                 LCONSOLE_INFO("%s:%#llx is used up."
1325                                               " Update to new seq\n",
1326                                               d->opd_obd->obd_name,
1327                                          fid_seq(&d->opd_pre_last_created_fid));
1328                                 rc = osp_precreate_rollover_new_seq(&env, d);
1329                                 if (rc)
1330                                         continue;
1331                         }
1332
1333                         if (osp_precreate_near_empty(&env, d)) {
1334                                 rc = osp_precreate_send(&env, d);
1335                                 /* osp_precreate_send() sets opd_pre_status
1336                                  * in case of error, that prevent the using of
1337                                  * failed device. */
1338                                 if (rc < 0 && rc != -ENOSPC &&
1339                                     rc != -ETIMEDOUT && rc != -ENOTCONN)
1340                                         CERROR("%s: cannot precreate objects:"
1341                                                " rc = %d\n",
1342                                                d->opd_obd->obd_name, rc);
1343                         }
1344                 }
1345         }
1346
1347         thread->t_flags = SVC_STOPPED;
1348         lu_env_fini(&env);
1349         wake_up(&thread->t_ctl_waitq);
1350
1351         RETURN(0);
1352 }
1353
1354 /**
1355  * Check when to stop to wait for precreate objects.
1356  *
1357  * The caller wanting a new OST object can't wait undefinitely. The
1358  * function checks for few conditions including available new OST
1359  * objects, disconnected OST, lack of space with no pending destroys,
1360  * etc. IOW, it checks whether the current OSP state is good to keep
1361  * waiting or it's better to give up.
1362  *
1363  * \param[in] env       LU environment provided by the caller
1364  * \param[in] d         OSP device
1365  *
1366  * \retval              0 - keep waiting, 1 - no luck
1367  */
1368 static int osp_precreate_ready_condition(const struct lu_env *env,
1369                                          struct osp_device *d)
1370 {
1371         if (d->opd_pre_recovering)
1372                 return 0;
1373
1374         /* ready if got enough precreated objects */
1375         /* we need to wait for others (opd_pre_reserved) and our object (+1) */
1376         if (d->opd_pre_reserved + 1 < osp_objs_precreated(env, d))
1377                 return 1;
1378
1379         /* ready if OST reported no space and no destroys in progress */
1380         if (atomic_read(&d->opd_sync_changes) +
1381             atomic_read(&d->opd_sync_rpcs_in_progress) == 0 &&
1382             d->opd_pre_status == -ENOSPC)
1383                 return 1;
1384
1385         /* Bail out I/O fails to OST */
1386         if (d->opd_pre_status != 0 &&
1387             d->opd_pre_status != -EAGAIN &&
1388             d->opd_pre_status != -ENODEV &&
1389             d->opd_pre_status != -ENOTCONN &&
1390             d->opd_pre_status != -ENOSPC) {
1391                 /* DEBUG LU-3230 */
1392                 if (d->opd_pre_status != -EIO)
1393                         CERROR("%s: precreate failed opd_pre_status %d\n",
1394                                d->opd_obd->obd_name, d->opd_pre_status);
1395                 return 1;
1396         }
1397
1398         return 0;
1399 }
1400
1401 static int osp_precreate_timeout_condition(void *data)
1402 {
1403         struct osp_device *d = data;
1404
1405         CDEBUG(D_HA, "%s: slow creates, last="DFID", next="DFID", "
1406               "reserved=%llu, sync_changes=%u, "
1407               "sync_rpcs_in_progress=%d, status=%d\n",
1408               d->opd_obd->obd_name, PFID(&d->opd_pre_last_created_fid),
1409               PFID(&d->opd_pre_used_fid), d->opd_pre_reserved,
1410               atomic_read(&d->opd_sync_changes),
1411               atomic_read(&d->opd_sync_rpcs_in_progress),
1412               d->opd_pre_status);
1413
1414         return 1;
1415 }
1416
1417 /**
1418  * Reserve object in precreate pool
1419  *
1420  * When the caller wants to create a new object on this target (target
1421  * represented by the given OSP), it should declare this intention using
1422  * a regular ->dt_declare_create() OSD API method. Then OSP will be trying
1423  * to reserve an object in the existing precreated pool or wait up to
1424  * obd_timeout for the available object to appear in the pool (a dedicated
1425  * thread will be doing real precreation in background). The object can be
1426  * consumed later with osp_precreate_get_fid() or be released with call to
1427  * lu_object_put(). Notice the function doesn't reserve a specific ID, just
1428  * some ID. The actual ID assignment happen in osp_precreate_get_fid().
1429  * If the space on the target is short and there is a pending object destroy,
1430  * then the function forces local commit to speedup space release (see
1431  * osp_sync.c for the details).
1432  *
1433  * \param[in] env       LU environment provided by the caller
1434  * \param[in] d         OSP device
1435  *
1436  * \retval              0 on success
1437  * \retval              -ENOSPC when no space on OST
1438  * \retval              -EAGAIN try later, slow precreation in progress
1439  * \retval              -EIO when no access to OST
1440  */
1441 int osp_precreate_reserve(const struct lu_env *env, struct osp_device *d)
1442 {
1443         time64_t expire = ktime_get_seconds() + obd_timeout;
1444         struct l_wait_info lwi;
1445         int precreated, rc, synced = 0;
1446
1447         ENTRY;
1448
1449         LASSERTF(osp_objs_precreated(env, d) >= 0, "Last created FID "DFID
1450                  "Next FID "DFID"\n", PFID(&d->opd_pre_last_created_fid),
1451                  PFID(&d->opd_pre_used_fid));
1452
1453         /* opd_pre_max_create_count 0 to not use specified OST. */
1454         if (d->opd_pre_max_create_count == 0)
1455                 RETURN(-ENOBUFS);
1456
1457         /*
1458          * wait till:
1459          *  - preallocation is done
1460          *  - no free space expected soon
1461          *  - can't connect to OST for too long (obd_timeout)
1462          *  - OST can allocate fid sequence.
1463          */
1464         while ((rc = d->opd_pre_status) == 0 || rc == -ENOSPC ||
1465                 rc == -ENODEV || rc == -EAGAIN || rc == -ENOTCONN) {
1466
1467                 /*
1468                  * increase number of precreations
1469                  */
1470                 precreated = osp_objs_precreated(env, d);
1471                 if (d->opd_pre_create_count < d->opd_pre_max_create_count &&
1472                     d->opd_pre_create_slow == 0 &&
1473                     precreated <= (d->opd_pre_create_count / 4 + 1)) {
1474                         spin_lock(&d->opd_pre_lock);
1475                         d->opd_pre_create_slow = 1;
1476                         d->opd_pre_create_count *= 2;
1477                         spin_unlock(&d->opd_pre_lock);
1478                 }
1479
1480                 spin_lock(&d->opd_pre_lock);
1481                 precreated = osp_objs_precreated(env, d);
1482                 if (precreated > d->opd_pre_reserved &&
1483                     !d->opd_pre_recovering) {
1484                         d->opd_pre_reserved++;
1485                         spin_unlock(&d->opd_pre_lock);
1486                         rc = 0;
1487
1488                         /* XXX: don't wake up if precreation is in progress */
1489                         if (osp_precreate_near_empty_nolock(env, d) &&
1490                            !osp_precreate_end_seq_nolock(env, d))
1491                                 wake_up(&d->opd_pre_waitq);
1492
1493                         break;
1494                 }
1495                 spin_unlock(&d->opd_pre_lock);
1496
1497                 /*
1498                  * all precreated objects have been used and no-space
1499                  * status leave us no chance to succeed very soon
1500                  * but if there is destroy in progress, then we should
1501                  * wait till that is done - some space might be released
1502                  */
1503                 if (unlikely(rc == -ENOSPC)) {
1504                         if (atomic_read(&d->opd_sync_changes) && synced == 0) {
1505                                 /* force local commit to release space */
1506                                 dt_commit_async(env, d->opd_storage);
1507                                 osp_sync_check_for_work(d);
1508                                 synced = 1;
1509                         }
1510                         if (atomic_read(&d->opd_sync_rpcs_in_progress)) {
1511                                 /* just wait till destroys are done */
1512                                 /* see l_wait_even() few lines below */
1513                         }
1514                         if (atomic_read(&d->opd_sync_changes) +
1515                             atomic_read(&d->opd_sync_rpcs_in_progress) == 0) {
1516                                 /* no hope for free space */
1517                                 break;
1518                         }
1519                 }
1520
1521                 /* XXX: don't wake up if precreation is in progress */
1522                 wake_up(&d->opd_pre_waitq);
1523
1524                 lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout),
1525                                   osp_precreate_timeout_condition, d);
1526                 if (ktime_get_seconds() >= expire) {
1527                         rc = -ETIMEDOUT;
1528                         break;
1529                 }
1530
1531                 l_wait_event(d->opd_pre_user_waitq,
1532                              osp_precreate_ready_condition(env, d), &lwi);
1533         }
1534
1535         RETURN(rc);
1536 }
1537
1538 /**
1539  * Get a FID from precreation pool
1540  *
1541  * The function is a companion for osp_precreate_reserve() - it assigns
1542  * a specific FID from the precreate. The function should be called only
1543  * if the call to osp_precreate_reserve() was successful. The function
1544  * updates a local storage to remember the highest object ID referenced
1545  * by the node in the given sequence.
1546  *
1547  * A very importan details: this is supposed to be called once the
1548  * transaction is started, so on-disk update will be atomic with the
1549  * data (like LOVEA) refering this object. Then the object won't be leaked:
1550  * either it's referenced by the committed transaction or it's a subject
1551  * to the orphan cleanup procedure.
1552  *
1553  * \param[in] env       LU environment provided by the caller
1554  * \param[in] d         OSP device
1555  * \param[out] fid      generated FID
1556  *
1557  * \retval 0            on success
1558  * \retval negative     negated errno on error
1559  */
1560 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
1561                           struct lu_fid *fid)
1562 {
1563         struct lu_fid *pre_used_fid = &d->opd_pre_used_fid;
1564         /* grab next id from the pool */
1565         spin_lock(&d->opd_pre_lock);
1566
1567         LASSERTF(osp_fid_diff(&d->opd_pre_used_fid,
1568                              &d->opd_pre_last_created_fid) < 0,
1569                  "next fid "DFID" last created fid "DFID"\n",
1570                  PFID(&d->opd_pre_used_fid),
1571                  PFID(&d->opd_pre_last_created_fid));
1572
1573         /*
1574          * When sequence is used up, new one should be allocated in
1575          * osp_precreate_rollover_new_seq. So ASSERT here to avoid
1576          * objid overflow.
1577          */
1578         LASSERTF(osp_fid_end_seq(env, pre_used_fid) == 0,
1579                  "next fid "DFID" last created fid "DFID"\n",
1580                  PFID(&d->opd_pre_used_fid),
1581                  PFID(&d->opd_pre_last_created_fid));
1582         /* Non IDIF fids shoulnd't get here with oid == 0xFFFFFFFF. */
1583         if (fid_is_idif(pre_used_fid) &&
1584             unlikely(fid_oid(pre_used_fid) == LUSTRE_DATA_SEQ_MAX_WIDTH))
1585                 pre_used_fid->f_seq++;
1586
1587         d->opd_pre_used_fid.f_oid++;
1588         memcpy(fid, &d->opd_pre_used_fid, sizeof(*fid));
1589         d->opd_pre_reserved--;
1590         /*
1591          * last_used_id must be changed along with getting new id otherwise
1592          * we might miscalculate gap causing object loss or leak
1593          */
1594         osp_update_last_fid(d, fid);
1595         spin_unlock(&d->opd_pre_lock);
1596
1597         /*
1598          * probably main thread suspended orphan cleanup till
1599          * all reservations are released, see comment in
1600          * osp_precreate_thread() just before orphan cleanup
1601          */
1602         if (unlikely(d->opd_pre_reserved == 0 &&
1603                      (d->opd_pre_recovering || d->opd_pre_status)))
1604                 wake_up(&d->opd_pre_waitq);
1605
1606         return 0;
1607 }
1608
1609 /*
1610  * Set size regular attribute on an object
1611  *
1612  * When a striping is created late, it's possible that size is already
1613  * initialized on the file. Then the new striping should inherit size
1614  * from the file. The function sets size on the object using the regular
1615  * protocol (OST_PUNCH).
1616  * XXX: should be re-implemented using OUT ?
1617  *
1618  * \param[in] env       LU environment provided by the caller
1619  * \param[in] dt        object
1620  * \param[in] size      size to set.
1621  *
1622  * \retval 0            on success
1623  * \retval negative     negated errno on error
1624  */
1625 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt,
1626                         __u64 size)
1627 {
1628         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
1629         struct ptlrpc_request   *req = NULL;
1630         struct obd_import       *imp;
1631         struct ost_body         *body;
1632         struct obdo             *oa = NULL;
1633         int                      rc;
1634
1635         ENTRY;
1636
1637         imp = d->opd_obd->u.cli.cl_import;
1638         LASSERT(imp);
1639
1640         req = ptlrpc_request_alloc(imp, &RQF_OST_PUNCH);
1641         if (req == NULL)
1642                 RETURN(-ENOMEM);
1643
1644         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_PUNCH);
1645         if (rc) {
1646                 ptlrpc_request_free(req);
1647                 RETURN(rc);
1648         }
1649
1650         /*
1651          * XXX: decide how do we do here with resend
1652          * if we don't resend, then client may see wrong file size
1653          * if we do resend, then MDS thread can get stuck for quite long
1654          * and if we don't resend, then client will also get -EWOULDBLOCK !!
1655          * (see LU-7975 and sanity/test_27F use cases)
1656          * but let's decide not to resend/delay this truncate request to OST
1657          * and allow Client to decide to resend, in a less agressive way from
1658          * after_reply(), by returning -EINPROGRESS instead of
1659          * -EAGAIN/-EWOULDBLOCK upon return from ptlrpc_queue_wait() at the
1660          * end of this routine
1661          */
1662         req->rq_no_resend = req->rq_no_delay = 1;
1663
1664         req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
1665         ptlrpc_at_set_req_timeout(req);
1666
1667         OBD_ALLOC_PTR(oa);
1668         if (oa == NULL)
1669                 GOTO(out, rc = -ENOMEM);
1670
1671         rc = fid_to_ostid(lu_object_fid(&dt->do_lu), &oa->o_oi);
1672         LASSERT(rc == 0);
1673         oa->o_size = size;
1674         oa->o_blocks = OBD_OBJECT_EOF;
1675         oa->o_valid = OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
1676                       OBD_MD_FLID | OBD_MD_FLGROUP;
1677
1678         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
1679         LASSERT(body);
1680         lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
1681
1682         /* XXX: capa support? */
1683         /* osc_pack_capa(req, body, capa); */
1684
1685         ptlrpc_request_set_replen(req);
1686
1687         rc = ptlrpc_queue_wait(req);
1688         if (rc) {
1689                 /* -EWOULDBLOCK/-EAGAIN means OST is unreachable at the moment
1690                  * since we have decided not to resend/delay, but this could
1691                  * lead to wrong size to be seen at Client side and even process
1692                  * trying to open to exit/fail if not itself handling -EAGAIN.
1693                  * So it should be better to return -EINPROGRESS instead and
1694                  * leave the decision to resend at Client side in after_reply()
1695                  */
1696                 if (rc == -EWOULDBLOCK) {
1697                         rc = -EINPROGRESS;
1698                         CDEBUG(D_HA, "returning -EINPROGRESS instead of "
1699                                "-EWOULDBLOCK/-EAGAIN to allow Client to "
1700                                "resend\n");
1701                 } else {
1702                         CERROR("can't punch object: %d\n", rc);
1703                 }
1704         }
1705 out:
1706         ptlrpc_req_finished(req);
1707         if (oa)
1708                 OBD_FREE_PTR(oa);
1709         RETURN(rc);
1710 }
1711
1712 /**
1713  * Initialize precreation functionality of OSP
1714  *
1715  * Prepares all the internal structures and starts the precreate thread
1716  *
1717  * \param[in] d         OSP device
1718  *
1719  * \retval 0            on success
1720  * \retval negative     negated errno on error
1721  */
1722 int osp_init_precreate(struct osp_device *d)
1723 {
1724         ENTRY;
1725
1726         OBD_ALLOC_PTR(d->opd_pre);
1727         if (d->opd_pre == NULL)
1728                 RETURN(-ENOMEM);
1729
1730         /* initially precreation isn't ready */
1731         init_waitqueue_head(&d->opd_pre_user_waitq);
1732         d->opd_pre_status = -EAGAIN;
1733         fid_zero(&d->opd_pre_used_fid);
1734         d->opd_pre_used_fid.f_oid = 1;
1735         fid_zero(&d->opd_pre_last_created_fid);
1736         d->opd_pre_last_created_fid.f_oid = 1;
1737         d->opd_last_id = 0;
1738         d->opd_pre_reserved = 0;
1739         d->opd_got_disconnected = 1;
1740         d->opd_pre_create_slow = 0;
1741         d->opd_pre_create_count = OST_MIN_PRECREATE;
1742         d->opd_pre_min_create_count = OST_MIN_PRECREATE;
1743         d->opd_pre_max_create_count = OST_MAX_PRECREATE;
1744         d->opd_reserved_mb_high = 0;
1745         d->opd_reserved_mb_low = 0;
1746
1747         RETURN(0);
1748 }
1749
1750 /**
1751  * Finish precreate functionality of OSP
1752  *
1753  *
1754  * Asks all the activity (the thread, update timer) to stop, then
1755  * wait till that is done.
1756  *
1757  * \param[in] d         OSP device
1758  */
1759 void osp_precreate_fini(struct osp_device *d)
1760 {
1761         ENTRY;
1762
1763         if (d->opd_pre == NULL)
1764                 RETURN_EXIT;
1765
1766         OBD_FREE_PTR(d->opd_pre);
1767         d->opd_pre = NULL;
1768
1769         EXIT;
1770 }
1771
1772 int osp_init_statfs(struct osp_device *d)
1773 {
1774         struct l_wait_info       lwi = { 0 };
1775         struct task_struct              *task;
1776
1777         ENTRY;
1778
1779         spin_lock_init(&d->opd_pre_lock);
1780         init_waitqueue_head(&d->opd_pre_waitq);
1781         thread_set_flags(&d->opd_pre_thread, SVC_INIT);
1782         init_waitqueue_head(&d->opd_pre_thread.t_ctl_waitq);
1783
1784         /*
1785          * Initialize statfs-related things
1786          */
1787         d->opd_statfs_maxage = 5; /* defaultupdate interval */
1788         d->opd_statfs_fresh_till = ktime_sub_ns(ktime_get(),
1789                                                 1000 * NSEC_PER_SEC);
1790         CDEBUG(D_OTHER, "current %lldns, fresh till %lldns\n",
1791                ktime_get_ns(),
1792                ktime_to_ns(d->opd_statfs_fresh_till));
1793         cfs_timer_setup(&d->opd_statfs_timer, osp_statfs_timer_cb,
1794                         (unsigned long)d, 0);
1795
1796         if (d->opd_storage->dd_rdonly)
1797                 RETURN(0);
1798
1799         /*
1800          * start thread handling precreation and statfs updates
1801          */
1802         task = kthread_run(osp_precreate_thread, d,
1803                            "osp-pre-%u-%u", d->opd_index, d->opd_group);
1804         if (IS_ERR(task)) {
1805                 CERROR("can't start precreate thread %ld\n", PTR_ERR(task));
1806                 RETURN(PTR_ERR(task));
1807         }
1808
1809         l_wait_event(d->opd_pre_thread.t_ctl_waitq,
1810                      osp_precreate_running(d) || osp_precreate_stopped(d),
1811                      &lwi);
1812
1813         RETURN(0);
1814 }
1815
1816 void osp_statfs_fini(struct osp_device *d)
1817 {
1818         struct ptlrpc_thread *thread = &d->opd_pre_thread;
1819         ENTRY;
1820
1821         del_timer(&d->opd_statfs_timer);
1822
1823         if (!thread_is_init(thread) && !thread_is_stopped(thread)) {
1824                 thread->t_flags = SVC_STOPPING;
1825                 wake_up(&d->opd_pre_waitq);
1826                 wait_event(thread->t_ctl_waitq, thread_is_stopped(thread));
1827         }
1828
1829         EXIT;
1830 }