Whamcloud - gitweb
87b23dc6060f8c67472a29045288b10799169c08
[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 (C) 2001, 2002 Cluster File Systems, Inc.
5  *   Author: Zach Brown <zab@zabbo.net>
6  *   Author: Peter J. Braam <braam@clusterfs.com>
7  *   Author: Phil Schwan <phil@clusterfs.com>
8  *   Author: Eric Barton <eric@bartonsoftware.com>
9  *
10  *   This file is part of Portals, http://www.sf.net/projects/lustre/
11  *
12  *   Portals is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Portals is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Portals; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  *
25  */
26
27 #define DEBUG_PORTAL_ALLOC
28 #ifndef EXPORT_SYMTAB
29 # define EXPORT_SYMTAB
30 #endif
31
32 #include <linux/config.h>
33 #include <linux/module.h>
34 #include <linux/kernel.h>
35 #include <linux/mm.h>
36 #include <linux/string.h>
37 #include <linux/stat.h>
38 #include <linux/errno.h>
39 #include <linux/smp_lock.h>
40 #include <linux/unistd.h>
41 #include <net/sock.h>
42 #include <net/tcp.h>
43 #include <linux/uio.h>
44
45 #include <asm/system.h>
46 #include <asm/uaccess.h>
47 #include <asm/irq.h>
48
49 #include <linux/init.h>
50 #include <linux/fs.h>
51 #include <linux/file.h>
52 #include <linux/stat.h>
53 #include <linux/list.h>
54 #include <linux/kmod.h>
55 #include <linux/sysctl.h>
56 #include <asm/uaccess.h>
57 #include <asm/segment.h>
58 #include <asm/div64.h>
59
60 #define DEBUG_SUBSYSTEM S_SOCKNAL
61
62 #include <linux/kp30.h>
63 #include <linux/portals_compat25.h>
64 #include <linux/kpr.h>
65 #include <portals/p30.h>
66 #include <portals/lib-p30.h>
67 #include <portals/nal.h>
68 #include <portals/socknal.h>
69
70 #if CONFIG_SMP
71 # define SOCKNAL_N_SCHED       num_online_cpus() /* # socknal schedulers */
72 #else
73 # define SOCKNAL_N_SCHED        1               /* # socknal schedulers */
74 #endif
75 #define SOCKNAL_N_AUTOCONNECTD  4               /* # socknal autoconnect daemons */
76
77 #define SOCKNAL_MIN_RECONNECT_INTERVAL  HZ      /* first failed connection retry... */
78 #define SOCKNAL_MAX_RECONNECT_INTERVAL  (60*HZ) /* ...exponentially increasing to this */
79
80 /* default vals for runtime tunables */
81 #define SOCKNAL_IO_TIMEOUT       20             /* default comms timeout (seconds) */
82 #define SOCKNAL_EAGER_ACK        0              /* default eager ack (boolean) */
83 #define SOCKNAL_TYPED_CONNS      1              /* unidirectional large, bidirectional small? */
84 #define SOCKNAL_ZC_MIN_FRAG     (2<<10)         /* default smallest zerocopy fragment */
85 #define SOCKNAL_MIN_BULK        (1<<10)         /* smallest "large" message */
86 #define SOCKNAL_USE_KEEPALIVES   0              /* use tcp/ip keepalive? */
87
88 #define SOCKNAL_PEER_HASH_SIZE   101            /* # peer lists */
89
90 #define SOCKNAL_SMALL_FWD_NMSGS 128             /* # small messages I can be forwarding at any time */
91 #define SOCKNAL_LARGE_FWD_NMSGS 64              /* # large messages I can be forwarding at any time */
92
93 #define SOCKNAL_SMALL_FWD_PAGES 1               /* # pages in a small message fwd buffer */
94
95 #define SOCKNAL_LARGE_FWD_PAGES (PAGE_ALIGN(PTL_MTU) >> PAGE_SHIFT)
96                                                 /* # pages in a large message fwd buffer */
97
98 #define SOCKNAL_RESCHED         100             /* # scheduler loops before reschedule */
99 #define SOCKNAL_ENOMEM_RETRY    1               /* jiffies between retries */
100
101 #define SOCKNAL_TX_LOW_WATER(sk) (((sk)->sk_sndbuf*8)/10)
102
103 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,72))
104 # define sk_data_ready  data_ready
105 # define sk_write_space write_space
106 # define sk_user_data   user_data
107 # define sk_prot        prot
108 # define sk_sndbuf      sndbuf
109 # define sk_socket      socket
110 #endif
111
112 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0))
113 # define sk_wmem_queued wmem_queued
114 #endif
115
116 typedef struct                                  /* pool of forwarding buffers */
117 {
118         spinlock_t        fmp_lock;             /* serialise */
119         struct list_head  fmp_idle_fmbs;        /* free buffers */
120         struct list_head  fmp_blocked_conns;    /* connections waiting for a buffer */
121         int               fmp_nactive_fmbs;     /* # buffers in use */
122         int               fmp_buff_pages;       /* # pages per buffer */
123 } ksock_fmb_pool_t;
124
125
126 typedef struct                                  /* per scheduler state */
127 {
128         spinlock_t        kss_lock;             /* serialise */
129         struct list_head  kss_rx_conns;         /* conn waiting to be read */
130         struct list_head  kss_tx_conns;         /* conn waiting to be written */
131 #if SOCKNAL_ZC
132         struct list_head  kss_zctxdone_list;    /* completed ZC transmits */
133 #endif
134         wait_queue_head_t kss_waitq;            /* where scheduler sleeps */
135         int               kss_nconns;           /* # connections assigned to this scheduler */
136 } ksock_sched_t;
137
138 typedef struct {
139         int               ksni_valid:1;         /* been set yet? */
140         int               ksni_bound:1;         /* bound to a cpu yet? */
141         int               ksni_sched:6;         /* which scheduler (assumes < 64) */
142 } ksock_irqinfo_t;
143
144 typedef struct {
145         int               ksnd_io_timeout;      /* "stuck" socket timeout (seconds) */
146         int               ksnd_eager_ack;       /* make TCP ack eagerly? */
147         int               ksnd_typed_conns;     /* drive sockets by type? */
148         int               ksnd_min_bulk;        /* smallest "large" message */
149 #if SOCKNAL_ZC
150         unsigned int      ksnd_zc_min_frag;     /* minimum zero copy frag size */
151 #endif
152         struct ctl_table_header *ksnd_sysctl;   /* sysctl interface */
153 } ksock_tunables_t;
154
155 typedef struct {
156         int               ksnd_init;            /* initialisation state */
157         __u64             ksnd_incarnation;     /* my epoch */
158         
159         rwlock_t          ksnd_global_lock;     /* stabilize peer/conn ops */
160         struct list_head *ksnd_peers;           /* hash table of all my known peers */
161         int               ksnd_peer_hash_size;  /* size of ksnd_peers */
162
163         nal_cb_t         *ksnd_nal_cb;
164         spinlock_t        ksnd_nal_cb_lock;     /* lib cli/sti lock */
165         wait_queue_head_t ksnd_yield_waitq;     /* where yield waits */
166
167         atomic_t          ksnd_nthreads;        /* # live threads */
168         int               ksnd_shuttingdown;    /* tell threads to exit */
169         ksock_sched_t    *ksnd_schedulers;      /* scheduler state */
170
171         atomic_t          ksnd_npeers;          /* total # peers extant */
172         atomic_t          ksnd_nclosing_conns;  /* # closed conns extant */
173
174         kpr_router_t      ksnd_router;          /* THE router */
175
176         ksock_fmb_pool_t  ksnd_small_fmp;       /* small message forwarding buffers */
177         ksock_fmb_pool_t  ksnd_large_fmp;       /* large message forwarding buffers */
178
179         atomic_t          ksnd_nactive_ltxs;    /* #active ltxs */
180
181         struct list_head  ksnd_deathrow_conns;  /* conns to be closed */
182         struct list_head  ksnd_zombie_conns;    /* conns to be freed */
183         struct list_head  ksnd_enomem_conns;    /* conns to be retried */
184         wait_queue_head_t ksnd_reaper_waitq;    /* reaper sleeps here */
185         unsigned long     ksnd_reaper_waketime; /* when reaper will wake */
186         spinlock_t        ksnd_reaper_lock;     /* serialise */
187
188         int               ksnd_enomem_tx;       /* test ENOMEM sender */
189         int               ksnd_stall_tx;        /* test sluggish sender */
190         int               ksnd_stall_rx;        /* test sluggish receiver */
191
192         struct list_head  ksnd_autoconnectd_routes; /* routes waiting to be connected */
193         wait_queue_head_t ksnd_autoconnectd_waitq; /* autoconnectds sleep here */
194         spinlock_t        ksnd_autoconnectd_lock; /* serialise */
195
196         ksock_irqinfo_t   ksnd_irqinfo[NR_IRQS];/* irq->scheduler lookup */
197 } ksock_nal_data_t;
198
199 #define SOCKNAL_INIT_NOTHING    0
200 #define SOCKNAL_INIT_DATA       1
201 #define SOCKNAL_INIT_LIB        2
202 #define SOCKNAL_INIT_ALL        3
203
204 /* A packet just assembled for transmission is represented by 1 or more
205  * struct iovec fragments (the first frag contains the portals header),
206  * followed by 0 or more ptl_kiov_t fragments.
207  *
208  * On the receive side, initially 1 struct iovec fragment is posted for
209  * receive (the header).  Once the header has been received, the payload is
210  * received into either struct iovec or ptl_kiov_t fragments, depending on
211  * what the header matched or whether the message needs forwarding. */
212
213 struct ksock_conn;                              /* forward ref */
214 struct ksock_peer;                              /* forward ref */
215 struct ksock_route;                             /* forward ref */
216
217 typedef struct                                  /* transmit packet */
218 {
219         struct list_head        tx_list;        /* queue on conn for transmission etc */
220         char                    tx_isfwd;       /* forwarding / sourced here */
221         int                     tx_nob;         /* # packet bytes */
222         int                     tx_resid;       /* residual bytes */
223         int                     tx_niov;        /* # packet iovec frags */
224         struct iovec           *tx_iov;         /* packet iovec frags */
225         int                     tx_nkiov;       /* # packet page frags */
226         ptl_kiov_t             *tx_kiov;        /* packet page frags */
227         struct ksock_conn      *tx_conn;        /* owning conn */
228         ptl_hdr_t              *tx_hdr;         /* packet header (for debug only) */
229 #if SOCKNAL_ZC        
230         zccd_t                  tx_zccd;        /* zero copy callback descriptor */
231 #endif
232 } ksock_tx_t;
233
234 typedef struct                                  /* forwarded packet */
235 {
236         ksock_tx_t             ftx_tx;          /* send info */
237         struct iovec           ftx_iov;         /* hdr iovec */
238 } ksock_ftx_t;
239
240 #define KSOCK_ZCCD_2_TX(ptr)    list_entry (ptr, ksock_tx_t, tx_zccd)
241 /* network zero copy callback descriptor embedded in ksock_tx_t */
242
243 typedef struct                                  /* locally transmitted packet */
244 {
245         ksock_tx_t              ltx_tx;         /* send info */
246         void                   *ltx_private;    /* lib_finalize() callback arg */
247         void                   *ltx_cookie;     /* lib_finalize() callback arg */
248         ptl_hdr_t               ltx_hdr;        /* buffer for packet header */
249         int                     ltx_desc_size;  /* bytes allocated for this desc */
250         struct iovec            ltx_iov[1];     /* iov for hdr + payload */
251         ptl_kiov_t              ltx_kiov[0];    /* kiov for payload */
252 } ksock_ltx_t;
253
254 #define KSOCK_TX_2_KPR_FWD_DESC(ptr)    list_entry ((kprfd_scratch_t *)ptr, kpr_fwd_desc_t, kprfd_scratch)
255 /* forwarded packets (router->socknal) embedded in kpr_fwd_desc_t::kprfd_scratch */
256
257 #define KSOCK_TX_2_KSOCK_LTX(ptr)       list_entry (ptr, ksock_ltx_t, ltx_tx)
258 /* local packets (lib->socknal) embedded in ksock_ltx_t::ltx_tx */
259
260 /* NB list_entry() is used here as convenient macro for calculating a
261  * pointer to a struct from the address of a member. */
262
263 typedef struct                                  /* Kernel portals Socket Forwarding message buffer */
264 {                                               /* (socknal->router) */
265         struct list_head        fmb_list;       /* queue idle */
266         kpr_fwd_desc_t          fmb_fwd;        /* router's descriptor */
267         ksock_fmb_pool_t       *fmb_pool;       /* owning pool */
268         struct ksock_peer      *fmb_peer;       /* peer received from */
269         ptl_hdr_t               fmb_hdr;        /* message header */
270         ptl_kiov_t              fmb_kiov[0];    /* payload frags */
271 } ksock_fmb_t;
272
273 /* space for the rx frag descriptors; we either read a single contiguous
274  * header, or up to PTL_MD_MAX_IOV frags of payload of either type. */
275 typedef union {
276         struct iovec    iov[PTL_MD_MAX_IOV];
277         ptl_kiov_t      kiov[PTL_MD_MAX_IOV];
278 } ksock_rxiovspace_t;
279
280 #define SOCKNAL_RX_HEADER       1               /* reading header */
281 #define SOCKNAL_RX_BODY         2               /* reading body (to deliver here) */
282 #define SOCKNAL_RX_BODY_FWD     3               /* reading body (to forward) */
283 #define SOCKNAL_RX_SLOP         4               /* skipping body */
284 #define SOCKNAL_RX_GET_FMB      5               /* scheduled for forwarding */
285 #define SOCKNAL_RX_FMB_SLEEP    6               /* blocked waiting for a fwd desc */
286
287 typedef struct ksock_conn
288
289         struct ksock_peer  *ksnc_peer;          /* owning peer */
290         struct ksock_route *ksnc_route;         /* owning route */
291         struct list_head    ksnc_list;          /* stash on peer's conn list */
292         struct socket      *ksnc_sock;          /* actual socket */
293         void               *ksnc_saved_data_ready; /* socket's original data_ready() callback */
294         void               *ksnc_saved_write_space; /* socket's original write_space() callback */
295         atomic_t            ksnc_refcount;      /* # users */
296         ksock_sched_t      *ksnc_scheduler;     /* who schedules this connection */
297         __u32               ksnc_ipaddr;        /* peer's IP */
298         int                 ksnc_port;          /* peer's port */
299         int                 ksnc_closing;       /* being shut down */
300         int                 ksnc_type;          /* type of connection */
301         __u64               ksnc_incarnation;   /* peer's incarnation */
302         
303         /* reader */
304         struct list_head    ksnc_rx_list;       /* where I enq waiting input or a forwarding descriptor */
305         unsigned long       ksnc_rx_deadline;   /* when (in jiffies) receive times out */
306         int                 ksnc_rx_started;    /* started receiving a message */
307         int                 ksnc_rx_ready;      /* data ready to read */
308         int                 ksnc_rx_scheduled;  /* being progressed */
309         int                 ksnc_rx_state;      /* what is being read */
310         int                 ksnc_rx_nob_left;   /* # bytes to next hdr/body  */
311         int                 ksnc_rx_nob_wanted; /* bytes actually wanted */
312         int                 ksnc_rx_niov;       /* # iovec frags */
313         struct iovec       *ksnc_rx_iov;        /* the iovec frags */
314         int                 ksnc_rx_nkiov;      /* # page frags */
315         ptl_kiov_t         *ksnc_rx_kiov;       /* the page frags */
316         ksock_rxiovspace_t  ksnc_rx_iov_space;  /* space for frag descriptors */
317         void               *ksnc_cookie;        /* rx lib_finalize passthru arg */
318         ptl_hdr_t           ksnc_hdr;           /* where I read headers into */
319
320         /* WRITER */
321         struct list_head    ksnc_tx_list;       /* where I enq waiting for output space */
322         struct list_head    ksnc_tx_queue;      /* packets waiting to be sent */
323         unsigned long       ksnc_tx_deadline;   /* when (in jiffies) tx times out */
324         atomic_t            ksnc_tx_nob;        /* # bytes queued */
325         int                 ksnc_tx_ready;      /* write space */
326         int                 ksnc_tx_scheduled;  /* being progressed */
327 } ksock_conn_t;
328
329 #define KSNR_TYPED_ROUTES   ((1 << SOCKNAL_CONN_CONTROL) |      \
330                              (1 << SOCKNAL_CONN_BULK_IN) |      \
331                              (1 << SOCKNAL_CONN_BULK_OUT))
332
333 typedef struct ksock_route
334 {
335         struct list_head    ksnr_list;          /* chain on peer route list */
336         struct list_head    ksnr_connect_list;  /* chain on autoconnect list */
337         struct ksock_peer  *ksnr_peer;          /* owning peer */
338         atomic_t            ksnr_refcount;      /* # users */
339         int                 ksnr_sharecount;    /* lconf usage counter */
340         unsigned long       ksnr_timeout;       /* when (in jiffies) reconnection can happen next */
341         unsigned int        ksnr_retry_interval; /* how long between retries */
342         __u32               ksnr_ipaddr;        /* an IP address for this peer */
343         int                 ksnr_port;          /* port to connect to */
344         int                 ksnr_buffer_size;   /* size of socket buffers */
345         unsigned int        ksnr_irq_affinity:1; /* set affinity? */
346         unsigned int        ksnr_eager:1;       /* connect eagery? */
347         unsigned int        ksnr_connecting:4;  /* autoconnects in progress by type */
348         unsigned int        ksnr_connected:4;   /* connections established by type */
349         unsigned int        ksnr_deleted:1;     /* been removed from peer? */
350         int                 ksnr_conn_count;    /* # conns established by this route */
351 } ksock_route_t;
352
353 typedef struct ksock_peer
354 {
355         struct list_head    ksnp_list;          /* stash on global peer list */
356         ptl_nid_t           ksnp_nid;           /* who's on the other end(s) */
357         atomic_t            ksnp_refcount;      /* # users */
358         int                 ksnp_closing;       /* being closed */
359         int                 ksnp_error;         /* errno on closing last conn */
360         struct list_head    ksnp_conns;         /* all active connections */
361         struct list_head    ksnp_routes;        /* routes */
362         struct list_head    ksnp_tx_queue;      /* waiting packets */
363         unsigned long       ksnp_last_alive;    /* when (in jiffies) I was last alive */
364 } ksock_peer_t;
365
366
367 extern nal_cb_t         ksocknal_lib;
368 extern ksock_nal_data_t ksocknal_data;
369 extern ksock_tunables_t ksocknal_tunables;
370
371 static inline struct list_head *
372 ksocknal_nid2peerlist (ptl_nid_t nid) 
373 {
374         unsigned int hash = ((unsigned int)nid) % ksocknal_data.ksnd_peer_hash_size;
375         
376         return (&ksocknal_data.ksnd_peers [hash]);
377 }
378
379 static inline int
380 ksocknal_getconnsock (ksock_conn_t *conn) 
381 {
382         int   rc = -ESHUTDOWN;
383         
384         read_lock (&ksocknal_data.ksnd_global_lock);
385         if (!conn->ksnc_closing) {
386                 rc = 0;
387                 get_file (conn->ksnc_sock->file);
388         }
389         read_unlock (&ksocknal_data.ksnd_global_lock);
390
391         return (rc);
392 }
393
394 static inline void
395 ksocknal_putconnsock (ksock_conn_t *conn)
396 {
397         fput (conn->ksnc_sock->file);
398 }
399
400 extern void ksocknal_put_route (ksock_route_t *route);
401 extern void ksocknal_put_peer (ksock_peer_t *peer);
402 extern ksock_peer_t *ksocknal_find_peer_locked (ptl_nid_t nid);
403 extern ksock_peer_t *ksocknal_get_peer (ptl_nid_t nid);
404 extern int ksocknal_del_route (ptl_nid_t nid, __u32 ipaddr,
405                                int single, int keep_conn);
406 extern int ksocknal_create_conn (ksock_route_t *route,
407                                  struct socket *sock, int bind_irq, int type);
408 extern void ksocknal_close_conn_locked (ksock_conn_t *conn, int why);
409 extern void ksocknal_terminate_conn (ksock_conn_t *conn);
410 extern void ksocknal_destroy_conn (ksock_conn_t *conn);
411 extern void ksocknal_put_conn (ksock_conn_t *conn);
412 extern int ksocknal_close_stale_conns_locked (ksock_peer_t *peer, __u64 incarnation);
413 extern int ksocknal_close_conn_and_siblings (ksock_conn_t *conn, int why);
414 extern int ksocknal_close_matching_conns (ptl_nid_t nid, __u32 ipaddr);
415
416 extern void ksocknal_queue_tx_locked (ksock_tx_t *tx, ksock_conn_t *conn);
417 extern void ksocknal_tx_done (ksock_tx_t *tx, int asynch);
418 extern void ksocknal_fwd_packet (void *arg, kpr_fwd_desc_t *fwd);
419 extern void ksocknal_fmb_callback (void *arg, int error);
420 extern void ksocknal_notify (void *arg, ptl_nid_t gw_nid, int alive);
421 extern int ksocknal_thread_start (int (*fn)(void *arg), void *arg);
422 extern int ksocknal_new_packet (ksock_conn_t *conn, int skip);
423 extern int ksocknal_scheduler (void *arg);
424 extern void ksocknal_data_ready(struct sock *sk, int n);
425 extern void ksocknal_write_space(struct sock *sk);
426 extern int ksocknal_autoconnectd (void *arg);
427 extern int ksocknal_reaper (void *arg);
428 extern int ksocknal_setup_sock (struct socket *sock);
429 extern int ksocknal_hello (struct socket *sock, 
430                            ptl_nid_t *nid, int *type, __u64 *incarnation);