Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lnet / klnds / socklnd / socklnd.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
5  *
6  *   Author: Zach Brown <zab@zabbo.net>
7  *   Author: Peter J. Braam <braam@clusterfs.com>
8  *   Author: Phil Schwan <phil@clusterfs.com>
9  *   Author: Eric Barton <eric@bartonsoftware.com>
10  *
11  *   This file is part of Lustre, http://www.lustre.org
12  *
13  *   Portals is free software; you can redistribute it and/or
14  *   modify it under the terms of version 2 of the GNU General Public
15  *   License as published by the Free Software Foundation.
16  *
17  *   Portals is distributed in the hope that it will be useful,
18  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *   GNU General Public License for more details.
21  *
22  *   You should have received a copy of the GNU General Public License
23  *   along with Portals; if not, write to the Free Software
24  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  *
26  */
27
28 #define DEBUG_PORTAL_ALLOC
29 #ifndef EXPORT_SYMTAB
30 # define EXPORT_SYMTAB
31 #endif
32
33 #define DEBUG_SUBSYSTEM S_LND
34
35 #if defined(__linux__)
36 #include "socklnd_lib-linux.h"
37 #elif defined(__APPLE__)
38 #include "socklnd_lib-darwin.h"
39 #elif defined(__WINNT__)
40 #include "socklnd_lib-winnt.h"
41 #else
42 #error Unsupported Operating System
43 #endif
44
45 #include <libcfs/libcfs.h>
46 #include <lnet/lnet.h>
47 #include <lnet/lib-lnet.h>
48 #include <lnet/socklnd.h>
49
50 #define SOCKNAL_PEER_HASH_SIZE  101             /* # peer lists */
51 #define SOCKNAL_RESCHED         100             /* # scheduler loops before reschedule */
52 #define SOCKNAL_ENOMEM_RETRY    CFS_TICK        /* jiffies between retries */
53
54 #define SOCKNAL_ROUND_ROBIN     0               /* round robin / load balance */
55
56 #define SOCKNAL_SINGLE_FRAG_TX      0           /* disable multi-fragment sends */
57 #define SOCKNAL_SINGLE_FRAG_RX      0           /* disable multi-fragment receives */
58
59 #define SOCKNAL_VERSION_DEBUG       0           /* enable protocol version debugging */
60
61 /* risk kmap deadlock on multi-frag I/O (backs off to single-frag if disabled).
62  * no risk if we're not running on a CONFIG_HIGHMEM platform. */
63 #ifdef CONFIG_HIGHMEM
64 # define SOCKNAL_RISK_KMAP_DEADLOCK  0
65 #else
66 # define SOCKNAL_RISK_KMAP_DEADLOCK  1
67 #endif
68
69 typedef struct                                  /* per scheduler state */
70 {
71         spinlock_t        kss_lock;             /* serialise */
72         struct list_head  kss_rx_conns;         /* conn waiting to be read */
73         struct list_head  kss_tx_conns;         /* conn waiting to be written */
74         struct list_head  kss_zombie_noop_txs;  /* zombie noop tx list */
75         cfs_waitq_t       kss_waitq;            /* where scheduler sleeps */
76         int               kss_nconns;           /* # connections assigned to this scheduler */
77 } ksock_sched_t;
78
79 typedef struct
80 {
81         unsigned int      ksni_valid:1;         /* been set yet? */
82         unsigned int      ksni_bound:1;         /* bound to a cpu yet? */
83         unsigned int      ksni_sched:6;         /* which scheduler (assumes < 64) */
84 } ksock_irqinfo_t;
85
86 typedef struct                                  /* in-use interface */
87 {
88         __u32             ksni_ipaddr;          /* interface's IP address */
89         __u32             ksni_netmask;         /* interface's network mask */
90         int               ksni_nroutes;         /* # routes using (active) */
91         int               ksni_npeers;          /* # peers using (passive) */
92         char              ksni_name[16];        /* interface name */
93 } ksock_interface_t;
94
95 typedef struct
96 {
97         int              *ksnd_timeout;         /* "stuck" socket timeout (seconds) */
98         int              *ksnd_nconnds;         /* # connection daemons */
99         int              *ksnd_min_reconnectms; /* first connection retry after (ms)... */
100         int              *ksnd_max_reconnectms; /* ...exponentially increasing to this */
101         int              *ksnd_eager_ack;       /* make TCP ack eagerly? */
102         int              *ksnd_typed_conns;     /* drive sockets by type? */
103         int              *ksnd_min_bulk;        /* smallest "large" message */
104         int              *ksnd_tx_buffer_size;  /* socket tx buffer size */
105         int              *ksnd_rx_buffer_size;  /* socket rx buffer size */
106         int              *ksnd_nagle;           /* enable NAGLE? */
107         int              *ksnd_keepalive_idle;  /* # idle secs before 1st probe */
108         int              *ksnd_keepalive_count; /* # probes */
109         int              *ksnd_keepalive_intvl; /* time between probes */
110         int              *ksnd_credits;         /* # concurrent sends */
111         int              *ksnd_peercredits;     /* # concurrent sends to 1 peer */
112         int              *ksnd_enable_csum;     /* enable check sum */
113         int              *ksnd_inject_csum_error; /* set non-zero to inject checksum error */
114         unsigned int     *ksnd_zc_min_frag;     /* minimum zero copy frag size */
115 #ifdef CPU_AFFINITY
116         int              *ksnd_irq_affinity;    /* enable IRQ affinity? */
117 #endif
118 #ifdef SOCKNAL_BACKOFF
119         int              *ksnd_backoff_init;    /* initial TCP backoff */
120         int              *ksnd_backoff_max;     /* maximum TCP backoff */
121 #endif
122 #if SOCKNAL_VERSION_DEBUG
123         int              *ksnd_protocol;        /* protocol version */
124 #endif
125 #if defined(CONFIG_SYSCTL) && !CFS_SYSFS_MODULE_PARM
126         cfs_sysctl_table_header_t *ksnd_sysctl;   /* sysctl interface */
127 #endif
128 } ksock_tunables_t;
129
130 typedef struct
131 {
132         __u64             ksnn_incarnation;     /* my epoch */
133         spinlock_t        ksnn_lock;            /* serialise */
134         int               ksnn_npeers;          /* # peers */
135         int               ksnn_shutdown;        /* shutting down? */
136         int               ksnn_ninterfaces;     /* IP interfaces */
137         ksock_interface_t ksnn_interfaces[LNET_MAX_INTERFACES];
138 } ksock_net_t;
139
140 typedef struct
141 {
142         int               ksnd_init;            /* initialisation state */
143         int               ksnd_nnets;           /* # networks set up */
144
145         rwlock_t          ksnd_global_lock;     /* stabilize peer/conn ops */
146         struct list_head *ksnd_peers;           /* hash table of all my known peers */
147         int               ksnd_peer_hash_size;  /* size of ksnd_peers */
148
149         int               ksnd_nthreads;        /* # live threads */
150         int               ksnd_shuttingdown;    /* tell threads to exit */
151         int               ksnd_nschedulers;     /* # schedulers */
152         ksock_sched_t    *ksnd_schedulers;      /* their state */
153
154         atomic_t          ksnd_nactive_txs;     /* #active txs */
155
156         struct list_head  ksnd_deathrow_conns;  /* conns to close: reaper_lock*/
157         struct list_head  ksnd_zombie_conns;    /* conns to free: reaper_lock */
158         struct list_head  ksnd_enomem_conns;    /* conns to retry: reaper_lock*/
159         cfs_waitq_t       ksnd_reaper_waitq;    /* reaper sleeps here */
160         cfs_time_t        ksnd_reaper_waketime; /* when reaper will wake */
161         spinlock_t        ksnd_reaper_lock;     /* serialise */
162
163         int               ksnd_enomem_tx;       /* test ENOMEM sender */
164         int               ksnd_stall_tx;        /* test sluggish sender */
165         int               ksnd_stall_rx;        /* test sluggish receiver */
166
167         struct list_head  ksnd_connd_connreqs;  /* incoming connection requests */
168         struct list_head  ksnd_connd_routes;    /* routes waiting to be connected */
169         cfs_waitq_t       ksnd_connd_waitq;     /* connds sleep here */
170         int               ksnd_connd_connecting;/* # connds connecting */
171         spinlock_t        ksnd_connd_lock;      /* serialise */
172
173         struct list_head  ksnd_idle_noop_txs;   /* list head for freed noop tx */
174         spinlock_t        ksnd_tx_lock;         /* serialise, NOT safe in g_lock */
175
176         ksock_irqinfo_t   ksnd_irqinfo[NR_IRQS];/* irq->scheduler lookup */
177
178 } ksock_nal_data_t;
179
180 #define SOCKNAL_INIT_NOTHING    0
181 #define SOCKNAL_INIT_DATA       1
182 #define SOCKNAL_INIT_ALL        2
183
184 /* A packet just assembled for transmission is represented by 1 or more
185  * struct iovec fragments (the first frag contains the portals header),
186  * followed by 0 or more lnet_kiov_t fragments.
187  *
188  * On the receive side, initially 1 struct iovec fragment is posted for
189  * receive (the header).  Once the header has been received, the payload is
190  * received into either struct iovec or lnet_kiov_t fragments, depending on
191  * what the header matched or whether the message needs forwarding. */
192
193 struct ksock_conn;                              /* forward ref */
194 struct ksock_peer;                              /* forward ref */
195 struct ksock_route;                             /* forward ref */
196 struct ksock_proto;                             /* forward ref */
197
198 typedef struct                                  /* transmit packet */
199 {
200         struct list_head        tx_list;        /* queue on conn for transmission etc */
201         struct list_head        tx_zc_list;     /* queue on peer for ZC request */
202         atomic_t                tx_refcount;    /* tx reference count */
203         int                     tx_nob;         /* # packet bytes */
204         int                     tx_resid;       /* residual bytes */
205         int                     tx_niov;        /* # packet iovec frags */
206         struct iovec           *tx_iov;         /* packet iovec frags */
207         int                     tx_nkiov;       /* # packet page frags */
208         unsigned int            tx_checked_zc;  /* Have I checked if I should ZC? */
209         lnet_kiov_t            *tx_kiov;        /* packet page frags */
210         struct ksock_conn      *tx_conn;        /* owning conn */
211         lnet_msg_t             *tx_lnetmsg;     /* lnet message for lnet_finalize() */
212         cfs_time_t              tx_deadline;    /* when (in jiffies) tx times out */
213         ksock_msg_t             tx_msg;         /* socklnd message buffer */
214         int                     tx_desc_size;   /* size of this descriptor */
215         union {
216                 struct {
217                         struct iovec iov;       /* virt hdr */
218                         lnet_kiov_t  kiov[0];   /* paged payload */
219                 }                  paged;
220                 struct {
221                         struct iovec iov[1];    /* virt hdr + payload */
222                 }                  virt;
223         }                       tx_frags;
224 } ksock_tx_t;
225
226 #define KSOCK_NOOP_TX_SIZE      offsetof(ksock_tx_t, tx_frags.paged.kiov[0])
227
228 /* network zero copy callback descriptor embedded in ksock_tx_t */
229
230 /* space for the rx frag descriptors; we either read a single contiguous
231  * header, or up to LNET_MAX_IOV frags of payload of either type. */
232 typedef union {
233         struct iovec     iov[LNET_MAX_IOV];
234         lnet_kiov_t      kiov[LNET_MAX_IOV];
235 } ksock_rxiovspace_t;
236
237 #define SOCKNAL_RX_KSM_HEADER   1               /* reading ksock message header */
238 #define SOCKNAL_RX_LNET_HEADER  2               /* reading lnet message header */
239 #define SOCKNAL_RX_PARSE        3               /* Calling lnet_parse() */
240 #define SOCKNAL_RX_PARSE_WAIT   4               /* waiting to be told to read the body */
241 #define SOCKNAL_RX_LNET_PAYLOAD 5               /* reading lnet payload (to deliver here) */
242 #define SOCKNAL_RX_SLOP         6               /* skipping body */
243
244 typedef struct ksock_conn
245 {
246         struct ksock_peer  *ksnc_peer;          /* owning peer */
247         struct ksock_route *ksnc_route;         /* owning route */
248         struct list_head    ksnc_list;          /* stash on peer's conn list */
249         cfs_socket_t       *ksnc_sock;          /* actual socket */
250         void               *ksnc_saved_data_ready; /* socket's original data_ready() callback */
251         void               *ksnc_saved_write_space; /* socket's original write_space() callback */
252         atomic_t            ksnc_conn_refcount; /* conn refcount */
253         atomic_t            ksnc_sock_refcount; /* sock refcount */
254         ksock_sched_t      *ksnc_scheduler;     /* who schedules this connection */
255         __u32               ksnc_myipaddr;      /* my IP */
256         __u32               ksnc_ipaddr;        /* peer's IP */
257         int                 ksnc_port;          /* peer's port */
258         int                 ksnc_type:3;        /* type of connection, should be signed value */
259         int                 ksnc_closing:1;     /* being shut down */
260         int                 ksnc_flip:1;        /* flip or not, only for V2.x */
261         int                 ksnc_zc_capable:1;  /* enable to ZC */
262         struct ksock_proto *ksnc_proto;         /* protocol for the connection */
263
264         /* reader */
265         struct list_head    ksnc_rx_list;       /* where I enq waiting input or a forwarding descriptor */
266         cfs_time_t          ksnc_rx_deadline;   /* when (in jiffies) receive times out */
267         __u8                ksnc_rx_started;    /* started receiving a message */
268         __u8                ksnc_rx_ready;      /* data ready to read */
269         __u8                ksnc_rx_scheduled;  /* being progressed */
270         __u8                ksnc_rx_state;      /* what is being read */
271         int                 ksnc_rx_nob_left;   /* # bytes to next hdr/body  */
272         int                 ksnc_rx_nob_wanted; /* bytes actually wanted */
273         int                 ksnc_rx_niov;       /* # iovec frags */
274         struct iovec       *ksnc_rx_iov;        /* the iovec frags */
275         int                 ksnc_rx_nkiov;      /* # page frags */
276         lnet_kiov_t        *ksnc_rx_kiov;       /* the page frags */
277         ksock_rxiovspace_t  ksnc_rx_iov_space;  /* space for frag descriptors */
278         __u32               ksnc_rx_csum;       /* partial checksum for incoming data */
279         void               *ksnc_cookie;        /* rx lnet_finalize passthru arg */
280         ksock_msg_t         ksnc_msg;           /* incoming message buffer:
281                                                  * V2.x message takes the whole struct
282                                                  * V1.x message is a bare lnet_hdr_t, it's stored
283                                                  * in ksnc_msg.ksm_u.lnetmsg */
284
285         /* WRITER */
286         struct list_head    ksnc_tx_list;       /* where I enq waiting for output space */
287         struct list_head    ksnc_tx_queue;      /* packets waiting to be sent */
288         ksock_tx_t         *ksnc_tx_mono;       /* V2.x only, next mono-packet, mono-packet is :
289                                                  * a. lnet packet without piggyback
290                                                  * b. noop ZC-ACK packet */
291         cfs_time_t          ksnc_tx_deadline;   /* when (in jiffies) tx times out */
292         int                 ksnc_tx_bufnob;     /* send buffer marker */
293         atomic_t            ksnc_tx_nob;        /* # bytes queued */
294         int                 ksnc_tx_ready;      /* write space */
295         int                 ksnc_tx_scheduled;  /* being progressed */
296
297 #if !SOCKNAL_SINGLE_FRAG_RX
298         struct iovec        ksnc_rx_scratch_iov[LNET_MAX_IOV];
299 #endif
300 #if !SOCKNAL_SINGLE_FRAG_TX
301         struct iovec        ksnc_tx_scratch_iov[LNET_MAX_IOV];
302 #endif
303 } ksock_conn_t;
304
305 typedef struct ksock_route
306 {
307         struct list_head    ksnr_list;          /* chain on peer route list */
308         struct list_head    ksnr_connd_list;    /* chain on ksnr_connd_routes */
309         struct ksock_peer  *ksnr_peer;          /* owning peer */
310         atomic_t            ksnr_refcount;      /* # users */
311         cfs_time_t          ksnr_timeout;       /* when (in jiffies) reconnection can happen next */
312         cfs_duration_t      ksnr_retry_interval; /* how long between retries */
313         __u32               ksnr_myipaddr;      /* my IP */
314         __u32               ksnr_ipaddr;        /* IP address to connect to */
315         int                 ksnr_port;          /* port to connect to */
316         unsigned int        ksnr_scheduled:1;   /* scheduled for attention */
317         unsigned int        ksnr_connecting:1;  /* connection establishment in progress */
318         unsigned int        ksnr_connected:4;   /* connections established by type */
319         unsigned int        ksnr_deleted:1;     /* been removed from peer? */
320         unsigned int        ksnr_share_count;   /* created explicitly? */
321         int                 ksnr_conn_count;    /* # conns established by this route */
322 } ksock_route_t;
323
324 typedef struct ksock_peer
325 {
326         struct list_head    ksnp_list;          /* stash on global peer list */
327         lnet_process_id_t   ksnp_id;            /* who's on the other end(s) */
328         atomic_t            ksnp_refcount;      /* # users */
329         int                 ksnp_sharecount;    /* lconf usage counter */
330         int                 ksnp_closing;       /* being closed */
331         int                 ksnp_accepting;     /* # passive connections pending */
332         int                 ksnp_error;         /* errno on closing last conn */
333         __u64               ksnp_zc_next_cookie;/* ZC completion cookie */
334         __u64               ksnp_incarnation;   /* latest known peer incarnation */
335         struct ksock_proto *ksnp_proto;         /* latest known peer protocol */
336         struct list_head    ksnp_conns;         /* all active connections */
337         struct list_head    ksnp_routes;        /* routes */
338         struct list_head    ksnp_tx_queue;      /* waiting packets */
339         spinlock_t          ksnp_lock;          /* serialize, NOT safe in g_lock */
340         struct list_head    ksnp_zc_req_list;   /* zero copy requests wait for ACK  */
341         cfs_time_t          ksnp_last_alive;    /* when (in jiffies) I was last alive */
342         lnet_ni_t          *ksnp_ni;            /* which network */
343         int                 ksnp_n_passive_ips; /* # of... */
344         __u32               ksnp_passive_ips[LNET_MAX_INTERFACES]; /* preferred local interfaces */
345 } ksock_peer_t;
346
347 typedef struct ksock_connreq
348 {
349         struct list_head    ksncr_list;         /* stash on ksnd_connd_connreqs */
350         lnet_ni_t          *ksncr_ni;           /* chosen NI */
351         cfs_socket_t       *ksncr_sock;         /* accepted socket */
352 } ksock_connreq_t;
353
354 extern ksock_nal_data_t ksocknal_data;
355 extern ksock_tunables_t ksocknal_tunables;
356
357 typedef struct ksock_proto
358 {
359         int     pro_version;                                                /* version number of protocol */
360         int     (*pro_send_hello)(ksock_conn_t *, ksock_hello_msg_t *);     /* handshake function */
361         int     (*pro_recv_hello)(ksock_conn_t *, ksock_hello_msg_t *, int);/* handshake function */
362         void    (*pro_pack)(ksock_tx_t *);                                  /* message pack */
363         void    (*pro_unpack)(ksock_msg_t *);                               /* message unpack */
364 } ksock_proto_t;
365
366 extern ksock_proto_t ksocknal_protocol_v1x;
367 extern ksock_proto_t ksocknal_protocol_v2x;
368
369 #define KSOCK_PROTO_V1_MAJOR    LNET_PROTO_TCP_VERSION_MAJOR
370 #define KSOCK_PROTO_V1_MINOR    LNET_PROTO_TCP_VERSION_MINOR
371 #define KSOCK_PROTO_V1          KSOCK_PROTO_V1_MAJOR
372
373 #ifndef CPU_MASK_NONE
374 #define CPU_MASK_NONE   0UL
375 #endif
376
377 static inline int
378 ksocknal_route_mask(void)
379 {
380         if (!*ksocknal_tunables.ksnd_typed_conns)
381                 return (1 << SOCKLND_CONN_ANY);
382
383         return ((1 << SOCKLND_CONN_CONTROL) |
384                 (1 << SOCKLND_CONN_BULK_IN) |
385                 (1 << SOCKLND_CONN_BULK_OUT));
386 }
387
388 static inline struct list_head *
389 ksocknal_nid2peerlist (lnet_nid_t nid)
390 {
391         unsigned int hash = ((unsigned int)nid) % ksocknal_data.ksnd_peer_hash_size;
392
393         return (&ksocknal_data.ksnd_peers [hash]);
394 }
395
396 static inline void
397 ksocknal_conn_addref (ksock_conn_t *conn)
398 {
399         LASSERT (atomic_read(&conn->ksnc_conn_refcount) > 0);
400         atomic_inc(&conn->ksnc_conn_refcount);
401 }
402
403 extern void ksocknal_queue_zombie_conn (ksock_conn_t *conn);
404 extern void ksocknal_finalize_zcreq(ksock_conn_t *conn);
405
406 static inline void
407 ksocknal_conn_decref (ksock_conn_t *conn)
408 {
409         LASSERT (atomic_read(&conn->ksnc_conn_refcount) > 0);
410         if (atomic_dec_and_test(&conn->ksnc_conn_refcount))
411                 ksocknal_queue_zombie_conn(conn);
412 }
413
414 static inline int
415 ksocknal_connsock_addref (ksock_conn_t *conn)
416 {
417         int   rc = -ESHUTDOWN;
418
419         read_lock (&ksocknal_data.ksnd_global_lock);
420         if (!conn->ksnc_closing) {
421                 LASSERT (atomic_read(&conn->ksnc_sock_refcount) > 0);
422                 atomic_inc(&conn->ksnc_sock_refcount);
423                 rc = 0;
424         }
425         read_unlock (&ksocknal_data.ksnd_global_lock);
426
427         return (rc);
428 }
429
430 static inline void
431 ksocknal_connsock_decref (ksock_conn_t *conn)
432 {
433         LASSERT (atomic_read(&conn->ksnc_sock_refcount) > 0);
434         if (atomic_dec_and_test(&conn->ksnc_sock_refcount)) {
435                 LASSERT (conn->ksnc_closing);
436                 libcfs_sock_release(conn->ksnc_sock);
437                 conn->ksnc_sock = NULL;
438                 ksocknal_finalize_zcreq(conn);
439         }
440 }
441
442 static inline void
443 ksocknal_tx_addref (ksock_tx_t *tx)
444 {
445         LASSERT (atomic_read(&tx->tx_refcount) > 0);
446         atomic_inc(&tx->tx_refcount);
447 }
448
449 extern void ksocknal_tx_done (lnet_ni_t *ni, ksock_tx_t *tx);
450
451 static inline void
452 ksocknal_tx_decref (ksock_tx_t *tx)
453 {
454         LASSERT (atomic_read(&tx->tx_refcount) > 0);
455         if (atomic_dec_and_test(&tx->tx_refcount))
456                 ksocknal_tx_done(NULL, tx);
457 }
458
459 static inline void
460 ksocknal_route_addref (ksock_route_t *route)
461 {
462         LASSERT (atomic_read(&route->ksnr_refcount) > 0);
463         atomic_inc(&route->ksnr_refcount);
464 }
465
466 extern void ksocknal_destroy_route (ksock_route_t *route);
467
468 static inline void
469 ksocknal_route_decref (ksock_route_t *route)
470 {
471         LASSERT (atomic_read (&route->ksnr_refcount) > 0);
472         if (atomic_dec_and_test(&route->ksnr_refcount))
473                 ksocknal_destroy_route (route);
474 }
475
476 static inline void
477 ksocknal_peer_addref (ksock_peer_t *peer)
478 {
479         LASSERT (atomic_read (&peer->ksnp_refcount) > 0);
480         atomic_inc(&peer->ksnp_refcount);
481 }
482
483 extern void ksocknal_destroy_peer (ksock_peer_t *peer);
484
485 static inline void
486 ksocknal_peer_decref (ksock_peer_t *peer)
487 {
488         LASSERT (atomic_read (&peer->ksnp_refcount) > 0);
489         if (atomic_dec_and_test(&peer->ksnp_refcount))
490                 ksocknal_destroy_peer (peer);
491 }
492
493 int ksocknal_startup (lnet_ni_t *ni);
494 void ksocknal_shutdown (lnet_ni_t *ni);
495 int ksocknal_ctl(lnet_ni_t *ni, unsigned int cmd, void *arg);
496 int ksocknal_send (lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg);
497 int ksocknal_recv(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg, 
498                   int delayed, unsigned int niov, 
499                   struct iovec *iov, lnet_kiov_t *kiov,
500                   unsigned int offset, unsigned int mlen, unsigned int rlen);
501 int ksocknal_accept(lnet_ni_t *ni, cfs_socket_t *sock);
502
503 extern int ksocknal_add_peer(lnet_ni_t *ni, lnet_process_id_t id, __u32 ip, int port);
504 extern ksock_peer_t *ksocknal_find_peer_locked (lnet_ni_t *ni, lnet_process_id_t id);
505 extern ksock_peer_t *ksocknal_find_peer (lnet_ni_t *ni, lnet_process_id_t id);
506 extern void ksocknal_peer_failed (ksock_peer_t *peer);
507 extern int ksocknal_create_conn (lnet_ni_t *ni, ksock_route_t *route,
508                                  cfs_socket_t *sock, int type);
509 extern void ksocknal_close_conn_locked (ksock_conn_t *conn, int why);
510 extern void ksocknal_terminate_conn (ksock_conn_t *conn);
511 extern void ksocknal_destroy_conn (ksock_conn_t *conn);
512 extern int  ksocknal_close_peer_conns_locked (ksock_peer_t *peer,
513                                               __u32 ipaddr, int why);
514 extern int ksocknal_close_conn_and_siblings (ksock_conn_t *conn, int why);
515 extern int ksocknal_close_matching_conns (lnet_process_id_t id, __u32 ipaddr);
516
517 extern void ksocknal_queue_tx_locked (ksock_tx_t *tx, ksock_conn_t *conn);
518 extern void ksocknal_txlist_done (lnet_ni_t *ni, struct list_head *txlist, int error);
519 extern void ksocknal_notify (lnet_ni_t *ni, lnet_nid_t gw_nid, int alive);
520 extern int ksocknal_thread_start (int (*fn)(void *arg), void *arg);
521 extern void ksocknal_thread_fini (void);
522 extern ksock_route_t *ksocknal_find_connecting_route_locked (ksock_peer_t *peer);
523 extern int ksocknal_new_packet (ksock_conn_t *conn, int skip);
524 extern int ksocknal_scheduler (void *arg);
525 extern int ksocknal_connd (void *arg);
526 extern int ksocknal_reaper (void *arg);
527 extern int ksocknal_send_hello (lnet_ni_t *ni, ksock_conn_t *conn,
528                                 lnet_nid_t peer_nid, ksock_hello_msg_t *hello);
529 extern int ksocknal_recv_hello (lnet_ni_t *ni, ksock_conn_t *conn, 
530                                 ksock_hello_msg_t *hello, lnet_process_id_t *id,
531                                 __u64 *incarnation);
532 extern void ksocknal_read_callback(ksock_conn_t *conn);
533 extern void ksocknal_write_callback(ksock_conn_t *conn);
534
535 extern int ksocknal_lib_zc_capable(cfs_socket_t *sock);
536 extern void ksocknal_lib_save_callback(cfs_socket_t *sock, ksock_conn_t *conn);
537 extern void ksocknal_lib_set_callback(cfs_socket_t *sock,  ksock_conn_t *conn);
538 extern void ksocknal_lib_reset_callback(cfs_socket_t *sock, ksock_conn_t *conn);
539 extern void ksocknal_lib_push_conn (ksock_conn_t *conn);
540 extern void ksocknal_lib_bind_irq (unsigned int irq);
541 extern int ksocknal_lib_get_conn_addrs (ksock_conn_t *conn);
542 extern unsigned int ksocknal_lib_sock_irq (cfs_socket_t *sock);
543 extern int ksocknal_lib_setup_sock (cfs_socket_t *so);
544 extern int ksocknal_lib_send_iov (ksock_conn_t *conn, ksock_tx_t *tx);
545 extern int ksocknal_lib_send_kiov (ksock_conn_t *conn, ksock_tx_t *tx);
546 extern void ksocknal_lib_eager_ack (ksock_conn_t *conn);
547 extern int ksocknal_lib_recv_iov (ksock_conn_t *conn);
548 extern int ksocknal_lib_recv_kiov (ksock_conn_t *conn);
549 extern int ksocknal_lib_get_conn_tunables (ksock_conn_t *conn, int *txmem, 
550                                            int *rxmem, int *nagle);
551
552 extern int ksocknal_lib_tunables_init(void);
553 extern void ksocknal_lib_tunables_fini(void);
554
555 extern void ksocknal_lib_csum_tx(ksock_tx_t *tx);