Improve protocol robustness and invoke user callbacks.
authorLinus Nordberg <linus@nordu.net>
Sat, 19 Feb 2011 17:55:51 +0000 (18:55 +0100)
committerLinus Nordberg <linus@nordu.net>
Sat, 19 Feb 2011 17:55:51 +0000 (18:55 +0100)
All aborts are removed, as well as all asserts which aren't
programming errors.

When an invalid packet is received, the connection is closed, as per
draft-ietf-radext-tcp-transport-08 (2.6.4).

Use new rs_debug() macro rather than fprintf() for debug printouts.

Coding style overhaul.

lib/conn.c
lib/debug.c
lib/debug.h
lib/err.c
lib/include/radsec/radsec.h
lib/packet.c
lib/radsec.c
lib/request.c
lib/rsp_tlscommon.c

index b65b1da..717eba6 100644 (file)
@@ -4,7 +4,9 @@
 #include <config.h>
 #endif
 
+#include <string.h>
 #include <assert.h>
+#include <debug.h>
 #include <event2/event.h>
 #include <radsec/radsec.h>
 #include <radsec/radsec-impl.h>
@@ -90,12 +92,33 @@ rs_conn_add_listener (struct rs_connection *conn, rs_conn_type_t type,
                              "%s: NYI", __func__);
 }
 
-void
+
+int
+rs_conn_disconnect (struct rs_connection *conn)
+{
+  int err = 0;
+
+  assert (conn);
+
+  err = evutil_closesocket (conn->active_peer->fd);
+  conn->active_peer->fd = -1;
+  return err;
+}
+
+int
 rs_conn_destroy (struct rs_connection *conn)
 {
   struct rs_peer *p;
+  int err = 0;
 
-#warning "TODO: Disconnect active_peer."
+  assert (conn);
+
+  if (conn->active_peer->is_connected)
+    {
+      err = rs_conn_disconnect (conn);
+      if (err)
+       return err;
+    }
 
   for (p = conn->peers; p; p = p->next)
     {
@@ -107,6 +130,8 @@ rs_conn_destroy (struct rs_connection *conn)
 
   if (conn->evb)
     event_base_free (conn->evb);
+
+  return 0;
 }
 
 int
@@ -116,11 +141,27 @@ rs_conn_set_eventbase (struct rs_connection *conn, struct event_base *eb)
                              "%s: NYI", __func__);
 }
 
-int
+void
 rs_conn_set_callbacks (struct rs_connection *conn, struct rs_conn_callbacks *cb)
 {
-  return rs_err_conn_push_fl (conn, RSE_NOSYS, __FILE__, __LINE__,
-                             "%s: NYI", __func__);
+  assert (conn);
+  conn->user_dispatch_flag = 1;
+  memcpy (&conn->callbacks, cb, sizeof (conn->callbacks));
+}
+
+void
+rs_conn_del_callbacks (struct rs_connection *conn)
+{
+  assert (conn);
+  conn->user_dispatch_flag = 0;
+  memset (&conn->callbacks, 0, sizeof (conn->callbacks));
+}
+
+struct rs_conn_callbacks *
+rs_conn_get_callbacks(struct rs_connection *conn)
+{
+  assert (conn);
+  return &conn->callbacks;
 }
 
 int
index 485e29a..4544f3c 100644 (file)
 void
 rs_dump_packet (const struct rs_packet *pkt)
 {
-  const RADIUS_PACKET *p = pkt->rpkt;
-  assert(p);
+  const RADIUS_PACKET *p = NULL;
+
+  if (!pkt || !pkt->rpkt)
+    return;
+  p = pkt->rpkt;
 
   fprintf (stderr, "\tCode: %u, Identifier: %u, Lenght: %u\n",
           p->code,
@@ -32,7 +35,7 @@ rs_dump_attr (const struct rs_attr *attr)
 
 #if defined DEBUG
 int
-rs_debug (const char *fmt, ...)
+_rs_debug (const char *fmt, ...)
 {
   int n;
   va_list args;
index 3156c24..4a899b2 100644 (file)
 extern "C" {
 #endif
 
+struct rs_packet;
+struct rs_attr;
 void rs_dump_packet (const struct rs_packet *pkt);
 void rs_dump_attr (const struct rs_attr *attr);
+int _rs_debug (const char *fmt, ...);
 
-#if defined DEBUG
-int rs_debug (const char *fmt, ...);
+#if defined (DEBUG)
+#define rs_debug(x) _rs_debug x
 #else
-#define rs_debug (void)
+#define rs_debug(x) do {;} while (0)
 #endif
 
 #if defined (__cplusplus)
index d111115..a7ddeb9 100644 (file)
--- a/lib/err.c
+++ b/lib/err.c
@@ -21,12 +21,12 @@ static const char *_errtxt[] = {
   "bad hostname or port",      /* 7 RSE_BADADDR */
   "no peer configured",                /* 8 RSE_NOPEER */
   "libevent error",            /* 9 RSE_EVENT */
-  "connection error",          /* 10 RSE_CONNERR */
+  "socket error",              /* 10 RSE_SOCKERR */
   "invalid configuration file",        /* 11 RSE_CONFIG */
   "authentication failed",     /* 12 RSE_BADAUTH */
   "internal error",            /* 13 RSE_INTERNAL */
   "SSL error",                 /* 14 RSE_SSLERR */
-  "ERR 15",                    /*  RSE_ */
+  "invalid packet",            /* 15 RSE_INVALID_PKT */
   "ERR 16",                    /*  RSE_ */
   "ERR 17",                    /*  RSE_ */
   "ERR 18",                    /*  RSE_ */
index a1f7afa..d609118 100644 (file)
@@ -15,11 +15,12 @@ enum rs_err_code {
     RSE_BADADDR = 7,
     RSE_NOPEER = 8,
     RSE_EVENT = 9,             /* libevent error.  */
-    RSE_CONNERR = 10,
+    RSE_SOCKERR = 10,
     RSE_CONFIG = 11,
     RSE_BADAUTH = 12,
     RSE_INTERNAL = 13,
-    RSE_SSLERR = 14,     /* OpenSSL error.  */
+    RSE_SSLERR = 14,           /* OpenSSL error.  */
+    RSE_INVALID_PKT = 15,
     RSE_SOME_ERROR = 21,  /* Unspecified error.  Shouldn't happen.  */
 };
 
@@ -62,8 +63,8 @@ struct rs_alloc_scheme {
 typedef void (*rs_conn_connected_cb) (void *user_data /* FIXME: peer? */ );
 typedef void (*rs_conn_disconnected_cb) (void *user_data
                                         /* FIXME: reason? */ );
-typedef void (*rs_conn_packet_received_cb) (const struct rs_packet *
-                                           packet, void *user_data);
+typedef void (*rs_conn_packet_received_cb) (struct rs_packet *packet,
+                                           void *user_data);
 typedef void (*rs_conn_packet_sent_cb) (void *user_data);
 struct rs_conn_callbacks {
     /** Callback invoked when the connection has been established.  */
@@ -92,13 +93,14 @@ int rs_conn_create(struct rs_context *ctx, struct rs_connection **conn,
 void rs_conn_set_type(struct rs_connection *conn, rs_conn_type_t type);
 int rs_conn_add_listener(struct rs_connection *conn, rs_conn_type_t type,
                         const char *hostname, int port);
-void rs_conn_destroy(struct rs_connection *conn);
+int rs_conn_disconnect (struct rs_connection *conn);
+int rs_conn_destroy(struct rs_connection *conn);
 int rs_conn_set_eventbase(struct rs_connection *conn,
                          struct event_base *eb);
-int rs_conn_set_callbacks(struct rs_connection *conn,
+void rs_conn_set_callbacks(struct rs_connection *conn,
                          struct rs_conn_callbacks *cb);
-struct rs_conn_callbacks *rs_conn_get_callbacks(struct rs_connection
-                                               *conn);
+void rs_conn_del_callbacks(struct rs_connection *conn);
+struct rs_conn_callbacks *rs_conn_get_callbacks(struct rs_connection *conn);
 int rs_conn_select_server(struct rs_connection *conn, const char *name);
 int rs_conn_get_current_server(struct rs_connection *conn,
                               const char *name, size_t buflen);
index 126510b..4927725 100644 (file)
 #include <freeradius/libradius.h>
 #include <event2/event.h>
 #include <event2/bufferevent.h>
-#if defined RS_ENABLE_TLS
-#include <event2/bufferevent_ssl.h>
-#include <openssl/err.h>
-#endif
 #include <radsec/radsec.h>
 #include <radsec/radsec-impl.h>
 #include "tls.h"
 #include "debug.h"
-#if defined DEBUG
+#if defined (RS_ENABLE_TLS)
+#include <event2/bufferevent_ssl.h>
+#include <openssl/err.h>
+#endif
+#if defined (DEBUG)
 #include <netdb.h>
 #include <sys/socket.h>
+#include <event2/buffer.h>
 #endif
 
 static int
@@ -52,7 +53,7 @@ _do_send (struct rs_packet *pkt)
                 pkt->conn->active_peer->addr->ai_addrlen,
                 host, sizeof(host), serv, sizeof(serv),
                 0 /* NI_NUMERICHOST|NI_NUMERICSERV*/);
-    rs_debug ("%s: about to send this to %s:%s:\n", __func__, host, serv);
+    rs_debug (("%s: about to send this to %s:%s:\n", __func__, host, serv));
     rs_dump_packet (pkt);
   }
 #endif
@@ -67,13 +68,32 @@ _do_send (struct rs_packet *pkt)
 }
 
 static void
+_on_connect (struct rs_connection *conn)
+{
+  conn->active_peer->is_connected = 1;
+  rs_debug (("%s: %p connected\n", __func__, conn->active_peer));
+  if (conn->callbacks.connected_cb)
+    conn->callbacks.connected_cb (conn->user_data);
+}
+
+static void
+_on_disconnect (struct rs_connection *conn)
+{
+  conn->active_peer->is_connected = 0;
+  rs_debug (("%s: %p disconnected\n", __func__, conn->active_peer));
+  if (conn->callbacks.disconnected_cb)
+    conn->callbacks.disconnected_cb (conn->user_data);
+}
+
+static void
 _event_cb (struct bufferevent *bev, short events, void *ctx)
 {
   struct rs_packet *pkt = (struct rs_packet *)ctx;
   struct rs_connection *conn;
   struct rs_peer *p;
-#if defined RS_ENABLE_TLS
-  unsigned long err;
+  int sockerr;
+#if defined (RS_ENABLE_TLS)
+  unsigned long tlserr;
 #endif
 
   assert (pkt);
@@ -85,35 +105,46 @@ _event_cb (struct bufferevent *bev, short events, void *ctx)
   p->is_connecting = 0;
   if (events & BEV_EVENT_CONNECTED)
     {
-      p->is_connected = 1;
-      if (conn->callbacks.connected_cb)
-       conn->callbacks.connected_cb (conn->user_data);
-      rs_debug ("%s: connected\n", __func__);
+      _on_connect (conn);
       if (_do_send (pkt))
-       return;
-      if (conn->callbacks.sent_cb)
-       conn->callbacks.sent_cb (conn->user_data);
-      /* Packet will be freed in write callback.  */
+       rs_debug (("%s: error sending\n", __func__));
+    }
+  else if (events & BEV_EVENT_EOF)
+    {
+      _on_disconnect (conn);
     }
   else if (events & BEV_EVENT_ERROR)
     {
-#if defined RS_ENABLE_TLS
+      sockerr = evutil_socket_geterror (conn->active_peer->fd);
+      if (sockerr == 0)        /* FIXME: True that errno == 0 means closed? */
+       {
+         _on_disconnect (conn);
+       }
+      else
+       {
+         rs_err_conn_push_fl (pkt->conn, RSE_SOCKERR, __FILE__, __LINE__,
+                              "%d: socket error %d (%s)",
+                              conn->active_peer->fd,
+                              sockerr,
+                              evutil_socket_error_to_string (sockerr));
+         rs_debug (("%s: socket error on fd %d: %d\n", __func__,
+                    conn->active_peer->fd,
+                    sockerr));
+       }
+#if defined (RS_ENABLE_TLS)
       if (conn->tls_ssl)       /* FIXME: correct check?  */
        {
-         for (err = bufferevent_get_openssl_error (conn->bev);
-              err;
-              err = bufferevent_get_openssl_error (conn->bev))
+         for (tlserr = bufferevent_get_openssl_error (conn->bev);
+              tlserr;
+              tlserr = bufferevent_get_openssl_error (conn->bev))
            {
-             fprintf (stderr, "%s: DEBUG: openssl error: %s\n", __func__,
-                      ERR_error_string (err, NULL)); /* FIXME: DEBUG, until verified that pushed errors will actually be handled  */
+             rs_debug (("%s: openssl error: %s\n", __func__,
+                        ERR_error_string (tlserr, NULL)));
              rs_err_conn_push_fl (pkt->conn, RSE_SSLERR, __FILE__, __LINE__,
-                                  "%d", err);
+                                  "%d", tlserr);
            }
        }
 #endif /* RS_ENABLE_TLS */
-
-      rs_err_conn_push_fl (pkt->conn, RSE_CONNERR, __FILE__, __LINE__, NULL);
-      fprintf (stderr, "%s: DEBUG: BEV_EVENT_ERROR\n", __func__); /* FIXME: DEBUG, until verified that pushed errors will actually be handled  */
     }
 }
 
@@ -121,122 +152,169 @@ static void
 _write_cb (struct bufferevent *bev, void *ctx)
 {
   struct rs_packet *pkt = (struct rs_packet *) ctx;
-  int err;
 
   assert (pkt);
   assert (pkt->conn);
 
-  rs_debug ("%s: packet written, breaking event loop\n", __func__);
-  err = event_base_loopbreak (pkt->conn->evb);
-  if (err < 0)
-    rs_err_conn_push_fl (pkt->conn, RSE_EVENT, __FILE__, __LINE__,
-                        "event_base_loopbreak: %s",
-                        evutil_gai_strerror(err));
+  if (pkt->conn->callbacks.sent_cb)
+    pkt->conn->callbacks.sent_cb (pkt->conn->user_data);
 }
 
-static void
-_read_cb (struct bufferevent *bev, void *ctx)
+/* Read one RADIUS packet header.  Return !0 on error.  A return value
+   of 0 means that we need more data.  */
+static int
+_read_header (struct rs_packet *pkt)
 {
-  struct rs_packet *pkt = (struct rs_packet *)ctx;
-  int err;
-  size_t n;
+  size_t n = 0;
 
-  assert (pkt);
-  assert (pkt->conn);
-  assert (pkt->rpkt);
-
-  pkt->rpkt->sockfd = pkt->conn->active_peer->fd; /* FIXME: Why?  */
-  pkt->rpkt->vps = NULL;                         /* FIXME: Why?  */
-
-  if (!pkt->hdr_read_flag)
+  n = bufferevent_read (pkt->conn->bev, pkt->hdr, RS_HEADER_LEN);
+  if (n == RS_HEADER_LEN)
     {
-      n = bufferevent_read (pkt->conn->bev, pkt->hdr, RS_HEADER_LEN);
-      if (n == RS_HEADER_LEN)
+      pkt->hdr_read_flag = 1;
+      pkt->rpkt->data_len = (pkt->hdr[2] << 8) + pkt->hdr[3];
+      if (pkt->rpkt->data_len < 20 || pkt->rpkt->data_len > 4096)
        {
-         pkt->hdr_read_flag = 1;
-         pkt->rpkt->data_len = (pkt->hdr[2] << 8) + pkt->hdr[3];
-         if (pkt->rpkt->data_len < 20 /* || len > 4096 */)
-           abort ();   /* FIXME: Read and discard invalid packet.  */
-         pkt->rpkt->data = rs_malloc (pkt->conn->ctx, pkt->rpkt->data_len);
-         if (!pkt->rpkt->data)
-           {
-             rs_err_conn_push_fl (pkt->conn, RSE_NOMEM, __FILE__, __LINE__,
-                                  NULL);
-             abort ();         /* FIXME: handle ENOMEM.  */
-           }
-         memcpy (pkt->rpkt->data, pkt->hdr, RS_HEADER_LEN);
-         bufferevent_setwatermark (pkt->conn->bev, EV_READ,
-                                   pkt->rpkt->data_len - RS_HEADER_LEN, 0);
-         rs_debug ("%s: packet header read, total pkt len=%d\n",
-                   __func__, pkt->rpkt->data_len);
+         bufferevent_free (pkt->conn->bev); /* Close connection.  */
+         return rs_err_conn_push (pkt->conn, RSE_INVALID_PKT,
+                                  "invalid packet length: %d",
+                                  pkt->rpkt->data_len);
        }
-      else if (n < 0)
-       return;  /* Buffer frozen.  FIXME: Properly handled above?  */
-      else
+      pkt->rpkt->data = rs_malloc (pkt->conn->ctx, pkt->rpkt->data_len);
+      if (!pkt->rpkt->data)
        {
-         assert (!"short header");
-         abort ();             /* FIXME: handle short header */
+         bufferevent_free (pkt->conn->bev); /* Close connection.  */
+         return rs_err_conn_push_fl (pkt->conn, RSE_NOMEM, __FILE__, __LINE__,
+                                     NULL);
        }
+      memcpy (pkt->rpkt->data, pkt->hdr, RS_HEADER_LEN);
+      bufferevent_setwatermark (pkt->conn->bev, EV_READ,
+                               pkt->rpkt->data_len - RS_HEADER_LEN, 0);
+      rs_debug (("%s: packet header read, total pkt len=%d\n",
+                __func__, pkt->rpkt->data_len));
+    }
+  else if (n < 0)
+    {
+      rs_debug (("%s: buffer frozen while reading header\n", __func__));
     }
+  else     /* Error: libevent gave us less than the low watermark. */
+    {
+      bufferevent_free (pkt->conn->bev); /* Close connection.  */
+      return rs_err_conn_push_fl (pkt->conn, RSE_INTERNAL, __FILE__, __LINE__,
+                                 "got %d octets reading header", n);
+    }
+
+  return 0;
+}
+
+static int
+_read_packet (struct rs_packet *pkt)
+{
+  size_t n = 0;
+
+  rs_debug (("%s: trying to read %d octets of packet data\n", __func__,
+            pkt->rpkt->data_len - RS_HEADER_LEN));
 
-  rs_debug ("%s: trying to read %d octets of packet data\n", __func__,
-           pkt->rpkt->data_len - RS_HEADER_LEN);
   n = bufferevent_read (pkt->conn->bev,
                        pkt->rpkt->data + RS_HEADER_LEN,
                        pkt->rpkt->data_len - RS_HEADER_LEN);
-  rs_debug ("%s: read %ld octets of packet data\n", __func__, n);
+
+  rs_debug (("%s: read %ld octets of packet data\n", __func__, n));
 
   if (n == pkt->rpkt->data_len - RS_HEADER_LEN)
     {
       bufferevent_disable (pkt->conn->bev, EV_READ);
-      rs_debug ("%s: complete packet read\n", __func__);
+      rs_debug (("%s: complete packet read\n", __func__));
       pkt->hdr_read_flag = 0;
       memset (pkt->hdr, 0, sizeof(*pkt->hdr));
+
+      /* Checks done by rad_packet_ok:
+        - lenghts (FIXME: checks really ok for tcp?)
+        - invalid code field
+        - attribute lengths >= 2
+        - attribute sizes adding up correctly  */
       if (!rad_packet_ok (pkt->rpkt, 0) != 0)
        {
-         rs_err_conn_push_fl (pkt->conn, RSE_FR, __FILE__, __LINE__,
-                              "rad_packet_ok: %s", fr_strerror ());
-         return;
+         bufferevent_free (pkt->conn->bev); /* Close connection.  */
+         return rs_err_conn_push_fl (pkt->conn, RSE_FR, __FILE__, __LINE__,
+                                     "invalid packet: %s", fr_strerror ());
        }
-      assert (pkt->original); /* FIXME: where's the bug if this fires?  */
 
-      /* Verify header and message authenticator.  */
-      if (rad_verify (pkt->rpkt, pkt->original->rpkt,
-                     pkt->conn->active_peer->secret))
-       {
-         rs_err_conn_push_fl (pkt->conn, RSE_FR, __FILE__, __LINE__,
-                              "rad_verify: %s", fr_strerror ());
-         return;
-       }
+      /* TODO: Verify that reception of an unsolicited response packet
+        results in connection being closed.  */
 
-      /* Decode and decrypt.  */
-      if (rad_decode (pkt->rpkt, pkt->original->rpkt,
-                     pkt->conn->active_peer->secret))
+      /* If we have a request to match this response against, verify
+        and decode the response.  */
+      if (pkt->original)
        {
-         rs_err_conn_push_fl (pkt->conn, RSE_FR, __FILE__, __LINE__,
-                              "rad_decode: %s", fr_strerror ());
-         return;
+         /* Verify header and message authenticator.  */
+         if (rad_verify (pkt->rpkt, pkt->original->rpkt,
+                         pkt->conn->active_peer->secret))
+           {
+             bufferevent_free (pkt->conn->bev); /* Close connection.  */
+             return rs_err_conn_push_fl (pkt->conn, RSE_FR, __FILE__, __LINE__,
+                                         "rad_verify: %s", fr_strerror ());
+           }
+
+         /* Decode and decrypt.  */
+         if (rad_decode (pkt->rpkt, pkt->original->rpkt,
+                         pkt->conn->active_peer->secret))
+           {
+             bufferevent_free (pkt->conn->bev); /* Close connection.  */
+             return rs_err_conn_push_fl (pkt->conn, RSE_FR, __FILE__, __LINE__,
+                                         "rad_decode: %s", fr_strerror ());
+           }
        }
 
+#if defined (DEBUG)
+      /* Find out what happens if there's data left in the buffer.  */
+      {
+       size_t rest = 0;
+       rest = evbuffer_get_length (bufferevent_get_input (pkt->conn->bev));
+       if (rest)
+         rs_debug (("%s: returning with %d octets left in buffer\n", __func__,
+                    rest));
+      }
+#endif
+
+      /* Hand over message to user, changes ownership of pkt.  Don't
+        touch it afterwards -- it might have been freed.  */
       if (pkt->conn->callbacks.received_cb)
        pkt->conn->callbacks.received_cb (pkt, pkt->conn->user_data);
-
-      err = event_base_loopbreak (pkt->conn->evb);
-      if (err < 0)
-       {
-         rs_err_conn_push_fl (pkt->conn, RSE_EVENT, __FILE__, __LINE__,
-                              "event_base_loopbreak: %s",
-                              evutil_gai_strerror(err));
-         return;
-       }
-    }
-  else if (n < 0)
-    return;           /* Buffer frozen.  FIXME: Properly handled?  */
-  else
-    {
-      assert (!"short packet");
-      abort ();                        /* FIXME: handle short packet */
     }
+  else if (n < 0)              /* Buffer frozen.  */
+    rs_debug (("%s: buffer frozen when reading packet\n", __func__));
+  else                         /* Short packet.  */
+    rs_debug (("%s: waiting for another %d octets\n", __func__,
+              pkt->rpkt->data_len - RS_HEADER_LEN - n));
+
+  return 0;
+}
+
+/* Read callback for TCP.
+
+   Read exactly one RADIUS message from BEV and store it in struct
+   rs_packet passed in CTX (hereby called 'pkt').
+
+   Verify the received packet against pkt->original, if !NULL.
+
+   Inform upper layer about successful reception of valid RADIUS
+   message by invoking conn->callbacks.recevied_cb(), if !NULL.  */
+static void
+_read_cb (struct bufferevent *bev, void *ctx)
+{
+  struct rs_packet *pkt = (struct rs_packet *) ctx;
+
+  assert (pkt);
+  assert (pkt->conn);
+  assert (pkt->rpkt);
+
+  pkt->rpkt->sockfd = pkt->conn->active_peer->fd;
+  pkt->rpkt->vps = NULL;
+
+  if (!pkt->hdr_read_flag)
+    if (_read_header (pkt))
+      return;
+  _read_packet (pkt);
 }
 
 static void
@@ -328,7 +406,7 @@ _init_bev (struct rs_connection *conn, struct rs_peer *peer)
        return rs_err_conn_push_fl (conn, RSE_EVENT, __FILE__, __LINE__,
                                    "bufferevent_socket_new");
       break;
-#if defined RS_ENABLE_TLS
+#if defined (RS_ENABLE_TLS)
     case RS_CONN_TYPE_TLS:
       if (rs_tls_init (conn))
        return -1;
@@ -460,20 +538,39 @@ rs_packet_create_auth_request (struct rs_connection *conn,
   return RSE_OK;
 }
 
+/* User callback used when we're dispatching for user.  */
+static void
+_wcb (void *user_data)
+{
+  struct rs_connection *conn = (struct rs_connection *) user_data;
+  int err;
+
+  assert (conn);
+
+  /* When we're running the event loop for the user, we must break
+     it in order to give the control back to the user.  */
+  err = event_base_loopbreak (conn->evb);
+  if (err < 0)
+    rs_err_conn_push_fl (conn, RSE_EVENT, __FILE__, __LINE__,
+                        "event_base_loopbreak: %s",
+                        evutil_gai_strerror(err));
+}
+
 int
 rs_packet_send (struct rs_packet *pkt, void *user_data)
 {
-  struct rs_connection *conn;
-  int err;
+  struct rs_connection *conn = NULL;
+  int err = RSE_OK;
 
   assert (pkt);
+  assert (pkt->conn);
   conn = pkt->conn;
 
   if (_conn_is_open_p (conn))
     _do_send (pkt);
   else
     if (_conn_open (conn, pkt))
-      return RSE_SOME_ERROR; /* FIXME: inconsistent with all the return -1 */
+      return -1;
 
   assert (conn->evb);
   assert (conn->bev);
@@ -481,37 +578,69 @@ rs_packet_send (struct rs_packet *pkt, void *user_data)
   assert (conn->active_peer->fd >= 0);
 
   conn->user_data = user_data;
-  bufferevent_setcb (conn->bev, _read_cb, _write_cb, _event_cb, pkt);
+  bufferevent_setcb (conn->bev, NULL, _write_cb, _event_cb, pkt);
 
   /* Do dispatch, unless the user wants to do it herself.  */
   if (!conn->user_dispatch_flag)
     {
+      conn->callbacks.sent_cb = _wcb;
+      conn->user_data = conn;
+      rs_debug (("%s: entering event loop\n", __func__));
       err = event_base_dispatch (conn->evb);
       if (err < 0)
        return rs_err_conn_push_fl (pkt->conn, RSE_EVENT, __FILE__, __LINE__,
                                    "event_base_dispatch: %s",
                                    evutil_gai_strerror(err));
+      rs_debug (("%s: event loop done\n", __func__));
+      conn->callbacks.sent_cb = NULL;
+      conn->user_data = NULL;
 
-      rs_debug ("%s: event loop done\n", __func__);
-      if (!event_base_got_break(conn->evb))
-       {
-         /* Something went wrong -- we never reached loopbreak in
-            _write_cb().  FIXME: Pull error/errors?  */
-         return RSE_SOME_ERROR; /* FIXME */
-       }
+      if (!event_base_got_break (conn->evb))
+       return -1;
     }
 
   return RSE_OK;
 }
 
+static void
+_rcb (struct rs_packet *packet, void *user_data)
+{
+  int err = 0;
+
+  /* When we're running the event loop for the user, we must break it
+     in order to give the control back to the user.  */
+  err = event_base_loopbreak (packet->conn->evb);
+  if (err < 0)
+    rs_err_conn_push_fl (packet->conn, RSE_EVENT, __FILE__, __LINE__,
+                        "event_base_loopbreak: %s",
+                        evutil_gai_strerror(err));
+}
+
+/* Special function used in libradsec blocking dispatching mode,
+   i.e. with socket set to block on read/write and with no libradsec
+   callbacks registered.
+
+   For any other use of libradsec, a the received_cb callback should
+   be registered in the callbacks member of struct rs_connection.
+
+   On successful reception, verification and decoding of a RADIUS
+   message, PKT_OUT will upon return point at a pointer to a struct
+   rs_packet containing the message.
+
+   If anything goes wrong or if the read times out (TODO: explain),
+   PKT_OUT will point at the NULL pointer and one or more errors are
+   pushed on the connection (available through rs_err_conn_pop()).  */
+
 int
 rs_conn_receive_packet (struct rs_connection *conn,
                        struct rs_packet *request,
                        struct rs_packet **pkt_out)
 {
-  struct rs_packet *pkt;
+  int err = RSE_OK;
+  struct rs_packet *pkt = NULL;
 
   assert (conn);
+  assert (!conn->user_dispatch_flag); /* Dispatching mode only.  */
 
   if (rs_packet_create (conn, pkt_out))
     return -1;
@@ -526,33 +655,32 @@ rs_conn_receive_packet (struct rs_connection *conn,
   assert (conn->active_peer);
   assert (conn->active_peer->fd >= 0);
 
+  /* Install read and event callbacks with libevent.  */
   bufferevent_setwatermark (conn->bev, EV_READ, RS_HEADER_LEN, 0);
   bufferevent_enable (conn->bev, EV_READ);
-  bufferevent_setcb (conn->bev, _read_cb, _write_cb, _event_cb, pkt);
+  bufferevent_setcb (conn->bev, _read_cb, NULL, _event_cb, pkt);
 
-  /* Do dispatch, unless the user wants to do it herself.  */
-  if (!conn->user_dispatch_flag)
-    {
-      event_base_dispatch (conn->evb);
-      rs_debug ("%s: event loop done", __func__);
-      if (event_base_got_break (conn->evb))
-       {
-         rs_debug (", got this:\n");
-#if defined DEBUG
-         rs_dump_packet (pkt);
-#endif
-       }
-      else
-       {
-         rs_debug (", no reply\n");
-         /* Something went wrong -- we never reached loopbreak in
-            _read_cb().  FIXME: Pull error/errors?  */
-         return RSE_SOME_ERROR; /* FIXME */
-       }
-    }
+  /* Install read callback with ourselves, for signaling successful
+     reception of message.  */
+  conn->callbacks.received_cb = _rcb;
+
+  /* Dispatch.  */
+  rs_debug (("%s: entering event loop\n", __func__));
+  err = event_base_dispatch (conn->evb);
+  if (err < 0)
+    return rs_err_conn_push_fl (pkt->conn, RSE_EVENT, __FILE__, __LINE__,
+                               "event_base_dispatch: %s",
+                               evutil_gai_strerror(err));
+  rs_debug (("%s: event loop done\n", __func__));
+  conn->callbacks.received_cb = NULL;
+  if (!event_base_got_break (conn->evb))
+    return -1;
 
-  pkt->original = NULL;
+#if defined (DEBUG)
+  rs_dump_packet (pkt);
+#endif
 
+  pkt->original = NULL;                /* FIXME: Why?  */
   return RSE_OK;
 }
 
index bc06894..16a554f 100644 (file)
@@ -16,7 +16,7 @@
 #include <event2/util.h>
 #include <radsec/radsec.h>
 #include <radsec/radsec-impl.h>
-#if defined RS_ENABLE_TLS
+#if defined (RS_ENABLE_TLS)
 #include <regex.h>
 #include "rsp_list.h"
 #include "../radsecproxy.h"
@@ -59,7 +59,7 @@ rs_context_create(struct rs_context **ctx, const char *dict)
   free (buf1);
   free (buf2);
 
-#if defined RS_ENABLE_TLS
+#if defined (RS_ENABLE_TLS)
   ssl_init ();
 #endif
 #if defined (DEBUG)
index bc6f795..63645f0 100644 (file)
@@ -53,7 +53,7 @@ _rs_req_disconnected(void *user_data)
 }
 
 static void
-_rs_req_packet_received(const struct rs_packet *pkt, void *user_data)
+_rs_req_packet_received(struct rs_packet *pkt, void *user_data)
 {
   //struct rs_request *request = (struct rs_request *)user_data;
 }
index 6002c41..7f728fe 100644 (file)
@@ -115,9 +115,6 @@ static int verify_cb(int ok, X509_STORE_CTX *ctx) {
            break;
        }
     }
-#ifdef DEBUG
-    printf("certificate verify returns %d\n", ok);
-#endif
     return ok;
 }