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