blob: 49c1a95e352eaa9e3a69cbe3f1f355d81ba03c20 [file] [log] [blame]
Zach Brown98211482005-12-15 14:31:23 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 *
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * Copyright (C) 2004 Oracle. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public
18 * License along with this program; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 021110-1307, USA.
21 *
22 * ----
23 *
24 * Callers for this were originally written against a very simple synchronus
25 * API. This implementation reflects those simple callers. Some day I'm sure
26 * we'll need to move to a more robust posting/callback mechanism.
27 *
28 * Transmit calls pass in kernel virtual addresses and block copying this into
29 * the socket's tx buffers via a usual blocking sendmsg. They'll block waiting
30 * for a failed socket to timeout. TX callers can also pass in a poniter to an
31 * 'int' which gets filled with an errno off the wire in response to the
32 * message they send.
33 *
34 * Handlers for unsolicited messages are registered. Each socket has a page
35 * that incoming data is copied into. First the header, then the data.
36 * Handlers are called from only one thread with a reference to this per-socket
37 * page. This page is destroyed after the handler call, so it can't be
38 * referenced beyond the call. Handlers may block but are discouraged from
39 * doing so.
40 *
41 * Any framing errors (bad magic, large payload lengths) close a connection.
42 *
43 * Our sock_container holds the state we associate with a socket. It's current
44 * framing state is held there as well as the refcounting we do around when it
45 * is safe to tear down the socket. The socket is only finally torn down from
46 * the container when the container loses all of its references -- so as long
47 * as you hold a ref on the container you can trust that the socket is valid
48 * for use with kernel socket APIs.
49 *
50 * Connections are initiated between a pair of nodes when the node with the
51 * higher node number gets a heartbeat callback which indicates that the lower
52 * numbered node has started heartbeating. The lower numbered node is passive
53 * and only accepts the connection if the higher numbered node is heartbeating.
54 */
55
56#include <linux/kernel.h>
57#include <linux/jiffies.h>
58#include <linux/slab.h>
59#include <linux/idr.h>
60#include <linux/kref.h>
Trond Myklebust91cf45f2007-11-12 18:10:39 -080061#include <linux/net.h>
Zach Brown98211482005-12-15 14:31:23 -080062#include <net/tcp.h>
63
64#include <asm/uaccess.h>
65
66#include "heartbeat.h"
67#include "tcp.h"
68#include "nodemanager.h"
69#define MLOG_MASK_PREFIX ML_TCP
70#include "masklog.h"
71#include "quorum.h"
72
73#include "tcp_internal.h"
74
Joe Perches03affde2010-03-10 15:20:32 -080075#define SC_NODEF_FMT "node %s (num %u) at %pI4:%u"
Zach Brown98211482005-12-15 14:31:23 -080076#define SC_NODEF_ARGS(sc) sc->sc_node->nd_name, sc->sc_node->nd_num, \
Joe Perches03affde2010-03-10 15:20:32 -080077 &sc->sc_node->nd_ipv4_address, \
Zach Brown98211482005-12-15 14:31:23 -080078 ntohs(sc->sc_node->nd_ipv4_port)
79
80/*
81 * In the following two log macros, the whitespace after the ',' just
82 * before ##args is intentional. Otherwise, gcc 2.95 will eat the
83 * previous token if args expands to nothing.
84 */
85#define msglog(hdr, fmt, args...) do { \
86 typeof(hdr) __hdr = (hdr); \
87 mlog(ML_MSG, "[mag %u len %u typ %u stat %d sys_stat %d " \
88 "key %08x num %u] " fmt, \
89 be16_to_cpu(__hdr->magic), be16_to_cpu(__hdr->data_len), \
90 be16_to_cpu(__hdr->msg_type), be32_to_cpu(__hdr->status), \
91 be32_to_cpu(__hdr->sys_status), be32_to_cpu(__hdr->key), \
92 be32_to_cpu(__hdr->msg_num) , ##args); \
93} while (0)
94
95#define sclog(sc, fmt, args...) do { \
96 typeof(sc) __sc = (sc); \
97 mlog(ML_SOCKET, "[sc %p refs %d sock %p node %u page %p " \
98 "pg_off %zu] " fmt, __sc, \
99 atomic_read(&__sc->sc_kref.refcount), __sc->sc_sock, \
100 __sc->sc_node->nd_num, __sc->sc_page, __sc->sc_page_off , \
101 ##args); \
102} while (0)
103
Ingo Molnar34af9462006-06-27 02:53:55 -0700104static DEFINE_RWLOCK(o2net_handler_lock);
Zach Brown98211482005-12-15 14:31:23 -0800105static struct rb_root o2net_handler_tree = RB_ROOT;
106
107static struct o2net_node o2net_nodes[O2NM_MAX_NODES];
108
109/* XXX someday we'll need better accounting */
110static struct socket *o2net_listen_sock = NULL;
111
112/*
113 * listen work is only queued by the listening socket callbacks on the
114 * o2net_wq. teardown detaches the callbacks before destroying the workqueue.
115 * quorum work is queued as sock containers are shutdown.. stop_listening
116 * tears down all the node's sock containers, preventing future shutdowns
117 * and queued quroum work, before canceling delayed quorum work and
118 * destroying the work queue.
119 */
120static struct workqueue_struct *o2net_wq;
121static struct work_struct o2net_listen_work;
122
123static struct o2hb_callback_func o2net_hb_up, o2net_hb_down;
124#define O2NET_HB_PRI 0x1
125
126static struct o2net_handshake *o2net_hand;
127static struct o2net_msg *o2net_keep_req, *o2net_keep_resp;
128
129static int o2net_sys_err_translations[O2NET_ERR_MAX] =
130 {[O2NET_ERR_NONE] = 0,
131 [O2NET_ERR_NO_HNDLR] = -ENOPROTOOPT,
132 [O2NET_ERR_OVERFLOW] = -EOVERFLOW,
133 [O2NET_ERR_DIED] = -EHOSTDOWN,};
134
135/* can't quite avoid *all* internal declarations :/ */
David Howellsc4028952006-11-22 14:57:56 +0000136static void o2net_sc_connect_completed(struct work_struct *work);
137static void o2net_rx_until_empty(struct work_struct *work);
138static void o2net_shutdown_sc(struct work_struct *work);
Zach Brown98211482005-12-15 14:31:23 -0800139static void o2net_listen_data_ready(struct sock *sk, int bytes);
David Howellsc4028952006-11-22 14:57:56 +0000140static void o2net_sc_send_keep_req(struct work_struct *work);
Zach Brown98211482005-12-15 14:31:23 -0800141static void o2net_idle_timer(unsigned long data);
142static void o2net_sc_postpone_idle(struct o2net_sock_container *sc);
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +0100143static void o2net_sc_reset_idle_timer(struct o2net_sock_container *sc);
144
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700145#ifdef CONFIG_DEBUG_FS
Adrian Bunk18496e82008-08-07 00:11:12 +0300146static void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype,
147 u32 msgkey, struct task_struct *task, u8 node)
Sunil Mushran0f475b22008-05-12 18:31:37 -0700148{
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700149 INIT_LIST_HEAD(&nst->st_net_debug_item);
150 nst->st_task = task;
151 nst->st_msg_type = msgtype;
152 nst->st_msg_key = msgkey;
153 nst->st_node = node;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700154}
155
Adrian Bunk18496e82008-08-07 00:11:12 +0300156static void o2net_set_nst_sock_time(struct o2net_send_tracking *nst)
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700157{
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800158 nst->st_sock_time = ktime_get();
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700159}
160
Adrian Bunk18496e82008-08-07 00:11:12 +0300161static void o2net_set_nst_send_time(struct o2net_send_tracking *nst)
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700162{
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800163 nst->st_send_time = ktime_get();
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700164}
165
Adrian Bunk18496e82008-08-07 00:11:12 +0300166static void o2net_set_nst_status_time(struct o2net_send_tracking *nst)
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700167{
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800168 nst->st_status_time = ktime_get();
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700169}
170
Adrian Bunk18496e82008-08-07 00:11:12 +0300171static void o2net_set_nst_sock_container(struct o2net_send_tracking *nst,
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700172 struct o2net_sock_container *sc)
173{
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700174 nst->st_sc = sc;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700175}
176
Adrian Bunk18496e82008-08-07 00:11:12 +0300177static void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, u32 msg_id)
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700178{
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700179 nst->st_id = msg_id;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700180}
Adrian Bunk18496e82008-08-07 00:11:12 +0300181
182#else /* CONFIG_DEBUG_FS */
183
184static inline void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype,
185 u32 msgkey, struct task_struct *task, u8 node)
186{
187}
188
189static inline void o2net_set_nst_sock_time(struct o2net_send_tracking *nst)
190{
191}
192
193static inline void o2net_set_nst_send_time(struct o2net_send_tracking *nst)
194{
195}
196
197static inline void o2net_set_nst_status_time(struct o2net_send_tracking *nst)
198{
199}
200
201static inline void o2net_set_nst_sock_container(struct o2net_send_tracking *nst,
202 struct o2net_sock_container *sc)
203{
204}
205
206static inline void o2net_set_nst_msg_id(struct o2net_send_tracking *nst,
207 u32 msg_id)
208{
209}
210
Sunil Mushran0f475b22008-05-12 18:31:37 -0700211#endif /* CONFIG_DEBUG_FS */
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700212
Jeff Mahoney409753b2008-03-28 16:44:13 -0700213static inline int o2net_reconnect_delay(void)
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +0100214{
215 return o2nm_single_cluster->cl_reconnect_delay_ms;
216}
217
Jeff Mahoney409753b2008-03-28 16:44:13 -0700218static inline int o2net_keepalive_delay(void)
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +0100219{
220 return o2nm_single_cluster->cl_keepalive_delay_ms;
221}
222
Jeff Mahoney409753b2008-03-28 16:44:13 -0700223static inline int o2net_idle_timeout(void)
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +0100224{
225 return o2nm_single_cluster->cl_idle_timeout_ms;
226}
Zach Brown98211482005-12-15 14:31:23 -0800227
228static inline int o2net_sys_err_to_errno(enum o2net_system_error err)
229{
230 int trans;
231 BUG_ON(err >= O2NET_ERR_MAX);
232 trans = o2net_sys_err_translations[err];
233
234 /* Just in case we mess up the translation table above */
235 BUG_ON(err != O2NET_ERR_NONE && trans == 0);
236 return trans;
237}
238
239static struct o2net_node * o2net_nn_from_num(u8 node_num)
240{
241 BUG_ON(node_num >= ARRAY_SIZE(o2net_nodes));
242 return &o2net_nodes[node_num];
243}
244
245static u8 o2net_num_from_nn(struct o2net_node *nn)
246{
247 BUG_ON(nn == NULL);
248 return nn - o2net_nodes;
249}
250
251/* ------------------------------------------------------------ */
252
253static int o2net_prep_nsw(struct o2net_node *nn, struct o2net_status_wait *nsw)
254{
255 int ret = 0;
256
257 do {
258 if (!idr_pre_get(&nn->nn_status_idr, GFP_ATOMIC)) {
259 ret = -EAGAIN;
260 break;
261 }
262 spin_lock(&nn->nn_lock);
263 ret = idr_get_new(&nn->nn_status_idr, nsw, &nsw->ns_id);
264 if (ret == 0)
265 list_add_tail(&nsw->ns_node_item,
266 &nn->nn_status_list);
267 spin_unlock(&nn->nn_lock);
268 } while (ret == -EAGAIN);
269
270 if (ret == 0) {
271 init_waitqueue_head(&nsw->ns_wq);
272 nsw->ns_sys_status = O2NET_ERR_NONE;
273 nsw->ns_status = 0;
274 }
275
276 return ret;
277}
278
279static void o2net_complete_nsw_locked(struct o2net_node *nn,
280 struct o2net_status_wait *nsw,
281 enum o2net_system_error sys_status,
282 s32 status)
283{
284 assert_spin_locked(&nn->nn_lock);
285
286 if (!list_empty(&nsw->ns_node_item)) {
287 list_del_init(&nsw->ns_node_item);
288 nsw->ns_sys_status = sys_status;
289 nsw->ns_status = status;
290 idr_remove(&nn->nn_status_idr, nsw->ns_id);
291 wake_up(&nsw->ns_wq);
292 }
293}
294
295static void o2net_complete_nsw(struct o2net_node *nn,
296 struct o2net_status_wait *nsw,
297 u64 id, enum o2net_system_error sys_status,
298 s32 status)
299{
300 spin_lock(&nn->nn_lock);
301 if (nsw == NULL) {
302 if (id > INT_MAX)
303 goto out;
304
305 nsw = idr_find(&nn->nn_status_idr, id);
306 if (nsw == NULL)
307 goto out;
308 }
309
310 o2net_complete_nsw_locked(nn, nsw, sys_status, status);
311
312out:
313 spin_unlock(&nn->nn_lock);
314 return;
315}
316
317static void o2net_complete_nodes_nsw(struct o2net_node *nn)
318{
Christoph Hellwig800deef2007-05-17 16:03:13 +0200319 struct o2net_status_wait *nsw, *tmp;
Zach Brown98211482005-12-15 14:31:23 -0800320 unsigned int num_kills = 0;
Zach Brown98211482005-12-15 14:31:23 -0800321
322 assert_spin_locked(&nn->nn_lock);
323
Christoph Hellwig800deef2007-05-17 16:03:13 +0200324 list_for_each_entry_safe(nsw, tmp, &nn->nn_status_list, ns_node_item) {
Zach Brown98211482005-12-15 14:31:23 -0800325 o2net_complete_nsw_locked(nn, nsw, O2NET_ERR_DIED, 0);
326 num_kills++;
327 }
328
329 mlog(0, "completed %d messages for node %u\n", num_kills,
330 o2net_num_from_nn(nn));
331}
332
333static int o2net_nsw_completed(struct o2net_node *nn,
334 struct o2net_status_wait *nsw)
335{
336 int completed;
337 spin_lock(&nn->nn_lock);
338 completed = list_empty(&nsw->ns_node_item);
339 spin_unlock(&nn->nn_lock);
340 return completed;
341}
342
343/* ------------------------------------------------------------ */
344
345static void sc_kref_release(struct kref *kref)
346{
347 struct o2net_sock_container *sc = container_of(kref,
348 struct o2net_sock_container, sc_kref);
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +0100349 BUG_ON(timer_pending(&sc->sc_idle_timeout));
350
Zach Brown98211482005-12-15 14:31:23 -0800351 sclog(sc, "releasing\n");
352
353 if (sc->sc_sock) {
354 sock_release(sc->sc_sock);
355 sc->sc_sock = NULL;
356 }
357
Sunil Mushran2b190ce2010-12-14 14:14:27 -0800358 o2nm_undepend_item(&sc->sc_node->nd_item);
Zach Brown98211482005-12-15 14:31:23 -0800359 o2nm_node_put(sc->sc_node);
360 sc->sc_node = NULL;
361
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700362 o2net_debug_del_sc(sc);
Zach Brown98211482005-12-15 14:31:23 -0800363 kfree(sc);
364}
365
366static void sc_put(struct o2net_sock_container *sc)
367{
368 sclog(sc, "put\n");
369 kref_put(&sc->sc_kref, sc_kref_release);
370}
371static void sc_get(struct o2net_sock_container *sc)
372{
373 sclog(sc, "get\n");
374 kref_get(&sc->sc_kref);
375}
376static struct o2net_sock_container *sc_alloc(struct o2nm_node *node)
377{
378 struct o2net_sock_container *sc, *ret = NULL;
379 struct page *page = NULL;
Sunil Mushran2b190ce2010-12-14 14:14:27 -0800380 int status = 0;
Zach Brown98211482005-12-15 14:31:23 -0800381
382 page = alloc_page(GFP_NOFS);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800383 sc = kzalloc(sizeof(*sc), GFP_NOFS);
Zach Brown98211482005-12-15 14:31:23 -0800384 if (sc == NULL || page == NULL)
385 goto out;
386
387 kref_init(&sc->sc_kref);
388 o2nm_node_get(node);
389 sc->sc_node = node;
390
Sunil Mushran2b190ce2010-12-14 14:14:27 -0800391 /* pin the node item of the remote node */
392 status = o2nm_depend_item(&node->nd_item);
393 if (status) {
394 mlog_errno(status);
395 o2nm_node_put(node);
396 goto out;
397 }
David Howellsc4028952006-11-22 14:57:56 +0000398 INIT_WORK(&sc->sc_connect_work, o2net_sc_connect_completed);
399 INIT_WORK(&sc->sc_rx_work, o2net_rx_until_empty);
400 INIT_WORK(&sc->sc_shutdown_work, o2net_shutdown_sc);
401 INIT_DELAYED_WORK(&sc->sc_keepalive_work, o2net_sc_send_keep_req);
Zach Brown98211482005-12-15 14:31:23 -0800402
403 init_timer(&sc->sc_idle_timeout);
404 sc->sc_idle_timeout.function = o2net_idle_timer;
405 sc->sc_idle_timeout.data = (unsigned long)sc;
406
407 sclog(sc, "alloced\n");
408
409 ret = sc;
410 sc->sc_page = page;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700411 o2net_debug_add_sc(sc);
Zach Brown98211482005-12-15 14:31:23 -0800412 sc = NULL;
413 page = NULL;
414
415out:
416 if (page)
417 __free_page(page);
418 kfree(sc);
419
420 return ret;
421}
422
423/* ------------------------------------------------------------ */
424
425static void o2net_sc_queue_work(struct o2net_sock_container *sc,
426 struct work_struct *work)
427{
428 sc_get(sc);
429 if (!queue_work(o2net_wq, work))
430 sc_put(sc);
431}
432static void o2net_sc_queue_delayed_work(struct o2net_sock_container *sc,
David Howellsc4028952006-11-22 14:57:56 +0000433 struct delayed_work *work,
Zach Brown98211482005-12-15 14:31:23 -0800434 int delay)
435{
436 sc_get(sc);
437 if (!queue_delayed_work(o2net_wq, work, delay))
438 sc_put(sc);
439}
440static void o2net_sc_cancel_delayed_work(struct o2net_sock_container *sc,
David Howellsc4028952006-11-22 14:57:56 +0000441 struct delayed_work *work)
Zach Brown98211482005-12-15 14:31:23 -0800442{
443 if (cancel_delayed_work(work))
444 sc_put(sc);
445}
446
Andrew Beekhof828ae6a2006-12-04 14:04:55 +0100447static atomic_t o2net_connected_peers = ATOMIC_INIT(0);
448
449int o2net_num_connected_peers(void)
450{
451 return atomic_read(&o2net_connected_peers);
452}
453
Zach Brown98211482005-12-15 14:31:23 -0800454static void o2net_set_nn_state(struct o2net_node *nn,
455 struct o2net_sock_container *sc,
456 unsigned valid, int err)
457{
458 int was_valid = nn->nn_sc_valid;
459 int was_err = nn->nn_persistent_error;
460 struct o2net_sock_container *old_sc = nn->nn_sc;
461
462 assert_spin_locked(&nn->nn_lock);
463
Andrew Beekhof828ae6a2006-12-04 14:04:55 +0100464 if (old_sc && !sc)
465 atomic_dec(&o2net_connected_peers);
466 else if (!old_sc && sc)
467 atomic_inc(&o2net_connected_peers);
468
Zach Brown98211482005-12-15 14:31:23 -0800469 /* the node num comparison and single connect/accept path should stop
470 * an non-null sc from being overwritten with another */
471 BUG_ON(sc && nn->nn_sc && nn->nn_sc != sc);
472 mlog_bug_on_msg(err && valid, "err %d valid %u\n", err, valid);
473 mlog_bug_on_msg(valid && !sc, "valid %u sc %p\n", valid, sc);
474
Zach Brown98211482005-12-15 14:31:23 -0800475 if (was_valid && !valid && err == 0)
476 err = -ENOTCONN;
477
478 mlog(ML_CONN, "node %u sc: %p -> %p, valid %u -> %u, err %d -> %d\n",
479 o2net_num_from_nn(nn), nn->nn_sc, sc, nn->nn_sc_valid, valid,
480 nn->nn_persistent_error, err);
481
482 nn->nn_sc = sc;
483 nn->nn_sc_valid = valid ? 1 : 0;
484 nn->nn_persistent_error = err;
485
486 /* mirrors o2net_tx_can_proceed() */
487 if (nn->nn_persistent_error || nn->nn_sc_valid)
488 wake_up(&nn->nn_sc_wq);
489
490 if (!was_err && nn->nn_persistent_error) {
491 o2quo_conn_err(o2net_num_from_nn(nn));
492 queue_delayed_work(o2net_wq, &nn->nn_still_up,
493 msecs_to_jiffies(O2NET_QUORUM_DELAY_MS));
494 }
495
496 if (was_valid && !valid) {
Sunil Mushran6efd8062010-02-05 15:41:23 -0800497 printk(KERN_NOTICE "o2net: no longer connected to "
Sunil Mushran781ee3e2006-04-27 16:41:31 -0700498 SC_NODEF_FMT "\n", SC_NODEF_ARGS(old_sc));
Zach Brown98211482005-12-15 14:31:23 -0800499 o2net_complete_nodes_nsw(nn);
500 }
501
502 if (!was_valid && valid) {
503 o2quo_conn_up(o2net_num_from_nn(nn));
Zach Brown98211482005-12-15 14:31:23 -0800504 cancel_delayed_work(&nn->nn_connect_expired);
Sunil Mushran6efd8062010-02-05 15:41:23 -0800505 printk(KERN_NOTICE "o2net: %s " SC_NODEF_FMT "\n",
Sunil Mushran781ee3e2006-04-27 16:41:31 -0700506 o2nm_this_node() > sc->sc_node->nd_num ?
507 "connected to" : "accepted connection from",
508 SC_NODEF_ARGS(sc));
Zach Brown98211482005-12-15 14:31:23 -0800509 }
510
511 /* trigger the connecting worker func as long as we're not valid,
512 * it will back off if it shouldn't connect. This can be called
513 * from node config teardown and so needs to be careful about
514 * the work queue actually being up. */
515 if (!valid && o2net_wq) {
516 unsigned long delay;
517 /* delay if we're withing a RECONNECT_DELAY of the
518 * last attempt */
519 delay = (nn->nn_last_connect_attempt +
Jeff Mahoney409753b2008-03-28 16:44:13 -0700520 msecs_to_jiffies(o2net_reconnect_delay()))
Zach Brown98211482005-12-15 14:31:23 -0800521 - jiffies;
Jeff Mahoney409753b2008-03-28 16:44:13 -0700522 if (delay > msecs_to_jiffies(o2net_reconnect_delay()))
Zach Brown98211482005-12-15 14:31:23 -0800523 delay = 0;
524 mlog(ML_CONN, "queueing conn attempt in %lu jiffies\n", delay);
525 queue_delayed_work(o2net_wq, &nn->nn_connect_work, delay);
Tao Ma5cc3bf22008-03-05 15:50:12 +0800526
527 /*
528 * Delay the expired work after idle timeout.
529 *
530 * We might have lots of failed connection attempts that run
531 * through here but we only cancel the connect_expired work when
532 * a connection attempt succeeds. So only the first enqueue of
533 * the connect_expired work will do anything. The rest will see
534 * that it's already queued and do nothing.
535 */
Jeff Mahoney409753b2008-03-28 16:44:13 -0700536 delay += msecs_to_jiffies(o2net_idle_timeout());
Tao Ma5cc3bf22008-03-05 15:50:12 +0800537 queue_delayed_work(o2net_wq, &nn->nn_connect_expired, delay);
Zach Brown98211482005-12-15 14:31:23 -0800538 }
539
540 /* keep track of the nn's sc ref for the caller */
541 if ((old_sc == NULL) && sc)
542 sc_get(sc);
543 if (old_sc && (old_sc != sc)) {
544 o2net_sc_queue_work(old_sc, &old_sc->sc_shutdown_work);
545 sc_put(old_sc);
546 }
547}
548
549/* see o2net_register_callbacks() */
550static void o2net_data_ready(struct sock *sk, int bytes)
551{
552 void (*ready)(struct sock *sk, int bytes);
553
554 read_lock(&sk->sk_callback_lock);
555 if (sk->sk_user_data) {
556 struct o2net_sock_container *sc = sk->sk_user_data;
557 sclog(sc, "data_ready hit\n");
558 do_gettimeofday(&sc->sc_tv_data_ready);
559 o2net_sc_queue_work(sc, &sc->sc_rx_work);
560 ready = sc->sc_data_ready;
561 } else {
562 ready = sk->sk_data_ready;
563 }
564 read_unlock(&sk->sk_callback_lock);
565
566 ready(sk, bytes);
567}
568
569/* see o2net_register_callbacks() */
570static void o2net_state_change(struct sock *sk)
571{
572 void (*state_change)(struct sock *sk);
573 struct o2net_sock_container *sc;
574
575 read_lock(&sk->sk_callback_lock);
576 sc = sk->sk_user_data;
577 if (sc == NULL) {
578 state_change = sk->sk_state_change;
579 goto out;
580 }
581
582 sclog(sc, "state_change to %d\n", sk->sk_state);
583
584 state_change = sc->sc_state_change;
585
586 switch(sk->sk_state) {
587 /* ignore connecting sockets as they make progress */
588 case TCP_SYN_SENT:
589 case TCP_SYN_RECV:
590 break;
591 case TCP_ESTABLISHED:
592 o2net_sc_queue_work(sc, &sc->sc_connect_work);
593 break;
594 default:
Srinivas Eeda23fd9ab2010-03-31 14:32:29 -0700595 printk(KERN_INFO "o2net: connection to " SC_NODEF_FMT
596 " shutdown, state %d\n",
597 SC_NODEF_ARGS(sc), sk->sk_state);
Zach Brown98211482005-12-15 14:31:23 -0800598 o2net_sc_queue_work(sc, &sc->sc_shutdown_work);
599 break;
600 }
601out:
602 read_unlock(&sk->sk_callback_lock);
603 state_change(sk);
604}
605
606/*
607 * we register callbacks so we can queue work on events before calling
608 * the original callbacks. our callbacks our careful to test user_data
609 * to discover when they've reaced with o2net_unregister_callbacks().
610 */
611static void o2net_register_callbacks(struct sock *sk,
612 struct o2net_sock_container *sc)
613{
614 write_lock_bh(&sk->sk_callback_lock);
615
616 /* accepted sockets inherit the old listen socket data ready */
617 if (sk->sk_data_ready == o2net_listen_data_ready) {
618 sk->sk_data_ready = sk->sk_user_data;
619 sk->sk_user_data = NULL;
620 }
621
622 BUG_ON(sk->sk_user_data != NULL);
623 sk->sk_user_data = sc;
624 sc_get(sc);
625
626 sc->sc_data_ready = sk->sk_data_ready;
627 sc->sc_state_change = sk->sk_state_change;
628 sk->sk_data_ready = o2net_data_ready;
629 sk->sk_state_change = o2net_state_change;
630
Zhen Wei925037b2007-01-23 17:19:59 -0800631 mutex_init(&sc->sc_send_lock);
632
Zach Brown98211482005-12-15 14:31:23 -0800633 write_unlock_bh(&sk->sk_callback_lock);
634}
635
636static int o2net_unregister_callbacks(struct sock *sk,
637 struct o2net_sock_container *sc)
638{
639 int ret = 0;
640
641 write_lock_bh(&sk->sk_callback_lock);
642 if (sk->sk_user_data == sc) {
643 ret = 1;
644 sk->sk_user_data = NULL;
645 sk->sk_data_ready = sc->sc_data_ready;
646 sk->sk_state_change = sc->sc_state_change;
647 }
648 write_unlock_bh(&sk->sk_callback_lock);
649
650 return ret;
651}
652
653/*
654 * this is a little helper that is called by callers who have seen a problem
655 * with an sc and want to detach it from the nn if someone already hasn't beat
656 * them to it. if an error is given then the shutdown will be persistent
657 * and pending transmits will be canceled.
658 */
659static void o2net_ensure_shutdown(struct o2net_node *nn,
660 struct o2net_sock_container *sc,
661 int err)
662{
663 spin_lock(&nn->nn_lock);
664 if (nn->nn_sc == sc)
665 o2net_set_nn_state(nn, NULL, 0, err);
666 spin_unlock(&nn->nn_lock);
667}
668
669/*
670 * This work queue function performs the blocking parts of socket shutdown. A
671 * few paths lead here. set_nn_state will trigger this callback if it sees an
672 * sc detached from the nn. state_change will also trigger this callback
673 * directly when it sees errors. In that case we need to call set_nn_state
674 * ourselves as state_change couldn't get the nn_lock and call set_nn_state
675 * itself.
676 */
David Howellsc4028952006-11-22 14:57:56 +0000677static void o2net_shutdown_sc(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -0800678{
David Howellsc4028952006-11-22 14:57:56 +0000679 struct o2net_sock_container *sc =
680 container_of(work, struct o2net_sock_container,
681 sc_shutdown_work);
Zach Brown98211482005-12-15 14:31:23 -0800682 struct o2net_node *nn = o2net_nn_from_num(sc->sc_node->nd_num);
683
684 sclog(sc, "shutting down\n");
685
686 /* drop the callbacks ref and call shutdown only once */
687 if (o2net_unregister_callbacks(sc->sc_sock->sk, sc)) {
688 /* we shouldn't flush as we're in the thread, the
689 * races with pending sc work structs are harmless */
690 del_timer_sync(&sc->sc_idle_timeout);
691 o2net_sc_cancel_delayed_work(sc, &sc->sc_keepalive_work);
692 sc_put(sc);
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800693 kernel_sock_shutdown(sc->sc_sock, SHUT_RDWR);
Zach Brown98211482005-12-15 14:31:23 -0800694 }
695
696 /* not fatal so failed connects before the other guy has our
697 * heartbeat can be retried */
698 o2net_ensure_shutdown(nn, sc, 0);
699 sc_put(sc);
700}
701
702/* ------------------------------------------------------------ */
703
704static int o2net_handler_cmp(struct o2net_msg_handler *nmh, u32 msg_type,
705 u32 key)
706{
707 int ret = memcmp(&nmh->nh_key, &key, sizeof(key));
708
709 if (ret == 0)
710 ret = memcmp(&nmh->nh_msg_type, &msg_type, sizeof(msg_type));
711
712 return ret;
713}
714
715static struct o2net_msg_handler *
716o2net_handler_tree_lookup(u32 msg_type, u32 key, struct rb_node ***ret_p,
717 struct rb_node **ret_parent)
718{
719 struct rb_node **p = &o2net_handler_tree.rb_node;
720 struct rb_node *parent = NULL;
721 struct o2net_msg_handler *nmh, *ret = NULL;
722 int cmp;
723
724 while (*p) {
725 parent = *p;
726 nmh = rb_entry(parent, struct o2net_msg_handler, nh_node);
727 cmp = o2net_handler_cmp(nmh, msg_type, key);
728
729 if (cmp < 0)
730 p = &(*p)->rb_left;
731 else if (cmp > 0)
732 p = &(*p)->rb_right;
733 else {
734 ret = nmh;
735 break;
736 }
737 }
738
739 if (ret_p != NULL)
740 *ret_p = p;
741 if (ret_parent != NULL)
742 *ret_parent = parent;
743
744 return ret;
745}
746
747static void o2net_handler_kref_release(struct kref *kref)
748{
749 struct o2net_msg_handler *nmh;
750 nmh = container_of(kref, struct o2net_msg_handler, nh_kref);
751
752 kfree(nmh);
753}
754
755static void o2net_handler_put(struct o2net_msg_handler *nmh)
756{
757 kref_put(&nmh->nh_kref, o2net_handler_kref_release);
758}
759
760/* max_len is protection for the handler func. incoming messages won't
761 * be given to the handler if their payload is longer than the max. */
762int o2net_register_handler(u32 msg_type, u32 key, u32 max_len,
763 o2net_msg_handler_func *func, void *data,
Kurt Hackeld74c9802007-01-17 17:04:25 -0800764 o2net_post_msg_handler_func *post_func,
Zach Brown98211482005-12-15 14:31:23 -0800765 struct list_head *unreg_list)
766{
767 struct o2net_msg_handler *nmh = NULL;
768 struct rb_node **p, *parent;
769 int ret = 0;
770
771 if (max_len > O2NET_MAX_PAYLOAD_BYTES) {
772 mlog(0, "max_len for message handler out of range: %u\n",
773 max_len);
774 ret = -EINVAL;
775 goto out;
776 }
777
778 if (!msg_type) {
779 mlog(0, "no message type provided: %u, %p\n", msg_type, func);
780 ret = -EINVAL;
781 goto out;
782
783 }
784 if (!func) {
785 mlog(0, "no message handler provided: %u, %p\n",
786 msg_type, func);
787 ret = -EINVAL;
788 goto out;
789 }
790
Robert P. J. Daycd861282006-12-13 00:34:52 -0800791 nmh = kzalloc(sizeof(struct o2net_msg_handler), GFP_NOFS);
Zach Brown98211482005-12-15 14:31:23 -0800792 if (nmh == NULL) {
793 ret = -ENOMEM;
794 goto out;
795 }
796
797 nmh->nh_func = func;
798 nmh->nh_func_data = data;
Kurt Hackeld74c9802007-01-17 17:04:25 -0800799 nmh->nh_post_func = post_func;
Zach Brown98211482005-12-15 14:31:23 -0800800 nmh->nh_msg_type = msg_type;
801 nmh->nh_max_len = max_len;
802 nmh->nh_key = key;
803 /* the tree and list get this ref.. they're both removed in
804 * unregister when this ref is dropped */
805 kref_init(&nmh->nh_kref);
806 INIT_LIST_HEAD(&nmh->nh_unregister_item);
807
808 write_lock(&o2net_handler_lock);
809 if (o2net_handler_tree_lookup(msg_type, key, &p, &parent))
810 ret = -EEXIST;
811 else {
812 rb_link_node(&nmh->nh_node, parent, p);
813 rb_insert_color(&nmh->nh_node, &o2net_handler_tree);
814 list_add_tail(&nmh->nh_unregister_item, unreg_list);
815
816 mlog(ML_TCP, "registered handler func %p type %u key %08x\n",
817 func, msg_type, key);
818 /* we've had some trouble with handlers seemingly vanishing. */
819 mlog_bug_on_msg(o2net_handler_tree_lookup(msg_type, key, &p,
820 &parent) == NULL,
821 "couldn't find handler we *just* registerd "
822 "for type %u key %08x\n", msg_type, key);
823 }
824 write_unlock(&o2net_handler_lock);
825 if (ret)
826 goto out;
827
828out:
829 if (ret)
830 kfree(nmh);
831
832 return ret;
833}
834EXPORT_SYMBOL_GPL(o2net_register_handler);
835
836void o2net_unregister_handler_list(struct list_head *list)
837{
Christoph Hellwig800deef2007-05-17 16:03:13 +0200838 struct o2net_msg_handler *nmh, *n;
Zach Brown98211482005-12-15 14:31:23 -0800839
840 write_lock(&o2net_handler_lock);
Christoph Hellwig800deef2007-05-17 16:03:13 +0200841 list_for_each_entry_safe(nmh, n, list, nh_unregister_item) {
Zach Brown98211482005-12-15 14:31:23 -0800842 mlog(ML_TCP, "unregistering handler func %p type %u key %08x\n",
843 nmh->nh_func, nmh->nh_msg_type, nmh->nh_key);
844 rb_erase(&nmh->nh_node, &o2net_handler_tree);
845 list_del_init(&nmh->nh_unregister_item);
846 kref_put(&nmh->nh_kref, o2net_handler_kref_release);
847 }
848 write_unlock(&o2net_handler_lock);
849}
850EXPORT_SYMBOL_GPL(o2net_unregister_handler_list);
851
852static struct o2net_msg_handler *o2net_handler_get(u32 msg_type, u32 key)
853{
854 struct o2net_msg_handler *nmh;
855
856 read_lock(&o2net_handler_lock);
857 nmh = o2net_handler_tree_lookup(msg_type, key, NULL, NULL);
858 if (nmh)
859 kref_get(&nmh->nh_kref);
860 read_unlock(&o2net_handler_lock);
861
862 return nmh;
863}
864
865/* ------------------------------------------------------------ */
866
867static int o2net_recv_tcp_msg(struct socket *sock, void *data, size_t len)
868{
869 int ret;
870 mm_segment_t oldfs;
871 struct kvec vec = {
872 .iov_len = len,
873 .iov_base = data,
874 };
875 struct msghdr msg = {
876 .msg_iovlen = 1,
877 .msg_iov = (struct iovec *)&vec,
878 .msg_flags = MSG_DONTWAIT,
879 };
880
881 oldfs = get_fs();
882 set_fs(get_ds());
883 ret = sock_recvmsg(sock, &msg, len, msg.msg_flags);
884 set_fs(oldfs);
885
886 return ret;
887}
888
889static int o2net_send_tcp_msg(struct socket *sock, struct kvec *vec,
890 size_t veclen, size_t total)
891{
892 int ret;
893 mm_segment_t oldfs;
894 struct msghdr msg = {
895 .msg_iov = (struct iovec *)vec,
896 .msg_iovlen = veclen,
897 };
898
899 if (sock == NULL) {
900 ret = -EINVAL;
901 goto out;
902 }
903
904 oldfs = get_fs();
905 set_fs(get_ds());
906 ret = sock_sendmsg(sock, &msg, total);
907 set_fs(oldfs);
908 if (ret != total) {
909 mlog(ML_ERROR, "sendmsg returned %d instead of %zu\n", ret,
910 total);
911 if (ret >= 0)
912 ret = -EPIPE; /* should be smarter, I bet */
913 goto out;
914 }
915
916 ret = 0;
917out:
918 if (ret < 0)
919 mlog(0, "returning error: %d\n", ret);
920 return ret;
921}
922
923static void o2net_sendpage(struct o2net_sock_container *sc,
924 void *kmalloced_virt,
925 size_t size)
926{
927 struct o2net_node *nn = o2net_nn_from_num(sc->sc_node->nd_num);
928 ssize_t ret;
929
Sunil Mushrance17204a2007-07-30 11:02:50 -0700930 while (1) {
931 mutex_lock(&sc->sc_send_lock);
932 ret = sc->sc_sock->ops->sendpage(sc->sc_sock,
933 virt_to_page(kmalloced_virt),
934 (long)kmalloced_virt & ~PAGE_MASK,
935 size, MSG_DONTWAIT);
936 mutex_unlock(&sc->sc_send_lock);
937 if (ret == size)
938 break;
939 if (ret == (ssize_t)-EAGAIN) {
940 mlog(0, "sendpage of size %zu to " SC_NODEF_FMT
941 " returned EAGAIN\n", size, SC_NODEF_ARGS(sc));
942 cond_resched();
943 continue;
944 }
Sunil Mushran2bd63212010-01-25 16:57:38 -0800945 mlog(ML_ERROR, "sendpage of size %zu to " SC_NODEF_FMT
Zach Brown98211482005-12-15 14:31:23 -0800946 " failed with %zd\n", size, SC_NODEF_ARGS(sc), ret);
947 o2net_ensure_shutdown(nn, sc, 0);
Sunil Mushrance17204a2007-07-30 11:02:50 -0700948 break;
Zach Brown98211482005-12-15 14:31:23 -0800949 }
950}
951
952static void o2net_init_msg(struct o2net_msg *msg, u16 data_len, u16 msg_type, u32 key)
953{
954 memset(msg, 0, sizeof(struct o2net_msg));
955 msg->magic = cpu_to_be16(O2NET_MSG_MAGIC);
956 msg->data_len = cpu_to_be16(data_len);
957 msg->msg_type = cpu_to_be16(msg_type);
958 msg->sys_status = cpu_to_be32(O2NET_ERR_NONE);
959 msg->status = 0;
960 msg->key = cpu_to_be32(key);
961}
962
963static int o2net_tx_can_proceed(struct o2net_node *nn,
964 struct o2net_sock_container **sc_ret,
965 int *error)
966{
967 int ret = 0;
968
969 spin_lock(&nn->nn_lock);
970 if (nn->nn_persistent_error) {
971 ret = 1;
972 *sc_ret = NULL;
973 *error = nn->nn_persistent_error;
974 } else if (nn->nn_sc_valid) {
975 kref_get(&nn->nn_sc->sc_kref);
976
977 ret = 1;
978 *sc_ret = nn->nn_sc;
979 *error = 0;
980 }
981 spin_unlock(&nn->nn_lock);
982
983 return ret;
984}
985
986int o2net_send_message_vec(u32 msg_type, u32 key, struct kvec *caller_vec,
987 size_t caller_veclen, u8 target_node, int *status)
988{
Wu Fengguang50aff042010-08-21 14:40:20 +0800989 int ret = 0;
Zach Brown98211482005-12-15 14:31:23 -0800990 struct o2net_msg *msg = NULL;
991 size_t veclen, caller_bytes = 0;
992 struct kvec *vec = NULL;
993 struct o2net_sock_container *sc = NULL;
994 struct o2net_node *nn = o2net_nn_from_num(target_node);
995 struct o2net_status_wait nsw = {
996 .ns_node_item = LIST_HEAD_INIT(nsw.ns_node_item),
997 };
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700998 struct o2net_send_tracking nst;
999
1000 o2net_init_nst(&nst, msg_type, key, current, target_node);
Zach Brown98211482005-12-15 14:31:23 -08001001
1002 if (o2net_wq == NULL) {
1003 mlog(0, "attempt to tx without o2netd running\n");
1004 ret = -ESRCH;
1005 goto out;
1006 }
1007
1008 if (caller_veclen == 0) {
1009 mlog(0, "bad kvec array length\n");
1010 ret = -EINVAL;
1011 goto out;
1012 }
1013
1014 caller_bytes = iov_length((struct iovec *)caller_vec, caller_veclen);
1015 if (caller_bytes > O2NET_MAX_PAYLOAD_BYTES) {
1016 mlog(0, "total payload len %zu too large\n", caller_bytes);
1017 ret = -EINVAL;
1018 goto out;
1019 }
1020
1021 if (target_node == o2nm_this_node()) {
1022 ret = -ELOOP;
1023 goto out;
1024 }
1025
Sunil Mushran2309e9e2008-04-14 10:46:19 -07001026 o2net_debug_add_nst(&nst);
1027
1028 o2net_set_nst_sock_time(&nst);
1029
Sunil Mushran9af0b382009-06-11 11:02:03 -07001030 wait_event(nn->nn_sc_wq, o2net_tx_can_proceed(nn, &sc, &ret));
Zach Brown98211482005-12-15 14:31:23 -08001031 if (ret)
1032 goto out;
1033
Sunil Mushran2309e9e2008-04-14 10:46:19 -07001034 o2net_set_nst_sock_container(&nst, sc);
1035
Zach Brown98211482005-12-15 14:31:23 -08001036 veclen = caller_veclen + 1;
1037 vec = kmalloc(sizeof(struct kvec) * veclen, GFP_ATOMIC);
1038 if (vec == NULL) {
1039 mlog(0, "failed to %zu element kvec!\n", veclen);
1040 ret = -ENOMEM;
1041 goto out;
1042 }
1043
1044 msg = kmalloc(sizeof(struct o2net_msg), GFP_ATOMIC);
1045 if (!msg) {
1046 mlog(0, "failed to allocate a o2net_msg!\n");
1047 ret = -ENOMEM;
1048 goto out;
1049 }
1050
1051 o2net_init_msg(msg, caller_bytes, msg_type, key);
1052
1053 vec[0].iov_len = sizeof(struct o2net_msg);
1054 vec[0].iov_base = msg;
1055 memcpy(&vec[1], caller_vec, caller_veclen * sizeof(struct kvec));
1056
1057 ret = o2net_prep_nsw(nn, &nsw);
1058 if (ret)
1059 goto out;
1060
1061 msg->msg_num = cpu_to_be32(nsw.ns_id);
Sunil Mushran2309e9e2008-04-14 10:46:19 -07001062 o2net_set_nst_msg_id(&nst, nsw.ns_id);
1063
1064 o2net_set_nst_send_time(&nst);
Zach Brown98211482005-12-15 14:31:23 -08001065
1066 /* finally, convert the message header to network byte-order
1067 * and send */
Zhen Wei925037b2007-01-23 17:19:59 -08001068 mutex_lock(&sc->sc_send_lock);
Zach Brown98211482005-12-15 14:31:23 -08001069 ret = o2net_send_tcp_msg(sc->sc_sock, vec, veclen,
1070 sizeof(struct o2net_msg) + caller_bytes);
Zhen Wei925037b2007-01-23 17:19:59 -08001071 mutex_unlock(&sc->sc_send_lock);
Zach Brown98211482005-12-15 14:31:23 -08001072 msglog(msg, "sending returned %d\n", ret);
1073 if (ret < 0) {
1074 mlog(0, "error returned from o2net_send_tcp_msg=%d\n", ret);
1075 goto out;
1076 }
1077
1078 /* wait on other node's handler */
Sunil Mushran2309e9e2008-04-14 10:46:19 -07001079 o2net_set_nst_status_time(&nst);
Zach Brown98211482005-12-15 14:31:23 -08001080 wait_event(nsw.ns_wq, o2net_nsw_completed(nn, &nsw));
1081
1082 /* Note that we avoid overwriting the callers status return
1083 * variable if a system error was reported on the other
1084 * side. Callers beware. */
1085 ret = o2net_sys_err_to_errno(nsw.ns_sys_status);
1086 if (status && !ret)
1087 *status = nsw.ns_status;
1088
1089 mlog(0, "woken, returning system status %d, user status %d\n",
1090 ret, nsw.ns_status);
1091out:
Sunil Mushran2309e9e2008-04-14 10:46:19 -07001092 o2net_debug_del_nst(&nst); /* must be before dropping sc and node */
Zach Brown98211482005-12-15 14:31:23 -08001093 if (sc)
1094 sc_put(sc);
1095 if (vec)
1096 kfree(vec);
1097 if (msg)
1098 kfree(msg);
1099 o2net_complete_nsw(nn, &nsw, 0, 0, 0);
1100 return ret;
1101}
1102EXPORT_SYMBOL_GPL(o2net_send_message_vec);
1103
1104int o2net_send_message(u32 msg_type, u32 key, void *data, u32 len,
1105 u8 target_node, int *status)
1106{
1107 struct kvec vec = {
1108 .iov_base = data,
1109 .iov_len = len,
1110 };
1111 return o2net_send_message_vec(msg_type, key, &vec, 1,
1112 target_node, status);
1113}
1114EXPORT_SYMBOL_GPL(o2net_send_message);
1115
1116static int o2net_send_status_magic(struct socket *sock, struct o2net_msg *hdr,
1117 enum o2net_system_error syserr, int err)
1118{
1119 struct kvec vec = {
1120 .iov_base = hdr,
1121 .iov_len = sizeof(struct o2net_msg),
1122 };
1123
1124 BUG_ON(syserr >= O2NET_ERR_MAX);
1125
1126 /* leave other fields intact from the incoming message, msg_num
1127 * in particular */
1128 hdr->sys_status = cpu_to_be32(syserr);
1129 hdr->status = cpu_to_be32(err);
1130 hdr->magic = cpu_to_be16(O2NET_MSG_STATUS_MAGIC); // twiddle the magic
1131 hdr->data_len = 0;
1132
1133 msglog(hdr, "about to send status magic %d\n", err);
1134 /* hdr has been in host byteorder this whole time */
1135 return o2net_send_tcp_msg(sock, &vec, 1, sizeof(struct o2net_msg));
1136}
1137
1138/* this returns -errno if the header was unknown or too large, etc.
1139 * after this is called the buffer us reused for the next message */
1140static int o2net_process_message(struct o2net_sock_container *sc,
1141 struct o2net_msg *hdr)
1142{
1143 struct o2net_node *nn = o2net_nn_from_num(sc->sc_node->nd_num);
1144 int ret = 0, handler_status;
1145 enum o2net_system_error syserr;
1146 struct o2net_msg_handler *nmh = NULL;
Kurt Hackeld74c9802007-01-17 17:04:25 -08001147 void *ret_data = NULL;
Zach Brown98211482005-12-15 14:31:23 -08001148
1149 msglog(hdr, "processing message\n");
1150
1151 o2net_sc_postpone_idle(sc);
1152
1153 switch(be16_to_cpu(hdr->magic)) {
1154 case O2NET_MSG_STATUS_MAGIC:
1155 /* special type for returning message status */
1156 o2net_complete_nsw(nn, NULL,
1157 be32_to_cpu(hdr->msg_num),
1158 be32_to_cpu(hdr->sys_status),
1159 be32_to_cpu(hdr->status));
1160 goto out;
1161 case O2NET_MSG_KEEP_REQ_MAGIC:
1162 o2net_sendpage(sc, o2net_keep_resp,
1163 sizeof(*o2net_keep_resp));
1164 goto out;
1165 case O2NET_MSG_KEEP_RESP_MAGIC:
1166 goto out;
1167 case O2NET_MSG_MAGIC:
1168 break;
1169 default:
1170 msglog(hdr, "bad magic\n");
1171 ret = -EINVAL;
1172 goto out;
1173 break;
1174 }
1175
1176 /* find a handler for it */
1177 handler_status = 0;
1178 nmh = o2net_handler_get(be16_to_cpu(hdr->msg_type),
1179 be32_to_cpu(hdr->key));
1180 if (!nmh) {
1181 mlog(ML_TCP, "couldn't find handler for type %u key %08x\n",
1182 be16_to_cpu(hdr->msg_type), be32_to_cpu(hdr->key));
1183 syserr = O2NET_ERR_NO_HNDLR;
1184 goto out_respond;
1185 }
1186
1187 syserr = O2NET_ERR_NONE;
1188
1189 if (be16_to_cpu(hdr->data_len) > nmh->nh_max_len)
1190 syserr = O2NET_ERR_OVERFLOW;
1191
1192 if (syserr != O2NET_ERR_NONE)
1193 goto out_respond;
1194
1195 do_gettimeofday(&sc->sc_tv_func_start);
1196 sc->sc_msg_key = be32_to_cpu(hdr->key);
1197 sc->sc_msg_type = be16_to_cpu(hdr->msg_type);
1198 handler_status = (nmh->nh_func)(hdr, sizeof(struct o2net_msg) +
1199 be16_to_cpu(hdr->data_len),
Kurt Hackeld74c9802007-01-17 17:04:25 -08001200 nmh->nh_func_data, &ret_data);
Zach Brown98211482005-12-15 14:31:23 -08001201 do_gettimeofday(&sc->sc_tv_func_stop);
1202
1203out_respond:
1204 /* this destroys the hdr, so don't use it after this */
Zhen Wei925037b2007-01-23 17:19:59 -08001205 mutex_lock(&sc->sc_send_lock);
Zach Brown98211482005-12-15 14:31:23 -08001206 ret = o2net_send_status_magic(sc->sc_sock, hdr, syserr,
1207 handler_status);
Zhen Wei925037b2007-01-23 17:19:59 -08001208 mutex_unlock(&sc->sc_send_lock);
Zach Brown98211482005-12-15 14:31:23 -08001209 hdr = NULL;
1210 mlog(0, "sending handler status %d, syserr %d returned %d\n",
1211 handler_status, syserr, ret);
1212
Kurt Hackeld74c9802007-01-17 17:04:25 -08001213 if (nmh) {
1214 BUG_ON(ret_data != NULL && nmh->nh_post_func == NULL);
1215 if (nmh->nh_post_func)
1216 (nmh->nh_post_func)(handler_status, nmh->nh_func_data,
1217 ret_data);
1218 }
1219
Zach Brown98211482005-12-15 14:31:23 -08001220out:
1221 if (nmh)
1222 o2net_handler_put(nmh);
1223 return ret;
1224}
1225
1226static int o2net_check_handshake(struct o2net_sock_container *sc)
1227{
1228 struct o2net_handshake *hand = page_address(sc->sc_page);
1229 struct o2net_node *nn = o2net_nn_from_num(sc->sc_node->nd_num);
1230
1231 if (hand->protocol_version != cpu_to_be64(O2NET_PROTOCOL_VERSION)) {
1232 mlog(ML_NOTICE, SC_NODEF_FMT " advertised net protocol "
1233 "version %llu but %llu is required, disconnecting\n",
1234 SC_NODEF_ARGS(sc),
1235 (unsigned long long)be64_to_cpu(hand->protocol_version),
1236 O2NET_PROTOCOL_VERSION);
1237
1238 /* don't bother reconnecting if its the wrong version. */
1239 o2net_ensure_shutdown(nn, sc, -ENOTCONN);
1240 return -1;
1241 }
1242
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001243 /*
1244 * Ensure timeouts are consistent with other nodes, otherwise
1245 * we can end up with one node thinking that the other must be down,
1246 * but isn't. This can ultimately cause corruption.
1247 */
1248 if (be32_to_cpu(hand->o2net_idle_timeout_ms) !=
Jeff Mahoney409753b2008-03-28 16:44:13 -07001249 o2net_idle_timeout()) {
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001250 mlog(ML_NOTICE, SC_NODEF_FMT " uses a network idle timeout of "
1251 "%u ms, but we use %u ms locally. disconnecting\n",
1252 SC_NODEF_ARGS(sc),
1253 be32_to_cpu(hand->o2net_idle_timeout_ms),
Jeff Mahoney409753b2008-03-28 16:44:13 -07001254 o2net_idle_timeout());
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001255 o2net_ensure_shutdown(nn, sc, -ENOTCONN);
1256 return -1;
1257 }
1258
1259 if (be32_to_cpu(hand->o2net_keepalive_delay_ms) !=
Jeff Mahoney409753b2008-03-28 16:44:13 -07001260 o2net_keepalive_delay()) {
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001261 mlog(ML_NOTICE, SC_NODEF_FMT " uses a keepalive delay of "
1262 "%u ms, but we use %u ms locally. disconnecting\n",
1263 SC_NODEF_ARGS(sc),
1264 be32_to_cpu(hand->o2net_keepalive_delay_ms),
Jeff Mahoney409753b2008-03-28 16:44:13 -07001265 o2net_keepalive_delay());
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001266 o2net_ensure_shutdown(nn, sc, -ENOTCONN);
1267 return -1;
1268 }
1269
1270 if (be32_to_cpu(hand->o2hb_heartbeat_timeout_ms) !=
1271 O2HB_MAX_WRITE_TIMEOUT_MS) {
1272 mlog(ML_NOTICE, SC_NODEF_FMT " uses a heartbeat timeout of "
1273 "%u ms, but we use %u ms locally. disconnecting\n",
1274 SC_NODEF_ARGS(sc),
1275 be32_to_cpu(hand->o2hb_heartbeat_timeout_ms),
1276 O2HB_MAX_WRITE_TIMEOUT_MS);
1277 o2net_ensure_shutdown(nn, sc, -ENOTCONN);
1278 return -1;
1279 }
1280
Zach Brown98211482005-12-15 14:31:23 -08001281 sc->sc_handshake_ok = 1;
1282
1283 spin_lock(&nn->nn_lock);
1284 /* set valid and queue the idle timers only if it hasn't been
1285 * shut down already */
1286 if (nn->nn_sc == sc) {
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +01001287 o2net_sc_reset_idle_timer(sc);
Tao Ma5cc3bf22008-03-05 15:50:12 +08001288 atomic_set(&nn->nn_timeout, 0);
Zach Brown98211482005-12-15 14:31:23 -08001289 o2net_set_nn_state(nn, sc, 1, 0);
1290 }
1291 spin_unlock(&nn->nn_lock);
1292
1293 /* shift everything up as though it wasn't there */
1294 sc->sc_page_off -= sizeof(struct o2net_handshake);
1295 if (sc->sc_page_off)
1296 memmove(hand, hand + 1, sc->sc_page_off);
1297
1298 return 0;
1299}
1300
1301/* this demuxes the queued rx bytes into header or payload bits and calls
1302 * handlers as each full message is read off the socket. it returns -error,
1303 * == 0 eof, or > 0 for progress made.*/
1304static int o2net_advance_rx(struct o2net_sock_container *sc)
1305{
1306 struct o2net_msg *hdr;
1307 int ret = 0;
1308 void *data;
1309 size_t datalen;
1310
1311 sclog(sc, "receiving\n");
1312 do_gettimeofday(&sc->sc_tv_advance_start);
1313
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001314 if (unlikely(sc->sc_handshake_ok == 0)) {
1315 if(sc->sc_page_off < sizeof(struct o2net_handshake)) {
1316 data = page_address(sc->sc_page) + sc->sc_page_off;
1317 datalen = sizeof(struct o2net_handshake) - sc->sc_page_off;
1318 ret = o2net_recv_tcp_msg(sc->sc_sock, data, datalen);
1319 if (ret > 0)
1320 sc->sc_page_off += ret;
1321 }
1322
1323 if (sc->sc_page_off == sizeof(struct o2net_handshake)) {
1324 o2net_check_handshake(sc);
1325 if (unlikely(sc->sc_handshake_ok == 0))
1326 ret = -EPROTO;
1327 }
1328 goto out;
1329 }
1330
Zach Brown98211482005-12-15 14:31:23 -08001331 /* do we need more header? */
1332 if (sc->sc_page_off < sizeof(struct o2net_msg)) {
1333 data = page_address(sc->sc_page) + sc->sc_page_off;
1334 datalen = sizeof(struct o2net_msg) - sc->sc_page_off;
1335 ret = o2net_recv_tcp_msg(sc->sc_sock, data, datalen);
1336 if (ret > 0) {
1337 sc->sc_page_off += ret;
Zach Brown98211482005-12-15 14:31:23 -08001338 /* only swab incoming here.. we can
1339 * only get here once as we cross from
1340 * being under to over */
1341 if (sc->sc_page_off == sizeof(struct o2net_msg)) {
1342 hdr = page_address(sc->sc_page);
1343 if (be16_to_cpu(hdr->data_len) >
1344 O2NET_MAX_PAYLOAD_BYTES)
1345 ret = -EOVERFLOW;
1346 }
1347 }
1348 if (ret <= 0)
1349 goto out;
1350 }
1351
1352 if (sc->sc_page_off < sizeof(struct o2net_msg)) {
1353 /* oof, still don't have a header */
1354 goto out;
1355 }
1356
1357 /* this was swabbed above when we first read it */
1358 hdr = page_address(sc->sc_page);
1359
1360 msglog(hdr, "at page_off %zu\n", sc->sc_page_off);
1361
1362 /* do we need more payload? */
1363 if (sc->sc_page_off - sizeof(struct o2net_msg) < be16_to_cpu(hdr->data_len)) {
1364 /* need more payload */
1365 data = page_address(sc->sc_page) + sc->sc_page_off;
1366 datalen = (sizeof(struct o2net_msg) + be16_to_cpu(hdr->data_len)) -
1367 sc->sc_page_off;
1368 ret = o2net_recv_tcp_msg(sc->sc_sock, data, datalen);
1369 if (ret > 0)
1370 sc->sc_page_off += ret;
1371 if (ret <= 0)
1372 goto out;
1373 }
1374
1375 if (sc->sc_page_off - sizeof(struct o2net_msg) == be16_to_cpu(hdr->data_len)) {
1376 /* we can only get here once, the first time we read
1377 * the payload.. so set ret to progress if the handler
1378 * works out. after calling this the message is toast */
1379 ret = o2net_process_message(sc, hdr);
1380 if (ret == 0)
1381 ret = 1;
1382 sc->sc_page_off = 0;
1383 }
1384
1385out:
1386 sclog(sc, "ret = %d\n", ret);
1387 do_gettimeofday(&sc->sc_tv_advance_stop);
1388 return ret;
1389}
1390
1391/* this work func is triggerd by data ready. it reads until it can read no
1392 * more. it interprets 0, eof, as fatal. if data_ready hits while we're doing
1393 * our work the work struct will be marked and we'll be called again. */
David Howellsc4028952006-11-22 14:57:56 +00001394static void o2net_rx_until_empty(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001395{
David Howellsc4028952006-11-22 14:57:56 +00001396 struct o2net_sock_container *sc =
1397 container_of(work, struct o2net_sock_container, sc_rx_work);
Zach Brown98211482005-12-15 14:31:23 -08001398 int ret;
1399
1400 do {
1401 ret = o2net_advance_rx(sc);
1402 } while (ret > 0);
1403
1404 if (ret <= 0 && ret != -EAGAIN) {
1405 struct o2net_node *nn = o2net_nn_from_num(sc->sc_node->nd_num);
1406 sclog(sc, "saw error %d, closing\n", ret);
1407 /* not permanent so read failed handshake can retry */
1408 o2net_ensure_shutdown(nn, sc, 0);
1409 }
1410
1411 sc_put(sc);
1412}
1413
1414static int o2net_set_nodelay(struct socket *sock)
1415{
1416 int ret, val = 1;
1417 mm_segment_t oldfs;
1418
1419 oldfs = get_fs();
1420 set_fs(KERNEL_DS);
1421
1422 /*
1423 * Dear unsuspecting programmer,
1424 *
1425 * Don't use sock_setsockopt() for SOL_TCP. It doesn't check its level
1426 * argument and assumes SOL_SOCKET so, say, your TCP_NODELAY will
1427 * silently turn into SO_DEBUG.
1428 *
1429 * Yours,
1430 * Keeper of hilariously fragile interfaces.
1431 */
1432 ret = sock->ops->setsockopt(sock, SOL_TCP, TCP_NODELAY,
1433 (char __user *)&val, sizeof(val));
1434
1435 set_fs(oldfs);
1436 return ret;
1437}
1438
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001439static void o2net_initialize_handshake(void)
1440{
1441 o2net_hand->o2hb_heartbeat_timeout_ms = cpu_to_be32(
1442 O2HB_MAX_WRITE_TIMEOUT_MS);
Jeff Mahoney409753b2008-03-28 16:44:13 -07001443 o2net_hand->o2net_idle_timeout_ms = cpu_to_be32(o2net_idle_timeout());
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001444 o2net_hand->o2net_keepalive_delay_ms = cpu_to_be32(
Jeff Mahoney409753b2008-03-28 16:44:13 -07001445 o2net_keepalive_delay());
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001446 o2net_hand->o2net_reconnect_delay_ms = cpu_to_be32(
Jeff Mahoney409753b2008-03-28 16:44:13 -07001447 o2net_reconnect_delay());
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001448}
1449
Zach Brown98211482005-12-15 14:31:23 -08001450/* ------------------------------------------------------------ */
1451
1452/* called when a connect completes and after a sock is accepted. the
1453 * rx path will see the response and mark the sc valid */
David Howellsc4028952006-11-22 14:57:56 +00001454static void o2net_sc_connect_completed(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001455{
David Howellsc4028952006-11-22 14:57:56 +00001456 struct o2net_sock_container *sc =
1457 container_of(work, struct o2net_sock_container,
1458 sc_connect_work);
Zach Brown98211482005-12-15 14:31:23 -08001459
1460 mlog(ML_MSG, "sc sending handshake with ver %llu id %llx\n",
1461 (unsigned long long)O2NET_PROTOCOL_VERSION,
1462 (unsigned long long)be64_to_cpu(o2net_hand->connector_id));
1463
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001464 o2net_initialize_handshake();
Zach Brown98211482005-12-15 14:31:23 -08001465 o2net_sendpage(sc, o2net_hand, sizeof(*o2net_hand));
1466 sc_put(sc);
1467}
1468
1469/* this is called as a work_struct func. */
David Howellsc4028952006-11-22 14:57:56 +00001470static void o2net_sc_send_keep_req(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001471{
David Howellsc4028952006-11-22 14:57:56 +00001472 struct o2net_sock_container *sc =
1473 container_of(work, struct o2net_sock_container,
1474 sc_keepalive_work.work);
Zach Brown98211482005-12-15 14:31:23 -08001475
1476 o2net_sendpage(sc, o2net_keep_req, sizeof(*o2net_keep_req));
1477 sc_put(sc);
1478}
1479
1480/* socket shutdown does a del_timer_sync against this as it tears down.
1481 * we can't start this timer until we've got to the point in sc buildup
1482 * where shutdown is going to be involved */
1483static void o2net_idle_timer(unsigned long data)
1484{
1485 struct o2net_sock_container *sc = (struct o2net_sock_container *)data;
Tao Ma5cc3bf22008-03-05 15:50:12 +08001486 struct o2net_node *nn = o2net_nn_from_num(sc->sc_node->nd_num);
Zach Brown98211482005-12-15 14:31:23 -08001487 struct timeval now;
1488
1489 do_gettimeofday(&now);
1490
Sunil Mushran6efd8062010-02-05 15:41:23 -08001491 printk(KERN_NOTICE "o2net: connection to " SC_NODEF_FMT " has been idle for %u.%u "
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +01001492 "seconds, shutting it down.\n", SC_NODEF_ARGS(sc),
Jeff Mahoney409753b2008-03-28 16:44:13 -07001493 o2net_idle_timeout() / 1000,
1494 o2net_idle_timeout() % 1000);
Zach Brown98211482005-12-15 14:31:23 -08001495 mlog(ML_NOTICE, "here are some times that might help debug the "
1496 "situation: (tmr %ld.%ld now %ld.%ld dr %ld.%ld adv "
1497 "%ld.%ld:%ld.%ld func (%08x:%u) %ld.%ld:%ld.%ld)\n",
Sunil Mushran2bd63212010-01-25 16:57:38 -08001498 sc->sc_tv_timer.tv_sec, (long) sc->sc_tv_timer.tv_usec,
Mark Fasheh215c7f92006-02-01 16:42:10 -08001499 now.tv_sec, (long) now.tv_usec,
1500 sc->sc_tv_data_ready.tv_sec, (long) sc->sc_tv_data_ready.tv_usec,
1501 sc->sc_tv_advance_start.tv_sec,
1502 (long) sc->sc_tv_advance_start.tv_usec,
1503 sc->sc_tv_advance_stop.tv_sec,
1504 (long) sc->sc_tv_advance_stop.tv_usec,
Zach Brown98211482005-12-15 14:31:23 -08001505 sc->sc_msg_key, sc->sc_msg_type,
Mark Fasheh215c7f92006-02-01 16:42:10 -08001506 sc->sc_tv_func_start.tv_sec, (long) sc->sc_tv_func_start.tv_usec,
1507 sc->sc_tv_func_stop.tv_sec, (long) sc->sc_tv_func_stop.tv_usec);
Zach Brown98211482005-12-15 14:31:23 -08001508
Tao Ma5cc3bf22008-03-05 15:50:12 +08001509 /*
1510 * Initialize the nn_timeout so that the next connection attempt
1511 * will continue in o2net_start_connect.
1512 */
1513 atomic_set(&nn->nn_timeout, 1);
1514
Zach Brown98211482005-12-15 14:31:23 -08001515 o2net_sc_queue_work(sc, &sc->sc_shutdown_work);
1516}
1517
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +01001518static void o2net_sc_reset_idle_timer(struct o2net_sock_container *sc)
Zach Brown98211482005-12-15 14:31:23 -08001519{
1520 o2net_sc_cancel_delayed_work(sc, &sc->sc_keepalive_work);
1521 o2net_sc_queue_delayed_work(sc, &sc->sc_keepalive_work,
Jeff Mahoney409753b2008-03-28 16:44:13 -07001522 msecs_to_jiffies(o2net_keepalive_delay()));
Zach Brown98211482005-12-15 14:31:23 -08001523 do_gettimeofday(&sc->sc_tv_timer);
1524 mod_timer(&sc->sc_idle_timeout,
Jeff Mahoney409753b2008-03-28 16:44:13 -07001525 jiffies + msecs_to_jiffies(o2net_idle_timeout()));
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +01001526}
1527
1528static void o2net_sc_postpone_idle(struct o2net_sock_container *sc)
1529{
1530 /* Only push out an existing timer */
1531 if (timer_pending(&sc->sc_idle_timeout))
1532 o2net_sc_reset_idle_timer(sc);
Zach Brown98211482005-12-15 14:31:23 -08001533}
1534
1535/* this work func is kicked whenever a path sets the nn state which doesn't
1536 * have valid set. This includes seeing hb come up, losing a connection,
1537 * having a connect attempt fail, etc. This centralizes the logic which decides
1538 * if a connect attempt should be made or if we should give up and all future
1539 * transmit attempts should fail */
David Howellsc4028952006-11-22 14:57:56 +00001540static void o2net_start_connect(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001541{
David Howellsc4028952006-11-22 14:57:56 +00001542 struct o2net_node *nn =
1543 container_of(work, struct o2net_node, nn_connect_work.work);
Zach Brown98211482005-12-15 14:31:23 -08001544 struct o2net_sock_container *sc = NULL;
Sunil Mushranb7668c72006-02-28 23:28:01 -08001545 struct o2nm_node *node = NULL, *mynode = NULL;
Zach Brown98211482005-12-15 14:31:23 -08001546 struct socket *sock = NULL;
1547 struct sockaddr_in myaddr = {0, }, remoteaddr = {0, };
David Howellsc4028952006-11-22 14:57:56 +00001548 int ret = 0, stop;
Tao Ma5cc3bf22008-03-05 15:50:12 +08001549 unsigned int timeout;
Zach Brown98211482005-12-15 14:31:23 -08001550
1551 /* if we're greater we initiate tx, otherwise we accept */
1552 if (o2nm_this_node() <= o2net_num_from_nn(nn))
1553 goto out;
1554
1555 /* watch for racing with tearing a node down */
1556 node = o2nm_get_node_by_num(o2net_num_from_nn(nn));
1557 if (node == NULL) {
1558 ret = 0;
1559 goto out;
1560 }
1561
Sunil Mushranb7668c72006-02-28 23:28:01 -08001562 mynode = o2nm_get_node_by_num(o2nm_this_node());
1563 if (mynode == NULL) {
1564 ret = 0;
1565 goto out;
1566 }
1567
Zach Brown98211482005-12-15 14:31:23 -08001568 spin_lock(&nn->nn_lock);
Tao Ma5cc3bf22008-03-05 15:50:12 +08001569 /*
1570 * see if we already have one pending or have given up.
1571 * For nn_timeout, it is set when we close the connection
1572 * because of the idle time out. So it means that we have
1573 * at least connected to that node successfully once,
1574 * now try to connect to it again.
1575 */
1576 timeout = atomic_read(&nn->nn_timeout);
1577 stop = (nn->nn_sc ||
1578 (nn->nn_persistent_error &&
1579 (nn->nn_persistent_error != -ENOTCONN || timeout == 0)));
Zach Brown98211482005-12-15 14:31:23 -08001580 spin_unlock(&nn->nn_lock);
David Howellsc4028952006-11-22 14:57:56 +00001581 if (stop)
Zach Brown98211482005-12-15 14:31:23 -08001582 goto out;
1583
1584 nn->nn_last_connect_attempt = jiffies;
1585
1586 sc = sc_alloc(node);
1587 if (sc == NULL) {
1588 mlog(0, "couldn't allocate sc\n");
1589 ret = -ENOMEM;
1590 goto out;
1591 }
1592
1593 ret = sock_create(PF_INET, SOCK_STREAM, IPPROTO_TCP, &sock);
1594 if (ret < 0) {
1595 mlog(0, "can't create socket: %d\n", ret);
1596 goto out;
1597 }
1598 sc->sc_sock = sock; /* freed by sc_kref_release */
1599
1600 sock->sk->sk_allocation = GFP_ATOMIC;
1601
1602 myaddr.sin_family = AF_INET;
Mark Fasheh5fdf1e62007-04-27 16:50:03 -07001603 myaddr.sin_addr.s_addr = mynode->nd_ipv4_address;
Al Viro97bd7912007-12-05 08:46:47 +00001604 myaddr.sin_port = htons(0); /* any port */
Zach Brown98211482005-12-15 14:31:23 -08001605
1606 ret = sock->ops->bind(sock, (struct sockaddr *)&myaddr,
1607 sizeof(myaddr));
1608 if (ret) {
Harvey Harrisonbe859402008-10-31 00:56:28 -07001609 mlog(ML_ERROR, "bind failed with %d at address %pI4\n",
1610 ret, &mynode->nd_ipv4_address);
Zach Brown98211482005-12-15 14:31:23 -08001611 goto out;
1612 }
1613
1614 ret = o2net_set_nodelay(sc->sc_sock);
1615 if (ret) {
1616 mlog(ML_ERROR, "setting TCP_NODELAY failed with %d\n", ret);
1617 goto out;
1618 }
1619
1620 o2net_register_callbacks(sc->sc_sock->sk, sc);
1621
1622 spin_lock(&nn->nn_lock);
1623 /* handshake completion will set nn->nn_sc_valid */
1624 o2net_set_nn_state(nn, sc, 0, 0);
1625 spin_unlock(&nn->nn_lock);
1626
1627 remoteaddr.sin_family = AF_INET;
Mark Fasheh5fdf1e62007-04-27 16:50:03 -07001628 remoteaddr.sin_addr.s_addr = node->nd_ipv4_address;
1629 remoteaddr.sin_port = node->nd_ipv4_port;
Zach Brown98211482005-12-15 14:31:23 -08001630
1631 ret = sc->sc_sock->ops->connect(sc->sc_sock,
1632 (struct sockaddr *)&remoteaddr,
1633 sizeof(remoteaddr),
1634 O_NONBLOCK);
1635 if (ret == -EINPROGRESS)
1636 ret = 0;
1637
1638out:
1639 if (ret) {
1640 mlog(ML_NOTICE, "connect attempt to " SC_NODEF_FMT " failed "
1641 "with errno %d\n", SC_NODEF_ARGS(sc), ret);
1642 /* 0 err so that another will be queued and attempted
1643 * from set_nn_state */
1644 if (sc)
1645 o2net_ensure_shutdown(nn, sc, 0);
1646 }
1647 if (sc)
1648 sc_put(sc);
1649 if (node)
1650 o2nm_node_put(node);
Sunil Mushranb7668c72006-02-28 23:28:01 -08001651 if (mynode)
1652 o2nm_node_put(mynode);
Zach Brown98211482005-12-15 14:31:23 -08001653
1654 return;
1655}
1656
David Howellsc4028952006-11-22 14:57:56 +00001657static void o2net_connect_expired(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001658{
David Howellsc4028952006-11-22 14:57:56 +00001659 struct o2net_node *nn =
1660 container_of(work, struct o2net_node, nn_connect_expired.work);
Zach Brown98211482005-12-15 14:31:23 -08001661
1662 spin_lock(&nn->nn_lock);
1663 if (!nn->nn_sc_valid) {
1664 mlog(ML_ERROR, "no connection established with node %u after "
Jeff Mahoneyb5dd8032006-12-04 14:04:54 +01001665 "%u.%u seconds, giving up and returning errors.\n",
1666 o2net_num_from_nn(nn),
Jeff Mahoney409753b2008-03-28 16:44:13 -07001667 o2net_idle_timeout() / 1000,
1668 o2net_idle_timeout() % 1000);
Zach Brown98211482005-12-15 14:31:23 -08001669
1670 o2net_set_nn_state(nn, NULL, 0, -ENOTCONN);
1671 }
1672 spin_unlock(&nn->nn_lock);
1673}
1674
David Howellsc4028952006-11-22 14:57:56 +00001675static void o2net_still_up(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001676{
David Howellsc4028952006-11-22 14:57:56 +00001677 struct o2net_node *nn =
1678 container_of(work, struct o2net_node, nn_still_up.work);
Zach Brown98211482005-12-15 14:31:23 -08001679
1680 o2quo_hb_still_up(o2net_num_from_nn(nn));
1681}
1682
1683/* ------------------------------------------------------------ */
1684
1685void o2net_disconnect_node(struct o2nm_node *node)
1686{
1687 struct o2net_node *nn = o2net_nn_from_num(node->nd_num);
1688
1689 /* don't reconnect until it's heartbeating again */
1690 spin_lock(&nn->nn_lock);
Tao Ma5cc3bf22008-03-05 15:50:12 +08001691 atomic_set(&nn->nn_timeout, 0);
Zach Brown98211482005-12-15 14:31:23 -08001692 o2net_set_nn_state(nn, NULL, 0, -ENOTCONN);
1693 spin_unlock(&nn->nn_lock);
1694
1695 if (o2net_wq) {
1696 cancel_delayed_work(&nn->nn_connect_expired);
1697 cancel_delayed_work(&nn->nn_connect_work);
1698 cancel_delayed_work(&nn->nn_still_up);
1699 flush_workqueue(o2net_wq);
1700 }
1701}
1702
1703static void o2net_hb_node_down_cb(struct o2nm_node *node, int node_num,
1704 void *data)
1705{
1706 o2quo_hb_down(node_num);
1707
Sunil Mushran0e105d32010-10-07 17:00:16 -07001708 if (!node)
1709 return;
1710
Zach Brown98211482005-12-15 14:31:23 -08001711 if (node_num != o2nm_this_node())
1712 o2net_disconnect_node(node);
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001713
1714 BUG_ON(atomic_read(&o2net_connected_peers) < 0);
Zach Brown98211482005-12-15 14:31:23 -08001715}
1716
1717static void o2net_hb_node_up_cb(struct o2nm_node *node, int node_num,
1718 void *data)
1719{
1720 struct o2net_node *nn = o2net_nn_from_num(node_num);
1721
1722 o2quo_hb_up(node_num);
1723
Sunil Mushran0e105d32010-10-07 17:00:16 -07001724 BUG_ON(!node);
1725
Zach Brown98211482005-12-15 14:31:23 -08001726 /* ensure an immediate connect attempt */
1727 nn->nn_last_connect_attempt = jiffies -
Jeff Mahoney409753b2008-03-28 16:44:13 -07001728 (msecs_to_jiffies(o2net_reconnect_delay()) + 1);
Zach Brown98211482005-12-15 14:31:23 -08001729
1730 if (node_num != o2nm_this_node()) {
Zach Brown98211482005-12-15 14:31:23 -08001731 /* believe it or not, accept and node hearbeating testing
1732 * can succeed for this node before we got here.. so
1733 * only use set_nn_state to clear the persistent error
1734 * if that hasn't already happened */
1735 spin_lock(&nn->nn_lock);
Tao Ma5cc3bf22008-03-05 15:50:12 +08001736 atomic_set(&nn->nn_timeout, 0);
Zach Brown98211482005-12-15 14:31:23 -08001737 if (nn->nn_persistent_error)
1738 o2net_set_nn_state(nn, NULL, 0, 0);
1739 spin_unlock(&nn->nn_lock);
1740 }
1741}
1742
1743void o2net_unregister_hb_callbacks(void)
1744{
Joel Becker14829422007-06-14 21:40:49 -07001745 o2hb_unregister_callback(NULL, &o2net_hb_up);
1746 o2hb_unregister_callback(NULL, &o2net_hb_down);
Zach Brown98211482005-12-15 14:31:23 -08001747}
1748
1749int o2net_register_hb_callbacks(void)
1750{
1751 int ret;
1752
1753 o2hb_setup_callback(&o2net_hb_down, O2HB_NODE_DOWN_CB,
1754 o2net_hb_node_down_cb, NULL, O2NET_HB_PRI);
1755 o2hb_setup_callback(&o2net_hb_up, O2HB_NODE_UP_CB,
1756 o2net_hb_node_up_cb, NULL, O2NET_HB_PRI);
1757
Joel Becker14829422007-06-14 21:40:49 -07001758 ret = o2hb_register_callback(NULL, &o2net_hb_up);
Zach Brown98211482005-12-15 14:31:23 -08001759 if (ret == 0)
Joel Becker14829422007-06-14 21:40:49 -07001760 ret = o2hb_register_callback(NULL, &o2net_hb_down);
Zach Brown98211482005-12-15 14:31:23 -08001761
1762 if (ret)
1763 o2net_unregister_hb_callbacks();
1764
1765 return ret;
1766}
1767
1768/* ------------------------------------------------------------ */
1769
1770static int o2net_accept_one(struct socket *sock)
1771{
1772 int ret, slen;
1773 struct sockaddr_in sin;
1774 struct socket *new_sock = NULL;
1775 struct o2nm_node *node = NULL;
Tristan Ye415cf322010-08-02 10:00:26 +08001776 struct o2nm_node *local_node = NULL;
Zach Brown98211482005-12-15 14:31:23 -08001777 struct o2net_sock_container *sc = NULL;
1778 struct o2net_node *nn;
1779
1780 BUG_ON(sock == NULL);
1781 ret = sock_create_lite(sock->sk->sk_family, sock->sk->sk_type,
1782 sock->sk->sk_protocol, &new_sock);
1783 if (ret)
1784 goto out;
1785
1786 new_sock->type = sock->type;
1787 new_sock->ops = sock->ops;
1788 ret = sock->ops->accept(sock, new_sock, O_NONBLOCK);
1789 if (ret < 0)
1790 goto out;
1791
1792 new_sock->sk->sk_allocation = GFP_ATOMIC;
1793
1794 ret = o2net_set_nodelay(new_sock);
1795 if (ret) {
1796 mlog(ML_ERROR, "setting TCP_NODELAY failed with %d\n", ret);
1797 goto out;
1798 }
1799
1800 slen = sizeof(sin);
1801 ret = new_sock->ops->getname(new_sock, (struct sockaddr *) &sin,
1802 &slen, 1);
1803 if (ret < 0)
1804 goto out;
1805
Al Viro97bd7912007-12-05 08:46:47 +00001806 node = o2nm_get_node_by_ip(sin.sin_addr.s_addr);
Zach Brown98211482005-12-15 14:31:23 -08001807 if (node == NULL) {
Harvey Harrisonbe859402008-10-31 00:56:28 -07001808 mlog(ML_NOTICE, "attempt to connect from unknown node at %pI4:%d\n",
1809 &sin.sin_addr.s_addr, ntohs(sin.sin_port));
Zach Brown98211482005-12-15 14:31:23 -08001810 ret = -EINVAL;
1811 goto out;
1812 }
1813
Tristan Ye415cf322010-08-02 10:00:26 +08001814 if (o2nm_this_node() >= node->nd_num) {
1815 local_node = o2nm_get_node_by_num(o2nm_this_node());
1816 mlog(ML_NOTICE, "unexpected connect attempt seen at node '%s' ("
1817 "%u, %pI4:%d) from node '%s' (%u, %pI4:%d)\n",
1818 local_node->nd_name, local_node->nd_num,
1819 &(local_node->nd_ipv4_address),
1820 ntohs(local_node->nd_ipv4_port),
1821 node->nd_name, node->nd_num, &sin.sin_addr.s_addr,
1822 ntohs(sin.sin_port));
Zach Brown98211482005-12-15 14:31:23 -08001823 ret = -EINVAL;
1824 goto out;
1825 }
1826
1827 /* this happens all the time when the other node sees our heartbeat
1828 * and tries to connect before we see their heartbeat */
1829 if (!o2hb_check_node_heartbeating_from_callback(node->nd_num)) {
1830 mlog(ML_CONN, "attempt to connect from node '%s' at "
Harvey Harrisonbe859402008-10-31 00:56:28 -07001831 "%pI4:%d but it isn't heartbeating\n",
1832 node->nd_name, &sin.sin_addr.s_addr,
Al Viro97bd7912007-12-05 08:46:47 +00001833 ntohs(sin.sin_port));
Zach Brown98211482005-12-15 14:31:23 -08001834 ret = -EINVAL;
1835 goto out;
1836 }
1837
1838 nn = o2net_nn_from_num(node->nd_num);
1839
1840 spin_lock(&nn->nn_lock);
1841 if (nn->nn_sc)
1842 ret = -EBUSY;
1843 else
1844 ret = 0;
1845 spin_unlock(&nn->nn_lock);
1846 if (ret) {
1847 mlog(ML_NOTICE, "attempt to connect from node '%s' at "
Harvey Harrisonbe859402008-10-31 00:56:28 -07001848 "%pI4:%d but it already has an open connection\n",
1849 node->nd_name, &sin.sin_addr.s_addr,
Al Viro97bd7912007-12-05 08:46:47 +00001850 ntohs(sin.sin_port));
Zach Brown98211482005-12-15 14:31:23 -08001851 goto out;
1852 }
1853
1854 sc = sc_alloc(node);
1855 if (sc == NULL) {
1856 ret = -ENOMEM;
1857 goto out;
1858 }
1859
1860 sc->sc_sock = new_sock;
1861 new_sock = NULL;
1862
1863 spin_lock(&nn->nn_lock);
Tao Ma5cc3bf22008-03-05 15:50:12 +08001864 atomic_set(&nn->nn_timeout, 0);
Zach Brown98211482005-12-15 14:31:23 -08001865 o2net_set_nn_state(nn, sc, 0, 0);
1866 spin_unlock(&nn->nn_lock);
1867
1868 o2net_register_callbacks(sc->sc_sock->sk, sc);
1869 o2net_sc_queue_work(sc, &sc->sc_rx_work);
1870
Andrew Beekhof828ae6a2006-12-04 14:04:55 +01001871 o2net_initialize_handshake();
Zach Brown98211482005-12-15 14:31:23 -08001872 o2net_sendpage(sc, o2net_hand, sizeof(*o2net_hand));
1873
1874out:
1875 if (new_sock)
1876 sock_release(new_sock);
1877 if (node)
1878 o2nm_node_put(node);
Tristan Ye415cf322010-08-02 10:00:26 +08001879 if (local_node)
1880 o2nm_node_put(local_node);
Zach Brown98211482005-12-15 14:31:23 -08001881 if (sc)
1882 sc_put(sc);
1883 return ret;
1884}
1885
David Howellsc4028952006-11-22 14:57:56 +00001886static void o2net_accept_many(struct work_struct *work)
Zach Brown98211482005-12-15 14:31:23 -08001887{
David Howellsc4028952006-11-22 14:57:56 +00001888 struct socket *sock = o2net_listen_sock;
Zach Brown98211482005-12-15 14:31:23 -08001889 while (o2net_accept_one(sock) == 0)
1890 cond_resched();
1891}
1892
1893static void o2net_listen_data_ready(struct sock *sk, int bytes)
1894{
1895 void (*ready)(struct sock *sk, int bytes);
1896
1897 read_lock(&sk->sk_callback_lock);
1898 ready = sk->sk_user_data;
1899 if (ready == NULL) { /* check for teardown race */
1900 ready = sk->sk_data_ready;
1901 goto out;
1902 }
1903
1904 /* ->sk_data_ready is also called for a newly established child socket
1905 * before it has been accepted and the acceptor has set up their
1906 * data_ready.. we only want to queue listen work for our listening
1907 * socket */
1908 if (sk->sk_state == TCP_LISTEN) {
1909 mlog(ML_TCP, "bytes: %d\n", bytes);
1910 queue_work(o2net_wq, &o2net_listen_work);
1911 }
1912
1913out:
1914 read_unlock(&sk->sk_callback_lock);
1915 ready(sk, bytes);
1916}
1917
Sunil Mushranab81afd2007-01-29 14:57:14 -08001918static int o2net_open_listening_sock(__be32 addr, __be16 port)
Zach Brown98211482005-12-15 14:31:23 -08001919{
1920 struct socket *sock = NULL;
1921 int ret;
1922 struct sockaddr_in sin = {
1923 .sin_family = PF_INET,
Mark Fasheh5fdf1e62007-04-27 16:50:03 -07001924 .sin_addr = { .s_addr = addr },
1925 .sin_port = port,
Zach Brown98211482005-12-15 14:31:23 -08001926 };
1927
1928 ret = sock_create(PF_INET, SOCK_STREAM, IPPROTO_TCP, &sock);
1929 if (ret < 0) {
1930 mlog(ML_ERROR, "unable to create socket, ret=%d\n", ret);
1931 goto out;
1932 }
1933
1934 sock->sk->sk_allocation = GFP_ATOMIC;
1935
1936 write_lock_bh(&sock->sk->sk_callback_lock);
1937 sock->sk->sk_user_data = sock->sk->sk_data_ready;
1938 sock->sk->sk_data_ready = o2net_listen_data_ready;
1939 write_unlock_bh(&sock->sk->sk_callback_lock);
1940
1941 o2net_listen_sock = sock;
David Howellsc4028952006-11-22 14:57:56 +00001942 INIT_WORK(&o2net_listen_work, o2net_accept_many);
Zach Brown98211482005-12-15 14:31:23 -08001943
1944 sock->sk->sk_reuse = 1;
1945 ret = sock->ops->bind(sock, (struct sockaddr *)&sin, sizeof(sin));
1946 if (ret < 0) {
Harvey Harrisonbe859402008-10-31 00:56:28 -07001947 mlog(ML_ERROR, "unable to bind socket at %pI4:%u, "
1948 "ret=%d\n", &addr, ntohs(port), ret);
Zach Brown98211482005-12-15 14:31:23 -08001949 goto out;
1950 }
1951
1952 ret = sock->ops->listen(sock, 64);
1953 if (ret < 0) {
Harvey Harrisonbe859402008-10-31 00:56:28 -07001954 mlog(ML_ERROR, "unable to listen on %pI4:%u, ret=%d\n",
1955 &addr, ntohs(port), ret);
Zach Brown98211482005-12-15 14:31:23 -08001956 }
1957
1958out:
1959 if (ret) {
1960 o2net_listen_sock = NULL;
1961 if (sock)
1962 sock_release(sock);
1963 }
1964 return ret;
1965}
1966
1967/*
1968 * called from node manager when we should bring up our network listening
1969 * socket. node manager handles all the serialization to only call this
1970 * once and to match it with o2net_stop_listening(). note,
1971 * o2nm_this_node() doesn't work yet as we're being called while it
1972 * is being set up.
1973 */
1974int o2net_start_listening(struct o2nm_node *node)
1975{
1976 int ret = 0;
1977
1978 BUG_ON(o2net_wq != NULL);
1979 BUG_ON(o2net_listen_sock != NULL);
1980
1981 mlog(ML_KTHREAD, "starting o2net thread...\n");
1982 o2net_wq = create_singlethread_workqueue("o2net");
1983 if (o2net_wq == NULL) {
1984 mlog(ML_ERROR, "unable to launch o2net thread\n");
1985 return -ENOMEM; /* ? */
1986 }
1987
Sunil Mushranab81afd2007-01-29 14:57:14 -08001988 ret = o2net_open_listening_sock(node->nd_ipv4_address,
1989 node->nd_ipv4_port);
Zach Brown98211482005-12-15 14:31:23 -08001990 if (ret) {
1991 destroy_workqueue(o2net_wq);
1992 o2net_wq = NULL;
1993 } else
1994 o2quo_conn_up(node->nd_num);
1995
1996 return ret;
1997}
1998
1999/* again, o2nm_this_node() doesn't work here as we're involved in
2000 * tearing it down */
2001void o2net_stop_listening(struct o2nm_node *node)
2002{
2003 struct socket *sock = o2net_listen_sock;
2004 size_t i;
2005
2006 BUG_ON(o2net_wq == NULL);
2007 BUG_ON(o2net_listen_sock == NULL);
2008
2009 /* stop the listening socket from generating work */
2010 write_lock_bh(&sock->sk->sk_callback_lock);
2011 sock->sk->sk_data_ready = sock->sk->sk_user_data;
2012 sock->sk->sk_user_data = NULL;
2013 write_unlock_bh(&sock->sk->sk_callback_lock);
2014
2015 for (i = 0; i < ARRAY_SIZE(o2net_nodes); i++) {
2016 struct o2nm_node *node = o2nm_get_node_by_num(i);
2017 if (node) {
2018 o2net_disconnect_node(node);
2019 o2nm_node_put(node);
2020 }
2021 }
2022
2023 /* finish all work and tear down the work queue */
2024 mlog(ML_KTHREAD, "waiting for o2net thread to exit....\n");
2025 destroy_workqueue(o2net_wq);
2026 o2net_wq = NULL;
2027
2028 sock_release(o2net_listen_sock);
2029 o2net_listen_sock = NULL;
2030
2031 o2quo_conn_err(node->nd_num);
2032}
2033
2034/* ------------------------------------------------------------ */
2035
2036int o2net_init(void)
2037{
2038 unsigned long i;
2039
2040 o2quo_init();
2041
Sunil Mushran2309e9e2008-04-14 10:46:19 -07002042 if (o2net_debugfs_init())
2043 return -ENOMEM;
2044
Robert P. J. Daycd861282006-12-13 00:34:52 -08002045 o2net_hand = kzalloc(sizeof(struct o2net_handshake), GFP_KERNEL);
2046 o2net_keep_req = kzalloc(sizeof(struct o2net_msg), GFP_KERNEL);
2047 o2net_keep_resp = kzalloc(sizeof(struct o2net_msg), GFP_KERNEL);
Zach Brown98211482005-12-15 14:31:23 -08002048 if (!o2net_hand || !o2net_keep_req || !o2net_keep_resp) {
2049 kfree(o2net_hand);
2050 kfree(o2net_keep_req);
2051 kfree(o2net_keep_resp);
2052 return -ENOMEM;
2053 }
2054
2055 o2net_hand->protocol_version = cpu_to_be64(O2NET_PROTOCOL_VERSION);
2056 o2net_hand->connector_id = cpu_to_be64(1);
2057
2058 o2net_keep_req->magic = cpu_to_be16(O2NET_MSG_KEEP_REQ_MAGIC);
2059 o2net_keep_resp->magic = cpu_to_be16(O2NET_MSG_KEEP_RESP_MAGIC);
2060
2061 for (i = 0; i < ARRAY_SIZE(o2net_nodes); i++) {
2062 struct o2net_node *nn = o2net_nn_from_num(i);
2063
Tao Ma5cc3bf22008-03-05 15:50:12 +08002064 atomic_set(&nn->nn_timeout, 0);
Zach Brown98211482005-12-15 14:31:23 -08002065 spin_lock_init(&nn->nn_lock);
David Howellsc4028952006-11-22 14:57:56 +00002066 INIT_DELAYED_WORK(&nn->nn_connect_work, o2net_start_connect);
2067 INIT_DELAYED_WORK(&nn->nn_connect_expired,
2068 o2net_connect_expired);
2069 INIT_DELAYED_WORK(&nn->nn_still_up, o2net_still_up);
Zach Brown98211482005-12-15 14:31:23 -08002070 /* until we see hb from a node we'll return einval */
2071 nn->nn_persistent_error = -ENOTCONN;
2072 init_waitqueue_head(&nn->nn_sc_wq);
2073 idr_init(&nn->nn_status_idr);
2074 INIT_LIST_HEAD(&nn->nn_status_list);
2075 }
2076
2077 return 0;
2078}
2079
2080void o2net_exit(void)
2081{
2082 o2quo_exit();
2083 kfree(o2net_hand);
2084 kfree(o2net_keep_req);
2085 kfree(o2net_keep_resp);
Sunil Mushran2309e9e2008-04-14 10:46:19 -07002086 o2net_debugfs_exit();
Zach Brown98211482005-12-15 14:31:23 -08002087}