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