Whamcloud - gitweb
5cb73b4d8251437980530ec7b29f5fe7d5ecf1b8
[fs/lustre-release.git] / lustre / ptlrpc / service.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2010, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #define DEBUG_SUBSYSTEM S_RPC
33
34 #include <linux/kthread.h>
35 #include <linux/ratelimit.h>
36
37 #include <obd_support.h>
38 #include <obd_class.h>
39 #include <lustre_net.h>
40 #include <lu_object.h>
41 #include <uapi/linux/lnet/lnet-types.h>
42 #include "ptlrpc_internal.h"
43 #include <linux/delay.h>
44
45 /* The following are visible and mutable through /sys/module/ptlrpc */
46 int test_req_buffer_pressure = 0;
47 module_param(test_req_buffer_pressure, int, 0444);
48 MODULE_PARM_DESC(test_req_buffer_pressure, "set non-zero to put pressure on request buffer pools");
49 module_param(at_min, int, 0644);
50 MODULE_PARM_DESC(at_min, "Adaptive timeout minimum (sec)");
51 module_param(at_max, int, 0644);
52 MODULE_PARM_DESC(at_max, "Adaptive timeout maximum (sec)");
53 module_param(at_history, int, 0644);
54 MODULE_PARM_DESC(at_history,
55                  "Adaptive timeouts remember the slowest event that took place within this period (sec)");
56 module_param(at_early_margin, int, 0644);
57 MODULE_PARM_DESC(at_early_margin, "How soon before an RPC deadline to send an early reply");
58 module_param(at_extra, int, 0644);
59 MODULE_PARM_DESC(at_extra, "How much extra time to give with each early reply");
60
61 /* forward ref */
62 static int ptlrpc_server_post_idle_rqbds(struct ptlrpc_service_part *svcpt);
63 static void ptlrpc_server_hpreq_fini(struct ptlrpc_request *req);
64 static void ptlrpc_at_remove_timed(struct ptlrpc_request *req);
65 static int ptlrpc_start_threads(struct ptlrpc_service *svc);
66 static int ptlrpc_start_thread(struct ptlrpc_service_part *svcpt, int wait);
67
68 /** Holds a list of all PTLRPC services */
69 LIST_HEAD(ptlrpc_all_services);
70 /** Used to protect the \e ptlrpc_all_services list */
71 struct mutex ptlrpc_all_services_mutex;
72
73 static struct ptlrpc_request_buffer_desc *
74 ptlrpc_alloc_rqbd(struct ptlrpc_service_part *svcpt)
75 {
76         struct ptlrpc_service             *svc = svcpt->scp_service;
77         struct ptlrpc_request_buffer_desc *rqbd;
78
79         OBD_CPT_ALLOC_PTR(rqbd, svc->srv_cptable, svcpt->scp_cpt);
80         if (rqbd == NULL)
81                 return NULL;
82
83         rqbd->rqbd_svcpt = svcpt;
84         rqbd->rqbd_refcount = 0;
85         rqbd->rqbd_cbid.cbid_fn = request_in_callback;
86         rqbd->rqbd_cbid.cbid_arg = rqbd;
87         INIT_LIST_HEAD(&rqbd->rqbd_reqs);
88         OBD_CPT_ALLOC_LARGE(rqbd->rqbd_buffer, svc->srv_cptable,
89                             svcpt->scp_cpt, svc->srv_buf_size);
90         if (rqbd->rqbd_buffer == NULL) {
91                 OBD_FREE_PTR(rqbd);
92                 return NULL;
93         }
94
95         spin_lock(&svcpt->scp_lock);
96         list_add(&rqbd->rqbd_list, &svcpt->scp_rqbd_idle);
97         svcpt->scp_nrqbds_total++;
98         spin_unlock(&svcpt->scp_lock);
99
100         return rqbd;
101 }
102
103 static void ptlrpc_free_rqbd(struct ptlrpc_request_buffer_desc *rqbd)
104 {
105         struct ptlrpc_service_part *svcpt = rqbd->rqbd_svcpt;
106
107         LASSERT(rqbd->rqbd_refcount == 0);
108         LASSERT(list_empty(&rqbd->rqbd_reqs));
109
110         spin_lock(&svcpt->scp_lock);
111         list_del(&rqbd->rqbd_list);
112         svcpt->scp_nrqbds_total--;
113         spin_unlock(&svcpt->scp_lock);
114
115         OBD_FREE_LARGE(rqbd->rqbd_buffer, svcpt->scp_service->srv_buf_size);
116         OBD_FREE_PTR(rqbd);
117 }
118
119 static int ptlrpc_grow_req_bufs(struct ptlrpc_service_part *svcpt, int post)
120 {
121         struct ptlrpc_service *svc = svcpt->scp_service;
122         struct ptlrpc_request_buffer_desc *rqbd;
123         int rc = 0;
124         int i;
125
126         if (svcpt->scp_rqbd_allocating)
127                 goto try_post;
128
129         spin_lock(&svcpt->scp_lock);
130         /* check again with lock */
131         if (svcpt->scp_rqbd_allocating) {
132                 /* NB: we might allow more than one thread in the future */
133                 LASSERT(svcpt->scp_rqbd_allocating == 1);
134                 spin_unlock(&svcpt->scp_lock);
135                 goto try_post;
136         }
137
138         svcpt->scp_rqbd_allocating++;
139         spin_unlock(&svcpt->scp_lock);
140
141
142         for (i = 0; i < svc->srv_nbuf_per_group; i++) {
143                 /*
144                  * NB: another thread might have recycled enough rqbds, we
145                  * need to make sure it wouldn't over-allocate, see LU-1212.
146                  */
147                 if (svcpt->scp_nrqbds_posted >= svc->srv_nbuf_per_group ||
148                     (svc->srv_nrqbds_max != 0 &&
149                      svcpt->scp_nrqbds_total > svc->srv_nrqbds_max))
150                         break;
151
152                 rqbd = ptlrpc_alloc_rqbd(svcpt);
153
154                 if (rqbd == NULL) {
155                         CERROR("%s: Can't allocate request buffer\n",
156                                svc->srv_name);
157                         rc = -ENOMEM;
158                         break;
159                 }
160         }
161
162         spin_lock(&svcpt->scp_lock);
163
164         LASSERT(svcpt->scp_rqbd_allocating == 1);
165         svcpt->scp_rqbd_allocating--;
166
167         spin_unlock(&svcpt->scp_lock);
168
169         CDEBUG(D_RPCTRACE,
170                "%s: allocate %d new %d-byte reqbufs (%d/%d left), rc = %d\n",
171                svc->srv_name, i, svc->srv_buf_size, svcpt->scp_nrqbds_posted,
172                svcpt->scp_nrqbds_total, rc);
173
174  try_post:
175         if (post && rc == 0)
176                 rc = ptlrpc_server_post_idle_rqbds(svcpt);
177
178         return rc;
179 }
180
181 /**
182  * Part of Rep-Ack logic.
183  * Puts a lock and its mode into reply state assotiated to request reply.
184  */
185 void ptlrpc_save_lock(struct ptlrpc_request *req, struct lustre_handle *lock,
186                       int mode, bool no_ack, bool convert_lock)
187 {
188         struct ptlrpc_reply_state *rs = req->rq_reply_state;
189         int idx;
190
191         LASSERT(rs != NULL);
192         LASSERT(rs->rs_nlocks < RS_MAX_LOCKS);
193
194         idx = rs->rs_nlocks++;
195         rs->rs_locks[idx] = *lock;
196         rs->rs_modes[idx] = mode;
197         rs->rs_difficult = 1;
198         rs->rs_no_ack = no_ack;
199         rs->rs_convert_lock = convert_lock;
200 }
201 EXPORT_SYMBOL(ptlrpc_save_lock);
202
203
204 struct ptlrpc_hr_partition;
205
206 struct ptlrpc_hr_thread {
207         int                             hrt_id;         /* thread ID */
208         spinlock_t                      hrt_lock;
209         wait_queue_head_t               hrt_waitq;
210         struct list_head                hrt_queue;
211         struct ptlrpc_hr_partition      *hrt_partition;
212 };
213
214 struct ptlrpc_hr_partition {
215         /* # of started threads */
216         atomic_t                        hrp_nstarted;
217         /* # of stopped threads */
218         atomic_t                        hrp_nstopped;
219         /* cpu partition id */
220         int                             hrp_cpt;
221         /* round-robin rotor for choosing thread */
222         int                             hrp_rotor;
223         /* total number of threads on this partition */
224         int                             hrp_nthrs;
225         /* threads table */
226         struct ptlrpc_hr_thread         *hrp_thrs;
227 };
228
229 #define HRT_RUNNING 0
230 #define HRT_STOPPING 1
231
232 struct ptlrpc_hr_service {
233         /* CPU partition table, it's just cfs_cpt_tab for now */
234         struct cfs_cpt_table            *hr_cpt_table;
235         /** controller sleep waitq */
236         wait_queue_head_t               hr_waitq;
237         unsigned int                    hr_stopping;
238         /** roundrobin rotor for non-affinity service */
239         unsigned int                    hr_rotor;
240         /* partition data */
241         struct ptlrpc_hr_partition      **hr_partitions;
242 };
243
244 struct rs_batch {
245         struct list_head                        rsb_replies;
246         unsigned int                    rsb_n_replies;
247         struct ptlrpc_service_part      *rsb_svcpt;
248 };
249
250 /** reply handling service. */
251 static struct ptlrpc_hr_service         ptlrpc_hr;
252
253 /**
254  * maximum mumber of replies scheduled in one batch
255  */
256 #define MAX_SCHEDULED 256
257
258 /**
259  * Initialize a reply batch.
260  *
261  * \param b batch
262  */
263 static void rs_batch_init(struct rs_batch *b)
264 {
265         memset(b, 0, sizeof(*b));
266         INIT_LIST_HEAD(&b->rsb_replies);
267 }
268
269 /**
270  * Choose an hr thread to dispatch requests to.
271  */
272 static
273 struct ptlrpc_hr_thread *ptlrpc_hr_select(struct ptlrpc_service_part *svcpt)
274 {
275         struct ptlrpc_hr_partition      *hrp;
276         unsigned int                    rotor;
277
278         if (svcpt->scp_cpt >= 0 &&
279             svcpt->scp_service->srv_cptable == ptlrpc_hr.hr_cpt_table) {
280                 /* directly match partition */
281                 hrp = ptlrpc_hr.hr_partitions[svcpt->scp_cpt];
282
283         } else {
284                 rotor = ptlrpc_hr.hr_rotor++;
285                 rotor %= cfs_cpt_number(ptlrpc_hr.hr_cpt_table);
286
287                 hrp = ptlrpc_hr.hr_partitions[rotor];
288         }
289
290         rotor = hrp->hrp_rotor++;
291         return &hrp->hrp_thrs[rotor % hrp->hrp_nthrs];
292 }
293
294 /**
295  * Dispatch all replies accumulated in the batch to one from
296  * dedicated reply handling threads.
297  *
298  * \param b batch
299  */
300 static void rs_batch_dispatch(struct rs_batch *b)
301 {
302         if (b->rsb_n_replies != 0) {
303                 struct ptlrpc_hr_thread *hrt;
304
305                 hrt = ptlrpc_hr_select(b->rsb_svcpt);
306
307                 spin_lock(&hrt->hrt_lock);
308                 list_splice_init(&b->rsb_replies, &hrt->hrt_queue);
309                 spin_unlock(&hrt->hrt_lock);
310
311                 wake_up(&hrt->hrt_waitq);
312                 b->rsb_n_replies = 0;
313         }
314 }
315
316 /**
317  * Add a reply to a batch.
318  * Add one reply object to a batch, schedule batched replies if overload.
319  *
320  * \param b batch
321  * \param rs reply
322  */
323 static void rs_batch_add(struct rs_batch *b, struct ptlrpc_reply_state *rs)
324 {
325         struct ptlrpc_service_part *svcpt = rs->rs_svcpt;
326
327         if (svcpt != b->rsb_svcpt || b->rsb_n_replies >= MAX_SCHEDULED) {
328                 if (b->rsb_svcpt != NULL) {
329                         rs_batch_dispatch(b);
330                         spin_unlock(&b->rsb_svcpt->scp_rep_lock);
331                 }
332                 spin_lock(&svcpt->scp_rep_lock);
333                 b->rsb_svcpt = svcpt;
334         }
335         spin_lock(&rs->rs_lock);
336         rs->rs_scheduled_ever = 1;
337         if (rs->rs_scheduled == 0) {
338                 list_move(&rs->rs_list, &b->rsb_replies);
339                 rs->rs_scheduled = 1;
340                 b->rsb_n_replies++;
341         }
342         rs->rs_committed = 1;
343         spin_unlock(&rs->rs_lock);
344 }
345
346 /**
347  * Reply batch finalization.
348  * Dispatch remaining replies from the batch
349  * and release remaining spinlock.
350  *
351  * \param b batch
352  */
353 static void rs_batch_fini(struct rs_batch *b)
354 {
355         if (b->rsb_svcpt != NULL) {
356                 rs_batch_dispatch(b);
357                 spin_unlock(&b->rsb_svcpt->scp_rep_lock);
358         }
359 }
360
361 #define DECLARE_RS_BATCH(b)     struct rs_batch b
362
363
364 /**
365  * Put reply state into a queue for processing because we received
366  * ACK from the client
367  */
368 void ptlrpc_dispatch_difficult_reply(struct ptlrpc_reply_state *rs)
369 {
370         struct ptlrpc_hr_thread *hrt;
371
372         ENTRY;
373
374         LASSERT(list_empty(&rs->rs_list));
375
376         hrt = ptlrpc_hr_select(rs->rs_svcpt);
377
378         spin_lock(&hrt->hrt_lock);
379         list_add_tail(&rs->rs_list, &hrt->hrt_queue);
380         spin_unlock(&hrt->hrt_lock);
381
382         wake_up(&hrt->hrt_waitq);
383         EXIT;
384 }
385
386 void ptlrpc_schedule_difficult_reply(struct ptlrpc_reply_state *rs)
387 {
388         ENTRY;
389
390         assert_spin_locked(&rs->rs_svcpt->scp_rep_lock);
391         assert_spin_locked(&rs->rs_lock);
392         LASSERT(rs->rs_difficult);
393         rs->rs_scheduled_ever = 1;  /* flag any notification attempt */
394
395         if (rs->rs_scheduled) {     /* being set up or already notified */
396                 EXIT;
397                 return;
398         }
399
400         rs->rs_scheduled = 1;
401         list_del_init(&rs->rs_list);
402         ptlrpc_dispatch_difficult_reply(rs);
403         EXIT;
404 }
405 EXPORT_SYMBOL(ptlrpc_schedule_difficult_reply);
406
407 void ptlrpc_commit_replies(struct obd_export *exp)
408 {
409         struct ptlrpc_reply_state *rs, *nxt;
410         DECLARE_RS_BATCH(batch);
411
412         ENTRY;
413
414         rs_batch_init(&batch);
415         /*
416          * Find any replies that have been committed and get their service
417          * to attend to complete them.
418          */
419
420         /* CAVEAT EMPTOR: spinlock ordering!!! */
421         spin_lock(&exp->exp_uncommitted_replies_lock);
422         list_for_each_entry_safe(rs, nxt, &exp->exp_uncommitted_replies,
423                                  rs_obd_list) {
424                 LASSERT(rs->rs_difficult);
425                 /* VBR: per-export last_committed */
426                 LASSERT(rs->rs_export);
427                 if (rs->rs_transno <= exp->exp_last_committed) {
428                         list_del_init(&rs->rs_obd_list);
429                         rs_batch_add(&batch, rs);
430                 }
431         }
432         spin_unlock(&exp->exp_uncommitted_replies_lock);
433         rs_batch_fini(&batch);
434         EXIT;
435 }
436
437 static int ptlrpc_server_post_idle_rqbds(struct ptlrpc_service_part *svcpt)
438 {
439         struct ptlrpc_request_buffer_desc *rqbd;
440         int rc;
441         int posted = 0;
442
443         for (;;) {
444                 spin_lock(&svcpt->scp_lock);
445
446                 if (list_empty(&svcpt->scp_rqbd_idle)) {
447                         spin_unlock(&svcpt->scp_lock);
448                         return posted;
449                 }
450
451                 rqbd = list_first_entry(&svcpt->scp_rqbd_idle,
452                                         struct ptlrpc_request_buffer_desc,
453                                         rqbd_list);
454
455                 /* assume we will post successfully */
456                 svcpt->scp_nrqbds_posted++;
457                 list_move(&rqbd->rqbd_list, &svcpt->scp_rqbd_posted);
458
459                 spin_unlock(&svcpt->scp_lock);
460
461                 rc = ptlrpc_register_rqbd(rqbd);
462                 if (rc != 0)
463                         break;
464
465                 posted = 1;
466         }
467
468         spin_lock(&svcpt->scp_lock);
469
470         svcpt->scp_nrqbds_posted--;
471         list_move_tail(&rqbd->rqbd_list, &svcpt->scp_rqbd_idle);
472
473         /*
474          * Don't complain if no request buffers are posted right now; LNET
475          * won't drop requests because we set the portal lazy!
476          */
477
478         spin_unlock(&svcpt->scp_lock);
479
480         return -1;
481 }
482
483 static void ptlrpc_at_timer(cfs_timer_cb_arg_t data)
484 {
485         struct ptlrpc_service_part *svcpt;
486
487         svcpt = cfs_from_timer(svcpt, data, scp_at_timer);
488
489         svcpt->scp_at_check = 1;
490         svcpt->scp_at_checktime = ktime_get();
491         wake_up(&svcpt->scp_waitq);
492 }
493
494 static void ptlrpc_server_nthreads_check(struct ptlrpc_service *svc,
495                                          struct ptlrpc_service_conf *conf)
496 {
497         struct ptlrpc_service_thr_conf *tc = &conf->psc_thr;
498         unsigned int init;
499         unsigned int total;
500         unsigned int nthrs;
501         int weight;
502
503         /*
504          * Common code for estimating & validating threads number.
505          * CPT affinity service could have percpt thread-pool instead
506          * of a global thread-pool, which means user might not always
507          * get the threads number they give it in conf::tc_nthrs_user
508          * even they did set. It's because we need to validate threads
509          * number for each CPT to guarantee each pool will have enough
510          * threads to keep the service healthy.
511          */
512         init = PTLRPC_NTHRS_INIT + (svc->srv_ops.so_hpreq_handler != NULL);
513         init = max_t(int, init, tc->tc_nthrs_init);
514
515         /*
516          * NB: please see comments in lustre_lnet.h for definition
517          * details of these members
518          */
519         LASSERT(tc->tc_nthrs_max != 0);
520
521         if (tc->tc_nthrs_user != 0) {
522                 /*
523                  * In case there is a reason to test a service with many
524                  * threads, we give a less strict check here, it can
525                  * be up to 8 * nthrs_max
526                  */
527                 total = min(tc->tc_nthrs_max * 8, tc->tc_nthrs_user);
528                 nthrs = total / svc->srv_ncpts;
529                 init  = max(init, nthrs);
530                 goto out;
531         }
532
533         total = tc->tc_nthrs_max;
534         if (tc->tc_nthrs_base == 0) {
535                 /*
536                  * don't care about base threads number per partition,
537                  * this is most for non-affinity service
538                  */
539                 nthrs = total / svc->srv_ncpts;
540                 goto out;
541         }
542
543         nthrs = tc->tc_nthrs_base;
544         if (svc->srv_ncpts == 1) {
545                 int     i;
546
547                 /*
548                  * NB: Increase the base number if it's single partition
549                  * and total number of cores/HTs is larger or equal to 4.
550                  * result will always < 2 * nthrs_base
551                  */
552                 weight = cfs_cpt_weight(svc->srv_cptable, CFS_CPT_ANY);
553                 for (i = 1; (weight >> (i + 1)) != 0 && /* >= 4 cores/HTs */
554                             (tc->tc_nthrs_base >> i) != 0; i++)
555                         nthrs += tc->tc_nthrs_base >> i;
556         }
557
558         if (tc->tc_thr_factor != 0) {
559                 int       factor = tc->tc_thr_factor;
560                 const int fade = 4;
561
562                 /*
563                  * User wants to increase number of threads with for
564                  * each CPU core/HT, most likely the factor is larger than
565                  * one thread/core because service threads are supposed to
566                  * be blocked by lock or wait for IO.
567                  */
568                 /*
569                  * Amdahl's law says that adding processors wouldn't give
570                  * a linear increasing of parallelism, so it's nonsense to
571                  * have too many threads no matter how many cores/HTs
572                  * there are.
573                  */
574                 preempt_disable();
575                 if (cpumask_weight
576                     (topology_sibling_cpumask(smp_processor_id())) > 1) {
577                         /* weight is # of HTs */
578                         /* depress thread factor for hyper-thread */
579                         factor = factor - (factor >> 1) + (factor >> 3);
580                 }
581                 preempt_enable();
582
583                 weight = cfs_cpt_weight(svc->srv_cptable, 0);
584
585                 for (; factor > 0 && weight > 0; factor--, weight -= fade)
586                         nthrs += min(weight, fade) * factor;
587         }
588
589         if (nthrs * svc->srv_ncpts > tc->tc_nthrs_max) {
590                 nthrs = max(tc->tc_nthrs_base,
591                             tc->tc_nthrs_max / svc->srv_ncpts);
592         }
593  out:
594         nthrs = max(nthrs, tc->tc_nthrs_init);
595         svc->srv_nthrs_cpt_limit = nthrs;
596         svc->srv_nthrs_cpt_init = init;
597
598         if (nthrs * svc->srv_ncpts > tc->tc_nthrs_max) {
599                 CDEBUG(D_OTHER,
600                        "%s: This service may have more threads (%d) than the given soft limit (%d)\n",
601                        svc->srv_name, nthrs * svc->srv_ncpts,
602                        tc->tc_nthrs_max);
603         }
604 }
605
606 /**
607  * Initialize percpt data for a service
608  */
609 static int ptlrpc_service_part_init(struct ptlrpc_service *svc,
610                                     struct ptlrpc_service_part *svcpt, int cpt)
611 {
612         struct ptlrpc_at_array *array;
613         int size;
614         int index;
615         int rc;
616
617         svcpt->scp_cpt = cpt;
618         INIT_LIST_HEAD(&svcpt->scp_threads);
619
620         /* rqbd and incoming request queue */
621         spin_lock_init(&svcpt->scp_lock);
622         mutex_init(&svcpt->scp_mutex);
623         INIT_LIST_HEAD(&svcpt->scp_rqbd_idle);
624         INIT_LIST_HEAD(&svcpt->scp_rqbd_posted);
625         INIT_LIST_HEAD(&svcpt->scp_req_incoming);
626         init_waitqueue_head(&svcpt->scp_waitq);
627         /* history request & rqbd list */
628         INIT_LIST_HEAD(&svcpt->scp_hist_reqs);
629         INIT_LIST_HEAD(&svcpt->scp_hist_rqbds);
630
631         /* acitve requests and hp requests */
632         spin_lock_init(&svcpt->scp_req_lock);
633
634         /* reply states */
635         spin_lock_init(&svcpt->scp_rep_lock);
636         INIT_LIST_HEAD(&svcpt->scp_rep_active);
637         INIT_LIST_HEAD(&svcpt->scp_rep_idle);
638         init_waitqueue_head(&svcpt->scp_rep_waitq);
639         atomic_set(&svcpt->scp_nreps_difficult, 0);
640
641         /* adaptive timeout */
642         spin_lock_init(&svcpt->scp_at_lock);
643         array = &svcpt->scp_at_array;
644
645         size = at_est2timeout(at_max);
646         array->paa_size     = size;
647         array->paa_count    = 0;
648         array->paa_deadline = -1;
649
650         /* allocate memory for scp_at_array (ptlrpc_at_array) */
651         OBD_CPT_ALLOC(array->paa_reqs_array,
652                       svc->srv_cptable, cpt, sizeof(struct list_head) * size);
653         if (array->paa_reqs_array == NULL)
654                 return -ENOMEM;
655
656         for (index = 0; index < size; index++)
657                 INIT_LIST_HEAD(&array->paa_reqs_array[index]);
658
659         OBD_CPT_ALLOC(array->paa_reqs_count,
660                       svc->srv_cptable, cpt, sizeof(__u32) * size);
661         if (array->paa_reqs_count == NULL)
662                 goto failed;
663
664         cfs_timer_setup(&svcpt->scp_at_timer, ptlrpc_at_timer,
665                         (unsigned long)svcpt, 0);
666
667         /*
668          * At SOW, service time should be quick; 10s seems generous. If client
669          * timeout is less than this, we'll be sending an early reply.
670          */
671         at_init(&svcpt->scp_at_estimate, 10, 0);
672
673         /* assign this before call ptlrpc_grow_req_bufs */
674         svcpt->scp_service = svc;
675         /* Now allocate the request buffers, but don't post them now */
676         rc = ptlrpc_grow_req_bufs(svcpt, 0);
677         /*
678          * We shouldn't be under memory pressure at startup, so
679          * fail if we can't allocate all our buffers at this time.
680          */
681         if (rc != 0)
682                 goto failed;
683
684         return 0;
685
686  failed:
687         if (array->paa_reqs_count != NULL) {
688                 OBD_FREE_PTR_ARRAY(array->paa_reqs_count, size);
689                 array->paa_reqs_count = NULL;
690         }
691
692         if (array->paa_reqs_array != NULL) {
693                 OBD_FREE_PTR_ARRAY(array->paa_reqs_array, array->paa_size);
694                 array->paa_reqs_array = NULL;
695         }
696
697         return -ENOMEM;
698 }
699
700 /**
701  * Initialize service on a given portal.
702  * This includes starting serving threads , allocating and posting rqbds and
703  * so on.
704  */
705 struct ptlrpc_service *ptlrpc_register_service(struct ptlrpc_service_conf *conf,
706                                                struct kset *parent,
707                                                struct dentry *debugfs_entry)
708 {
709         struct ptlrpc_service_cpt_conf *cconf = &conf->psc_cpt;
710         struct ptlrpc_service *service;
711         struct ptlrpc_service_part *svcpt;
712         struct cfs_cpt_table *cptable;
713         __u32 *cpts = NULL;
714         int ncpts;
715         int cpt;
716         int rc;
717         int i;
718
719         ENTRY;
720
721         LASSERT(conf->psc_buf.bc_nbufs > 0);
722         LASSERT(conf->psc_buf.bc_buf_size >=
723                 conf->psc_buf.bc_req_max_size + SPTLRPC_MAX_PAYLOAD);
724         LASSERT(conf->psc_thr.tc_ctx_tags != 0);
725
726         cptable = cconf->cc_cptable;
727         if (cptable == NULL)
728                 cptable = cfs_cpt_tab;
729
730         if (conf->psc_thr.tc_cpu_bind > 1) {
731                 CERROR("%s: Invalid cpu bind value %d, only 1 or 0 allowed\n",
732                        conf->psc_name, conf->psc_thr.tc_cpu_bind);
733                 RETURN(ERR_PTR(-EINVAL));
734         }
735
736         if (!cconf->cc_affinity) {
737                 ncpts = 1;
738         } else {
739                 ncpts = cfs_cpt_number(cptable);
740                 if (cconf->cc_pattern != NULL) {
741                         struct cfs_expr_list    *el;
742
743                         rc = cfs_expr_list_parse(cconf->cc_pattern,
744                                                  strlen(cconf->cc_pattern),
745                                                  0, ncpts - 1, &el);
746                         if (rc != 0) {
747                                 CERROR("%s: invalid CPT pattern string: %s\n",
748                                        conf->psc_name, cconf->cc_pattern);
749                                 RETURN(ERR_PTR(-EINVAL));
750                         }
751
752                         rc = cfs_expr_list_values(el, ncpts, &cpts);
753                         cfs_expr_list_free(el);
754                         if (rc <= 0) {
755                                 CERROR("%s: failed to parse CPT array %s: %d\n",
756                                        conf->psc_name, cconf->cc_pattern, rc);
757                                 if (cpts != NULL)
758                                         OBD_FREE_PTR_ARRAY(cpts, ncpts);
759                                 RETURN(ERR_PTR(rc < 0 ? rc : -EINVAL));
760                         }
761                         ncpts = rc;
762                 }
763         }
764
765         OBD_ALLOC(service, offsetof(struct ptlrpc_service, srv_parts[ncpts]));
766         if (service == NULL) {
767                 if (cpts != NULL)
768                         OBD_FREE_PTR_ARRAY(cpts, ncpts);
769                 RETURN(ERR_PTR(-ENOMEM));
770         }
771
772         service->srv_cptable            = cptable;
773         service->srv_cpts               = cpts;
774         service->srv_ncpts              = ncpts;
775         service->srv_cpt_bind           = conf->psc_thr.tc_cpu_bind;
776
777         service->srv_cpt_bits = 0; /* it's zero already, easy to read... */
778         while ((1 << service->srv_cpt_bits) < cfs_cpt_number(cptable))
779                 service->srv_cpt_bits++;
780
781         /* public members */
782         spin_lock_init(&service->srv_lock);
783         service->srv_name               = conf->psc_name;
784         service->srv_watchdog_factor    = conf->psc_watchdog_factor;
785         INIT_LIST_HEAD(&service->srv_list); /* for safty of cleanup */
786
787         /* buffer configuration */
788         service->srv_nbuf_per_group     = test_req_buffer_pressure ?
789                                           1 : conf->psc_buf.bc_nbufs;
790         /* do not limit max number of rqbds by default */
791         service->srv_nrqbds_max         = 0;
792
793         service->srv_max_req_size       = conf->psc_buf.bc_req_max_size +
794                                           SPTLRPC_MAX_PAYLOAD;
795         service->srv_buf_size           = conf->psc_buf.bc_buf_size;
796         service->srv_rep_portal         = conf->psc_buf.bc_rep_portal;
797         service->srv_req_portal         = conf->psc_buf.bc_req_portal;
798
799         /* With slab/alloc_pages buffer size will be rounded up to 2^n */
800         if (service->srv_buf_size & (service->srv_buf_size - 1)) {
801                 int round = size_roundup_power2(service->srv_buf_size);
802
803                 service->srv_buf_size = round;
804         }
805
806         /* Increase max reply size to next power of two */
807         service->srv_max_reply_size = 1;
808         while (service->srv_max_reply_size <
809                conf->psc_buf.bc_rep_max_size + SPTLRPC_MAX_PAYLOAD)
810                 service->srv_max_reply_size <<= 1;
811
812         service->srv_thread_name        = conf->psc_thr.tc_thr_name;
813         service->srv_ctx_tags           = conf->psc_thr.tc_ctx_tags;
814         service->srv_hpreq_ratio        = PTLRPC_SVC_HP_RATIO;
815         service->srv_ops                = conf->psc_ops;
816
817         for (i = 0; i < ncpts; i++) {
818                 if (!cconf->cc_affinity)
819                         cpt = CFS_CPT_ANY;
820                 else
821                         cpt = cpts != NULL ? cpts[i] : i;
822
823                 OBD_CPT_ALLOC(svcpt, cptable, cpt, sizeof(*svcpt));
824                 if (svcpt == NULL)
825                         GOTO(failed, rc = -ENOMEM);
826
827                 service->srv_parts[i] = svcpt;
828                 rc = ptlrpc_service_part_init(service, svcpt, cpt);
829                 if (rc != 0)
830                         GOTO(failed, rc);
831         }
832
833         ptlrpc_server_nthreads_check(service, conf);
834
835         rc = LNetSetLazyPortal(service->srv_req_portal);
836         LASSERT(rc == 0);
837
838         mutex_lock(&ptlrpc_all_services_mutex);
839         list_add(&service->srv_list, &ptlrpc_all_services);
840         mutex_unlock(&ptlrpc_all_services_mutex);
841
842         if (parent) {
843                 rc = ptlrpc_sysfs_register_service(parent, service);
844                 if (rc)
845                         GOTO(failed, rc);
846         }
847
848         if (debugfs_entry != NULL)
849                 ptlrpc_ldebugfs_register_service(debugfs_entry, service);
850
851         rc = ptlrpc_service_nrs_setup(service);
852         if (rc != 0)
853                 GOTO(failed, rc);
854
855         CDEBUG(D_NET, "%s: Started, listening on portal %d\n",
856                service->srv_name, service->srv_req_portal);
857
858         rc = ptlrpc_start_threads(service);
859         if (rc != 0) {
860                 CERROR("Failed to start threads for service %s: %d\n",
861                        service->srv_name, rc);
862                 GOTO(failed, rc);
863         }
864
865         RETURN(service);
866 failed:
867         ptlrpc_unregister_service(service);
868         RETURN(ERR_PTR(rc));
869 }
870 EXPORT_SYMBOL(ptlrpc_register_service);
871
872 /**
873  * to actually free the request, must be called without holding svc_lock.
874  * note it's caller's responsibility to unlink req->rq_list.
875  */
876 static void ptlrpc_server_free_request(struct ptlrpc_request *req)
877 {
878         LASSERT(atomic_read(&req->rq_refcount) == 0);
879         LASSERT(list_empty(&req->rq_timed_list));
880
881         /*
882          * DEBUG_REQ() assumes the reply state of a request with a valid
883          * ref will not be destroyed until that reference is dropped.
884          */
885         ptlrpc_req_drop_rs(req);
886
887         sptlrpc_svc_ctx_decref(req);
888
889         if (req != &req->rq_rqbd->rqbd_req) {
890                 /*
891                  * NB request buffers use an embedded
892                  * req if the incoming req unlinked the
893                  * MD; this isn't one of them!
894                  */
895                 ptlrpc_request_cache_free(req);
896         }
897 }
898
899 /**
900  * drop a reference count of the request. if it reaches 0, we either
901  * put it into history list, or free it immediately.
902  */
903 void ptlrpc_server_drop_request(struct ptlrpc_request *req)
904 {
905         struct ptlrpc_request_buffer_desc *rqbd = req->rq_rqbd;
906         struct ptlrpc_service_part        *svcpt = rqbd->rqbd_svcpt;
907         struct ptlrpc_service             *svc = svcpt->scp_service;
908         int                                refcount;
909
910         if (!atomic_dec_and_test(&req->rq_refcount))
911                 return;
912
913         if (req->rq_session.lc_state == LCS_ENTERED) {
914                 lu_context_exit(&req->rq_session);
915                 lu_context_fini(&req->rq_session);
916         }
917
918         if (req->rq_at_linked) {
919                 spin_lock(&svcpt->scp_at_lock);
920                 /*
921                  * recheck with lock, in case it's unlinked by
922                  * ptlrpc_at_check_timed()
923                  */
924                 if (likely(req->rq_at_linked))
925                         ptlrpc_at_remove_timed(req);
926                 spin_unlock(&svcpt->scp_at_lock);
927         }
928
929         LASSERT(list_empty(&req->rq_timed_list));
930
931         /* finalize request */
932         if (req->rq_export) {
933                 class_export_put(req->rq_export);
934                 req->rq_export = NULL;
935         }
936
937         spin_lock(&svcpt->scp_lock);
938
939         list_add(&req->rq_list, &rqbd->rqbd_reqs);
940
941         refcount = --(rqbd->rqbd_refcount);
942         if (refcount == 0) {
943                 /* request buffer is now idle: add to history */
944                 list_move_tail(&rqbd->rqbd_list, &svcpt->scp_hist_rqbds);
945                 svcpt->scp_hist_nrqbds++;
946
947                 /*
948                  * cull some history?
949                  * I expect only about 1 or 2 rqbds need to be recycled here
950                  */
951                 while (svcpt->scp_hist_nrqbds > svc->srv_hist_nrqbds_cpt_max) {
952                         rqbd = list_first_entry(&svcpt->scp_hist_rqbds,
953                                                 struct ptlrpc_request_buffer_desc,
954                                                 rqbd_list);
955
956                         list_del(&rqbd->rqbd_list);
957                         svcpt->scp_hist_nrqbds--;
958
959                         /*
960                          * remove rqbd's reqs from svc's req history while
961                          * I've got the service lock
962                          */
963                         list_for_each_entry(req, &rqbd->rqbd_reqs, rq_list) {
964                                 /* Track the highest culled req seq */
965                                 if (req->rq_history_seq >
966                                     svcpt->scp_hist_seq_culled) {
967                                         svcpt->scp_hist_seq_culled =
968                                                 req->rq_history_seq;
969                                 }
970                                 list_del(&req->rq_history_list);
971                         }
972
973                         spin_unlock(&svcpt->scp_lock);
974
975                         while ((req = list_first_entry_or_null(
976                                         &rqbd->rqbd_reqs,
977                                         struct ptlrpc_request, rq_list))) {
978                                 list_del(&req->rq_list);
979                                 ptlrpc_server_free_request(req);
980                         }
981
982                         spin_lock(&svcpt->scp_lock);
983                         /*
984                          * now all reqs including the embedded req has been
985                          * disposed, schedule request buffer for re-use
986                          * or free it to drain some in excess.
987                          */
988                         LASSERT(atomic_read(&rqbd->rqbd_req.rq_refcount) == 0);
989                         if (svcpt->scp_nrqbds_posted >=
990                             svc->srv_nbuf_per_group ||
991                             (svc->srv_nrqbds_max != 0 &&
992                              svcpt->scp_nrqbds_total > svc->srv_nrqbds_max) ||
993                             test_req_buffer_pressure) {
994                                 /* like in ptlrpc_free_rqbd() */
995                                 svcpt->scp_nrqbds_total--;
996                                 OBD_FREE_LARGE(rqbd->rqbd_buffer,
997                                                svc->srv_buf_size);
998                                 OBD_FREE_PTR(rqbd);
999                         } else {
1000                                 list_add_tail(&rqbd->rqbd_list,
1001                                               &svcpt->scp_rqbd_idle);
1002                         }
1003                 }
1004
1005                 spin_unlock(&svcpt->scp_lock);
1006         } else if (req->rq_reply_state && req->rq_reply_state->rs_prealloc) {
1007                 /* If we are low on memory, we are not interested in history */
1008                 list_del(&req->rq_list);
1009                 list_del_init(&req->rq_history_list);
1010
1011                 /* Track the highest culled req seq */
1012                 if (req->rq_history_seq > svcpt->scp_hist_seq_culled)
1013                         svcpt->scp_hist_seq_culled = req->rq_history_seq;
1014
1015                 spin_unlock(&svcpt->scp_lock);
1016
1017                 ptlrpc_server_free_request(req);
1018         } else {
1019                 spin_unlock(&svcpt->scp_lock);
1020         }
1021 }
1022
1023 static void ptlrpc_add_exp_list_nolock(struct ptlrpc_request *req,
1024                                        struct obd_export *export, bool hp)
1025 {
1026         __u16 tag = lustre_msg_get_tag(req->rq_reqmsg);
1027
1028         if (hp)
1029                 list_add(&req->rq_exp_list, &export->exp_hp_rpcs);
1030         else
1031                 list_add(&req->rq_exp_list, &export->exp_reg_rpcs);
1032         if (tag && export->exp_used_slots)
1033                 set_bit(tag - 1, export->exp_used_slots);
1034 }
1035
1036 static void ptlrpc_del_exp_list(struct ptlrpc_request *req)
1037 {
1038         __u16 tag = lustre_msg_get_tag(req->rq_reqmsg);
1039
1040         spin_lock(&req->rq_export->exp_rpc_lock);
1041         list_del_init(&req->rq_exp_list);
1042         if (tag && !req->rq_obsolete && req->rq_export->exp_used_slots)
1043                 clear_bit(tag - 1, req->rq_export->exp_used_slots);
1044         spin_unlock(&req->rq_export->exp_rpc_lock);
1045 }
1046
1047 /** Change request export and move hp request from old export to new */
1048 void ptlrpc_request_change_export(struct ptlrpc_request *req,
1049                                   struct obd_export *export)
1050 {
1051         if (req->rq_export != NULL) {
1052                 LASSERT(!list_empty(&req->rq_exp_list));
1053                 /* remove rq_exp_list from last export */
1054                 ptlrpc_del_exp_list(req);
1055                 /* export has one reference already, so it's safe to
1056                  * add req to export queue here and get another
1057                  * reference for request later
1058                  */
1059                 spin_lock(&export->exp_rpc_lock);
1060                 ptlrpc_add_exp_list_nolock(req, export, req->rq_ops != NULL);
1061                 spin_unlock(&export->exp_rpc_lock);
1062
1063                 class_export_rpc_dec(req->rq_export);
1064                 class_export_put(req->rq_export);
1065         }
1066
1067         /* request takes one export refcount */
1068         req->rq_export = class_export_get(export);
1069         class_export_rpc_inc(export);
1070 }
1071
1072 /**
1073  * to finish a request: stop sending more early replies, and release
1074  * the request.
1075  */
1076 static void ptlrpc_server_finish_request(struct ptlrpc_service_part *svcpt,
1077                                          struct ptlrpc_request *req)
1078 {
1079         ptlrpc_server_hpreq_fini(req);
1080
1081         ptlrpc_server_drop_request(req);
1082 }
1083
1084 /**
1085  * to finish an active request: stop sending more early replies, and release
1086  * the request. should be called after we finished handling the request.
1087  */
1088 static void ptlrpc_server_finish_active_request(
1089                                         struct ptlrpc_service_part *svcpt,
1090                                         struct ptlrpc_request *req)
1091 {
1092         spin_lock(&svcpt->scp_req_lock);
1093         ptlrpc_nrs_req_stop_nolock(req);
1094         svcpt->scp_nreqs_active--;
1095         if (req->rq_hp)
1096                 svcpt->scp_nhreqs_active--;
1097         spin_unlock(&svcpt->scp_req_lock);
1098
1099         ptlrpc_nrs_req_finalize(req);
1100
1101         if (req->rq_export != NULL)
1102                 class_export_rpc_dec(req->rq_export);
1103
1104         ptlrpc_server_finish_request(svcpt, req);
1105 }
1106
1107 /**
1108  * This function makes sure dead exports are evicted in a timely manner.
1109  * This function is only called when some export receives a message (i.e.,
1110  * the network is up.)
1111  */
1112 void ptlrpc_update_export_timer(struct obd_export *exp, time64_t extra_delay)
1113 {
1114         struct obd_export *oldest_exp;
1115         time64_t oldest_time, new_time;
1116
1117         ENTRY;
1118
1119         LASSERT(exp);
1120
1121         /*
1122          * Compensate for slow machines, etc, by faking our request time
1123          * into the future.  Although this can break the strict time-ordering
1124          * of the list, we can be really lazy here - we don't have to evict
1125          * at the exact right moment.  Eventually, all silent exports
1126          * will make it to the top of the list.
1127          */
1128
1129         /* Do not pay attention on 1sec or smaller renewals. */
1130         new_time = ktime_get_real_seconds() + extra_delay;
1131         if (exp->exp_last_request_time + 1 /*second */ >= new_time)
1132                 RETURN_EXIT;
1133
1134         exp->exp_last_request_time = new_time;
1135
1136         /*
1137          * exports may get disconnected from the chain even though the
1138          * export has references, so we must keep the spin lock while
1139          * manipulating the lists
1140          */
1141         spin_lock(&exp->exp_obd->obd_dev_lock);
1142
1143         if (list_empty(&exp->exp_obd_chain_timed)) {
1144                 /* this one is not timed */
1145                 spin_unlock(&exp->exp_obd->obd_dev_lock);
1146                 RETURN_EXIT;
1147         }
1148
1149         list_move_tail(&exp->exp_obd_chain_timed,
1150                        &exp->exp_obd->obd_exports_timed);
1151
1152         oldest_exp = list_entry(exp->exp_obd->obd_exports_timed.next,
1153                                 struct obd_export, exp_obd_chain_timed);
1154         oldest_time = oldest_exp->exp_last_request_time;
1155         spin_unlock(&exp->exp_obd->obd_dev_lock);
1156
1157         if (exp->exp_obd->obd_recovering) {
1158                 /* be nice to everyone during recovery */
1159                 EXIT;
1160                 return;
1161         }
1162
1163         /* Note - racing to start/reset the obd_eviction timer is safe */
1164         if (exp->exp_obd->obd_eviction_timer == 0) {
1165                 /* Check if the oldest entry is expired. */
1166                 if (ktime_get_real_seconds() >
1167                     oldest_time + PING_EVICT_TIMEOUT + extra_delay) {
1168                         /*
1169                          * We need a second timer, in case the net was down and
1170                          * it just came back. Since the pinger may skip every
1171                          * other PING_INTERVAL (see note in ptlrpc_pinger_main),
1172                          * we better wait for 3.
1173                          */
1174                         exp->exp_obd->obd_eviction_timer =
1175                                 ktime_get_real_seconds() + 3 * PING_INTERVAL;
1176                         CDEBUG(D_HA, "%s: Think about evicting %s from %lld\n",
1177                                exp->exp_obd->obd_name,
1178                                obd_export_nid2str(oldest_exp), oldest_time);
1179                 }
1180         } else {
1181                 if (ktime_get_real_seconds() >
1182                     (exp->exp_obd->obd_eviction_timer + extra_delay)) {
1183                         /*
1184                          * The evictor won't evict anyone who we've heard from
1185                          * recently, so we don't have to check before we start
1186                          * it.
1187                          */
1188                         if (!ping_evictor_wake(exp))
1189                                 exp->exp_obd->obd_eviction_timer = 0;
1190                 }
1191         }
1192
1193         EXIT;
1194 }
1195
1196 /**
1197  * Sanity check request \a req.
1198  * Return 0 if all is ok, error code otherwise.
1199  */
1200 static int ptlrpc_check_req(struct ptlrpc_request *req)
1201 {
1202         struct obd_device *obd = req->rq_export->exp_obd;
1203         int rc = 0;
1204
1205         if (unlikely(lustre_msg_get_conn_cnt(req->rq_reqmsg) <
1206                      req->rq_export->exp_conn_cnt)) {
1207                 DEBUG_REQ(D_RPCTRACE, req,
1208                           "DROPPING req from old connection %d < %d",
1209                           lustre_msg_get_conn_cnt(req->rq_reqmsg),
1210                           req->rq_export->exp_conn_cnt);
1211                 return -EEXIST;
1212         }
1213         if (unlikely(obd == NULL || obd->obd_fail)) {
1214                 /*
1215                  * Failing over, don't handle any more reqs,
1216                  * send error response instead.
1217                  */
1218                 CDEBUG(D_RPCTRACE, "Dropping req %p for failed obd %s\n",
1219                         req, (obd != NULL) ? obd->obd_name : "unknown");
1220                 rc = -ENODEV;
1221         } else if (lustre_msg_get_flags(req->rq_reqmsg) &
1222                    (MSG_REPLAY | MSG_REQ_REPLAY_DONE) &&
1223                    !obd->obd_recovering) {
1224                 DEBUG_REQ(D_ERROR, req,
1225                           "Invalid replay without recovery");
1226                 class_fail_export(req->rq_export);
1227                 rc = -ENODEV;
1228         } else if (lustre_msg_get_transno(req->rq_reqmsg) != 0 &&
1229                    !obd->obd_recovering) {
1230                 DEBUG_REQ(D_ERROR, req,
1231                           "Invalid req with transno %llu without recovery",
1232                           lustre_msg_get_transno(req->rq_reqmsg));
1233                 class_fail_export(req->rq_export);
1234                 rc = -ENODEV;
1235         }
1236
1237         if (unlikely(rc < 0)) {
1238                 req->rq_status = rc;
1239                 ptlrpc_error(req);
1240         }
1241         return rc;
1242 }
1243
1244 static void ptlrpc_at_set_timer(struct ptlrpc_service_part *svcpt)
1245 {
1246         struct ptlrpc_at_array *array = &svcpt->scp_at_array;
1247         time64_t next;
1248
1249         if (array->paa_count == 0) {
1250                 del_timer(&svcpt->scp_at_timer);
1251                 return;
1252         }
1253
1254         /* Set timer for closest deadline */
1255         next = array->paa_deadline - ktime_get_real_seconds() -
1256                at_early_margin;
1257         if (next <= 0) {
1258                 ptlrpc_at_timer(cfs_timer_cb_arg(svcpt, scp_at_timer));
1259         } else {
1260                 mod_timer(&svcpt->scp_at_timer,
1261                           jiffies + nsecs_to_jiffies(next * NSEC_PER_SEC));
1262                 CDEBUG(D_INFO, "armed %s at %+llds\n",
1263                        svcpt->scp_service->srv_name, next);
1264         }
1265 }
1266
1267 /* Add rpc to early reply check list */
1268 static int ptlrpc_at_add_timed(struct ptlrpc_request *req)
1269 {
1270         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
1271         struct ptlrpc_at_array *array = &svcpt->scp_at_array;
1272         struct ptlrpc_request *rq = NULL;
1273         __u32 index;
1274
1275         if (AT_OFF)
1276                 return(0);
1277
1278         if (req->rq_no_reply)
1279                 return 0;
1280
1281         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0)
1282                 return(-ENOSYS);
1283
1284         spin_lock(&svcpt->scp_at_lock);
1285         LASSERT(list_empty(&req->rq_timed_list));
1286
1287         div_u64_rem(req->rq_deadline, array->paa_size, &index);
1288         if (array->paa_reqs_count[index] > 0) {
1289                 /*
1290                  * latest rpcs will have the latest deadlines in the list,
1291                  * so search backward.
1292                  */
1293                 list_for_each_entry_reverse(rq, &array->paa_reqs_array[index],
1294                                             rq_timed_list) {
1295                         if (req->rq_deadline >= rq->rq_deadline) {
1296                                 list_add(&req->rq_timed_list,
1297                                          &rq->rq_timed_list);
1298                                 break;
1299                         }
1300                 }
1301         }
1302
1303         /* Add the request at the head of the list */
1304         if (list_empty(&req->rq_timed_list))
1305                 list_add(&req->rq_timed_list, &array->paa_reqs_array[index]);
1306
1307         spin_lock(&req->rq_lock);
1308         req->rq_at_linked = 1;
1309         spin_unlock(&req->rq_lock);
1310         req->rq_at_index = index;
1311         array->paa_reqs_count[index]++;
1312         array->paa_count++;
1313         if (array->paa_count == 1 || array->paa_deadline > req->rq_deadline) {
1314                 array->paa_deadline = req->rq_deadline;
1315                 ptlrpc_at_set_timer(svcpt);
1316         }
1317         spin_unlock(&svcpt->scp_at_lock);
1318
1319         return 0;
1320 }
1321
1322 static void ptlrpc_at_remove_timed(struct ptlrpc_request *req)
1323 {
1324         struct ptlrpc_at_array *array;
1325
1326         array = &req->rq_rqbd->rqbd_svcpt->scp_at_array;
1327
1328         /* NB: must call with hold svcpt::scp_at_lock */
1329         LASSERT(!list_empty(&req->rq_timed_list));
1330         list_del_init(&req->rq_timed_list);
1331
1332         spin_lock(&req->rq_lock);
1333         req->rq_at_linked = 0;
1334         spin_unlock(&req->rq_lock);
1335
1336         array->paa_reqs_count[req->rq_at_index]--;
1337         array->paa_count--;
1338 }
1339
1340 /*
1341  * Attempt to extend the request deadline by sending an early reply to the
1342  * client.
1343  */
1344 static int ptlrpc_at_send_early_reply(struct ptlrpc_request *req)
1345 {
1346         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
1347         struct ptlrpc_request *reqcopy;
1348         struct lustre_msg *reqmsg;
1349         timeout_t olddl = req->rq_deadline - ktime_get_real_seconds();
1350         time64_t newdl;
1351         int rc;
1352
1353         ENTRY;
1354
1355         if (CFS_FAIL_CHECK(OBD_FAIL_TGT_REPLAY_RECONNECT) ||
1356             CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_ENQ_RESEND)) {
1357                 /* don't send early reply */
1358                 RETURN(1);
1359         }
1360
1361         /*
1362          * deadline is when the client expects us to reply, margin is the
1363          * difference between clients' and servers' expectations
1364          */
1365         DEBUG_REQ(D_ADAPTTO, req,
1366                   "%ssending early reply (deadline %+ds, margin %+ds) for %d+%d",
1367                   AT_OFF ? "AT off - not " : "",
1368                   olddl, olddl - at_get(&svcpt->scp_at_estimate),
1369                   at_get(&svcpt->scp_at_estimate), at_extra);
1370
1371         if (AT_OFF)
1372                 RETURN(0);
1373
1374         if (olddl < 0) {
1375                 /* below message is checked in replay-ost-single.sh test_9 */
1376                 DEBUG_REQ(D_WARNING, req,
1377                           "Already past deadline (%+ds), not sending early reply. Consider increasing at_early_margin (%d)?",
1378                           olddl, at_early_margin);
1379
1380                 /* Return an error so we're not re-added to the timed list. */
1381                 RETURN(-ETIMEDOUT);
1382         }
1383
1384         if ((lustre_msghdr_get_flags(req->rq_reqmsg) &
1385              MSGHDR_AT_SUPPORT) == 0) {
1386                 DEBUG_REQ(D_INFO, req,
1387                           "Wanted to ask client for more time, but no AT support");
1388                 RETURN(-ENOSYS);
1389         }
1390
1391         if (req->rq_export &&
1392             lustre_msg_get_flags(req->rq_reqmsg) &
1393             (MSG_REPLAY | MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE)) {
1394                 struct obd_device *obd_exp = req->rq_export->exp_obd;
1395
1396                 /*
1397                  * During recovery, we don't want to send too many early
1398                  * replies, but on the other hand we want to make sure the
1399                  * client has enough time to resend if the rpc is lost. So
1400                  * during the recovery period send at least 4 early replies,
1401                  * spacing them every at_extra if we can. at_estimate should
1402                  * always equal this fixed value during recovery.
1403                  */
1404
1405                 /*
1406                  * Don't account request processing time into AT history
1407                  * during recovery, it is not service time we need but
1408                  * includes also waiting time for recovering clients
1409                  */
1410                 newdl = min_t(time64_t, at_extra,
1411                               obd_exp->obd_recovery_timeout / 4) +
1412                         ktime_get_real_seconds();
1413         } else {
1414                 /*
1415                  * We want to extend the request deadline by at_extra seconds,
1416                  * so we set our service estimate to reflect how much time has
1417                  * passed since this request arrived plus an additional
1418                  * at_extra seconds. The client will calculate the new deadline
1419                  * based on this service estimate (plus some additional time to
1420                  * account for network latency). See ptlrpc_at_recv_early_reply
1421                  */
1422                 at_measured(&svcpt->scp_at_estimate, at_extra +
1423                             ktime_get_real_seconds() -
1424                             req->rq_arrival_time.tv_sec);
1425                 newdl = req->rq_arrival_time.tv_sec +
1426                         at_get(&svcpt->scp_at_estimate);
1427         }
1428
1429         /*
1430          * Check to see if we've actually increased the deadline -
1431          * we may be past adaptive_max
1432          */
1433         if (req->rq_deadline >= newdl) {
1434                 DEBUG_REQ(D_WARNING, req,
1435                           "Could not add any time (%d/%lld), not sending early reply",
1436                           olddl, newdl - ktime_get_real_seconds());
1437                 RETURN(-ETIMEDOUT);
1438         }
1439
1440         reqcopy = ptlrpc_request_cache_alloc(GFP_NOFS);
1441         if (reqcopy == NULL)
1442                 RETURN(-ENOMEM);
1443         OBD_ALLOC_LARGE(reqmsg, req->rq_reqlen);
1444         if (!reqmsg)
1445                 GOTO(out_free, rc = -ENOMEM);
1446
1447         *reqcopy = *req;
1448         reqcopy->rq_reply_state = NULL;
1449         reqcopy->rq_rep_swab_mask = 0;
1450         reqcopy->rq_pack_bulk = 0;
1451         reqcopy->rq_pack_udesc = 0;
1452         reqcopy->rq_packed_final = 0;
1453         sptlrpc_svc_ctx_addref(reqcopy);
1454         /* We only need the reqmsg for the magic */
1455         reqcopy->rq_reqmsg = reqmsg;
1456         memcpy(reqmsg, req->rq_reqmsg, req->rq_reqlen);
1457
1458         /*
1459          * tgt_brw_read() and tgt_brw_write() may have decided not to reply.
1460          * Without this check, we would fail the rq_no_reply assertion in
1461          * ptlrpc_send_reply().
1462          */
1463         if (reqcopy->rq_no_reply)
1464                 GOTO(out, rc = -ETIMEDOUT);
1465
1466         LASSERT(atomic_read(&req->rq_refcount));
1467         /* if it is last refcount then early reply isn't needed */
1468         if (atomic_read(&req->rq_refcount) == 1) {
1469                 DEBUG_REQ(D_ADAPTTO, reqcopy,
1470                           "Normal reply already sent, abort early reply");
1471                 GOTO(out, rc = -EINVAL);
1472         }
1473
1474         /* Connection ref */
1475         reqcopy->rq_export = class_conn2export(
1476                         lustre_msg_get_handle(reqcopy->rq_reqmsg));
1477         if (reqcopy->rq_export == NULL)
1478                 GOTO(out, rc = -ENODEV);
1479
1480         /* RPC ref */
1481         class_export_rpc_inc(reqcopy->rq_export);
1482         if (reqcopy->rq_export->exp_obd &&
1483             reqcopy->rq_export->exp_obd->obd_fail)
1484                 GOTO(out_put, rc = -ENODEV);
1485
1486         rc = lustre_pack_reply_flags(reqcopy, 1, NULL, NULL, LPRFL_EARLY_REPLY);
1487         if (rc)
1488                 GOTO(out_put, rc);
1489
1490         rc = ptlrpc_send_reply(reqcopy, PTLRPC_REPLY_EARLY);
1491
1492         if (!rc) {
1493                 /* Adjust our own deadline to what we told the client */
1494                 req->rq_deadline = newdl;
1495                 req->rq_early_count++; /* number sent, server side */
1496         } else {
1497                 DEBUG_REQ(D_ERROR, req, "Early reply send failed: rc = %d", rc);
1498         }
1499
1500         /*
1501          * Free the (early) reply state from lustre_pack_reply.
1502          * (ptlrpc_send_reply takes it's own rs ref, so this is safe here)
1503          */
1504         ptlrpc_req_drop_rs(reqcopy);
1505
1506 out_put:
1507         class_export_rpc_dec(reqcopy->rq_export);
1508         class_export_put(reqcopy->rq_export);
1509 out:
1510         sptlrpc_svc_ctx_decref(reqcopy);
1511         OBD_FREE_LARGE(reqmsg, req->rq_reqlen);
1512 out_free:
1513         ptlrpc_request_cache_free(reqcopy);
1514         RETURN(rc);
1515 }
1516
1517 /*
1518  * Send early replies to everybody expiring within at_early_margin
1519  * asking for at_extra time
1520  */
1521 static int ptlrpc_at_check_timed(struct ptlrpc_service_part *svcpt)
1522 {
1523         struct ptlrpc_at_array *array = &svcpt->scp_at_array;
1524         struct ptlrpc_request *rq, *n;
1525         LIST_HEAD(work_list);
1526         __u32 index, count;
1527         time64_t deadline;
1528         time64_t now = ktime_get_real_seconds();
1529         s64 delay_ms;
1530         int first, counter = 0;
1531
1532         ENTRY;
1533         spin_lock(&svcpt->scp_at_lock);
1534         if (svcpt->scp_at_check == 0) {
1535                 spin_unlock(&svcpt->scp_at_lock);
1536                 RETURN(0);
1537         }
1538         delay_ms = ktime_ms_delta(ktime_get(), svcpt->scp_at_checktime);
1539         svcpt->scp_at_check = 0;
1540
1541         if (array->paa_count == 0) {
1542                 spin_unlock(&svcpt->scp_at_lock);
1543                 RETURN(0);
1544         }
1545
1546         /* The timer went off, but maybe the nearest rpc already completed. */
1547         first = array->paa_deadline - now;
1548         if (first > at_early_margin) {
1549                 /* We've still got plenty of time.  Reset the timer. */
1550                 ptlrpc_at_set_timer(svcpt);
1551                 spin_unlock(&svcpt->scp_at_lock);
1552                 RETURN(0);
1553         }
1554
1555         /*
1556          * We're close to a timeout, and we don't know how much longer the
1557          * server will take. Send early replies to everyone expiring soon.
1558          */
1559         deadline = -1;
1560         div_u64_rem(array->paa_deadline, array->paa_size, &index);
1561         count = array->paa_count;
1562         while (count > 0) {
1563                 count -= array->paa_reqs_count[index];
1564                 list_for_each_entry_safe(rq, n,
1565                                          &array->paa_reqs_array[index],
1566                                          rq_timed_list) {
1567                         if (rq->rq_deadline > now + at_early_margin) {
1568                                 /* update the earliest deadline */
1569                                 if (deadline == -1 ||
1570                                     rq->rq_deadline < deadline)
1571                                         deadline = rq->rq_deadline;
1572                                 break;
1573                         }
1574
1575                         /**
1576                          * ptlrpc_server_drop_request() may drop
1577                          * refcount to 0 already. Let's check this and
1578                          * don't add entry to work_list
1579                          */
1580                         if (likely(atomic_inc_not_zero(&rq->rq_refcount))) {
1581                                 ptlrpc_at_remove_timed(rq);
1582                                 list_add(&rq->rq_timed_list, &work_list);
1583                         } else {
1584                                 ptlrpc_at_remove_timed(rq);
1585                         }
1586
1587                         counter++;
1588                 }
1589
1590                 if (++index >= array->paa_size)
1591                         index = 0;
1592         }
1593         array->paa_deadline = deadline;
1594         /* we have a new earliest deadline, restart the timer */
1595         ptlrpc_at_set_timer(svcpt);
1596
1597         spin_unlock(&svcpt->scp_at_lock);
1598
1599         CDEBUG(D_ADAPTTO,
1600                "timeout in %+ds, asking for %d secs on %d early replies\n",
1601                first, at_extra, counter);
1602         if (first < 0) {
1603                 /*
1604                  * We're already past request deadlines before we even get a
1605                  * chance to send early replies
1606                  */
1607                 LCONSOLE_WARN("%s: This server is not able to keep up with request traffic (cpu-bound).\n",
1608                               svcpt->scp_service->srv_name);
1609                 CWARN("earlyQ=%d reqQ=%d recA=%d, svcEst=%d, delay=%lldms\n",
1610                       counter, svcpt->scp_nreqs_incoming,
1611                       svcpt->scp_nreqs_active,
1612                       at_get(&svcpt->scp_at_estimate), delay_ms);
1613         }
1614
1615         /*
1616          * we took additional refcount so entries can't be deleted from list, no
1617          * locking is needed
1618          */
1619         while ((rq = list_first_entry_or_null(&work_list,
1620                                               struct ptlrpc_request,
1621                                               rq_timed_list)) != NULL) {
1622                 list_del_init(&rq->rq_timed_list);
1623
1624                 if (ptlrpc_at_send_early_reply(rq) == 0)
1625                         ptlrpc_at_add_timed(rq);
1626
1627                 ptlrpc_server_drop_request(rq);
1628         }
1629
1630         RETURN(1); /* return "did_something" for liblustre */
1631 }
1632
1633 /*
1634  * Check if we are already handling earlier incarnation of this request.
1635  * Called under &req->rq_export->exp_rpc_lock locked
1636  */
1637 static struct ptlrpc_request*
1638 ptlrpc_server_check_resend_in_progress(struct ptlrpc_request *req)
1639 {
1640         struct ptlrpc_request *tmp = NULL;
1641
1642         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))
1643                 return NULL;
1644
1645         /*
1646          * This list should not be longer than max_requests in
1647          * flights on the client, so it is not all that long.
1648          * Also we only hit this codepath in case of a resent
1649          * request which makes it even more rarely hit
1650          */
1651         list_for_each_entry(tmp, &req->rq_export->exp_reg_rpcs,
1652                                 rq_exp_list) {
1653                 /* Found duplicate one */
1654                 if (tmp->rq_xid == req->rq_xid)
1655                         goto found;
1656         }
1657         list_for_each_entry(tmp, &req->rq_export->exp_hp_rpcs,
1658                                 rq_exp_list) {
1659                 /* Found duplicate one */
1660                 if (tmp->rq_xid == req->rq_xid)
1661                         goto found;
1662         }
1663         return NULL;
1664
1665 found:
1666         DEBUG_REQ(D_HA, req, "Found duplicate req in processing");
1667         DEBUG_REQ(D_HA, tmp, "Request being processed");
1668         return tmp;
1669 }
1670
1671 #ifdef HAVE_SERVER_SUPPORT
1672 static void ptlrpc_server_mark_obsolete(struct ptlrpc_request *req)
1673 {
1674         req->rq_obsolete = 1;
1675 }
1676
1677 static void
1678 ptlrpc_server_mark_in_progress_obsolete(struct ptlrpc_request *req)
1679 {
1680         struct ptlrpc_request   *tmp = NULL;
1681         __u16                   tag;
1682
1683         if (!tgt_is_increasing_xid_client(req->rq_export) ||
1684             req->rq_export->exp_used_slots == NULL)
1685                 return;
1686
1687         tag = lustre_msg_get_tag(req->rq_reqmsg);
1688         if (tag == 0)
1689                 return;
1690
1691         if (!test_bit(tag - 1, req->rq_export->exp_used_slots))
1692                 return;
1693
1694         /* This list should not be longer than max_requests in
1695          * flights on the client, so it is not all that long.
1696          * Also we only hit this codepath in case of a resent
1697          * request which makes it even more rarely hit */
1698         list_for_each_entry(tmp, &req->rq_export->exp_reg_rpcs, rq_exp_list) {
1699                 if (tag == lustre_msg_get_tag(tmp->rq_reqmsg) &&
1700                     req->rq_xid > tmp->rq_xid)
1701                         ptlrpc_server_mark_obsolete(tmp);
1702
1703         }
1704         list_for_each_entry(tmp, &req->rq_export->exp_hp_rpcs, rq_exp_list) {
1705                 if (tag == lustre_msg_get_tag(tmp->rq_reqmsg) &&
1706                     req->rq_xid > tmp->rq_xid)
1707                         ptlrpc_server_mark_obsolete(tmp);
1708         }
1709 }
1710 #endif
1711
1712 /**
1713  * Check if a request should be assigned with a high priority.
1714  *
1715  * \retval      < 0: error occurred
1716  *                0: normal RPC request
1717  *               +1: high priority request
1718  */
1719 static int ptlrpc_server_hpreq_init(struct ptlrpc_service_part *svcpt,
1720                                     struct ptlrpc_request *req)
1721 {
1722         int rc = 0;
1723
1724         ENTRY;
1725         if (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL) {
1726                 rc = svcpt->scp_service->srv_ops.so_hpreq_handler(req);
1727                 if (rc < 0)
1728                         RETURN(rc);
1729
1730                 LASSERT(rc == 0);
1731         }
1732
1733         if (req->rq_export != NULL && req->rq_ops != NULL) {
1734                 /*
1735                  * Perform request specific check. We should do this
1736                  * check before the request is added into exp_hp_rpcs
1737                  * list otherwise it may hit swab race at LU-1044.
1738                  */
1739                 if (req->rq_ops->hpreq_check != NULL) {
1740                         rc = req->rq_ops->hpreq_check(req);
1741                         if (rc == -ESTALE) {
1742                                 req->rq_status = rc;
1743                                 ptlrpc_error(req);
1744                         }
1745                         /*
1746                          * can only return error,
1747                          * 0 for normal request,
1748                          * or 1 for high priority request
1749                          */
1750                         LASSERT(rc <= 1);
1751                 }
1752         }
1753
1754         RETURN(rc);
1755 }
1756
1757 /** Remove the request from the export list. */
1758 static void ptlrpc_server_hpreq_fini(struct ptlrpc_request *req)
1759 {
1760         ENTRY;
1761         if (req->rq_export) {
1762                 /*
1763                  * refresh lock timeout again so that client has more
1764                  * room to send lock cancel RPC.
1765                  */
1766                 if (req->rq_ops && req->rq_ops->hpreq_fini)
1767                         req->rq_ops->hpreq_fini(req);
1768
1769                 ptlrpc_del_exp_list(req);
1770         }
1771         EXIT;
1772 }
1773
1774 static int ptlrpc_hpreq_check(struct ptlrpc_request *req)
1775 {
1776         return 1;
1777 }
1778
1779 static struct ptlrpc_hpreq_ops ptlrpc_hpreq_common = {
1780         .hpreq_check       = ptlrpc_hpreq_check,
1781 };
1782
1783 /* Hi-Priority RPC check by RPC operation code. */
1784 int ptlrpc_hpreq_handler(struct ptlrpc_request *req)
1785 {
1786         int opc = lustre_msg_get_opc(req->rq_reqmsg);
1787
1788         /*
1789          * Check for export to let only reconnects for not yet evicted
1790          * export to become a HP rpc.
1791          */
1792         if ((req->rq_export != NULL) &&
1793             (opc == OBD_PING || opc == MDS_CONNECT || opc == OST_CONNECT))
1794                 req->rq_ops = &ptlrpc_hpreq_common;
1795
1796         return 0;
1797 }
1798 EXPORT_SYMBOL(ptlrpc_hpreq_handler);
1799
1800 static int ptlrpc_server_request_add(struct ptlrpc_service_part *svcpt,
1801                                      struct ptlrpc_request *req)
1802 {
1803         int rc;
1804         bool hp;
1805         struct ptlrpc_request *orig;
1806
1807         ENTRY;
1808
1809         rc = ptlrpc_server_hpreq_init(svcpt, req);
1810         if (rc < 0)
1811                 RETURN(rc);
1812
1813         hp = rc > 0;
1814         ptlrpc_nrs_req_initialize(svcpt, req, hp);
1815
1816         while (req->rq_export != NULL) {
1817                 struct obd_export *exp = req->rq_export;
1818
1819                 /*
1820                  * do search for duplicated xid and the adding to the list
1821                  * atomically
1822                  */
1823                 spin_lock_bh(&exp->exp_rpc_lock);
1824 #ifdef HAVE_SERVER_SUPPORT
1825                 ptlrpc_server_mark_in_progress_obsolete(req);
1826 #endif
1827                 orig = ptlrpc_server_check_resend_in_progress(req);
1828                 if (orig && OBD_FAIL_PRECHECK(OBD_FAIL_PTLRPC_RESEND_RACE)) {
1829                         spin_unlock_bh(&exp->exp_rpc_lock);
1830
1831                         OBD_RACE(OBD_FAIL_PTLRPC_RESEND_RACE);
1832                         msleep(4 * MSEC_PER_SEC);
1833                         continue;
1834                 }
1835
1836                 if (orig && likely(atomic_inc_not_zero(&orig->rq_refcount))) {
1837                         bool linked;
1838
1839                         spin_unlock_bh(&exp->exp_rpc_lock);
1840
1841                         /*
1842                          * When the client resend request and the server has
1843                          * the previous copy of it, we need to update deadlines,
1844                          * to be sure that the client and the server have equal
1845                          *  request deadlines.
1846                          */
1847
1848                         spin_lock(&orig->rq_rqbd->rqbd_svcpt->scp_at_lock);
1849                         linked = orig->rq_at_linked;
1850                         if (likely(linked))
1851                                 ptlrpc_at_remove_timed(orig);
1852                         spin_unlock(&orig->rq_rqbd->rqbd_svcpt->scp_at_lock);
1853                         orig->rq_deadline = req->rq_deadline;
1854                         orig->rq_rep_mbits = req->rq_rep_mbits;
1855                         if (likely(linked))
1856                                 ptlrpc_at_add_timed(orig);
1857                         ptlrpc_server_drop_request(orig);
1858                         ptlrpc_nrs_req_finalize(req);
1859
1860                         /* don't mark slot unused for resend in progress */
1861                         req->rq_obsolete = 1;
1862
1863                         RETURN(-EBUSY);
1864                 }
1865
1866                 ptlrpc_add_exp_list_nolock(req, exp, hp || req->rq_ops != NULL);
1867
1868                 spin_unlock_bh(&exp->exp_rpc_lock);
1869                 break;
1870         }
1871
1872         /*
1873          * the current thread is not the processing thread for this request
1874          * since that, but request is in exp_hp_list and can be find there.
1875          * Remove all relations between request and old thread.
1876          */
1877         req->rq_svc_thread->t_env->le_ses = NULL;
1878         req->rq_svc_thread = NULL;
1879         req->rq_session.lc_thread = NULL;
1880
1881         ptlrpc_nrs_req_add(svcpt, req, hp);
1882
1883         RETURN(0);
1884 }
1885
1886 /**
1887  * Allow to handle high priority request
1888  * User can call it w/o any lock but need to hold
1889  * ptlrpc_service_part::scp_req_lock to get reliable result
1890  */
1891 static bool ptlrpc_server_allow_high(struct ptlrpc_service_part *svcpt,
1892                                      bool force)
1893 {
1894         int running = svcpt->scp_nthrs_running;
1895
1896         if (!nrs_svcpt_has_hp(svcpt))
1897                 return false;
1898
1899         if (force)
1900                 return true;
1901
1902         if (ptlrpc_nrs_req_throttling_nolock(svcpt, true))
1903                 return false;
1904
1905         if (unlikely(svcpt->scp_service->srv_req_portal == MDS_REQUEST_PORTAL &&
1906                      CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND))) {
1907                 /* leave just 1 thread for normal RPCs */
1908                 running = PTLRPC_NTHRS_INIT;
1909                 if (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL)
1910                         running += 1;
1911         }
1912
1913         if (svcpt->scp_nreqs_active >= running - 1)
1914                 return false;
1915
1916         if (svcpt->scp_nhreqs_active == 0)
1917                 return true;
1918
1919         return !ptlrpc_nrs_req_pending_nolock(svcpt, false) ||
1920                svcpt->scp_hreq_count < svcpt->scp_service->srv_hpreq_ratio;
1921 }
1922
1923 static bool ptlrpc_server_high_pending(struct ptlrpc_service_part *svcpt,
1924                                        bool force)
1925 {
1926         return ptlrpc_server_allow_high(svcpt, force) &&
1927                ptlrpc_nrs_req_pending_nolock(svcpt, true);
1928 }
1929
1930 /**
1931  * Only allow normal priority requests on a service that has a high-priority
1932  * queue if forced (i.e. cleanup), if there are other high priority requests
1933  * already being processed (i.e. those threads can service more high-priority
1934  * requests), or if there are enough idle threads that a later thread can do
1935  * a high priority request.
1936  * User can call it w/o any lock but need to hold
1937  * ptlrpc_service_part::scp_req_lock to get reliable result
1938  */
1939 static bool ptlrpc_server_allow_normal(struct ptlrpc_service_part *svcpt,
1940                                        bool force)
1941 {
1942         int running = svcpt->scp_nthrs_running;
1943
1944         if (unlikely(svcpt->scp_service->srv_req_portal == MDS_REQUEST_PORTAL &&
1945                      CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND))) {
1946                 /* leave just 1 thread for normal RPCs */
1947                 running = PTLRPC_NTHRS_INIT;
1948                 if (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL)
1949                         running += 1;
1950         }
1951
1952         if (force)
1953                 return true;
1954
1955         if (ptlrpc_nrs_req_throttling_nolock(svcpt, false))
1956                 return false;
1957
1958         if (svcpt->scp_nreqs_active < running - 2)
1959                 return true;
1960
1961         if (svcpt->scp_nreqs_active >= running - 1)
1962                 return false;
1963
1964         return svcpt->scp_nhreqs_active > 0 || !nrs_svcpt_has_hp(svcpt);
1965 }
1966
1967 static bool ptlrpc_server_normal_pending(struct ptlrpc_service_part *svcpt,
1968                                          bool force)
1969 {
1970         return ptlrpc_server_allow_normal(svcpt, force) &&
1971                ptlrpc_nrs_req_pending_nolock(svcpt, false);
1972 }
1973
1974 /**
1975  * Returns true if there are requests available in incoming
1976  * request queue for processing and it is allowed to fetch them.
1977  * User can call it w/o any lock but need to hold ptlrpc_service::scp_req_lock
1978  * to get reliable result
1979  * \see ptlrpc_server_allow_normal
1980  * \see ptlrpc_server_allow high
1981  */
1982 static inline
1983 bool ptlrpc_server_request_pending(struct ptlrpc_service_part *svcpt,
1984                                    bool force)
1985 {
1986         return ptlrpc_server_high_pending(svcpt, force) ||
1987                ptlrpc_server_normal_pending(svcpt, force);
1988 }
1989
1990 /**
1991  * Fetch a request for processing from queue of unprocessed requests.
1992  * Favors high-priority requests.
1993  * Returns a pointer to fetched request.
1994  */
1995 static struct ptlrpc_request *
1996 ptlrpc_server_request_get(struct ptlrpc_service_part *svcpt, bool force)
1997 {
1998         struct ptlrpc_request *req = NULL;
1999
2000         ENTRY;
2001
2002         spin_lock(&svcpt->scp_req_lock);
2003
2004         if (ptlrpc_server_high_pending(svcpt, force)) {
2005                 req = ptlrpc_nrs_req_get_nolock(svcpt, true, force);
2006                 if (req != NULL) {
2007                         svcpt->scp_hreq_count++;
2008                         goto got_request;
2009                 }
2010         }
2011
2012         if (ptlrpc_server_normal_pending(svcpt, force)) {
2013                 req = ptlrpc_nrs_req_get_nolock(svcpt, false, force);
2014                 if (req != NULL) {
2015                         svcpt->scp_hreq_count = 0;
2016                         goto got_request;
2017                 }
2018         }
2019
2020         spin_unlock(&svcpt->scp_req_lock);
2021         RETURN(NULL);
2022
2023 got_request:
2024         svcpt->scp_nreqs_active++;
2025         if (req->rq_hp)
2026                 svcpt->scp_nhreqs_active++;
2027
2028         spin_unlock(&svcpt->scp_req_lock);
2029
2030         if (likely(req->rq_export))
2031                 class_export_rpc_inc(req->rq_export);
2032
2033         RETURN(req);
2034 }
2035
2036 /**
2037  * Handle freshly incoming reqs, add to timed early reply list,
2038  * pass on to regular request queue.
2039  * All incoming requests pass through here before getting into
2040  * ptlrpc_server_handle_req later on.
2041  */
2042 static int ptlrpc_server_handle_req_in(struct ptlrpc_service_part *svcpt,
2043                                        struct ptlrpc_thread *thread)
2044 {
2045         struct ptlrpc_service *svc = svcpt->scp_service;
2046         struct ptlrpc_request *req;
2047         __u32 deadline;
2048         __u32 opc;
2049         int rc;
2050
2051         ENTRY;
2052
2053         spin_lock(&svcpt->scp_lock);
2054         if (list_empty(&svcpt->scp_req_incoming)) {
2055                 spin_unlock(&svcpt->scp_lock);
2056                 RETURN(0);
2057         }
2058
2059         req = list_first_entry(&svcpt->scp_req_incoming,
2060                                struct ptlrpc_request, rq_list);
2061         list_del_init(&req->rq_list);
2062         svcpt->scp_nreqs_incoming--;
2063         /*
2064          * Consider this still a "queued" request as far as stats are
2065          * concerned
2066          */
2067         spin_unlock(&svcpt->scp_lock);
2068
2069         /* go through security check/transform */
2070         rc = sptlrpc_svc_unwrap_request(req);
2071         switch (rc) {
2072         case SECSVC_OK:
2073                 break;
2074         case SECSVC_COMPLETE:
2075                 target_send_reply(req, 0, OBD_FAIL_MDS_ALL_REPLY_NET);
2076                 goto err_req;
2077         case SECSVC_DROP:
2078                 goto err_req;
2079         default:
2080                 LBUG();
2081         }
2082
2083         /*
2084          * for null-flavored rpc, msg has been unpacked by sptlrpc, although
2085          * redo it wouldn't be harmful.
2086          */
2087         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
2088                 rc = ptlrpc_unpack_req_msg(req, req->rq_reqlen);
2089                 if (rc != 0) {
2090                         CERROR("error unpacking request: ptl %d from %s x%llu\n",
2091                                svc->srv_req_portal, libcfs_id2str(req->rq_peer),
2092                                req->rq_xid);
2093                         goto err_req;
2094                 }
2095         }
2096
2097         rc = lustre_unpack_req_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
2098         if (rc) {
2099                 CERROR("error unpacking ptlrpc body: ptl %d from %s x %llu\n",
2100                        svc->srv_req_portal, libcfs_id2str(req->rq_peer),
2101                        req->rq_xid);
2102                 goto err_req;
2103         }
2104
2105         opc = lustre_msg_get_opc(req->rq_reqmsg);
2106         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DROP_REQ_OPC) &&
2107             opc == cfs_fail_val) {
2108                 CERROR("drop incoming rpc opc %u, x%llu\n",
2109                        cfs_fail_val, req->rq_xid);
2110                 goto err_req;
2111         }
2112
2113         rc = -EINVAL;
2114         if (lustre_msg_get_type(req->rq_reqmsg) != PTL_RPC_MSG_REQUEST) {
2115                 CERROR("wrong packet type received (type=%u) from %s\n",
2116                        lustre_msg_get_type(req->rq_reqmsg),
2117                        libcfs_id2str(req->rq_peer));
2118                 goto err_req;
2119         }
2120
2121         switch (opc) {
2122         case MDS_WRITEPAGE:
2123         case OST_WRITE:
2124         case OUT_UPDATE:
2125                 req->rq_bulk_write = 1;
2126                 break;
2127         case MDS_READPAGE:
2128         case OST_READ:
2129         case MGS_CONFIG_READ:
2130                 req->rq_bulk_read = 1;
2131                 break;
2132         }
2133
2134         CDEBUG(D_RPCTRACE, "got req x%llu\n", req->rq_xid);
2135
2136         req->rq_export = class_conn2export(
2137                 lustre_msg_get_handle(req->rq_reqmsg));
2138         if (req->rq_export) {
2139                 rc = ptlrpc_check_req(req);
2140                 if (rc == 0) {
2141                         rc = sptlrpc_target_export_check(req->rq_export, req);
2142                         if (rc)
2143                                 DEBUG_REQ(D_ERROR, req,
2144                                           "DROPPING req with illegal security flavor");
2145                 }
2146
2147                 if (rc)
2148                         goto err_req;
2149                 ptlrpc_update_export_timer(req->rq_export, 0);
2150         }
2151
2152         /* req_in handling should/must be fast */
2153         if (ktime_get_real_seconds() - req->rq_arrival_time.tv_sec > 5)
2154                 DEBUG_REQ(D_WARNING, req, "Slow req_in handling %llds",
2155                           ktime_get_real_seconds() -
2156                           req->rq_arrival_time.tv_sec);
2157
2158         /* Set rpc server deadline and add it to the timed list */
2159         deadline = (lustre_msghdr_get_flags(req->rq_reqmsg) &
2160                     MSGHDR_AT_SUPPORT) ?
2161                     /* The max time the client expects us to take */
2162                     lustre_msg_get_timeout(req->rq_reqmsg) : obd_timeout;
2163
2164         req->rq_deadline = req->rq_arrival_time.tv_sec + deadline;
2165         if (unlikely(deadline == 0)) {
2166                 DEBUG_REQ(D_ERROR, req, "Dropping request with 0 timeout");
2167                 goto err_req;
2168         }
2169
2170         /* Skip early reply */
2171         if (OBD_FAIL_PRECHECK(OBD_FAIL_MDS_RESEND))
2172                 req->rq_deadline += obd_timeout;
2173
2174         req->rq_svc_thread = thread;
2175         if (thread != NULL) {
2176                 /*
2177                  * initialize request session, it is needed for request
2178                  * processing by target
2179                  */
2180                 rc = lu_context_init(&req->rq_session, LCT_SERVER_SESSION |
2181                                                        LCT_NOREF);
2182                 if (rc) {
2183                         CERROR("%s: failure to initialize session: rc = %d\n",
2184                                thread->t_name, rc);
2185                         goto err_req;
2186                 }
2187                 req->rq_session.lc_thread = thread;
2188                 lu_context_enter(&req->rq_session);
2189                 thread->t_env->le_ses = &req->rq_session;
2190         }
2191
2192
2193         if (unlikely(OBD_FAIL_PRECHECK(OBD_FAIL_PTLRPC_ENQ_RESEND) &&
2194                      (opc == LDLM_ENQUEUE) &&
2195                      (lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT)))
2196                 OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_ENQ_RESEND, 6);
2197
2198         ptlrpc_at_add_timed(req);
2199
2200         if (opc != OST_CONNECT && opc != MDS_CONNECT &&
2201             opc != MGS_CONNECT && req->rq_export != NULL) {
2202                 if (exp_connect_flags2(req->rq_export) & OBD_CONNECT2_REP_MBITS)
2203                         req->rq_rep_mbits = lustre_msg_get_mbits(req->rq_reqmsg);
2204         }
2205
2206         /* Move it over to the request processing queue */
2207         rc = ptlrpc_server_request_add(svcpt, req);
2208         if (rc)
2209                 GOTO(err_req, rc);
2210
2211         wake_up(&svcpt->scp_waitq);
2212         RETURN(1);
2213
2214 err_req:
2215         ptlrpc_server_finish_request(svcpt, req);
2216
2217         RETURN(1);
2218 }
2219
2220 /**
2221  * Main incoming request handling logic.
2222  * Calls handler function from service to do actual processing.
2223  */
2224 static int ptlrpc_server_handle_request(struct ptlrpc_service_part *svcpt,
2225                                         struct ptlrpc_thread *thread)
2226 {
2227         struct ptlrpc_service *svc = svcpt->scp_service;
2228         struct ptlrpc_request *request;
2229         ktime_t work_start;
2230         ktime_t work_end;
2231         ktime_t arrived;
2232         s64 timediff_usecs;
2233         s64 arrived_usecs;
2234         int fail_opc = 0;
2235
2236         ENTRY;
2237
2238         request = ptlrpc_server_request_get(svcpt, false);
2239         if (request == NULL)
2240                 RETURN(0);
2241
2242         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT))
2243                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT;
2244         else if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_TIMEOUT))
2245                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_TIMEOUT;
2246
2247         if (unlikely(fail_opc)) {
2248                 if (request->rq_export && request->rq_ops)
2249                         OBD_FAIL_TIMEOUT(fail_opc, 4);
2250         }
2251
2252         ptlrpc_rqphase_move(request, RQ_PHASE_INTERPRET);
2253
2254         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DUMP_LOG))
2255                 libcfs_debug_dumplog();
2256
2257         work_start = ktime_get_real();
2258         arrived = timespec64_to_ktime(request->rq_arrival_time);
2259         timediff_usecs = ktime_us_delta(work_start, arrived);
2260         if (likely(svc->srv_stats != NULL)) {
2261                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQWAIT_CNTR,
2262                                     timediff_usecs);
2263                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQQDEPTH_CNTR,
2264                                     svcpt->scp_nreqs_incoming);
2265                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQACTIVE_CNTR,
2266                                     svcpt->scp_nreqs_active);
2267                 lprocfs_counter_add(svc->srv_stats, PTLRPC_TIMEOUT,
2268                                     at_get(&svcpt->scp_at_estimate));
2269         }
2270
2271         if (likely(request->rq_export)) {
2272                 if (unlikely(ptlrpc_check_req(request)))
2273                         goto put_conn;
2274                 ptlrpc_update_export_timer(request->rq_export,
2275                                            div_u64(timediff_usecs,
2276                                                    USEC_PER_SEC / 2));
2277         }
2278
2279         /*
2280          * Discard requests queued for longer than the deadline.
2281          * The deadline is increased if we send an early reply.
2282          */
2283         if (ktime_get_real_seconds() > request->rq_deadline) {
2284                 DEBUG_REQ(D_ERROR, request,
2285                           "Dropping timed-out request from %s: deadline %lld/%llds ago",
2286                           libcfs_id2str(request->rq_peer),
2287                           request->rq_deadline -
2288                           request->rq_arrival_time.tv_sec,
2289                           ktime_get_real_seconds() - request->rq_deadline);
2290                 goto put_conn;
2291         }
2292
2293         CDEBUG(D_RPCTRACE,
2294                "Handling RPC req@%p pname:cluuid+ref:pid:xid:nid:opc:job %s:%s+%d:%d:x%llu:%s:%d:%s\n",
2295                request, current->comm,
2296                (request->rq_export ?
2297                 (char *)request->rq_export->exp_client_uuid.uuid : "0"),
2298                (request->rq_export ?
2299                 refcount_read(&request->rq_export->exp_handle.h_ref) : -99),
2300                lustre_msg_get_status(request->rq_reqmsg), request->rq_xid,
2301                libcfs_id2str(request->rq_peer),
2302                lustre_msg_get_opc(request->rq_reqmsg),
2303                lustre_msg_get_jobid(request->rq_reqmsg) ?: "");
2304
2305         if (lustre_msg_get_opc(request->rq_reqmsg) != OBD_PING)
2306                 CFS_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_PAUSE_REQ, cfs_fail_val);
2307
2308         CDEBUG(D_NET, "got req %llu\n", request->rq_xid);
2309
2310         /* re-assign request and sesson thread to the current one */
2311         request->rq_svc_thread = thread;
2312         if (thread != NULL) {
2313                 LASSERT(request->rq_session.lc_thread == NULL);
2314                 request->rq_session.lc_thread = thread;
2315                 thread->t_env->le_ses = &request->rq_session;
2316         }
2317         svc->srv_ops.so_req_handler(request);
2318
2319         ptlrpc_rqphase_move(request, RQ_PHASE_COMPLETE);
2320
2321 put_conn:
2322         if (unlikely(ktime_get_real_seconds() > request->rq_deadline)) {
2323                 DEBUG_REQ(D_WARNING, request,
2324                           "Request took longer than estimated (%lld/%llds); client may timeout",
2325                           request->rq_deadline -
2326                           request->rq_arrival_time.tv_sec,
2327                           ktime_get_real_seconds() - request->rq_deadline);
2328         }
2329
2330         work_end = ktime_get_real();
2331         timediff_usecs = ktime_us_delta(work_end, work_start);
2332         arrived_usecs = ktime_us_delta(work_end, arrived);
2333         CDEBUG(D_RPCTRACE,
2334                "Handled RPC req@%p pname:cluuid+ref:pid:xid:nid:opc:job %s:%s+%d:%d:x%llu:%s:%d:%s Request processed in %lldus (%lldus total) trans %llu rc %d/%d\n",
2335                request, current->comm,
2336                (request->rq_export ?
2337                (char *)request->rq_export->exp_client_uuid.uuid : "0"),
2338                (request->rq_export ?
2339                 refcount_read(&request->rq_export->exp_handle.h_ref) : -99),
2340                lustre_msg_get_status(request->rq_reqmsg),
2341                request->rq_xid,
2342                libcfs_id2str(request->rq_peer),
2343                lustre_msg_get_opc(request->rq_reqmsg),
2344                lustre_msg_get_jobid(request->rq_reqmsg) ?: "",
2345                timediff_usecs,
2346                arrived_usecs,
2347                (request->rq_repmsg ?
2348                lustre_msg_get_transno(request->rq_repmsg) :
2349                request->rq_transno),
2350                request->rq_status,
2351                (request->rq_repmsg ?
2352                lustre_msg_get_status(request->rq_repmsg) : -999));
2353         if (likely(svc->srv_stats != NULL && request->rq_reqmsg != NULL)) {
2354                 __u32 op = lustre_msg_get_opc(request->rq_reqmsg);
2355                 int opc = opcode_offset(op);
2356
2357                 if (opc > 0 && !(op == LDLM_ENQUEUE || op == MDS_REINT)) {
2358                         LASSERT(opc < LUSTRE_MAX_OPCODES);
2359                         lprocfs_counter_add(svc->srv_stats,
2360                                             opc + EXTRA_MAX_OPCODES,
2361                                             timediff_usecs);
2362                 }
2363         }
2364         if (unlikely(request->rq_early_count)) {
2365                 DEBUG_REQ(D_ADAPTTO, request,
2366                           "sent %d early replies before finishing in %llds",
2367                           request->rq_early_count,
2368                           div_u64(arrived_usecs, USEC_PER_SEC));
2369         }
2370
2371         ptlrpc_server_finish_active_request(svcpt, request);
2372
2373         RETURN(1);
2374 }
2375
2376 /**
2377  * An internal function to process a single reply state object.
2378  */
2379 static int ptlrpc_handle_rs(struct ptlrpc_reply_state *rs)
2380 {
2381         struct ptlrpc_service_part *svcpt = rs->rs_svcpt;
2382         struct ptlrpc_service *svc = svcpt->scp_service;
2383         struct obd_export *exp;
2384         int nlocks;
2385         int been_handled;
2386
2387         ENTRY;
2388
2389         exp = rs->rs_export;
2390
2391         LASSERT(rs->rs_difficult);
2392         LASSERT(rs->rs_scheduled);
2393         LASSERT(list_empty(&rs->rs_list));
2394
2395         /*
2396          * The disk commit callback holds exp_uncommitted_replies_lock while it
2397          * iterates over newly committed replies, removing them from
2398          * exp_uncommitted_replies.  It then drops this lock and schedules the
2399          * replies it found for handling here.
2400          *
2401          * We can avoid contention for exp_uncommitted_replies_lock between the
2402          * HRT threads and further commit callbacks by checking rs_committed
2403          * which is set in the commit callback while it holds both
2404          * rs_lock and exp_uncommitted_reples.
2405          *
2406          * If we see rs_committed clear, the commit callback _may_ not have
2407          * handled this reply yet and we race with it to grab
2408          * exp_uncommitted_replies_lock before removing the reply from
2409          * exp_uncommitted_replies.  Note that if we lose the race and the
2410          * reply has already been removed, list_del_init() is a noop.
2411          *
2412          * If we see rs_committed set, we know the commit callback is handling,
2413          * or has handled this reply since store reordering might allow us to
2414          * see rs_committed set out of sequence.  But since this is done
2415          * holding rs_lock, we can be sure it has all completed once we hold
2416          * rs_lock, which we do right next.
2417          */
2418         if (!rs->rs_committed) {
2419                 /*
2420                  * if rs was commited, no need to convert locks, don't check
2421                  * rs_committed here because rs may never be added into
2422                  * exp_uncommitted_replies and this flag never be set, see
2423                  * target_send_reply()
2424                  */
2425                 if (rs->rs_convert_lock &&
2426                     rs->rs_transno > exp->exp_last_committed) {
2427                         struct ldlm_lock *lock;
2428                         struct ldlm_lock *ack_locks[RS_MAX_LOCKS] = { NULL };
2429
2430                         spin_lock(&rs->rs_lock);
2431                         if (rs->rs_convert_lock &&
2432                             rs->rs_transno > exp->exp_last_committed) {
2433                                 nlocks = rs->rs_nlocks;
2434                                 while (nlocks-- > 0) {
2435                                         /*
2436                                          * NB don't assume rs is always handled
2437                                          * by the same service thread (see
2438                                          * ptlrpc_hr_select, so REP-ACK hr may
2439                                          * race with trans commit, while the
2440                                          * latter will release locks, get locks
2441                                          * here early to convert to COS mode
2442                                          * safely.
2443                                          */
2444                                         lock = ldlm_handle2lock(
2445                                                         &rs->rs_locks[nlocks]);
2446                                         LASSERT(lock);
2447                                         ack_locks[nlocks] = lock;
2448                                         rs->rs_modes[nlocks] = LCK_COS;
2449                                 }
2450                                 nlocks = rs->rs_nlocks;
2451                                 rs->rs_convert_lock = 0;
2452                                 /*
2453                                  * clear rs_scheduled so that commit callback
2454                                  * can schedule again
2455                                  */
2456                                 rs->rs_scheduled = 0;
2457                                 spin_unlock(&rs->rs_lock);
2458
2459                                 while (nlocks-- > 0) {
2460                                         lock = ack_locks[nlocks];
2461                                         ldlm_lock_mode_downgrade(lock, LCK_COS);
2462                                         LDLM_LOCK_PUT(lock);
2463                                 }
2464                                 RETURN(0);
2465                         }
2466                         spin_unlock(&rs->rs_lock);
2467                 }
2468
2469                 spin_lock(&exp->exp_uncommitted_replies_lock);
2470                 list_del_init(&rs->rs_obd_list);
2471                 spin_unlock(&exp->exp_uncommitted_replies_lock);
2472         }
2473
2474         spin_lock(&exp->exp_lock);
2475         /* Noop if removed already */
2476         list_del_init(&rs->rs_exp_list);
2477         spin_unlock(&exp->exp_lock);
2478
2479         spin_lock(&rs->rs_lock);
2480
2481         been_handled = rs->rs_handled;
2482         rs->rs_handled = 1;
2483
2484         nlocks = rs->rs_nlocks; /* atomic "steal", but */
2485         rs->rs_nlocks = 0; /* locks still on rs_locks! */
2486
2487         if (nlocks == 0 && !been_handled) {
2488                 /*
2489                  * If we see this, we should already have seen the warning
2490                  * in mds_steal_ack_locks()
2491                  */
2492                 CDEBUG(D_HA,
2493                        "All locks stolen from rs %p x%lld.t%lld o%d NID %s\n",
2494                        rs, rs->rs_xid, rs->rs_transno, rs->rs_opc,
2495                        libcfs_nid2str(exp->exp_connection->c_peer.nid));
2496         }
2497
2498         if ((rs->rs_sent && !rs->rs_unlinked) || nlocks > 0) {
2499                 spin_unlock(&rs->rs_lock);
2500
2501                 /* We can unlink if the LNET_EVENT_SEND has occurred.
2502                  * If rs_unlinked is set then MD is already unlinked and no
2503                  * need to do so here.
2504                  */
2505                 if ((rs->rs_sent && !rs->rs_unlinked)) {
2506                         LNetMDUnlink(rs->rs_md_h);
2507                         /* Ignore return code; we're racing with completion */
2508                 }
2509
2510                 while (nlocks-- > 0)
2511                         ldlm_lock_decref(&rs->rs_locks[nlocks],
2512                                          rs->rs_modes[nlocks]);
2513
2514                 spin_lock(&rs->rs_lock);
2515         }
2516
2517         rs->rs_scheduled = 0;
2518         rs->rs_convert_lock = 0;
2519
2520         if (rs->rs_unlinked) {
2521                 /* Off the net */
2522                 spin_unlock(&rs->rs_lock);
2523
2524                 class_export_put(exp);
2525                 rs->rs_export = NULL;
2526                 ptlrpc_rs_decref(rs);
2527                 if (atomic_dec_and_test(&svcpt->scp_nreps_difficult) &&
2528                     svc->srv_is_stopping)
2529                         wake_up_all(&svcpt->scp_waitq);
2530                 RETURN(1);
2531         }
2532
2533         /* still on the net; callback will schedule */
2534         spin_unlock(&rs->rs_lock);
2535         RETURN(1);
2536 }
2537
2538
2539 static void ptlrpc_check_rqbd_pool(struct ptlrpc_service_part *svcpt)
2540 {
2541         int avail = svcpt->scp_nrqbds_posted;
2542         int low_water = test_req_buffer_pressure ? 0 :
2543                         svcpt->scp_service->srv_nbuf_per_group / 2;
2544
2545         /* NB I'm not locking; just looking. */
2546
2547         /*
2548          * CAVEAT EMPTOR: We might be allocating buffers here because we've
2549          * allowed the request history to grow out of control.  We could put a
2550          * sanity check on that here and cull some history if we need the
2551          * space.
2552          */
2553
2554         if (avail <= low_water)
2555                 ptlrpc_grow_req_bufs(svcpt, 1);
2556
2557         if (svcpt->scp_service->srv_stats) {
2558                 lprocfs_counter_add(svcpt->scp_service->srv_stats,
2559                                     PTLRPC_REQBUF_AVAIL_CNTR, avail);
2560         }
2561 }
2562
2563 static inline int ptlrpc_threads_enough(struct ptlrpc_service_part *svcpt)
2564 {
2565         return svcpt->scp_nreqs_active <
2566                svcpt->scp_nthrs_running - 1 -
2567                (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL);
2568 }
2569
2570 /**
2571  * allowed to create more threads
2572  * user can call it w/o any lock but need to hold
2573  * ptlrpc_service_part::scp_lock to get reliable result
2574  */
2575 static inline int ptlrpc_threads_increasable(struct ptlrpc_service_part *svcpt)
2576 {
2577         return svcpt->scp_nthrs_running +
2578                svcpt->scp_nthrs_starting <
2579                svcpt->scp_service->srv_nthrs_cpt_limit;
2580 }
2581
2582 /**
2583  * too many requests and allowed to create more threads
2584  */
2585 static inline int ptlrpc_threads_need_create(struct ptlrpc_service_part *svcpt)
2586 {
2587         return !ptlrpc_threads_enough(svcpt) &&
2588                 ptlrpc_threads_increasable(svcpt);
2589 }
2590
2591 static inline int ptlrpc_thread_stopping(struct ptlrpc_thread *thread)
2592 {
2593         return thread_is_stopping(thread) ||
2594                thread->t_svcpt->scp_service->srv_is_stopping;
2595 }
2596
2597 /* stop the highest numbered thread if there are too many threads running */
2598 static inline bool ptlrpc_thread_should_stop(struct ptlrpc_thread *thread)
2599 {
2600         struct ptlrpc_service_part *svcpt = thread->t_svcpt;
2601
2602         return thread->t_id >= svcpt->scp_service->srv_nthrs_cpt_limit &&
2603                 thread->t_id == svcpt->scp_thr_nextid - 1;
2604 }
2605
2606 static void ptlrpc_stop_thread(struct ptlrpc_thread *thread)
2607 {
2608         CDEBUG(D_INFO, "Stopping thread %s #%u\n",
2609                thread->t_svcpt->scp_service->srv_thread_name, thread->t_id);
2610         thread_add_flags(thread, SVC_STOPPING);
2611 }
2612
2613 static inline void ptlrpc_thread_stop(struct ptlrpc_thread *thread)
2614 {
2615         struct ptlrpc_service_part *svcpt = thread->t_svcpt;
2616
2617         spin_lock(&svcpt->scp_lock);
2618         if (ptlrpc_thread_should_stop(thread)) {
2619                 ptlrpc_stop_thread(thread);
2620                 svcpt->scp_thr_nextid--;
2621         }
2622         spin_unlock(&svcpt->scp_lock);
2623 }
2624
2625 static inline int ptlrpc_rqbd_pending(struct ptlrpc_service_part *svcpt)
2626 {
2627         return !list_empty(&svcpt->scp_rqbd_idle) &&
2628                svcpt->scp_rqbd_timeout == 0;
2629 }
2630
2631 static inline int
2632 ptlrpc_at_check(struct ptlrpc_service_part *svcpt)
2633 {
2634         return svcpt->scp_at_check;
2635 }
2636
2637 /*
2638  * If a thread runs too long or spends to much time on a single request,
2639  * we want to know about it, so we set up a delayed work item as a watchdog.
2640  * If it fires, we display a stack trace of the delayed thread,
2641  * providing we aren't rate-limited
2642  *
2643  * Watchdog stack traces are limited to 3 per 'libcfs_watchdog_ratelimit'
2644  * seconds
2645  */
2646 static struct ratelimit_state watchdog_limit;
2647
2648 static void ptlrpc_watchdog_fire(struct work_struct *w)
2649 {
2650         struct ptlrpc_thread *thread = container_of(w, struct ptlrpc_thread,
2651                                                     t_watchdog.work);
2652         u64 ms_lapse = ktime_ms_delta(ktime_get(), thread->t_touched);
2653         u32 ms_frac = do_div(ms_lapse, MSEC_PER_SEC);
2654
2655         /* ___ratelimit() returns true if the action is NOT ratelimited */
2656         if (__ratelimit(&watchdog_limit)) {
2657                 /* below message is checked in sanity-quota.sh test_6,18 */
2658                 LCONSOLE_WARN("%s: service thread pid %u was inactive for %llu.%03u seconds. The thread might be hung, or it might only be slow and will resume later. Dumping the stack trace for debugging purposes:\n",
2659                               thread->t_task->comm, thread->t_task->pid,
2660                               ms_lapse, ms_frac);
2661
2662                 libcfs_debug_dumpstack(thread->t_task);
2663         } else {
2664                 /* below message is checked in sanity-quota.sh test_6,18 */
2665                 LCONSOLE_WARN("%s: service thread pid %u was inactive for %llu.%03u seconds. Watchdog stack traces are limited to 3 per %u seconds, skipping this one.\n",
2666                               thread->t_task->comm, thread->t_task->pid,
2667                               ms_lapse, ms_frac, libcfs_watchdog_ratelimit);
2668         }
2669 }
2670
2671 void ptlrpc_watchdog_init(struct delayed_work *work, timeout_t timeout)
2672 {
2673         INIT_DELAYED_WORK(work, ptlrpc_watchdog_fire);
2674         schedule_delayed_work(work, cfs_time_seconds(timeout));
2675 }
2676
2677 void ptlrpc_watchdog_disable(struct delayed_work *work)
2678 {
2679         cancel_delayed_work_sync(work);
2680 }
2681
2682 void ptlrpc_watchdog_touch(struct delayed_work *work, timeout_t timeout)
2683 {
2684         struct ptlrpc_thread *thread = container_of(&work->work,
2685                                                     struct ptlrpc_thread,
2686                                                     t_watchdog.work);
2687         thread->t_touched = ktime_get();
2688         mod_delayed_work(system_wq, work, cfs_time_seconds(timeout));
2689 }
2690
2691 /**
2692  * requests wait on preprocessing
2693  * user can call it w/o any lock but need to hold
2694  * ptlrpc_service_part::scp_lock to get reliable result
2695  */
2696 static inline int
2697 ptlrpc_server_request_incoming(struct ptlrpc_service_part *svcpt)
2698 {
2699         return !list_empty(&svcpt->scp_req_incoming);
2700 }
2701
2702 static __attribute__((__noinline__)) int
2703 ptlrpc_wait_event(struct ptlrpc_service_part *svcpt,
2704                   struct ptlrpc_thread *thread)
2705 {
2706         ptlrpc_watchdog_disable(&thread->t_watchdog);
2707
2708         cond_resched();
2709
2710         if (svcpt->scp_rqbd_timeout == 0)
2711                 /* Don't exit while there are replies to be handled */
2712                 wait_event_idle_exclusive_lifo(
2713                         svcpt->scp_waitq,
2714                         ptlrpc_thread_stopping(thread) ||
2715                         ptlrpc_server_request_incoming(svcpt) ||
2716                         ptlrpc_server_request_pending(svcpt, false) ||
2717                         ptlrpc_rqbd_pending(svcpt) ||
2718                         ptlrpc_at_check(svcpt));
2719         else if (wait_event_idle_exclusive_lifo_timeout(
2720                          svcpt->scp_waitq,
2721                          ptlrpc_thread_stopping(thread) ||
2722                          ptlrpc_server_request_incoming(svcpt) ||
2723                          ptlrpc_server_request_pending(svcpt, false) ||
2724                          ptlrpc_rqbd_pending(svcpt) ||
2725                          ptlrpc_at_check(svcpt),
2726                          svcpt->scp_rqbd_timeout) == 0)
2727                 svcpt->scp_rqbd_timeout = 0;
2728
2729         if (ptlrpc_thread_stopping(thread))
2730                 return -EINTR;
2731
2732         ptlrpc_watchdog_touch(&thread->t_watchdog,
2733                               ptlrpc_server_get_timeout(svcpt));
2734         return 0;
2735 }
2736
2737 /**
2738  * Main thread body for service threads.
2739  * Waits in a loop waiting for new requests to process to appear.
2740  * Every time an incoming requests is added to its queue, a waitq
2741  * is woken up and one of the threads will handle it.
2742  */
2743 static int ptlrpc_main(void *arg)
2744 {
2745         struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
2746         struct ptlrpc_service_part *svcpt = thread->t_svcpt;
2747         struct ptlrpc_service *svc = svcpt->scp_service;
2748         struct ptlrpc_reply_state *rs;
2749         struct group_info *ginfo = NULL;
2750         struct lu_env *env;
2751         int counter = 0, rc = 0;
2752
2753         ENTRY;
2754
2755         thread->t_task = current;
2756         thread->t_pid = current->pid;
2757
2758         if (svc->srv_cpt_bind) {
2759                 rc = cfs_cpt_bind(svc->srv_cptable, svcpt->scp_cpt);
2760                 if (rc != 0) {
2761                         CWARN("%s: failed to bind %s on CPT %d\n",
2762                               svc->srv_name, thread->t_name, svcpt->scp_cpt);
2763                 }
2764         }
2765
2766         ginfo = groups_alloc(0);
2767         if (!ginfo)
2768                 GOTO(out, rc = -ENOMEM);
2769
2770         set_current_groups(ginfo);
2771         put_group_info(ginfo);
2772
2773         if (svc->srv_ops.so_thr_init != NULL) {
2774                 rc = svc->srv_ops.so_thr_init(thread);
2775                 if (rc)
2776                         GOTO(out, rc);
2777         }
2778
2779         OBD_ALLOC_PTR(env);
2780         if (env == NULL)
2781                 GOTO(out_srv_fini, rc = -ENOMEM);
2782         rc = lu_env_add(env);
2783         if (rc)
2784                 GOTO(out_env, rc);
2785
2786         rc = lu_context_init(&env->le_ctx,
2787                              svc->srv_ctx_tags|LCT_REMEMBER|LCT_NOREF);
2788         if (rc)
2789                 GOTO(out_env_remove, rc);
2790
2791         thread->t_env = env;
2792         env->le_ctx.lc_thread = thread;
2793         env->le_ctx.lc_cookie = 0x6;
2794
2795         while (!list_empty(&svcpt->scp_rqbd_idle)) {
2796                 rc = ptlrpc_server_post_idle_rqbds(svcpt);
2797                 if (rc >= 0)
2798                         continue;
2799
2800                 CERROR("Failed to post rqbd for %s on CPT %d: %d\n",
2801                         svc->srv_name, svcpt->scp_cpt, rc);
2802                 GOTO(out_ctx_fini, rc);
2803         }
2804
2805         /* Alloc reply state structure for this one */
2806         OBD_ALLOC_LARGE(rs, svc->srv_max_reply_size);
2807         if (!rs)
2808                 GOTO(out_ctx_fini, rc = -ENOMEM);
2809
2810         spin_lock(&svcpt->scp_lock);
2811
2812         LASSERT(thread_is_starting(thread));
2813         thread_clear_flags(thread, SVC_STARTING);
2814
2815         LASSERT(svcpt->scp_nthrs_starting == 1);
2816         svcpt->scp_nthrs_starting--;
2817
2818         /*
2819          * SVC_STOPPING may already be set here if someone else is trying
2820          * to stop the service while this new thread has been dynamically
2821          * forked. We still set SVC_RUNNING to let our creator know that
2822          * we are now running, however we will exit as soon as possible
2823          */
2824         thread_add_flags(thread, SVC_RUNNING);
2825         svcpt->scp_nthrs_running++;
2826         spin_unlock(&svcpt->scp_lock);
2827
2828         /* wake up our creator in case he's still waiting. */
2829         wake_up(&thread->t_ctl_waitq);
2830
2831         thread->t_touched = ktime_get();
2832         ptlrpc_watchdog_init(&thread->t_watchdog,
2833                          ptlrpc_server_get_timeout(svcpt));
2834
2835         spin_lock(&svcpt->scp_rep_lock);
2836         list_add(&rs->rs_list, &svcpt->scp_rep_idle);
2837         wake_up(&svcpt->scp_rep_waitq);
2838         spin_unlock(&svcpt->scp_rep_lock);
2839
2840         CDEBUG(D_NET, "service thread %d (#%d) started\n", thread->t_id,
2841                svcpt->scp_nthrs_running);
2842
2843         /* XXX maintain a list of all managed devices: insert here */
2844         while (!ptlrpc_thread_stopping(thread)) {
2845                 if (ptlrpc_wait_event(svcpt, thread))
2846                         break;
2847
2848                 ptlrpc_check_rqbd_pool(svcpt);
2849
2850                 if (ptlrpc_threads_need_create(svcpt)) {
2851                         /* Ignore return code - we tried... */
2852                         ptlrpc_start_thread(svcpt, 0);
2853                 }
2854
2855                 /* reset le_ses to initial state */
2856                 env->le_ses = NULL;
2857                 /* Refill the context before execution to make sure
2858                  * all thread keys are allocated */
2859                 lu_env_refill(env);
2860                 /* Process all incoming reqs before handling any */
2861                 if (ptlrpc_server_request_incoming(svcpt)) {
2862                         lu_context_enter(&env->le_ctx);
2863                         ptlrpc_server_handle_req_in(svcpt, thread);
2864                         lu_context_exit(&env->le_ctx);
2865
2866                         /* but limit ourselves in case of flood */
2867                         if (counter++ < 100)
2868                                 continue;
2869                         counter = 0;
2870                 }
2871
2872                 if (ptlrpc_at_check(svcpt))
2873                         ptlrpc_at_check_timed(svcpt);
2874
2875                 if (ptlrpc_server_request_pending(svcpt, false)) {
2876                         lu_context_enter(&env->le_ctx);
2877                         ptlrpc_server_handle_request(svcpt, thread);
2878                         lu_context_exit(&env->le_ctx);
2879                 }
2880
2881                 if (ptlrpc_rqbd_pending(svcpt) &&
2882                     ptlrpc_server_post_idle_rqbds(svcpt) < 0) {
2883                         /*
2884                          * I just failed to repost request buffers.
2885                          * Wait for a timeout (unless something else
2886                          * happens) before I try again
2887                          */
2888                         svcpt->scp_rqbd_timeout = cfs_time_seconds(1) / 10;
2889                         CDEBUG(D_RPCTRACE, "Posted buffers: %d\n",
2890                                svcpt->scp_nrqbds_posted);
2891                 }
2892                 /*
2893                  * If the number of threads has been tuned downward and this
2894                  * thread should be stopped, then stop in reverse order so the
2895                  * the threads always have contiguous thread index values.
2896                  */
2897                 if (unlikely(ptlrpc_thread_should_stop(thread)))
2898                         ptlrpc_thread_stop(thread);
2899         }
2900
2901         ptlrpc_watchdog_disable(&thread->t_watchdog);
2902
2903 out_ctx_fini:
2904         lu_context_fini(&env->le_ctx);
2905 out_env_remove:
2906         lu_env_remove(env);
2907 out_env:
2908         OBD_FREE_PTR(env);
2909 out_srv_fini:
2910         /* deconstruct service thread state created by ptlrpc_start_thread() */
2911         if (svc->srv_ops.so_thr_done != NULL)
2912                 svc->srv_ops.so_thr_done(thread);
2913 out:
2914         CDEBUG(D_RPCTRACE, "%s: service thread [%p:%u] %d exiting: rc = %d\n",
2915                thread->t_name, thread, thread->t_pid, thread->t_id, rc);
2916         spin_lock(&svcpt->scp_lock);
2917         if (thread_test_and_clear_flags(thread, SVC_STARTING))
2918                 svcpt->scp_nthrs_starting--;
2919
2920         if (thread_test_and_clear_flags(thread, SVC_RUNNING)) {
2921                 /* must know immediately */
2922                 svcpt->scp_nthrs_running--;
2923         }
2924
2925         thread->t_id = rc;
2926         thread_add_flags(thread, SVC_STOPPED);
2927
2928         wake_up(&thread->t_ctl_waitq);
2929         spin_unlock(&svcpt->scp_lock);
2930
2931         return rc;
2932 }
2933
2934 static int hrt_dont_sleep(struct ptlrpc_hr_thread *hrt,
2935                           struct list_head *replies)
2936 {
2937         int result;
2938
2939         spin_lock(&hrt->hrt_lock);
2940
2941         list_splice_init(&hrt->hrt_queue, replies);
2942         result = ptlrpc_hr.hr_stopping || !list_empty(replies);
2943
2944         spin_unlock(&hrt->hrt_lock);
2945         return result;
2946 }
2947
2948 /**
2949  * Main body of "handle reply" function.
2950  * It processes acked reply states
2951  */
2952 static int ptlrpc_hr_main(void *arg)
2953 {
2954         struct ptlrpc_hr_thread *hrt = (struct ptlrpc_hr_thread *)arg;
2955         struct ptlrpc_hr_partition *hrp = hrt->hrt_partition;
2956         LIST_HEAD(replies);
2957         struct lu_env *env;
2958         int rc;
2959
2960         OBD_ALLOC_PTR(env);
2961         if (env == NULL)
2962                 RETURN(-ENOMEM);
2963
2964         rc = cfs_cpt_bind(ptlrpc_hr.hr_cpt_table, hrp->hrp_cpt);
2965         if (rc != 0) {
2966                 char threadname[20];
2967
2968                 snprintf(threadname, sizeof(threadname), "ptlrpc_hr%02d_%03d",
2969                          hrp->hrp_cpt, hrt->hrt_id);
2970                 CWARN("Failed to bind %s on CPT %d of CPT table %p: rc = %d\n",
2971                       threadname, hrp->hrp_cpt, ptlrpc_hr.hr_cpt_table, rc);
2972         }
2973
2974         rc = lu_context_init(&env->le_ctx, LCT_MD_THREAD | LCT_DT_THREAD |
2975                              LCT_REMEMBER | LCT_NOREF);
2976         if (rc)
2977                 GOTO(out_env, rc);
2978
2979         rc = lu_env_add(env);
2980         if (rc)
2981                 GOTO(out_ctx_fini, rc);
2982
2983         atomic_inc(&hrp->hrp_nstarted);
2984         wake_up(&ptlrpc_hr.hr_waitq);
2985
2986         while (!ptlrpc_hr.hr_stopping) {
2987                 wait_event_idle(hrt->hrt_waitq, hrt_dont_sleep(hrt, &replies));
2988
2989                 while (!list_empty(&replies)) {
2990                         struct ptlrpc_reply_state *rs;
2991
2992                         rs = list_entry(replies.prev,
2993                                         struct ptlrpc_reply_state,
2994                                         rs_list);
2995                         list_del_init(&rs->rs_list);
2996                         /* refill keys if needed */
2997                         lu_env_refill(env);
2998                         lu_context_enter(&env->le_ctx);
2999                         ptlrpc_handle_rs(rs);
3000                         lu_context_exit(&env->le_ctx);
3001                 }
3002         }
3003
3004         atomic_inc(&hrp->hrp_nstopped);
3005         wake_up(&ptlrpc_hr.hr_waitq);
3006
3007         lu_env_remove(env);
3008 out_ctx_fini:
3009         lu_context_fini(&env->le_ctx);
3010 out_env:
3011         OBD_FREE_PTR(env);
3012         return 0;
3013 }
3014
3015 static void ptlrpc_stop_hr_threads(void)
3016 {
3017         struct ptlrpc_hr_partition *hrp;
3018         int i;
3019         int j;
3020
3021         ptlrpc_hr.hr_stopping = 1;
3022
3023         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
3024                 if (hrp->hrp_thrs == NULL)
3025                         continue; /* uninitialized */
3026                 for (j = 0; j < hrp->hrp_nthrs; j++)
3027                         wake_up(&hrp->hrp_thrs[j].hrt_waitq);
3028         }
3029
3030         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
3031                 if (hrp->hrp_thrs == NULL)
3032                         continue; /* uninitialized */
3033                 wait_event(ptlrpc_hr.hr_waitq,
3034                                atomic_read(&hrp->hrp_nstopped) ==
3035                                atomic_read(&hrp->hrp_nstarted));
3036         }
3037 }
3038
3039 static int ptlrpc_start_hr_threads(void)
3040 {
3041         struct ptlrpc_hr_partition *hrp;
3042         int i;
3043         int j;
3044
3045         ENTRY;
3046
3047         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
3048                 int     rc = 0;
3049
3050                 for (j = 0; j < hrp->hrp_nthrs; j++) {
3051                         struct ptlrpc_hr_thread *hrt = &hrp->hrp_thrs[j];
3052                         struct task_struct *task;
3053
3054                         task = kthread_run(ptlrpc_hr_main,
3055                                            &hrp->hrp_thrs[j],
3056                                            "ptlrpc_hr%02d_%03d",
3057                                            hrp->hrp_cpt,
3058                                            hrt->hrt_id);
3059                         if (IS_ERR(task)) {
3060                                 rc = PTR_ERR(task);
3061                                 break;
3062                         }
3063                 }
3064
3065                 wait_event(ptlrpc_hr.hr_waitq,
3066                            atomic_read(&hrp->hrp_nstarted) == j);
3067
3068                 if (rc < 0) {
3069                         CERROR("cannot start reply handler thread %d:%d: rc = %d\n",
3070                                i, j, rc);
3071                         ptlrpc_stop_hr_threads();
3072                         RETURN(rc);
3073                 }
3074         }
3075
3076         RETURN(0);
3077 }
3078
3079 static void ptlrpc_svcpt_stop_threads(struct ptlrpc_service_part *svcpt)
3080 {
3081         struct ptlrpc_thread *thread;
3082         LIST_HEAD(zombie);
3083
3084         ENTRY;
3085
3086         CDEBUG(D_INFO, "Stopping threads for service %s\n",
3087                svcpt->scp_service->srv_name);
3088
3089         spin_lock(&svcpt->scp_lock);
3090         /* let the thread know that we would like it to stop asap */
3091         list_for_each_entry(thread, &svcpt->scp_threads, t_link)
3092                 ptlrpc_stop_thread(thread);
3093
3094         wake_up_all(&svcpt->scp_waitq);
3095
3096         while ((thread = list_first_entry_or_null(&svcpt->scp_threads,
3097                                                   struct ptlrpc_thread,
3098                                                   t_link)) != NULL) {
3099                 if (thread_is_stopped(thread)) {
3100                         list_move(&thread->t_link, &zombie);
3101                         continue;
3102                 }
3103                 spin_unlock(&svcpt->scp_lock);
3104
3105                 CDEBUG(D_INFO, "waiting for stopping-thread %s #%u\n",
3106                        svcpt->scp_service->srv_thread_name, thread->t_id);
3107                 wait_event_idle(thread->t_ctl_waitq,
3108                                 thread_is_stopped(thread));
3109
3110                 spin_lock(&svcpt->scp_lock);
3111         }
3112
3113         spin_unlock(&svcpt->scp_lock);
3114
3115         while ((thread = list_first_entry_or_null(&zombie,
3116                                                   struct ptlrpc_thread,
3117                                                   t_link)) != NULL) {
3118                 list_del(&thread->t_link);
3119                 OBD_FREE_PTR(thread);
3120         }
3121         EXIT;
3122 }
3123
3124 /**
3125  * Stops all threads of a particular service \a svc
3126  */
3127 static void ptlrpc_stop_all_threads(struct ptlrpc_service *svc)
3128 {
3129         struct ptlrpc_service_part *svcpt;
3130         int i;
3131
3132         ENTRY;
3133
3134         ptlrpc_service_for_each_part(svcpt, i, svc) {
3135                 if (svcpt->scp_service != NULL)
3136                         ptlrpc_svcpt_stop_threads(svcpt);
3137         }
3138
3139         EXIT;
3140 }
3141
3142 static int ptlrpc_start_threads(struct ptlrpc_service *svc)
3143 {
3144         int rc = 0;
3145         int i;
3146         int j;
3147
3148         ENTRY;
3149
3150         /* We require 2 threads min, see note in ptlrpc_server_handle_request */
3151         LASSERT(svc->srv_nthrs_cpt_init >= PTLRPC_NTHRS_INIT);
3152
3153         for (i = 0; i < svc->srv_ncpts; i++) {
3154                 for (j = 0; j < svc->srv_nthrs_cpt_init; j++) {
3155                         rc = ptlrpc_start_thread(svc->srv_parts[i], 1);
3156                         if (rc == 0)
3157                                 continue;
3158
3159                         if (rc != -EMFILE)
3160                                 goto failed;
3161                         /* We have enough threads, don't start more. b=15759 */
3162                         break;
3163                 }
3164         }
3165
3166         RETURN(0);
3167  failed:
3168         CERROR("cannot start %s thread #%d_%d: rc %d\n",
3169                svc->srv_thread_name, i, j, rc);
3170         ptlrpc_stop_all_threads(svc);
3171         RETURN(rc);
3172 }
3173
3174 static int ptlrpc_start_thread(struct ptlrpc_service_part *svcpt, int wait)
3175 {
3176         struct ptlrpc_thread *thread;
3177         struct ptlrpc_service *svc;
3178         struct task_struct *task;
3179         int rc;
3180
3181         ENTRY;
3182
3183         LASSERT(svcpt != NULL);
3184
3185         svc = svcpt->scp_service;
3186
3187         CDEBUG(D_RPCTRACE, "%s[%d] started %d min %d max %d\n",
3188                svc->srv_name, svcpt->scp_cpt, svcpt->scp_nthrs_running,
3189                svc->srv_nthrs_cpt_init, svc->srv_nthrs_cpt_limit);
3190
3191  again:
3192         if (unlikely(svc->srv_is_stopping))
3193                 RETURN(-ESRCH);
3194
3195         if (!ptlrpc_threads_increasable(svcpt) ||
3196             (OBD_FAIL_CHECK(OBD_FAIL_TGT_TOOMANY_THREADS) &&
3197              svcpt->scp_nthrs_running == svc->srv_nthrs_cpt_init - 1))
3198                 RETURN(-EMFILE);
3199
3200         OBD_CPT_ALLOC_PTR(thread, svc->srv_cptable, svcpt->scp_cpt);
3201         if (thread == NULL)
3202                 RETURN(-ENOMEM);
3203         init_waitqueue_head(&thread->t_ctl_waitq);
3204
3205         spin_lock(&svcpt->scp_lock);
3206         if (!ptlrpc_threads_increasable(svcpt)) {
3207                 spin_unlock(&svcpt->scp_lock);
3208                 OBD_FREE_PTR(thread);
3209                 RETURN(-EMFILE);
3210         }
3211
3212         if (svcpt->scp_nthrs_starting != 0) {
3213                 /*
3214                  * serialize starting because some modules (obdfilter)
3215                  * might require unique and contiguous t_id
3216                  */
3217                 LASSERT(svcpt->scp_nthrs_starting == 1);
3218                 spin_unlock(&svcpt->scp_lock);
3219                 OBD_FREE_PTR(thread);
3220                 if (wait) {
3221                         CDEBUG(D_INFO, "Waiting for creating thread %s #%d\n",
3222                                svc->srv_thread_name, svcpt->scp_thr_nextid);
3223                         schedule();
3224                         goto again;
3225                 }
3226
3227                 CDEBUG(D_INFO, "Creating thread %s #%d race, retry later\n",
3228                        svc->srv_thread_name, svcpt->scp_thr_nextid);
3229                 RETURN(-EAGAIN);
3230         }
3231
3232         svcpt->scp_nthrs_starting++;
3233         thread->t_id = svcpt->scp_thr_nextid++;
3234         thread_add_flags(thread, SVC_STARTING);
3235         thread->t_svcpt = svcpt;
3236
3237         list_add(&thread->t_link, &svcpt->scp_threads);
3238         spin_unlock(&svcpt->scp_lock);
3239
3240         if (svcpt->scp_cpt >= 0) {
3241                 snprintf(thread->t_name, PTLRPC_THR_NAME_LEN, "%s%02d_%03d",
3242                          svc->srv_thread_name, svcpt->scp_cpt, thread->t_id);
3243         } else {
3244                 snprintf(thread->t_name, PTLRPC_THR_NAME_LEN, "%s_%04d",
3245                          svc->srv_thread_name, thread->t_id);
3246         }
3247
3248         CDEBUG(D_RPCTRACE, "starting thread '%s'\n", thread->t_name);
3249         task = kthread_run(ptlrpc_main, thread, "%s", thread->t_name);
3250         if (IS_ERR(task)) {
3251                 rc = PTR_ERR(task);
3252                 CERROR("cannot start thread '%s': rc = %d\n",
3253                        thread->t_name, rc);
3254                 spin_lock(&svcpt->scp_lock);
3255                 --svcpt->scp_nthrs_starting;
3256                 if (thread_is_stopping(thread)) {
3257                         /*
3258                          * this ptlrpc_thread is being hanled
3259                          * by ptlrpc_svcpt_stop_threads now
3260                          */
3261                         thread_add_flags(thread, SVC_STOPPED);
3262                         wake_up(&thread->t_ctl_waitq);
3263                         spin_unlock(&svcpt->scp_lock);
3264                 } else {
3265                         list_del(&thread->t_link);
3266                         spin_unlock(&svcpt->scp_lock);
3267                         OBD_FREE_PTR(thread);
3268                 }
3269                 RETURN(rc);
3270         }
3271
3272         if (!wait)
3273                 RETURN(0);
3274
3275         wait_event_idle(thread->t_ctl_waitq,
3276                         thread_is_running(thread) || thread_is_stopped(thread));
3277
3278         rc = thread_is_stopped(thread) ? thread->t_id : 0;
3279         RETURN(rc);
3280 }
3281
3282 int ptlrpc_hr_init(void)
3283 {
3284         struct ptlrpc_hr_partition *hrp;
3285         struct ptlrpc_hr_thread *hrt;
3286         int rc;
3287         int cpt;
3288         int i;
3289         int weight;
3290
3291         ENTRY;
3292
3293         memset(&ptlrpc_hr, 0, sizeof(ptlrpc_hr));
3294         ptlrpc_hr.hr_cpt_table = cfs_cpt_tab;
3295
3296         ptlrpc_hr.hr_partitions = cfs_percpt_alloc(ptlrpc_hr.hr_cpt_table,
3297                                                    sizeof(*hrp));
3298         if (ptlrpc_hr.hr_partitions == NULL)
3299                 RETURN(-ENOMEM);
3300
3301         ratelimit_state_init(&watchdog_limit,
3302                              cfs_time_seconds(libcfs_watchdog_ratelimit), 3);
3303
3304         init_waitqueue_head(&ptlrpc_hr.hr_waitq);
3305
3306         preempt_disable();
3307         weight = cpumask_weight(topology_sibling_cpumask(smp_processor_id()));
3308         preempt_enable();
3309
3310         cfs_percpt_for_each(hrp, cpt, ptlrpc_hr.hr_partitions) {
3311                 hrp->hrp_cpt = cpt;
3312
3313                 atomic_set(&hrp->hrp_nstarted, 0);
3314                 atomic_set(&hrp->hrp_nstopped, 0);
3315
3316                 hrp->hrp_nthrs = cfs_cpt_weight(ptlrpc_hr.hr_cpt_table, cpt);
3317                 hrp->hrp_nthrs /= weight;
3318                 if (hrp->hrp_nthrs == 0)
3319                         hrp->hrp_nthrs = 1;
3320
3321                 OBD_CPT_ALLOC(hrp->hrp_thrs, ptlrpc_hr.hr_cpt_table, cpt,
3322                               hrp->hrp_nthrs * sizeof(*hrt));
3323                 if (hrp->hrp_thrs == NULL)
3324                         GOTO(out, rc = -ENOMEM);
3325
3326                 for (i = 0; i < hrp->hrp_nthrs; i++) {
3327                         hrt = &hrp->hrp_thrs[i];
3328
3329                         hrt->hrt_id = i;
3330                         hrt->hrt_partition = hrp;
3331                         init_waitqueue_head(&hrt->hrt_waitq);
3332                         spin_lock_init(&hrt->hrt_lock);
3333                         INIT_LIST_HEAD(&hrt->hrt_queue);
3334                 }
3335         }
3336
3337         rc = ptlrpc_start_hr_threads();
3338 out:
3339         if (rc != 0)
3340                 ptlrpc_hr_fini();
3341         RETURN(rc);
3342 }
3343
3344 void ptlrpc_hr_fini(void)
3345 {
3346         struct ptlrpc_hr_partition *hrp;
3347         int cpt;
3348
3349         if (ptlrpc_hr.hr_partitions == NULL)
3350                 return;
3351
3352         ptlrpc_stop_hr_threads();
3353
3354         cfs_percpt_for_each(hrp, cpt, ptlrpc_hr.hr_partitions) {
3355                 if (hrp->hrp_thrs)
3356                         OBD_FREE_PTR_ARRAY(hrp->hrp_thrs, hrp->hrp_nthrs);
3357         }
3358
3359         cfs_percpt_free(ptlrpc_hr.hr_partitions);
3360         ptlrpc_hr.hr_partitions = NULL;
3361 }
3362
3363
3364 /**
3365  * Wait until all already scheduled replies are processed.
3366  */
3367 static void ptlrpc_wait_replies(struct ptlrpc_service_part *svcpt)
3368 {
3369         while (1) {
3370                 if (wait_event_idle_timeout(
3371                         svcpt->scp_waitq,
3372                         atomic_read(&svcpt->scp_nreps_difficult) == 0,
3373                         cfs_time_seconds(10)) > 0)
3374                         break;
3375                 CWARN("Unexpectedly long timeout %s %p\n",
3376                       svcpt->scp_service->srv_name, svcpt->scp_service);
3377         }
3378 }
3379
3380 static void
3381 ptlrpc_service_del_atimer(struct ptlrpc_service *svc)
3382 {
3383         struct ptlrpc_service_part *svcpt;
3384         int i;
3385
3386         /* early disarm AT timer... */
3387         ptlrpc_service_for_each_part(svcpt, i, svc) {
3388                 if (svcpt->scp_service != NULL)
3389                         del_timer(&svcpt->scp_at_timer);
3390         }
3391 }
3392
3393 static void
3394 ptlrpc_service_unlink_rqbd(struct ptlrpc_service *svc)
3395 {
3396         struct ptlrpc_service_part *svcpt;
3397         struct ptlrpc_request_buffer_desc *rqbd;
3398         int rc;
3399         int i;
3400
3401         /*
3402          * All history will be culled when the next request buffer is
3403          * freed in ptlrpc_service_purge_all()
3404          */
3405         svc->srv_hist_nrqbds_cpt_max = 0;
3406
3407         rc = LNetClearLazyPortal(svc->srv_req_portal);
3408         LASSERT(rc == 0);
3409
3410         ptlrpc_service_for_each_part(svcpt, i, svc) {
3411                 if (svcpt->scp_service == NULL)
3412                         break;
3413
3414                 /*
3415                  * Unlink all the request buffers.  This forces a 'final'
3416                  * event with its 'unlink' flag set for each posted rqbd
3417                  */
3418                 list_for_each_entry(rqbd, &svcpt->scp_rqbd_posted,
3419                                         rqbd_list) {
3420                         rc = LNetMDUnlink(rqbd->rqbd_md_h);
3421                         LASSERT(rc == 0 || rc == -ENOENT);
3422                 }
3423         }
3424
3425         ptlrpc_service_for_each_part(svcpt, i, svc) {
3426                 if (svcpt->scp_service == NULL)
3427                         break;
3428
3429                 /*
3430                  * Wait for the network to release any buffers
3431                  * it's currently filling
3432                  */
3433                 spin_lock(&svcpt->scp_lock);
3434                 while (svcpt->scp_nrqbds_posted != 0) {
3435                         int seconds = PTLRPC_REQ_LONG_UNLINK;
3436
3437                         spin_unlock(&svcpt->scp_lock);
3438                         /*
3439                          * Network access will complete in finite time but
3440                          * the HUGE timeout lets us CWARN for visibility
3441                          * of sluggish NALs
3442                          */
3443                         while (seconds > 0 &&
3444                                wait_event_idle_timeout(
3445                                        svcpt->scp_waitq,
3446                                        svcpt->scp_nrqbds_posted == 0,
3447                                        cfs_time_seconds(1)) == 0)
3448                                 seconds -= 1;
3449                         if (seconds == 0) {
3450                                 CWARN("Service %s waiting for request buffers\n",
3451                                       svcpt->scp_service->srv_name);
3452                         }
3453                         spin_lock(&svcpt->scp_lock);
3454                 }
3455                 spin_unlock(&svcpt->scp_lock);
3456         }
3457 }
3458
3459 static void
3460 ptlrpc_service_purge_all(struct ptlrpc_service *svc)
3461 {
3462         struct ptlrpc_service_part *svcpt;
3463         struct ptlrpc_request_buffer_desc *rqbd;
3464         struct ptlrpc_request *req;
3465         struct ptlrpc_reply_state *rs;
3466         int i;
3467
3468         ptlrpc_service_for_each_part(svcpt, i, svc) {
3469                 if (svcpt->scp_service == NULL)
3470                         break;
3471
3472                 spin_lock(&svcpt->scp_rep_lock);
3473                 while ((rs = list_first_entry_or_null(&svcpt->scp_rep_active,
3474                                                       struct ptlrpc_reply_state,
3475                                                       rs_list)) != NULL) {
3476                         spin_lock(&rs->rs_lock);
3477                         ptlrpc_schedule_difficult_reply(rs);
3478                         spin_unlock(&rs->rs_lock);
3479                 }
3480                 spin_unlock(&svcpt->scp_rep_lock);
3481
3482                 /*
3483                  * purge the request queue.  NB No new replies (rqbds
3484                  * all unlinked) and no service threads, so I'm the only
3485                  * thread noodling the request queue now
3486                  */
3487                 while ((req = list_first_entry_or_null(&svcpt->scp_req_incoming,
3488                                                        struct ptlrpc_request,
3489                                                        rq_list)) != NULL) {
3490                         list_del(&req->rq_list);
3491                         svcpt->scp_nreqs_incoming--;
3492                         ptlrpc_server_finish_request(svcpt, req);
3493                 }
3494
3495                 while (ptlrpc_server_request_pending(svcpt, true)) {
3496                         req = ptlrpc_server_request_get(svcpt, true);
3497                         ptlrpc_server_finish_active_request(svcpt, req);
3498                 }
3499
3500                 /*
3501                  * The portal may be shared by several services (eg:OUT_PORTAL).
3502                  * So the request could be referenced by other target. So we
3503                  * have to wait the ptlrpc_server_drop_request invoked.
3504                  *
3505                  * TODO: move the req_buffer as global rather than per service.
3506                  */
3507                 spin_lock(&svcpt->scp_lock);
3508                 while (!list_empty(&svcpt->scp_rqbd_posted)) {
3509                         spin_unlock(&svcpt->scp_lock);
3510                         wait_event_idle_timeout(svcpt->scp_waitq,
3511                                 list_empty(&svcpt->scp_rqbd_posted),
3512                                 cfs_time_seconds(1));
3513                         spin_lock(&svcpt->scp_lock);
3514                 }
3515                 spin_unlock(&svcpt->scp_lock);
3516
3517                 LASSERT(svcpt->scp_nreqs_incoming == 0);
3518                 LASSERT(svcpt->scp_nreqs_active == 0);
3519                 /*
3520                  * history should have been culled by
3521                  * ptlrpc_server_finish_request
3522                  */
3523                 LASSERT(svcpt->scp_hist_nrqbds == 0);
3524
3525                 /*
3526                  * Now free all the request buffers since nothing
3527                  * references them any more...
3528                  */
3529                 while ((rqbd = list_first_entry_or_null(&svcpt->scp_rqbd_idle,
3530                                                         struct ptlrpc_request_buffer_desc,
3531                                                         rqbd_list)) != NULL)
3532                         ptlrpc_free_rqbd(rqbd);
3533
3534                 ptlrpc_wait_replies(svcpt);
3535
3536                 while ((rs = list_first_entry_or_null(&svcpt->scp_rep_idle,
3537                                                       struct ptlrpc_reply_state,
3538                                                       rs_list)) != NULL) {
3539                         list_del(&rs->rs_list);
3540                         OBD_FREE_LARGE(rs, svc->srv_max_reply_size);
3541                 }
3542         }
3543 }
3544
3545 static void
3546 ptlrpc_service_free(struct ptlrpc_service *svc)
3547 {
3548         struct ptlrpc_service_part      *svcpt;
3549         struct ptlrpc_at_array          *array;
3550         int                             i;
3551
3552         ptlrpc_service_for_each_part(svcpt, i, svc) {
3553                 if (svcpt->scp_service == NULL)
3554                         break;
3555
3556                 /* In case somebody rearmed this in the meantime */
3557                 del_timer(&svcpt->scp_at_timer);
3558                 array = &svcpt->scp_at_array;
3559
3560                 if (array->paa_reqs_array != NULL) {
3561                         OBD_FREE_PTR_ARRAY(array->paa_reqs_array,
3562                                            array->paa_size);
3563                         array->paa_reqs_array = NULL;
3564                 }
3565
3566                 if (array->paa_reqs_count != NULL) {
3567                         OBD_FREE_PTR_ARRAY(array->paa_reqs_count,
3568                                            array->paa_size);
3569                         array->paa_reqs_count = NULL;
3570                 }
3571         }
3572
3573         ptlrpc_service_for_each_part(svcpt, i, svc)
3574                 OBD_FREE_PTR(svcpt);
3575
3576         if (svc->srv_cpts != NULL)
3577                 cfs_expr_list_values_free(svc->srv_cpts, svc->srv_ncpts);
3578
3579         OBD_FREE(svc, offsetof(struct ptlrpc_service,
3580                                srv_parts[svc->srv_ncpts]));
3581 }
3582
3583 int ptlrpc_unregister_service(struct ptlrpc_service *service)
3584 {
3585         ENTRY;
3586
3587         CDEBUG(D_NET, "%s: tearing down\n", service->srv_name);
3588
3589         service->srv_is_stopping = 1;
3590
3591         mutex_lock(&ptlrpc_all_services_mutex);
3592         list_del_init(&service->srv_list);
3593         mutex_unlock(&ptlrpc_all_services_mutex);
3594
3595         ptlrpc_service_del_atimer(service);
3596         ptlrpc_stop_all_threads(service);
3597
3598         ptlrpc_service_unlink_rqbd(service);
3599         ptlrpc_service_purge_all(service);
3600         ptlrpc_service_nrs_cleanup(service);
3601
3602         ptlrpc_lprocfs_unregister_service(service);
3603         ptlrpc_sysfs_unregister_service(service);
3604
3605         ptlrpc_service_free(service);
3606
3607         RETURN(0);
3608 }
3609 EXPORT_SYMBOL(ptlrpc_unregister_service);
3610
3611 /**
3612  * Returns 0 if the service is healthy.
3613  *
3614  * Right now, it just checks to make sure that requests aren't languishing
3615  * in the queue.  We'll use this health check to govern whether a node needs
3616  * to be shot, so it's intentionally non-aggressive.
3617  */
3618 static int ptlrpc_svcpt_health_check(struct ptlrpc_service_part *svcpt)
3619 {
3620         struct ptlrpc_request *request = NULL;
3621         struct timespec64 right_now;
3622         struct timespec64 timediff;
3623
3624         ktime_get_real_ts64(&right_now);
3625
3626         spin_lock(&svcpt->scp_req_lock);
3627         /* How long has the next entry been waiting? */
3628         if (ptlrpc_server_high_pending(svcpt, true))
3629                 request = ptlrpc_nrs_req_peek_nolock(svcpt, true);
3630         else if (ptlrpc_server_normal_pending(svcpt, true))
3631                 request = ptlrpc_nrs_req_peek_nolock(svcpt, false);
3632
3633         if (request == NULL) {
3634                 spin_unlock(&svcpt->scp_req_lock);
3635                 return 0;
3636         }
3637
3638         timediff = timespec64_sub(right_now, request->rq_arrival_time);
3639         spin_unlock(&svcpt->scp_req_lock);
3640
3641         if ((timediff.tv_sec) >
3642             (AT_OFF ? obd_timeout * 3 / 2 : at_max)) {
3643                 CERROR("%s: unhealthy - request has been waiting %llds\n",
3644                        svcpt->scp_service->srv_name, (s64)timediff.tv_sec);
3645                 return -1;
3646         }
3647
3648         return 0;
3649 }
3650
3651 int
3652 ptlrpc_service_health_check(struct ptlrpc_service *svc)
3653 {
3654         struct ptlrpc_service_part      *svcpt;
3655         int                             i;
3656
3657         if (svc == NULL)
3658                 return 0;
3659
3660         ptlrpc_service_for_each_part(svcpt, i, svc) {
3661                 int rc = ptlrpc_svcpt_health_check(svcpt);
3662
3663                 if (rc != 0)
3664                         return rc;
3665         }
3666         return 0;
3667 }
3668 EXPORT_SYMBOL(ptlrpc_service_health_check);