Whamcloud - gitweb
LU-1337 build: remove unnecessary includings of system.h
[fs/lustre-release.git] / lnet / klnds / ralnd / ralnd.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) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lnet/klnds/ralnd/ralnd.h
35  *
36  * Author: Eric Barton <eric@bartonsoftware.com>
37  */
38
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/mm.h>
42 #include <linux/string.h>
43 #include <linux/stat.h>
44 #include <linux/errno.h>
45 #include <linux/unistd.h>
46 #include <linux/uio.h>
47
48 #include <asm/uaccess.h>
49 #include <asm/io.h>
50
51 #include <linux/init.h>
52 #include <linux/fs.h>
53 #include <linux/file.h>
54 #include <linux/stat.h>
55 #include <linux/list.h>
56 #include <linux/kmod.h>
57 #include <linux/sysctl.h>
58
59 #include <net/sock.h>
60 #include <linux/in.h>
61
62 #define DEBUG_SUBSYSTEM S_LND
63
64 #include <libcfs/libcfs.h>
65 #include <lnet/lnet.h>
66 #include <lnet/lib-lnet.h>
67 #include <lnet/lnet-sysctl.h>
68
69 #include <rapl.h>
70
71 /* tunables determined at compile time */
72 #define RANAL_RESCHED             100           /* # scheduler loops before reschedule */
73
74 #define RANAL_PEER_HASH_SIZE      101           /* # peer lists */
75 #define RANAL_CONN_HASH_SIZE      101           /* # conn lists */
76
77 #define RANAL_MIN_TIMEOUT         5             /* minimum timeout interval (seconds) */
78 #define RANAL_TIMEOUT2KEEPALIVE(t) (((t)+1)/2)  /* timeout -> keepalive interval */
79
80 /* fixed constants */
81 #define RANAL_MAXDEVS             2             /* max # devices RapidArray supports */
82 #define RANAL_FMA_MAX_PREFIX      232           /* max bytes in FMA "Prefix" we can use */
83 #define RANAL_FMA_MAX_DATA        ((7<<10)-256) /* Max FMA MSG is 7K including prefix */
84
85
86 typedef struct
87 {
88         int              *kra_n_connd;          /* # connection daemons */
89         int              *kra_min_reconnect_interval; /* first failed connection retry... */
90         int              *kra_max_reconnect_interval; /* ...exponentially increasing to this */
91         int              *kra_ntx;              /* # tx descs */
92         int              *kra_credits;          /* # concurrent sends */
93         int              *kra_peercredits;      /* # concurrent sends to 1 peer */
94         int              *kra_fma_cq_size;      /* # entries in receive CQ */
95         int              *kra_timeout;          /* comms timeout (seconds) */
96         int              *kra_max_immediate;    /* immediate payload breakpoint */
97
98 #if CONFIG_SYSCTL && !CFS_SYSFS_MODULE_PARM
99         cfs_sysctl_table_header_t *kra_sysctl;  /* sysctl interface */
100 #endif
101 } kra_tunables_t;
102
103 typedef struct
104 {
105         RAP_PVOID              rad_handle;    /* device handle */
106         RAP_PVOID              rad_fma_cqh;   /* FMA completion queue handle */
107         RAP_PVOID              rad_rdma_cqh;  /* rdma completion queue handle */
108         int                    rad_id;        /* device id */
109         int                    rad_idx;       /* index in kra_devices */
110         int                    rad_ready;     /* set by device callback */
111         cfs_list_t             rad_ready_conns;/* connections ready to tx/rx */
112         cfs_list_t             rad_new_conns; /* new connections to complete */
113         cfs_waitq_t            rad_waitq;     /* scheduler waits here */
114         cfs_spinlock_t         rad_lock;      /* serialise */
115         void                  *rad_scheduler; /* scheduling thread */
116         unsigned int           rad_nphysmap;  /* # phys mappings */
117         unsigned int           rad_nppphysmap;/* # phys pages mapped */
118         unsigned int           rad_nvirtmap;  /* # virt mappings */
119         unsigned long          rad_nobvirtmap;/* # virt bytes mapped */
120 } kra_device_t;
121
122 typedef struct
123 {
124         int               kra_init;            /* initialisation state */
125         int               kra_shutdown;        /* shut down? */
126         cfs_atomic_t      kra_nthreads;        /* # live threads */
127         lnet_ni_t        *kra_ni;              /* _the_ nal instance */
128
129         kra_device_t      kra_devices[RANAL_MAXDEVS]; /* device/ptag/cq */
130         int               kra_ndevs;           /* # devices */
131
132         cfs_rwlock_t      kra_global_lock;     /* stabilize peer/conn ops */
133
134         cfs_list_t       *kra_peers;           /* hash table of all my known peers */
135         int               kra_peer_hash_size;  /* size of kra_peers */
136         cfs_atomic_t      kra_npeers;          /* # peers extant */
137         int               kra_nonewpeers;      /* prevent new peers */
138
139         cfs_list_t       *kra_conns;           /* conns hashed by cqid */
140         int               kra_conn_hash_size;  /* size of kra_conns */
141         __u64             kra_peerstamp;       /* when I started up */
142         __u64             kra_connstamp;       /* conn stamp generator */
143         int               kra_next_cqid;       /* cqid generator */
144         cfs_atomic_t      kra_nconns;          /* # connections extant */
145
146         long              kra_new_min_timeout; /* minimum timeout on any new conn */
147         cfs_waitq_t       kra_reaper_waitq;    /* reaper sleeps here */
148         cfs_spinlock_t    kra_reaper_lock;     /* serialise */
149
150         cfs_list_t        kra_connd_peers;     /* peers waiting for a connection */
151         cfs_list_t        kra_connd_acceptq;   /* accepted sockets to handshake */
152         cfs_waitq_t       kra_connd_waitq;     /* connection daemons sleep here */
153         cfs_spinlock_t    kra_connd_lock;      /* serialise */
154
155         cfs_list_t        kra_idle_txs;        /* idle tx descriptors */
156         __u64             kra_next_tx_cookie;  /* RDMA completion cookie */
157         cfs_spinlock_t    kra_tx_lock;         /* serialise */
158 } kra_data_t;
159
160 #define RANAL_INIT_NOTHING         0
161 #define RANAL_INIT_DATA            1
162 #define RANAL_INIT_ALL             2
163
164 typedef struct kra_acceptsock             /* accepted socket queued for connd */
165 {
166         cfs_list_t           ras_list;          /* queue for attention */
167         struct socket       *ras_sock;          /* the accepted socket */
168 } kra_acceptsock_t;
169
170 /************************************************************************
171  * Wire message structs.  These are sent in sender's byte order
172  * (i.e. receiver checks magic and flips if required).
173  */
174
175 typedef struct kra_connreq                      /* connection request/response */
176 {                                               /* (sent via socket) */
177         __u32             racr_magic;           /* I'm an ranal connreq */
178         __u16             racr_version;         /* this is my version number */
179         __u16             racr_devid;           /* sender's device ID */
180         __u64             racr_srcnid;          /* sender's NID */
181         __u64             racr_dstnid;          /* who sender expects to listen */
182         __u64             racr_peerstamp;       /* sender's instance stamp */
183         __u64             racr_connstamp;       /* sender's connection stamp */
184         __u32             racr_timeout;         /* sender's timeout */
185         RAP_RI_PARAMETERS racr_riparams;        /* sender's endpoint info */
186 } kra_connreq_t;
187
188 typedef struct
189 {
190         RAP_MEM_KEY       rard_key;
191         RAP_PVOID64       rard_addr;
192         RAP_UINT32        rard_nob;
193 } kra_rdma_desc_t;
194
195 typedef struct
196 {
197         lnet_hdr_t        raim_hdr;             /* portals header */
198         /* Portals payload is in FMA "Message Data" */
199 } kra_immediate_msg_t;
200
201 typedef struct
202 {
203         lnet_hdr_t        raprm_hdr;            /* portals header */
204         __u64             raprm_cookie;         /* opaque completion cookie */
205 } kra_putreq_msg_t;
206
207 typedef struct
208 {
209         __u64             rapam_src_cookie;     /* reflected completion cookie */
210         __u64             rapam_dst_cookie;     /* opaque completion cookie */
211         kra_rdma_desc_t   rapam_desc;           /* sender's sink buffer */
212 } kra_putack_msg_t;
213
214 typedef struct
215 {
216         lnet_hdr_t        ragm_hdr;             /* portals header */
217         __u64             ragm_cookie;          /* opaque completion cookie */
218         kra_rdma_desc_t   ragm_desc;            /* sender's sink buffer */
219 } kra_get_msg_t;
220
221 typedef struct
222 {
223         __u64             racm_cookie;          /* reflected completion cookie */
224 } kra_completion_msg_t;
225
226 typedef struct                                  /* NB must fit in FMA "Prefix" */
227 {
228         __u32             ram_magic;            /* I'm an ranal message */
229         __u16             ram_version;          /* this is my version number */
230         __u16             ram_type;             /* msg type */
231         __u64             ram_srcnid;           /* sender's NID */
232         __u64             ram_connstamp;        /* sender's connection stamp */
233         union {
234                 kra_immediate_msg_t   immediate;
235                 kra_putreq_msg_t      putreq;
236                 kra_putack_msg_t      putack;
237                 kra_get_msg_t         get;
238                 kra_completion_msg_t  completion;
239         }                    ram_u;
240         __u32             ram_seq;              /* incrementing sequence number */
241 } kra_msg_t;
242
243 #define RANAL_MSG_MAGIC     LNET_PROTO_RA_MAGIC /* unique magic */
244 #define RANAL_MSG_VERSION              1        /* current protocol version */
245
246 #define RANAL_MSG_FENCE             0x80        /* fence RDMA */
247
248 #define RANAL_MSG_NONE              0x00        /* illegal message */
249 #define RANAL_MSG_NOOP              0x01        /* empty ram_u (keepalive) */
250 #define RANAL_MSG_IMMEDIATE         0x02        /* ram_u.immediate */
251 #define RANAL_MSG_PUT_REQ           0x03        /* ram_u.putreq (src->sink) */
252 #define RANAL_MSG_PUT_NAK           0x04        /* ram_u.completion (no PUT match: sink->src) */
253 #define RANAL_MSG_PUT_ACK           0x05        /* ram_u.putack (PUT matched: sink->src) */
254 #define RANAL_MSG_PUT_DONE          0x86        /* ram_u.completion (src->sink) */
255 #define RANAL_MSG_GET_REQ           0x07        /* ram_u.get (sink->src) */
256 #define RANAL_MSG_GET_NAK           0x08        /* ram_u.completion (no GET match: src->sink) */
257 #define RANAL_MSG_GET_DONE          0x89        /* ram_u.completion (src->sink) */
258 #define RANAL_MSG_CLOSE             0x8a        /* empty ram_u */
259
260 /***********************************************************************/
261
262 typedef struct kra_tx                           /* message descriptor */
263 {
264         cfs_list_t            tx_list;      /* queue on idle_txs/rac_sendq/rac_waitq */
265         struct kra_conn      *tx_conn;      /* owning conn */
266         lnet_msg_t           *tx_lntmsg[2]; /* ptl msgs to finalize on completion */
267         unsigned long         tx_qtime;     /* when tx started to wait for something (jiffies) */
268         int                   tx_nob;       /* # bytes of payload */
269         int                   tx_buftype;   /* payload buffer type */
270         void                 *tx_buffer;    /* source/sink buffer */
271         int                   tx_phys_offset; /* first page offset (if phys) */
272         int                   tx_phys_npages; /* # physical pages */
273         RAP_PHYS_REGION      *tx_phys;      /* page descriptors */
274         RAP_MEM_KEY           tx_map_key;   /* mapping key */
275         RAP_RDMA_DESCRIPTOR   tx_rdma_desc; /* rdma descriptor */
276         __u64                 tx_cookie;    /* identify this tx to peer */
277         kra_msg_t             tx_msg;       /* FMA message buffer */
278 } kra_tx_t;
279
280 #define RANAL_BUF_NONE           0              /* buffer type not set */
281 #define RANAL_BUF_IMMEDIATE      1              /* immediate data */
282 #define RANAL_BUF_PHYS_UNMAPPED  2              /* physical: not mapped yet */
283 #define RANAL_BUF_PHYS_MAPPED    3              /* physical: mapped already */
284 #define RANAL_BUF_VIRT_UNMAPPED  4              /* virtual: not mapped yet */
285 #define RANAL_BUF_VIRT_MAPPED    5              /* virtual: mapped already */
286
287 typedef struct kra_conn
288 {
289         struct kra_peer    *rac_peer;           /* owning peer */
290         cfs_list_t          rac_list;          /* stash on peer's conn list */
291         cfs_list_t          rac_hashlist;      /* stash in connection hash table */
292         cfs_list_t          rac_schedlist;     /* schedule (on rad_???_conns) for attention */
293         cfs_list_t          rac_fmaq;          /* txs queued for FMA */
294         cfs_list_t          rac_rdmaq;         /* txs awaiting RDMA completion */
295         cfs_list_t          rac_replyq;        /* txs awaiting replies */
296         __u64               rac_peerstamp;     /* peer's unique stamp */
297         __u64               rac_peer_connstamp;/* peer's unique connection stamp */
298         __u64               rac_my_connstamp;  /* my unique connection stamp */
299         unsigned long       rac_last_tx;       /* when I last sent an FMA message (jiffies) */
300         unsigned long       rac_last_rx;       /* when I last received an FMA messages (jiffies) */
301         long                rac_keepalive;     /* keepalive interval (seconds) */
302         long                rac_timeout;       /* infer peer death if no rx for this many seconds */
303         __u32               rac_cqid;          /* my completion callback id (non-unique) */
304         __u32               rac_tx_seq;        /* tx msg sequence number */
305         __u32               rac_rx_seq;        /* rx msg sequence number */
306         cfs_atomic_t        rac_refcount;      /* # users */
307         unsigned int        rac_close_sent;    /* I've sent CLOSE */
308         unsigned int        rac_close_recvd;   /* I've received CLOSE */
309         unsigned int        rac_state;         /* connection state */
310         unsigned int        rac_scheduled;     /* being attented to */
311         cfs_spinlock_t      rac_lock;          /* serialise */
312         kra_device_t       *rac_device;        /* which device */
313         RAP_PVOID           rac_rihandle;      /* RA endpoint */
314         kra_msg_t          *rac_rxmsg;         /* incoming message (FMA prefix) */
315         kra_msg_t           rac_msg;           /* keepalive/CLOSE message buffer */
316 } kra_conn_t;
317
318 #define RANAL_CONN_ESTABLISHED     0
319 #define RANAL_CONN_CLOSING         1
320 #define RANAL_CONN_CLOSED          2
321
322 typedef struct kra_peer
323 {
324         cfs_list_t          rap_list;         /* stash on global peer list */
325         cfs_list_t          rap_connd_list;   /* schedule on kra_connd_peers */
326         cfs_list_t          rap_conns;        /* all active connections */
327         cfs_list_t          rap_tx_queue;     /* msgs waiting for a conn */
328         lnet_nid_t          rap_nid;          /* who's on the other end(s) */
329         __u32               rap_ip;           /* IP address of peer */
330         int                 rap_port;         /* port on which peer listens */
331         cfs_atomic_t        rap_refcount;     /* # users */
332         int                 rap_persistence;  /* "known" peer refs */
333         int                 rap_connecting;   /* connection forming */
334         unsigned long       rap_reconnect_time; /* CURRENT_SECONDS when reconnect OK */
335         unsigned long       rap_reconnect_interval; /* exponential backoff */
336 } kra_peer_t;
337
338 extern kra_data_t      kranal_data;
339 extern kra_tunables_t  kranal_tunables;
340
341 extern void kranal_destroy_peer(kra_peer_t *peer);
342 extern void kranal_destroy_conn(kra_conn_t *conn);
343
344 static inline void
345 kranal_peer_addref(kra_peer_t *peer)
346 {
347         CDEBUG(D_NET, "%p->%s\n", peer, libcfs_nid2str(peer->rap_nid));
348         LASSERT(cfs_atomic_read(&peer->rap_refcount) > 0);
349         cfs_atomic_inc(&peer->rap_refcount);
350 }
351
352 static inline void
353 kranal_peer_decref(kra_peer_t *peer)
354 {
355         CDEBUG(D_NET, "%p->%s\n", peer, libcfs_nid2str(peer->rap_nid));
356         LASSERT(cfs_atomic_read(&peer->rap_refcount) > 0);
357         if (cfs_atomic_dec_and_test(&peer->rap_refcount))
358                 kranal_destroy_peer(peer);
359 }
360
361 static inline cfs_list_t *
362 kranal_nid2peerlist (lnet_nid_t nid)
363 {
364         unsigned int hash = ((unsigned int)nid) % kranal_data.kra_peer_hash_size;
365
366         return (&kranal_data.kra_peers[hash]);
367 }
368
369 static inline int
370 kranal_peer_active(kra_peer_t *peer)
371 {
372         /* Am I in the peer hash table? */
373         return (!cfs_list_empty(&peer->rap_list));
374 }
375
376 static inline void
377 kranal_conn_addref(kra_conn_t *conn)
378 {
379         CDEBUG(D_NET, "%p->%s\n", conn, 
380                libcfs_nid2str(conn->rac_peer->rap_nid));
381         LASSERT(cfs_atomic_read(&conn->rac_refcount) > 0);
382         cfs_atomic_inc(&conn->rac_refcount);
383 }
384
385 static inline void
386 kranal_conn_decref(kra_conn_t *conn)
387 {
388         CDEBUG(D_NET, "%p->%s\n", conn,
389                libcfs_nid2str(conn->rac_peer->rap_nid));
390         LASSERT(cfs_atomic_read(&conn->rac_refcount) > 0);
391         if (cfs_atomic_dec_and_test(&conn->rac_refcount))
392                 kranal_destroy_conn(conn);
393 }
394
395 static inline cfs_list_t *
396 kranal_cqid2connlist (__u32 cqid)
397 {
398         unsigned int hash = cqid % kranal_data.kra_conn_hash_size;
399
400         return (&kranal_data.kra_conns [hash]);
401 }
402
403 static inline kra_conn_t *
404 kranal_cqid2conn_locked (__u32 cqid)
405 {
406         cfs_list_t       *conns = kranal_cqid2connlist(cqid);
407         cfs_list_t       *tmp;
408         kra_conn_t       *conn;
409
410         cfs_list_for_each(tmp, conns) {
411                 conn = cfs_list_entry(tmp, kra_conn_t, rac_hashlist);
412
413                 if (conn->rac_cqid == cqid)
414                         return conn;
415         }
416
417         return NULL;
418 }
419
420 static inline int
421 kranal_tx_mapped (kra_tx_t *tx)
422 {
423         return (tx->tx_buftype == RANAL_BUF_VIRT_MAPPED ||
424                 tx->tx_buftype == RANAL_BUF_PHYS_MAPPED);
425 }
426
427 int kranal_startup (lnet_ni_t *ni);
428 void kranal_shutdown (lnet_ni_t *ni);
429 int kranal_ctl(lnet_ni_t *ni, unsigned int cmd, void *arg);
430 int kranal_send (lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg);
431 int kranal_eager_recv(lnet_ni_t *ni, void *private,
432                       lnet_msg_t *lntmsg, void **new_private);
433 int kranal_recv(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg,
434                 int delayed, unsigned int niov,
435                 struct iovec *iov, lnet_kiov_t *kiov,
436                 unsigned int offset, unsigned int mlen, unsigned int rlen);
437 int kranal_accept(lnet_ni_t *ni, struct socket *sock);
438
439 extern void kranal_free_acceptsock (kra_acceptsock_t *ras);
440 extern int kranal_listener_procint (cfs_sysctl_table_t *table,
441                                     int write, struct file *filp,
442                                     void *buffer, size_t *lenp);
443 extern void kranal_update_reaper_timeout (long timeout);
444 extern void kranal_tx_done (kra_tx_t *tx, int completion);
445 extern void kranal_unlink_peer_locked (kra_peer_t *peer);
446 extern void kranal_schedule_conn (kra_conn_t *conn);
447 extern int kranal_create_peer (kra_peer_t **peerp, lnet_nid_t nid);
448 extern int kranal_add_persistent_peer (lnet_nid_t nid, __u32 ip, int port);
449 extern kra_peer_t *kranal_find_peer_locked (lnet_nid_t nid);
450 extern void kranal_post_fma (kra_conn_t *conn, kra_tx_t *tx);
451 extern int kranal_del_peer (lnet_nid_t nid);
452 extern void kranal_device_callback (RAP_INT32 devid, RAP_PVOID arg);
453 extern int kranal_thread_start (int(*fn)(void *arg), void *arg);
454 extern int kranal_connd (void *arg);
455 extern int kranal_reaper (void *arg);
456 extern int kranal_scheduler (void *arg);
457 extern void kranal_close_conn_locked (kra_conn_t *conn, int error);
458 extern void kranal_close_conn (kra_conn_t *conn, int error);
459 extern void kranal_terminate_conn_locked (kra_conn_t *conn);
460 extern void kranal_connect (kra_peer_t *peer);
461 extern int kranal_conn_handshake (struct socket *sock, kra_peer_t *peer);
462 extern int kranal_tunables_init(void);
463 extern void kranal_tunables_fini(void);
464 extern void kranal_init_msg(kra_msg_t *msg, int type);