nl80211: Add a handler to create_interface
[mech_eap.git] / radius_example / radius_example.c
1 /*
2  * Example application using RADIUS client as a library
3  * Copyright (c) 2007, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "includes.h"
10
11 #include "common.h"
12 #include "eloop.h"
13 #include "radius/radius.h"
14 #include "radius/radius_client.h"
15
16 extern int wpa_debug_level;
17
18 struct radius_ctx {
19         struct radius_client_data *radius;
20         struct hostapd_radius_servers conf;
21         u8 radius_identifier;
22         struct in_addr own_ip_addr;
23 };
24
25
26 static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
27                               int level, const char *txt, size_t len)
28 {
29         printf("%s\n", txt);
30 }
31
32
33 /* Process the RADIUS frames from Authentication Server */
34 static RadiusRxResult receive_auth(struct radius_msg *msg,
35                                    struct radius_msg *req,
36                                    const u8 *shared_secret,
37                                    size_t shared_secret_len,
38                                    void *data)
39 {
40         /* struct radius_ctx *ctx = data; */
41         printf("Received RADIUS Authentication message; code=%d\n",
42                radius_msg_get_hdr(msg)->code);
43
44         /* We're done for this example, so request eloop to terminate. */
45         eloop_terminate();
46
47         return RADIUS_RX_PROCESSED;
48 }
49
50
51 static void start_example(void *eloop_ctx, void *timeout_ctx)
52 {
53         struct radius_ctx *ctx = eloop_ctx;
54         struct radius_msg *msg;
55
56         printf("Sending a RADIUS authentication message\n");
57
58         ctx->radius_identifier = radius_client_get_id(ctx->radius);
59         msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST,
60                              ctx->radius_identifier);
61         if (msg == NULL) {
62                 printf("Could not create net RADIUS packet\n");
63                 return;
64         }
65
66         radius_msg_make_authenticator(msg, (u8 *) ctx, sizeof(*ctx));
67
68         if (!radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME,
69                                  (u8 *) "user", 4)) {
70                 printf("Could not add User-Name\n");
71                 radius_msg_free(msg);
72                 return;
73         }
74
75         if (!radius_msg_add_attr_user_password(
76                     msg, (u8 *) "password", 8,
77                     ctx->conf.auth_server->shared_secret,
78                     ctx->conf.auth_server->shared_secret_len)) {
79                 printf("Could not add User-Password\n");
80                 radius_msg_free(msg);
81                 return;
82         }
83
84         if (!radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
85                                  (u8 *) &ctx->own_ip_addr, 4)) {
86                 printf("Could not add NAS-IP-Address\n");
87                 radius_msg_free(msg);
88                 return;
89         }
90
91         if (radius_client_send(ctx->radius, msg, RADIUS_AUTH, NULL) < 0)
92                 radius_msg_free(msg);
93 }
94
95
96 int main(int argc, char *argv[])
97 {
98         struct radius_ctx ctx;
99         struct hostapd_radius_server *srv;
100
101         if (os_program_init())
102                 return -1;
103
104         hostapd_logger_register_cb(hostapd_logger_cb);
105
106         os_memset(&ctx, 0, sizeof(ctx));
107         inet_aton("127.0.0.1", &ctx.own_ip_addr);
108
109         if (eloop_init()) {
110                 printf("Failed to initialize event loop\n");
111                 return -1;
112         }
113
114         srv = os_zalloc(sizeof(*srv));
115         if (srv == NULL)
116                 return -1;
117
118         srv->addr.af = AF_INET;
119         srv->port = 1812;
120         if (hostapd_parse_ip_addr("127.0.0.1", &srv->addr) < 0) {
121                 printf("Failed to parse IP address\n");
122                 return -1;
123         }
124         srv->shared_secret = (u8 *) os_strdup("radius");
125         srv->shared_secret_len = 6;
126
127         ctx.conf.auth_server = ctx.conf.auth_servers = srv;
128         ctx.conf.num_auth_servers = 1;
129         ctx.conf.msg_dumps = 1;
130
131         ctx.radius = radius_client_init(&ctx, &ctx.conf);
132         if (ctx.radius == NULL) {
133                 printf("Failed to initialize RADIUS client\n");
134                 return -1;
135         }
136
137         if (radius_client_register(ctx.radius, RADIUS_AUTH, receive_auth,
138                                    &ctx) < 0) {
139                 printf("Failed to register RADIUS authentication handler\n");
140                 return -1;
141         }
142
143         eloop_register_timeout(0, 0, start_example, &ctx, NULL);
144
145         eloop_run();
146
147         radius_client_deinit(ctx.radius);
148         os_free(srv->shared_secret);
149         os_free(srv);
150
151         eloop_destroy();
152         os_program_deinit();
153
154         return 0;
155 }