tdb: expose transaction lock infrastructure for ctdb
[sahlberg/ctdb.git] / ib / ibw_ctdb_init.c
index 33d6ecaf7f91ab2cab501462793ed72b4b5a49f9..fed1381f6dfb8daca1d3f169aae4d688ac4925f6 100644 (file)
@@ -8,7 +8,7 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "includes.h"
-#include "lib/events/events.h"
+#include "lib/tevent/tevent.h"
 #include <system/network.h>
 #include <assert.h>
 #include "ctdb_private.h"
@@ -42,12 +41,12 @@ static int ctdb_ibw_listen(struct ctdb_context *ctdb, int backlog)
                return -1;
 
        if (ibw_bind(ictx, &my_addr)) {
-               DEBUG(0, ("ctdb_ibw_listen: ibw_bind failed\n"));
+               DEBUG(DEBUG_CRIT, ("ctdb_ibw_listen: ibw_bind failed\n"));
                return -1;
        }
 
        if (ibw_listen(ictx, backlog)) {
-               DEBUG(0, ("ctdb_ibw_listen: ibw_listen failed\n"));
+               DEBUG(DEBUG_CRIT, ("ctdb_ibw_listen: ibw_listen failed\n"));
                return -1;
        }
 
@@ -83,7 +82,7 @@ static int ctdb_ibw_initialise(struct ctdb_context *ctdb)
 
        for (i=0; i<ctdb->num_nodes; i++) {
                if (ctdb_ibw_add_node(ctdb->nodes[i]) != 0) {
-                       DEBUG(0, ("methods->add_node failed at %d\n", i));
+                       DEBUG(DEBUG_CRIT, ("methods->add_node failed at %d\n", i));
                        return -1;
                }
        }
@@ -119,7 +118,7 @@ static int ctdb_ibw_send_pkt(struct ibw_conn *conn, uint8_t *data, uint32_t leng
        void    *buf, *key;
 
        if (ibw_alloc_send_buf(conn, &buf, &key, length)) {
-               DEBUG(0, ("queue_pkt/ibw_alloc_send_buf failed\n"));
+               DEBUG(DEBUG_ERR, ("queue_pkt/ibw_alloc_send_buf failed\n"));
                return -1;
        }
 
@@ -157,7 +156,7 @@ static int ctdb_ibw_queue_pkt(struct ctdb_node *node, uint8_t *data, uint32_t le
        assert(cn!=NULL);
 
        if (cn->conn==NULL) {
-               DEBUG(0, ("ctdb_ibw_queue_pkt: conn is NULL\n"));
+               DEBUG(DEBUG_ERR, ("ctdb_ibw_queue_pkt: conn is NULL\n"));
                return -1;
        }
 
@@ -165,7 +164,11 @@ static int ctdb_ibw_queue_pkt(struct ctdb_node *node, uint8_t *data, uint32_t le
                rc = ctdb_ibw_send_pkt(cn->conn, data, length);
        } else {
                struct ctdb_ibw_msg *p = talloc_zero(cn, struct ctdb_ibw_msg);
+               CTDB_NO_MEMORY(node->ctdb, p);
+
                p->data = talloc_memdup(p, data, length);
+               CTDB_NO_MEMORY(node->ctdb, p->data);
+
                p->length = length;
 
                DLIST_ADD_AFTER(cn->queue, p, cn->queue_last);
@@ -178,6 +181,12 @@ static int ctdb_ibw_queue_pkt(struct ctdb_node *node, uint8_t *data, uint32_t le
        return rc;
 }
 
+static void ctdb_ibw_restart(struct ctdb_node *node)
+{
+       /* TODO: implement this method for IB */
+       DEBUG(DEBUG_ALERT,("WARNING: method restart is not yet implemented for IB\n"));
+}
+
 /*
  * transport packet allocator - allows transport to control memory for packets
  */
@@ -205,6 +214,7 @@ static const struct ctdb_methods ctdb_ibw_methods = {
        .queue_pkt = ctdb_ibw_queue_pkt,
        .add_node = ctdb_ibw_add_node,
        .allocate_pkt = ctdb_ibw_allocate_pkt,
+       .restart      = ctdb_ibw_restart,
 
 //     .stop = ctdb_ibw_stop
 };
@@ -216,7 +226,7 @@ int ctdb_ibw_init(struct ctdb_context *ctdb)
 {
        struct ibw_ctx *ictx;
 
-       DEBUG(10, ("ctdb_ibw_init invoked...\n"));
+       DEBUG(DEBUG_DEBUG, ("ctdb_ibw_init invoked...\n"));
        ictx = ibw_init(
                NULL, //struct ibw_initattr *attr, /* TODO */
                0, //int nattr, /* TODO */
@@ -226,13 +236,13 @@ int ctdb_ibw_init(struct ctdb_context *ctdb)
                ctdb->ev);
 
        if (ictx==NULL) {
-               DEBUG(0, ("ctdb_ibw_init: ibw_init failed\n"));
+               DEBUG(DEBUG_CRIT, ("ctdb_ibw_init: ibw_init failed\n"));
                return -1;
        }
 
        ctdb->methods = &ctdb_ibw_methods;
        ctdb->private_data = ictx;
        
-       DEBUG(10, ("ctdb_ibw_init succeeded.\n"));
+       DEBUG(DEBUG_DEBUG, ("ctdb_ibw_init succeeded.\n"));
        return 0;
 }