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