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