-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendserver.cpp
582 lines (507 loc) · 15.9 KB
/
sendserver.cpp
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
/*
* $Id: sendserver.c,v 1.25 2008/01/05 03:06:53 sobomax Exp $
*
* Copyright (C) 1995,1996,1997 Lars Fenneberg
*
* Copyright 1992 Livingston Enterprises, Inc.
*
* Copyright 1992,1993, 1994,1995 The Regents of the University of Michigan
* and Merit Network, Inc. All Rights Reserved
*
* See the file COPYRIGHT for the respective terms and conditions.
* If the file is missing contact me at [email protected]
* and I'll send you a copy.
*
*/
#include "config.h"
#include "includes.h"
#include "freeradius-client.h"
#include "pathnames.h"
#define SA(p) ((struct sockaddr *)(p))
static void rc_random_vector (unsigned char *);
static int rc_check_reply (AUTH_HDR *, int, const char *, unsigned char *, unsigned char);
/*
* Function: rc_pack_list
*
* Purpose: Packs an attribute value pair list into a buffer.
*
* Returns: Number of octets packed.
*
*/
static int rc_pack_list (VALUE_PAIR *vp, const char *secret, AUTH_HDR *auth)
{
int length, i, pc, padded_length;
int total_length = 0;
size_t secretlen;
uint32_t lvalue, vendor;
unsigned char passbuf[MAX(AUTH_PASS_LEN, CHAP_VALUE_LENGTH)];
unsigned char md5buf[256];
unsigned char *buf, *vector, *vsa_length_ptr;
buf = auth->data;
while (vp != NULL)
{
vsa_length_ptr = NULL;
if (VENDOR(vp->attribute) != 0) {
*buf++ = PW_VENDOR_SPECIFIC;
vsa_length_ptr = buf;
*buf++ = 6;
vendor = htonl(VENDOR(vp->attribute));
memcpy(buf, &vendor, sizeof(uint32_t));
buf += 4;
total_length += 6;
}
*buf++ = (vp->attribute & 0xff);
switch (vp->attribute)
{
case PW_USER_PASSWORD:
/* Encrypt the password */
/* Chop off password at AUTH_PASS_LEN */
length = vp->lvalue;
if (length > AUTH_PASS_LEN)
length = AUTH_PASS_LEN;
/* Calculate the padded length */
padded_length = (length+(AUTH_VECTOR_LEN-1)) & ~(AUTH_VECTOR_LEN-1);
/* Record the attribute length */
*buf++ = padded_length + 2;
if (vsa_length_ptr != NULL) *vsa_length_ptr += padded_length + 2;
/* Pad the password with zeros */
memset ((char *) passbuf, '\0', AUTH_PASS_LEN);
memcpy ((char *) passbuf, vp->strvalue, (size_t) length);
secretlen = strlen (secret);
vector = (unsigned char *)auth->vector;
for(i = 0; i < padded_length; i += AUTH_VECTOR_LEN)
{
/* Calculate the MD5 digest*/
strcpy ((char *) md5buf, secret);
memcpy ((char *) md5buf + secretlen, vector,
AUTH_VECTOR_LEN);
rc_md5_calc (buf, md5buf, secretlen + AUTH_VECTOR_LEN);
/* Remeber the start of the digest */
vector = buf;
/* Xor the password into the MD5 digest */
for (pc = i; pc < (i + AUTH_VECTOR_LEN); pc++)
{
*buf++ ^= passbuf[pc];
}
}
total_length += padded_length + 2;
break;
#if 0
case PW_CHAP_PASSWORD:
*buf++ = CHAP_VALUE_LENGTH + 2;
if (vsa_length_ptr != NULL) *vsa_length_ptr += CHAP_VALUE_LENGTH + 2;
/* Encrypt the Password */
length = vp->lvalue;
if (length > CHAP_VALUE_LENGTH)
{
length = CHAP_VALUE_LENGTH;
}
memset ((char *) passbuf, '\0', CHAP_VALUE_LENGTH);
memcpy ((char *) passbuf, vp->strvalue, (size_t) length);
/* Calculate the MD5 Digest */
secretlen = strlen (secret);
strcpy ((char *) md5buf, secret);
memcpy ((char *) md5buf + secretlen, (char *) auth->vector,
AUTH_VECTOR_LEN);
rc_md5_calc (buf, md5buf, secretlen + AUTH_VECTOR_LEN);
/* Xor the password into the MD5 digest */
for (i = 0; i < CHAP_VALUE_LENGTH; i++)
{
*buf++ ^= passbuf[i];
}
total_length += CHAP_VALUE_LENGTH + 2;
break;
#endif
default:
switch (vp->type)
{
case PW_TYPE_STRING:
length = vp->lvalue;
*buf++ = length + 2;
if (vsa_length_ptr != NULL) *vsa_length_ptr += length + 2;
memcpy (buf, vp->strvalue, (size_t) length);
buf += length;
total_length += length + 2;
break;
case PW_TYPE_INTEGER:
case PW_TYPE_IPADDR:
*buf++ = sizeof (uint32_t) + 2;
if (vsa_length_ptr != NULL) *vsa_length_ptr += sizeof(uint32_t) + 2;
lvalue = htonl (vp->lvalue);
memcpy (buf, (char *) &lvalue, sizeof (uint32_t));
buf += sizeof (uint32_t);
total_length += sizeof (uint32_t) + 2;
break;
default:
break;
}
break;
}
vp = vp->next;
}
return total_length;
}
/*
* Function: rc_send_server
*
* Purpose: send a request to a RADIUS server and wait for the reply
*
*/
int rc_send_server (rc_handle *rh, SEND_DATA *data, char *msg)
{
int sockfd;
struct sockaddr_in sinlocal;
struct sockaddr_in sinremote;
struct timeval authtime;
fd_set readfds;
AUTH_HDR *auth, *recv_auth;
uint32_t auth_ipaddr, nas_ipaddr;
// char *server_name; /* Name of server to query */
string server_name; /* Name of server to query */
socklen_t salen;
int result;
int total_length;
int length;
int retry_max;
size_t secretlen;
// char secret[MAX_SECRET_LENGTH + 1];
string secret;
unsigned char vector[AUTH_VECTOR_LEN];
char recv_buffer[BUFFER_LEN];
char send_buffer[BUFFER_LEN];
int retries;
VALUE_PAIR *vp;
server_name = data->server;
fprintf(stdout, "rc_send_server:: data->server: %s\n", data->server);
// if (server_name == NULL || server_name[0] == '\0')
// return ERROR_RC;
if ((vp = rc_avpair_get(data->send_pairs, PW_SERVICE_TYPE, 0)) && \
(vp->lvalue == PW_ADMINISTRATIVE))
{
// zz
// strcpy(secret, MGMT_POLL_SECRET);
secret = MGMT_POLL_SECRET;
if ((auth_ipaddr = rc_get_ipaddr(server_name)) == 0)
return ERROR_RC;
}
else
{
if(data->secret.length()>0)
{
// zz
// strncpy(secret, , MAX_SECRET_LENGTH);
secret.assign( data->secret.c_str(), MAX_SECRET_LENGTH);
}
/*
else
{
*/
// zz
// if (rc_find_server (rh, server_name, &auth_ipaddr, secret) != 0)
// {
// rc_log(LOG_ERR, "rc_send_server: unable to find server: %s", server_name);
return ERROR_RC;
// }
/*}*/
}
// DEBUG(LOG_ERR, "DEBUG: rc_send_server: creating socket to: %s", server_name);
sockfd = socket (AF_INET, SOCK_DGRAM, 0);
if (sockfd < 0)
{
// memset (secret, '\0', sizeof (secret));
secret.clear();
// rc_log(LOG_ERR, "rc_send_server: socket: %s", strerror(errno));
return ERROR_RC;
}
memset((char *)&sinlocal, '\0', sizeof(sinlocal));
sinlocal.sin_family = AF_INET;
sinlocal.sin_addr.s_addr = htonl(rc_own_bind_ipaddress(rh));
sinlocal.sin_port = htons((unsigned short) 0);
if (bind(sockfd, SA(&sinlocal), sizeof(sinlocal)) < 0)
{
close (sockfd);
// memset (secret, '\0', sizeof (secret));
secret.clear();
// rc_log(LOG_ERR, "rc_send_server: bind: %s: %s", server_name, strerror(errno));
return ERROR_RC;
}
retry_max = data->retries; /* Max. numbers to try for reply */
retries = 0; /* Init retry cnt for blocking call */
memset ((char *)&sinremote, '\0', sizeof(sinremote));
sinremote.sin_family = AF_INET;
sinremote.sin_addr.s_addr = htonl (auth_ipaddr);
sinremote.sin_port = htons ((unsigned short) data->svc_port);
/*
* Fill in NAS-IP-Address
*/
if (sinlocal.sin_addr.s_addr == htonl(INADDR_ANY)) {
if (rc_get_srcaddr(SA(&sinlocal), SA(&sinremote)) != 0) {
close (sockfd);
// memset (secret, '\0', sizeof (secret));
secret.clear();
return ERROR_RC;
}
}
nas_ipaddr = ntohl(sinlocal.sin_addr.s_addr);
rc_avpair_add(rh, &(data->send_pairs), PW_NAS_IP_ADDRESS,
&nas_ipaddr, 0, 0);
/* Build a request */
auth = (AUTH_HDR *) send_buffer;
auth->code = data->code;
auth->id = data->seq_nbr;
if (data->code == PW_ACCOUNTING_REQUEST)
{
total_length = rc_pack_list(data->send_pairs, secret.c_str(), auth) + AUTH_HDR_LEN;
auth->length = htons ((unsigned short) total_length);
memset((char *) auth->vector, 0, AUTH_VECTOR_LEN);
secretlen = secret.length();
memcpy ((char *) auth + total_length, secret.c_str(), secretlen);
rc_md5_calc (vector, (unsigned char *) auth, total_length + secretlen);
memcpy ((char *) auth->vector, (char *) vector, AUTH_VECTOR_LEN);
}
else
{
rc_random_vector (vector);
memcpy ((char *) auth->vector, (char *) vector, AUTH_VECTOR_LEN);
total_length = rc_pack_list(data->send_pairs, secret.c_str(), auth) + AUTH_HDR_LEN;
auth->length = htons ((unsigned short) total_length);
}
// DEBUG(LOG_ERR, "DEBUG: local %s : 0, remote %s : %u\n", inet_ntoa(sinlocal.sin_addr), inet_ntoa(sinremote.sin_addr), data->svc_port);
for (;;)
{
sendto (sockfd, (char *) auth, (unsigned int) total_length, (int) 0,
SA(&sinremote), sizeof (struct sockaddr_in));
authtime.tv_usec = 0L;
authtime.tv_sec = (long) data->timeout;
FD_ZERO (&readfds);
FD_SET (sockfd, &readfds);
if (select (sockfd + 1, &readfds, NULL, NULL, &authtime) < 0)
{
if (errno == EINTR)
continue;
// rc_log(LOG_ERR, "rc_send_server: select: %s", strerror(errno));
// memset (secret, '\0', sizeof (secret));
secret.clear();
close (sockfd);
return ERROR_RC;
}
if (FD_ISSET (sockfd, &readfds))
break;
/*
* Timed out waiting for response. Retry "retry_max" times
* before giving up. If retry_max = 0, don't retry at all.
*/
if (++retries >= retry_max)
{
// rc_log(LOG_ERR, "rc_send_server: no reply from RADIUS server %s:%u, %s", rc_ip_hostname (auth_ipaddr), data->svc_port, inet_ntoa(sinremote.sin_addr));
close (sockfd);
// memset (secret, '\0', sizeof (secret));
secret.clear();
return TIMEOUT_RC;
}
}
salen = sizeof(sinremote);
length = recvfrom (sockfd, (char *) recv_buffer, (int) sizeof (recv_buffer), (int) 0, SA(&sinremote), &salen);
if (length <= 0)
{
// rc_log(LOG_ERR, "rc_send_server: recvfrom: %s:%d: %s", server_name,\
data->svc_port, strerror(errno));
close (sockfd);
// memset (secret, '\0', sizeof (secret));
secret.clear();
return ERROR_RC;
}
recv_auth = (AUTH_HDR *)recv_buffer;
if (length < AUTH_HDR_LEN || length < ntohs(recv_auth->length)) {
// rc_log(LOG_ERR, "rc_send_server: recvfrom: %s:%d: reply is too short", server_name, data->svc_port);
close(sockfd);
// memset(secret, '\0', sizeof(secret));
secret.empty();
return ERROR_RC;
}
result = rc_check_reply (recv_auth, BUFFER_LEN, secret.c_str(), vector, data->seq_nbr);
length = ntohs(recv_auth->length) - AUTH_HDR_LEN;
if (length > 0) {
data->receive_pairs = rc_avpair_gen(rh, NULL, recv_auth->data,
length, 0);
} else {
data->receive_pairs = NULL;
}
close (sockfd);
// memset (secret, '\0', sizeof (secret));
secret.clear();
if (result != OK_RC) return result;
*msg = '\0';
vp = data->receive_pairs;
while (vp)
{
if ((vp = rc_avpair_get(vp, PW_REPLY_MESSAGE, 0)))
{
strcat(msg, vp->strvalue);
strcat(msg, "\n");
vp = vp->next;
}
}
if ((recv_auth->code == PW_ACCESS_ACCEPT) ||
(recv_auth->code == PW_PASSWORD_ACK) ||
(recv_auth->code == PW_ACCOUNTING_RESPONSE))
{
result = OK_RC;
}
else if ((recv_auth->code == PW_ACCESS_REJECT) ||
(recv_auth->code == PW_PASSWORD_REJECT))
{
result = REJECT_RC;
}
else
{
result = BADRESP_RC;
}
return result;
}
/*
* Function: rc_check_reply
*
* Purpose: verify items in returned packet.
*
* Returns: OK_RC -- upon success,
* BADRESP_RC -- if anything looks funny.
*
*/
static int rc_check_reply (AUTH_HDR *auth, int bufferlen, const char *secret, unsigned char *vector, uint8_t seq_nbr)
{
int secretlen;
int totallen;
unsigned char calc_digest[AUTH_VECTOR_LEN];
unsigned char reply_digest[AUTH_VECTOR_LEN];
#ifdef DIGEST_DEBUG
uint8_t *ptr;
#endif
totallen = ntohs (auth->length);
secretlen = (int)strlen (secret);
/* Do sanity checks on packet length */
if ((totallen < 20) || (totallen > 4096))
{
// rc_log(LOG_ERR, "rc_check_reply: received RADIUS server response with invalid length");
return BADRESP_RC;
}
/* Verify buffer space, should never trigger with current buffer size and check above */
if ((totallen + secretlen) > bufferlen)
{
// rc_log(LOG_ERR, "rc_check_reply: not enough buffer space to verify RADIUS server response");
return BADRESP_RC;
}
/* Verify that id (seq. number) matches what we sent */
if (auth->id != seq_nbr)
{
// rc_log(LOG_ERR, "rc_check_reply: received non-matching id in RADIUS server response");
return BADRESP_RC;
}
/* Verify the reply digest */
memcpy ((char *) reply_digest, (char *) auth->vector, AUTH_VECTOR_LEN);
memcpy ((char *) auth->vector, (char *) vector, AUTH_VECTOR_LEN);
memcpy ((char *) auth + totallen, secret, secretlen);
#ifdef DIGEST_DEBUG
// rc_log(LOG_ERR, "Calculating digest on:");
for (ptr = (u_char *)auth; ptr < ((u_char *)auth) + totallen + secretlen; ptr += 32) {
char buf[65];
int i;
buf[0] = '\0';
for (i = 0; i < 32; i++) {
if (ptr + i >= ((u_char *)auth) + totallen + secretlen)
break;
sprintf(buf + i * 2, "%.2X", ptr[i]);
}
// rc_log(LOG_ERR, " %s", buf);
}
#endif
rc_md5_calc (calc_digest, (unsigned char *) auth, totallen + secretlen);
#ifdef DIGEST_DEBUG
// rc_log(LOG_ERR, "Calculated digest is:");
for (ptr = (u_char *)calc_digest; ptr < ((u_char *)calc_digest) + 16; ptr += 32) {
char buf[65];
int i;
buf[0] = '\0';
for (i = 0; i < 32; i++) {
if (ptr + i >= ((u_char *)calc_digest) + 16)
break;
sprintf(buf + i * 2, "%.2X", ptr[i]);
}
// rc_log(LOG_ERR, " %s", buf);
}
// rc_log(LOG_ERR, "Reply digest is:");
for (ptr = (u_char *)reply_digest; ptr < ((u_char *)reply_digest) + 16; ptr += 32) {
char buf[65];
int i;
buf[0] = '\0';
for (i = 0; i < 32; i++) {
if (ptr + i >= ((u_char *)reply_digest) + 16)
break;
sprintf(buf + i * 2, "%.2X", ptr[i]);
}
// rc_log(LOG_ERR, " %s", buf);
}
#endif
if (memcmp ((char *) reply_digest, (char *) calc_digest,
AUTH_VECTOR_LEN) != 0)
{
#ifdef RADIUS_116
/* the original Livingston radiusd v1.16 seems to have
a bug in digest calculation with accounting requests,
authentication request are ok. i looked at the code
but couldn't find any bugs. any help to get this
kludge out are welcome. preferably i want to
reproduce the calculation bug here to be compatible
to stock Livingston radiusd v1.16. -lf, 03/14/96
*/
if (auth->code == PW_ACCOUNTING_RESPONSE)
return OK_RC;
#endif
// rc_log(LOG_ERR, "rc_check_reply: received invalid reply digest from RADIUS server");
return BADRESP_RC;
}
return OK_RC;
}
/*
* Function: rc_random_vector
*
* Purpose: generates a random vector of AUTH_VECTOR_LEN octets.
*
* Returns: the vector (call by reference)
*
*/
static void rc_random_vector (unsigned char *vector)
{
int randno;
int i;
#if defined(HAVE_DEV_URANDOM)
int fd;
/* well, I added this to increase the security for user passwords.
we use /dev/urandom here, as /dev/random might block and we don't
need that much randomness. BTW, great idea, Ted! -lf, 03/18/95 */
if ((fd = open(_PATH_DEV_URANDOM, O_RDONLY)) >= 0)
{
unsigned char *pos;
int readcount;
i = AUTH_VECTOR_LEN;
pos = vector;
while (i > 0)
{
readcount = read(fd, (char *)pos, i);
pos += readcount;
i -= readcount;
}
close(fd);
return;
} /* else fall through */
#endif
srand ((unsigned)time (0) + getppid() + getpid()); /* random enough :) */
for (i = 0; i < AUTH_VECTOR_LEN;)
{
randno = rand ();
memcpy ((char *) vector, (char *) &randno, sizeof (int));
vector += sizeof (int);
i += sizeof (int);
}
return;
}