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