summaryrefslogtreecommitdiffstats
path: root/src/ctrl
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-04-16 19:08:49 +0200
committerHarald Welte <laforge@gnumonks.org>2017-04-26 13:47:06 +0200
commit79c137c65446ef4139dde63a9e9c023fe9139f80 (patch)
treec87190ca09aa446434e2c4b2298e56b092a53651 /src/ctrl
parentd6b1f85fd81c3dd267186830a671db88c360054f (diff)
control_if: Add API to initialize control interface without TCP port bind
When executing test cases, we don't want to bind to a local TCP port, as we cannot make assumptions as to which ports are actually free. Change-Id: I5717f9dd92d1f143f069cecd4b4c8ba3d03b25f8
Diffstat (limited to 'src/ctrl')
-rw-r--r--src/ctrl/control_if.c90
1 files changed, 63 insertions, 27 deletions
diff --git a/src/ctrl/control_if.c b/src/ctrl/control_if.c
index f1cc7ab6..28f696b2 100644
--- a/src/ctrl/control_if.c
+++ b/src/ctrl/control_if.c
@@ -59,6 +59,8 @@
#include <osmocom/vty/command.h>
#include <osmocom/vty/vector.h>
+extern int osmo_fsm_ctrl_cmds_install(void);
+
vector ctrl_node_vec;
/* global list of control interface lookup helpers */
@@ -694,6 +696,62 @@ struct ctrl_handle *ctrl_interface_setup(void *data, uint16_t port,
return ctrl_interface_setup_dynip(data, "127.0.0.1", port, lookup);
}
+static int ctrl_initialized = 0;
+
+/* global ctrl initialization */
+static int ctrl_init(void)
+{
+ int ret;
+
+ if (ctrl_initialized)
+ return 0;
+
+ ctrl_node_vec = vector_init(5);
+ if (!ctrl_node_vec)
+ goto err;
+
+ ret = ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_rate_ctr);
+ if (ret)
+ goto err_vec;
+ ret = ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_counter);
+ if (ret)
+ goto err_vec;
+
+ ctrl_initialized = 1;
+ return 0;
+
+err_vec:
+ vector_free(ctrl_node_vec);
+ ctrl_node_vec = NULL;
+err:
+ return -1;
+}
+
+/*! \brief Allocate a CTRL interface handle
+ * \param[in] ctx Tallo callocation context to be used
+ * \param[in] data Pointer which will be made available to each
+ set_..() get_..() verify_..() control command function
+ * \param[in] lookup Lookup function pointer, can be NULL
+ * \returns ctrl_handle pointer or NULL in case of errors
+ */
+struct ctrl_handle *ctrl_handle_alloc(void *ctx, void *data, ctrl_cmd_lookup lookup)
+{
+ struct ctrl_handle *ctrl;
+
+ ctrl_init();
+
+ ctrl = talloc_zero(ctx, struct ctrl_handle);
+ if (!ctrl)
+ return NULL;
+
+ INIT_LLIST_HEAD(&ctrl->ccon_list);
+
+ ctrl->data = data;
+ ctrl->lookup = lookup;
+
+ return ctrl;
+}
+
/*! \brief Setup CTRL interface on a given address
* \param[in] data Pointer which will be made available to each
set_..() get_..() verify_..() control command function
@@ -710,44 +768,22 @@ struct ctrl_handle *ctrl_interface_setup_dynip(void *data,
int ret;
struct ctrl_handle *ctrl;
- ctrl = talloc_zero(data, struct ctrl_handle);
+ ctrl = ctrl_handle_alloc(data, data, lookup);
if (!ctrl)
return NULL;
- INIT_LLIST_HEAD(&ctrl->ccon_list);
-
- ctrl->data = data;
- ctrl->lookup = lookup;
-
- ctrl_node_vec = vector_init(5);
- if (!ctrl_node_vec)
- goto err;
-
/* Listen for control connections */
ctrl->listen_fd.cb = listen_fd_cb;
ctrl->listen_fd.data = ctrl;
ret = osmo_sock_init_ofd(&ctrl->listen_fd, AF_INET, SOCK_STREAM, IPPROTO_TCP,
bind_addr, port, OSMO_SOCK_F_BIND);
- if (ret < 0)
- goto err_vec;
-
- ret = ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_rate_ctr);
- if (ret)
- goto err_vec;
- ret = ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_counter);
- if (ret)
- goto err_vec;
+ if (ret < 0) {
+ talloc_free(ctrl);
+ return NULL;
+ }
LOGP(DLCTRL, LOGL_NOTICE, "CTRL at %s %u\n", bind_addr, port);
return ctrl;
-err_vec:
- vector_free(ctrl_node_vec);
- ctrl_node_vec = NULL;
-err:
- LOGP(DLCTRL, LOGL_ERROR, "Cannot bind CTRL at %s %u\n",
- bind_addr, port);
- talloc_free(ctrl);
- return NULL;
}
/*! \brief Install a lookup helper function for control nodes