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