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