Whamcloud - gitweb
LU-2446 build: Update Whamcloud copyright messages for Intel
[fs/lustre-release.git] / lnet / include / lnet / lib-types.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lnet/include/lnet/lib-types.h
37  *
38  * Types used by the library side routines that do not need to be
39  * exposed to the user application
40  */
41
42 #ifndef __LNET_LIB_TYPES_H__
43 #define __LNET_LIB_TYPES_H__
44
45 #if defined(__linux__)
46 #include <lnet/linux/lib-types.h>
47 #elif defined(__APPLE__)
48 #include <lnet/darwin/lib-types.h>
49 #elif defined(__WINNT__)
50 #include <lnet/winnt/lib-types.h>
51 #else
52 #error Unsupported Operating System
53 #endif
54
55 #include <libcfs/libcfs.h>
56 #include <libcfs/list.h>
57 #include <lnet/types.h>
58
59 #define WIRE_ATTR       __attribute__((packed))
60
61 /* Packed version of lnet_process_id_t to transfer via network */
62 #include <libcfs/libcfs_pack.h>
63 typedef struct {
64         lnet_nid_t nid;
65         lnet_pid_t pid;   /* node id / process id */
66 } WIRE_ATTR lnet_process_id_packed_t;
67
68 /* The wire handle's interface cookie only matches one network interface in
69  * one epoch (i.e. new cookie when the interface restarts or the node
70  * reboots).  The object cookie only matches one object on that interface
71  * during that object's lifetime (i.e. no cookie re-use). */
72 typedef struct {
73         __u64 wh_interface_cookie;
74         __u64 wh_object_cookie;
75 } WIRE_ATTR lnet_handle_wire_t;
76 #include <libcfs/libcfs_unpack.h>
77
78 typedef enum {
79         LNET_MSG_ACK = 0,
80         LNET_MSG_PUT,
81         LNET_MSG_GET,
82         LNET_MSG_REPLY,
83         LNET_MSG_HELLO,
84 } lnet_msg_type_t;
85
86 /* The variant fields of the portals message header are aligned on an 8
87  * byte boundary in the message header.  Note that all types used in these
88  * wire structs MUST be fixed size and the smaller types are placed at the
89  * end. */
90 #include <libcfs/libcfs_pack.h>
91 typedef struct lnet_ack {
92         lnet_handle_wire_t  dst_wmd;
93         __u64               match_bits;
94         __u32               mlength;
95 } WIRE_ATTR lnet_ack_t;
96
97 typedef struct lnet_put {
98         lnet_handle_wire_t  ack_wmd;
99         __u64               match_bits;
100         __u64               hdr_data;
101         __u32               ptl_index;
102         __u32               offset;
103 } WIRE_ATTR lnet_put_t;
104
105 typedef struct lnet_get {
106         lnet_handle_wire_t  return_wmd;
107         __u64               match_bits;
108         __u32               ptl_index;
109         __u32               src_offset;
110         __u32               sink_length;
111 } WIRE_ATTR lnet_get_t;
112
113 typedef struct lnet_reply {
114         lnet_handle_wire_t  dst_wmd;
115 } WIRE_ATTR lnet_reply_t;
116
117 typedef struct lnet_hello {
118         __u64              incarnation;
119         __u32              type;
120 } WIRE_ATTR lnet_hello_t;
121
122 typedef struct {
123         lnet_nid_t          dest_nid;
124         lnet_nid_t          src_nid;
125         lnet_pid_t          dest_pid;
126         lnet_pid_t          src_pid;
127         __u32               type;               /* lnet_msg_type_t */
128         __u32               payload_length;     /* payload data to follow */
129         /*<------__u64 aligned------->*/
130         union {
131                 lnet_ack_t   ack;
132                 lnet_put_t   put;
133                 lnet_get_t   get;
134                 lnet_reply_t reply;
135                 lnet_hello_t hello;
136         } msg;
137 } WIRE_ATTR lnet_hdr_t;
138
139 /* A HELLO message contains a magic number and protocol version
140  * code in the header's dest_nid, the peer's NID in the src_nid, and
141  * LNET_MSG_HELLO in the type field.  All other common fields are zero
142  * (including payload_size; i.e. no payload).
143  * This is for use by byte-stream LNDs (e.g. TCP/IP) to check the peer is
144  * running the same protocol and to find out its NID. These LNDs should
145  * exchange HELLO messages when a connection is first established.  Individual
146  * LNDs can put whatever else they fancy in lnet_hdr_t::msg.
147  */
148 typedef struct {
149         __u32   magic;                          /* LNET_PROTO_TCP_MAGIC */
150         __u16   version_major;                  /* increment on incompatible change */
151         __u16   version_minor;                  /* increment on compatible change */
152 } WIRE_ATTR lnet_magicversion_t;
153
154 /* PROTO MAGIC for LNDs */
155 #define LNET_PROTO_IB_MAGIC                 0x0be91b91
156 #define LNET_PROTO_RA_MAGIC                 0x0be91b92
157 #define LNET_PROTO_QSW_MAGIC                0x0be91b93
158 #define LNET_PROTO_GNI_MAGIC                0xb00fbabe /* ask Kim */
159 #define LNET_PROTO_TCP_MAGIC                0xeebc0ded
160 #define LNET_PROTO_PTL_MAGIC                0x50746C4E /* 'PtlN' unique magic */
161 #define LNET_PROTO_MX_MAGIC                 0x4d583130 /* 'MX10'! */
162 #define LNET_PROTO_ACCEPTOR_MAGIC           0xacce7100
163 #define LNET_PROTO_PING_MAGIC               0x70696E67 /* 'ping' */
164
165 /* Placeholder for a future "unified" protocol across all LNDs */
166 /* Current LNDs that receive a request with this magic will respond with a
167  * "stub" reply using their current protocol */
168 #define LNET_PROTO_MAGIC                    0x45726963 /* ! */
169
170
171 #define LNET_PROTO_TCP_VERSION_MAJOR        1
172 #define LNET_PROTO_TCP_VERSION_MINOR        0
173
174 /* Acceptor connection request */
175 typedef struct {
176         __u32       acr_magic;                  /* PTL_ACCEPTOR_PROTO_MAGIC */
177         __u32       acr_version;                /* protocol version */
178         __u64       acr_nid;                    /* target NID */
179 } WIRE_ATTR lnet_acceptor_connreq_t;
180 #include <libcfs/libcfs_unpack.h>
181
182 #define LNET_PROTO_ACCEPTOR_VERSION       1
183
184 /* forward refs */
185 struct lnet_libmd;
186
187 typedef struct lnet_msg {
188         cfs_list_t            msg_activelist;
189         cfs_list_t            msg_list;           /* Q for credits/MD */
190
191         lnet_process_id_t     msg_target;
192         /* where is it from, it's only for building event */
193         lnet_nid_t              msg_from;
194         __u32                   msg_type;
195
196         /* commited for sending */
197         unsigned int            msg_tx_committed:1;
198         /* CPT # this message committed for sending */
199         unsigned int            msg_tx_cpt:15;
200         /* commited for receiving */
201         unsigned int            msg_rx_committed:1;
202         /* CPT # this message committed for receiving */
203         unsigned int            msg_rx_cpt:15;
204         /* queued for tx credit */
205         unsigned int            msg_tx_delayed:1;
206         /* queued for RX buffer */
207         unsigned int            msg_rx_delayed:1;
208         /* ready for pending on RX delay list */
209         unsigned int            msg_rx_ready_delay:1;
210
211         unsigned int          msg_vmflush:1;      /* VM trying to free memory */
212         unsigned int          msg_target_is_router:1; /* sending to a router */
213         unsigned int          msg_routing:1;      /* being forwarded */
214         unsigned int          msg_ack:1;          /* ack on finalize (PUT) */
215         unsigned int          msg_sending:1;      /* outgoing message */
216         unsigned int          msg_receiving:1;    /* being received */
217         unsigned int          msg_txcredit:1;     /* taken an NI send credit */
218         unsigned int          msg_peertxcredit:1; /* taken a peer send credit */
219         unsigned int          msg_rtrcredit:1;    /* taken a globel router credit */
220         unsigned int          msg_peerrtrcredit:1; /* taken a peer router credit */
221         unsigned int          msg_onactivelist:1; /* on the activelist */
222
223         struct lnet_peer     *msg_txpeer;         /* peer I'm sending to */
224         struct lnet_peer     *msg_rxpeer;         /* peer I received from */
225
226         void                 *msg_private;
227         struct lnet_libmd    *msg_md;
228
229         unsigned int          msg_len;
230         unsigned int          msg_wanted;
231         unsigned int          msg_offset;
232         unsigned int          msg_niov;
233         struct iovec         *msg_iov;
234         lnet_kiov_t          *msg_kiov;
235
236         lnet_event_t          msg_ev;
237         lnet_hdr_t            msg_hdr;
238 } lnet_msg_t;
239
240
241 typedef struct lnet_libhandle {
242         cfs_list_t            lh_hash_chain;
243         __u64                 lh_cookie;
244 } lnet_libhandle_t;
245
246 #define lh_entry(ptr, type, member) \
247         ((type *)((char *)(ptr)-(char *)(&((type *)0)->member)))
248
249 typedef struct lnet_eq {
250         cfs_list_t              eq_list;
251         lnet_libhandle_t        eq_lh;
252         lnet_seq_t              eq_enq_seq;
253         lnet_seq_t              eq_deq_seq;
254         unsigned int            eq_size;
255         lnet_eq_handler_t       eq_callback;
256         lnet_event_t            *eq_events;
257         int                     **eq_refs;      /* percpt refcount for EQ */
258 } lnet_eq_t;
259
260 typedef struct lnet_me {
261         cfs_list_t             me_list;
262         lnet_libhandle_t       me_lh;
263         lnet_process_id_t      me_match_id;
264         unsigned int           me_portal;
265         unsigned int           me_pos;          /* hash offset in mt_hash */
266         __u64                  me_match_bits;
267         __u64                  me_ignore_bits;
268         lnet_unlink_t          me_unlink;
269         struct lnet_libmd     *me_md;
270 } lnet_me_t;
271
272 typedef struct lnet_libmd {
273         cfs_list_t            md_list;
274         lnet_libhandle_t      md_lh;
275         lnet_me_t            *md_me;
276         char                 *md_start;
277         unsigned int          md_offset;
278         unsigned int          md_length;
279         unsigned int          md_max_size;
280         int                   md_threshold;
281         int                   md_refcount;
282         unsigned int          md_options;
283         unsigned int          md_flags;
284         void                 *md_user_ptr;
285         lnet_eq_t            *md_eq;
286         unsigned int          md_niov;                /* # frags */
287         union {
288                 struct iovec  iov[LNET_MAX_IOV];
289                 lnet_kiov_t   kiov[LNET_MAX_IOV];
290         } md_iov;
291 } lnet_libmd_t;
292
293 #define LNET_MD_FLAG_ZOMBIE           (1 << 0)
294 #define LNET_MD_FLAG_AUTO_UNLINK      (1 << 1)
295
296 #ifdef LNET_USE_LIB_FREELIST
297 typedef struct
298 {
299         void                  *fl_objs;          /* single contiguous array of objects */
300         int                    fl_nobjs;         /* the number of them */
301         int                    fl_objsize;       /* the size (including overhead) of each of them */
302         cfs_list_t             fl_list;          /* where they are enqueued */
303 } lnet_freelist_t;
304
305 typedef struct
306 {
307         cfs_list_t             fo_list;             /* enqueue on fl_list */
308         void                  *fo_contents;         /* aligned contents */
309 } lnet_freeobj_t;
310 #endif
311
312 typedef struct {
313         /* info about peers we are trying to fail */
314         cfs_list_t             tp_list;             /* ln_test_peers */
315         lnet_nid_t             tp_nid;              /* matching nid */
316         unsigned int           tp_threshold;        /* # failures to simulate */
317 } lnet_test_peer_t;
318
319 #define LNET_COOKIE_TYPE_MD    1
320 #define LNET_COOKIE_TYPE_ME    2
321 #define LNET_COOKIE_TYPE_EQ    3
322 #define LNET_COOKIE_TYPE_BITS  2
323 #define LNET_COOKIE_MASK        ((1ULL << LNET_COOKIE_TYPE_BITS) - 1ULL)
324
325 struct lnet_ni;                                  /* forward ref */
326
327 typedef struct lnet_lnd
328 {
329         /* fields managed by portals */
330         cfs_list_t            lnd_list;             /* stash in the LND table */
331         int                   lnd_refcount;         /* # active instances */
332
333         /* fields initialised by the LND */
334         unsigned int          lnd_type;
335
336         int  (*lnd_startup) (struct lnet_ni *ni);
337         void (*lnd_shutdown) (struct lnet_ni *ni);
338         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
339
340         /* In data movement APIs below, payload buffers are described as a set
341          * of 'niov' fragments which are...
342          * EITHER
343          *    in virtual memory (struct iovec *iov != NULL)
344          * OR
345          *    in pages (kernel only: plt_kiov_t *kiov != NULL).
346          * The LND may NOT overwrite these fragment descriptors.
347          * An 'offset' and may specify a byte offset within the set of
348          * fragments to start from
349          */
350
351         /* Start sending a preformatted message.  'private' is NULL for PUT and
352          * GET messages; otherwise this is a response to an incoming message
353          * and 'private' is the 'private' passed to lnet_parse().  Return
354          * non-zero for immediate failure, otherwise complete later with
355          * lnet_finalize() */
356         int (*lnd_send)(struct lnet_ni *ni, void *private, lnet_msg_t *msg);
357
358         /* Start receiving 'mlen' bytes of payload data, skipping the following
359          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
360          * lnet_parse().  Return non-zero for immedaite failure, otherwise
361          * complete later with lnet_finalize().  This also gives back a receive
362          * credit if the LND does flow control. */
363         int (*lnd_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
364                         int delayed, unsigned int niov,
365                         struct iovec *iov, lnet_kiov_t *kiov,
366                         unsigned int offset, unsigned int mlen, unsigned int rlen);
367
368         /* lnet_parse() has had to delay processing of this message
369          * (e.g. waiting for a forwarding buffer or send credits).  Give the
370          * LND a chance to free urgently needed resources.  If called, return 0
371          * for success and do NOT give back a receive credit; that has to wait
372          * until lnd_recv() gets called.  On failure return < 0 and
373          * release resources; lnd_recv() will not be called. */
374         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
375                               void **new_privatep);
376
377         /* notification of peer health */
378         void (*lnd_notify)(struct lnet_ni *ni, lnet_nid_t peer, int alive);
379
380         /* query of peer aliveness */
381         void (*lnd_query)(struct lnet_ni *ni, lnet_nid_t peer, cfs_time_t *when);
382
383 #if defined(__KERNEL__) || defined(HAVE_LIBPTHREAD)
384         /* accept a new connection */
385         int (*lnd_accept)(struct lnet_ni *ni, cfs_socket_t *sock);
386 #endif
387
388 #ifndef __KERNEL__
389         /* wait for something to happen */
390         void (*lnd_wait)(struct lnet_ni *ni, int milliseconds);
391
392         /* ensure non-RDMA messages can be received outside liblustre */
393         int (*lnd_setasync)(struct lnet_ni *ni, lnet_process_id_t id, int nasync);
394 #endif
395 } lnd_t;
396
397 #define LNET_NI_STATUS_UP      0x15aac0de
398 #define LNET_NI_STATUS_DOWN    0xdeadface
399 #define LNET_NI_STATUS_INVALID 0x00000000
400 typedef struct {
401         lnet_nid_t ns_nid;
402         __u32      ns_status;
403         __u32      ns_unused;
404 } WIRE_ATTR lnet_ni_status_t;
405
406 struct lnet_tx_queue {
407         int                     tq_credits;     /* # tx credits free */
408         int                     tq_credits_min; /* lowest it's been */
409         int                     tq_credits_max; /* total # tx credits */
410         cfs_list_t              tq_delayed;     /* delayed TXs */
411 };
412
413 #define LNET_MAX_INTERFACES   16
414
415 typedef struct lnet_ni {
416 #ifdef __KERNEL__
417         spinlock_t              ni_lock;
418 #else
419 # ifndef HAVE_LIBPTHREAD
420         int                     ni_lock;
421 # else
422         pthread_mutex_t         ni_lock;
423 # endif
424 #endif
425         cfs_list_t              ni_list;        /* chain on ln_nis */
426         cfs_list_t              ni_cptlist;     /* chain on ln_nis_cpt */
427         int                     ni_maxtxcredits; /* # tx credits  */
428         /* # per-peer send credits */
429         int                     ni_peertxcredits;
430         /* # per-peer router buffer credits */
431         int                     ni_peerrtrcredits;
432         /* seconds to consider peer dead */
433         int                     ni_peertimeout;
434         int                     ni_ncpts;       /* number of CPTs */
435         __u32                   *ni_cpts;       /* bond NI on some CPTs */
436         lnet_nid_t              ni_nid;         /* interface's NID */
437         void                    *ni_data;       /* instance-specific data */
438         lnd_t                   *ni_lnd;        /* procedural interface */
439         struct lnet_tx_queue    **ni_tx_queues; /* percpt TX queues */
440         int                     **ni_refs;      /* percpt reference count */
441         long                    ni_last_alive;  /* when I was last alive */
442         lnet_ni_status_t        *ni_status;     /* my health status */
443         /* equivalent interfaces to use */
444         char                    *ni_interfaces[LNET_MAX_INTERFACES];
445 } lnet_ni_t;
446
447 #define LNET_PROTO_PING_MATCHBITS       0x8000000000000000LL
448
449 /* NB: value of these features equal to LNET_PROTO_PING_VERSION_x
450  * of old LNet, so there shouldn't be any compatibility issue */
451 #define LNET_PING_FEAT_INVAL            (0)             /* no feature */
452 #define LNET_PING_FEAT_BASE             (1 << 0)        /* just a ping */
453 #define LNET_PING_FEAT_NI_STATUS        (1 << 1)        /* return NI status */
454
455 #define LNET_PING_FEAT_MASK             (LNET_PING_FEAT_BASE | \
456                                          LNET_PING_FEAT_NI_STATUS)
457
458 typedef struct {
459         __u32                   pi_magic;
460         __u32                   pi_features;
461         lnet_pid_t              pi_pid;
462         __u32                   pi_nnis;
463         lnet_ni_status_t        pi_ni[0];
464 } WIRE_ATTR lnet_ping_info_t;
465
466 /* router checker data, per router */
467 #define LNET_MAX_RTR_NIS   16
468 #define LNET_PINGINFO_SIZE offsetof(lnet_ping_info_t, pi_ni[LNET_MAX_RTR_NIS])
469 typedef struct {
470         /* chain on the_lnet.ln_zombie_rcd or ln_deathrow_rcd */
471         cfs_list_t              rcd_list;
472         lnet_handle_md_t        rcd_mdh;        /* ping buffer MD */
473         struct lnet_peer        *rcd_gateway;   /* reference to gateway */
474         lnet_ping_info_t        *rcd_pinginfo;  /* ping buffer */
475 } lnet_rc_data_t;
476
477 typedef struct lnet_peer {
478         cfs_list_t        lp_hashlist;          /* chain on peer hash */
479         cfs_list_t        lp_txq;               /* messages blocking for tx credits */
480         cfs_list_t        lp_rtrq;              /* messages blocking for router credits */
481         cfs_list_t        lp_rtr_list;          /* chain on router list */
482         int               lp_txcredits;         /* # tx credits available */
483         int               lp_mintxcredits;      /* low water mark */
484         int               lp_rtrcredits;        /* # router credits */
485         int               lp_minrtrcredits;     /* low water mark */
486         unsigned int      lp_alive:1;           /* alive/dead? */
487         unsigned int      lp_notify:1;          /* notification outstanding? */
488         unsigned int      lp_notifylnd:1;       /* outstanding notification for LND? */
489         unsigned int      lp_notifying:1;       /* some thread is handling notification */
490         unsigned int      lp_ping_notsent;      /* SEND event outstanding from ping */
491         int               lp_alive_count;       /* # times router went dead<->alive */
492         long              lp_txqnob;            /* bytes queued for sending */
493         cfs_time_t        lp_timestamp;         /* time of last aliveness news */
494         cfs_time_t        lp_ping_timestamp;    /* time of last ping attempt */
495         cfs_time_t        lp_ping_deadline;     /* != 0 if ping reply expected */
496         cfs_time_t        lp_last_alive;        /* when I was last alive */
497         cfs_time_t        lp_last_query;        /* when lp_ni was queried last time */
498         lnet_ni_t        *lp_ni;                /* interface peer is on */
499         lnet_nid_t        lp_nid;               /* peer's NID */
500         int               lp_refcount;          /* # refs */
501         int                     lp_cpt;         /* CPT this peer attached on */
502         /* # refs from lnet_route_t::lr_gateway */
503         int                     lp_rtr_refcount;
504         /* returned RC ping features */
505         unsigned int            lp_ping_feats;
506         cfs_list_t              lp_routes;      /* routers on this peer */
507         lnet_rc_data_t          *lp_rcd;        /* router checker state */
508 } lnet_peer_t;
509
510
511 /* peer hash size */
512 #define LNET_PEER_HASH_BITS     9
513 #define LNET_PEER_HASH_SIZE     (1 << LNET_PEER_HASH_BITS)
514
515 /* peer hash table */
516 struct lnet_peer_table {
517         int                     pt_version;     /* /proc validity stamp */
518         int                     pt_number;      /* # peers extant */
519         cfs_list_t              pt_deathrow;    /* zombie peers */
520         cfs_list_t              *pt_hash;       /* NID->peer hash */
521 };
522
523 #define lnet_peer_aliveness_enabled(lp) ((lp)->lp_ni->ni_peertimeout > 0)
524
525 typedef struct {
526         cfs_list_t              lr_list;        /* chain on net */
527         cfs_list_t              lr_gwlist;      /* chain on gateway */
528         lnet_peer_t             *lr_gateway;    /* router node */
529         __u32                   lr_net;         /* remote network number */
530         int                     lr_seq;         /* sequence for round-robin */
531         unsigned int            lr_downis;      /* number of down NIs */
532         unsigned int            lr_hops;        /* how far I am */
533 } lnet_route_t;
534
535 typedef struct {
536         cfs_list_t              lrn_list;       /* chain on ln_remote_nets */
537         cfs_list_t              lrn_routes;     /* routes to me */
538         __u32                   lrn_net;        /* my net number */
539 } lnet_remotenet_t;
540
541 typedef struct {
542         cfs_list_t rbp_bufs;             /* my free buffer pool */
543         cfs_list_t rbp_msgs;             /* messages blocking for a buffer */
544         int        rbp_npages;           /* # pages in each buffer */
545         int        rbp_nbuffers;         /* # buffers */
546         int        rbp_credits;          /* # free buffers / blocked messages */
547         int        rbp_mincredits;       /* low water mark */
548 } lnet_rtrbufpool_t;
549
550 typedef struct {
551         cfs_list_t             rb_list;             /* chain on rbp_bufs */
552         lnet_rtrbufpool_t     *rb_pool;             /* owning pool */
553         lnet_kiov_t            rb_kiov[0];          /* the buffer space */
554 } lnet_rtrbuf_t;
555
556 #include <libcfs/libcfs_pack.h>
557 typedef struct {
558         __u32        msgs_alloc;
559         __u32        msgs_max;
560         __u32        errors;
561         __u32        send_count;
562         __u32        recv_count;
563         __u32        route_count;
564         __u32        drop_count;
565         __u64        send_length;
566         __u64        recv_length;
567         __u64        route_length;
568         __u64        drop_length;
569 } WIRE_ATTR lnet_counters_t;
570 #include <libcfs/libcfs_unpack.h>
571
572 #define LNET_PEER_HASHSIZE   503                /* prime! */
573
574 #define LNET_NRBPOOLS         3                 /* # different router buffer pools */
575
576 enum {
577         /* Didn't match anything */
578         LNET_MATCHMD_NONE       = (1 << 0),
579         /* Matched OK */
580         LNET_MATCHMD_OK         = (1 << 1),
581         /* Must be discarded */
582         LNET_MATCHMD_DROP       = (1 << 2),
583         /* match and buffer is exhausted */
584         LNET_MATCHMD_EXHAUSTED  = (1 << 3),
585         /* match or drop */
586         LNET_MATCHMD_FINISH     = (LNET_MATCHMD_OK | LNET_MATCHMD_DROP),
587 };
588
589 /* Options for lnet_portal_t::ptl_options */
590 #define LNET_PTL_LAZY               (1 << 0)
591 #define LNET_PTL_MATCH_UNIQUE       (1 << 1)    /* unique match, for RDMA */
592 #define LNET_PTL_MATCH_WILDCARD     (1 << 2)    /* wildcard match, request portal */
593
594 /* parameter for matching operations (GET, PUT) */
595 struct lnet_match_info {
596         __u64                   mi_mbits;
597         lnet_process_id_t       mi_id;
598         unsigned int            mi_opc;
599         unsigned int            mi_portal;
600         unsigned int            mi_rlength;
601         unsigned int            mi_roffset;
602 };
603
604 /* ME hash of RDMA portal */
605 #define LNET_MT_HASH_BITS               8
606 #define LNET_MT_HASH_SIZE               (1 << LNET_MT_HASH_BITS)
607 #define LNET_MT_HASH_MASK               (LNET_MT_HASH_SIZE - 1)
608 /* we allocate (LNET_MT_HASH_SIZE + 1) entries for lnet_match_table::mt_hash,
609  * the last entry is reserved for MEs with ignore-bits */
610 #define LNET_MT_HASH_IGNORE             LNET_MT_HASH_SIZE
611 /* __u64 has 2^6 bits, so need 2^(LNET_MT_HASH_BITS - LNET_MT_BITS_U64) which
612  * is 4 __u64s as bit-map, and add an extra __u64 (only use one bit) for the
613  * ME-list with ignore-bits, which is mtable::mt_hash[LNET_MT_HASH_IGNORE] */
614 #define LNET_MT_BITS_U64                6       /* 2^6 bits */
615 #define LNET_MT_EXHAUSTED_BITS          (LNET_MT_HASH_BITS - LNET_MT_BITS_U64)
616 #define LNET_MT_EXHAUSTED_BMAP          ((1 << LNET_MT_EXHAUSTED_BITS) + 1)
617
618 /* portal match table */
619 struct lnet_match_table {
620         /* reserved for upcoming patches, CPU partition ID */
621         unsigned int            mt_cpt;
622         unsigned int            mt_portal;      /* portal index */
623         /* match table is set as "enabled" if there's non-exhausted MD
624          * attached on mt_mhash, it's only valide for wildcard portal */
625         unsigned int            mt_enabled;
626         /* bitmap to flag whether MEs on mt_hash are exhausted or not */
627         __u64                   mt_exhausted[LNET_MT_EXHAUSTED_BMAP];
628         cfs_list_t              *mt_mhash;      /* matching hash */
629 };
630
631 /* these are only useful for wildcard portal */
632 /* Turn off message rotor for wildcard portals */
633 #define LNET_PTL_ROTOR_OFF      0
634 /* round-robin dispatch all PUT messages for wildcard portals */
635 #define LNET_PTL_ROTOR_ON       1
636 /* round-robin dispatch routed PUT message for wildcard portals */
637 #define LNET_PTL_ROTOR_RR_RT    2
638 /* dispatch routed PUT message by hashing source NID for wildcard portals */
639 #define LNET_PTL_ROTOR_HASH_RT  3
640
641 typedef struct lnet_portal {
642 #ifdef __KERNEL__
643         spinlock_t              ptl_lock;
644 #else
645 # ifndef HAVE_LIBPTHREAD
646         int                     ptl_lock;
647 # else
648         pthread_mutex_t         ptl_lock;
649 # endif
650 #endif
651         unsigned int            ptl_index;      /* portal ID, reserved */
652         /* flags on this portal: lazy, unique... */
653         unsigned int            ptl_options;
654         /* list of messags which are stealing buffer */
655         cfs_list_t              ptl_msg_stealing;
656         /* messages blocking for MD */
657         cfs_list_t              ptl_msg_delayed;
658         /* Match table for each CPT */
659         struct lnet_match_table **ptl_mtables;
660         /* spread rotor of incoming "PUT" */
661         int                     ptl_rotor;
662         /* # active entries for this portal */
663         int                     ptl_mt_nmaps;
664         /* array of active entries' cpu-partition-id */
665         int                     ptl_mt_maps[0];
666 } lnet_portal_t;
667
668 #define LNET_LH_HASH_BITS       12
669 #define LNET_LH_HASH_SIZE       (1ULL << LNET_LH_HASH_BITS)
670 #define LNET_LH_HASH_MASK       (LNET_LH_HASH_SIZE - 1)
671
672 /* resource container (ME, MD, EQ) */
673 struct lnet_res_container {
674         unsigned int            rec_type;       /* container type */
675         __u64                   rec_lh_cookie;  /* cookie generator */
676         cfs_list_t              rec_active;     /* active resource list */
677         cfs_list_t              *rec_lh_hash;   /* handle hash */
678 #ifdef LNET_USE_LIB_FREELIST
679         lnet_freelist_t         rec_freelist;   /* freelist for resources */
680 #endif
681 };
682
683 /* message container */
684 struct lnet_msg_container {
685         int                     msc_init;       /* initialized or not */
686         /* max # threads finalizing */
687         int                     msc_nfinalizers;
688         /* msgs waiting to complete finalizing */
689         cfs_list_t              msc_finalizing;
690         cfs_list_t              msc_active;     /* active message list */
691         /* threads doing finalization */
692         void                    **msc_finalizers;
693 #ifdef LNET_USE_LIB_FREELIST
694         lnet_freelist_t         msc_freelist;   /* freelist for messages */
695 #endif
696 };
697
698 /* Router Checker states */
699 #define LNET_RC_STATE_SHUTDOWN          0       /* not started */
700 #define LNET_RC_STATE_RUNNING           1       /* started up OK */
701 #define LNET_RC_STATE_STOPPING          2       /* telling thread to stop */
702
703 typedef struct
704 {
705         /* CPU partition table of LNet */
706         struct cfs_cpt_table            *ln_cpt_table;
707         /* number of CPTs in ln_cpt_table */
708         unsigned int                    ln_cpt_number;
709         unsigned int                    ln_cpt_bits;
710
711         /* protect LNet resources (ME/MD/EQ) */
712         struct cfs_percpt_lock          *ln_res_lock;
713         /* # portals */
714         int                             ln_nportals;
715         /* the vector of portals */
716         lnet_portal_t                   **ln_portals;
717         /* percpt ME containers */
718         struct lnet_res_container       **ln_me_containers;
719         /* percpt MD container */
720         struct lnet_res_container       **ln_md_containers;
721
722         /* Event Queue container */
723         struct lnet_res_container       ln_eq_container;
724 #ifdef __KERNEL__
725         cfs_waitq_t                     ln_eq_waitq;
726         spinlock_t                      ln_eq_wait_lock;
727 #else
728 # ifndef HAVE_LIBPTHREAD
729         int                             ln_eq_wait_lock;
730 # else
731         pthread_cond_t                  ln_eq_cond;
732         pthread_mutex_t                 ln_eq_wait_lock;
733 # endif
734 #endif
735         /* protect NI, peer table, credits, routers, rtrbuf... */
736         struct cfs_percpt_lock          *ln_net_lock;
737         /* percpt message containers for active/finalizing/freed message */
738         struct lnet_msg_container       **ln_msg_containers;
739         lnet_counters_t                 **ln_counters;
740         struct lnet_peer_table          **ln_peer_tables;
741         /* failure simulation */
742         cfs_list_t                      ln_test_peers;
743
744         cfs_list_t                      ln_nis;         /* LND instances */
745         /* NIs bond on specific CPT(s) */
746         cfs_list_t                      ln_nis_cpt;
747         /* dying LND instances */
748         cfs_list_t                      ln_nis_zombie;
749         lnet_ni_t                       *ln_loni;       /* the loopback NI */
750         /* NI to wait for events in */
751         lnet_ni_t                       *ln_eq_waitni;
752
753         /* remote networks with routes to them */
754         cfs_list_t                      ln_remote_nets;
755         /* validity stamp */
756         __u64                           ln_remote_nets_version;
757         /* list of all known routers */
758         cfs_list_t                      ln_routers;
759         /* validity stamp */
760         __u64                           ln_routers_version;
761         /* percpt router buffer pools */
762         lnet_rtrbufpool_t               **ln_rtrpools;
763
764         lnet_handle_md_t                ln_ping_target_md;
765         lnet_handle_eq_t                ln_ping_target_eq;
766         lnet_ping_info_t                *ln_ping_info;
767
768         /* router checker startup/shutdown state */
769         int                             ln_rc_state;
770         /* router checker's event queue */
771         lnet_handle_eq_t                ln_rc_eqh;
772         /* rcd still pending on net */
773         cfs_list_t                      ln_rcd_deathrow;
774         /* rcd ready for free */
775         cfs_list_t                      ln_rcd_zombie;
776 #ifdef __KERNEL__
777         /* serialise startup/shutdown */
778         struct semaphore                ln_rc_signal;
779
780         struct mutex                    ln_api_mutex;
781         struct mutex                    ln_lnd_mutex;
782 #else
783 # ifndef HAVE_LIBPTHREAD
784         int                             ln_api_mutex;
785         int                             ln_lnd_mutex;
786 # else
787         pthread_mutex_t                 ln_api_mutex;
788         pthread_mutex_t                 ln_lnd_mutex;
789 # endif
790 #endif
791         int                             ln_init;        /* LNetInit() called? */
792         /* Have I called LNetNIInit myself? */
793         int                             ln_niinit_self;
794         /* LNetNIInit/LNetNIFini counter */
795         int                             ln_refcount;
796         /* shutdown in progress */
797         int                             ln_shutdown;
798
799         int                             ln_routing;     /* am I a router? */
800         lnet_pid_t                      ln_pid;         /* requested pid */
801         /* uniquely identifies this ni in this epoch */
802         __u64                           ln_interface_cookie;
803         /* registered LNDs */
804         cfs_list_t                      ln_lnds;
805
806         /* space for network names */
807         char                            *ln_network_tokens;
808         int                             ln_network_tokens_nob;
809         /* test protocol compatibility flags */
810         int                             ln_testprotocompat;
811
812 #ifndef __KERNEL__
813         /* Temporary workaround to allow uOSS and test programs force
814          * server mode in userspace. The only place where we use it is
815          * lnet_prepare(). The only way to turn this flag on is to
816          * call lnet_server_mode() */
817         int                             ln_server_mode_flag;
818 #endif
819 } lnet_t;
820
821 #endif