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