summaryrefslogtreecommitdiff
path: root/lib/radsec.c
blob: 82576e1fae72ad11c5f810b304a9fd51416627f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <libgen.h>

#include <freeradius/libradius.h>
#include <event2/event.h>
#include <event2/util.h>
#include "libradsec.h"
#include "libradsec-impl.h"

int
rs_context_create(struct rs_handle **ctx, const char *dict)
{
  struct rs_handle *h;

  if (ctx)
    *ctx = NULL;
  h = (struct rs_handle *) malloc (sizeof(struct rs_handle));
  if (h)
    {
      char *buf1 = NULL, *buf2 = NULL;
      char *dir, *fn;

      buf1 = malloc (strlen (dict) + 1);
      buf2 = malloc (strlen (dict) + 1);
      if (!buf1 || !buf2)
	{
	  free (h);
	  if (buf1)
	    free (buf1);
	  if (buf2)
	    free (buf2);
	  return RSE_NOMEM;
	}
      strcpy (buf1, dict);
      dir = dirname (buf1);
      strcpy (buf2, dict);
      fn = basename (buf2);
      if (dict_init (dir, fn) < 0)
	{
	  free (h);
	  return RSE_SOME_ERROR;
	}
      free (buf1);
      free (buf2);
#if defined (DEBUG)
      fr_log_fp = stderr;
      fr_debug_flag = 1;
#endif

      memset (h, 0, sizeof(struct rs_handle));
      fr_randinit (&h->fr_randctx, 0);
      fr_rand_seed (NULL, 0);

      if (ctx)
	*ctx = h;
    }
  return h ? RSE_OK : RSE_NOMEM;
}

void rs_context_destroy(struct rs_handle *ctx)
{
  free (ctx);
}

int rs_context_set_alloc_scheme(struct rs_handle *ctx, struct rs_alloc_scheme *scheme)
{
  return rs_ctx_err_push_fl (ctx, RSE_NOSYS, __FILE__, __LINE__,
			     "%s: NYI", __func__);
}

int rs_context_config_read(struct rs_handle *ctx, const char *config_file)
{
  return rs_ctx_err_push_fl (ctx, RSE_NOSYS, __FILE__, __LINE__,
			     "%s: NYI", __func__);
}

int rs_conn_create(struct rs_handle *ctx, struct rs_connection **conn)
{
  struct rs_connection *c;

  c = (struct rs_connection *) malloc (sizeof(struct rs_connection));
  if (c)
    {
      memset (c, 0, sizeof(struct rs_connection));
      c->ctx = ctx;
    }
  if (conn)
    *conn = c;
  return c ? RSE_OK : rs_ctx_err_push (ctx, RSE_NOMEM, NULL);
}

struct addrinfo *
_resolv (struct rs_connection *conn, const char *hostname, int port)
{
  int err;
  char portstr[6];
  struct evutil_addrinfo hints, *res = NULL;

  snprintf (portstr, sizeof(portstr), "%d", port);
  memset (&hints, 0, sizeof(struct evutil_addrinfo));
  //hints.ai_family = AF_UNSPEC;	/* v4 or v6.  */
  hints.ai_family = AF_INET;	/* FIXME: v4 only, while debuging */
  hints.ai_flags = AI_ADDRCONFIG;
  switch (conn->type)
    {
    case RS_CONN_TYPE_NONE:
      rs_conn_err_push_fl (conn, RSE_INVALID_CONN, __FILE__, __LINE__, NULL);
      return NULL;
    case RS_CONN_TYPE_TCP:
    case RS_CONN_TYPE_TLS:
      hints.ai_socktype = SOCK_STREAM;
      hints.ai_protocol = IPPROTO_TCP;
      break;
    case RS_CONN_TYPE_UDP:
    case RS_CONN_TYPE_DTLS:
      hints.ai_socktype = SOCK_DGRAM;
      hints.ai_protocol = IPPROTO_UDP;
      break;
    }
  err = evutil_getaddrinfo (hostname, portstr, &hints, &res);
  if (err)
    rs_conn_err_push_fl (conn, RSE_BADADDR, __FILE__, __LINE__,
			 " %s:%d: bad host name or port (%s)",
			 hostname, port, evutil_gai_strerror(err));
  return res;			/* Simply use first result.  */
}

int
rs_conn_add_server(struct rs_connection *conn, struct rs_peer **server,
		   rs_conn_type_t type, const char *hostname, int port)
{
  struct rs_peer *srv;
  struct evutil_addrinfo *addr;

  if (conn->type == RS_CONN_TYPE_NONE)
    conn->type = type;
  else if (conn->type != type)
    return rs_conn_err_push (conn, RSE_CONN_TYPE_MISMATCH, NULL);

  addr = _resolv (conn, hostname, port);
  if (!addr)
    return -1;

  srv = (struct rs_peer *) malloc (sizeof(struct rs_peer));
  if (srv)
    {
      memset (srv, 0, sizeof(struct rs_peer));
      srv->conn = conn;
      srv->addr = addr;
      srv->timeout = 10;
      srv->tries = 3;
      srv->next = conn->peers;
      if (conn->peers)
	conn->peers->next = srv;
      else
	conn->peers = srv;
    }
  if (*server)
    *server = srv;
  return srv ? RSE_OK : rs_conn_err_push (conn, RSE_NOMEM, NULL);
}

void rs_server_set_timeout(struct rs_peer *server, int timeout)
{
  server->timeout = timeout;
}
void rs_server_set_tries(struct rs_peer *server, int tries)
{
  server->tries = tries;
}
int rs_server_set_secret(struct rs_peer *server, const char *secret)
{
  if (server->secret)
    free (server->secret);
  server->secret = (char *) malloc (strlen(secret) + 1);
  if (!server->secret)
    return rs_conn_err_push (server->conn, RSE_NOMEM, NULL);
  strcpy (server->secret, secret);
  return RSE_OK;
}

int rs_conn_add_listener(struct rs_connection *conn, rs_conn_type_t type, const char *hostname, int port)
{
  return rs_conn_err_push_fl (conn, RSE_NOSYS, __FILE__, __LINE__,
			      "%s: NYI", __func__);
}


void
rs_conn_destroy(struct rs_connection *conn)
{
  struct rs_peer *p;

#warning "TODO: Disconnect active_peer."

  for (p = conn->peers; p; p = p->next)
    {
      if (p->addr)
	evutil_freeaddrinfo (p->addr);
      if (p->secret)
	rs_free (conn->ctx, p->secret);
    }

  if (conn->evb)
    event_base_free (conn->evb);
}

int rs_conn_set_eventbase(struct rs_connection *conn, struct event_base *eb)
{
  return rs_conn_err_push_fl (conn, RSE_NOSYS, __FILE__, __LINE__,
			      "%s: NYI", __func__);
}

int rs_conn_set_callbacks(struct rs_connection *conn, struct rs_conn_callbacks *cb)
{
  return rs_conn_err_push_fl (conn, RSE_NOSYS, __FILE__, __LINE__,
			      "%s: NYI", __func__);
}

int rs_conn_set_server(struct rs_connection *conn, const char *name)
{
  return rs_conn_err_push_fl (conn, RSE_NOSYS, __FILE__, __LINE__,
			      "%s: NYI", __func__);
}

int rs_conn_get_current_server(struct rs_connection *conn, const char *name, size_t buflen)
{
  return rs_conn_err_push_fl (conn, RSE_NOSYS, __FILE__, __LINE__,
			      "%s: NYI", __func__);
}

/* Non-public.  */
int
rs_conn_open(struct rs_connection *conn)
{
  int s;
  struct rs_peer *p;

  if (conn->active_peer)
    return RSE_OK;
  p = conn->peers;
  if (!p)
    return rs_conn_err_push_fl (conn, RSE_NOPEER, __FILE__, __LINE__, NULL);

  s = socket (p->addr->ai_family, p->addr->ai_socktype, p->addr->ai_protocol);
  if (s < 0)
    return rs_conn_err_push_fl (conn, RSE_SOME_ERROR, __FILE__, __LINE__,
				strerror (errno));
#if 0		       /* let librevent do this in rs_packet_send() */
  if (connect (s, p->addr->ai_addr, p->addr->ai_addrlen))
    {
      /* TODO: handle nonblocking sockets (EINTR, EAGAIN).  */
      EVUTIL_CLOSESOCKET (s);
      return rs_conn_err_push_fl (conn, RSE_SOME_ERROR, __FILE__, __LINE__,
				  strerror (errno));
    }
#endif

  if (!conn->evb)
    {
#if defined (DEBUG)
      event_enable_debug_mode ();
#endif
      conn->evb = event_base_new ();
    }

  if (!conn->evb)
    {
      EVUTIL_CLOSESOCKET (s);
      return rs_conn_err_push_fl (conn, RSE_EVENT, __FILE__, __LINE__,
				  "event_base_new");
    }

  p->s = s;
  conn->active_peer = p;
  return RSE_OK;
}