summaryrefslogtreecommitdiff
path: root/tests/test-udp.c
blob: ed176c0d6349c5164d8611e5e7d3e26232ebad04 (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
/* Copyright 2011,2013, NORDUnet A/S. All rights reserved. */
/* See LICENSE for licensing information. */

#include <stdlib.h>
#include <assert.h>
#include <CUnit/Basic.h>
#include "radius/client.h"
#include "radsec/radsec.h"
#include "radsec/request.h"
#include "udp.h"

static void
authenticate (struct rs_connection *conn, const char *user, const char *pw)
{
  struct rs_request *req;
  struct rs_packet *msg, *resp;

  CU_ASSERT (rs_request_create (conn, &req) == 0);
  CU_ASSERT (!rs_packet_create_authn_request (conn, &msg, user, pw));
  rs_request_add_reqpkt (req, msg);
  CU_ASSERT (rs_request_send (req, &resp) == 0);
  //printf ("%s\n", rs_err_msg (rs_err_conn_pop (conn), 1));
  CU_ASSERT (rs_packet_code(resp) == PW_ACCESS_ACCEPT);

  rs_request_destroy (req);
}

static void
send_more_than_one_msg_in_one_packet (struct rs_connection *conn)
{
  struct rs_packet *msg0, *msg1;

  CU_ASSERT (rs_packet_create_authn_request (conn, &msg0, NULL, NULL) == 0);
  CU_ASSERT (rs_packet_create_authn_request (conn, &msg1, NULL, NULL) == 0);
  CU_ASSERT (rs_packet_send (msg0, NULL) == 0);
  CU_ASSERT (rs_packet_send (msg1, NULL) == 0);
}

#if 0
static void
send_large_packet (struct rs_connection *conn)
{
  struct rs_packet *msg0;
  struct radius_packet *frpkt = NULL;
  char *buf;
  int f;

  buf = malloc (RS_MAX_PACKET_LEN);
  CU_ASSERT (buf != NULL);
  memset (buf, 0, RS_MAX_PACKET_LEN);

  CU_ASSERT (rs_packet_create (conn, &msg0) == 0);
  /* 16 chunks --> heap corruption in evbuffer_drain detected by free() */
  for (f = 0; f < 15; f++)
    {
      memset (buf, 'a' + f, 252);
      //vp = pairmake ("EAP-Message", buf, T_OP_EQ);
      CU_ASSERT (rs_packet_append_avp (msg0, fixme...) == RSE_OK);
    }
  CU_ASSERT (rs_packet_send (msg0, NULL) == 0);
}
#endif  /* 0 */

/* ************************************************************ */
static struct setup {
  char *config_file;
  char *config_name;
  char *username;
  char *pw;
} setup;

static void
test_auth ()
{
  struct rs_context *ctx;
  struct rs_connection *conn;

  setup.config_file = "test.conf";
  setup.config_name = "test-udp-auth";
  setup.username = "molgan@PROJECT-MOONSHOT.ORG";
  setup.pw = "password";

  CU_ASSERT (rs_context_create (&ctx) == 0);
  CU_ASSERT (rs_context_read_config (ctx, setup.config_file) == 0);
  CU_ASSERT (rs_conn_create (ctx, &conn, setup.config_name) == 0);

  authenticate (conn, setup.username, setup.pw);

  rs_conn_destroy (conn);
  rs_context_destroy (ctx);
}

static ssize_t
test_buffering_cb (const uint8_t *buf, ssize_t len)
{
  /* "Exactly one RADIUS packet is encapsulated in the UDP Data field"
     [RFC 2865]*/
#if 0
  hd (buf, len);
#endif
  CU_ASSERT (len >= 20);
  CU_ASSERT (len <= RS_MAX_PACKET_LEN);
  CU_ASSERT ((buf[2] << 8) +  buf[3] == len);
  return len;
}

static void
test_buffering ()
{
  struct rs_context *ctx;
  struct rs_connection *conn;
  struct timeval timeout;
  struct polldata *polldata;

  CU_ASSERT (rs_context_create (&ctx) == 0);
  CU_ASSERT (rs_context_read_config (ctx, "test.conf") == 0);
  CU_ASSERT (rs_conn_create (ctx, &conn, "test-udp-buffering") == 0);

  timeout.tv_sec = 0;
  timeout.tv_usec = 150000;
  polldata = udp_server ("11820", &timeout, test_buffering_cb);
  CU_ASSERT (polldata != NULL);

  send_more_than_one_msg_in_one_packet (conn);
  CU_ASSERT (udp_poll (polldata) > 0);
  CU_ASSERT (udp_poll (polldata) > 0);


  udp_free_polldata (polldata);
  rs_conn_destroy (conn);
  rs_context_destroy (ctx);
}

/* ************************************************************ */
int
main (int argc, char *argv[])
{
  CU_pSuite s = NULL;
  CU_pTest t = NULL;
  unsigned int nfail;

  assert (CU_initialize_registry () == CUE_SUCCESS);
  s =  CU_add_suite ("auth", NULL, NULL); assert (s);
  t = CU_ADD_TEST (s, test_auth); assert (t);
  s =  CU_add_suite ("buffering", NULL, NULL); assert (s);
  t = CU_ADD_TEST (s, test_buffering); assert (t);

  assert (CU_basic_run_tests () == CUE_SUCCESS);
  nfail = CU_get_number_of_failures();

  CU_cleanup_registry ();
  return nfail;
}