Whamcloud - gitweb
08207fb9ed0afc095410c163ecc85e97d03812e7
[fs/lustre-release.git] / lustre / include / lustre_net.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 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 /** \defgroup PtlRPC Portal RPC and networking module.
33  *
34  * PortalRPC is the layer used by rest of lustre code to achieve network
35  * communications: establish connections with corresponding export and import
36  * states, listen for a service, send and receive RPCs.
37  * PortalRPC also includes base recovery framework: packet resending and
38  * replaying, reconnections, pinger.
39  *
40  * PortalRPC utilizes LNet as its transport layer.
41  *
42  * @{
43  */
44
45
46 #ifndef _LUSTRE_NET_H
47 #define _LUSTRE_NET_H
48
49 /** \defgroup net net
50  *
51  * @{
52  */
53 #include <linux/kobject.h>
54 #include <linux/uio.h>
55 #include <libcfs/libcfs.h>
56 #include <lnet/api.h>
57 #include <uapi/linux/lnet/nidstr.h>
58 #include <uapi/linux/lustre/lustre_idl.h>
59 #include <lustre_ha.h>
60 #include <lustre_sec.h>
61 #include <lustre_import.h>
62 #include <lprocfs_status.h>
63 #include <lu_object.h>
64 #include <lustre_req_layout.h>
65 #include <obd_support.h>
66 #include <uapi/linux/lustre/lustre_ver.h>
67
68 /* MD flags we _always_ use */
69 #define PTLRPC_MD_OPTIONS  0
70
71 /**
72  * log2 max # of bulk operations in one request: 2=4MB/RPC, 5=32MB/RPC, ...
73  * In order for the client and server to properly negotiate the maximum
74  * possible transfer size, PTLRPC_BULK_OPS_COUNT must be a power-of-two
75  * value.  The client is free to limit the actual RPC size for any bulk
76  * transfer via cl_max_pages_per_rpc to some non-power-of-two value.
77  * NOTE: This is limited to 16 (=64GB RPCs) by IOOBJ_MAX_BRW_BITS. */
78 #define PTLRPC_BULK_OPS_BITS    4
79 #if PTLRPC_BULK_OPS_BITS > 16
80 #error "More than 65536 BRW RPCs not allowed by IOOBJ_MAX_BRW_BITS."
81 #endif
82 #define PTLRPC_BULK_OPS_COUNT   (1U << PTLRPC_BULK_OPS_BITS)
83 /**
84  * PTLRPC_BULK_OPS_MASK is for the convenience of the client only, and
85  * should not be used on the server at all.  Otherwise, it imposes a
86  * protocol limitation on the maximum RPC size that can be used by any
87  * RPC sent to that server in the future.  Instead, the server should
88  * use the negotiated per-client ocd_brw_size to determine the bulk
89  * RPC count. */
90 #define PTLRPC_BULK_OPS_MASK    (~((__u64)PTLRPC_BULK_OPS_COUNT - 1))
91
92 /**
93  * Define maxima for bulk I/O.
94  *
95  * A single PTLRPC BRW request is sent via up to PTLRPC_BULK_OPS_COUNT
96  * of LNET_MTU sized RDMA transfers.  Clients and servers negotiate the
97  * currently supported maximum between peers at connect via ocd_brw_size.
98  */
99 #define PTLRPC_MAX_BRW_BITS     (LNET_MTU_BITS + PTLRPC_BULK_OPS_BITS)
100 #define PTLRPC_MAX_BRW_SIZE     (1U << PTLRPC_MAX_BRW_BITS)
101 #define PTLRPC_MAX_BRW_PAGES    (PTLRPC_MAX_BRW_SIZE >> PAGE_SHIFT)
102
103 #define ONE_MB_BRW_SIZE         (1U << LNET_MTU_BITS)
104 #define MD_MAX_BRW_SIZE         (1U << LNET_MTU_BITS)
105 #define MD_MAX_BRW_PAGES        (MD_MAX_BRW_SIZE >> PAGE_SHIFT)
106 #define DT_MAX_BRW_SIZE         PTLRPC_MAX_BRW_SIZE
107 #define DT_DEF_BRW_SIZE         (4 * ONE_MB_BRW_SIZE)
108 #define DT_MAX_BRW_PAGES        (DT_MAX_BRW_SIZE >> PAGE_SHIFT)
109 #define OFD_MAX_BRW_SIZE        (1U << LNET_MTU_BITS)
110
111 /* When PAGE_SIZE is a constant, we can check our arithmetic here with cpp! */
112 #if ((PTLRPC_MAX_BRW_PAGES & (PTLRPC_MAX_BRW_PAGES - 1)) != 0)
113 # error "PTLRPC_MAX_BRW_PAGES isn't a power of two"
114 #endif
115 #if (PTLRPC_MAX_BRW_SIZE != (PTLRPC_MAX_BRW_PAGES * PAGE_SIZE))
116 # error "PTLRPC_MAX_BRW_SIZE isn't PTLRPC_MAX_BRW_PAGES * PAGE_SIZE"
117 #endif
118 #if (PTLRPC_MAX_BRW_SIZE > LNET_MTU * PTLRPC_BULK_OPS_COUNT)
119 # error "PTLRPC_MAX_BRW_SIZE too big"
120 #endif
121 #if (PTLRPC_MAX_BRW_PAGES > LNET_MAX_IOV * PTLRPC_BULK_OPS_COUNT)
122 # error "PTLRPC_MAX_BRW_PAGES too big"
123 #endif
124
125 #define PTLRPC_NTHRS_INIT       2
126
127 /**
128  * Buffer Constants
129  *
130  * Constants determine how memory is used to buffer incoming service requests.
131  *
132  * ?_NBUFS              # buffers to allocate when growing the pool
133  * ?_BUFSIZE            # bytes in a single request buffer
134  * ?_MAXREQSIZE         # maximum request service will receive
135  *
136  * When fewer than ?_NBUFS/2 buffers are posted for receive, another chunk
137  * of ?_NBUFS is added to the pool.
138  *
139  * Messages larger than ?_MAXREQSIZE are dropped.  Request buffers are
140  * considered full when less than ?_MAXREQSIZE is left in them.
141  */
142 /**
143  * Thread Constants
144  *
145  * Constants determine how threads are created for ptlrpc service.
146  *
147  * ?_NTHRS_INIT         # threads to create for each service partition on
148  *                        initializing. If it's non-affinity service and
149  *                        there is only one partition, it's the overall #
150  *                        threads for the service while initializing.
151  * ?_NTHRS_BASE         # threads should be created at least for each
152  *                        ptlrpc partition to keep the service healthy.
153  *                        It's the low-water mark of threads upper-limit
154  *                        for each partition.
155  * ?_THR_FACTOR         # threads can be added on threads upper-limit for
156  *                        each CPU core. This factor is only for reference,
157  *                        we might decrease value of factor if number of cores
158  *                        per CPT is above a limit.
159  * ?_NTHRS_MAX          # overall threads can be created for a service,
160  *                        it's a soft limit because if service is running
161  *                        on machine with hundreds of cores and tens of
162  *                        CPU partitions, we need to guarantee each partition
163  *                        has ?_NTHRS_BASE threads, which means total threads
164  *                        will be ?_NTHRS_BASE * number_of_cpts which can
165  *                        exceed ?_NTHRS_MAX.
166  *
167  * Examples
168  *
169  * #define MDS_NTHRS_INIT       2
170  * #define MDS_NTHRS_BASE       64
171  * #define MDS_NTHRS_FACTOR     8
172  * #define MDS_NTHRS_MAX        1024
173  *
174  * Example 1):
175  * ---------------------------------------------------------------------
176  * Server(A) has 16 cores, user configured it to 4 partitions so each
177  * partition has 4 cores, then actual number of service threads on each
178  * partition is:
179  *     MDS_NTHRS_BASE(64) + cores(4) * MDS_NTHRS_FACTOR(8) = 96
180  *
181  * Total number of threads for the service is:
182  *     96 * partitions(4) = 384
183  *
184  * Example 2):
185  * ---------------------------------------------------------------------
186  * Server(B) has 32 cores, user configured it to 4 partitions so each
187  * partition has 8 cores, then actual number of service threads on each
188  * partition is:
189  *     MDS_NTHRS_BASE(64) + cores(8) * MDS_NTHRS_FACTOR(8) = 128
190  *
191  * Total number of threads for the service is:
192  *     128 * partitions(4) = 512
193  *
194  * Example 3):
195  * ---------------------------------------------------------------------
196  * Server(B) has 96 cores, user configured it to 8 partitions so each
197  * partition has 12 cores, then actual number of service threads on each
198  * partition is:
199  *     MDS_NTHRS_BASE(64) + cores(12) * MDS_NTHRS_FACTOR(8) = 160
200  *
201  * Total number of threads for the service is:
202  *     160 * partitions(8) = 1280
203  *
204  * However, it's above the soft limit MDS_NTHRS_MAX, so we choose this number
205  * as upper limit of threads number for each partition:
206  *     MDS_NTHRS_MAX(1024) / partitions(8) = 128
207  *
208  * Example 4):
209  * ---------------------------------------------------------------------
210  * Server(C) have a thousand of cores and user configured it to 32 partitions
211  *     MDS_NTHRS_BASE(64) * 32 = 2048
212  *
213  * which is already above soft limit MDS_NTHRS_MAX(1024), but we still need
214  * to guarantee that each partition has at least MDS_NTHRS_BASE(64) threads
215  * to keep service healthy, so total number of threads will just be 2048.
216  *
217  * NB: we don't suggest to choose server with that many cores because backend
218  *     filesystem itself, buffer cache, or underlying network stack might
219  *     have some SMP scalability issues at that large scale.
220  *
221  *     If user already has a fat machine with hundreds or thousands of cores,
222  *     there are two choices for configuration:
223  *     a) create CPU table from subset of all CPUs and run Lustre on
224  *        top of this subset
225  *     b) bind service threads on a few partitions, see modparameters of
226  *        MDS and OSS for details
227 *
228  * NB: these calculations (and examples below) are simplified to help
229  *     understanding, the real implementation is a little more complex,
230  *     please see ptlrpc_server_nthreads_check() for details.
231  *
232  */
233
234  /*
235   * LDLM threads constants:
236   *
237   * Given 8 as factor and 24 as base threads number
238   *
239   * example 1)
240   * On 4-core machine we will have 24 + 8 * 4 = 56 threads.
241   *
242   * example 2)
243   * On 8-core machine with 2 partitions we will have 24 + 4 * 8 = 56
244   * threads for each partition and total threads number will be 112.
245   *
246   * example 3)
247   * On 64-core machine with 8 partitions we will need LDLM_NTHRS_BASE(24)
248   * threads for each partition to keep service healthy, so total threads
249   * number should be 24 * 8 = 192.
250   *
251   * So with these constants, threads number will be at the similar level
252   * of old versions, unless target machine has over a hundred cores
253   */
254 #define LDLM_THR_FACTOR         8
255 #define LDLM_NTHRS_INIT         PTLRPC_NTHRS_INIT
256 #define LDLM_NTHRS_BASE         24
257 #define LDLM_NTHRS_MAX          (num_online_cpus() == 1 ? 64 : 128)
258
259 #define LDLM_BL_THREADS   LDLM_NTHRS_AUTO_INIT
260 #define LDLM_CLIENT_NBUFS 1
261 #define LDLM_SERVER_NBUFS 64
262 #define LDLM_BUFSIZE      (8 * 1024)
263 #define LDLM_MAXREQSIZE   (5 * 1024)
264 #define LDLM_MAXREPSIZE   (1024)
265
266  /*
267   * MDS threads constants:
268   *
269   * Please see examples in "Thread Constants", MDS threads number will be at
270   * the comparable level of old versions, unless the server has many cores.
271   */
272 #ifndef MDS_MAX_THREADS
273 #define MDS_MAX_THREADS         1024
274 #define MDS_MAX_OTHR_THREADS    256
275
276 #else /* MDS_MAX_THREADS */
277 #if MDS_MAX_THREADS < PTLRPC_NTHRS_INIT
278 #undef MDS_MAX_THREADS
279 #define MDS_MAX_THREADS PTLRPC_NTHRS_INIT
280 #endif
281 #define MDS_MAX_OTHR_THREADS    max(PTLRPC_NTHRS_INIT, MDS_MAX_THREADS / 2)
282 #endif
283
284 /* default service */
285 #define MDS_THR_FACTOR          8
286 #define MDS_NTHRS_INIT          PTLRPC_NTHRS_INIT
287 #define MDS_NTHRS_MAX           MDS_MAX_THREADS
288 #define MDS_NTHRS_BASE          min(64, MDS_NTHRS_MAX)
289
290 /* read-page service */
291 #define MDS_RDPG_THR_FACTOR     4
292 #define MDS_RDPG_NTHRS_INIT     PTLRPC_NTHRS_INIT
293 #define MDS_RDPG_NTHRS_MAX      MDS_MAX_OTHR_THREADS
294 #define MDS_RDPG_NTHRS_BASE     min(48, MDS_RDPG_NTHRS_MAX)
295
296 /* these should be removed when we remove setattr service in the future */
297 #define MDS_SETA_THR_FACTOR     4
298 #define MDS_SETA_NTHRS_INIT     PTLRPC_NTHRS_INIT
299 #define MDS_SETA_NTHRS_MAX      MDS_MAX_OTHR_THREADS
300 #define MDS_SETA_NTHRS_BASE     min(48, MDS_SETA_NTHRS_MAX)
301
302 /* non-affinity threads */
303 #define MDS_OTHR_NTHRS_INIT     PTLRPC_NTHRS_INIT
304 #define MDS_OTHR_NTHRS_MAX      MDS_MAX_OTHR_THREADS
305
306 #define MDS_NBUFS               64
307
308 /**
309  * Assume file name length = FNAME_MAX = 256 (true for ext3).
310  *        path name length = PATH_MAX = 4096
311  *        LOV MD size max  = EA_MAX = 24 * 2000
312  *              (NB: 24 is size of lov_ost_data)
313  *        LOV LOGCOOKIE size max = 32 * 2000
314  *              (NB: 32 is size of llog_cookie)
315  * symlink:  FNAME_MAX + PATH_MAX  <- largest
316  * link:     FNAME_MAX + PATH_MAX  (mds_rec_link < mds_rec_create)
317  * rename:   FNAME_MAX + FNAME_MAX
318  * open:     FNAME_MAX + EA_MAX
319  *
320  * MDS_MAXREQSIZE ~= 4736 bytes =
321  * lustre_msg + ldlm_request + mdt_body + mds_rec_create + FNAME_MAX + PATH_MAX
322  * MDS_MAXREPSIZE ~= 8300 bytes = lustre_msg + llog_header
323  *
324  * Realistic size is about 512 bytes (20 character name + 128 char symlink),
325  * except in the open case where there are a large number of OSTs in a LOV.
326  */
327 #define MDS_MAXREQSIZE          (5 * 1024)      /* >= 4736 */
328 #define MDS_MAXREPSIZE          (9 * 1024)      /* >= 8300 */
329
330 /**
331  * MDS incoming request with LOV EA
332  * 24 = sizeof(struct lov_ost_data), i.e: replay of opencreate
333  */
334 #define MDS_LOV_MAXREQSIZE      max(MDS_MAXREQSIZE, \
335                                     362 + LOV_MAX_STRIPE_COUNT * 24)
336 /**
337  * MDS outgoing reply with LOV EA
338  *
339  * NB: max reply size Lustre 2.4+ client can get from old MDS is:
340  * LOV_MAX_STRIPE_COUNT * (llog_cookie + lov_ost_data) + extra bytes
341  *
342  * but 2.4 or later MDS will never send reply with llog_cookie to any
343  * version client. This macro is defined for server side reply buffer size.
344  */
345 #define MDS_LOV_MAXREPSIZE      MDS_LOV_MAXREQSIZE
346
347 /**
348  * This is the size of a maximum REINT_SETXATTR request:
349  *
350  *   lustre_msg          56 (32 + 4 x 5 + 4)
351  *   ptlrpc_body        184
352  *   mdt_rec_setxattr   136
353  *   lustre_capa        120
354  *   name               256 (XATTR_NAME_MAX)
355  *   value            65536 (XATTR_SIZE_MAX)
356  */
357 #define MDS_EA_MAXREQSIZE       66288
358
359 /**
360  * These are the maximum request and reply sizes (rounded up to 1 KB
361  * boundaries) for the "regular" MDS_REQUEST_PORTAL and MDS_REPLY_PORTAL.
362  */
363 #define MDS_REG_MAXREQSIZE      (((max(MDS_EA_MAXREQSIZE, \
364                                        MDS_LOV_MAXREQSIZE) + 1023) >> 10) << 10)
365 #define MDS_REG_MAXREPSIZE      MDS_REG_MAXREQSIZE
366
367 /**
368  * The update request includes all of updates from the create, which might
369  * include linkea (4K maxim), together with other updates, we set it to 1000K:
370  * lustre_msg + ptlrpc_body + OUT_UPDATE_BUFFER_SIZE_MAX
371  */
372 #define OUT_MAXREQSIZE  (1000 * 1024)
373 #define OUT_MAXREPSIZE  MDS_MAXREPSIZE
374
375 /** MDS_BUFSIZE = max_reqsize (w/o LOV EA) + max sptlrpc payload size */
376 #define MDS_BUFSIZE             max(MDS_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD, \
377                                     8 * 1024)
378
379 /**
380  * MDS_REG_BUFSIZE should at least be MDS_REG_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD.
381  * However, we need to allocate a much larger buffer for it because LNet
382  * requires each MD(rqbd) has at least MDS_REQ_MAXREQSIZE bytes left to avoid
383  * dropping of maximum-sized incoming request.  So if MDS_REG_BUFSIZE is only a
384  * little larger than MDS_REG_MAXREQSIZE, then it can only fit in one request
385  * even there are about MDS_REG_MAX_REQSIZE bytes left in a rqbd, and memory
386  * utilization is very low.
387  *
388  * In the meanwhile, size of rqbd can't be too large, because rqbd can't be
389  * reused until all requests fit in it have been processed and released,
390  * which means one long blocked request can prevent the rqbd be reused.
391  * Now we set request buffer size to 160 KB, so even each rqbd is unlinked
392  * from LNet with unused 65 KB, buffer utilization will be about 59%.
393  * Please check LU-2432 for details.
394  */
395 #define MDS_REG_BUFSIZE         max(MDS_REG_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD, \
396                                     160 * 1024)
397
398 /**
399  * OUT_BUFSIZE = max_out_reqsize + max sptlrpc payload (~1K) which is
400  * about 10K, for the same reason as MDS_REG_BUFSIZE, we also give some
401  * extra bytes to each request buffer to improve buffer utilization rate.
402   */
403 #define OUT_BUFSIZE             max(OUT_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD, \
404                                     24 * 1024)
405
406 /** FLD_MAXREQSIZE == lustre_msg + __u32 padding + ptlrpc_body + opc */
407 #define FLD_MAXREQSIZE  (160)
408
409 /** FLD_MAXREPSIZE == lustre_msg + ptlrpc_body */
410 #define FLD_MAXREPSIZE  (152)
411 #define FLD_BUFSIZE     (1 << 12)
412
413 /**
414  * SEQ_MAXREQSIZE == lustre_msg + __u32 padding + ptlrpc_body + opc + lu_range +
415  * __u32 padding */
416 #define SEQ_MAXREQSIZE  (160)
417
418 /** SEQ_MAXREPSIZE == lustre_msg + ptlrpc_body + lu_range */
419 #define SEQ_MAXREPSIZE  (152)
420 #define SEQ_BUFSIZE     (1 << 12)
421
422 /** MGS threads must be >= 3, see bug 22458 comment #28 */
423 #define MGS_NTHRS_INIT  (PTLRPC_NTHRS_INIT + 1)
424 #define MGS_NTHRS_MAX   32
425
426 #define MGS_NBUFS       64
427 #define MGS_BUFSIZE     (8 * 1024)
428 #define MGS_MAXREQSIZE  (7 * 1024)
429 #define MGS_MAXREPSIZE  (9 * 1024)
430
431  /*
432   * OSS threads constants:
433   *
434   * Given 8 as factor and 64 as base threads number
435   *
436   * example 1):
437   * On 8-core server configured to 2 partitions, we will have
438   * 64 + 8 * 4 = 96 threads for each partition, 192 total threads.
439   *
440   * example 2):
441   * On 32-core machine configured to 4 partitions, we will have
442   * 64 + 8 * 8 = 112 threads for each partition, so total threads number
443   * will be 112 * 4 = 448.
444   *
445   * example 3):
446   * On 64-core machine configured to 4 partitions, we will have
447   * 64 + 16 * 8 = 192 threads for each partition, so total threads number
448   * will be 192 * 4 = 768 which is above limit OSS_NTHRS_MAX(512), so we
449   * cut off the value to OSS_NTHRS_MAX(512) / 4 which is 128 threads
450   * for each partition.
451   *
452   * So we can see that with these constants, threads number wil be at the
453   * similar level of old versions, unless the server has many cores.
454   */
455  /* depress threads factor for VM with small memory size */
456 #define OSS_THR_FACTOR          min_t(int, 8, \
457                                 NUM_CACHEPAGES >> (28 - PAGE_SHIFT))
458 #define OSS_NTHRS_INIT          (PTLRPC_NTHRS_INIT + 1)
459 #define OSS_NTHRS_BASE          64
460
461 /* threads for handling "create" request */
462 #define OSS_CR_THR_FACTOR       1
463 #define OSS_CR_NTHRS_INIT       PTLRPC_NTHRS_INIT
464 #define OSS_CR_NTHRS_BASE       8
465 #define OSS_CR_NTHRS_MAX        64
466
467 /**
468  * OST_IO_MAXREQSIZE ~=
469  *      lustre_msg + ptlrpc_body + obdo + obd_ioobj +
470  *      DT_MAX_BRW_PAGES * niobuf_remote
471  *
472  * - single object with 16 pages is 512 bytes
473  * - OST_IO_MAXREQSIZE must be at least 1 page of cookies plus some spillover
474  * - Must be a multiple of 1024
475  */
476 #define _OST_MAXREQSIZE_BASE (sizeof(struct lustre_msg) + \
477                               sizeof(struct ptlrpc_body) + \
478                               sizeof(struct obdo) + \
479                               sizeof(struct obd_ioobj) + \
480                               sizeof(struct niobuf_remote))
481 #define _OST_MAXREQSIZE_SUM (_OST_MAXREQSIZE_BASE + \
482                              sizeof(struct niobuf_remote) * \
483                              (DT_MAX_BRW_PAGES - 1))
484 /**
485  * FIEMAP request can be 4K+ for now
486  */
487 #define OST_MAXREQSIZE          (16 * 1024)
488 #define OST_IO_MAXREQSIZE       max_t(int, OST_MAXREQSIZE, \
489                                 (((_OST_MAXREQSIZE_SUM - 1) | (1024 - 1)) + 1))
490 /* Safe estimate of free space in standard RPC, provides upper limit for # of
491  * bytes of i/o to pack in RPC (skipping bulk transfer). */
492 #define OST_SHORT_IO_SPACE      (OST_IO_MAXREQSIZE - _OST_MAXREQSIZE_BASE)
493
494 /* Actual size used for short i/o buffer.  Calculation means this:
495  * At least one page (for large PAGE_SIZE), or 16 KiB, but not more
496  * than the available space aligned to a page boundary. */
497 #define OBD_MAX_SHORT_IO_BYTES  (min(max(PAGE_SIZE, 16UL * 1024UL), \
498                                     OST_SHORT_IO_SPACE & PAGE_MASK))
499
500 #define OST_MAXREPSIZE          (9 * 1024)
501 #define OST_IO_MAXREPSIZE       OST_MAXREPSIZE
502
503 #define OST_NBUFS               64
504 /** OST_BUFSIZE = max_reqsize + max sptlrpc payload size */
505 #define OST_BUFSIZE             max_t(int, OST_MAXREQSIZE + 1024, 16 * 1024)
506 /**
507  * OST_IO_MAXREQSIZE is 18K, giving extra 46K can increase buffer utilization
508  * rate of request buffer, please check comment of MDS_LOV_BUFSIZE for details.
509  */
510 #define OST_IO_BUFSIZE          max_t(int, OST_IO_MAXREQSIZE + 1024, 64 * 1024)
511
512
513 /* Macro to hide a typecast. */
514 #define ptlrpc_req_async_args(req) ((void *)&req->rq_async_args)
515
516 struct ptlrpc_replay_async_args {
517         int             praa_old_state;
518         int             praa_old_status;
519 };
520
521 /**
522  * Structure to single define portal connection.
523  */
524 struct ptlrpc_connection {
525         /** linkage for connections hash table */
526         struct hlist_node        c_hash;
527         /** Our own lnet nid for this connection */
528         lnet_nid_t              c_self;
529         /** Remote side nid for this connection */
530         struct lnet_process_id       c_peer;
531         /** UUID of the other side */
532         struct obd_uuid         c_remote_uuid;
533         /** reference counter for this connection */
534         atomic_t            c_refcount;
535 };
536
537 /** Client definition for PortalRPC */
538 struct ptlrpc_client {
539         /** What lnet portal does this client send messages to by default */
540         __u32                   cli_request_portal;
541         /** What portal do we expect replies on */
542         __u32                   cli_reply_portal;
543         /** Name of the client */
544         char                   *cli_name;
545 };
546
547 /** state flags of requests */
548 /* XXX only ones left are those used by the bulk descs as well! */
549 #define PTL_RPC_FL_INTR      (1 << 0)  /* reply wait was interrupted by user */
550 #define PTL_RPC_FL_TIMEOUT   (1 << 7)  /* request timed out waiting for reply */
551
552 #define REQ_MAX_ACK_LOCKS 8
553
554 union ptlrpc_async_args {
555         /**
556          * Scratchpad for passing args to completion interpreter. Users
557          * cast to the struct of their choosing, and CLASSERT that this is
558          * big enough.  For _tons_ of context, OBD_ALLOC a struct and store
559          * a pointer to it here.  The pointer_arg ensures this struct is at
560          * least big enough for that.
561          */
562         void      *pointer_arg[11];
563         __u64      space[7];
564 };
565
566 struct ptlrpc_request_set;
567 typedef int (*set_interpreter_func)(struct ptlrpc_request_set *, void *, int);
568 typedef int (*set_producer_func)(struct ptlrpc_request_set *, void *);
569
570 /**
571  * Definition of request set structure.
572  * Request set is a list of requests (not necessary to the same target) that
573  * once populated with RPCs could be sent in parallel.
574  * There are two kinds of request sets. General purpose and with dedicated
575  * serving thread. Example of the latter is ptlrpcd set.
576  * For general purpose sets once request set started sending it is impossible
577  * to add new requests to such set.
578  * Provides a way to call "completion callbacks" when all requests in the set
579  * returned.
580  */
581 struct ptlrpc_request_set {
582         atomic_t                set_refcount;
583         /** number of in queue requests */
584         atomic_t                set_new_count;
585         /** number of uncompleted requests */
586         atomic_t                set_remaining;
587         /** wait queue to wait on for request events */
588         wait_queue_head_t       set_waitq;
589         wait_queue_head_t      *set_wakeup_ptr;
590         /** List of requests in the set */
591         struct list_head        set_requests;
592         /**
593          * List of completion callbacks to be called when the set is completed
594          * This is only used if \a set_interpret is NULL.
595          * Links struct ptlrpc_set_cbdata.
596          */
597         struct list_head        set_cblist;
598         /** Completion callback, if only one. */
599         set_interpreter_func    set_interpret;
600         /** opaq argument passed to completion \a set_interpret callback. */
601         void                    *set_arg;
602         /**
603          * Lock for \a set_new_requests manipulations
604          * locked so that any old caller can communicate requests to
605          * the set holder who can then fold them into the lock-free set
606          */
607         spinlock_t              set_new_req_lock;
608         /** List of new yet unsent requests. Only used with ptlrpcd now. */
609         struct list_head        set_new_requests;
610
611         /** rq_status of requests that have been freed already */
612         int                     set_rc;
613         /** Additional fields used by the flow control extension */
614         /** Maximum number of RPCs in flight */
615         int                     set_max_inflight;
616         /** Callback function used to generate RPCs */
617         set_producer_func       set_producer;
618         /** opaq argument passed to the producer callback */
619         void                    *set_producer_arg;
620         unsigned int             set_allow_intr:1;
621 };
622
623 /**
624  * Description of a single ptrlrpc_set callback
625  */
626 struct ptlrpc_set_cbdata {
627         /** List linkage item */
628         struct list_head        psc_item;
629         /** Pointer to interpreting function */
630         set_interpreter_func    psc_interpret;
631         /** Opaq argument to pass to the callback */
632         void                    *psc_data;
633 };
634
635 struct ptlrpc_bulk_desc;
636 struct ptlrpc_service_part;
637 struct ptlrpc_service;
638
639 /**
640  * ptlrpc callback & work item stuff
641  */
642 struct ptlrpc_cb_id {
643         void (*cbid_fn)(struct lnet_event *ev); /* specific callback fn */
644         void *cbid_arg;                         /* additional arg */
645 };
646
647 /** Maximum number of locks to fit into reply state */
648 #define RS_MAX_LOCKS 8
649 #define RS_DEBUG     0
650
651 /**
652  * Structure to define reply state on the server
653  * Reply state holds various reply message information. Also for "difficult"
654  * replies (rep-ack case) we store the state after sending reply and wait
655  * for the client to acknowledge the reception. In these cases locks could be
656  * added to the state for replay/failover consistency guarantees.
657  */
658 struct ptlrpc_reply_state {
659         /** Callback description */
660         struct ptlrpc_cb_id     rs_cb_id;
661         /** Linkage for list of all reply states in a system */
662         struct list_head        rs_list;
663         /** Linkage for list of all reply states on same export */
664         struct list_head        rs_exp_list;
665         /** Linkage for list of all reply states for same obd */
666         struct list_head        rs_obd_list;
667 #if RS_DEBUG
668         struct list_head        rs_debug_list;
669 #endif
670         /** A spinlock to protect the reply state flags */
671         spinlock_t              rs_lock;
672         /** Reply state flags */
673         unsigned long          rs_difficult:1;     /* ACK/commit stuff */
674         unsigned long          rs_no_ack:1;    /* no ACK, even for
675                                                   difficult requests */
676         unsigned long          rs_scheduled:1;     /* being handled? */
677         unsigned long          rs_scheduled_ever:1;/* any schedule attempts? */
678         unsigned long          rs_handled:1;  /* been handled yet? */
679         unsigned long          rs_on_net:1;   /* reply_out_callback pending? */
680         unsigned long          rs_prealloc:1; /* rs from prealloc list */
681         unsigned long          rs_committed:1;/* the transaction was committed
682                                                  and the rs was dispatched
683                                                  by ptlrpc_commit_replies */
684         unsigned long           rs_convert_lock:1; /* need to convert saved
685                                                     * locks to COS mode */
686         atomic_t                rs_refcount;    /* number of users */
687         /** Number of locks awaiting client ACK */
688         int                     rs_nlocks;
689
690         /** Size of the state */
691         int                    rs_size;
692         /** opcode */
693         __u32                  rs_opc;
694         /** Transaction number */
695         __u64                  rs_transno;
696         /** xid */
697         __u64                  rs_xid;
698         struct obd_export     *rs_export;
699         struct ptlrpc_service_part *rs_svcpt;
700         /** Lnet metadata handle for the reply */
701         struct lnet_handle_md   rs_md_h;
702
703         /** Context for the sevice thread */
704         struct ptlrpc_svc_ctx   *rs_svc_ctx;
705         /** Reply buffer (actually sent to the client), encoded if needed */
706         struct lustre_msg       *rs_repbuf;     /* wrapper */
707         /** Size of the reply buffer */
708         int                     rs_repbuf_len;  /* wrapper buf length */
709         /** Size of the reply message */
710         int                     rs_repdata_len; /* wrapper msg length */
711         /**
712          * Actual reply message. Its content is encrupted (if needed) to
713          * produce reply buffer for actual sending. In simple case
714          * of no network encryption we jus set \a rs_repbuf to \a rs_msg
715          */
716         struct lustre_msg       *rs_msg;        /* reply message */
717
718         /** Handles of locks awaiting client reply ACK */
719         struct lustre_handle    rs_locks[RS_MAX_LOCKS];
720         /** Lock modes of locks in \a rs_locks */
721         enum ldlm_mode          rs_modes[RS_MAX_LOCKS];
722 };
723
724 struct ptlrpc_thread;
725
726 /** RPC stages */
727 enum rq_phase {
728         RQ_PHASE_NEW            = 0xebc0de00,
729         RQ_PHASE_RPC            = 0xebc0de01,
730         RQ_PHASE_BULK           = 0xebc0de02,
731         RQ_PHASE_INTERPRET      = 0xebc0de03,
732         RQ_PHASE_COMPLETE       = 0xebc0de04,
733         RQ_PHASE_UNREG_RPC      = 0xebc0de05,
734         RQ_PHASE_UNREG_BULK     = 0xebc0de06,
735         RQ_PHASE_UNDEFINED      = 0xebc0de07
736 };
737
738 /** Type of request interpreter call-back */
739 typedef int (*ptlrpc_interpterer_t)(const struct lu_env *env,
740                                     struct ptlrpc_request *req,
741                                     void *arg, int rc);
742 /** Type of request resend call-back */
743 typedef void (*ptlrpc_resend_cb_t)(struct ptlrpc_request *req,
744                                    void *arg);
745
746 /**
747  * Definition of request pool structure.
748  * The pool is used to store empty preallocated requests for the case
749  * when we would actually need to send something without performing
750  * any allocations (to avoid e.g. OOM).
751  */
752 struct ptlrpc_request_pool {
753         /** Locks the list */
754         spinlock_t              prp_lock;
755         /** list of ptlrpc_request structs */
756         struct list_head        prp_req_list;
757         /** Maximum message size that would fit into a rquest from this pool */
758         int                     prp_rq_size;
759         /** Function to allocate more requests for this pool */
760         int (*prp_populate)(struct ptlrpc_request_pool *, int);
761 };
762
763 struct lu_context;
764 struct lu_env;
765
766 struct ldlm_lock;
767
768 #include <lustre_nrs.h>
769
770 /**
771  * Basic request prioritization operations structure.
772  * The whole idea is centered around locks and RPCs that might affect locks.
773  * When a lock is contended we try to give priority to RPCs that might lead
774  * to fastest release of that lock.
775  * Currently only implemented for OSTs only in a way that makes all
776  * IO and truncate RPCs that are coming from a locked region where a lock is
777  * contended a priority over other requests.
778  */
779 struct ptlrpc_hpreq_ops {
780         /**
781          * Check if the lock handle of the given lock is the same as
782          * taken from the request.
783          */
784         int  (*hpreq_lock_match)(struct ptlrpc_request *, struct ldlm_lock *);
785         /**
786          * Check if the request is a high priority one.
787          */
788         int  (*hpreq_check)(struct ptlrpc_request *);
789         /**
790          * Called after the request has been handled.
791          */
792         void (*hpreq_fini)(struct ptlrpc_request *);
793 };
794
795 struct ptlrpc_cli_req {
796         /** For bulk requests on client only: bulk descriptor */
797         struct ptlrpc_bulk_desc         *cr_bulk;
798         /** optional time limit for send attempts */
799         time64_t                         cr_delay_limit;
800         /** time request was first queued */
801         time64_t                         cr_queued_time;
802         /** request sent in nanoseconds */
803         ktime_t                          cr_sent_ns;
804         /** time for request really sent out */
805         time64_t                         cr_sent_out;
806         /** when req reply unlink must finish. */
807         time64_t                         cr_reply_deadline;
808         /** when req bulk unlink must finish. */
809         time64_t                         cr_bulk_deadline;
810         /** when req unlink must finish. */
811         time64_t                         cr_req_deadline;
812         /** Portal to which this request would be sent */
813         short                            cr_req_ptl;
814         /** Portal where to wait for reply and where reply would be sent */
815         short                            cr_rep_ptl;
816         /** request resending number */
817         unsigned int                     cr_resend_nr;
818         /** What was import generation when this request was sent */
819         int                              cr_imp_gen;
820         enum lustre_imp_state            cr_send_state;
821         /** Per-request waitq introduced by bug 21938 for recovery waiting */
822         wait_queue_head_t                cr_set_waitq;
823         /** Link item for request set lists */
824         struct list_head                 cr_set_chain;
825         /** link to waited ctx */
826         struct list_head                 cr_ctx_chain;
827
828         /** client's half ctx */
829         struct ptlrpc_cli_ctx           *cr_cli_ctx;
830         /** Link back to the request set */
831         struct ptlrpc_request_set       *cr_set;
832         /** outgoing request MD handle */
833         struct lnet_handle_md            cr_req_md_h;
834         /** request-out callback parameter */
835         struct ptlrpc_cb_id              cr_req_cbid;
836         /** incoming reply MD handle */
837         struct lnet_handle_md            cr_reply_md_h;
838         wait_queue_head_t                cr_reply_waitq;
839         /** reply callback parameter */
840         struct ptlrpc_cb_id              cr_reply_cbid;
841         /** Async completion handler, called when reply is received */
842         ptlrpc_interpterer_t             cr_reply_interp;
843         /** Resend handler, called when request is resend to update RPC data */
844         ptlrpc_resend_cb_t               cr_resend_cb;
845         /** Async completion context */
846         union ptlrpc_async_args          cr_async_args;
847         /** Opaq data for replay and commit callbacks. */
848         void                            *cr_cb_data;
849         /** Link to the imp->imp_unreplied_list */
850         struct list_head                 cr_unreplied_list;
851         /**
852          * Commit callback, called when request is committed and about to be
853          * freed.
854          */
855         void (*cr_commit_cb)(struct ptlrpc_request *);
856         /** Replay callback, called after request is replayed at recovery */
857         void (*cr_replay_cb)(struct ptlrpc_request *);
858 };
859
860 /** client request member alias */
861 /* NB: these alias should NOT be used by any new code, instead they should
862  * be removed step by step to avoid potential abuse */
863 #define rq_bulk                 rq_cli.cr_bulk
864 #define rq_delay_limit          rq_cli.cr_delay_limit
865 #define rq_queued_time          rq_cli.cr_queued_time
866 #define rq_sent_ns              rq_cli.cr_sent_ns
867 #define rq_real_sent            rq_cli.cr_sent_out
868 #define rq_reply_deadline       rq_cli.cr_reply_deadline
869 #define rq_bulk_deadline        rq_cli.cr_bulk_deadline
870 #define rq_req_deadline         rq_cli.cr_req_deadline
871 #define rq_nr_resend            rq_cli.cr_resend_nr
872 #define rq_request_portal       rq_cli.cr_req_ptl
873 #define rq_reply_portal         rq_cli.cr_rep_ptl
874 #define rq_import_generation    rq_cli.cr_imp_gen
875 #define rq_send_state           rq_cli.cr_send_state
876 #define rq_set_chain            rq_cli.cr_set_chain
877 #define rq_ctx_chain            rq_cli.cr_ctx_chain
878 #define rq_set                  rq_cli.cr_set
879 #define rq_set_waitq            rq_cli.cr_set_waitq
880 #define rq_cli_ctx              rq_cli.cr_cli_ctx
881 #define rq_req_md_h             rq_cli.cr_req_md_h
882 #define rq_req_cbid             rq_cli.cr_req_cbid
883 #define rq_reply_md_h           rq_cli.cr_reply_md_h
884 #define rq_reply_waitq          rq_cli.cr_reply_waitq
885 #define rq_reply_cbid           rq_cli.cr_reply_cbid
886 #define rq_interpret_reply      rq_cli.cr_reply_interp
887 #define rq_resend_cb            rq_cli.cr_resend_cb
888 #define rq_async_args           rq_cli.cr_async_args
889 #define rq_cb_data              rq_cli.cr_cb_data
890 #define rq_unreplied_list       rq_cli.cr_unreplied_list
891 #define rq_commit_cb            rq_cli.cr_commit_cb
892 #define rq_replay_cb            rq_cli.cr_replay_cb
893
894 struct ptlrpc_srv_req {
895         /** initial thread servicing this request */
896         struct ptlrpc_thread            *sr_svc_thread;
897         /**
898          * Server side list of incoming unserved requests sorted by arrival
899          * time.  Traversed from time to time to notice about to expire
900          * requests and sent back "early replies" to clients to let them
901          * know server is alive and well, just very busy to service their
902          * requests in time
903          */
904         struct list_head                 sr_timed_list;
905         /** server-side per-export list */
906         struct list_head                 sr_exp_list;
907         /** server-side history, used for debuging purposes. */
908         struct list_head                 sr_hist_list;
909         /** history sequence # */
910         __u64                            sr_hist_seq;
911         /** the index of service's srv_at_array into which request is linked */
912         __u32                            sr_at_index;
913         /** authed uid */
914         uid_t                            sr_auth_uid;
915         /** authed uid mapped to */
916         uid_t                            sr_auth_mapped_uid;
917         /** RPC is generated from what part of Lustre */
918         enum lustre_sec_part             sr_sp_from;
919         /** request session context */
920         struct lu_context                sr_ses;
921         /** \addtogroup  nrs
922          * @{
923          */
924         /** stub for NRS request */
925         struct ptlrpc_nrs_request        sr_nrq;
926         /** @} nrs */
927         /** request arrival time */
928         struct timespec64                sr_arrival_time;
929         /** server's half ctx */
930         struct ptlrpc_svc_ctx           *sr_svc_ctx;
931         /** (server side), pointed directly into req buffer */
932         struct ptlrpc_user_desc         *sr_user_desc;
933         /** separated reply state, may be vmalloc'd */
934         struct ptlrpc_reply_state       *sr_reply_state;
935         /** server-side hp handlers */
936         struct ptlrpc_hpreq_ops         *sr_ops;
937         /** incoming request buffer */
938         struct ptlrpc_request_buffer_desc *sr_rqbd;
939 };
940
941 /** server request member alias */
942 /* NB: these alias should NOT be used by any new code, instead they should
943  * be removed step by step to avoid potential abuse */
944 #define rq_svc_thread           rq_srv.sr_svc_thread
945 #define rq_timed_list           rq_srv.sr_timed_list
946 #define rq_exp_list             rq_srv.sr_exp_list
947 #define rq_history_list         rq_srv.sr_hist_list
948 #define rq_history_seq          rq_srv.sr_hist_seq
949 #define rq_at_index             rq_srv.sr_at_index
950 #define rq_auth_uid             rq_srv.sr_auth_uid
951 #define rq_auth_mapped_uid      rq_srv.sr_auth_mapped_uid
952 #define rq_sp_from              rq_srv.sr_sp_from
953 #define rq_session              rq_srv.sr_ses
954 #define rq_nrq                  rq_srv.sr_nrq
955 #define rq_arrival_time         rq_srv.sr_arrival_time
956 #define rq_reply_state          rq_srv.sr_reply_state
957 #define rq_svc_ctx              rq_srv.sr_svc_ctx
958 #define rq_user_desc            rq_srv.sr_user_desc
959 #define rq_ops                  rq_srv.sr_ops
960 #define rq_rqbd                 rq_srv.sr_rqbd
961
962 /**
963  * Represents remote procedure call.
964  *
965  * This is a staple structure used by everybody wanting to send a request
966  * in Lustre.
967  */
968 struct ptlrpc_request {
969         /* Request type: one of PTL_RPC_MSG_* */
970         int                              rq_type;
971         /** Result of request processing */
972         int                              rq_status;
973         /**
974          * Linkage item through which this request is included into
975          * sending/delayed lists on client and into rqbd list on server
976          */
977         struct list_head                 rq_list;
978         /** Lock to protect request flags and some other important bits, like
979          * rq_list
980          */
981         spinlock_t                       rq_lock;
982         spinlock_t                       rq_early_free_lock;
983         /** client-side flags are serialized by rq_lock @{ */
984         unsigned int rq_intr:1, rq_replied:1, rq_err:1,
985                 rq_timedout:1, rq_resend:1, rq_restart:1,
986                 /**
987                  * when ->rq_replay is set, request is kept by the client even
988                  * after server commits corresponding transaction. This is
989                  * used for operations that require sequence of multiple
990                  * requests to be replayed. The only example currently is file
991                  * open/close. When last request in such a sequence is
992                  * committed, ->rq_replay is cleared on all requests in the
993                  * sequence.
994                  */
995                 rq_replay:1,
996                 rq_no_resend:1, rq_waiting:1, rq_receiving_reply:1,
997                 rq_no_delay:1, rq_net_err:1, rq_wait_ctx:1,
998                 rq_early:1,
999                 rq_req_unlinked:1,      /* unlinked request buffer from lnet */
1000                 rq_reply_unlinked:1,    /* unlinked reply buffer from lnet */
1001                 rq_memalloc:1,      /* req originated from "kswapd" */
1002                 rq_committed:1,
1003                 rq_reply_truncated:1,
1004                 /** whether the "rq_set" is a valid one */
1005                 rq_invalid_rqset:1,
1006                 rq_generation_set:1,
1007                 /** do not resend request on -EINPROGRESS */
1008                 rq_no_retry_einprogress:1,
1009                 /* allow the req to be sent if the import is in recovery
1010                  * status */
1011                 rq_allow_replay:1,
1012                 /* bulk request, sent to server, but uncommitted */
1013                 rq_unstable:1,
1014                 rq_early_free_repbuf:1, /* free reply buffer in advance */
1015                 rq_allow_intr:1;
1016         /** @} */
1017
1018         /** server-side flags @{ */
1019         unsigned int
1020                 rq_hp:1,                /**< high priority RPC */
1021                 rq_at_linked:1,         /**< link into service's srv_at_array */
1022                 rq_packed_final:1;      /**< packed final reply */
1023         /** @} */
1024
1025         /** one of RQ_PHASE_* */
1026         enum rq_phase                    rq_phase;
1027         /** one of RQ_PHASE_* to be used next */
1028         enum rq_phase                    rq_next_phase;
1029         /**
1030          * client-side refcount for SENT race, server-side refcounf
1031          * for multiple replies
1032          */
1033         atomic_t                         rq_refcount;
1034         /**
1035          * client-side:
1036          * !rq_truncate : # reply bytes actually received,
1037          *  rq_truncate : required repbuf_len for resend
1038          */
1039         int rq_nob_received;
1040         /** Request length */
1041         int rq_reqlen;
1042         /** Reply length */
1043         int rq_replen;
1044         /** Pool if request is from preallocated list */
1045         struct ptlrpc_request_pool      *rq_pool;
1046         /** Request message - what client sent */
1047         struct lustre_msg *rq_reqmsg;
1048         /** Reply message - server response */
1049         struct lustre_msg *rq_repmsg;
1050         /** Transaction number */
1051         __u64 rq_transno;
1052         /** xid */
1053         __u64                            rq_xid;
1054         /** bulk match bits */
1055         __u64                            rq_mbits;
1056         /**
1057          * List item to for replay list. Not yet committed requests get linked
1058          * there.
1059          * Also see \a rq_replay comment above.
1060          * It's also link chain on obd_export::exp_req_replay_queue
1061          */
1062         struct list_head                 rq_replay_list;
1063         /** non-shared members for client & server request*/
1064         union {
1065                 struct ptlrpc_cli_req    rq_cli;
1066                 struct ptlrpc_srv_req    rq_srv;
1067         };
1068         /**
1069          * security and encryption data
1070          * @{ */
1071         /** description of flavors for client & server */
1072         struct sptlrpc_flavor            rq_flvr;
1073
1074         /* client/server security flags */
1075         unsigned int
1076                                  rq_ctx_init:1,      /* context initiation */
1077                                  rq_ctx_fini:1,      /* context destroy */
1078                                  rq_bulk_read:1,     /* request bulk read */
1079                                  rq_bulk_write:1,    /* request bulk write */
1080                                  /* server authentication flags */
1081                                  rq_auth_gss:1,      /* authenticated by gss */
1082                                  rq_auth_usr_root:1, /* authed as root */
1083                                  rq_auth_usr_mdt:1,  /* authed as mdt */
1084                                  rq_auth_usr_ost:1,  /* authed as ost */
1085                                  /* security tfm flags */
1086                                  rq_pack_udesc:1,
1087                                  rq_pack_bulk:1,
1088                                  /* doesn't expect reply FIXME */
1089                                  rq_no_reply:1,
1090                                  rq_pill_init:1, /* pill initialized */
1091                                  rq_srv_req:1; /* server request */
1092
1093
1094         /** various buffer pointers */
1095         struct lustre_msg               *rq_reqbuf;  /**< req wrapper, vmalloc*/
1096         char                            *rq_repbuf;  /**< rep buffer, vmalloc */
1097         struct lustre_msg               *rq_repdata; /**< rep wrapper msg */
1098         /** only in priv mode */
1099         struct lustre_msg               *rq_clrbuf;
1100         int                      rq_reqbuf_len;  /* req wrapper buf len */
1101         int                      rq_reqdata_len; /* req wrapper msg len */
1102         int                      rq_repbuf_len;  /* rep buffer len */
1103         int                      rq_repdata_len; /* rep wrapper msg len */
1104         int                      rq_clrbuf_len;  /* only in priv mode */
1105         int                      rq_clrdata_len; /* only in priv mode */
1106
1107         /** early replies go to offset 0, regular replies go after that */
1108         unsigned int                     rq_reply_off;
1109         /** @} */
1110
1111         /** Fields that help to see if request and reply were swabbed or not */
1112         __u32                            rq_req_swab_mask;
1113         __u32                            rq_rep_swab_mask;
1114
1115         /** how many early replies (for stats) */
1116         int                              rq_early_count;
1117         /** Server-side, export on which request was received */
1118         struct obd_export               *rq_export;
1119         /** import where request is being sent */
1120         struct obd_import               *rq_import;
1121         /** our LNet NID */
1122         lnet_nid_t                       rq_self;
1123         /** Peer description (the other side) */
1124         struct lnet_process_id           rq_peer;
1125         /** Descriptor for the NID from which the peer sent the request. */
1126         struct lnet_process_id           rq_source;
1127         /**
1128          * service time estimate (secs)
1129          * If the request is not served by this time, it is marked as timed out.
1130          * Do not change to time64_t since this is transmitted over the wire.
1131          */
1132         time_t                           rq_timeout;
1133         /**
1134          * when request/reply sent (secs), or time when request should be sent
1135          */
1136         time64_t                         rq_sent;
1137         /** when request must finish. */
1138         time64_t                         rq_deadline;
1139         /** request format description */
1140         struct req_capsule               rq_pill;
1141 };
1142
1143 /**
1144  * Call completion handler for rpc if any, return it's status or original
1145  * rc if there was no handler defined for this request.
1146  */
1147 static inline int ptlrpc_req_interpret(const struct lu_env *env,
1148                                        struct ptlrpc_request *req, int rc)
1149 {
1150         if (req->rq_interpret_reply != NULL) {
1151                 req->rq_status = req->rq_interpret_reply(env, req,
1152                                                          &req->rq_async_args,
1153                                                          rc);
1154                 return req->rq_status;
1155         }
1156         return rc;
1157 }
1158
1159 /** \addtogroup  nrs
1160  * @{
1161  */
1162 int ptlrpc_nrs_policy_register(struct ptlrpc_nrs_pol_conf *conf);
1163 int ptlrpc_nrs_policy_unregister(struct ptlrpc_nrs_pol_conf *conf);
1164 void ptlrpc_nrs_req_hp_move(struct ptlrpc_request *req);
1165 void nrs_policy_get_info_locked(struct ptlrpc_nrs_policy *policy,
1166                                 struct ptlrpc_nrs_pol_info *info);
1167
1168 /*
1169  * Can the request be moved from the regular NRS head to the high-priority NRS
1170  * head (of the same PTLRPC service partition), if any?
1171  *
1172  * For a reliable result, this should be checked under svcpt->scp_req lock.
1173  */
1174 static inline bool ptlrpc_nrs_req_can_move(struct ptlrpc_request *req)
1175 {
1176         struct ptlrpc_nrs_request *nrq = &req->rq_nrq;
1177
1178         /**
1179          * LU-898: Check ptlrpc_nrs_request::nr_enqueued to make sure the
1180          * request has been enqueued first, and ptlrpc_nrs_request::nr_started
1181          * to make sure it has not been scheduled yet (analogous to previous
1182          * (non-NRS) checking of !list_empty(&ptlrpc_request::rq_list).
1183          */
1184         return nrq->nr_enqueued && !nrq->nr_started && !req->rq_hp;
1185 }
1186 /** @} nrs */
1187
1188 /**
1189  * Returns 1 if request buffer at offset \a index was already swabbed
1190  */
1191 static inline int lustre_req_swabbed(struct ptlrpc_request *req, size_t index)
1192 {
1193         LASSERT(index < sizeof(req->rq_req_swab_mask) * 8);
1194         return req->rq_req_swab_mask & (1 << index);
1195 }
1196
1197 /**
1198  * Returns 1 if request reply buffer at offset \a index was already swabbed
1199  */
1200 static inline int lustre_rep_swabbed(struct ptlrpc_request *req, size_t index)
1201 {
1202         LASSERT(index < sizeof(req->rq_rep_swab_mask) * 8);
1203         return req->rq_rep_swab_mask & (1 << index);
1204 }
1205
1206 /**
1207  * Returns 1 if request needs to be swabbed into local cpu byteorder
1208  */
1209 static inline int ptlrpc_req_need_swab(struct ptlrpc_request *req)
1210 {
1211         return lustre_req_swabbed(req, MSG_PTLRPC_HEADER_OFF);
1212 }
1213
1214 /**
1215  * Returns 1 if request reply needs to be swabbed into local cpu byteorder
1216  */
1217 static inline int ptlrpc_rep_need_swab(struct ptlrpc_request *req)
1218 {
1219         return lustre_rep_swabbed(req, MSG_PTLRPC_HEADER_OFF);
1220 }
1221
1222 /**
1223  * Mark request buffer at offset \a index that it was already swabbed
1224  */
1225 static inline void lustre_set_req_swabbed(struct ptlrpc_request *req,
1226                                           size_t index)
1227 {
1228         LASSERT(index < sizeof(req->rq_req_swab_mask) * 8);
1229         LASSERT((req->rq_req_swab_mask & (1 << index)) == 0);
1230         req->rq_req_swab_mask |= 1 << index;
1231 }
1232
1233 /**
1234  * Mark request reply buffer at offset \a index that it was already swabbed
1235  */
1236 static inline void lustre_set_rep_swabbed(struct ptlrpc_request *req,
1237                                           size_t index)
1238 {
1239         LASSERT(index < sizeof(req->rq_rep_swab_mask) * 8);
1240         LASSERT((req->rq_rep_swab_mask & (1 << index)) == 0);
1241         req->rq_rep_swab_mask |= 1 << index;
1242 }
1243
1244 /**
1245  * Convert numerical request phase value \a phase into text string description
1246  */
1247 static inline const char *
1248 ptlrpc_phase2str(enum rq_phase phase)
1249 {
1250         switch (phase) {
1251         case RQ_PHASE_NEW:
1252                 return "New";
1253         case RQ_PHASE_RPC:
1254                 return "Rpc";
1255         case RQ_PHASE_BULK:
1256                 return "Bulk";
1257         case RQ_PHASE_INTERPRET:
1258                 return "Interpret";
1259         case RQ_PHASE_COMPLETE:
1260                 return "Complete";
1261         case RQ_PHASE_UNREG_RPC:
1262                 return "UnregRPC";
1263         case RQ_PHASE_UNREG_BULK:
1264                 return "UnregBULK";
1265         default:
1266                 return "?Phase?";
1267         }
1268 }
1269
1270 /**
1271  * Convert numerical request phase of the request \a req into text stringi
1272  * description
1273  */
1274 static inline const char *
1275 ptlrpc_rqphase2str(struct ptlrpc_request *req)
1276 {
1277         return ptlrpc_phase2str(req->rq_phase);
1278 }
1279
1280 /**
1281  * Debugging functions and helpers to print request structure into debug log
1282  * @{
1283  */
1284 /* Spare the preprocessor, spoil the bugs. */
1285 #define FLAG(field, str) (field ? str : "")
1286
1287 /** Convert bit flags into a string */
1288 #define DEBUG_REQ_FLAGS(req)                                                   \
1289         ptlrpc_rqphase2str(req),                                               \
1290         FLAG(req->rq_intr, "I"), FLAG(req->rq_replied, "R"),                   \
1291         FLAG(req->rq_err, "E"), FLAG(req->rq_net_err, "e"),                    \
1292         FLAG(req->rq_timedout, "X") /* eXpired */, FLAG(req->rq_resend, "S"),  \
1293         FLAG(req->rq_restart, "T"), FLAG(req->rq_replay, "P"),                 \
1294         FLAG(req->rq_no_resend, "N"),                                          \
1295         FLAG(req->rq_waiting, "W"),                                            \
1296         FLAG(req->rq_wait_ctx, "C"), FLAG(req->rq_hp, "H"),                    \
1297         FLAG(req->rq_committed, "M")
1298
1299 #define REQ_FLAGS_FMT "%s:%s%s%s%s%s%s%s%s%s%s%s%s%s"
1300
1301 void _debug_req(struct ptlrpc_request *req,
1302                 struct libcfs_debug_msg_data *data, const char *fmt, ...)
1303         __attribute__ ((format (printf, 3, 4)));
1304
1305 /**
1306  * Helper that decides if we need to print request accordig to current debug
1307  * level settings
1308  */
1309 #define debug_req(msgdata, mask, cdls, req, fmt, a...)                        \
1310 do {                                                                          \
1311         CFS_CHECK_STACK(msgdata, mask, cdls);                                 \
1312                                                                               \
1313         if (((mask) & D_CANTMASK) != 0 ||                                     \
1314             ((libcfs_debug & (mask)) != 0 &&                                  \
1315              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))                \
1316                 _debug_req((req), msgdata, fmt, ##a);                         \
1317 } while(0)
1318
1319 /**
1320  * This is the debug print function you need to use to print request sturucture
1321  * content into lustre debug log.
1322  * for most callers (level is a constant) this is resolved at compile time */
1323 #define DEBUG_REQ(level, req, fmt, args...)                                   \
1324 do {                                                                          \
1325         if ((level) & (D_ERROR | D_WARNING)) {                                \
1326                 static struct cfs_debug_limit_state cdls;                     \
1327                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);            \
1328                 debug_req(&msgdata, level, &cdls, req, "@@@ "fmt" ", ## args);\
1329         } else {                                                              \
1330                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);             \
1331                 debug_req(&msgdata, level, NULL, req, "@@@ "fmt" ", ## args); \
1332         }                                                                     \
1333 } while (0)
1334 /** @} */
1335
1336 /**
1337  * Structure that defines a single page of a bulk transfer
1338  */
1339 struct ptlrpc_bulk_page {
1340         /** Linkage to list of pages in a bulk */
1341         struct list_head bp_link;
1342         /**
1343          * Number of bytes in a page to transfer starting from \a bp_pageoffset
1344          */
1345         int              bp_buflen;
1346         /** offset within a page */
1347         int              bp_pageoffset;
1348         /** The page itself */
1349         struct page     *bp_page;
1350 };
1351
1352 enum ptlrpc_bulk_op_type {
1353         PTLRPC_BULK_OP_ACTIVE =  0x00000001,
1354         PTLRPC_BULK_OP_PASSIVE = 0x00000002,
1355         PTLRPC_BULK_OP_PUT =     0x00000004,
1356         PTLRPC_BULK_OP_GET =     0x00000008,
1357         PTLRPC_BULK_BUF_KVEC =   0x00000010,
1358         PTLRPC_BULK_BUF_KIOV =   0x00000020,
1359         PTLRPC_BULK_GET_SOURCE = PTLRPC_BULK_OP_PASSIVE | PTLRPC_BULK_OP_GET,
1360         PTLRPC_BULK_PUT_SINK =   PTLRPC_BULK_OP_PASSIVE | PTLRPC_BULK_OP_PUT,
1361         PTLRPC_BULK_GET_SINK =   PTLRPC_BULK_OP_ACTIVE | PTLRPC_BULK_OP_GET,
1362         PTLRPC_BULK_PUT_SOURCE = PTLRPC_BULK_OP_ACTIVE | PTLRPC_BULK_OP_PUT,
1363 };
1364
1365 static inline bool ptlrpc_is_bulk_op_get(enum ptlrpc_bulk_op_type type)
1366 {
1367         return (type & PTLRPC_BULK_OP_GET) == PTLRPC_BULK_OP_GET;
1368 }
1369
1370 static inline bool ptlrpc_is_bulk_get_source(enum ptlrpc_bulk_op_type type)
1371 {
1372         return (type & PTLRPC_BULK_GET_SOURCE) == PTLRPC_BULK_GET_SOURCE;
1373 }
1374
1375 static inline bool ptlrpc_is_bulk_put_sink(enum ptlrpc_bulk_op_type type)
1376 {
1377         return (type & PTLRPC_BULK_PUT_SINK) == PTLRPC_BULK_PUT_SINK;
1378 }
1379
1380 static inline bool ptlrpc_is_bulk_get_sink(enum ptlrpc_bulk_op_type type)
1381 {
1382         return (type & PTLRPC_BULK_GET_SINK) == PTLRPC_BULK_GET_SINK;
1383 }
1384
1385 static inline bool ptlrpc_is_bulk_put_source(enum ptlrpc_bulk_op_type type)
1386 {
1387         return (type & PTLRPC_BULK_PUT_SOURCE) == PTLRPC_BULK_PUT_SOURCE;
1388 }
1389
1390 static inline bool ptlrpc_is_bulk_desc_kvec(enum ptlrpc_bulk_op_type type)
1391 {
1392         return ((type & PTLRPC_BULK_BUF_KVEC) | (type & PTLRPC_BULK_BUF_KIOV))
1393                         == PTLRPC_BULK_BUF_KVEC;
1394 }
1395
1396 static inline bool ptlrpc_is_bulk_desc_kiov(enum ptlrpc_bulk_op_type type)
1397 {
1398         return ((type & PTLRPC_BULK_BUF_KVEC) | (type & PTLRPC_BULK_BUF_KIOV))
1399                         == PTLRPC_BULK_BUF_KIOV;
1400 }
1401
1402 static inline bool ptlrpc_is_bulk_op_active(enum ptlrpc_bulk_op_type type)
1403 {
1404         return ((type & PTLRPC_BULK_OP_ACTIVE) |
1405                 (type & PTLRPC_BULK_OP_PASSIVE))
1406                         == PTLRPC_BULK_OP_ACTIVE;
1407 }
1408
1409 static inline bool ptlrpc_is_bulk_op_passive(enum ptlrpc_bulk_op_type type)
1410 {
1411         return ((type & PTLRPC_BULK_OP_ACTIVE) |
1412                 (type & PTLRPC_BULK_OP_PASSIVE))
1413                         == PTLRPC_BULK_OP_PASSIVE;
1414 }
1415
1416 struct ptlrpc_bulk_frag_ops {
1417         /**
1418          * Add a page \a page to the bulk descriptor \a desc
1419          * Data to transfer in the page starts at offset \a pageoffset and
1420          * amount of data to transfer from the page is \a len
1421          */
1422         void (*add_kiov_frag)(struct ptlrpc_bulk_desc *desc,
1423                               struct page *page, int pageoffset, int len);
1424
1425         /*
1426          * Add a \a fragment to the bulk descriptor \a desc.
1427          * Data to transfer in the fragment is pointed to by \a frag
1428          * The size of the fragment is \a len
1429          */
1430         int (*add_iov_frag)(struct ptlrpc_bulk_desc *desc, void *frag, int len);
1431
1432         /**
1433          * Uninitialize and free bulk descriptor \a desc.
1434          * Works on bulk descriptors both from server and client side.
1435          */
1436         void (*release_frags)(struct ptlrpc_bulk_desc *desc);
1437 };
1438
1439 extern const struct ptlrpc_bulk_frag_ops ptlrpc_bulk_kiov_pin_ops;
1440 extern const struct ptlrpc_bulk_frag_ops ptlrpc_bulk_kiov_nopin_ops;
1441 extern const struct ptlrpc_bulk_frag_ops ptlrpc_bulk_kvec_ops;
1442
1443 /*
1444  * Definition of bulk descriptor.
1445  * Bulks are special "Two phase" RPCs where initial request message
1446  * is sent first and it is followed bt a transfer (o receiving) of a large
1447  * amount of data to be settled into pages referenced from the bulk descriptors.
1448  * Bulks transfers (the actual data following the small requests) are done
1449  * on separate LNet portals.
1450  * In lustre we use bulk transfers for READ and WRITE transfers from/to OSTs.
1451  *  Another user is readpage for MDT.
1452  */
1453 struct ptlrpc_bulk_desc {
1454         /** completed with failure */
1455         unsigned long bd_failure:1;
1456         /** client side */
1457         unsigned long bd_registered:1;
1458         /** For serialization with callback */
1459         spinlock_t bd_lock;
1460         /** Import generation when request for this bulk was sent */
1461         int bd_import_generation;
1462         /** {put,get}{source,sink}{kvec,kiov} */
1463         enum ptlrpc_bulk_op_type bd_type;
1464         /** LNet portal for this bulk */
1465         __u32 bd_portal;
1466         /** Server side - export this bulk created for */
1467         struct obd_export *bd_export;
1468         /** Client side - import this bulk was sent on */
1469         struct obd_import *bd_import;
1470         /** Back pointer to the request */
1471         struct ptlrpc_request *bd_req;
1472         struct ptlrpc_bulk_frag_ops *bd_frag_ops;
1473         wait_queue_head_t      bd_waitq;        /* server side only WQ */
1474         int                    bd_iov_count;    /* # entries in bd_iov */
1475         int                    bd_max_iov;      /* allocated size of bd_iov */
1476         int                    bd_nob;          /* # bytes covered */
1477         int                    bd_nob_transferred; /* # bytes GOT/PUT */
1478
1479         __u64                  bd_last_mbits;
1480
1481         struct ptlrpc_cb_id    bd_cbid;         /* network callback info */
1482         lnet_nid_t             bd_sender;       /* stash event::sender */
1483         int                     bd_md_count;    /* # valid entries in bd_mds */
1484         int                     bd_md_max_brw;  /* max entries in bd_mds */
1485         /** array of associated MDs */
1486         struct lnet_handle_md   bd_mds[PTLRPC_BULK_OPS_COUNT];
1487
1488         union {
1489                 struct {
1490                         /*
1491                          * encrypt iov, size is either 0 or bd_iov_count.
1492                          */
1493                         lnet_kiov_t *bd_enc_vec;
1494                         lnet_kiov_t *bd_vec;
1495                 } bd_kiov;
1496
1497                 struct {
1498                         struct kvec *bd_enc_kvec;
1499                         struct kvec *bd_kvec;
1500                 } bd_kvec;
1501         } bd_u;
1502
1503 };
1504
1505 #define GET_KIOV(desc)                  ((desc)->bd_u.bd_kiov.bd_vec)
1506 #define BD_GET_KIOV(desc, i)            ((desc)->bd_u.bd_kiov.bd_vec[i])
1507 #define GET_ENC_KIOV(desc)              ((desc)->bd_u.bd_kiov.bd_enc_vec)
1508 #define BD_GET_ENC_KIOV(desc, i)        ((desc)->bd_u.bd_kiov.bd_enc_vec[i])
1509 #define GET_KVEC(desc)                  ((desc)->bd_u.bd_kvec.bd_kvec)
1510 #define BD_GET_KVEC(desc, i)            ((desc)->bd_u.bd_kvec.bd_kvec[i])
1511 #define GET_ENC_KVEC(desc)              ((desc)->bd_u.bd_kvec.bd_enc_kvec)
1512 #define BD_GET_ENC_KVEC(desc, i)        ((desc)->bd_u.bd_kvec.bd_enc_kvec[i])
1513
1514 enum {
1515         SVC_INIT        = 0,
1516         SVC_STOPPED     = 1 << 0,
1517         SVC_STOPPING    = 1 << 1,
1518         SVC_STARTING    = 1 << 2,
1519         SVC_RUNNING     = 1 << 3,
1520         SVC_EVENT       = 1 << 4,
1521         SVC_SIGNAL      = 1 << 5,
1522 };
1523
1524 #define PTLRPC_THR_NAME_LEN             32
1525 /**
1526  * Definition of server service thread structure
1527  */
1528 struct ptlrpc_thread {
1529         /**
1530          * List of active threads in svc->srv_threads
1531          */
1532         struct list_head t_link;
1533         /**
1534          * thread-private data (preallocated vmalloc'd memory)
1535          */
1536         void *t_data;
1537         __u32 t_flags;
1538         /**
1539          * service thread index, from ptlrpc_start_threads
1540          */
1541         unsigned int t_id;
1542         /**
1543          * service thread pid
1544          */
1545         pid_t t_pid;
1546         /**
1547          * put watchdog in the structure per thread b=14840
1548          */
1549         struct lc_watchdog *t_watchdog;
1550         /**
1551          * the svc this thread belonged to b=18582
1552          */
1553         struct ptlrpc_service_part      *t_svcpt;
1554         wait_queue_head_t               t_ctl_waitq;
1555         struct lu_env                   *t_env;
1556         char                            t_name[PTLRPC_THR_NAME_LEN];
1557 };
1558
1559 static inline int thread_is_init(struct ptlrpc_thread *thread)
1560 {
1561         return thread->t_flags == 0;
1562 }
1563
1564 static inline int thread_is_stopped(struct ptlrpc_thread *thread)
1565 {
1566         return !!(thread->t_flags & SVC_STOPPED);
1567 }
1568
1569 static inline int thread_is_stopping(struct ptlrpc_thread *thread)
1570 {
1571         return !!(thread->t_flags & SVC_STOPPING);
1572 }
1573
1574 static inline int thread_is_starting(struct ptlrpc_thread *thread)
1575 {
1576         return !!(thread->t_flags & SVC_STARTING);
1577 }
1578
1579 static inline int thread_is_running(struct ptlrpc_thread *thread)
1580 {
1581         return !!(thread->t_flags & SVC_RUNNING);
1582 }
1583
1584 static inline int thread_is_event(struct ptlrpc_thread *thread)
1585 {
1586         return !!(thread->t_flags & SVC_EVENT);
1587 }
1588
1589 static inline int thread_is_signal(struct ptlrpc_thread *thread)
1590 {
1591         return !!(thread->t_flags & SVC_SIGNAL);
1592 }
1593
1594 static inline void thread_clear_flags(struct ptlrpc_thread *thread, __u32 flags)
1595 {
1596         thread->t_flags &= ~flags;
1597 }
1598
1599 static inline void thread_set_flags(struct ptlrpc_thread *thread, __u32 flags)
1600 {
1601         thread->t_flags = flags;
1602 }
1603
1604 static inline void thread_add_flags(struct ptlrpc_thread *thread, __u32 flags)
1605 {
1606         thread->t_flags |= flags;
1607 }
1608
1609 static inline int thread_test_and_clear_flags(struct ptlrpc_thread *thread,
1610                                               __u32 flags)
1611 {
1612         if (thread->t_flags & flags) {
1613                 thread->t_flags &= ~flags;
1614                 return 1;
1615         }
1616         return 0;
1617 }
1618
1619 /**
1620  * Request buffer descriptor structure.
1621  * This is a structure that contains one posted request buffer for service.
1622  * Once data land into a buffer, event callback creates actual request and
1623  * notifies wakes one of the service threads to process new incoming request.
1624  * More than one request can fit into the buffer.
1625  */
1626 struct ptlrpc_request_buffer_desc {
1627         /** Link item for rqbds on a service */
1628         struct list_head                rqbd_list;
1629         /** History of requests for this buffer */
1630         struct list_head                rqbd_reqs;
1631         /** Back pointer to service for which this buffer is registered */
1632         struct ptlrpc_service_part      *rqbd_svcpt;
1633         /** LNet descriptor */
1634         struct lnet_handle_md           rqbd_md_h;
1635         int                             rqbd_refcount;
1636         /** The buffer itself */
1637         char                            *rqbd_buffer;
1638         struct ptlrpc_cb_id             rqbd_cbid;
1639         /**
1640          * This "embedded" request structure is only used for the
1641          * last request to fit into the buffer
1642          */
1643         struct ptlrpc_request           rqbd_req;
1644 };
1645
1646 typedef int  (*svc_handler_t)(struct ptlrpc_request *req);
1647
1648 struct ptlrpc_service_ops {
1649         /**
1650          * if non-NULL called during thread creation (ptlrpc_start_thread())
1651          * to initialize service specific per-thread state.
1652          */
1653         int             (*so_thr_init)(struct ptlrpc_thread *thr);
1654         /**
1655          * if non-NULL called during thread shutdown (ptlrpc_main()) to
1656          * destruct state created by ->srv_init().
1657          */
1658         void            (*so_thr_done)(struct ptlrpc_thread *thr);
1659         /**
1660          * Handler function for incoming requests for this service
1661          */
1662         int             (*so_req_handler)(struct ptlrpc_request *req);
1663         /**
1664          * function to determine priority of the request, it's called
1665          * on every new request
1666          */
1667         int             (*so_hpreq_handler)(struct ptlrpc_request *);
1668         /**
1669          * service-specific print fn
1670          */
1671         void            (*so_req_printer)(void *, struct ptlrpc_request *);
1672 };
1673
1674 #ifndef __cfs_cacheline_aligned
1675 /* NB: put it here for reducing patche dependence */
1676 # define __cfs_cacheline_aligned
1677 #endif
1678
1679 /**
1680  * How many high priority requests to serve before serving one normal
1681  * priority request
1682  */
1683 #define PTLRPC_SVC_HP_RATIO 10
1684
1685 /**
1686  * Definition of PortalRPC service.
1687  * The service is listening on a particular portal (like tcp port)
1688  * and perform actions for a specific server like IO service for OST
1689  * or general metadata service for MDS.
1690  */
1691 struct ptlrpc_service {
1692         /** serialize /proc operations */
1693         spinlock_t                      srv_lock;
1694         /** most often accessed fields */
1695         /** chain thru all services */
1696         struct list_head                srv_list;
1697         /** service operations table */
1698         struct ptlrpc_service_ops       srv_ops;
1699         /** only statically allocated strings here; we don't clean them */
1700         char                           *srv_name;
1701         /** only statically allocated strings here; we don't clean them */
1702         char                           *srv_thread_name;
1703         /** service thread list */
1704         struct list_head                srv_threads;
1705         /** threads # should be created for each partition on initializing */
1706         int                             srv_nthrs_cpt_init;
1707         /** limit of threads number for each partition */
1708         int                             srv_nthrs_cpt_limit;
1709         /** Root of /proc dir tree for this service */
1710         struct proc_dir_entry           *srv_procroot;
1711         /** Pointer to statistic data for this service */
1712         struct lprocfs_stats           *srv_stats;
1713         /** # hp per lp reqs to handle */
1714         int                             srv_hpreq_ratio;
1715         /** biggest request to receive */
1716         int                             srv_max_req_size;
1717         /** biggest reply to send */
1718         int                             srv_max_reply_size;
1719         /** size of individual buffers */
1720         int                             srv_buf_size;
1721         /** # buffers to allocate in 1 group */
1722         int                             srv_nbuf_per_group;
1723         /** Local portal on which to receive requests */
1724         __u32                           srv_req_portal;
1725         /** Portal on the client to send replies to */
1726         __u32                           srv_rep_portal;
1727         /**
1728          * Tags for lu_context associated with this thread, see struct
1729          * lu_context.
1730          */
1731         __u32                           srv_ctx_tags;
1732         /** soft watchdog timeout multiplier */
1733         int                             srv_watchdog_factor;
1734         /** under unregister_service */
1735         unsigned                        srv_is_stopping:1;
1736
1737         /** max # request buffers in history per partition */
1738         int                             srv_hist_nrqbds_cpt_max;
1739         /** number of CPTs this service bound on */
1740         int                             srv_ncpts;
1741         /** CPTs array this service bound on */
1742         __u32                           *srv_cpts;
1743         /** 2^srv_cptab_bits >= cfs_cpt_numbert(srv_cptable) */
1744         int                             srv_cpt_bits;
1745         /** CPT table this service is running over */
1746         struct cfs_cpt_table            *srv_cptable;
1747
1748         /* sysfs object */
1749         struct kobject                  srv_kobj;
1750         struct completion               srv_kobj_unregister;
1751         /**
1752          * partition data for ptlrpc service
1753          */
1754         struct ptlrpc_service_part      *srv_parts[0];
1755 };
1756
1757 /**
1758  * Definition of PortalRPC service partition data.
1759  * Although a service only has one instance of it right now, but we
1760  * will have multiple instances very soon (instance per CPT).
1761  *
1762  * it has four locks:
1763  * \a scp_lock
1764  *    serialize operations on rqbd and requests waiting for preprocess
1765  * \a scp_req_lock
1766  *    serialize operations active requests sent to this portal
1767  * \a scp_at_lock
1768  *    serialize adaptive timeout stuff
1769  * \a scp_rep_lock
1770  *    serialize operations on RS list (reply states)
1771  *
1772  * We don't have any use-case to take two or more locks at the same time
1773  * for now, so there is no lock order issue.
1774  */
1775 struct ptlrpc_service_part {
1776         /** back reference to owner */
1777         struct ptlrpc_service           *scp_service __cfs_cacheline_aligned;
1778         /* CPT id, reserved */
1779         int                             scp_cpt;
1780         /** always increasing number */
1781         int                             scp_thr_nextid;
1782         /** # of starting threads */
1783         int                             scp_nthrs_starting;
1784         /** # of stopping threads, reserved for shrinking threads */
1785         int                             scp_nthrs_stopping;
1786         /** # running threads */
1787         int                             scp_nthrs_running;
1788         /** service threads list */
1789         struct list_head                scp_threads;
1790
1791         /**
1792          * serialize the following fields, used for protecting
1793          * rqbd list and incoming requests waiting for preprocess,
1794          * threads starting & stopping are also protected by this lock.
1795          */
1796         spinlock_t                      scp_lock  __cfs_cacheline_aligned;
1797         /** total # req buffer descs allocated */
1798         int                             scp_nrqbds_total;
1799         /** # posted request buffers for receiving */
1800         int                             scp_nrqbds_posted;
1801         /** in progress of allocating rqbd */
1802         int                             scp_rqbd_allocating;
1803         /** # incoming reqs */
1804         int                             scp_nreqs_incoming;
1805         /** request buffers to be reposted */
1806         struct list_head                scp_rqbd_idle;
1807         /** req buffers receiving */
1808         struct list_head                scp_rqbd_posted;
1809         /** incoming reqs */
1810         struct list_head                scp_req_incoming;
1811         /** timeout before re-posting reqs, in tick */
1812         cfs_duration_t                  scp_rqbd_timeout;
1813         /**
1814          * all threads sleep on this. This wait-queue is signalled when new
1815          * incoming request arrives and when difficult reply has to be handled.
1816          */
1817         wait_queue_head_t               scp_waitq;
1818
1819         /** request history */
1820         struct list_head                scp_hist_reqs;
1821         /** request buffer history */
1822         struct list_head                scp_hist_rqbds;
1823         /** # request buffers in history */
1824         int                             scp_hist_nrqbds;
1825         /** sequence number for request */
1826         __u64                           scp_hist_seq;
1827         /** highest seq culled from history */
1828         __u64                           scp_hist_seq_culled;
1829
1830         /**
1831          * serialize the following fields, used for processing requests
1832          * sent to this portal
1833          */
1834         spinlock_t                      scp_req_lock __cfs_cacheline_aligned;
1835         /** # reqs in either of the NRS heads below */
1836         /** # reqs being served */
1837         int                             scp_nreqs_active;
1838         /** # HPreqs being served */
1839         int                             scp_nhreqs_active;
1840         /** # hp requests handled */
1841         int                             scp_hreq_count;
1842
1843         /** NRS head for regular requests */
1844         struct ptlrpc_nrs               scp_nrs_reg;
1845         /** NRS head for HP requests; this is only valid for services that can
1846          *  handle HP requests */
1847         struct ptlrpc_nrs              *scp_nrs_hp;
1848
1849         /** AT stuff */
1850         /** @{ */
1851         /**
1852          * serialize the following fields, used for changes on
1853          * adaptive timeout
1854          */
1855         spinlock_t                      scp_at_lock __cfs_cacheline_aligned;
1856         /** estimated rpc service time */
1857         struct adaptive_timeout         scp_at_estimate;
1858         /** reqs waiting for replies */
1859         struct ptlrpc_at_array          scp_at_array;
1860         /** early reply timer */
1861         struct timer_list               scp_at_timer;
1862         /** debug */
1863         cfs_time_t                      scp_at_checktime;
1864         /** check early replies */
1865         unsigned                        scp_at_check;
1866         /** @} */
1867
1868         /**
1869          * serialize the following fields, used for processing
1870          * replies for this portal
1871          */
1872         spinlock_t                      scp_rep_lock __cfs_cacheline_aligned;
1873         /** all the active replies */
1874         struct list_head                scp_rep_active;
1875         /** List of free reply_states */
1876         struct list_head                scp_rep_idle;
1877         /** waitq to run, when adding stuff to srv_free_rs_list */
1878         wait_queue_head_t               scp_rep_waitq;
1879         /** # 'difficult' replies */
1880         atomic_t                        scp_nreps_difficult;
1881 };
1882
1883 #define ptlrpc_service_for_each_part(part, i, svc)                      \
1884         for (i = 0;                                                     \
1885              i < (svc)->srv_ncpts &&                                    \
1886              (svc)->srv_parts != NULL &&                                \
1887              ((part) = (svc)->srv_parts[i]) != NULL; i++)
1888
1889 /**
1890  * Declaration of ptlrpcd control structure
1891  */
1892 struct ptlrpcd_ctl {
1893         /**
1894          * Ptlrpc thread control flags (LIOD_START, LIOD_STOP, LIOD_FORCE)
1895          */
1896         unsigned long                   pc_flags;
1897         /**
1898          * Thread lock protecting structure fields.
1899          */
1900         spinlock_t                      pc_lock;
1901         /**
1902          * Start completion.
1903          */
1904         struct completion               pc_starting;
1905         /**
1906          * Stop completion.
1907          */
1908         struct completion               pc_finishing;
1909         /**
1910          * Thread requests set.
1911          */
1912         struct ptlrpc_request_set       *pc_set;
1913         /**
1914          * Thread name used in kthread_run()
1915          */
1916         char                            pc_name[16];
1917         /**
1918          * CPT the thread is bound on.
1919          */
1920         int                             pc_cpt;
1921         /**
1922          * Index of ptlrpcd thread in the array.
1923          */
1924         int                             pc_index;
1925         /**
1926          * Pointer to the array of partners' ptlrpcd_ctl structure.
1927          */
1928         struct ptlrpcd_ctl              **pc_partners;
1929         /**
1930          * Number of the ptlrpcd's partners.
1931          */
1932         int                             pc_npartners;
1933         /**
1934          * Record the partner index to be processed next.
1935          */
1936         int                             pc_cursor;
1937         /**
1938          * Error code if the thread failed to fully start.
1939          */
1940         int                             pc_error;
1941 };
1942
1943 /* Bits for pc_flags */
1944 enum ptlrpcd_ctl_flags {
1945         /**
1946          * Ptlrpc thread start flag.
1947          */
1948         LIOD_START       = 1 << 0,
1949         /**
1950          * Ptlrpc thread stop flag.
1951          */
1952         LIOD_STOP        = 1 << 1,
1953         /**
1954          * Ptlrpc thread force flag (only stop force so far).
1955          * This will cause aborting any inflight rpcs handled
1956          * by thread if LIOD_STOP is specified.
1957          */
1958         LIOD_FORCE       = 1 << 2,
1959         /**
1960          * This is a recovery ptlrpc thread.
1961          */
1962         LIOD_RECOVERY    = 1 << 3,
1963 };
1964
1965 /**
1966  * \addtogroup nrs
1967  * @{
1968  *
1969  * Service compatibility function; the policy is compatible with all services.
1970  *
1971  * \param[in] svc  The service the policy is attempting to register with.
1972  * \param[in] desc The policy descriptor
1973  *
1974  * \retval true The policy is compatible with the service
1975  *
1976  * \see ptlrpc_nrs_pol_desc::pd_compat()
1977  */
1978 static inline bool nrs_policy_compat_all(const struct ptlrpc_service *svc,
1979                                          const struct ptlrpc_nrs_pol_desc *desc)
1980 {
1981         return true;
1982 }
1983
1984 /**
1985  * Service compatibility function; the policy is compatible with only a specific
1986  * service which is identified by its human-readable name at
1987  * ptlrpc_service::srv_name.
1988  *
1989  * \param[in] svc  The service the policy is attempting to register with.
1990  * \param[in] desc The policy descriptor
1991  *
1992  * \retval false The policy is not compatible with the service
1993  * \retval true  The policy is compatible with the service
1994  *
1995  * \see ptlrpc_nrs_pol_desc::pd_compat()
1996  */
1997 static inline bool nrs_policy_compat_one(const struct ptlrpc_service *svc,
1998                                          const struct ptlrpc_nrs_pol_desc *desc)
1999 {
2000         LASSERT(desc->pd_compat_svc_name != NULL);
2001         return strcmp(svc->srv_name, desc->pd_compat_svc_name) == 0;
2002 }
2003
2004 /** @} nrs */
2005
2006 /* ptlrpc/events.c */
2007 extern struct lnet_handle_eq ptlrpc_eq_h;
2008 extern int ptlrpc_uuid_to_peer(struct obd_uuid *uuid,
2009                                struct lnet_process_id *peer, lnet_nid_t *self);
2010 /**
2011  * These callbacks are invoked by LNet when something happened to
2012  * underlying buffer
2013  * @{
2014  */
2015 extern void request_out_callback(struct lnet_event *ev);
2016 extern void reply_in_callback(struct lnet_event *ev);
2017 extern void client_bulk_callback(struct lnet_event *ev);
2018 extern void request_in_callback(struct lnet_event *ev);
2019 extern void reply_out_callback(struct lnet_event *ev);
2020 #ifdef HAVE_SERVER_SUPPORT
2021 extern void server_bulk_callback(struct lnet_event *ev);
2022 #endif
2023 /** @} */
2024
2025 /* ptlrpc/connection.c */
2026 struct ptlrpc_connection *ptlrpc_connection_get(struct lnet_process_id peer,
2027                                                 lnet_nid_t self,
2028                                                 struct obd_uuid *uuid);
2029 int ptlrpc_connection_put(struct ptlrpc_connection *c);
2030 struct ptlrpc_connection *ptlrpc_connection_addref(struct ptlrpc_connection *);
2031 int ptlrpc_connection_init(void);
2032 void ptlrpc_connection_fini(void);
2033 extern lnet_pid_t ptl_get_pid(void);
2034
2035 /*
2036  * Check if the peer connection is on the local node.  We need to use GFP_NOFS
2037  * for requests from a local client to avoid recursing into the filesystem
2038  * as we might end up waiting on a page sent in the request we're serving.
2039  *
2040  * Use __GFP_HIGHMEM so that the pages can use all of the available memory
2041  * on 32-bit machines.  Use more aggressive GFP_HIGHUSER flags from non-local
2042  * clients to be able to generate more memory pressure on the OSS and allow
2043  * inactive pages to be reclaimed, since it doesn't have any other processes
2044  * or allocations that generate memory reclaim pressure.
2045  *
2046  * See b=17576 (bdf50dc9) and b=19529 (3dcf18d3) for details.
2047  */
2048 static inline bool ptlrpc_connection_is_local(struct ptlrpc_connection *conn)
2049 {
2050         if (!conn)
2051                 return false;
2052
2053         if (conn->c_peer.nid == conn->c_self)
2054                 return true;
2055
2056         RETURN(LNetIsPeerLocal(conn->c_peer.nid));
2057 }
2058
2059 /* ptlrpc/niobuf.c */
2060 /**
2061  * Actual interfacing with LNet to put/get/register/unregister stuff
2062  * @{
2063  */
2064 #ifdef HAVE_SERVER_SUPPORT
2065 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
2066                                               unsigned nfrags, unsigned max_brw,
2067                                               unsigned int type,
2068                                               unsigned portal,
2069                                               const struct ptlrpc_bulk_frag_ops
2070                                                 *ops);
2071 int ptlrpc_start_bulk_transfer(struct ptlrpc_bulk_desc *desc);
2072 void ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *desc);
2073
2074 static inline int ptlrpc_server_bulk_active(struct ptlrpc_bulk_desc *desc)
2075 {
2076         int rc;
2077
2078         LASSERT(desc != NULL);
2079
2080         spin_lock(&desc->bd_lock);
2081         rc = desc->bd_md_count;
2082         spin_unlock(&desc->bd_lock);
2083         return rc;
2084 }
2085 #endif
2086
2087 int ptlrpc_register_bulk(struct ptlrpc_request *req);
2088 int ptlrpc_unregister_bulk(struct ptlrpc_request *req, int async);
2089
2090 static inline int ptlrpc_client_bulk_active(struct ptlrpc_request *req)
2091 {
2092         struct ptlrpc_bulk_desc *desc;
2093         int rc;
2094
2095         LASSERT(req != NULL);
2096         desc = req->rq_bulk;
2097
2098         if (req->rq_bulk_deadline > ktime_get_real_seconds())
2099                 return 1;
2100
2101         if (!desc)
2102                 return 0;
2103
2104         spin_lock(&desc->bd_lock);
2105         rc = desc->bd_md_count;
2106         spin_unlock(&desc->bd_lock);
2107         return rc;
2108 }
2109
2110 #define PTLRPC_REPLY_MAYBE_DIFFICULT 0x01
2111 #define PTLRPC_REPLY_EARLY           0x02
2112 int ptlrpc_send_reply(struct ptlrpc_request *req, int flags);
2113 int ptlrpc_reply(struct ptlrpc_request *req);
2114 int ptlrpc_send_error(struct ptlrpc_request *req, int difficult);
2115 int ptlrpc_error(struct ptlrpc_request *req);
2116 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req);
2117 int ptl_send_rpc(struct ptlrpc_request *request, int noreply);
2118 int ptlrpc_register_rqbd(struct ptlrpc_request_buffer_desc *rqbd);
2119 /** @} */
2120
2121 /* ptlrpc/client.c */
2122 /**
2123  * Client-side portals API. Everything to send requests, receive replies,
2124  * request queues, request management, etc.
2125  * @{
2126  */
2127 void ptlrpc_request_committed(struct ptlrpc_request *req, int force);
2128
2129 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
2130                         struct ptlrpc_client *);
2131 void ptlrpc_cleanup_client(struct obd_import *imp);
2132 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid,
2133                                                     lnet_nid_t nid4refnet);
2134
2135 int ptlrpc_queue_wait(struct ptlrpc_request *req);
2136 int ptlrpc_replay_req(struct ptlrpc_request *req);
2137 void ptlrpc_restart_req(struct ptlrpc_request *req);
2138 void ptlrpc_abort_inflight(struct obd_import *imp);
2139 void ptlrpc_cleanup_imp(struct obd_import *imp);
2140 void ptlrpc_abort_set(struct ptlrpc_request_set *set);
2141
2142 struct ptlrpc_request_set *ptlrpc_prep_set(void);
2143 struct ptlrpc_request_set *ptlrpc_prep_fcset(int max, set_producer_func func,
2144                                              void *arg);
2145 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
2146                       set_interpreter_func fn, void *data);
2147 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set);
2148 int ptlrpc_set_wait(struct ptlrpc_request_set *);
2149 void ptlrpc_mark_interrupted(struct ptlrpc_request *req);
2150 void ptlrpc_set_destroy(struct ptlrpc_request_set *);
2151 void ptlrpc_set_add_req(struct ptlrpc_request_set *, struct ptlrpc_request *);
2152
2153 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool);
2154 int ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq);
2155
2156 struct ptlrpc_request_pool *
2157 ptlrpc_init_rq_pool(int, int,
2158                     int (*populate_pool)(struct ptlrpc_request_pool *, int));
2159
2160 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req);
2161 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
2162                                             const struct req_format *format);
2163 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
2164                                             struct ptlrpc_request_pool *,
2165                                             const struct req_format *format);
2166 void ptlrpc_request_free(struct ptlrpc_request *request);
2167 int ptlrpc_request_pack(struct ptlrpc_request *request,
2168                         __u32 version, int opcode);
2169 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
2170                                                 const struct req_format *format,
2171                                                 __u32 version, int opcode);
2172 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
2173                              __u32 version, int opcode, char **bufs,
2174                              struct ptlrpc_cli_ctx *ctx);
2175 void ptlrpc_req_finished(struct ptlrpc_request *request);
2176 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request);
2177 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req);
2178 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp(struct ptlrpc_request *req,
2179                                               unsigned nfrags, unsigned max_brw,
2180                                               unsigned int type,
2181                                               unsigned portal,
2182                                               const struct ptlrpc_bulk_frag_ops
2183                                                 *ops);
2184
2185 int ptlrpc_prep_bulk_frag(struct ptlrpc_bulk_desc *desc,
2186                           void *frag, int len);
2187 void __ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
2188                              struct page *page, int pageoffset, int len,
2189                              int pin);
2190 static inline void ptlrpc_prep_bulk_page_pin(struct ptlrpc_bulk_desc *desc,
2191                                              struct page *page, int pageoffset,
2192                                              int len)
2193 {
2194         __ptlrpc_prep_bulk_page(desc, page, pageoffset, len, 1);
2195 }
2196
2197 static inline void ptlrpc_prep_bulk_page_nopin(struct ptlrpc_bulk_desc *desc,
2198                                                struct page *page, int pageoffset,
2199                                                int len)
2200 {
2201         __ptlrpc_prep_bulk_page(desc, page, pageoffset, len, 0);
2202 }
2203
2204 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *bulk);
2205
2206 static inline void ptlrpc_release_bulk_page_pin(struct ptlrpc_bulk_desc *desc)
2207 {
2208         int i;
2209
2210         for (i = 0; i < desc->bd_iov_count ; i++)
2211                 put_page(BD_GET_KIOV(desc, i).kiov_page);
2212 }
2213
2214 static inline void ptlrpc_release_bulk_noop(struct ptlrpc_bulk_desc *desc)
2215 {
2216 }
2217
2218 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2219                                       struct obd_import *imp);
2220 __u64 ptlrpc_next_xid(void);
2221 __u64 ptlrpc_sample_next_xid(void);
2222 __u64 ptlrpc_req_xid(struct ptlrpc_request *request);
2223
2224 /* Set of routines to run a function in ptlrpcd context */
2225 void *ptlrpcd_alloc_work(struct obd_import *imp,
2226                          int (*cb)(const struct lu_env *, void *), void *data);
2227 void ptlrpcd_destroy_work(void *handler);
2228 int ptlrpcd_queue_work(void *handler);
2229
2230 /** @} */
2231 struct ptlrpc_service_buf_conf {
2232         /* nbufs is buffers # to allocate when growing the pool */
2233         unsigned int                    bc_nbufs;
2234         /* buffer size to post */
2235         unsigned int                    bc_buf_size;
2236         /* portal to listed for requests on */
2237         unsigned int                    bc_req_portal;
2238         /* portal of where to send replies to */
2239         unsigned int                    bc_rep_portal;
2240         /* maximum request size to be accepted for this service */
2241         unsigned int                    bc_req_max_size;
2242         /* maximum reply size this service can ever send */
2243         unsigned int                    bc_rep_max_size;
2244 };
2245
2246 struct ptlrpc_service_thr_conf {
2247         /* threadname should be 8 characters or less - 6 will be added on */
2248         char                            *tc_thr_name;
2249         /* threads increasing factor for each CPU */
2250         unsigned int                    tc_thr_factor;
2251         /* service threads # to start on each partition while initializing */
2252         unsigned int                    tc_nthrs_init;
2253         /*
2254          * low water of threads # upper-limit on each partition while running,
2255          * service availability may be impacted if threads number is lower
2256          * than this value. It can be ZERO if the service doesn't require
2257          * CPU affinity or there is only one partition.
2258          */
2259         unsigned int                    tc_nthrs_base;
2260         /* "soft" limit for total threads number */
2261         unsigned int                    tc_nthrs_max;
2262         /* user specified threads number, it will be validated due to
2263          * other members of this structure. */
2264         unsigned int                    tc_nthrs_user;
2265         /* set NUMA node affinity for service threads */
2266         unsigned int                    tc_cpu_affinity;
2267         /* Tags for lu_context associated with service thread */
2268         __u32                           tc_ctx_tags;
2269 };
2270
2271 struct ptlrpc_service_cpt_conf {
2272         struct cfs_cpt_table            *cc_cptable;
2273         /* string pattern to describe CPTs for a service */
2274         char                            *cc_pattern;
2275 };
2276
2277 struct ptlrpc_service_conf {
2278         /* service name */
2279         char                            *psc_name;
2280         /* soft watchdog timeout multiplifier to print stuck service traces */
2281         unsigned int                    psc_watchdog_factor;
2282         /* buffer information */
2283         struct ptlrpc_service_buf_conf  psc_buf;
2284         /* thread information */
2285         struct ptlrpc_service_thr_conf  psc_thr;
2286         /* CPU partition information */
2287         struct ptlrpc_service_cpt_conf  psc_cpt;
2288         /* function table */
2289         struct ptlrpc_service_ops       psc_ops;
2290 };
2291
2292 /* ptlrpc/service.c */
2293 /**
2294  * Server-side services API. Register/unregister service, request state
2295  * management, service thread management
2296  *
2297  * @{
2298  */
2299 void ptlrpc_save_lock(struct ptlrpc_request *req, struct lustre_handle *lock,
2300                       int mode, bool no_ack, bool convert_lock);
2301 void ptlrpc_commit_replies(struct obd_export *exp);
2302 void ptlrpc_dispatch_difficult_reply(struct ptlrpc_reply_state *rs);
2303 void ptlrpc_schedule_difficult_reply(struct ptlrpc_reply_state *rs);
2304 int ptlrpc_hpreq_handler(struct ptlrpc_request *req);
2305 struct ptlrpc_service *ptlrpc_register_service(
2306                                 struct ptlrpc_service_conf *conf,
2307                                 struct kset *parent,
2308                                 struct proc_dir_entry *proc_entry);
2309 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc);
2310
2311 int ptlrpc_start_threads(struct ptlrpc_service *svc);
2312 int ptlrpc_unregister_service(struct ptlrpc_service *service);
2313 int ptlrpc_service_health_check(struct ptlrpc_service *);
2314 void ptlrpc_server_drop_request(struct ptlrpc_request *req);
2315 void ptlrpc_request_change_export(struct ptlrpc_request *req,
2316                                   struct obd_export *export);
2317 void ptlrpc_update_export_timer(struct obd_export *exp,
2318                                 time64_t extra_delay);
2319
2320 int ptlrpc_hr_init(void);
2321 void ptlrpc_hr_fini(void);
2322
2323 /** @} */
2324
2325 /* ptlrpc/import.c */
2326 /**
2327  * Import API
2328  * @{
2329  */
2330 int ptlrpc_connect_import(struct obd_import *imp);
2331 int ptlrpc_init_import(struct obd_import *imp);
2332 int ptlrpc_disconnect_import(struct obd_import *imp, int noclose);
2333 int ptlrpc_import_recovery_state_machine(struct obd_import *imp);
2334 void deuuidify(char *uuid, const char *prefix, char **uuid_start,
2335                int *uuid_len);
2336 void ptlrpc_import_enter_resend(struct obd_import *imp);
2337 /* ptlrpc/pack_generic.c */
2338 int ptlrpc_reconnect_import(struct obd_import *imp);
2339 /** @} */
2340
2341 /**
2342  * ptlrpc msg buffer and swab interface
2343  *
2344  * @{
2345  */
2346 int ptlrpc_buf_need_swab(struct ptlrpc_request *req, const int inout,
2347                          __u32 index);
2348 void ptlrpc_buf_set_swabbed(struct ptlrpc_request *req, const int inout,
2349                             __u32 index);
2350 int ptlrpc_unpack_rep_msg(struct ptlrpc_request *req, int len);
2351 int ptlrpc_unpack_req_msg(struct ptlrpc_request *req, int len);
2352
2353 int lustre_msg_check_version(struct lustre_msg *msg, __u32 version);
2354 void lustre_init_msg_v2(struct lustre_msg_v2 *msg, int count, __u32 *lens,
2355                         char **bufs);
2356 int lustre_pack_request(struct ptlrpc_request *, __u32 magic, int count,
2357                         __u32 *lens, char **bufs);
2358 int lustre_pack_reply(struct ptlrpc_request *, int count, __u32 *lens,
2359                       char **bufs);
2360 int lustre_pack_reply_v2(struct ptlrpc_request *req, int count,
2361                          __u32 *lens, char **bufs, int flags);
2362 #define LPRFL_EARLY_REPLY 1
2363 int lustre_pack_reply_flags(struct ptlrpc_request *, int count, __u32 *lens,
2364                             char **bufs, int flags);
2365 int lustre_shrink_msg(struct lustre_msg *msg, int segment,
2366                       unsigned int newlen, int move_data);
2367 void lustre_free_reply_state(struct ptlrpc_reply_state *rs);
2368 int __lustre_unpack_msg(struct lustre_msg *m, int len);
2369 __u32 lustre_msg_hdr_size(__u32 magic, __u32 count);
2370 __u32 lustre_msg_size(__u32 magic, int count, __u32 *lengths);
2371 __u32 lustre_msg_size_v2(int count, __u32 *lengths);
2372 __u32 lustre_packed_msg_size(struct lustre_msg *msg);
2373 __u32 lustre_msg_early_size(void);
2374 void *lustre_msg_buf_v2(struct lustre_msg_v2 *m, __u32 n, __u32 min_size);
2375 void *lustre_msg_buf(struct lustre_msg *m, __u32 n, __u32 minlen);
2376 __u32 lustre_msg_buflen(struct lustre_msg *m, __u32 n);
2377 void lustre_msg_set_buflen(struct lustre_msg *m, __u32 n, __u32 len);
2378 __u32 lustre_msg_bufcount(struct lustre_msg *m);
2379 char *lustre_msg_string(struct lustre_msg *m, __u32 n, __u32 max_len);
2380 __u32 lustre_msghdr_get_flags(struct lustre_msg *msg);
2381 void lustre_msghdr_set_flags(struct lustre_msg *msg, __u32 flags);
2382 __u32 lustre_msg_get_flags(struct lustre_msg *msg);
2383 void lustre_msg_add_flags(struct lustre_msg *msg, __u32 flags);
2384 void lustre_msg_set_flags(struct lustre_msg *msg, __u32 flags);
2385 void lustre_msg_clear_flags(struct lustre_msg *msg, __u32 flags);
2386 __u32 lustre_msg_get_op_flags(struct lustre_msg *msg);
2387 void lustre_msg_add_op_flags(struct lustre_msg *msg, __u32 flags);
2388 struct lustre_handle *lustre_msg_get_handle(struct lustre_msg *msg);
2389 __u32 lustre_msg_get_type(struct lustre_msg *msg);
2390 __u32 lustre_msg_get_version(struct lustre_msg *msg);
2391 void lustre_msg_add_version(struct lustre_msg *msg, __u32 version);
2392 __u32 lustre_msg_get_opc(struct lustre_msg *msg);
2393 __u64 lustre_msg_get_last_xid(struct lustre_msg *msg);
2394 __u16 lustre_msg_get_tag(struct lustre_msg *msg);
2395 __u64 lustre_msg_get_last_committed(struct lustre_msg *msg);
2396 __u64 *lustre_msg_get_versions(struct lustre_msg *msg);
2397 __u64 lustre_msg_get_transno(struct lustre_msg *msg);
2398 __u64 lustre_msg_get_slv(struct lustre_msg *msg);
2399 __u32 lustre_msg_get_limit(struct lustre_msg *msg);
2400 void lustre_msg_set_slv(struct lustre_msg *msg, __u64 slv);
2401 void lustre_msg_set_limit(struct lustre_msg *msg, __u64 limit);
2402 int lustre_msg_get_status(struct lustre_msg *msg);
2403 __u32 lustre_msg_get_conn_cnt(struct lustre_msg *msg);
2404 __u32 lustre_msg_get_magic(struct lustre_msg *msg);
2405 __u32 lustre_msg_get_timeout(struct lustre_msg *msg);
2406 __u32 lustre_msg_get_service_time(struct lustre_msg *msg);
2407 char *lustre_msg_get_jobid(struct lustre_msg *msg);
2408 __u32 lustre_msg_get_cksum(struct lustre_msg *msg);
2409 __u64 lustre_msg_get_mbits(struct lustre_msg *msg);
2410 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg);
2411 void lustre_msg_set_handle(struct lustre_msg *msg,struct lustre_handle *handle);
2412 void lustre_msg_set_type(struct lustre_msg *msg, __u32 type);
2413 void lustre_msg_set_opc(struct lustre_msg *msg, __u32 opc);
2414 void lustre_msg_set_last_xid(struct lustre_msg *msg, __u64 last_xid);
2415 void lustre_msg_set_tag(struct lustre_msg *msg, __u16 tag);
2416 void lustre_msg_set_last_committed(struct lustre_msg *msg,__u64 last_committed);
2417 void lustre_msg_set_versions(struct lustre_msg *msg, __u64 *versions);
2418 void lustre_msg_set_transno(struct lustre_msg *msg, __u64 transno);
2419 void lustre_msg_set_status(struct lustre_msg *msg, __u32 status);
2420 void lustre_msg_set_conn_cnt(struct lustre_msg *msg, __u32 conn_cnt);
2421 void ptlrpc_req_set_repsize(struct ptlrpc_request *req, int count, __u32 *sizes);
2422 void ptlrpc_request_set_replen(struct ptlrpc_request *req);
2423 void lustre_msg_set_timeout(struct lustre_msg *msg, __u32 timeout);
2424 void lustre_msg_set_service_time(struct lustre_msg *msg, __u32 service_time);
2425 void lustre_msg_set_jobid(struct lustre_msg *msg, char *jobid);
2426 void lustre_msg_set_cksum(struct lustre_msg *msg, __u32 cksum);
2427 void lustre_msg_set_mbits(struct lustre_msg *msg, __u64 mbits);
2428
2429 static inline void
2430 lustre_shrink_reply(struct ptlrpc_request *req, int segment,
2431                     unsigned int newlen, int move_data)
2432 {
2433         LASSERT(req->rq_reply_state);
2434         LASSERT(req->rq_repmsg);
2435         req->rq_replen = lustre_shrink_msg(req->rq_repmsg, segment,
2436                                            newlen, move_data);
2437 }
2438
2439 #ifdef LUSTRE_TRANSLATE_ERRNOS
2440
2441 static inline int ptlrpc_status_hton(int h)
2442 {
2443         /*
2444          * Positive errnos must be network errnos, such as LUSTRE_EDEADLK,
2445          * ELDLM_LOCK_ABORTED, etc.
2446          */
2447         if (h < 0)
2448                 return -lustre_errno_hton(-h);
2449         else
2450                 return h;
2451 }
2452
2453 static inline int ptlrpc_status_ntoh(int n)
2454 {
2455         /*
2456          * See the comment in ptlrpc_status_hton().
2457          */
2458         if (n < 0)
2459                 return -lustre_errno_ntoh(-n);
2460         else
2461                 return n;
2462 }
2463
2464 #else
2465
2466 #define ptlrpc_status_hton(h) (h)
2467 #define ptlrpc_status_ntoh(n) (n)
2468
2469 #endif
2470 /** @} */
2471
2472 /** Change request phase of \a req to \a new_phase */
2473 static inline void
2474 ptlrpc_rqphase_move(struct ptlrpc_request *req, enum rq_phase new_phase)
2475 {
2476         if (req->rq_phase == new_phase)
2477                 return;
2478
2479         if (new_phase == RQ_PHASE_UNREG_RPC ||
2480             new_phase == RQ_PHASE_UNREG_BULK) {
2481                 /* No embedded unregistering phases */
2482                 if (req->rq_phase == RQ_PHASE_UNREG_RPC ||
2483                     req->rq_phase == RQ_PHASE_UNREG_BULK)
2484                         return;
2485
2486                 req->rq_next_phase = req->rq_phase;
2487                 if (req->rq_import)
2488                         atomic_inc(&req->rq_import->imp_unregistering);
2489         }
2490
2491         if (req->rq_phase == RQ_PHASE_UNREG_RPC ||
2492             req->rq_phase == RQ_PHASE_UNREG_BULK) {
2493                 if (req->rq_import)
2494                         atomic_dec(&req->rq_import->imp_unregistering);
2495         }
2496
2497         DEBUG_REQ(D_INFO, req, "move req \"%s\" -> \"%s\"",
2498                   ptlrpc_rqphase2str(req), ptlrpc_phase2str(new_phase));
2499
2500         req->rq_phase = new_phase;
2501 }
2502
2503 /**
2504  * Returns true if request \a req got early reply and hard deadline is not met
2505  */
2506 static inline int
2507 ptlrpc_client_early(struct ptlrpc_request *req)
2508 {
2509         return req->rq_early;
2510 }
2511
2512 /**
2513  * Returns true if we got real reply from server for this request
2514  */
2515 static inline int
2516 ptlrpc_client_replied(struct ptlrpc_request *req)
2517 {
2518         if (req->rq_reply_deadline > ktime_get_real_seconds())
2519                 return 0;
2520         return req->rq_replied;
2521 }
2522
2523 /** Returns true if request \a req is in process of receiving server reply */
2524 static inline int
2525 ptlrpc_client_recv(struct ptlrpc_request *req)
2526 {
2527         if (req->rq_reply_deadline > ktime_get_real_seconds())
2528                 return 1;
2529         return req->rq_receiving_reply;
2530 }
2531
2532 static inline int
2533 ptlrpc_client_recv_or_unlink(struct ptlrpc_request *req)
2534 {
2535         int rc;
2536
2537         spin_lock(&req->rq_lock);
2538         if (req->rq_reply_deadline > ktime_get_real_seconds()) {
2539                 spin_unlock(&req->rq_lock);
2540                 return 1;
2541         }
2542         if (req->rq_req_deadline > ktime_get_real_seconds()) {
2543                 spin_unlock(&req->rq_lock);
2544                 return 1;
2545         }
2546
2547         rc = !req->rq_req_unlinked || !req->rq_reply_unlinked ||
2548              req->rq_receiving_reply;
2549         spin_unlock(&req->rq_lock);
2550         return rc;
2551 }
2552
2553 static inline void
2554 ptlrpc_client_wake_req(struct ptlrpc_request *req)
2555 {
2556         smp_mb();
2557         if (req->rq_set == NULL)
2558                 wake_up(&req->rq_reply_waitq);
2559         else
2560                 wake_up(&req->rq_set->set_waitq);
2561 }
2562
2563 static inline void
2564 ptlrpc_rs_addref(struct ptlrpc_reply_state *rs)
2565 {
2566         LASSERT(atomic_read(&rs->rs_refcount) > 0);
2567         atomic_inc(&rs->rs_refcount);
2568 }
2569
2570 static inline void
2571 ptlrpc_rs_decref(struct ptlrpc_reply_state *rs)
2572 {
2573         LASSERT(atomic_read(&rs->rs_refcount) > 0);
2574         if (atomic_dec_and_test(&rs->rs_refcount))
2575                 lustre_free_reply_state(rs);
2576 }
2577
2578 /* Should only be called once per req */
2579 static inline void ptlrpc_req_drop_rs(struct ptlrpc_request *req)
2580 {
2581         if (req->rq_reply_state == NULL)
2582                 return; /* shouldn't occur */
2583         ptlrpc_rs_decref(req->rq_reply_state);
2584         req->rq_reply_state = NULL;
2585         req->rq_repmsg = NULL;
2586 }
2587
2588 static inline __u32 lustre_request_magic(struct ptlrpc_request *req)
2589 {
2590         return lustre_msg_get_magic(req->rq_reqmsg);
2591 }
2592
2593 static inline int ptlrpc_req_get_repsize(struct ptlrpc_request *req)
2594 {
2595         switch (req->rq_reqmsg->lm_magic) {
2596         case LUSTRE_MSG_MAGIC_V2:
2597                 return req->rq_reqmsg->lm_repsize;
2598         default:
2599                 LASSERTF(0, "incorrect message magic: %08x\n",
2600                          req->rq_reqmsg->lm_magic);
2601                 return -EFAULT;
2602         }
2603 }
2604
2605 static inline int ptlrpc_send_limit_expired(struct ptlrpc_request *req)
2606 {
2607         if (req->rq_delay_limit != 0 &&
2608             req->rq_queued_time + req->rq_delay_limit < ktime_get_seconds())
2609                 return 1;
2610         return 0;
2611 }
2612
2613 static inline int ptlrpc_no_resend(struct ptlrpc_request *req)
2614 {
2615         if (!req->rq_no_resend && ptlrpc_send_limit_expired(req)) {
2616                 spin_lock(&req->rq_lock);
2617                 req->rq_no_resend = 1;
2618                 spin_unlock(&req->rq_lock);
2619         }
2620         return req->rq_no_resend;
2621 }
2622
2623 static inline int
2624 ptlrpc_server_get_timeout(struct ptlrpc_service_part *svcpt)
2625 {
2626         int at = AT_OFF ? 0 : at_get(&svcpt->scp_at_estimate);
2627
2628         return svcpt->scp_service->srv_watchdog_factor *
2629                max_t(int, at, obd_timeout);
2630 }
2631
2632 static inline struct ptlrpc_service *
2633 ptlrpc_req2svc(struct ptlrpc_request *req)
2634 {
2635         LASSERT(req->rq_rqbd != NULL);
2636         return req->rq_rqbd->rqbd_svcpt->scp_service;
2637 }
2638
2639 /* ldlm/ldlm_lib.c */
2640 /**
2641  * Target client logic
2642  * @{
2643  */
2644 int client_obd_setup(struct obd_device *obddev, struct lustre_cfg *lcfg);
2645 int client_obd_cleanup(struct obd_device *obddev);
2646 int client_connect_import(const struct lu_env *env,
2647                           struct obd_export **exp, struct obd_device *obd,
2648                           struct obd_uuid *cluuid, struct obd_connect_data *,
2649                           void *localdata);
2650 int client_disconnect_export(struct obd_export *exp);
2651 int client_import_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
2652                            int priority);
2653 int client_import_del_conn(struct obd_import *imp, struct obd_uuid *uuid);
2654 int client_import_find_conn(struct obd_import *imp, lnet_nid_t peer,
2655                             struct obd_uuid *uuid);
2656 int import_set_conn_priority(struct obd_import *imp, struct obd_uuid *uuid);
2657 void client_destroy_import(struct obd_import *imp);
2658 /** @} */
2659
2660 #ifdef HAVE_SERVER_SUPPORT
2661 int server_disconnect_export(struct obd_export *exp);
2662 #endif
2663
2664 /* ptlrpc/pinger.c */
2665 /**
2666  * Pinger API (client side only)
2667  * @{
2668  */
2669 enum timeout_event {
2670         TIMEOUT_GRANT = 1
2671 };
2672 struct timeout_item;
2673 typedef int (*timeout_cb_t)(struct timeout_item *, void *);
2674 int ptlrpc_pinger_add_import(struct obd_import *imp);
2675 int ptlrpc_pinger_del_import(struct obd_import *imp);
2676 int ptlrpc_add_timeout_client(time64_t time, enum timeout_event event,
2677                               timeout_cb_t cb, void *data,
2678                               struct list_head *obd_list);
2679 int ptlrpc_del_timeout_client(struct list_head *obd_list,
2680                               enum timeout_event event);
2681 struct ptlrpc_request * ptlrpc_prep_ping(struct obd_import *imp);
2682 int ptlrpc_obd_ping(struct obd_device *obd);
2683 void ping_evictor_start(void);
2684 void ping_evictor_stop(void);
2685 void ptlrpc_pinger_ir_up(void);
2686 void ptlrpc_pinger_ir_down(void);
2687 /** @} */
2688 int ptlrpc_pinger_suppress_pings(void);
2689
2690 /* ptlrpc/ptlrpcd.c */
2691 void ptlrpcd_stop(struct ptlrpcd_ctl *pc, int force);
2692 void ptlrpcd_free(struct ptlrpcd_ctl *pc);
2693 void ptlrpcd_wake(struct ptlrpc_request *req);
2694 void ptlrpcd_add_req(struct ptlrpc_request *req);
2695 void ptlrpcd_add_rqset(struct ptlrpc_request_set *set);
2696 int ptlrpcd_addref(void);
2697 void ptlrpcd_decref(void);
2698
2699 /* ptlrpc/lproc_ptlrpc.c */
2700 /**
2701  * procfs output related functions
2702  * @{
2703  */
2704 const char* ll_opcode2str(__u32 opcode);
2705 const int ll_str2opcode(const char *ops);
2706 #ifdef CONFIG_PROC_FS
2707 void ptlrpc_lprocfs_register_obd(struct obd_device *obd);
2708 void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd);
2709 void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes);
2710 #else
2711 static inline void ptlrpc_lprocfs_register_obd(struct obd_device *obd) {}
2712 static inline void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd) {}
2713 static inline void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes) {}
2714 #endif
2715 /** @} */
2716
2717 /* ptlrpc/llog_server.c */
2718 int llog_origin_handle_open(struct ptlrpc_request *req);
2719 int llog_origin_handle_destroy(struct ptlrpc_request *req);
2720 int llog_origin_handle_prev_block(struct ptlrpc_request *req);
2721 int llog_origin_handle_next_block(struct ptlrpc_request *req);
2722 int llog_origin_handle_read_header(struct ptlrpc_request *req);
2723 int llog_origin_handle_close(struct ptlrpc_request *req);
2724
2725 /* ptlrpc/llog_client.c */
2726 extern struct llog_operations llog_client_ops;
2727 /** @} net */
2728
2729 #endif
2730 /** @} PtlRPC */