1 | /* SAMHAIN file system integrity testing */
|
---|
2 | /* Copyright (C) 1999, 2000 Rainer Wichmann */
|
---|
3 | /* */
|
---|
4 | /* This program is free software; you can redistribute it */
|
---|
5 | /* and/or modify */
|
---|
6 | /* it under the terms of the GNU General Public License as */
|
---|
7 | /* published by */
|
---|
8 | /* the Free Software Foundation; either version 2 of the License, or */
|
---|
9 | /* (at your option) any later version. */
|
---|
10 | /* */
|
---|
11 | /* This program is distributed in the hope that it will be useful, */
|
---|
12 | /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
---|
13 | /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
---|
14 | /* GNU General Public License for more details. */
|
---|
15 | /* */
|
---|
16 | /* You should have received a copy of the GNU General Public License */
|
---|
17 | /* along with this program; if not, write to the Free Software */
|
---|
18 | /* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
---|
19 |
|
---|
20 | #include "config_xor.h"
|
---|
21 |
|
---|
22 | #include <string.h>
|
---|
23 | #include <stdio.h>
|
---|
24 | #include <stdlib.h>
|
---|
25 |
|
---|
26 |
|
---|
27 | /* Must be early on FreeBSD
|
---|
28 | */
|
---|
29 | #include <sys/types.h>
|
---|
30 |
|
---|
31 | /* must be .le. than (1020 * 64)
|
---|
32 | * (see sh_tools.c -- put_header)
|
---|
33 | *
|
---|
34 | * also: must be (N * 16), otherwise
|
---|
35 | * binary files cannot be transferred encrypted
|
---|
36 | *
|
---|
37 | * 65280 = (1020*64)
|
---|
38 | * #define TRANS_BYTES 8000 V0.8
|
---|
39 | */
|
---|
40 | #ifdef SH_ENCRYPT_2
|
---|
41 | #define TRANS_BYTES 65120
|
---|
42 | #else
|
---|
43 | #define TRANS_BYTES 65280
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | /* timeout for session key
|
---|
47 | */
|
---|
48 | #define TIMEOUT_KEY 7200
|
---|
49 |
|
---|
50 | /* max time between connection attempts
|
---|
51 | */
|
---|
52 | #define TIMEOUT_CON 2048
|
---|
53 |
|
---|
54 | /* #undef SRP_DEBUG */
|
---|
55 | /* #define SRP_DEBUG */
|
---|
56 |
|
---|
57 | #ifdef HAVE_MEMORY_H
|
---|
58 | #include <memory.h>
|
---|
59 | #endif
|
---|
60 |
|
---|
61 | #if TIME_WITH_SYS_TIME
|
---|
62 | #include <sys/time.h>
|
---|
63 | #include <time.h>
|
---|
64 | #else
|
---|
65 | #if HAVE_SYS_TIME_H
|
---|
66 | #include <sys/time.h>
|
---|
67 | #else
|
---|
68 | #include <time.h>
|
---|
69 | #endif
|
---|
70 | #endif
|
---|
71 |
|
---|
72 | /*
|
---|
73 | #ifdef TM_IN_SYS_TIME
|
---|
74 | #include <sys/time.h>
|
---|
75 | #else
|
---|
76 | #include <time.h>
|
---|
77 | #endif
|
---|
78 | */
|
---|
79 |
|
---|
80 | #ifdef HAVE_SYS_SELECT_H
|
---|
81 | #include <sys/select.h>
|
---|
82 | #endif
|
---|
83 |
|
---|
84 | #ifdef HAVE_UNISTD_H
|
---|
85 | #include <errno.h>
|
---|
86 | #include <signal.h>
|
---|
87 | #include <setjmp.h>
|
---|
88 | #include <pwd.h>
|
---|
89 | #include <grp.h>
|
---|
90 | #include <sys/stat.h>
|
---|
91 | #include <sys/resource.h>
|
---|
92 | #include <fcntl.h>
|
---|
93 | #include <sys/wait.h>
|
---|
94 | #include <unistd.h>
|
---|
95 | #endif
|
---|
96 |
|
---|
97 | #ifndef FD_SET
|
---|
98 | #define NFDBITS 32
|
---|
99 | #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
|
---|
100 | #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
|
---|
101 | #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
|
---|
102 | #endif /* !FD_SET */
|
---|
103 | #ifndef FD_SETSIZE
|
---|
104 | #define FD_SETSIZE 32
|
---|
105 | #endif
|
---|
106 | #ifndef FD_ZERO
|
---|
107 | #define FD_ZERO(p) memset((char *)(p), '\0', sizeof(*(p)))
|
---|
108 | #endif
|
---|
109 |
|
---|
110 | #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
|
---|
111 | #include <sys/mman.h>
|
---|
112 | #endif
|
---|
113 |
|
---|
114 |
|
---|
115 | #include <netdb.h>
|
---|
116 | #include <sys/types.h>
|
---|
117 | #include <netinet/in.h>
|
---|
118 | #include <sys/socket.h>
|
---|
119 | #ifndef S_SPLINT_S
|
---|
120 | #include <arpa/inet.h>
|
---|
121 | #endif
|
---|
122 |
|
---|
123 | #include "samhain.h"
|
---|
124 | #include "sh_tiger.h"
|
---|
125 | #include "sh_utils.h"
|
---|
126 | #include "sh_unix.h"
|
---|
127 | #include "sh_forward.h"
|
---|
128 | #include "sh_srp.h"
|
---|
129 | #include "sh_fifo.h"
|
---|
130 | #include "sh_tools.h"
|
---|
131 | #include "sh_entropy.h"
|
---|
132 | #include "sh_html.h"
|
---|
133 | #include "sh_nmail.h"
|
---|
134 | #include "sh_socket.h"
|
---|
135 | #define SH_NEED_GETHOSTBYXXX
|
---|
136 | #include "sh_static.h"
|
---|
137 |
|
---|
138 | #ifdef SH_ENCRYPT
|
---|
139 | #include "rijndael-api-fst.h"
|
---|
140 | char * sh_tools_makePack (unsigned char * header,
|
---|
141 | char * payload, unsigned long payload_size,
|
---|
142 | keyInstance * keyInstE);
|
---|
143 | char * sh_tools_revertPack (unsigned char * header, char * message,
|
---|
144 | keyInstance * keyInstE,
|
---|
145 | unsigned long message_size);
|
---|
146 | #endif
|
---|
147 |
|
---|
148 | /* define this if you want to debug the client/server communication */
|
---|
149 | /* #define SH_DBG_PROT 1 */
|
---|
150 |
|
---|
151 | #ifdef SH_DBG_PROT
|
---|
152 | #define SH_SHOWPROT(c,d) sh_tools_show_header((c), (d))
|
---|
153 | #else
|
---|
154 | #define SH_SHOWPROT(c,d)
|
---|
155 | #endif
|
---|
156 |
|
---|
157 | /* the port client will be connecting to
|
---|
158 | */
|
---|
159 | #ifndef SH_DEFAULT_PORT
|
---|
160 | #define SH_DEFAULT_PORT 49777
|
---|
161 | #endif
|
---|
162 |
|
---|
163 | #ifndef SH_SELECT_REPEAT
|
---|
164 | #define SH_SELECT_REPEAT 60
|
---|
165 | #endif
|
---|
166 |
|
---|
167 | #ifndef SH_HEADER_SIZE
|
---|
168 | #define SH_HEADER_SIZE 7
|
---|
169 | #endif
|
---|
170 |
|
---|
171 | #ifndef SH_CHALLENGE_SIZE
|
---|
172 | #define SH_CHALLENGE_SIZE 9
|
---|
173 | #endif
|
---|
174 |
|
---|
175 | #undef FIL__
|
---|
176 | #define FIL__ _("sh_forward.c")
|
---|
177 |
|
---|
178 | int clt_class = (-1);
|
---|
179 |
|
---|
180 | extern int flag_err_debug;
|
---|
181 | extern int flag_err_info;
|
---|
182 |
|
---|
183 | #ifndef SH_STANDALONE
|
---|
184 |
|
---|
185 | #if defined(WITH_TRACE) || defined(WITH_TPT)
|
---|
186 | char * hu_trans(const char * ihu)
|
---|
187 | {
|
---|
188 | static char ohu[17];
|
---|
189 | sprintf(ohu, _("%c%03o"), '\\', /* known to fit */
|
---|
190 | (unsigned char) ihu[0]);
|
---|
191 | sprintf(&(ohu[4]), _("%c%03o"), '\\', /* known to fit */
|
---|
192 | (unsigned char) ihu[1]);
|
---|
193 | sprintf(&(ohu[8]), _("%c%03o"), '\\', /* known to fit */
|
---|
194 | (unsigned char) ihu[2]);
|
---|
195 | sprintf(&(ohu[12]), _("%c%03o"), '\\', /* known to fit */
|
---|
196 | (unsigned char) ihu[3]);
|
---|
197 | ohu[16] = '\0';
|
---|
198 | return ohu;
|
---|
199 | }
|
---|
200 | #endif
|
---|
201 |
|
---|
202 | static int StripDomain = S_TRUE;
|
---|
203 |
|
---|
204 | int sh_forward_set_strip (const char * str)
|
---|
205 | {
|
---|
206 | static int fromcl = 0;
|
---|
207 | char dummy[2] = "F";
|
---|
208 |
|
---|
209 | if (fromcl == 1)
|
---|
210 | return 0;
|
---|
211 |
|
---|
212 | if (str == NULL)
|
---|
213 | {
|
---|
214 | fromcl = 1;
|
---|
215 | return (sh_util_flagval(dummy, &StripDomain));
|
---|
216 | }
|
---|
217 | else
|
---|
218 | return (sh_util_flagval(str, &StripDomain));
|
---|
219 | }
|
---|
220 |
|
---|
221 | #include <ctype.h>
|
---|
222 |
|
---|
223 | const char * sh_strip_domain (char *name)
|
---|
224 | {
|
---|
225 | char * first;
|
---|
226 | static char name_2[SH_MINIBUF+1];
|
---|
227 | register int i = 0;
|
---|
228 |
|
---|
229 | SL_ENTER(_("sh_strip_domain"));
|
---|
230 |
|
---|
231 | if (StripDomain == S_FALSE || (first = strchr(name, '.')) == NULL)
|
---|
232 | {
|
---|
233 | SL_RETURN( name, _("sh_strip_domain"));
|
---|
234 | }
|
---|
235 | else
|
---|
236 | {
|
---|
237 |
|
---|
238 | /* check whether it is in dotted number format
|
---|
239 | * --> last part must be kept
|
---|
240 | */
|
---|
241 | if (0 != is_numeric(name))
|
---|
242 | {
|
---|
243 | SL_RETURN( name, _("sh_strip_domain"));
|
---|
244 | /*
|
---|
245 | i = sl_strlen(name) - 1;
|
---|
246 | while (name[i] != '.' && i >= 0)
|
---|
247 | --i;
|
---|
248 | if (name[i] == '.') ++i;
|
---|
249 | sl_strlcpy( name_2, &name[i], SH_MINIBUF +1 );
|
---|
250 | */
|
---|
251 | }
|
---|
252 | else
|
---|
253 | {
|
---|
254 | first = name;
|
---|
255 | while (i < SH_MINIBUF && *first != '.' && *first != '\0')
|
---|
256 | {
|
---|
257 | name_2[i] = *first;
|
---|
258 | ++first; ++i;
|
---|
259 | }
|
---|
260 | name_2[i] = '\0';
|
---|
261 | }
|
---|
262 | }
|
---|
263 |
|
---|
264 | SL_RETURN( name_2, _("sh_strip_domain"));
|
---|
265 | }
|
---|
266 |
|
---|
267 | /* #ifndef SH_STANDALONE */
|
---|
268 | #endif
|
---|
269 |
|
---|
270 | #ifndef USE_SRP_PROTOCOL
|
---|
271 | static
|
---|
272 | void sh_passwd (char * salt, char * password, char * nounce, char *hash)
|
---|
273 | {
|
---|
274 |
|
---|
275 | char *combi;
|
---|
276 | size_t len;
|
---|
277 | register int i;
|
---|
278 | unsigned char * dez = NULL;
|
---|
279 | char hashbuf[KEYBUF_SIZE];
|
---|
280 |
|
---|
281 | if (password == NULL)
|
---|
282 | dez = (unsigned char *) &(skey->pw[0]);
|
---|
283 | else if (sl_strlen(password) < PW_LEN)
|
---|
284 | {
|
---|
285 | fprintf(stderr, _("Password has less than %d chars !\n"),
|
---|
286 | PW_LEN);
|
---|
287 | _exit(EXIT_FAILURE);
|
---|
288 | }
|
---|
289 |
|
---|
290 | if (password == NULL)
|
---|
291 | {
|
---|
292 | /* --- copy password ---
|
---|
293 | */
|
---|
294 | for (i = 0; i < PW_LEN; ++i)
|
---|
295 | {
|
---|
296 | skey->vernam[i] = (char)(*dez);
|
---|
297 | ++dez;
|
---|
298 | }
|
---|
299 | (void) sl_strlcpy (skey->vernam,
|
---|
300 | sh_tiger_hash(skey->vernam, TIGER_DATA, PW_LEN,
|
---|
301 | hashbuf, sizeof(hashbuf)),
|
---|
302 | KEY_LEN+1);
|
---|
303 | }
|
---|
304 | else
|
---|
305 | {
|
---|
306 | (void) sl_strlcpy (skey->vernam, password, KEY_LEN+1);
|
---|
307 | }
|
---|
308 |
|
---|
309 | len = sl_strlen(salt) + 1;
|
---|
310 | if (sl_ok_adds(len, sl_strlen(skey->vernam)))
|
---|
311 | len += sl_strlen(skey->vernam);
|
---|
312 | if (nounce != NULL && sl_ok_adds(len, sl_strlen(nounce)))
|
---|
313 | len += sl_strlen(nounce);
|
---|
314 |
|
---|
315 | /* H(s,P)
|
---|
316 | */
|
---|
317 | combi = SH_ALLOC(len);
|
---|
318 | (void) sl_strlcpy (combi, salt, len);
|
---|
319 | (void) sl_strlcat (combi, skey->vernam, len);
|
---|
320 | if (nounce != NULL)
|
---|
321 | (void) sl_strlcat (combi, nounce, len);
|
---|
322 | (void) sl_strlcpy (hash,
|
---|
323 | sh_tiger_hash(combi, TIGER_DATA,
|
---|
324 | (unsigned long) sl_strlen(combi),
|
---|
325 | hashbuf, sizeof(hashbuf)),
|
---|
326 | KEY_LEN+1);
|
---|
327 |
|
---|
328 | /*
|
---|
329 | fprintf(stderr, "DD: A: <%s>\n", salt);
|
---|
330 | fprintf(stderr, "DD: P: <%s>\n", skey->pw);
|
---|
331 | fprintf(stderr, "DD: V: <%s>\n", skey->vernam);
|
---|
332 | fprintf(stderr, "DD: C: <%s>\n", combi);
|
---|
333 | fprintf(stderr, "DD: H: <%s>\n", hash);
|
---|
334 | */
|
---|
335 |
|
---|
336 | SH_FREE (combi);
|
---|
337 | hash[KEY_LEN] = '\0';
|
---|
338 | return;
|
---|
339 | }
|
---|
340 | #endif
|
---|
341 |
|
---|
342 | #if defined(SH_WITH_CLIENT) || defined(SH_WITH_SERVER)
|
---|
343 |
|
---|
344 | static int count_dev_server = 0;
|
---|
345 |
|
---|
346 | void reset_count_dev_server(void)
|
---|
347 | {
|
---|
348 | count_dev_server = 0;
|
---|
349 | return;
|
---|
350 | }
|
---|
351 |
|
---|
352 | int sh_forward_setlogserver (const char * address)
|
---|
353 | {
|
---|
354 | SL_ENTER(_("sh_forward_setlogserver"));
|
---|
355 |
|
---|
356 | if (address != NULL && count_dev_server < 2
|
---|
357 | && sl_strlen(address) < SH_PATHBUF && sl_strlen(address) > 0)
|
---|
358 | {
|
---|
359 | if (count_dev_server == 0)
|
---|
360 | (void) sl_strlcpy (sh.srvexport.name, address, SH_PATHBUF);
|
---|
361 | else
|
---|
362 | (void) sl_strlcpy (sh.srvexport.alt, address, SH_PATHBUF);
|
---|
363 |
|
---|
364 | ++count_dev_server;
|
---|
365 | SL_RETURN (0, _("sh_forward_setlogserver"));
|
---|
366 | }
|
---|
367 | SL_RETURN (-1, _("sh_forward_setlogserver"));
|
---|
368 | }
|
---|
369 |
|
---|
370 | static
|
---|
371 | int sh_forward_send_intern (int mysocket, char protocol, char * micro,
|
---|
372 | char * msgbuf, unsigned long length, int docrypt)
|
---|
373 | {
|
---|
374 | unsigned long numbytes, countbytes;
|
---|
375 | int flag_err = 0;
|
---|
376 | unsigned char head[SH_HEADER_SIZE];
|
---|
377 | char * outbuf;
|
---|
378 |
|
---|
379 | #ifdef SH_ENCRYPT
|
---|
380 |
|
---|
381 | unsigned long blkfac;
|
---|
382 | int rem;
|
---|
383 | unsigned long length2;
|
---|
384 | char * msg2buf = NULL;
|
---|
385 | char * p, * q;
|
---|
386 | RIJ_BYTE inBlock[B_SIZ];
|
---|
387 | RIJ_BYTE outBlock[B_SIZ];
|
---|
388 | unsigned long j;
|
---|
389 | cipherInstance cipherInst;
|
---|
390 | int err_num;
|
---|
391 | char expbuf[SH_ERRBUF_SIZE];
|
---|
392 | #else
|
---|
393 | docrypt = SL_FALSE; /* dummy to fix compiler warning */
|
---|
394 | #endif
|
---|
395 |
|
---|
396 | SL_ENTER(_("sh_forward_send_intern"));
|
---|
397 |
|
---|
398 | #ifdef SH_ENCRYPT
|
---|
399 | if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_EN2) != (char)0))
|
---|
400 | {
|
---|
401 | put_header (head, (int)protocol, &length, micro);
|
---|
402 | msg2buf = sh_tools_makePack (head, msgbuf, length,
|
---|
403 | &(skey->keyInstE));
|
---|
404 | /*@-usedef@*/
|
---|
405 | length = (unsigned long) (256 * (unsigned int)head[1] +
|
---|
406 | (unsigned int)head[2]);
|
---|
407 | /*@+usedef@*/
|
---|
408 | outbuf = msg2buf;
|
---|
409 | }
|
---|
410 | else if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_ENC) != (char)0))
|
---|
411 | {
|
---|
412 | blkfac = length/B_SIZ;
|
---|
413 | rem = (int) (length - (B_SIZ * blkfac));
|
---|
414 | length2 = (B_SIZ * blkfac);
|
---|
415 | if ((rem > 0) && (length2+B_SIZ) > length2)
|
---|
416 | length2 += B_SIZ;
|
---|
417 | else
|
---|
418 | rem = 0;
|
---|
419 |
|
---|
420 | msg2buf = SH_ALLOC((size_t)length2);
|
---|
421 | p = msgbuf;
|
---|
422 | q = msg2buf;
|
---|
423 |
|
---|
424 | err_num = cipherInit (&cipherInst, (RIJ_BYTE)MODE_CBC, NULL);
|
---|
425 |
|
---|
426 | if (err_num < 0)
|
---|
427 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
428 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
429 | _("sh_forward_send_intern: cipherInit"));
|
---|
430 |
|
---|
431 |
|
---|
432 | for (j = 0; j < blkfac; ++j)
|
---|
433 | {
|
---|
434 | memcpy(inBlock, p, B_SIZ);
|
---|
435 | err_num = blockEncrypt(&cipherInst, &(skey->keyInstE),
|
---|
436 | inBlock, 128 * BNUM, outBlock);
|
---|
437 | if (err_num < 0)
|
---|
438 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
439 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
440 | _("sh_forward_send_intern: blockEncrypt"));
|
---|
441 | memcpy(q, outBlock, B_SIZ);
|
---|
442 | p += B_SIZ;
|
---|
443 | q += B_SIZ;
|
---|
444 | }
|
---|
445 | if (rem > 0)
|
---|
446 | {
|
---|
447 | memset(inBlock, 0, B_SIZ);
|
---|
448 | memcpy(inBlock, p, (size_t)rem);
|
---|
449 | err_num = blockEncrypt(&cipherInst, &(skey->keyInstE),
|
---|
450 | inBlock, 128 * BNUM, outBlock);
|
---|
451 | if (err_num < 0)
|
---|
452 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
453 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
454 | _("sh_forward_send_intern: blockEncrypt"));
|
---|
455 | memcpy(q, outBlock, B_SIZ);
|
---|
456 | q += B_SIZ;
|
---|
457 | }
|
---|
458 |
|
---|
459 | outbuf = msg2buf;
|
---|
460 | length = length2;
|
---|
461 | put_header (head, (int)protocol, &length, micro);
|
---|
462 | }
|
---|
463 | else
|
---|
464 | {
|
---|
465 | outbuf = msgbuf;
|
---|
466 | put_header (head, (int)protocol, &length, micro);
|
---|
467 | }
|
---|
468 | #else
|
---|
469 | outbuf = msgbuf;
|
---|
470 | put_header (head, (int)protocol, &length, micro);
|
---|
471 | #endif
|
---|
472 |
|
---|
473 | SH_SHOWPROT(head,'>');
|
---|
474 |
|
---|
475 | numbytes = SH_HEADER_SIZE;
|
---|
476 | countbytes = write_port (mysocket,
|
---|
477 | (char *) head, numbytes,
|
---|
478 | &flag_err, 300);
|
---|
479 |
|
---|
480 | if (countbytes == numbytes && outbuf != NULL)
|
---|
481 | {
|
---|
482 | numbytes = (length);
|
---|
483 | countbytes = write_port (mysocket,
|
---|
484 | outbuf, numbytes,
|
---|
485 | &flag_err, 300);
|
---|
486 | }
|
---|
487 |
|
---|
488 | #ifdef SH_ENCRYPT
|
---|
489 | /*@-usedef@*/
|
---|
490 | if (msg2buf != NULL)
|
---|
491 | SH_FREE(msg2buf);
|
---|
492 | /*@+usedef@*/
|
---|
493 | #endif
|
---|
494 |
|
---|
495 | if (countbytes == numbytes)
|
---|
496 | {
|
---|
497 | SL_RETURN( 0, _("sh_forward_send_intern"));
|
---|
498 | }
|
---|
499 | else
|
---|
500 | {
|
---|
501 | SL_RETURN( flag_err, _("sh_forward_send_intern"));
|
---|
502 | }
|
---|
503 | }
|
---|
504 | static
|
---|
505 | int sh_forward_send (int mysocket, char protocol, char * micro,
|
---|
506 | char * msgbuf, unsigned long length)
|
---|
507 | {
|
---|
508 | int i;
|
---|
509 | SL_ENTER(_("sh_forward_send"));
|
---|
510 | TPT(( 0, FIL__, __LINE__, _("msg=<Send.>\n")));
|
---|
511 | i = sh_forward_send_intern (mysocket, protocol, micro,
|
---|
512 | msgbuf, length, S_FALSE);
|
---|
513 | SL_RETURN(i, _("sh_forward_send"));
|
---|
514 | }
|
---|
515 | static
|
---|
516 | int sh_forward_send_crypt (int mysocket, char protocol, char * micro,
|
---|
517 | char * msgbuf, unsigned long length)
|
---|
518 | {
|
---|
519 | int i;
|
---|
520 | SL_ENTER(_("sh_forward_send_crypt"));
|
---|
521 | #ifdef SH_ENCRYPT
|
---|
522 | TPT(( 0, FIL__, __LINE__, _("msg=<Send encrypted.>\n")));
|
---|
523 | #else
|
---|
524 | TPT(( 0, FIL__, __LINE__, _("msg=<Send.>\n")));
|
---|
525 | #endif
|
---|
526 | i = sh_forward_send_intern (mysocket, protocol, micro,
|
---|
527 | msgbuf, length, S_TRUE);
|
---|
528 | SL_RETURN(i, _("sh_forward_send_crypt"));
|
---|
529 | }
|
---|
530 |
|
---|
531 |
|
---|
532 | /* receive answer, add a trailing NULL to terminate string
|
---|
533 | * rev 0.8
|
---|
534 | */
|
---|
535 | static
|
---|
536 | long sh_forward_receive_intern (int mysocket, char protocol, char * micro,
|
---|
537 | char * msgbuf, unsigned long length,
|
---|
538 | int docrypt)
|
---|
539 | {
|
---|
540 | unsigned long numbytes, countbytes;
|
---|
541 | int flag_err = -1;
|
---|
542 | unsigned char head[SH_HEADER_SIZE];
|
---|
543 |
|
---|
544 | #ifdef SH_ENCRYPT
|
---|
545 |
|
---|
546 | unsigned long head_length;
|
---|
547 | unsigned long blkfac;
|
---|
548 | /* unsigned long length2; */
|
---|
549 | char * p, * q, * tmp;
|
---|
550 | RIJ_BYTE inBlock[B_SIZ];
|
---|
551 | RIJ_BYTE outBlock[B_SIZ];
|
---|
552 | unsigned long j;
|
---|
553 | cipherInstance cipherInst;
|
---|
554 | int err_num;
|
---|
555 | char expbuf[SH_ERRBUF_SIZE];
|
---|
556 | #else
|
---|
557 | docrypt = SL_FALSE; /* dummy to fix compiler warning */
|
---|
558 | #endif
|
---|
559 |
|
---|
560 | SL_ENTER(_("sh_forward_receive_intern"));
|
---|
561 |
|
---|
562 | #ifdef SH_ENCRYPT
|
---|
563 | /* make sure length is not multiple of B_SIZ, see below
|
---|
564 | */
|
---|
565 | ASSERT_RET((length % B_SIZ != 0), _("length % 16 != 0"), flag_err);
|
---|
566 | #endif
|
---|
567 |
|
---|
568 | if (micro != NULL)
|
---|
569 | micro[4] = '\0';
|
---|
570 |
|
---|
571 | if (msgbuf != NULL)
|
---|
572 | msgbuf[0] = '\0';
|
---|
573 |
|
---|
574 | numbytes = SH_HEADER_SIZE;
|
---|
575 | countbytes = read_port (mysocket,
|
---|
576 | (char *) head, numbytes,
|
---|
577 | &flag_err, 300);
|
---|
578 |
|
---|
579 | if (countbytes != numbytes)
|
---|
580 | {
|
---|
581 | TPT(( 0, FIL__, __LINE__, _("msg=<countbytes != numbytes>\n")));
|
---|
582 | SL_RETURN(flag_err, _("sh_forward_receive_intern"));
|
---|
583 | }
|
---|
584 | /*@-usedef +ignoresigns@*/
|
---|
585 | else if (head[0] != protocol &&
|
---|
586 | (head[0] & SH_PROTO_SRP) == (char)0 /* not set */)
|
---|
587 | {
|
---|
588 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_MISMATCH);
|
---|
589 | SL_RETURN((-1), _("sh_forward_receive_intern"));
|
---|
590 | }
|
---|
591 | /*@+usedef -ignoresigns@*/
|
---|
592 | else
|
---|
593 | {
|
---|
594 | get_header (head, &numbytes, micro);
|
---|
595 | SH_SHOWPROT(head, '<');
|
---|
596 |
|
---|
597 | if (numbytes > 0)
|
---|
598 | {
|
---|
599 | numbytes = (numbytes > length ? length : numbytes);
|
---|
600 |
|
---|
601 | countbytes = read_port (mysocket,
|
---|
602 | msgbuf, numbytes,
|
---|
603 | &flag_err, 300);
|
---|
604 |
|
---|
605 | if (countbytes < length)
|
---|
606 | msgbuf[countbytes] = '\0';
|
---|
607 | else
|
---|
608 | msgbuf[length-1] = '\0';
|
---|
609 |
|
---|
610 | if (flag_err != 0)
|
---|
611 | {
|
---|
612 | TPT(( 0, FIL__, __LINE__, _("msg=<read error>\n")));
|
---|
613 | SL_RETURN((-1), _("sh_forward_receive_intern"));
|
---|
614 | }
|
---|
615 | }
|
---|
616 | }
|
---|
617 |
|
---|
618 | #ifdef SH_ENCRYPT
|
---|
619 | if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_EN2) != (char)0))
|
---|
620 | {
|
---|
621 | tmp = SH_ALLOC((size_t)length);
|
---|
622 | memcpy(tmp, msgbuf, (size_t)length);
|
---|
623 | tmp = sh_tools_revertPack (head, tmp, &(skey->keyInstD), countbytes);
|
---|
624 |
|
---|
625 | head_length = (unsigned long) (256 * (unsigned int)head[1] +
|
---|
626 | (unsigned int)head[2]);
|
---|
627 |
|
---|
628 | /*
|
---|
629 | * revertPack returns header with length <= (original_length-16), so
|
---|
630 | * the following msgbuf[length] = '\0' is always safe.
|
---|
631 | * Nevertheless, check for proper length.
|
---|
632 | */
|
---|
633 | if (head_length <= (length-1))
|
---|
634 | length = head_length;
|
---|
635 | else
|
---|
636 | --length;
|
---|
637 |
|
---|
638 | memcpy(msgbuf, tmp, (size_t)length);
|
---|
639 | msgbuf[length] = '\0';
|
---|
640 | SH_FREE(tmp);
|
---|
641 | if (countbytes == numbytes)
|
---|
642 | {
|
---|
643 | countbytes = length; /* to avoid error on return, see below */
|
---|
644 | }
|
---|
645 | numbytes = length;
|
---|
646 | }
|
---|
647 | else if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_ENC) != (char)0))
|
---|
648 | {
|
---|
649 | /* Decrypt only complete blocks. If there is an incomplete block,
|
---|
650 | * something is wrong anyway.
|
---|
651 | * Decrypt in place.
|
---|
652 | */
|
---|
653 | blkfac = countbytes/B_SIZ;
|
---|
654 |
|
---|
655 | p = msgbuf;
|
---|
656 | q = msgbuf;
|
---|
657 |
|
---|
658 | err_num = cipherInit (&cipherInst, (RIJ_BYTE)MODE_CBC, NULL);
|
---|
659 |
|
---|
660 | if (err_num < 0)
|
---|
661 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
662 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
663 | _("sh_forward_receive_intern: cipherInit"));
|
---|
664 |
|
---|
665 | /* here we want to have (length % B_SIZ != 0), such that the
|
---|
666 | * terminating '\0' cannot be overwritten
|
---|
667 | */
|
---|
668 | for (j = 0; j < blkfac; ++j)
|
---|
669 | {
|
---|
670 | memcpy(inBlock, p, B_SIZ);
|
---|
671 | err_num = blockDecrypt(&cipherInst, &(skey->keyInstD),
|
---|
672 | inBlock, 128 * BNUM, outBlock);
|
---|
673 | if (err_num < 0)
|
---|
674 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
675 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
676 | _("sh_forward_receive_intern: blockDecrypt"));
|
---|
677 | memcpy(q, outBlock, B_SIZ);
|
---|
678 | p += B_SIZ;
|
---|
679 | q += B_SIZ;
|
---|
680 | }
|
---|
681 | }
|
---|
682 | #endif
|
---|
683 |
|
---|
684 | if (countbytes == numbytes)
|
---|
685 | {
|
---|
686 | SL_RETURN(((long)numbytes), _("sh_forward_receive_intern"));
|
---|
687 | }
|
---|
688 | else
|
---|
689 | {
|
---|
690 | TPT(( 0, FIL__, __LINE__, _("msg=<short read>\n")));
|
---|
691 | SL_RETURN(flag_err, _("sh_forward_receive_intern"));
|
---|
692 | }
|
---|
693 | }
|
---|
694 |
|
---|
695 | static
|
---|
696 | long sh_forward_receive (int mysocket, char protocol, char * micro,
|
---|
697 | char * msgbuf, unsigned long length)
|
---|
698 | {
|
---|
699 | long i;
|
---|
700 | SL_ENTER(_("sh_forward_receive"));
|
---|
701 | TPT(( 0, FIL__, __LINE__, _("msg=<Receive.>\n")));
|
---|
702 | i = sh_forward_receive_intern (mysocket, protocol, micro,
|
---|
703 | msgbuf, length, S_FALSE);
|
---|
704 | SL_RETURN(i, _("sh_forward_receive"));
|
---|
705 | }
|
---|
706 |
|
---|
707 | static
|
---|
708 | long sh_forward_receive_crypt (int mysocket, char protocol, char * micro,
|
---|
709 | char * msgbuf, unsigned long length)
|
---|
710 | {
|
---|
711 | long i;
|
---|
712 | SL_ENTER(_("sh_forward_receive_crypt"));
|
---|
713 | #ifdef SH_ENCRYPT
|
---|
714 | TPT(( 0, FIL__, __LINE__, _("msg=<Receive encrypted.>\n")));
|
---|
715 | #else
|
---|
716 | TPT(( 0, FIL__, __LINE__, _("msg=<Receive.>\n")));
|
---|
717 | #endif
|
---|
718 | i = sh_forward_receive_intern (mysocket, protocol, micro,
|
---|
719 | msgbuf, length, S_TRUE);
|
---|
720 | SL_RETURN(i, _("sh_forward_receive"));
|
---|
721 | }
|
---|
722 |
|
---|
723 | /**************************************************
|
---|
724 | *
|
---|
725 | *
|
---|
726 | * C L I E N T
|
---|
727 | *
|
---|
728 | *
|
---|
729 | ***************************************************/
|
---|
730 |
|
---|
731 |
|
---|
732 | #include <time.h>
|
---|
733 |
|
---|
734 | static SH_FIFO * fifo = NULL;
|
---|
735 |
|
---|
736 | static long sh_forward_try (char * errmsg);
|
---|
737 |
|
---|
738 | static unsigned int ServerPort = SH_DEFAULT_PORT;
|
---|
739 |
|
---|
740 | int sh_forward_server_port (const char * str)
|
---|
741 | {
|
---|
742 | unsigned long l;
|
---|
743 | char * endptr;
|
---|
744 |
|
---|
745 | SL_ENTER(_("sh_forward_server_port"));
|
---|
746 |
|
---|
747 | l = strtoul (str, &endptr, 0);
|
---|
748 | if (l > 65535 || endptr == str)
|
---|
749 | {
|
---|
750 | SL_RETURN (-1, _("sh_forward_server_port"));
|
---|
751 | }
|
---|
752 | ServerPort = (unsigned int) l;
|
---|
753 | SL_RETURN (0, _("sh_forward_server_port"));
|
---|
754 | }
|
---|
755 |
|
---|
756 | long sh_forward (char * errmsg)
|
---|
757 | {
|
---|
758 | static int have_server = GOOD;
|
---|
759 | long status;
|
---|
760 | char * popmsg;
|
---|
761 | static int failed = GOOD;
|
---|
762 |
|
---|
763 | SL_ENTER(_("sh_forward"));
|
---|
764 |
|
---|
765 | /* --- No log server available. ---
|
---|
766 | */
|
---|
767 | if (have_server == GOOD && sh.srvexport.name[0] == '\0')
|
---|
768 | {
|
---|
769 | have_server = BAD;
|
---|
770 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NONAME);
|
---|
771 | SL_RETURN (-1, _("sh_forward"));
|
---|
772 | }
|
---|
773 | else if (have_server == BAD)
|
---|
774 | {
|
---|
775 | SL_RETURN (-1, _("sh_forward"));
|
---|
776 | }
|
---|
777 |
|
---|
778 | /* --- Allocate fifo. ---
|
---|
779 | */
|
---|
780 | if (fifo == NULL)
|
---|
781 | {
|
---|
782 | fifo = SH_ALLOC(sizeof(SH_FIFO));
|
---|
783 | fifo_init(fifo);
|
---|
784 | }
|
---|
785 |
|
---|
786 | /* --- Check for messages on the queue, and send them first. ---
|
---|
787 | */
|
---|
788 | while (NULL != (popmsg = pop_list(fifo)) )
|
---|
789 | {
|
---|
790 | status = sh_forward_try (popmsg);
|
---|
791 | if (status != 0)
|
---|
792 | {
|
---|
793 | (void) push_tail_list (fifo, popmsg, 0, NULL);
|
---|
794 | SH_FREE(popmsg);
|
---|
795 | if (SH_FIFO_MAX == push_list (fifo, errmsg, 0,NULL))
|
---|
796 | {
|
---|
797 | SL_RETURN (-2, _("sh_forward"));
|
---|
798 | }
|
---|
799 | SL_RETURN (-1, _("sh_forward"));
|
---|
800 | }
|
---|
801 | SH_FREE(popmsg);
|
---|
802 | }
|
---|
803 |
|
---|
804 | /* --- Now send the error message. ---
|
---|
805 | */
|
---|
806 | status = sh_forward_try (errmsg);
|
---|
807 | if (status != 0)
|
---|
808 | {
|
---|
809 | if (failed == GOOD)
|
---|
810 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_SRV_FAIL,
|
---|
811 | _("log server"),
|
---|
812 | sh.srvexport.name);
|
---|
813 | failed = BAD;
|
---|
814 | if (SH_FIFO_MAX == push_list (fifo, errmsg, 0, NULL))/* push on stack */
|
---|
815 | {
|
---|
816 | SL_RETURN (-2, _("sh_forward"));
|
---|
817 | }
|
---|
818 | SL_RETURN (-1, _("sh_forward"));
|
---|
819 | }
|
---|
820 |
|
---|
821 | failed = GOOD;
|
---|
822 | SL_RETURN (0, _("sh_forward"));
|
---|
823 | }
|
---|
824 |
|
---|
825 | static long sh_forward_try_impl (char * errmsg, char what);
|
---|
826 |
|
---|
827 | static long sh_forward_try (char * errmsg)
|
---|
828 | {
|
---|
829 | long i;
|
---|
830 | SL_ENTER(_("sh_forward_try"));
|
---|
831 | i = sh_forward_try_impl (errmsg, (char)SH_PROTO_MSG);
|
---|
832 | SL_RETURN(i, _("sh_forward_try"));
|
---|
833 | }
|
---|
834 |
|
---|
835 | long sh_forward_req_file (char * file)
|
---|
836 | {
|
---|
837 | long i;
|
---|
838 | char tmp_file[8];
|
---|
839 | SL_ENTER(_("sh_forward_req_file"));
|
---|
840 | (void) sl_strlcpy(tmp_file, file, 8);
|
---|
841 | i = sh_forward_try_impl (tmp_file, (char)SH_PROTO_BIG);
|
---|
842 | SL_RETURN(i, _("sh_forward_req_file"));
|
---|
843 | }
|
---|
844 |
|
---|
845 | static unsigned long sh_throttle_delay = 0;
|
---|
846 |
|
---|
847 | int sh_forward_set_throttle_delay (const char * c)
|
---|
848 | {
|
---|
849 | long val;
|
---|
850 |
|
---|
851 | SL_ENTER(_("sh_forward_set_throttle_delay"));
|
---|
852 |
|
---|
853 | val = strtol (c, (char **)NULL, 10);
|
---|
854 | if (val < 0)
|
---|
855 | SL_RETURN( (-1), _("sh_forward_set_throttle_delay"));
|
---|
856 |
|
---|
857 | val = (val > 1000) ? 1000 : val;
|
---|
858 |
|
---|
859 | sh_throttle_delay = (unsigned long) val;
|
---|
860 | SL_RETURN( (0), _("sh_forward_set_throttle_delay"));
|
---|
861 | }
|
---|
862 |
|
---|
863 |
|
---|
864 | static long sh_forward_try_impl (char * errmsg, char what)
|
---|
865 | {
|
---|
866 | static int initialized = BAD;
|
---|
867 | static int conn_state = GOOD;
|
---|
868 | int sockfd;
|
---|
869 | int flag_err;
|
---|
870 | char * answer;
|
---|
871 |
|
---|
872 | unsigned char theProto;
|
---|
873 |
|
---|
874 | char hash[KEY_LEN+1];
|
---|
875 | size_t len;
|
---|
876 | char * buffer;
|
---|
877 | #ifdef SH_ENCRYPT_2
|
---|
878 | size_t pos; /* for the server command */
|
---|
879 | #endif
|
---|
880 | char head_u[5];
|
---|
881 |
|
---|
882 | char nsrv[KEY_LEN+1];
|
---|
883 | char nclt[KEY_LEN+1];
|
---|
884 | SL_TICKET sfd = -1;
|
---|
885 | int transfercount;
|
---|
886 |
|
---|
887 | char foo_M1[KEY_LEN+1];
|
---|
888 | UINT32 ticks;
|
---|
889 |
|
---|
890 | char error_msg[256];
|
---|
891 | char error_call[SH_MINIBUF];
|
---|
892 | int error_num = 0;
|
---|
893 |
|
---|
894 | #ifdef USE_SRP_PROTOCOL
|
---|
895 | char u_real[SH_CHALLENGE_SIZE];
|
---|
896 | char * foo_A;
|
---|
897 | char * foo_Sc;
|
---|
898 | char * M;
|
---|
899 | #else
|
---|
900 | char nounce[KEY_LEN+1];
|
---|
901 | char temp[2*KEY_LEN+1];
|
---|
902 | char nonce_u[KEY_LEN+1];
|
---|
903 | #endif
|
---|
904 |
|
---|
905 | #ifdef SH_ENCRYPT
|
---|
906 | int err_num;
|
---|
907 | char expbuf[SH_ERRBUF_SIZE];
|
---|
908 | #endif
|
---|
909 |
|
---|
910 | static time_t time_now = 1200;
|
---|
911 | static time_t time_last = 0;
|
---|
912 |
|
---|
913 | static time_t timeout_val = 1;
|
---|
914 | char hashbuf[KEYBUF_SIZE];
|
---|
915 | char sigbuf[KEYBUF_SIZE];
|
---|
916 |
|
---|
917 | SL_ENTER(_("sh_forward_try_impl"));
|
---|
918 |
|
---|
919 | /* --- No message to transmit. ---
|
---|
920 | */
|
---|
921 | if (errmsg == NULL && initialized == GOOD)
|
---|
922 | SL_RETURN( 0, _("sh_forward_try_impl"));
|
---|
923 |
|
---|
924 | /* --- Connection in bad state. ---
|
---|
925 | */
|
---|
926 | if (initialized == BAD || conn_state == BAD)
|
---|
927 | {
|
---|
928 | timeout_val =
|
---|
929 | (time_t)((timeout_val > TIMEOUT_CON) ? TIMEOUT_CON : timeout_val);
|
---|
930 |
|
---|
931 | /* --- Retry bad attempt only after some time. ---
|
---|
932 | */
|
---|
933 | time_now = time (NULL);
|
---|
934 | if ((time_now - time_last) < timeout_val)
|
---|
935 | {
|
---|
936 | TPT(( 0, FIL__, __LINE__, _("msg=<Within deadtime, no retry.>\n")));
|
---|
937 | SL_RETURN( (-1), _("sh_forward_try_impl"));
|
---|
938 | }
|
---|
939 | TPT(( 0, FIL__, __LINE__, _("msg=<Retry.>\n")));
|
---|
940 | }
|
---|
941 | time_last = time (NULL);
|
---|
942 |
|
---|
943 |
|
---|
944 | /* --- Try to connect to log server. ---
|
---|
945 | */
|
---|
946 | error_call[0] = '\0';
|
---|
947 |
|
---|
948 | sockfd = connect_port_2 (sh.srvexport.name, sh.srvexport.alt,
|
---|
949 | ServerPort,
|
---|
950 | error_call, &error_num, error_msg, 256);
|
---|
951 |
|
---|
952 | if (sockfd < 0)
|
---|
953 | {
|
---|
954 | conn_state = BAD;
|
---|
955 | timeout_val *= 2;
|
---|
956 | sh_error_handle ((-1), FIL__, __LINE__, error_num,
|
---|
957 | MSG_E_NET, error_msg, error_call,
|
---|
958 | _("export"), sh.srvexport.name);
|
---|
959 | SL_RETURN( (-1), _("sh_forward_try_impl"));
|
---|
960 | }
|
---|
961 |
|
---|
962 | conn_state = GOOD;
|
---|
963 |
|
---|
964 | /*************************
|
---|
965 | *
|
---|
966 | * initialization
|
---|
967 | *
|
---|
968 | */
|
---|
969 |
|
---|
970 | flag_err = 0;
|
---|
971 | answer = SH_ALLOC(512);
|
---|
972 | MLOCK(answer, 512);
|
---|
973 |
|
---|
974 |
|
---|
975 | #ifndef USE_SRP_PROTOCOL
|
---|
976 |
|
---|
977 | /**************************************************
|
---|
978 | *
|
---|
979 | * --- challenge/response authentication ---
|
---|
980 | *
|
---|
981 | **************************************************/
|
---|
982 |
|
---|
983 | if (initialized == BAD)
|
---|
984 | {
|
---|
985 | theProto = (unsigned char) SH_PROTO_SRP;
|
---|
986 |
|
---|
987 | TPT(( 0, FIL__, __LINE__, _("msg=<c/r: entry>\n")));
|
---|
988 |
|
---|
989 | (void) sl_strlcpy (answer, sh.host.name, 512);
|
---|
990 |
|
---|
991 | flag_err = sh_forward_send (sockfd, (char) theProto, _("SALT"),
|
---|
992 | answer, (unsigned long)sl_strlen(answer));
|
---|
993 |
|
---|
994 | TPT(( 0, FIL__, __LINE__, _("msg=<c/r: sent SALT, flag_err = %d>\n"),
|
---|
995 | flag_err));
|
---|
996 |
|
---|
997 | /* get nonce from server
|
---|
998 | */
|
---|
999 | if (flag_err == 0)
|
---|
1000 | {
|
---|
1001 | flag_err = (int) sh_forward_receive (sockfd, (char)theProto, head_u,
|
---|
1002 | answer, 511);
|
---|
1003 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1004 | TPT(( 0, FIL__, __LINE__,
|
---|
1005 | _("msg=<c/r: rcvt nonce, flag_err = %d>\n"),
|
---|
1006 | flag_err));
|
---|
1007 | }
|
---|
1008 |
|
---|
1009 | /* entry point for jump from message forward if session key must
|
---|
1010 | * be re-initialized
|
---|
1011 | */
|
---|
1012 | initBlock:
|
---|
1013 |
|
---|
1014 | if (0 == check_request (head_u, _("INIT")) &&
|
---|
1015 | flag_err == 0 &&
|
---|
1016 | sl_strlen(answer) > KEY_LEN )
|
---|
1017 | (void) sl_strlcpy(nounce, &answer[KEY_LEN], KEY_LEN+1);
|
---|
1018 | else
|
---|
1019 | flag_err = (-1);
|
---|
1020 |
|
---|
1021 | TPT(( 0, FIL__, __LINE__, _("msg=<c/r: rcvt INIT, flag_err = %d>\n"),
|
---|
1022 | flag_err));
|
---|
1023 |
|
---|
1024 | /* verify random nonce v from server H(v, P)v
|
---|
1025 | */
|
---|
1026 | sh_passwd (nounce, NULL, NULL, temp);
|
---|
1027 | if ( 0 != sl_strncmp(temp, answer, KEY_LEN))
|
---|
1028 | flag_err = (-1);
|
---|
1029 |
|
---|
1030 | TPT(( 0, FIL__, __LINE__, _("msg=<c/r: vrfy nonce, flag_err = %d>\n"),
|
---|
1031 | flag_err));
|
---|
1032 |
|
---|
1033 |
|
---|
1034 | /* --- Create own nonce. ---
|
---|
1035 | */
|
---|
1036 | ticks = (UINT32) taus_get ();
|
---|
1037 |
|
---|
1038 | (void) sl_strlcpy(nonce_u,
|
---|
1039 | sh_tiger_hash((char *) &ticks,
|
---|
1040 | TIGER_DATA,
|
---|
1041 | (unsigned long)sizeof(UINT32),
|
---|
1042 | hashbuf, sizeof(hashbuf)),
|
---|
1043 | KEY_LEN+1);
|
---|
1044 |
|
---|
1045 | /* --- Form the message H(H(u,v),P)u ---
|
---|
1046 | */
|
---|
1047 | (void) sl_strlcpy(temp, nonce_u, 2*KEY_LEN+1);
|
---|
1048 | (void) sl_strlcat(temp, nounce, 2*KEY_LEN+1);
|
---|
1049 | (void) sl_strlcpy(temp,
|
---|
1050 | sh_tiger_hash(temp,
|
---|
1051 | TIGER_DATA,
|
---|
1052 | (unsigned long)sl_strlen(temp),
|
---|
1053 | hashbuf, sizeof(hashbuf)),
|
---|
1054 | KEY_LEN+1);
|
---|
1055 | sh_passwd (temp, NULL, NULL, foo_M1);
|
---|
1056 | (void) sl_strlcpy(temp, foo_M1, 2*KEY_LEN+1);
|
---|
1057 | (void) sl_strlcat(temp, nonce_u, 2*KEY_LEN+1);
|
---|
1058 |
|
---|
1059 | /* --- Send it to server. ---
|
---|
1060 | */
|
---|
1061 | if (flag_err == 0)
|
---|
1062 | {
|
---|
1063 | flag_err = (int) sh_forward_send (sockfd,
|
---|
1064 | (char)(theProto|SH_PROTO_SRP),
|
---|
1065 | _("PASS"), temp,
|
---|
1066 | (unsigned long)sl_strlen(temp));
|
---|
1067 | TPT(( 0, FIL__, __LINE__, _("msg=<c/r: sent PASS, flag_err = %d>\n"),
|
---|
1068 | flag_err));
|
---|
1069 | }
|
---|
1070 |
|
---|
1071 | if (flag_err == 0)
|
---|
1072 | {
|
---|
1073 | flag_err = (int)sh_forward_receive (sockfd,
|
---|
1074 | (char)(theProto|SH_PROTO_SRP),
|
---|
1075 | head_u, answer, 511);
|
---|
1076 | sh_passwd (nounce, NULL, nonce_u, foo_M1);
|
---|
1077 | (void) sl_strlcpy (skey->session, foo_M1, KEY_LEN+1);
|
---|
1078 | #ifdef SH_ENCRYPT
|
---|
1079 | err_num = makeKey(&(skey->keyInstE),
|
---|
1080 | (RIJ_BYTE)DIR_ENCRYPT, 192, skey->session);
|
---|
1081 | if (err_num < 0)
|
---|
1082 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
1083 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
1084 | _("sh_forward_try_impl: makeKey"));
|
---|
1085 |
|
---|
1086 | err_num = makeKey(&(skey->keyInstD),
|
---|
1087 | (RIJ_BYTE)DIR_DECRYPT, 192, skey->session);
|
---|
1088 | if (err_num < 0)
|
---|
1089 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
1090 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
1091 | _("sh_forward_try_impl: make_key"));
|
---|
1092 | #endif
|
---|
1093 | initialized = GOOD;
|
---|
1094 | }
|
---|
1095 |
|
---|
1096 | if (initialized == BAD)
|
---|
1097 | {
|
---|
1098 | timeout_val *= 2;
|
---|
1099 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NOAUTH);
|
---|
1100 | memset(answer, 0, 512);
|
---|
1101 | MUNLOCK(answer, 512);
|
---|
1102 | SH_FREE(answer);
|
---|
1103 | SL_RETURN( (-1), _("sh_forward_try_impl"));
|
---|
1104 | }
|
---|
1105 | else
|
---|
1106 | {
|
---|
1107 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_AUTH);
|
---|
1108 | }
|
---|
1109 | }
|
---|
1110 |
|
---|
1111 | #else
|
---|
1112 |
|
---|
1113 |
|
---|
1114 | /* This is the SRP authenticated key exchange protocol.
|
---|
1115 | * Produces a session key skey->session.
|
---|
1116 | */
|
---|
1117 | if (initialized == BAD)
|
---|
1118 | {
|
---|
1119 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: entry>\n")));
|
---|
1120 |
|
---|
1121 | theProto = SH_PROTO_SRP;
|
---|
1122 |
|
---|
1123 | sl_strlcpy (answer, sh.host.name, 512);
|
---|
1124 | flag_err = sh_forward_send (sockfd, theProto, _("SALT "),
|
---|
1125 | answer, sl_strlen(answer));
|
---|
1126 |
|
---|
1127 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: sent SALT, flag_err = %d>\n"),
|
---|
1128 | flag_err));
|
---|
1129 |
|
---|
1130 | if (flag_err == 0)
|
---|
1131 | {
|
---|
1132 | flag_err = sh_forward_receive (sockfd, theProto, head_u,
|
---|
1133 | answer, 511);
|
---|
1134 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1135 | TPT(( 0, FIL__, __LINE__,
|
---|
1136 | _("msg=<srp: rcvt nonce, flag_err = %d>\n"),
|
---|
1137 | flag_err));
|
---|
1138 | }
|
---|
1139 |
|
---|
1140 | /* Entry point for jump from message forward if session key must
|
---|
1141 | * be re-initialized.
|
---|
1142 | */
|
---|
1143 | initBlock:
|
---|
1144 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: INIT>\n")));
|
---|
1145 |
|
---|
1146 | if (flag_err == 0 &&
|
---|
1147 | (0 == check_request (head_u, _("INIT"))))
|
---|
1148 | {
|
---|
1149 | if (0 != sh_srp_init())
|
---|
1150 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_EBGN);
|
---|
1151 | else /* if (0 == sh_srp_init()) */
|
---|
1152 | {
|
---|
1153 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: bignum initialized>\n")));
|
---|
1154 |
|
---|
1155 | sh_srp_x (answer, NULL); /* x password */
|
---|
1156 | sh_srp_make_a (); /* a random number */
|
---|
1157 | foo_A = sh_srp_A(); /* g^a */
|
---|
1158 |
|
---|
1159 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: A = %s>\n"), foo_A));
|
---|
1160 |
|
---|
1161 | if (foo_A == NULL)
|
---|
1162 | flag_err = (-1);
|
---|
1163 |
|
---|
1164 | if (flag_err == 0)
|
---|
1165 | flag_err = sh_forward_send (sockfd,
|
---|
1166 | (theProto|SH_PROTO_SRP),
|
---|
1167 | _("PC01"),
|
---|
1168 | foo_A, sl_strlen(foo_A)+1);
|
---|
1169 | if (flag_err == 0)
|
---|
1170 | {
|
---|
1171 | flag_err = sh_forward_receive (sockfd,
|
---|
1172 | (theProto|SH_PROTO_SRP),
|
---|
1173 | head_u,
|
---|
1174 | answer, 511);
|
---|
1175 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1176 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: B = %s>\n"), answer));
|
---|
1177 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: u = %03o-%03o-%03o-%03o>\n"), head_u[0], head_u[1], head_u[2], head_u[3]));
|
---|
1178 | }
|
---|
1179 |
|
---|
1180 | /* u nounce */
|
---|
1181 | /* B answer */
|
---|
1182 | /* S = (B-g^x)^(a+ux) */
|
---|
1183 |
|
---|
1184 | if (flag_err == 0)
|
---|
1185 | {
|
---|
1186 | if (0 != sh_srp_check_zero (answer))
|
---|
1187 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_EZERO);
|
---|
1188 | else /* if (0 != sh_srp_check_zero (answer)) */
|
---|
1189 | {
|
---|
1190 | sl_strlcpy(u_real, sh_tiger_hash(head_u, TIGER_DATA, 4,
|
---|
1191 | hashbuf, sizeof(hashbuf)),
|
---|
1192 | SH_CHALLENGE_SIZE);
|
---|
1193 | foo_Sc = sh_srp_S_c (u_real, answer);
|
---|
1194 |
|
---|
1195 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: U = %s>\n"),
|
---|
1196 | u_real));
|
---|
1197 | TPT(( 0, FIL__, __LINE__, _("msg=<srp:Sc = %s>\n"),
|
---|
1198 | foo_Sc));
|
---|
1199 |
|
---|
1200 | /* --- Now send H(A,B,H(Sc)) and check. ---
|
---|
1201 | */
|
---|
1202 | if (foo_Sc != NULL && 0 == sh_srp_check_zero (foo_Sc))
|
---|
1203 | {
|
---|
1204 | sh_srp_M(foo_A,
|
---|
1205 | answer,
|
---|
1206 | sh_tiger_hash(foo_Sc,
|
---|
1207 | TIGER_DATA,
|
---|
1208 | sl_strlen(foo_Sc),
|
---|
1209 | hashbuf, sizeof(hashbuf)),
|
---|
1210 | foo_M1, KEY_LEN+1);
|
---|
1211 |
|
---|
1212 |
|
---|
1213 | TPT(( 0, FIL__, __LINE__, _("msg=<srp:M1 = %s>\n"),
|
---|
1214 | foo_M1));
|
---|
1215 |
|
---|
1216 | flag_err = sh_forward_send(sockfd,
|
---|
1217 | (theProto|SH_PROTO_SRP),
|
---|
1218 | _("PC02"),
|
---|
1219 | foo_M1, KEY_LEN+1);
|
---|
1220 | }
|
---|
1221 | else
|
---|
1222 | {
|
---|
1223 | flag_err = (-1);
|
---|
1224 | }
|
---|
1225 |
|
---|
1226 | if (flag_err == 0)
|
---|
1227 | {
|
---|
1228 | flag_err =sh_forward_receive(sockfd,
|
---|
1229 | (theProto|SH_PROTO_SRP),
|
---|
1230 | head_u,
|
---|
1231 | answer, 511);
|
---|
1232 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1233 | TPT(( 0, FIL__, __LINE__, _("msg=<srp: M = %s>\n"),
|
---|
1234 | answer));
|
---|
1235 | }
|
---|
1236 |
|
---|
1237 | if (flag_err == 0 &&
|
---|
1238 | (0 == check_request (head_u, _("PARP"))))
|
---|
1239 | {
|
---|
1240 | /* ------ verify M2 = H(A, M1, K) --------
|
---|
1241 | */
|
---|
1242 | char M_buf[KEY_LEN+1];
|
---|
1243 | M = sh_srp_M (foo_A, foo_M1,
|
---|
1244 | sh_tiger_hash(foo_Sc,
|
---|
1245 | TIGER_DATA,
|
---|
1246 | sl_strlen(foo_Sc),
|
---|
1247 | hashbuf, sizeof(hashbuf)),
|
---|
1248 | M_buf, sizeof(M_buf)
|
---|
1249 | );
|
---|
1250 | if (M != NULL &&
|
---|
1251 | 0 == sl_strncmp (answer, M, KEY_LEN+1))
|
---|
1252 | {
|
---|
1253 | sl_strlcpy (skey->session,
|
---|
1254 | sh_tiger_hash(foo_Sc,
|
---|
1255 | TIGER_DATA,
|
---|
1256 | sl_strlen(foo_Sc),
|
---|
1257 | hashbuf, sizeof(hashbuf)),
|
---|
1258 | KEY_LEN+1);
|
---|
1259 | TPT(( 0, FIL__, __LINE__,
|
---|
1260 | _("msg=<srp: Key = %s>\n"),
|
---|
1261 | skey->session));
|
---|
1262 |
|
---|
1263 | #ifdef SH_ENCRYPT
|
---|
1264 | err_num = makeKey(&(skey->keyInstE),
|
---|
1265 | DIR_ENCRYPT,
|
---|
1266 | 192, skey->session);
|
---|
1267 | if (err_num < 0)
|
---|
1268 | sh_error_handle((-1), FIL__, __LINE__, -1,
|
---|
1269 | MSG_E_SUBGEN,
|
---|
1270 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
1271 | _("sh_forward_try_impl: makeKey"));
|
---|
1272 | err_num = makeKey(&(skey->keyInstD),
|
---|
1273 | DIR_DECRYPT,
|
---|
1274 | 192, skey->session);
|
---|
1275 | if (err_num < 0)
|
---|
1276 | sh_error_handle((-1), FIL__, __LINE__, -1,
|
---|
1277 | MSG_E_SUBGEN,
|
---|
1278 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
1279 | _("sh_forward_try_impl: makeKey"));
|
---|
1280 | #endif
|
---|
1281 | initialized = GOOD;
|
---|
1282 | }
|
---|
1283 | }
|
---|
1284 | if (foo_Sc != NULL)
|
---|
1285 | SH_FREE(foo_Sc);
|
---|
1286 | }
|
---|
1287 | }
|
---|
1288 | if (foo_A != NULL)
|
---|
1289 | SH_FREE(foo_A);
|
---|
1290 | sh_srp_exit();
|
---|
1291 | }
|
---|
1292 | }
|
---|
1293 |
|
---|
1294 | if (initialized == BAD)
|
---|
1295 | {
|
---|
1296 | timeout_val *= 2;
|
---|
1297 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NOAUTH);
|
---|
1298 | memset(answer, '\0', 512);
|
---|
1299 | MUNLOCK(answer, 512);
|
---|
1300 | SH_FREE(answer);
|
---|
1301 | SL_RETURN( (-1), _("sh_forward_try_impl"));
|
---|
1302 | }
|
---|
1303 | else
|
---|
1304 | {
|
---|
1305 | if (flag_err_info == SL_TRUE)
|
---|
1306 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_AUTH);
|
---|
1307 | }
|
---|
1308 | }
|
---|
1309 |
|
---|
1310 | #endif
|
---|
1311 |
|
---|
1312 | /* no message, just session key negotiated
|
---|
1313 | */
|
---|
1314 | if (errmsg == NULL)
|
---|
1315 | {
|
---|
1316 | timeout_val = 1;
|
---|
1317 | memset(answer, 0, 512);
|
---|
1318 | MUNLOCK(answer, 512);
|
---|
1319 | SH_FREE(answer);
|
---|
1320 | TPT(( 0, FIL__, __LINE__, _("msg=<No message.>\n")));
|
---|
1321 | SL_RETURN( (0), _("sh_forward_try_impl"));
|
---|
1322 | }
|
---|
1323 | else if (what == (char)SH_PROTO_BIG)
|
---|
1324 | {
|
---|
1325 | MUNLOCK(answer, 512);
|
---|
1326 | SH_FREE (answer);
|
---|
1327 | answer = SH_ALLOC(TRANS_BYTES + 256);
|
---|
1328 | MLOCK(answer, TRANS_BYTES + 256);
|
---|
1329 | TPT(( 0, FIL__, __LINE__, _("msg=<File transfer.>\n")));
|
---|
1330 | }
|
---|
1331 |
|
---|
1332 |
|
---|
1333 | (void) sl_strlcpy (answer, sh_util_siggen(skey->session,
|
---|
1334 | sh.host.name,
|
---|
1335 | sl_strlen(sh.host.name),
|
---|
1336 | sigbuf, sizeof(sigbuf)),
|
---|
1337 | KEY_LEN+1);
|
---|
1338 | TPT((0, FIL__, __LINE__, _("msg=<host %s>\n"), sh.host.name));
|
---|
1339 | TPT((0, FIL__, __LINE__, _("msg=<ckey %s>\n"), skey->session));
|
---|
1340 | TPT((0, FIL__, __LINE__, _("msg=<sign %s>\n"), answer));
|
---|
1341 |
|
---|
1342 |
|
---|
1343 | (void) sl_strlcat (answer, sh.host.name, 512);
|
---|
1344 |
|
---|
1345 | TPT((0, FIL__, __LINE__, _("msg=<mesg %s>\n"), answer));
|
---|
1346 |
|
---|
1347 | /***********************************************
|
---|
1348 | *
|
---|
1349 | * send the message
|
---|
1350 | *
|
---|
1351 | */
|
---|
1352 |
|
---|
1353 | if (what == (char) SH_PROTO_MSG)
|
---|
1354 | {
|
---|
1355 | theProto = (unsigned char)SH_PROTO_MSG;
|
---|
1356 |
|
---|
1357 | /* say HELO
|
---|
1358 | */
|
---|
1359 |
|
---|
1360 | flag_err = sh_forward_send (sockfd,
|
---|
1361 | (char)theProto, _("HELO"),
|
---|
1362 | answer,
|
---|
1363 | (unsigned long)sl_strlen(answer));
|
---|
1364 | TPT(( 0, FIL__, __LINE__, _("msg=<Sent %s, status %d.>\n"),
|
---|
1365 | answer, flag_err));
|
---|
1366 | if (flag_err == 0)
|
---|
1367 | {
|
---|
1368 | /* --- Get challenge. ---
|
---|
1369 | */
|
---|
1370 | flag_err = (int) sh_forward_receive (sockfd,
|
---|
1371 | (char)SH_PROTO_MSG, head_u,
|
---|
1372 | answer, 255);
|
---|
1373 | TPT(( 0, FIL__, __LINE__, _("msg=<Rcvt %s, u %s, status %d.>\n"),
|
---|
1374 | answer, hu_trans(head_u), flag_err));
|
---|
1375 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1376 |
|
---|
1377 | if (flag_err == 0)
|
---|
1378 | {
|
---|
1379 |
|
---|
1380 | /* --- Re-negotiate key. ---
|
---|
1381 | */
|
---|
1382 | if (0 == check_request_nerr(head_u, _("INIT")))
|
---|
1383 | {
|
---|
1384 | flag_err = 0;
|
---|
1385 | initialized = BAD;
|
---|
1386 | goto initBlock;
|
---|
1387 | }
|
---|
1388 |
|
---|
1389 | else if (0 == check_request(head_u, _("TALK")))
|
---|
1390 | {
|
---|
1391 |
|
---|
1392 | /* --- Save the challenge. ---
|
---|
1393 | */
|
---|
1394 | (void) sl_strlcpy(nsrv, answer, KEY_LEN + 1);
|
---|
1395 |
|
---|
1396 | /* --- Hash(msg,challenge,sessionkey). ---
|
---|
1397 | */
|
---|
1398 | len = sl_strlen(errmsg) + sl_strlen(answer)
|
---|
1399 | + KEY_LEN + 1;
|
---|
1400 | len = (size_t)((len < 256) ? 256 : len);
|
---|
1401 | buffer = SH_ALLOC(len);
|
---|
1402 | MLOCK(buffer, len);
|
---|
1403 | (void) sl_strlcpy(buffer, errmsg, len);
|
---|
1404 | (void) sl_strlcat(buffer, answer, len);
|
---|
1405 | (void) sl_strlcpy(hash,
|
---|
1406 | sh_util_siggen (skey->session,
|
---|
1407 | buffer,
|
---|
1408 | sl_strlen(buffer),
|
---|
1409 | sigbuf, sizeof(sigbuf)),
|
---|
1410 | KEY_LEN+1);
|
---|
1411 | TPT((0, FIL__, __LINE__, _("msg=<sign %s.>\n"),
|
---|
1412 | sh_util_siggen(skey->session, buffer,
|
---|
1413 | sl_strlen(buffer), sigbuf, sizeof(sigbuf))));
|
---|
1414 |
|
---|
1415 | (void) sl_strlcpy(buffer, errmsg, len);
|
---|
1416 | (void) sl_strlcat(buffer, hash, len);
|
---|
1417 |
|
---|
1418 | flag_err =
|
---|
1419 | sh_forward_send_crypt (sockfd,
|
---|
1420 | #ifdef SH_ENCRYPT
|
---|
1421 | #ifdef SH_ENCRYPT_2
|
---|
1422 | (char)(SH_PROTO_MSG|SH_PROTO_ENC|SH_PROTO_EN2),
|
---|
1423 | #else
|
---|
1424 | (char)(SH_PROTO_MSG|SH_PROTO_ENC),
|
---|
1425 | #endif
|
---|
1426 | #else
|
---|
1427 | (char)(SH_PROTO_MSG),
|
---|
1428 | #endif
|
---|
1429 | _("MESG"),
|
---|
1430 | buffer,
|
---|
1431 | (unsigned long)(sl_strlen(buffer)+1));
|
---|
1432 | TPT(( 0, FIL__, __LINE__,
|
---|
1433 | _("msg=<Sent %s, status %d.>\n"),
|
---|
1434 | answer, flag_err));
|
---|
1435 |
|
---|
1436 | /* --- Get confirmation. ---
|
---|
1437 | */
|
---|
1438 | if (flag_err == 0)
|
---|
1439 | {
|
---|
1440 | flag_err = (int)
|
---|
1441 | sh_forward_receive_crypt (sockfd,
|
---|
1442 | #ifdef SH_ENCRYPT
|
---|
1443 | #ifdef SH_ENCRYPT_2
|
---|
1444 | (char)(SH_PROTO_MSG|SH_PROTO_ENC|SH_PROTO_EN2|SH_PROTO_END),
|
---|
1445 | #else
|
---|
1446 | (char)(SH_PROTO_MSG|SH_PROTO_ENC|SH_PROTO_END),
|
---|
1447 | #endif
|
---|
1448 | #else
|
---|
1449 | (char)(SH_PROTO_MSG|SH_PROTO_END),
|
---|
1450 | #endif
|
---|
1451 | head_u,
|
---|
1452 | answer, 255);
|
---|
1453 | TPT(( 0, FIL__, __LINE__,
|
---|
1454 | _("msg=<Rcvt %s, u %s, status %d.>\n"),
|
---|
1455 | answer, hu_trans(head_u), flag_err));
|
---|
1456 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1457 | }
|
---|
1458 |
|
---|
1459 |
|
---|
1460 | /* --- Check confirmation. ---
|
---|
1461 | */
|
---|
1462 | if (flag_err == 0)
|
---|
1463 | {
|
---|
1464 | /* CLIENT CONF RECV
|
---|
1465 | *
|
---|
1466 | * first KEY_LEN bytes must be
|
---|
1467 | * sig(skey->session (errmsg nsrv))
|
---|
1468 | *
|
---|
1469 | */
|
---|
1470 | (void) sl_strlcpy(buffer, errmsg, len);
|
---|
1471 | (void) sl_strlcat(buffer, nsrv, len);
|
---|
1472 | flag_err = sl_strncmp(answer,
|
---|
1473 | sh_util_siggen(skey->session,
|
---|
1474 | buffer,
|
---|
1475 | sl_strlen(buffer),
|
---|
1476 | sigbuf, sizeof(sigbuf)),
|
---|
1477 | KEY_LEN);
|
---|
1478 | TPT((0, FIL__, __LINE__, _("msg=<sign %s.>\n"),
|
---|
1479 | sh_util_siggen(skey->session, buffer,
|
---|
1480 | sl_strlen(buffer), sigbuf, sizeof(sigbuf))));
|
---|
1481 |
|
---|
1482 | if (flag_err != 0)
|
---|
1483 | {
|
---|
1484 | #ifdef ENOMSG
|
---|
1485 | flag_err = ENOMSG;
|
---|
1486 | #else
|
---|
1487 | flag_err = EIO;
|
---|
1488 | #endif
|
---|
1489 | sh_error_handle((-1), FIL__, __LINE__, flag_err,
|
---|
1490 | MSG_TCP_NOCONF);
|
---|
1491 | }
|
---|
1492 | else
|
---|
1493 | {
|
---|
1494 | #ifdef SH_ENCRYPT_2
|
---|
1495 | /* --- SERVER CMD --- */
|
---|
1496 | if (answer[KEY_LEN] != '\0' &&
|
---|
1497 | sl_strlen(answer) > (2*KEY_LEN))
|
---|
1498 | {
|
---|
1499 | pos = sl_strlen(answer) - (2*KEY_LEN);
|
---|
1500 | /*
|
---|
1501 | * buffer is >= 256
|
---|
1502 | * answer has <= 255 bytes
|
---|
1503 | */
|
---|
1504 | (void) sl_strlcpy(buffer, &answer[KEY_LEN],
|
---|
1505 | pos+1);
|
---|
1506 | flag_err =
|
---|
1507 | sl_strncmp(&answer[KEY_LEN+pos],
|
---|
1508 | sh_util_siggen(skey->session,
|
---|
1509 | buffer,
|
---|
1510 | pos,
|
---|
1511 | sigbuf, sizeof(sigbuf)),
|
---|
1512 | KEY_LEN);
|
---|
1513 |
|
---|
1514 | TPT((0, FIL__, __LINE__,
|
---|
1515 | _("CONF RECV <%d> <%s>\n"),
|
---|
1516 | flag_err, &answer[KEY_LEN]));
|
---|
1517 |
|
---|
1518 | if (flag_err != 0) {
|
---|
1519 | sh_error_handle((-1), FIL__, __LINE__,
|
---|
1520 | flag_err,
|
---|
1521 | MSG_TCP_NOCONF);
|
---|
1522 | }
|
---|
1523 | #ifdef SH_WITH_CLIENT
|
---|
1524 | else {
|
---|
1525 | sh_socket_server_cmd(buffer);
|
---|
1526 | }
|
---|
1527 | #endif
|
---|
1528 | flag_err = 0;
|
---|
1529 |
|
---|
1530 | } else {
|
---|
1531 |
|
---|
1532 | TPT((0, FIL__, __LINE__,
|
---|
1533 | _("CONF RECV <0> <[null]>\n")));
|
---|
1534 |
|
---|
1535 | }
|
---|
1536 | /* --- SERVER CMD END --- */
|
---|
1537 | #endif
|
---|
1538 | if (flag_err_debug == SL_TRUE)
|
---|
1539 | sh_error_handle((-1), FIL__, __LINE__, 0,
|
---|
1540 | MSG_TCP_CONF);
|
---|
1541 | }
|
---|
1542 | }
|
---|
1543 |
|
---|
1544 | memset(buffer, 0, len);
|
---|
1545 | MUNLOCK(buffer, len);
|
---|
1546 | SH_FREE(buffer);
|
---|
1547 | }
|
---|
1548 | else
|
---|
1549 | {
|
---|
1550 | /* --- Unexpected reply from server. ---
|
---|
1551 | */
|
---|
1552 | sh_error_handle((-1), FIL__, __LINE__, 0,
|
---|
1553 | MSG_TCP_UNEXP);
|
---|
1554 | flag_err = (-1);
|
---|
1555 | }
|
---|
1556 | }
|
---|
1557 | }
|
---|
1558 | }
|
---|
1559 |
|
---|
1560 |
|
---|
1561 | else if (what == (char)SH_PROTO_BIG)
|
---|
1562 | {
|
---|
1563 | theProto = (unsigned char) SH_PROTO_BIG;
|
---|
1564 |
|
---|
1565 | /* --- Say HELO ---
|
---|
1566 | */
|
---|
1567 | flag_err = sh_forward_send (sockfd, (char) theProto, _("HELO"),
|
---|
1568 | answer, (unsigned long)sl_strlen(answer));
|
---|
1569 | TPT(( 0, FIL__, __LINE__, _("msg=<Sent %s, status %d.>\n"),
|
---|
1570 | answer, flag_err));
|
---|
1571 |
|
---|
1572 | if (flag_err == 0)
|
---|
1573 | {
|
---|
1574 | /* --- Get NSRV. ---
|
---|
1575 | */
|
---|
1576 | flag_err = (int) sh_forward_receive (sockfd,
|
---|
1577 | (char)SH_PROTO_BIG, head_u,
|
---|
1578 | answer, 255);
|
---|
1579 | TPT(( 0, FIL__, __LINE__, _("msg=<Rcvt %s, u %s, status %d.>\n"),
|
---|
1580 | answer, hu_trans(head_u), flag_err));
|
---|
1581 | flag_err = (flag_err < 0) ? flag_err : 0;
|
---|
1582 | }
|
---|
1583 |
|
---|
1584 | if (flag_err == 0)
|
---|
1585 | {
|
---|
1586 |
|
---|
1587 | /* --- Re-negotiate key. ---
|
---|
1588 | */
|
---|
1589 | if (0 == check_request_nerr(head_u, _("INIT")))
|
---|
1590 | {
|
---|
1591 | flag_err = 0;
|
---|
1592 | initialized = BAD;
|
---|
1593 | goto initBlock;
|
---|
1594 | }
|
---|
1595 |
|
---|
1596 |
|
---|
1597 | else if (0 == check_request(head_u, _("NSRV")))
|
---|
1598 | {
|
---|
1599 | #ifdef SH_ENCRYPT
|
---|
1600 | /* --- Set encryption flag. ---
|
---|
1601 | */
|
---|
1602 | #ifdef SH_ENCRYPT_2
|
---|
1603 | theProto =
|
---|
1604 | (unsigned char)(SH_PROTO_BIG | SH_PROTO_ENC | SH_PROTO_EN2);
|
---|
1605 | #else
|
---|
1606 | theProto = (unsigned char)(SH_PROTO_BIG | SH_PROTO_ENC);
|
---|
1607 | #endif
|
---|
1608 | #endif
|
---|
1609 |
|
---|
1610 | (void) sl_strlcpy(nsrv, answer, KEY_LEN+1);
|
---|
1611 |
|
---|
1612 | /* --- Generate a nonce. ---
|
---|
1613 | */
|
---|
1614 | ticks = (UINT32) taus_get ();
|
---|
1615 |
|
---|
1616 | (void) sl_strlcpy(nclt,
|
---|
1617 | sh_tiger_hash((char *) &ticks,
|
---|
1618 | TIGER_DATA,
|
---|
1619 | (unsigned long)sizeof(UINT32),
|
---|
1620 | hashbuf, sizeof(hashbuf)),
|
---|
1621 | KEY_LEN+1);
|
---|
1622 |
|
---|
1623 | /* --- Compute H(nsrv, nclt, skey). ---
|
---|
1624 | */
|
---|
1625 | buffer = sh_util_strconcat (nsrv, nclt,
|
---|
1626 | skey->session, NULL);
|
---|
1627 | (void)sl_strlcpy(foo_M1,
|
---|
1628 | sh_tiger_hash(buffer, TIGER_DATA,
|
---|
1629 | (unsigned long)sl_strlen(buffer),
|
---|
1630 | hashbuf, sizeof(hashbuf)),
|
---|
1631 | KEY_LEN+1);
|
---|
1632 | memset (buffer, 0, sl_strlen(buffer));
|
---|
1633 |
|
---|
1634 | /* --- Send (nclt, msg) ---
|
---|
1635 | */
|
---|
1636 | (void) sl_strlcpy(buffer, nclt, KEY_LEN+1);
|
---|
1637 | (void) sl_strlcat(buffer, errmsg, KEY_LEN+5);
|
---|
1638 |
|
---|
1639 | #ifndef SH_ENCRYPT
|
---|
1640 | buffer[KEY_LEN+4] = theProto;
|
---|
1641 | buffer[KEY_LEN+5] = '\0';
|
---|
1642 | sh_tools_hash_add(foo_M1, buffer, KEY_LEN+5);
|
---|
1643 | #endif
|
---|
1644 |
|
---|
1645 | flag_err =
|
---|
1646 | sh_forward_send_crypt (sockfd, (char) theProto, _("NCLT"),
|
---|
1647 | buffer,
|
---|
1648 | (unsigned long) sl_strlen(buffer));
|
---|
1649 |
|
---|
1650 | TPT(( 0, FIL__, __LINE__, _("msg=<Sent %s, status %d.>\n"),
|
---|
1651 | buffer, flag_err));
|
---|
1652 | SH_FREE (buffer);
|
---|
1653 | }
|
---|
1654 | }
|
---|
1655 |
|
---|
1656 | if (flag_err == 0)
|
---|
1657 | {
|
---|
1658 | /* --- Receive the file. ---
|
---|
1659 | */
|
---|
1660 |
|
---|
1661 | /* --- Open a temporary file. ---
|
---|
1662 | */
|
---|
1663 |
|
---|
1664 | if ( (sfd = open_tmp ()) < 0)
|
---|
1665 | {
|
---|
1666 | flag_err = (-1);
|
---|
1667 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_EFIL);
|
---|
1668 | }
|
---|
1669 | else
|
---|
1670 | {
|
---|
1671 | /* --- Read from socket into tmp file. ---
|
---|
1672 | */
|
---|
1673 | transfercount = 0;
|
---|
1674 | flag_err = 0;
|
---|
1675 |
|
---|
1676 | do {
|
---|
1677 | flag_err = (int)
|
---|
1678 | sh_forward_receive_crypt (sockfd,
|
---|
1679 | #ifdef SH_ENCRYPT
|
---|
1680 | #ifdef SH_ENCRYPT_2
|
---|
1681 | (char)(SH_PROTO_BIG|SH_PROTO_EN2|SH_PROTO_ENC),
|
---|
1682 | #else
|
---|
1683 | (char)(SH_PROTO_BIG|SH_PROTO_ENC),
|
---|
1684 | #endif
|
---|
1685 | #else
|
---|
1686 | (char)(SH_PROTO_BIG),
|
---|
1687 | #endif
|
---|
1688 | head_u,
|
---|
1689 | answer,
|
---|
1690 | TRANS_BYTES + 255);
|
---|
1691 |
|
---|
1692 | TPT(( 0, FIL__, __LINE__,
|
---|
1693 | _("msg=<Received: %d bytes, marked %s.>\n"),
|
---|
1694 | flag_err, hu_trans(head_u)));
|
---|
1695 |
|
---|
1696 | if (flag_err > 0 && 0 == check_request_nerr(head_u, _("FILE")))
|
---|
1697 | {
|
---|
1698 | if (0 == hash_check (foo_M1, answer, flag_err))
|
---|
1699 | {
|
---|
1700 | (void) sl_write(sfd, &answer[KEY_LEN],
|
---|
1701 | flag_err-KEY_LEN);
|
---|
1702 | ++transfercount;
|
---|
1703 | /***
|
---|
1704 | *** --- Delay for throughput throttling ---
|
---|
1705 | ***/
|
---|
1706 | if (sh_throttle_delay > 0)
|
---|
1707 | retry_msleep(sh_throttle_delay/1000, sh_throttle_delay % 1000);
|
---|
1708 | /***
|
---|
1709 | *** --- End delay ---
|
---|
1710 | ***/
|
---|
1711 | flag_err =
|
---|
1712 | sh_forward_send_crypt (sockfd, (char) theProto,
|
---|
1713 | _("RECV"),
|
---|
1714 | nclt,
|
---|
1715 | (unsigned long)sl_strlen(nclt));
|
---|
1716 |
|
---|
1717 | }
|
---|
1718 | else
|
---|
1719 | {
|
---|
1720 | TPT(( 0, FIL__, __LINE__,
|
---|
1721 | _("msg=<File transfer: Hash check failed.>\n")));
|
---|
1722 | break;
|
---|
1723 | }
|
---|
1724 | }
|
---|
1725 | else
|
---|
1726 | {
|
---|
1727 | TPT(( 0, FIL__, __LINE__,
|
---|
1728 | _("msg=<File transfer: No more data.>\n")));
|
---|
1729 | break;
|
---|
1730 | }
|
---|
1731 | } while (transfercount < 32000); /* 64 Mbyte */
|
---|
1732 |
|
---|
1733 | if (0 == check_request_nerr(head_u, _("EEOT")) &&
|
---|
1734 | 0 < flag_err &&
|
---|
1735 | 0 == hash_check (foo_M1, answer, (int)strlen(answer)))
|
---|
1736 | {
|
---|
1737 | flag_err =
|
---|
1738 | sh_forward_send_crypt (sockfd, (char) theProto,
|
---|
1739 | _("EOTE"),
|
---|
1740 | nclt,
|
---|
1741 | (unsigned int) sl_strlen(nclt));
|
---|
1742 |
|
---|
1743 | (void) rewind_tmp (sfd);
|
---|
1744 | (void) sl_sync(sfd);
|
---|
1745 | if (flag_err_info == SL_TRUE)
|
---|
1746 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FOK);
|
---|
1747 | }
|
---|
1748 | else
|
---|
1749 | {
|
---|
1750 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FBAD);
|
---|
1751 | (void) sl_close (sfd);
|
---|
1752 | sfd = (-1);
|
---|
1753 | }
|
---|
1754 |
|
---|
1755 | (void) sl_close_fd (FIL__, __LINE__, sockfd);
|
---|
1756 | memset(answer, 0, TRANS_BYTES + 256);
|
---|
1757 | MUNLOCK(answer, TRANS_BYTES + 256);
|
---|
1758 | SH_FREE(answer);
|
---|
1759 | timeout_val = 1;
|
---|
1760 |
|
---|
1761 | SL_RETURN( (sfd), _("sh_forward_try_impl"));
|
---|
1762 | }
|
---|
1763 | }
|
---|
1764 |
|
---|
1765 | (void) sl_close_fd (FIL__, __LINE__, sockfd);
|
---|
1766 | memset(answer, 0, TRANS_BYTES + 256);
|
---|
1767 | MUNLOCK(answer, TRANS_BYTES + 256);
|
---|
1768 | SH_FREE(answer);
|
---|
1769 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FBAD);
|
---|
1770 | timeout_val *= 2;
|
---|
1771 |
|
---|
1772 | SL_RETURN( (-1), _("sh_forward_try_impl"));
|
---|
1773 | }
|
---|
1774 |
|
---|
1775 |
|
---|
1776 |
|
---|
1777 | (void) sl_close_fd (FIL__, __LINE__, sockfd);
|
---|
1778 | memset(answer, 0, 512);
|
---|
1779 | MUNLOCK(answer, 512);
|
---|
1780 | SH_FREE(answer);
|
---|
1781 |
|
---|
1782 | #ifndef EIO
|
---|
1783 | #define EIO 5
|
---|
1784 | #endif
|
---|
1785 |
|
---|
1786 |
|
---|
1787 | #ifdef SH_ERROR_H
|
---|
1788 | if (flag_err != 0)
|
---|
1789 | {
|
---|
1790 | char errbuf[SH_ERRBUF_SIZE];
|
---|
1791 | conn_state = BAD;
|
---|
1792 | timeout_val *= 2;
|
---|
1793 | if (flag_err < 0 || NULL == sh_error_message(flag_err, errbuf, sizeof(errbuf)))
|
---|
1794 | flag_err = EIO;
|
---|
1795 | sh_error_handle((-1), FIL__, __LINE__, flag_err, MSG_TCP_ECONN,
|
---|
1796 | sh_error_message(flag_err, errbuf, sizeof(errbuf)));
|
---|
1797 | SL_RETURN( (-1), _("sh_forward_try_impl"));
|
---|
1798 | }
|
---|
1799 | #endif
|
---|
1800 | timeout_val = 1;
|
---|
1801 |
|
---|
1802 | SL_RETURN( (0), _("sh_forward_try_impl"));
|
---|
1803 | }
|
---|
1804 |
|
---|
1805 | /* #ifdef SH_WITH_CLIENT */
|
---|
1806 | #endif
|
---|
1807 |
|
---|
1808 |
|
---|
1809 | #if defined (SH_WITH_SERVER)
|
---|
1810 |
|
---|
1811 | #ifndef USE_SRP_PROTOCOL
|
---|
1812 |
|
---|
1813 | int sh_forward_make_client (const char * str)
|
---|
1814 | {
|
---|
1815 | /* char * safer; */
|
---|
1816 | char key[KEY_LEN+1];
|
---|
1817 | unsigned char in[PW_LEN+1];
|
---|
1818 | int i = 0, j, k, l = 0;
|
---|
1819 | char hashbuf[KEYBUF_SIZE];
|
---|
1820 |
|
---|
1821 | if (sl_strlen(str) != (PW_LEN * 2))
|
---|
1822 | {
|
---|
1823 | fprintf(stderr,
|
---|
1824 | _("Input must be a %d digit hexadecimal number"\
|
---|
1825 | " (only 0-9, a-f, A-F allowed in input)\n"),
|
---|
1826 | (PW_LEN * 2));
|
---|
1827 | _exit(EXIT_FAILURE);
|
---|
1828 | }
|
---|
1829 |
|
---|
1830 | while (i < (PW_LEN * 2))
|
---|
1831 | {
|
---|
1832 | k = sh_util_hexchar(str[i]); j = sh_util_hexchar(str[i+1]);
|
---|
1833 | if (k != -1 && j != -1)
|
---|
1834 | {
|
---|
1835 | in[l] = (k * 16 + j);
|
---|
1836 | ++l; i+= 2;
|
---|
1837 | }
|
---|
1838 | else
|
---|
1839 | {
|
---|
1840 | fprintf(stderr, _("Invalid char %c\n"), str[i]);
|
---|
1841 | _exit(EXIT_FAILURE);
|
---|
1842 | }
|
---|
1843 | }
|
---|
1844 | in[PW_LEN] = '\0';
|
---|
1845 |
|
---|
1846 | sl_strlcpy ((char *)key,
|
---|
1847 | sh_tiger_hash ((char*)in, TIGER_DATA, PW_LEN,
|
---|
1848 | hashbuf, sizeof(hashbuf)),
|
---|
1849 | KEY_LEN+1);
|
---|
1850 | key[KEY_LEN] = '\0';
|
---|
1851 |
|
---|
1852 | fprintf(stdout, _("Client entry: Client=HOSTNAME@00000000@%s\n"),
|
---|
1853 | key);
|
---|
1854 | fflush(stdout);
|
---|
1855 |
|
---|
1856 | _exit(EXIT_SUCCESS);
|
---|
1857 | return 0;
|
---|
1858 | }
|
---|
1859 |
|
---|
1860 | #else
|
---|
1861 |
|
---|
1862 | int sh_forward_make_client (const char * str)
|
---|
1863 | {
|
---|
1864 | char * foo_v;
|
---|
1865 |
|
---|
1866 | char salt[17];
|
---|
1867 | char key[KEY_LEN+1];
|
---|
1868 | char in[PW_LEN];
|
---|
1869 | int i = 0, j, k, l = 0;
|
---|
1870 | char hashbuf[KEYBUF_SIZE];
|
---|
1871 |
|
---|
1872 | if (sl_strlen(str) != (PW_LEN*2))
|
---|
1873 | {
|
---|
1874 | fprintf(stderr,
|
---|
1875 | _("Input must be a %d digit hexadecimal number"\
|
---|
1876 | " (only 0-9, a-f, A-F allowed in input)\n"),
|
---|
1877 | (PW_LEN*2));
|
---|
1878 | _exit(EXIT_FAILURE);
|
---|
1879 | }
|
---|
1880 |
|
---|
1881 | while (i < (PW_LEN*2))
|
---|
1882 | {
|
---|
1883 | k = sh_util_hexchar(str[i]); j = sh_util_hexchar(str[i+1]);
|
---|
1884 | if (k != -1 && j != -1)
|
---|
1885 | {
|
---|
1886 | in[l] = (k * 16 + j);
|
---|
1887 | ++l; i+= 2;
|
---|
1888 | }
|
---|
1889 | else
|
---|
1890 | {
|
---|
1891 | fprintf(stderr, _("Invalid char %c\n"), str[i]);
|
---|
1892 | _exit(EXIT_FAILURE);
|
---|
1893 | }
|
---|
1894 | }
|
---|
1895 |
|
---|
1896 |
|
---|
1897 | if (0 == sh_srp_init())
|
---|
1898 | {
|
---|
1899 | sh_util_keyinit(key, KEY_LEN);
|
---|
1900 | sl_strlcpy(salt, sh_tiger_hash(key, TIGER_DATA, KEY_LEN,
|
---|
1901 | hashbuf, sizeof(hashbuf)),
|
---|
1902 | 17);
|
---|
1903 | sh_srp_x (salt, in);
|
---|
1904 | foo_v = sh_srp_verifier ();
|
---|
1905 | fprintf(stdout, _("Client=HOSTNAME@%s@%s\n"),
|
---|
1906 | salt, foo_v);
|
---|
1907 | fflush(stdout);
|
---|
1908 | SH_FREE(foo_v);
|
---|
1909 | sh_srp_exit();
|
---|
1910 | _exit(EXIT_SUCCESS);
|
---|
1911 | }
|
---|
1912 | fprintf(stdout, "%s",_("ERROR initializing BigNum library.\n"));
|
---|
1913 | fflush (stdout);
|
---|
1914 | _exit(EXIT_FAILURE);
|
---|
1915 | return -1;
|
---|
1916 | }
|
---|
1917 | #endif
|
---|
1918 |
|
---|
1919 |
|
---|
1920 | int sh_forward_create_password (const char * dummy)
|
---|
1921 | {
|
---|
1922 | UINT32 val[2];
|
---|
1923 | char output[KEY_LEN+1];
|
---|
1924 | char hashbuf[KEYBUF_SIZE];
|
---|
1925 |
|
---|
1926 | val[0] = taus_get ();
|
---|
1927 | val[1] = taus_get ();
|
---|
1928 |
|
---|
1929 | sl_strlcpy (output,
|
---|
1930 | sh_tiger_hash((char *)(&val[0]), TIGER_DATA, 2*sizeof(UINT32),
|
---|
1931 | hashbuf, sizeof(hashbuf)),
|
---|
1932 | KEY_LEN);
|
---|
1933 |
|
---|
1934 | output[16] = '\0';
|
---|
1935 |
|
---|
1936 | fprintf(stdout, _("%s\n"), output);
|
---|
1937 | fflush (stdout);
|
---|
1938 |
|
---|
1939 | if (dummy)
|
---|
1940 | _exit(EXIT_SUCCESS);
|
---|
1941 | else
|
---|
1942 | _exit(EXIT_SUCCESS);
|
---|
1943 | return (0); /* avoid compiler warning */
|
---|
1944 | }
|
---|
1945 |
|
---|
1946 | /* #if defined (SH_WITH_SERVER) */
|
---|
1947 | #endif
|
---|
1948 |
|
---|
1949 | /**************************************************
|
---|
1950 | *
|
---|
1951 | *
|
---|
1952 | * S E R V E R
|
---|
1953 | *
|
---|
1954 | *
|
---|
1955 | ***************************************************/
|
---|
1956 |
|
---|
1957 | #ifdef SH_WITH_SERVER
|
---|
1958 |
|
---|
1959 | #include "sh_readconf.h"
|
---|
1960 |
|
---|
1961 |
|
---|
1962 | #define CONN_FREE 0
|
---|
1963 | #define CONN_READING 1
|
---|
1964 | #define CONN_SENDING 2
|
---|
1965 | #define CONN_PAUSE 3
|
---|
1966 | #define CONN_BUSY 4
|
---|
1967 |
|
---|
1968 | char * clt_stat[] = {
|
---|
1969 | N_("Inactive"),
|
---|
1970 | N_("Started"),
|
---|
1971 | N_("ILLEGAL"),
|
---|
1972 | N_("FAILED"),
|
---|
1973 | N_("Exited"),
|
---|
1974 | N_("PANIC"),
|
---|
1975 | N_("POLICY"),
|
---|
1976 | N_("File_transfer"),
|
---|
1977 | N_("Message"),
|
---|
1978 | N_("TIMEOUT_EXCEEDED"),
|
---|
1979 | N_("Suspended"),
|
---|
1980 | N_("Filecheck"),
|
---|
1981 | };
|
---|
1982 |
|
---|
1983 | #include <time.h>
|
---|
1984 |
|
---|
1985 | /* in sh_html.h:
|
---|
1986 | * typedef struct client_entry {
|
---|
1987 | * } client_t;
|
---|
1988 | */
|
---|
1989 |
|
---|
1990 | #include "zAVLTree.h"
|
---|
1991 |
|
---|
1992 | static char * sh_tolower (char * s)
|
---|
1993 | {
|
---|
1994 | char * ret = s;
|
---|
1995 | if (s)
|
---|
1996 | {
|
---|
1997 | for (; *s; ++s)
|
---|
1998 | {
|
---|
1999 | *s = tolower((unsigned char) *s);
|
---|
2000 | }
|
---|
2001 | }
|
---|
2002 | return ret;
|
---|
2003 | }
|
---|
2004 |
|
---|
2005 | /* Function to return the key for indexing
|
---|
2006 | * the argument
|
---|
2007 | */
|
---|
2008 | zAVLKey sh_avl_key (void const * arg)
|
---|
2009 | {
|
---|
2010 | const client_t * sa = (const client_t *) arg;
|
---|
2011 | return (zAVLKey) sa->hostname;
|
---|
2012 | }
|
---|
2013 |
|
---|
2014 | zAVLTree * all_clients = NULL;
|
---|
2015 |
|
---|
2016 | void sh_forward_html_write()
|
---|
2017 | {
|
---|
2018 | SL_ENTER(_("sh_forward_html_write"));
|
---|
2019 | sh_html_write(all_clients);
|
---|
2020 | SL_RET0(_("sh_forward_html_write"));
|
---|
2021 | }
|
---|
2022 |
|
---|
2023 |
|
---|
2024 | int sh_forward_use_clt_class (const char * c)
|
---|
2025 | {
|
---|
2026 | int i;
|
---|
2027 | SL_ENTER(_("sh_forward_use_clt_class"));
|
---|
2028 | i = sh_util_flagval(c, &(sh.flag.client_class));
|
---|
2029 | SL_RETURN(i, _("sh_forward_use_clt_class"));
|
---|
2030 | }
|
---|
2031 |
|
---|
2032 | int sh_forward_use_clt_sev (const char * c)
|
---|
2033 | {
|
---|
2034 | int i;
|
---|
2035 | SL_ENTER(_("sh_forward_use_clt_sev"));
|
---|
2036 | i = sh_util_flagval(c, &(sh.flag.client_severity));
|
---|
2037 | SL_RETURN(i, _("sh_forward_use_clt_sev"));
|
---|
2038 | }
|
---|
2039 |
|
---|
2040 |
|
---|
2041 | /* the destructor
|
---|
2042 | */
|
---|
2043 | void free_client(void * inptr)
|
---|
2044 | {
|
---|
2045 | client_t * here;
|
---|
2046 |
|
---|
2047 | SL_ENTER(_("free_client"));
|
---|
2048 | if (inptr == NULL)
|
---|
2049 | SL_RET0(_("free_client"));
|
---|
2050 | else
|
---|
2051 | here = (client_t *) inptr;
|
---|
2052 |
|
---|
2053 | if (here->hostname != NULL)
|
---|
2054 | SH_FREE(here->hostname);
|
---|
2055 | if (here->salt != NULL)
|
---|
2056 | SH_FREE(here->salt);
|
---|
2057 | if (here->verifier != NULL)
|
---|
2058 | SH_FREE(here->verifier);
|
---|
2059 | SH_FREE(here);
|
---|
2060 | SL_RET0(_("free_client"));
|
---|
2061 | }
|
---|
2062 |
|
---|
2063 |
|
---|
2064 | int sh_forward_register_client (const char * str)
|
---|
2065 | {
|
---|
2066 | client_t * newclt;
|
---|
2067 | client_t * testclt;
|
---|
2068 |
|
---|
2069 | const char * ptr;
|
---|
2070 | int sepnum = 0;
|
---|
2071 | int sep[2];
|
---|
2072 | register int i = 0;
|
---|
2073 | int siz_str = 0;
|
---|
2074 |
|
---|
2075 | SL_ENTER(_("sh_forward_register_client"));
|
---|
2076 |
|
---|
2077 | ptr = str;
|
---|
2078 | while (*ptr) {
|
---|
2079 | if (*ptr == '@' && sepnum < 2 )
|
---|
2080 | {
|
---|
2081 | sep[sepnum] = i;
|
---|
2082 | ++sepnum;
|
---|
2083 | }
|
---|
2084 | ++ptr; ++i;
|
---|
2085 | }
|
---|
2086 |
|
---|
2087 | if (all_clients == NULL)
|
---|
2088 | {
|
---|
2089 | all_clients = zAVLAllocTree (sh_avl_key);
|
---|
2090 | if (all_clients == NULL)
|
---|
2091 | {
|
---|
2092 | (void) safe_logger (0, 0, NULL);
|
---|
2093 | aud__exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
2094 | }
|
---|
2095 | }
|
---|
2096 |
|
---|
2097 | if ((sepnum == 2) && (sep[0] > 0) && (sep[1] > sep[0]))
|
---|
2098 | {
|
---|
2099 | newclt = SH_ALLOC (sizeof(client_t));
|
---|
2100 | newclt->hostname = SH_ALLOC (sep[0]+1);
|
---|
2101 | newclt->salt = SH_ALLOC (sep[1]-sep[0]);
|
---|
2102 | newclt->verifier = SH_ALLOC (sl_strlen(str)-sep[1]+1);
|
---|
2103 | newclt->exit_flag = 0;
|
---|
2104 | newclt->dead_flag = 0;
|
---|
2105 | #ifdef SH_ENCRYPT
|
---|
2106 | #ifdef SH_ENCRYPT_2
|
---|
2107 | newclt->encf_flag = SH_PROTO_ENC|SH_PROTO_EN2;
|
---|
2108 | newclt->ency_flag = SH_PROTO_ENC|SH_PROTO_EN2;
|
---|
2109 | #else
|
---|
2110 | newclt->encf_flag = SH_PROTO_ENC;
|
---|
2111 | newclt->ency_flag = SH_PROTO_ENC;
|
---|
2112 | #endif
|
---|
2113 | #else
|
---|
2114 | newclt->encf_flag = 0;
|
---|
2115 | newclt->ency_flag = 0;
|
---|
2116 | #endif
|
---|
2117 | newclt->session_key[0] = '\0';
|
---|
2118 | newclt->last_connect = (time_t) 0;
|
---|
2119 | newclt->session_key_timer = (time_t) 0;
|
---|
2120 | newclt->status_now = CLT_INACTIVE;
|
---|
2121 | for (i = 0; i < CLT_MAX; ++i)
|
---|
2122 | newclt->status_arr[i] = CLT_INACTIVE;
|
---|
2123 | (void) sh_unix_time(0, newclt->timestamp[CLT_INACTIVE], TIM_MAX);
|
---|
2124 |
|
---|
2125 | /* truncate */
|
---|
2126 | sl_strlcpy(newclt->hostname, &str[0], sep[0]+1);
|
---|
2127 | sh_tolower(newclt->hostname);
|
---|
2128 |
|
---|
2129 | /* truncate */
|
---|
2130 | sl_strlcpy(newclt->salt, &str[sep[0]+1], sep[1]-sep[0]);
|
---|
2131 | sl_strlcpy(newclt->verifier, &str[sep[1]+1], sl_strlen(str)-sep[1]+1);
|
---|
2132 |
|
---|
2133 | testclt = (client_t *) zAVLSearch (all_clients, newclt->hostname);
|
---|
2134 |
|
---|
2135 | if (testclt != NULL)
|
---|
2136 | {
|
---|
2137 | SH_FREE(testclt->verifier);
|
---|
2138 | siz_str = strlen (newclt->verifier) + 1;
|
---|
2139 | testclt->verifier = SH_ALLOC (siz_str);
|
---|
2140 | sl_strlcpy(testclt->verifier, newclt->verifier, siz_str);
|
---|
2141 |
|
---|
2142 | SH_FREE(testclt->salt);
|
---|
2143 | siz_str = strlen (newclt->salt) + 1;
|
---|
2144 | testclt->salt = SH_ALLOC (siz_str);
|
---|
2145 | sl_strlcpy(testclt->salt, newclt->salt, siz_str);
|
---|
2146 |
|
---|
2147 | testclt->dead_flag = 0;
|
---|
2148 |
|
---|
2149 | free_client(newclt);
|
---|
2150 | SL_RETURN( 0, _("sh_forward_register_client"));
|
---|
2151 | }
|
---|
2152 | else
|
---|
2153 | {
|
---|
2154 | if (0 == zAVLInsert (all_clients, newclt))
|
---|
2155 | {
|
---|
2156 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_CREG,
|
---|
2157 | newclt->hostname,
|
---|
2158 | newclt->salt, newclt->verifier);
|
---|
2159 | SL_RETURN( 0, _("sh_forward_register_client"));
|
---|
2160 | }
|
---|
2161 | }
|
---|
2162 | }
|
---|
2163 | SL_RETURN (-1, _("sh_forward_register_client"));
|
---|
2164 | }
|
---|
2165 |
|
---|
2166 | typedef struct {
|
---|
2167 | int state;
|
---|
2168 | int fd;
|
---|
2169 | char * buf;
|
---|
2170 | unsigned char head[SH_HEADER_SIZE];
|
---|
2171 | char challenge[SH_CHALLENGE_SIZE];
|
---|
2172 | char peer[SH_MINIBUF+1];
|
---|
2173 | client_t * client_entry;
|
---|
2174 | char * K;
|
---|
2175 | char * M1;
|
---|
2176 | char * A;
|
---|
2177 | int headcount;
|
---|
2178 | unsigned long bytecount;
|
---|
2179 | unsigned long bytes_to_send;
|
---|
2180 | unsigned long bytes_to_get;
|
---|
2181 | int pass;
|
---|
2182 | unsigned long timer;
|
---|
2183 |
|
---|
2184 | char * FileName;
|
---|
2185 | unsigned long FileLength;
|
---|
2186 | unsigned long FileSent;
|
---|
2187 | char FileType[5];
|
---|
2188 |
|
---|
2189 | struct sockaddr_in addr_peer;
|
---|
2190 | } sh_conn_t;
|
---|
2191 |
|
---|
2192 |
|
---|
2193 | static char zap_challenge[SH_CHALLENGE_SIZE] = { 0 };
|
---|
2194 |
|
---|
2195 | void sh_forward_do_free (sh_conn_t * conn)
|
---|
2196 | {
|
---|
2197 | SL_ENTER(_("sh_forward_do_free"));
|
---|
2198 |
|
---|
2199 | if (conn->K != NULL)
|
---|
2200 | {
|
---|
2201 | SH_FREE(conn->K);
|
---|
2202 | conn->K = NULL;
|
---|
2203 | }
|
---|
2204 | if (conn->A != NULL)
|
---|
2205 | {
|
---|
2206 | SH_FREE(conn->A);
|
---|
2207 | conn->A = NULL;
|
---|
2208 | }
|
---|
2209 | if (conn->M1 != NULL)
|
---|
2210 | {
|
---|
2211 | SH_FREE(conn->M1);
|
---|
2212 | conn->M1 = NULL;
|
---|
2213 | }
|
---|
2214 | if (conn->buf != NULL)
|
---|
2215 | {
|
---|
2216 | SH_FREE(conn->buf);
|
---|
2217 | conn->buf = NULL;
|
---|
2218 | }
|
---|
2219 | if (conn->fd != (-1))
|
---|
2220 | {
|
---|
2221 | sl_close_fd (FIL__, __LINE__, conn->fd);
|
---|
2222 | conn->fd = -1;
|
---|
2223 | }
|
---|
2224 | memcpy(conn->challenge, zap_challenge, SH_CHALLENGE_SIZE);
|
---|
2225 | conn->state = CONN_FREE;
|
---|
2226 | conn->headcount = 0;
|
---|
2227 | conn->bytecount = 0;
|
---|
2228 | conn->bytes_to_send = 0;
|
---|
2229 | conn->bytes_to_get = 0;
|
---|
2230 | conn->pass = 0;
|
---|
2231 | conn->timer = 0;
|
---|
2232 | conn->client_entry = NULL;
|
---|
2233 |
|
---|
2234 | if (conn->FileName != NULL)
|
---|
2235 | {
|
---|
2236 | SH_FREE(conn->FileName);
|
---|
2237 | conn->FileName = NULL;
|
---|
2238 | }
|
---|
2239 | conn->FileLength = 0;
|
---|
2240 | conn->FileSent = 0;
|
---|
2241 | conn->FileType[0] = '\0';
|
---|
2242 | conn->FileType[1] = '\0';
|
---|
2243 | conn->FileType[2] = '\0';
|
---|
2244 | conn->FileType[3] = '\0';
|
---|
2245 | conn->FileType[4] = '\0';
|
---|
2246 |
|
---|
2247 | --server_status.conn_open;
|
---|
2248 |
|
---|
2249 | SL_RET0(_("sh_forward_do_free"));
|
---|
2250 | }
|
---|
2251 |
|
---|
2252 | /****************************************
|
---|
2253 | *
|
---|
2254 | * -- Reconfiguration. --
|
---|
2255 | *
|
---|
2256 | * (1) Mark all clients as 'dead'.
|
---|
2257 | * (2) Reload configuration - clients
|
---|
2258 | * in config are non-dead now.
|
---|
2259 | * (3) Remove all clients still
|
---|
2260 | * marked as 'dead'.
|
---|
2261 | */
|
---|
2262 |
|
---|
2263 | /* -- Mark all clients as dead.
|
---|
2264 | */
|
---|
2265 | void sh_forward_mark_dead (void)
|
---|
2266 | {
|
---|
2267 | zAVLCursor avlcursor;
|
---|
2268 | client_t * item;
|
---|
2269 |
|
---|
2270 | SL_ENTER(_("sh_forward_mark_dead"));
|
---|
2271 |
|
---|
2272 | for (item = (client_t *) zAVLFirst(&avlcursor, all_clients); item;
|
---|
2273 | item = (client_t *) zAVLNext(&avlcursor))
|
---|
2274 | {
|
---|
2275 | item->dead_flag = 1;
|
---|
2276 | }
|
---|
2277 | SL_RET0(_("sh_forward_mark_dead"));
|
---|
2278 | }
|
---|
2279 |
|
---|
2280 |
|
---|
2281 | /* -- Clean tree from dead clients.
|
---|
2282 | */
|
---|
2283 | void sh_forward_clean_tree (void)
|
---|
2284 | {
|
---|
2285 | zAVLCursor avlcursor;
|
---|
2286 | client_t * item;
|
---|
2287 |
|
---|
2288 | SL_ENTER(_("sh_forward_clean_tree"));
|
---|
2289 |
|
---|
2290 | repeat_search:
|
---|
2291 |
|
---|
2292 | for (item = (client_t *) zAVLFirst(&avlcursor, all_clients); item;
|
---|
2293 | item = (client_t *) zAVLNext(&avlcursor))
|
---|
2294 | {
|
---|
2295 | if (item->dead_flag == 1)
|
---|
2296 | {
|
---|
2297 | zAVLDelete (all_clients, item->hostname);
|
---|
2298 | free_client (item);
|
---|
2299 | goto repeat_search;
|
---|
2300 | }
|
---|
2301 | }
|
---|
2302 | SL_RET0(_("sh_forward_clean_tree"));
|
---|
2303 | }
|
---|
2304 |
|
---|
2305 | /*
|
---|
2306 | *
|
---|
2307 | **********************************************/
|
---|
2308 |
|
---|
2309 |
|
---|
2310 |
|
---|
2311 | /* -- SERVER SEND FUNKTION. --
|
---|
2312 | */
|
---|
2313 | void sh_forward_prep_send_int (sh_conn_t * conn,
|
---|
2314 | char * msg, unsigned long length,
|
---|
2315 | char * u, char protocol,
|
---|
2316 | int docrypt)
|
---|
2317 | {
|
---|
2318 | /* register unsigned long i; */
|
---|
2319 | unsigned long length2;
|
---|
2320 |
|
---|
2321 | #ifdef SH_ENCRYPT
|
---|
2322 | unsigned long blkfac = 0;
|
---|
2323 | int rem = 0;
|
---|
2324 | char * p, * q;
|
---|
2325 | RIJ_BYTE inBlock[B_SIZ];
|
---|
2326 | RIJ_BYTE outBlock[B_SIZ];
|
---|
2327 | unsigned int j;
|
---|
2328 | cipherInstance cipherInst;
|
---|
2329 | int err_num;
|
---|
2330 | char expbuf[SH_ERRBUF_SIZE];
|
---|
2331 | #else
|
---|
2332 | (void) docrypt;
|
---|
2333 | #endif
|
---|
2334 |
|
---|
2335 | SL_ENTER(_("sh_forward_prep_send_int"));
|
---|
2336 |
|
---|
2337 | TPT((0, FIL__, __LINE__, _("msg=<%s>, docrypt=<%d>\n"), msg, docrypt ));
|
---|
2338 |
|
---|
2339 | #ifdef SH_ENCRYPT
|
---|
2340 | if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_EN2) != 0) )
|
---|
2341 | {
|
---|
2342 | length2 = length;
|
---|
2343 | }
|
---|
2344 | else if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_ENC) != 0) )
|
---|
2345 | {
|
---|
2346 | blkfac = length/B_SIZ;
|
---|
2347 | rem = length - (B_SIZ * blkfac);
|
---|
2348 | length2 = (B_SIZ * blkfac);
|
---|
2349 | if (rem > 0 && (length2 + B_SIZ) > length2)
|
---|
2350 | length2 += B_SIZ;
|
---|
2351 | else
|
---|
2352 | rem = 0;
|
---|
2353 | }
|
---|
2354 | else
|
---|
2355 | {
|
---|
2356 | length2 = length;
|
---|
2357 | }
|
---|
2358 | #else
|
---|
2359 | length2 = length;
|
---|
2360 | #endif
|
---|
2361 |
|
---|
2362 | conn->headcount = 0;
|
---|
2363 | conn->bytecount = 0;
|
---|
2364 | conn->bytes_to_send = 0;
|
---|
2365 | conn->bytes_to_get = 0;
|
---|
2366 |
|
---|
2367 | if (conn->buf != NULL)
|
---|
2368 | {
|
---|
2369 | SH_FREE(conn->buf);
|
---|
2370 | conn->buf = NULL;
|
---|
2371 | }
|
---|
2372 |
|
---|
2373 |
|
---|
2374 | put_header (conn->head, protocol, &length2, u);
|
---|
2375 | SH_SHOWPROT(conn->head,'>');
|
---|
2376 |
|
---|
2377 | TPT((0, FIL__, __LINE__, _("msg=<put_header done>\n") ));
|
---|
2378 |
|
---|
2379 | if (msg == NULL)
|
---|
2380 | length2 = 0;
|
---|
2381 |
|
---|
2382 | #ifdef SH_ENCRYPT
|
---|
2383 | if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_EN2) != 0))
|
---|
2384 | {
|
---|
2385 | TPT((0, FIL__, __LINE__, _("encrypting (version 2)\n")));
|
---|
2386 |
|
---|
2387 | conn->buf = sh_tools_makePack (conn->head, msg, length2,
|
---|
2388 | &(conn->client_entry->keyInstE));
|
---|
2389 | }
|
---|
2390 | else if ((S_TRUE == docrypt) && ((protocol & SH_PROTO_ENC) != 0) &&
|
---|
2391 | ((length2 + 1) > length2))
|
---|
2392 | {
|
---|
2393 | conn->buf = SH_ALLOC(length2 + 1);
|
---|
2394 |
|
---|
2395 | p = msg;
|
---|
2396 | q = conn->buf;
|
---|
2397 |
|
---|
2398 | TPT((0, FIL__, __LINE__, _("encrypting (version 1)\n")));
|
---|
2399 |
|
---|
2400 | err_num = cipherInit (&cipherInst, MODE_CBC, NULL);
|
---|
2401 | if (err_num < 0)
|
---|
2402 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
2403 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
2404 | _("sh_forward_prep_send_int: cipherInit"));
|
---|
2405 |
|
---|
2406 | for (j = 0; j < blkfac; ++j)
|
---|
2407 | {
|
---|
2408 | memcpy(inBlock, p, B_SIZ);
|
---|
2409 | err_num = blockEncrypt(&cipherInst, &(conn->client_entry->keyInstE),
|
---|
2410 | inBlock, 128 * BNUM, outBlock);
|
---|
2411 | if (err_num < 0)
|
---|
2412 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
2413 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
2414 | _("sh_forward_prep_send_int: blockEncrypt"));
|
---|
2415 | memcpy(q, outBlock, B_SIZ);
|
---|
2416 | p += B_SIZ;
|
---|
2417 | q += B_SIZ;
|
---|
2418 | }
|
---|
2419 | if (rem > 0)
|
---|
2420 | {
|
---|
2421 | /* incomplete block at end
|
---|
2422 | */
|
---|
2423 | memset(inBlock, '\0', B_SIZ);
|
---|
2424 | memcpy(inBlock, p, rem);
|
---|
2425 | err_num = blockEncrypt(&cipherInst, &(conn->client_entry->keyInstE),
|
---|
2426 | inBlock, 128 * BNUM, outBlock);
|
---|
2427 | if (err_num < 0)
|
---|
2428 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
2429 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
2430 | _("sh_forward_prep_send_int: blockEncrypt"));
|
---|
2431 | memcpy(q, outBlock, B_SIZ);
|
---|
2432 | q += B_SIZ;
|
---|
2433 | }
|
---|
2434 |
|
---|
2435 | TPT((0, FIL__, __LINE__, _("msg=<encryption done>\n") ));
|
---|
2436 | }
|
---|
2437 | else
|
---|
2438 | {
|
---|
2439 | if ((length2 + 1) < length2) --length2;
|
---|
2440 | conn->buf = SH_ALLOC(length2 + 1);
|
---|
2441 |
|
---|
2442 | memcpy(conn->buf, msg, length2);
|
---|
2443 | /*
|
---|
2444 | for (i = 0; i < length2; ++i)
|
---|
2445 | conn->buf[i] = msg[i];
|
---|
2446 | */
|
---|
2447 | conn->buf[length2] = '\0';
|
---|
2448 | TPT((0, FIL__, __LINE__, _("msg=<no encryption done>\n") ));
|
---|
2449 | }
|
---|
2450 | #else
|
---|
2451 | if ((length2 + 1) < length2) --length2;
|
---|
2452 | conn->buf = SH_ALLOC(length2 + 1);
|
---|
2453 |
|
---|
2454 | memcpy(conn->buf, msg, length2);
|
---|
2455 | /*
|
---|
2456 | for (i = 0; i < length; ++i)
|
---|
2457 | conn->buf[i] = msg[i];
|
---|
2458 | */
|
---|
2459 | conn->buf[length2] = '\0';
|
---|
2460 | TPT((0, FIL__, __LINE__, _("msg=<no encryption done>\n") ));
|
---|
2461 | #endif
|
---|
2462 |
|
---|
2463 | conn->state = CONN_SENDING;
|
---|
2464 | SL_RET0(_("sh_forward_prep_send_int"));
|
---|
2465 | }
|
---|
2466 |
|
---|
2467 | /* -- Send/Receive. --
|
---|
2468 | */
|
---|
2469 | void sh_forward_prep_send (sh_conn_t * conn,
|
---|
2470 | char * msg, unsigned long length,
|
---|
2471 | char * u, char protocol)
|
---|
2472 | {
|
---|
2473 | SL_ENTER(_("sh_forward_prep_send"));
|
---|
2474 | sh_forward_prep_send_int (conn, msg, length, u, protocol, S_FALSE);
|
---|
2475 | SL_RET0(_("sh_forward_prep_send"));
|
---|
2476 | }
|
---|
2477 |
|
---|
2478 | void sh_forward_prep_send_crypt (sh_conn_t * conn,
|
---|
2479 | char * msg, unsigned long length,
|
---|
2480 | char * u, char protocol)
|
---|
2481 | {
|
---|
2482 | SL_ENTER(_("sh_forward_prep_send_crypt"));
|
---|
2483 | sh_forward_prep_send_int (conn, msg, length, u, protocol, S_TRUE);
|
---|
2484 | SL_RET0(_("sh_forward_prep_send_crypt"));
|
---|
2485 | }
|
---|
2486 |
|
---|
2487 | /* #include <sys/times.h> */
|
---|
2488 |
|
---|
2489 | #if defined(WITH_EXTERNAL)
|
---|
2490 | #include "sh_extern.h"
|
---|
2491 | #endif
|
---|
2492 |
|
---|
2493 | /* -- Update the client status. --
|
---|
2494 | *
|
---|
2495 | * Update the status array for the client,
|
---|
2496 | * and eventually call external program.
|
---|
2497 | */
|
---|
2498 | static void status_update (client_t * conn, int status)
|
---|
2499 | {
|
---|
2500 | #if defined(WITH_EXTERNAL)
|
---|
2501 | char msg[2 * SH_MINIBUF + TIM_MAX + 3];
|
---|
2502 | #endif
|
---|
2503 |
|
---|
2504 | SL_ENTER(_("status_update"));
|
---|
2505 |
|
---|
2506 | if (conn == NULL ||
|
---|
2507 | status < 0 || status >= CLT_MAX)
|
---|
2508 | SL_RET0(_("status_update"));
|
---|
2509 |
|
---|
2510 | conn->status_now = status;
|
---|
2511 | conn->status_arr[status] = status;
|
---|
2512 | (void) sh_unix_time(0, conn->timestamp[status], TIM_MAX);
|
---|
2513 |
|
---|
2514 | #if defined(WITH_EXTERNAL)
|
---|
2515 | sl_snprintf(msg, sizeof(msg), _("%s %s %s"),
|
---|
2516 | conn->hostname, conn->timestamp[status], _(clt_stat[status]));
|
---|
2517 | sh_ext_execute('s', 'r', 'v', msg, 0);
|
---|
2518 | #endif
|
---|
2519 |
|
---|
2520 | SL_RET0(_("status_update"));
|
---|
2521 | }
|
---|
2522 |
|
---|
2523 | static time_t time_client_limit = 86400;
|
---|
2524 |
|
---|
2525 | int sh_forward_set_time_limit (const char * c)
|
---|
2526 | {
|
---|
2527 | long val;
|
---|
2528 |
|
---|
2529 | SL_ENTER(_("sh_forward_set_time_limit"));
|
---|
2530 |
|
---|
2531 | val = strtol (c, (char **)NULL, 10);
|
---|
2532 | if (val <= 0)
|
---|
2533 | SL_RETURN( (-1), _("sh_forward_set_time_limit"));
|
---|
2534 |
|
---|
2535 | val = (val < 0 ? 0 : val);
|
---|
2536 |
|
---|
2537 | time_client_limit = (time_t) val;
|
---|
2538 | SL_RETURN( (0), _("sh_forward_set_time_limit"));
|
---|
2539 | }
|
---|
2540 |
|
---|
2541 |
|
---|
2542 | /* -- Check for time limit exceeded. --
|
---|
2543 | */
|
---|
2544 | static int client_time_check(void)
|
---|
2545 | {
|
---|
2546 | zAVLCursor avlcursor;
|
---|
2547 | client_t * item;
|
---|
2548 |
|
---|
2549 | SL_ENTER(_("client_time_check"));
|
---|
2550 |
|
---|
2551 | if (time_client_limit == (time_t) 0)
|
---|
2552 | SL_RETURN( 0, _("client_time_check"));
|
---|
2553 |
|
---|
2554 | for (item = (client_t *) zAVLFirst(&avlcursor, all_clients); item;
|
---|
2555 | item = (client_t *) zAVLNext(&avlcursor))
|
---|
2556 | {
|
---|
2557 | if (item->exit_flag == 0 && item->last_connect != (time_t) 0)
|
---|
2558 | {
|
---|
2559 | if ( (time(NULL) - item->last_connect) > time_client_limit)
|
---|
2560 | {
|
---|
2561 | if (item->status_now != CLT_TOOLONG)
|
---|
2562 | {
|
---|
2563 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_TIMEXC,
|
---|
2564 | item->hostname);
|
---|
2565 | status_update (item, CLT_TOOLONG);
|
---|
2566 | }
|
---|
2567 | }
|
---|
2568 | }
|
---|
2569 | }
|
---|
2570 | SL_RETURN( 0, _("client_time_check"));
|
---|
2571 | }
|
---|
2572 |
|
---|
2573 | static int lookup_err = SH_ERR_SEVERE;
|
---|
2574 |
|
---|
2575 | int sh_forward_lookup_level (const char * c)
|
---|
2576 | {
|
---|
2577 | int ci = sh_error_convert_level (c);
|
---|
2578 |
|
---|
2579 | SL_ENTER(_("sh_forward_lookup_level"));
|
---|
2580 |
|
---|
2581 | if (ci >= 0)
|
---|
2582 | {
|
---|
2583 | lookup_err = ci;
|
---|
2584 | SL_RETURN( 0, _("sh_forward_lookup_level"));
|
---|
2585 | }
|
---|
2586 | else
|
---|
2587 | SL_RETURN( (-1), _("sh_forward_lookup_level"));
|
---|
2588 | }
|
---|
2589 |
|
---|
2590 | #ifndef MAXHOSTNAMELEN
|
---|
2591 | #define MAXHOSTNAMELEN 127
|
---|
2592 | #endif
|
---|
2593 |
|
---|
2594 | int check_addr (const char * claim, struct sockaddr_in addr_peer)
|
---|
2595 | {
|
---|
2596 | char h_name[MAXHOSTNAMELEN + 1];
|
---|
2597 | char h_peer[MAXHOSTNAMELEN + 1];
|
---|
2598 | char h_peer_IP[16];
|
---|
2599 | char tmp_peer_IP[16];
|
---|
2600 | struct hostent * he;
|
---|
2601 | char ** p = NULL;
|
---|
2602 | int i;
|
---|
2603 | int flag = 0;
|
---|
2604 |
|
---|
2605 | SL_ENTER(_("check_addr"));
|
---|
2606 |
|
---|
2607 | if (claim == NULL)
|
---|
2608 | {
|
---|
2609 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
2610 | _("NULL input"), _("check_addr"));
|
---|
2611 | SL_RETURN ((-1), _("check_addr"));
|
---|
2612 | }
|
---|
2613 |
|
---|
2614 | /* Make sure we have the canonical name for the client
|
---|
2615 | */
|
---|
2616 | he = sh_gethostbyname (claim);
|
---|
2617 |
|
---|
2618 | if (he != NULL && he->h_name != NULL)
|
---|
2619 | {
|
---|
2620 | if (NULL == strchr(he->h_name, '.') && he->h_addr_list != NULL)
|
---|
2621 | {
|
---|
2622 | he = sh_gethostbyaddr(he->h_addr_list[0],
|
---|
2623 | he->h_length,
|
---|
2624 | he->h_addrtype);
|
---|
2625 | }
|
---|
2626 | }
|
---|
2627 |
|
---|
2628 | /* copy canonical name into h_name
|
---|
2629 | */
|
---|
2630 | if (he != NULL && he->h_name != NULL)
|
---|
2631 | {
|
---|
2632 | sl_strlcpy(h_name, he->h_name, MAXHOSTNAMELEN + 1);
|
---|
2633 | }
|
---|
2634 | else
|
---|
2635 | {
|
---|
2636 | sh_error_handle(lookup_err, FIL__, __LINE__, 0, MSG_TCP_RESCLT,
|
---|
2637 | claim);
|
---|
2638 | SL_RETURN ((0), _("check_addr"));
|
---|
2639 | }
|
---|
2640 |
|
---|
2641 |
|
---|
2642 | /* get canonical name of socket peer
|
---|
2643 | */
|
---|
2644 | he = sh_gethostbyaddr ((char *) &(addr_peer.sin_addr),
|
---|
2645 | sizeof(addr_peer.sin_addr),
|
---|
2646 | AF_INET);
|
---|
2647 |
|
---|
2648 | if (he != NULL && he->h_name != NULL)
|
---|
2649 | {
|
---|
2650 | if (0 == sl_strcmp(he->h_name, _("localhost")))
|
---|
2651 | sl_strlcpy(h_peer, sh.host.name, MAXHOSTNAMELEN + 1);
|
---|
2652 | else
|
---|
2653 | sl_strlcpy(h_peer, he->h_name, MAXHOSTNAMELEN + 1);
|
---|
2654 | }
|
---|
2655 | else
|
---|
2656 | {
|
---|
2657 | sl_strlcpy(tmp_peer_IP,
|
---|
2658 | inet_ntoa (*(struct in_addr *) &(addr_peer.sin_addr)),
|
---|
2659 | 16);
|
---|
2660 | sh_error_handle(lookup_err, FIL__, __LINE__, 0, MSG_TCP_RESPEER,
|
---|
2661 | claim, tmp_peer_IP);
|
---|
2662 | SL_RETURN ((0), _("check_addr"));
|
---|
2663 | }
|
---|
2664 |
|
---|
2665 | sl_strlcpy(h_peer_IP,
|
---|
2666 | inet_ntoa (*(struct in_addr *) he->h_addr),
|
---|
2667 | 16);
|
---|
2668 |
|
---|
2669 | #if 0
|
---|
2670 | if (S_FALSE == DoReverseLookup)
|
---|
2671 | {
|
---|
2672 | SL_RETURN ((0), _("check_addr"));
|
---|
2673 | }
|
---|
2674 | #endif
|
---|
2675 |
|
---|
2676 | /* reverse lookup
|
---|
2677 | */
|
---|
2678 | if (0 != sl_strncmp(_("127."),
|
---|
2679 | inet_ntoa (*(struct in_addr *) &(addr_peer.sin_addr)),
|
---|
2680 | 4))
|
---|
2681 | {
|
---|
2682 | he = sh_gethostbyname(h_peer);
|
---|
2683 |
|
---|
2684 | if (he != NULL)
|
---|
2685 | {
|
---|
2686 | for (p = he->h_addr_list; *p; ++p)
|
---|
2687 | {
|
---|
2688 | if (0 == memcmp (*p, &(addr_peer.sin_addr),
|
---|
2689 | sizeof(addr_peer.sin_addr)))
|
---|
2690 | break;
|
---|
2691 | }
|
---|
2692 | }
|
---|
2693 | if (he == NULL || *p == NULL)
|
---|
2694 | {
|
---|
2695 | sl_strlcpy(tmp_peer_IP,
|
---|
2696 | inet_ntoa (*(struct in_addr *) &(addr_peer.sin_addr)),
|
---|
2697 | 16);
|
---|
2698 | sh_error_handle(lookup_err, FIL__, __LINE__, 0, MSG_TCP_LOOKERS,
|
---|
2699 | claim, h_peer, tmp_peer_IP);
|
---|
2700 | SL_RETURN ((0), _("check_addr"));
|
---|
2701 | }
|
---|
2702 | }
|
---|
2703 |
|
---|
2704 | sh_tolower(h_peer);
|
---|
2705 | sh_tolower(h_name);
|
---|
2706 |
|
---|
2707 | if ((0 == sl_strcmp(h_peer, h_name)) || (0 == sl_strcmp(h_peer_IP, h_name)))
|
---|
2708 | {
|
---|
2709 | SL_RETURN ((0), _("check_addr"));
|
---|
2710 | }
|
---|
2711 | else
|
---|
2712 | {
|
---|
2713 | i = 0;
|
---|
2714 | while (he->h_aliases[i] != NULL)
|
---|
2715 | {
|
---|
2716 | if (0 == sl_strcmp(sh_tolower(he->h_aliases[i]), h_name))
|
---|
2717 | {
|
---|
2718 | flag = 1;
|
---|
2719 | break;
|
---|
2720 | }
|
---|
2721 | ++i;
|
---|
2722 | }
|
---|
2723 | if (flag == 0)
|
---|
2724 | sh_error_handle(lookup_err, FIL__, __LINE__, 0, MSG_TCP_LOOKUP,
|
---|
2725 | claim, h_peer);
|
---|
2726 | }
|
---|
2727 |
|
---|
2728 | SL_RETURN ((0), _("check_addr"));
|
---|
2729 | }
|
---|
2730 |
|
---|
2731 | static int UseSocketPeer = S_FALSE;
|
---|
2732 |
|
---|
2733 | int set_socket_peer (const char * c)
|
---|
2734 | {
|
---|
2735 | return sh_util_flagval(c, &UseSocketPeer);
|
---|
2736 | }
|
---|
2737 |
|
---|
2738 |
|
---|
2739 | /* -- Search register. --
|
---|
2740 | */
|
---|
2741 | client_t * search_register(sh_conn_t * conn, int pos)
|
---|
2742 | {
|
---|
2743 | client_t * this_client;
|
---|
2744 | char peer_ip[16];
|
---|
2745 | char peer_name[MAXHOSTNAMELEN+1];
|
---|
2746 | char * search_string;
|
---|
2747 | struct sockaddr_in peer_addr;
|
---|
2748 | struct hostent * he;
|
---|
2749 | char ** p = NULL;
|
---|
2750 |
|
---|
2751 | SL_ENTER(_("search_register"));
|
---|
2752 |
|
---|
2753 | if (UseSocketPeer == S_TRUE)
|
---|
2754 | {
|
---|
2755 | peer_addr = conn->addr_peer;
|
---|
2756 | sl_strlcpy(peer_ip,
|
---|
2757 | inet_ntoa (*(struct in_addr *) &(peer_addr.sin_addr)), 16);
|
---|
2758 |
|
---|
2759 | /* get canonical name of socket peer
|
---|
2760 | */
|
---|
2761 | he = sh_gethostbyaddr ((char *) &(peer_addr.sin_addr),
|
---|
2762 | sizeof(peer_addr.sin_addr),
|
---|
2763 | AF_INET);
|
---|
2764 |
|
---|
2765 | if (he != NULL && he->h_name != NULL)
|
---|
2766 | {
|
---|
2767 | if (0 == sl_strcmp(he->h_name, _("localhost")))
|
---|
2768 | sl_strlcpy(peer_name, sh.host.name, MAXHOSTNAMELEN + 1);
|
---|
2769 | else
|
---|
2770 | sl_strlcpy(peer_name, he->h_name, MAXHOSTNAMELEN + 1);
|
---|
2771 |
|
---|
2772 | /* Reverse lookup
|
---|
2773 | */
|
---|
2774 | if (0 != sl_strncmp(peer_ip, _("127."), 4))
|
---|
2775 | {
|
---|
2776 | he = sh_gethostbyname(peer_name);
|
---|
2777 |
|
---|
2778 | if (he != NULL)
|
---|
2779 | {
|
---|
2780 | for (p = he->h_addr_list; *p; ++p)
|
---|
2781 | {
|
---|
2782 | if (0 == memcmp (*p, &(peer_addr.sin_addr),
|
---|
2783 | sizeof(peer_addr.sin_addr)))
|
---|
2784 | break;
|
---|
2785 | }
|
---|
2786 | }
|
---|
2787 | if (he == NULL || *p == NULL)
|
---|
2788 | {
|
---|
2789 | /*
|
---|
2790 | sh_error_handle(lookup_err, FIL__, __LINE__, 0,
|
---|
2791 | MSG_TCP_LOOKERS,
|
---|
2792 | conn->buf[pos], peer_name, peer_ip);
|
---|
2793 | */
|
---|
2794 | sl_strlcpy(peer_name, peer_ip, MAXHOSTNAMELEN + 1);
|
---|
2795 | }
|
---|
2796 | }
|
---|
2797 | }
|
---|
2798 | else
|
---|
2799 | {
|
---|
2800 | sl_strlcpy(peer_name, peer_ip, MAXHOSTNAMELEN + 1);
|
---|
2801 | }
|
---|
2802 | search_string = peer_name;
|
---|
2803 | }
|
---|
2804 | else
|
---|
2805 | {
|
---|
2806 | search_string = &(conn->buf[pos]);
|
---|
2807 |
|
---|
2808 | if (0 != check_addr (search_string, conn->addr_peer))
|
---|
2809 | {
|
---|
2810 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
2811 | _("Reverse lookup failed"), search_string);
|
---|
2812 | sh_forward_do_free (conn);
|
---|
2813 | SL_RETURN( NULL, _("search_register"));
|
---|
2814 | }
|
---|
2815 | }
|
---|
2816 |
|
---|
2817 | sh_tolower(search_string);
|
---|
2818 |
|
---|
2819 | /* ---- search the register -----
|
---|
2820 | */
|
---|
2821 | this_client = zAVLSearch(all_clients, search_string);
|
---|
2822 |
|
---|
2823 | if (this_client == NULL)
|
---|
2824 | {
|
---|
2825 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
2826 | _("Not in client list"), search_string);
|
---|
2827 | sh_forward_do_free (conn);
|
---|
2828 | SL_RETURN( NULL, _("search_register"));
|
---|
2829 | }
|
---|
2830 | if (this_client->exit_flag == 1)
|
---|
2831 | {
|
---|
2832 | TPT((0, FIL__, __LINE__, _("msg=<this_client->exit_flag == 1>\n")));
|
---|
2833 | this_client->session_key_timer = (time_t) 0;
|
---|
2834 | this_client->session_key[0] = '\0';
|
---|
2835 | this_client->exit_flag = 0;
|
---|
2836 | }
|
---|
2837 | TPT((0, FIL__, __LINE__, _("msg=<search_register: client %s>\n"),
|
---|
2838 | this_client->hostname));
|
---|
2839 | TPT((0, FIL__, __LINE__, _("msg=<search_register: key %s>\n"),
|
---|
2840 | this_client->session_key));
|
---|
2841 | SL_RETURN( this_client, _("search_register"));
|
---|
2842 | }
|
---|
2843 |
|
---|
2844 |
|
---|
2845 | /************************************************************************
|
---|
2846 | *
|
---|
2847 | * Here we check the message received, and decide on the answer to send
|
---|
2848 | * (if any). The connection is in CONN_PAUSED state, thus we must:
|
---|
2849 | * (i) define the proper reaction
|
---|
2850 | * (ii) reset to CONN_READING or CONN_WRITING or CONN_FREE
|
---|
2851 | * (iii) eventually reset the connection entry
|
---|
2852 | *
|
---|
2853 | *************************************************************************/
|
---|
2854 | static
|
---|
2855 | void check_protocol(sh_conn_t * conn, int state)
|
---|
2856 | {
|
---|
2857 | client_t * this_client;
|
---|
2858 |
|
---|
2859 | char * cmd;
|
---|
2860 |
|
---|
2861 | char hash[SH_MAXMSGLEN + KEY_LEN + KEY_LEN + 1];
|
---|
2862 | char * buffer;
|
---|
2863 |
|
---|
2864 | int clt_sev;
|
---|
2865 | char * ptok;
|
---|
2866 |
|
---|
2867 | UINT32 ticks;
|
---|
2868 | size_t len;
|
---|
2869 | int i;
|
---|
2870 | char * test;
|
---|
2871 | char u[5] = "OOOO";
|
---|
2872 |
|
---|
2873 | SL_TICKET sfd = -1;
|
---|
2874 | char * read_buf = 0;
|
---|
2875 | char * send_buf;
|
---|
2876 | int bytes;
|
---|
2877 |
|
---|
2878 | #ifdef SH_ENCRYPT
|
---|
2879 | int blkfac;
|
---|
2880 | int rem;
|
---|
2881 | int send_bytes;
|
---|
2882 | int err_num;
|
---|
2883 | char expbuf[SH_ERRBUF_SIZE];
|
---|
2884 | #endif
|
---|
2885 |
|
---|
2886 |
|
---|
2887 | #ifdef USE_SRP_PROTOCOL
|
---|
2888 | char * foo_B;
|
---|
2889 | char * foo_Ss;
|
---|
2890 | #endif
|
---|
2891 | char hashbuf[KEYBUF_SIZE];
|
---|
2892 | char sigbuf[KEYBUF_SIZE];
|
---|
2893 |
|
---|
2894 | SL_ENTER(_("check_protocol"));
|
---|
2895 |
|
---|
2896 | /* seed / re-seed the PRNG if required
|
---|
2897 | */
|
---|
2898 | (void) taus_seed();
|
---|
2899 |
|
---|
2900 |
|
---|
2901 | /* protocols:
|
---|
2902 | * -- (iii) file transfer
|
---|
2903 | * -- (ii) authenticated message transfer
|
---|
2904 | * -- (i) SRP key exchange
|
---|
2905 | */
|
---|
2906 |
|
---|
2907 | /* --------- FILE TRANSFER -----------
|
---|
2908 | */
|
---|
2909 | if ( (conn->head[0] & SH_PROTO_SRP) == 0 &&
|
---|
2910 | (conn->head[0] & SH_PROTO_BIG) != 0 /* is set */ )
|
---|
2911 | {
|
---|
2912 |
|
---|
2913 | if (state == SH_DO_READ) /* finished reading */
|
---|
2914 | {
|
---|
2915 | TPT(( 0, FIL__, __LINE__, _("msg=<File transfer - entry.>\n")));
|
---|
2916 |
|
---|
2917 | /* -- Client requests challenge. --
|
---|
2918 | */
|
---|
2919 | if (0 == check_request_nerr ((char *) &(conn->head[3]), _("HELO")))
|
---|
2920 | {
|
---|
2921 |
|
---|
2922 | TPT(( 0, FIL__, __LINE__,
|
---|
2923 | _("msg=<File transfer - HELO (1).>\n")));
|
---|
2924 |
|
---|
2925 | if (conn->buf == NULL || sl_strlen(conn->buf) <= KEY_LEN)
|
---|
2926 | {
|
---|
2927 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NOCLT);
|
---|
2928 | sh_forward_do_free (conn);
|
---|
2929 | SL_RET0(_("check_protocol"));
|
---|
2930 | }
|
---|
2931 |
|
---|
2932 | /* ---- search the register -----
|
---|
2933 | */
|
---|
2934 |
|
---|
2935 | this_client = search_register (conn, KEY_LEN);
|
---|
2936 | if (this_client == NULL)
|
---|
2937 | SL_RET0(_("check_protocol"));
|
---|
2938 |
|
---|
2939 | /* ---- force authentication -----
|
---|
2940 | */
|
---|
2941 |
|
---|
2942 | if (this_client->session_key[0] == '\0' ||
|
---|
2943 | (time(NULL) - this_client->session_key_timer)
|
---|
2944 | > (time_t) TIMEOUT_KEY )
|
---|
2945 | {
|
---|
2946 | /* fake an auth request and jump there
|
---|
2947 | */
|
---|
2948 | conn->head[0] = (conn->head[0] | SH_PROTO_SRP);
|
---|
2949 | conn->head[3] = 'S';
|
---|
2950 | conn->head[4] = 'A';
|
---|
2951 | conn->head[5] = 'L';
|
---|
2952 | conn->head[6] = 'T';
|
---|
2953 | if (flag_err_info == SL_TRUE)
|
---|
2954 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FAUTH,
|
---|
2955 | &(conn->buf[KEY_LEN]));
|
---|
2956 | len = sl_strlen(&(conn->buf[KEY_LEN])) + 1;
|
---|
2957 | /* &(conn->buf[KEY_LEN]) is hostname */
|
---|
2958 | /* may overlap, thus only memmove is correct */
|
---|
2959 | memmove(conn->buf, &(conn->buf[KEY_LEN]), len);
|
---|
2960 | this_client->session_key[0] = '\0';
|
---|
2961 | this_client->session_key_timer = (time_t) 1;
|
---|
2962 | goto servInit;
|
---|
2963 | }
|
---|
2964 |
|
---|
2965 | /* --- check whether hostname is properly signed ---
|
---|
2966 | */
|
---|
2967 | if (conn->K != NULL)
|
---|
2968 | {
|
---|
2969 | SH_FREE(conn->K);
|
---|
2970 | conn->K = NULL;
|
---|
2971 | }
|
---|
2972 |
|
---|
2973 | /* FIXME
|
---|
2974 | len = sl_strlen(&(conn->buf[KEY_LEN])) + 1;
|
---|
2975 | if (sl_ok_adds(len, KEY_LEN))
|
---|
2976 | len += KEY_LEN;
|
---|
2977 | len = (len < (KEY_LEN+1)) ? (KEY_LEN+1) : len;
|
---|
2978 | */
|
---|
2979 | conn->K = SH_ALLOC(KEY_LEN+1);
|
---|
2980 |
|
---|
2981 | sl_strlcpy (conn->K,
|
---|
2982 | sh_util_siggen(this_client->session_key,
|
---|
2983 | &(conn->buf[KEY_LEN]),
|
---|
2984 | sl_strlen(&(conn->buf[KEY_LEN])),
|
---|
2985 | sigbuf, sizeof(sigbuf)),
|
---|
2986 | KEY_LEN+1);
|
---|
2987 | TPT((0, FIL__, __LINE__, _("msg=<host %s>\n"),
|
---|
2988 | &(conn->buf[KEY_LEN])));
|
---|
2989 | TPT((0, FIL__, __LINE__, _("msg=<ckey %s>\n"),
|
---|
2990 | this_client->session_key));
|
---|
2991 | TPT((0, FIL__, __LINE__, _("msg=<sign %s.>\n"),
|
---|
2992 | sh_util_siggen(this_client->session_key,
|
---|
2993 | &(conn->buf[KEY_LEN]),
|
---|
2994 | sl_strlen(&(conn->buf[KEY_LEN])),
|
---|
2995 | sigbuf, sizeof(sigbuf))));
|
---|
2996 |
|
---|
2997 | if (0 != sl_strncmp(conn->K, conn->buf, KEY_LEN))
|
---|
2998 | {
|
---|
2999 | TPT((0, FIL__, __LINE__, _("msg=<clt %s>\n"), conn->buf));
|
---|
3000 | TPT((0, FIL__, __LINE__, _("msg=<srv %s>\n"), conn->K));
|
---|
3001 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
3002 | _("Signature mismatch"),
|
---|
3003 | &(conn->buf[KEY_LEN]));
|
---|
3004 |
|
---|
3005 | this_client->session_key_timer =
|
---|
3006 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3007 |
|
---|
3008 | sh_forward_do_free (conn);
|
---|
3009 | SL_RET0(_("check_protocol"));
|
---|
3010 | }
|
---|
3011 | SH_FREE(conn->K);
|
---|
3012 | conn->K = NULL;
|
---|
3013 |
|
---|
3014 | /* --- create and send a nonce ---
|
---|
3015 | */
|
---|
3016 |
|
---|
3017 | conn->client_entry = this_client;
|
---|
3018 | sl_strlcpy (conn->peer, &(conn->buf[KEY_LEN]), SH_MINIBUF+1);
|
---|
3019 |
|
---|
3020 | ticks = (UINT32) taus_get ();
|
---|
3021 |
|
---|
3022 | if (conn->K != NULL)
|
---|
3023 | {
|
---|
3024 | SH_FREE(conn->K);
|
---|
3025 | conn->K = NULL;
|
---|
3026 | }
|
---|
3027 | conn->K = SH_ALLOC(KEY_LEN+1);
|
---|
3028 | sl_strlcpy (conn->K,
|
---|
3029 | sh_tiger_hash ((char *) &ticks,
|
---|
3030 | TIGER_DATA, sizeof(UINT32),
|
---|
3031 | hashbuf, sizeof(hashbuf)),
|
---|
3032 | KEY_LEN+1);
|
---|
3033 |
|
---|
3034 | TPT((0, FIL__, __LINE__, _("msg=<send nonce>\n")));
|
---|
3035 | sh_forward_prep_send (conn, conn->K, KEY_LEN+1, _("NSRV"),
|
---|
3036 | SH_PROTO_BIG);
|
---|
3037 | }
|
---|
3038 |
|
---|
3039 | /* --- Client has send a message. Check state and message. ---
|
---|
3040 | */
|
---|
3041 | else if (0 == check_request_nerr((char *)&(conn->head[3]), _("NCLT")) &&
|
---|
3042 | conn->client_entry != NULL &&
|
---|
3043 | sl_strlen(conn->buf) > KEY_LEN &&
|
---|
3044 | conn->K != NULL)
|
---|
3045 | {
|
---|
3046 |
|
---|
3047 | TPT(( 0, FIL__, __LINE__,
|
---|
3048 | _("msg=<File transfer - NCLT (3).>\n")));
|
---|
3049 |
|
---|
3050 | /* --- get client nonce and compute hash ---
|
---|
3051 | */
|
---|
3052 | if (conn->A != NULL)
|
---|
3053 | {
|
---|
3054 | SH_FREE(conn->A);
|
---|
3055 | conn->A = NULL;
|
---|
3056 | }
|
---|
3057 | conn->A = SH_ALLOC(3*KEY_LEN+1);
|
---|
3058 | sl_strlcpy (conn->A, conn->K, KEY_LEN+1);
|
---|
3059 | sl_strlcat(conn->A, conn->buf, /* truncate */
|
---|
3060 | 2*KEY_LEN+1);
|
---|
3061 | sl_strlcat(conn->A, conn->client_entry->session_key,
|
---|
3062 | 3*KEY_LEN+1);
|
---|
3063 | sl_strlcpy (conn->K, sh_tiger_hash(conn->A,TIGER_DATA,3*KEY_LEN,
|
---|
3064 | hashbuf, sizeof(hashbuf)),
|
---|
3065 | KEY_LEN+1);
|
---|
3066 | SH_FREE(conn->A);
|
---|
3067 | conn->A = NULL;
|
---|
3068 |
|
---|
3069 |
|
---|
3070 | #ifdef SH_ENCRYPT
|
---|
3071 | if ((conn->client_entry->encf_flag != 0) &&
|
---|
3072 | ((conn->head[0] & SH_PROTO_ENC) == 0))
|
---|
3073 | {
|
---|
3074 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_MISENC,
|
---|
3075 | _("file download"),
|
---|
3076 | #ifdef SH_ENCRYPT_2
|
---|
3077 | _("version2"),
|
---|
3078 | #else
|
---|
3079 | _("version1"),
|
---|
3080 | #endif
|
---|
3081 | _("none"));
|
---|
3082 | if (sl_strlen(conn->buf) > (KEY_LEN + 5)) {
|
---|
3083 | if (sh_tools_hash_vfy(conn->K, conn->buf, KEY_LEN+5)) {
|
---|
3084 | if (conn->buf[KEY_LEN+4] == conn->head[0]) {
|
---|
3085 | /* conn->client_entry->encf_flag = 0 */ ; /* FIXME */
|
---|
3086 | }
|
---|
3087 | }
|
---|
3088 | }
|
---|
3089 | }
|
---|
3090 | else if ((conn->client_entry->encf_flag != 0) &&
|
---|
3091 | ((conn->head[0] & SH_MASK_ENC) !=
|
---|
3092 | conn->client_entry->encf_flag))
|
---|
3093 | {
|
---|
3094 | sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0,
|
---|
3095 | MSG_TCP_MISENC,
|
---|
3096 | _("file download"),
|
---|
3097 | #ifdef SH_ENCRYPT_2
|
---|
3098 | _("version2"),
|
---|
3099 | #else
|
---|
3100 | _("version1"),
|
---|
3101 | #endif
|
---|
3102 | ((conn->head[0] & SH_PROTO_EN2) == SH_PROTO_EN2) ? _("version2") : _("version1")
|
---|
3103 | );
|
---|
3104 | conn->client_entry->encf_flag =
|
---|
3105 | (conn->head[0] & SH_MASK_ENC);
|
---|
3106 | }
|
---|
3107 | #else
|
---|
3108 | if ((conn->head[0] & SH_PROTO_ENC) != 0)
|
---|
3109 | {
|
---|
3110 | sh_error_handle((-1), FIL__, __LINE__, 0,
|
---|
3111 | MSG_TCP_MISENC,
|
---|
3112 | _("file download"),
|
---|
3113 | _("none"),
|
---|
3114 | ((conn->head[0] & SH_PROTO_EN2) == SH_PROTO_EN2) ? _("version2") : _("version1"));
|
---|
3115 | }
|
---|
3116 | #endif
|
---|
3117 |
|
---|
3118 |
|
---|
3119 | /* ---- K = H(NSRV, NCLT, session_key) -------
|
---|
3120 | */
|
---|
3121 |
|
---|
3122 | if (conn->FileName != NULL)
|
---|
3123 | {
|
---|
3124 | SH_FREE(conn->FileName);
|
---|
3125 | conn->FileName = NULL;
|
---|
3126 | }
|
---|
3127 |
|
---|
3128 | if (0 == sl_strncmp (_("CONF"), &(conn->buf[KEY_LEN]), 4))
|
---|
3129 | {
|
---|
3130 | strcpy(conn->FileType, _("CONF")); /* known to fit */
|
---|
3131 | conn->FileName = get_client_conf_file(conn->peer,
|
---|
3132 | &(conn->FileLength));
|
---|
3133 | conn->FileSent = 0;
|
---|
3134 | }
|
---|
3135 | else if (0 == sl_strncmp (_("DATA"), &(conn->buf[KEY_LEN]), 4))
|
---|
3136 | {
|
---|
3137 | strcpy(conn->FileType, _("DATA")); /* known to fit */
|
---|
3138 | conn->FileName = get_client_data_file(conn->peer,
|
---|
3139 | &(conn->FileLength));
|
---|
3140 | conn->FileSent = 0;
|
---|
3141 | }
|
---|
3142 | else
|
---|
3143 | {
|
---|
3144 | ptok = sh_util_safe_name(&(conn->buf[KEY_LEN]));
|
---|
3145 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FFILE,
|
---|
3146 | conn->peer,
|
---|
3147 | ptok);
|
---|
3148 | SH_FREE(ptok);
|
---|
3149 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3150 | sh_forward_do_free (conn);
|
---|
3151 | }
|
---|
3152 |
|
---|
3153 | bytes = -1;
|
---|
3154 |
|
---|
3155 | if (conn != NULL && conn->FileName != NULL)
|
---|
3156 | {
|
---|
3157 | sfd = sl_open_read(FIL__, __LINE__,
|
---|
3158 | conn->FileName, SL_YESPRIV);
|
---|
3159 | if (!SL_ISERROR(sfd))
|
---|
3160 | {
|
---|
3161 | read_buf = SH_ALLOC(TRANS_BYTES);
|
---|
3162 | bytes = sl_read (sfd, read_buf, TRANS_BYTES);
|
---|
3163 | sl_close(sfd);
|
---|
3164 | }
|
---|
3165 |
|
---|
3166 | else
|
---|
3167 | {
|
---|
3168 | sh_error_handle((-1), FIL__, __LINE__, sfd,
|
---|
3169 | MSG_E_ACCESS,
|
---|
3170 | (long) geteuid(),
|
---|
3171 | conn->FileName);
|
---|
3172 | }
|
---|
3173 | if (bytes >= 0)
|
---|
3174 | {
|
---|
3175 | #ifdef SH_ENCRYPT
|
---|
3176 | /* need to send N * B_SIZ bytes
|
---|
3177 | */
|
---|
3178 | blkfac = bytes / B_SIZ;
|
---|
3179 | rem = bytes - (blkfac * B_SIZ);
|
---|
3180 | if (rem != 0)
|
---|
3181 | {
|
---|
3182 | memset(&read_buf[bytes], '\n', (B_SIZ-rem));
|
---|
3183 | ++blkfac;
|
---|
3184 | send_bytes = blkfac * B_SIZ;
|
---|
3185 | }
|
---|
3186 | else
|
---|
3187 | send_bytes = bytes;
|
---|
3188 |
|
---|
3189 | send_buf = hash_me(conn->K, read_buf,
|
---|
3190 | send_bytes);
|
---|
3191 |
|
---|
3192 | sh_forward_prep_send_crypt (conn, send_buf,
|
---|
3193 | send_bytes+KEY_LEN,
|
---|
3194 | _("FILE"),
|
---|
3195 | SH_PROTO_BIG|conn->client_entry->encf_flag);
|
---|
3196 | #else
|
---|
3197 | send_buf = hash_me(conn->K, read_buf, bytes);
|
---|
3198 | sh_forward_prep_send_crypt (conn, send_buf,
|
---|
3199 | bytes+KEY_LEN,
|
---|
3200 | _("FILE"), SH_PROTO_BIG);
|
---|
3201 | #endif
|
---|
3202 | conn->FileSent += bytes;
|
---|
3203 | if (send_buf != NULL)
|
---|
3204 | {
|
---|
3205 | SH_FREE(send_buf);
|
---|
3206 | }
|
---|
3207 | SH_FREE(read_buf);
|
---|
3208 | }
|
---|
3209 | }
|
---|
3210 |
|
---|
3211 | if (conn == NULL || conn->FileName == NULL ||
|
---|
3212 | SL_ISERROR(sfd) || bytes < 0)
|
---|
3213 | {
|
---|
3214 | sh_error_handle((-1), FIL__, __LINE__, sfd, MSG_TCP_NFILE,
|
---|
3215 | conn->peer,
|
---|
3216 | (conn->FileName == NULL) ?
|
---|
3217 | _("(NULL)") : conn->FileName);
|
---|
3218 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3219 | sh_forward_do_free (conn);
|
---|
3220 | }
|
---|
3221 |
|
---|
3222 | }
|
---|
3223 |
|
---|
3224 | else if (0 == check_request_nerr((char *)&(conn->head[3]),
|
---|
3225 | _("RECV")) &&
|
---|
3226 | conn->client_entry != NULL &&
|
---|
3227 | conn->K != NULL &&
|
---|
3228 | conn->FileName != NULL)
|
---|
3229 | {
|
---|
3230 |
|
---|
3231 | TPT(( 0, FIL__, __LINE__,
|
---|
3232 | _("msg=<File transfer - RCVT (5+).>\n")));
|
---|
3233 |
|
---|
3234 | if (conn->FileSent == conn->FileLength)
|
---|
3235 | {
|
---|
3236 | send_buf = hash_me(conn->K, conn->peer,
|
---|
3237 | sl_strlen(conn->peer));
|
---|
3238 | #ifdef SH_ENCRYPT
|
---|
3239 | sh_forward_prep_send_crypt (conn, send_buf,
|
---|
3240 | sl_strlen(conn->peer)+KEY_LEN,
|
---|
3241 | _("EEOT"),
|
---|
3242 | SH_PROTO_BIG|conn->client_entry->encf_flag);
|
---|
3243 | #else
|
---|
3244 | sh_forward_prep_send_crypt (conn, send_buf,
|
---|
3245 | sl_strlen(conn->peer)+KEY_LEN,
|
---|
3246 | _("EEOT"),
|
---|
3247 | SH_PROTO_BIG);
|
---|
3248 | #endif
|
---|
3249 | SH_FREE(send_buf);
|
---|
3250 | }
|
---|
3251 | else
|
---|
3252 | {
|
---|
3253 | bytes = -1;
|
---|
3254 | sfd = sl_open_read(FIL__, __LINE__,
|
---|
3255 | conn->FileName, SL_YESPRIV);
|
---|
3256 | if (!SL_ISERROR(sfd))
|
---|
3257 | {
|
---|
3258 | read_buf = SH_ALLOC(TRANS_BYTES);
|
---|
3259 | sl_seek (sfd, (off_t) conn->FileSent);
|
---|
3260 | bytes = sl_read (sfd, read_buf, TRANS_BYTES);
|
---|
3261 | sl_close(sfd);
|
---|
3262 | }
|
---|
3263 | else
|
---|
3264 | {
|
---|
3265 | sh_error_handle((-1), FIL__, __LINE__, sfd,
|
---|
3266 | MSG_E_ACCESS,
|
---|
3267 | (long) geteuid(),
|
---|
3268 | conn->FileName);
|
---|
3269 | }
|
---|
3270 | if (bytes >= 0)
|
---|
3271 | {
|
---|
3272 | #ifdef SH_ENCRYPT
|
---|
3273 | /* need to send N * B_SIZ bytes
|
---|
3274 | */
|
---|
3275 | blkfac = bytes / B_SIZ;
|
---|
3276 | rem = bytes - (blkfac * B_SIZ);
|
---|
3277 | if (rem != 0)
|
---|
3278 | {
|
---|
3279 | memset(&read_buf[bytes], '\n', (B_SIZ-rem));
|
---|
3280 | ++blkfac;
|
---|
3281 | send_bytes = blkfac * B_SIZ;
|
---|
3282 | }
|
---|
3283 | else
|
---|
3284 | send_bytes = bytes;
|
---|
3285 |
|
---|
3286 | send_buf = hash_me(conn->K, read_buf,
|
---|
3287 | send_bytes);
|
---|
3288 |
|
---|
3289 | sh_forward_prep_send_crypt (conn, send_buf,
|
---|
3290 | send_bytes+KEY_LEN,
|
---|
3291 | _("FILE"),
|
---|
3292 | SH_PROTO_BIG|conn->client_entry->encf_flag);
|
---|
3293 | #else
|
---|
3294 |
|
---|
3295 | send_buf = hash_me(conn->K, read_buf, bytes);
|
---|
3296 | sh_forward_prep_send_crypt (conn, send_buf,
|
---|
3297 | bytes+KEY_LEN,
|
---|
3298 | _("FILE"),
|
---|
3299 | SH_PROTO_BIG);
|
---|
3300 | #endif
|
---|
3301 |
|
---|
3302 | conn->FileSent += bytes;
|
---|
3303 | SH_FREE(send_buf);
|
---|
3304 | SH_FREE(read_buf);
|
---|
3305 | }
|
---|
3306 | else
|
---|
3307 | {
|
---|
3308 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NFILE,
|
---|
3309 | conn->peer,
|
---|
3310 | (conn->FileName == NULL) ?
|
---|
3311 | _("(NULL)") : conn->FileName);
|
---|
3312 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3313 | sh_forward_do_free (conn);
|
---|
3314 | }
|
---|
3315 | }
|
---|
3316 | }
|
---|
3317 |
|
---|
3318 |
|
---|
3319 | else if (0 == check_request_nerr((char *)&(conn->head[3]),
|
---|
3320 | _("EOTE")) &&
|
---|
3321 | conn->client_entry != NULL)
|
---|
3322 | {
|
---|
3323 |
|
---|
3324 | TPT(( 0, FIL__, __LINE__,
|
---|
3325 | _("msg=<File transfer - EOTE (7).>\n")));
|
---|
3326 |
|
---|
3327 | if (flag_err_info == SL_TRUE)
|
---|
3328 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_OKFILE,
|
---|
3329 | conn->peer);
|
---|
3330 |
|
---|
3331 | if ((conn->client_entry->status_now != CLT_SUSPEND) &&
|
---|
3332 | (conn->client_entry->status_now != CLT_TOOLONG))
|
---|
3333 | { status_update (conn->client_entry, CLT_FILE); }
|
---|
3334 | else
|
---|
3335 | { conn->client_entry->session_key[0] = '\0'; }
|
---|
3336 | conn->client_entry->last_connect = time (NULL);
|
---|
3337 | sh_forward_do_free (conn);
|
---|
3338 | }
|
---|
3339 |
|
---|
3340 |
|
---|
3341 | /* client does something unexpected
|
---|
3342 | */
|
---|
3343 | else /* ---- ??? ----- */
|
---|
3344 | {
|
---|
3345 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FINV,
|
---|
3346 | 1, conn->pass, conn->peer,
|
---|
3347 | '\\', conn->head[3], '\\',conn->head[4],
|
---|
3348 | '\\', conn->head[5], '\\',conn->head[6]);
|
---|
3349 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3350 | sh_forward_do_free (conn);
|
---|
3351 | }
|
---|
3352 | }
|
---|
3353 |
|
---|
3354 | else if (state == SH_DO_WRITE) /* finished writing */
|
---|
3355 | {
|
---|
3356 | TPT(( 0, FIL__, __LINE__, _("msg=<File transfer - (wait).>\n")));
|
---|
3357 |
|
---|
3358 | /* challenge is sent, now wait for message from client
|
---|
3359 | */
|
---|
3360 | conn->headcount = 0;
|
---|
3361 | conn->bytecount = 0;
|
---|
3362 | conn->bytes_to_send = 0;
|
---|
3363 | conn->bytes_to_get = 0;
|
---|
3364 | if (conn->buf != NULL)
|
---|
3365 | {
|
---|
3366 | SH_FREE(conn->buf);
|
---|
3367 | conn->buf = NULL;
|
---|
3368 | }
|
---|
3369 | conn->state = CONN_READING;
|
---|
3370 | }
|
---|
3371 | SL_RET0(_("check_protocol"));
|
---|
3372 | }
|
---|
3373 |
|
---|
3374 | /* --------- message exchange -----------
|
---|
3375 | */
|
---|
3376 | if ((conn->head[0] & SH_PROTO_SRP) == 0 &&
|
---|
3377 | (conn->head[0] & SH_PROTO_MSG) != 0 /* is set */ )
|
---|
3378 | {
|
---|
3379 |
|
---|
3380 | if (state == SH_DO_READ) /* finished reading */
|
---|
3381 | {
|
---|
3382 |
|
---|
3383 | TPT(( 0, FIL__, __LINE__, _("msg=<Message transfer - entry.>\n")));
|
---|
3384 |
|
---|
3385 | /* client requests challenge
|
---|
3386 | */
|
---|
3387 | if (0 == check_request_nerr ((char *)&(conn->head[3]), _("HELO")))
|
---|
3388 | {
|
---|
3389 |
|
---|
3390 | TPT(( 0, FIL__, __LINE__,
|
---|
3391 | _("msg=<Message transfer - HELO (1).>\n")));
|
---|
3392 |
|
---|
3393 | if (conn->buf == NULL || sl_strlen(conn->buf) <= KEY_LEN )
|
---|
3394 | {
|
---|
3395 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NOCLT);
|
---|
3396 | sh_forward_do_free (conn);
|
---|
3397 | SL_RET0(_("check_protocol"));
|
---|
3398 | }
|
---|
3399 |
|
---|
3400 | TPT(( 0, FIL__, __LINE__, _("msg=<Rcvt %s.>\n"), conn->buf));
|
---|
3401 |
|
---|
3402 | /* ---- search the register -----
|
---|
3403 | */
|
---|
3404 | this_client = search_register (conn, KEY_LEN);
|
---|
3405 | if (NULL == this_client)
|
---|
3406 | SL_RET0(_("check_protocol"));
|
---|
3407 |
|
---|
3408 | /* ---- force authentication -----
|
---|
3409 | */
|
---|
3410 | if ( (this_client->session_key[0] == '\0') ||
|
---|
3411 | ((time(NULL)-this_client->session_key_timer)
|
---|
3412 | > (time_t) TIMEOUT_KEY)
|
---|
3413 | )
|
---|
3414 | {
|
---|
3415 |
|
---|
3416 | /* fake an auth request and jump there
|
---|
3417 | */
|
---|
3418 | conn->head[0] = (conn->head[0] | SH_PROTO_SRP);
|
---|
3419 | conn->head[3] = 'S';
|
---|
3420 | conn->head[4] = 'A';
|
---|
3421 | conn->head[5] = 'L';
|
---|
3422 | conn->head[6] = 'T';
|
---|
3423 | if (flag_err_info == SL_TRUE)
|
---|
3424 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FAUTH,
|
---|
3425 | &(conn->buf[KEY_LEN]));
|
---|
3426 | len = sl_strlen(&(conn->buf[KEY_LEN])) + 1;
|
---|
3427 | /* &(conn->buf[KEY_LEN]) is hostname */
|
---|
3428 | /* may overlap, thus only memmove is correct */
|
---|
3429 | memmove(conn->buf, &(conn->buf[KEY_LEN]), len);
|
---|
3430 | this_client->session_key[0] = '\0';
|
---|
3431 | this_client->session_key_timer = (time_t) 1;
|
---|
3432 |
|
---|
3433 | goto servInit;
|
---|
3434 | }
|
---|
3435 |
|
---|
3436 | /* check whether hostname is properly signed
|
---|
3437 | */
|
---|
3438 | if (conn->K != NULL)
|
---|
3439 | {
|
---|
3440 | SH_FREE(conn->K);
|
---|
3441 | conn->K = NULL;
|
---|
3442 | }
|
---|
3443 | /* FIXME len = sl_strlen(&(conn->buf[KEY_LEN])) + KEY_LEN + 1; */
|
---|
3444 | conn->K = SH_ALLOC(KEY_LEN + 1);
|
---|
3445 |
|
---|
3446 | sl_strlcpy (conn->K,
|
---|
3447 | sh_util_siggen(this_client->session_key,
|
---|
3448 | &(conn->buf[KEY_LEN]),
|
---|
3449 | sl_strlen(&(conn->buf[KEY_LEN])),
|
---|
3450 | sigbuf, sizeof(sigbuf)),
|
---|
3451 | KEY_LEN+1);
|
---|
3452 | TPT((0, FIL__, __LINE__, _("msg=<host %s>\n"),
|
---|
3453 | &(conn->buf[KEY_LEN])));
|
---|
3454 | TPT((0, FIL__, __LINE__, _("msg=<ckey %s>\n"),
|
---|
3455 | this_client->session_key));
|
---|
3456 | TPT((0, FIL__, __LINE__, _("msg=<sign %s>\n"), conn->K));
|
---|
3457 |
|
---|
3458 | if (0 != sl_strncmp(conn->K, conn->buf, KEY_LEN))
|
---|
3459 | {
|
---|
3460 | TPT(( 0, FIL__, __LINE__, _("msg=<Rcvt %s>\n"), conn->buf));
|
---|
3461 | TPT(( 0, FIL__, __LINE__, _("msg=<Want %s>\n"), conn->K));
|
---|
3462 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
3463 | _("Signature mismatch"),
|
---|
3464 | &(conn->buf[KEY_LEN]));
|
---|
3465 |
|
---|
3466 | this_client->session_key_timer =
|
---|
3467 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3468 |
|
---|
3469 | sh_forward_do_free (conn);
|
---|
3470 | SL_RET0(_("check_protocol"));
|
---|
3471 | }
|
---|
3472 | SH_FREE(conn->K);
|
---|
3473 | conn->K = NULL;
|
---|
3474 |
|
---|
3475 | /* -- create a nonce and send it --
|
---|
3476 | */
|
---|
3477 |
|
---|
3478 | conn->client_entry = this_client;
|
---|
3479 | sl_strlcpy (conn->peer, &(conn->buf[KEY_LEN]), SH_MINIBUF+1);
|
---|
3480 |
|
---|
3481 | ticks = (UINT32) taus_get ();
|
---|
3482 |
|
---|
3483 | test = (char *) &ticks;
|
---|
3484 | sh_util_cpylong (conn->challenge, test, 4);
|
---|
3485 | conn->challenge[4] = '\0';
|
---|
3486 | for (i = 0; i < 4; ++i)
|
---|
3487 | if (conn->challenge[i] == '\0')
|
---|
3488 | conn->challenge[i] = 0x01;
|
---|
3489 |
|
---|
3490 | sh_forward_prep_send (conn, conn->challenge, 5, _("TALK"),
|
---|
3491 | SH_PROTO_MSG);
|
---|
3492 | TPT(( 0, FIL__, __LINE__, _("msg=<Sent %s.>\n"),
|
---|
3493 | hu_trans(conn->challenge)));
|
---|
3494 | }
|
---|
3495 |
|
---|
3496 | /* Client has send a message. Check whether we are in proper
|
---|
3497 | * state, and verify message.
|
---|
3498 | */
|
---|
3499 | else if (0 ==
|
---|
3500 | check_request_nerr((char *)&(conn->head[3]), _("MESG")) &&
|
---|
3501 | conn->client_entry != NULL &&
|
---|
3502 | conn->client_entry->session_key[0] != '\0' &&
|
---|
3503 | (len = sl_strlen(conn->buf) - KEY_LEN) > 0 &&
|
---|
3504 | sl_strlen(conn->challenge) == 4)
|
---|
3505 | {
|
---|
3506 | TPT(( 0, FIL__, __LINE__,
|
---|
3507 | _("msg=<Message transfer - MESG (3).>\n")));
|
---|
3508 |
|
---|
3509 | #ifdef SH_ENCRYPT
|
---|
3510 | if (conn->client_entry->encf_flag == 0) {
|
---|
3511 | conn->client_entry->ency_flag = 0;
|
---|
3512 | }
|
---|
3513 | if ((conn->client_entry->ency_flag != 0) &&
|
---|
3514 | ((conn->head[0] & SH_PROTO_ENC) == 0))
|
---|
3515 | {
|
---|
3516 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_MISENC,
|
---|
3517 | _("message transfer"),
|
---|
3518 | #ifdef SH_ENCRYPT_2
|
---|
3519 | _("version2"),
|
---|
3520 | #else
|
---|
3521 | _("version1"),
|
---|
3522 | #endif
|
---|
3523 | _("none"));
|
---|
3524 | /* conn->client_entry->ency_flag = 0; */
|
---|
3525 | }
|
---|
3526 | else if ((conn->client_entry->ency_flag != 0) &&
|
---|
3527 | ((conn->head[0] & SH_MASK_ENC) !=
|
---|
3528 | conn->client_entry->ency_flag))
|
---|
3529 | {
|
---|
3530 | sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0,
|
---|
3531 | MSG_TCP_MISENC,
|
---|
3532 | _("message transfer"),
|
---|
3533 | #ifdef SH_ENCRYPT_2
|
---|
3534 | _("version2"),
|
---|
3535 | #else
|
---|
3536 | _("version1"),
|
---|
3537 | #endif
|
---|
3538 | ((conn->head[0] & SH_PROTO_EN2) == SH_PROTO_EN2) ? _("version2") : _("version1"));
|
---|
3539 | conn->client_entry->ency_flag =
|
---|
3540 | (conn->head[0] & SH_MASK_ENC);
|
---|
3541 | }
|
---|
3542 | #else
|
---|
3543 | if ((conn->head[0] & SH_PROTO_ENC) != 0)
|
---|
3544 | {
|
---|
3545 | sh_error_handle((-1), FIL__, __LINE__, 0,
|
---|
3546 | MSG_TCP_MISENC,
|
---|
3547 | _("message transfer"),
|
---|
3548 | _("none"),
|
---|
3549 | ((conn->head[0] & SH_PROTO_EN2) == SH_PROTO_EN2) ? _("version2") : _("version1"));
|
---|
3550 | }
|
---|
3551 | #endif
|
---|
3552 |
|
---|
3553 | TPT(( 0, FIL__, __LINE__, _("msg=<Rcvt %s.>\n"), conn->buf));
|
---|
3554 | /* get hash from message end, truncate message
|
---|
3555 | */
|
---|
3556 | sl_strlcpy(hash, &(conn->buf[len]), KEY_LEN+1);
|
---|
3557 | conn->buf[len] = '\0';
|
---|
3558 |
|
---|
3559 | /* verify hash
|
---|
3560 | */
|
---|
3561 | buffer = sh_util_strconcat(conn->buf, conn->challenge, NULL);
|
---|
3562 | i = sl_strncmp(hash,
|
---|
3563 | sh_util_siggen(conn->client_entry->session_key,
|
---|
3564 | buffer,
|
---|
3565 | sl_strlen(buffer),
|
---|
3566 | sigbuf, sizeof(sigbuf)),
|
---|
3567 | KEY_LEN);
|
---|
3568 | TPT((0, FIL__, __LINE__, _("msg=<sign %s.>\n"),
|
---|
3569 | sh_util_siggen(conn->client_entry->session_key,
|
---|
3570 | buffer,
|
---|
3571 | sl_strlen(buffer),
|
---|
3572 | sigbuf, sizeof(sigbuf))));
|
---|
3573 |
|
---|
3574 |
|
---|
3575 | if (0 != i)
|
---|
3576 | {
|
---|
3577 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3578 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3579 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
3580 | _("Msg signature mismatch"), conn->peer);
|
---|
3581 | conn->client_entry->session_key_timer =
|
---|
3582 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3583 | sh_forward_do_free (conn);
|
---|
3584 | SL_RET0(_("check_protocol"));
|
---|
3585 | }
|
---|
3586 | else
|
---|
3587 | {
|
---|
3588 | conn->client_entry->last_connect = time (NULL);
|
---|
3589 |
|
---|
3590 | if (NULL != sl_strstr(conn->buf, _("EXIT")))
|
---|
3591 | {
|
---|
3592 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3593 | conn->client_entry->exit_flag = 1;
|
---|
3594 | status_update (conn->client_entry, CLT_EXITED);
|
---|
3595 | }
|
---|
3596 | else if (NULL != sl_strstr(conn->buf, _("PANIC")))
|
---|
3597 | {
|
---|
3598 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3599 | status_update (conn->client_entry, CLT_PANIC);
|
---|
3600 | }
|
---|
3601 | else if (NULL != sl_strstr(conn->buf, _("SUSPEND")))
|
---|
3602 | {
|
---|
3603 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3604 | status_update (conn->client_entry, CLT_SUSPEND);
|
---|
3605 | }
|
---|
3606 | else if (NULL != sl_strstr(conn->buf, _("POLICY")))
|
---|
3607 | {
|
---|
3608 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3609 | status_update (conn->client_entry, CLT_POLICY);
|
---|
3610 | }
|
---|
3611 | else if (NULL != sl_strstr(conn->buf,
|
---|
3612 | _("File check completed")))
|
---|
3613 | {
|
---|
3614 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3615 | status_update (conn->client_entry, CLT_CHECK);
|
---|
3616 | }
|
---|
3617 | else if (NULL != sl_strstr(conn->buf, _("START")))
|
---|
3618 | {
|
---|
3619 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3620 | sh_socket_add2reload (conn->client_entry->hostname);
|
---|
3621 | if (conn->client_entry->status_now == CLT_SUSPEND) {
|
---|
3622 | status_update (conn->client_entry, CLT_ILLEGAL);
|
---|
3623 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_ILL,
|
---|
3624 | conn->peer);
|
---|
3625 | }
|
---|
3626 | else
|
---|
3627 | status_update (conn->client_entry, CLT_STARTED);
|
---|
3628 | }
|
---|
3629 | else
|
---|
3630 | {
|
---|
3631 | TPT((0, FIL__, __LINE__, _("msg=<update status>\n")));
|
---|
3632 | if (0 != sl_strcmp(conn->buf,
|
---|
3633 | _("Runtime configuration reloaded")))
|
---|
3634 | {
|
---|
3635 | sh_socket_add2reload (conn->client_entry->hostname);
|
---|
3636 | }
|
---|
3637 | status_update (conn->client_entry, CLT_MSG);
|
---|
3638 | }
|
---|
3639 |
|
---|
3640 | TPT((0, FIL__, __LINE__, _("msg=<status updated>\n")));
|
---|
3641 | clt_sev = atoi(conn->buf);
|
---|
3642 | clt_class = (-1);
|
---|
3643 | ptok = strchr(conn->buf, '?');
|
---|
3644 | if (ptok != NULL)
|
---|
3645 | {
|
---|
3646 | ++ptok;
|
---|
3647 | if (ptok != NULL && sh.flag.client_class == S_TRUE)
|
---|
3648 | clt_class = atoi(ptok); /* is a global */
|
---|
3649 | ptok = strchr(ptok, '?');
|
---|
3650 | if (ptok != NULL)
|
---|
3651 | ++ptok;
|
---|
3652 | }
|
---|
3653 | if (sh.flag.client_severity == S_FALSE)
|
---|
3654 | clt_sev = (-1);
|
---|
3655 |
|
---|
3656 | /* here we expect an xml formatted message, thus we don't
|
---|
3657 | escape xml special chars (flag == 0) */
|
---|
3658 | ptok =
|
---|
3659 | sh_tools_safe_name ((ptok!=NULL) ? ptok : conn->buf, 0);
|
---|
3660 |
|
---|
3661 | /* push client name to error routine
|
---|
3662 | */
|
---|
3663 | sh_error_set_peer(sh_strip_domain (conn->peer));
|
---|
3664 | sh_error_handle(clt_sev, FIL__, __LINE__, 0, MSG_TCP_MSG,
|
---|
3665 | sh_strip_domain (conn->peer),
|
---|
3666 | ptok);
|
---|
3667 | sh_error_set_peer(NULL);
|
---|
3668 |
|
---|
3669 | TPT((0, FIL__, __LINE__, _("msg=<%s>\n"), ptok));
|
---|
3670 | SH_FREE(ptok);
|
---|
3671 | clt_class = (-1);
|
---|
3672 | }
|
---|
3673 | memset(buffer, '\0', sl_strlen(buffer));
|
---|
3674 | SH_FREE(buffer);
|
---|
3675 |
|
---|
3676 | /* SERVER CONF SEND
|
---|
3677 | */
|
---|
3678 | buffer = sh_util_strconcat(conn->buf,
|
---|
3679 | conn->challenge,
|
---|
3680 | NULL);
|
---|
3681 | sl_strlcpy(hash,
|
---|
3682 | sh_util_siggen ( conn->client_entry->session_key,
|
---|
3683 | buffer,
|
---|
3684 | sl_strlen(buffer),
|
---|
3685 | sigbuf, sizeof(sigbuf)),
|
---|
3686 | KEY_LEN+1);
|
---|
3687 |
|
---|
3688 | /* --- SERVER CMD --- */
|
---|
3689 | cmd = sh_socket_check (conn->peer);
|
---|
3690 |
|
---|
3691 | if (cmd != NULL)
|
---|
3692 | {
|
---|
3693 | /* max cmd size is SH_MAXMSGLEN bytes
|
---|
3694 | */
|
---|
3695 | sl_strlcpy(&hash[KEY_LEN], cmd, SH_MAXMSGLEN);
|
---|
3696 | sl_strlcat(&hash[KEY_LEN],
|
---|
3697 | sh_util_siggen ( conn->client_entry->session_key,
|
---|
3698 | &hash[KEY_LEN],
|
---|
3699 | sl_strlen(&hash[KEY_LEN]),
|
---|
3700 | sigbuf, sizeof(sigbuf)),
|
---|
3701 | SH_MAXMSGLEN+KEY_LEN+1);
|
---|
3702 |
|
---|
3703 | TPT((0, FIL__, __LINE__, _("CONF SEND <0> <%s>\n"),
|
---|
3704 | &hash[KEY_LEN]));
|
---|
3705 |
|
---|
3706 | } else {
|
---|
3707 |
|
---|
3708 | TPT((0, FIL__, __LINE__, _("CONF SEND <0> <[NULL]>\n")));
|
---|
3709 |
|
---|
3710 | }
|
---|
3711 | /* --- SERVER CMD END --- */
|
---|
3712 |
|
---|
3713 | TPT((0, FIL__, __LINE__, _("msg=<sign %s.>\n"),
|
---|
3714 | sh_util_siggen(conn->client_entry->session_key,
|
---|
3715 | buffer,
|
---|
3716 | sl_strlen(buffer),
|
---|
3717 | sigbuf, sizeof(sigbuf))));
|
---|
3718 |
|
---|
3719 | #ifdef SH_ENCRYPT
|
---|
3720 | sh_forward_prep_send_crypt (conn, hash,
|
---|
3721 | sl_strlen(hash) /* KEY_LEN */,
|
---|
3722 | _("CONF"),
|
---|
3723 | SH_PROTO_MSG|SH_PROTO_END|conn->client_entry->ency_flag);
|
---|
3724 | #else
|
---|
3725 | sh_forward_prep_send_crypt (conn, hash,
|
---|
3726 | sl_strlen(hash) /* KEY_LEN */,
|
---|
3727 | _("CONF"),
|
---|
3728 | SH_PROTO_MSG|SH_PROTO_END);
|
---|
3729 | #endif
|
---|
3730 |
|
---|
3731 | memset(buffer, '\0', sl_strlen(buffer));
|
---|
3732 | SH_FREE(buffer);
|
---|
3733 |
|
---|
3734 | /* sh_forward_do_free (conn); */
|
---|
3735 | }
|
---|
3736 |
|
---|
3737 | /* client does something unexpected
|
---|
3738 | */
|
---|
3739 | else /* ---- ??? ----- */
|
---|
3740 | {
|
---|
3741 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FINV,
|
---|
3742 | 2, conn->pass, conn->peer,
|
---|
3743 | '\\', conn->head[3], '\\',conn->head[4],
|
---|
3744 | '\\', conn->head[5], '\\',conn->head[6]);
|
---|
3745 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3746 | conn->client_entry->session_key_timer =
|
---|
3747 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3748 | sh_forward_do_free (conn);
|
---|
3749 | }
|
---|
3750 | }
|
---|
3751 | else if (state == SH_DO_WRITE) /* finished writing */
|
---|
3752 | {
|
---|
3753 | if (0 != (conn->head[0] & SH_PROTO_END))
|
---|
3754 | {
|
---|
3755 | if (flag_err_debug == SL_TRUE)
|
---|
3756 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_OKMSG,
|
---|
3757 | sh_strip_domain (conn->peer));
|
---|
3758 | sh_forward_do_free (conn);
|
---|
3759 | SL_RET0(_("check_protocol"));
|
---|
3760 | }
|
---|
3761 |
|
---|
3762 | TPT(( 0, FIL__, __LINE__, _("msg=<Msg transfer - (wait).>\n")));
|
---|
3763 |
|
---|
3764 | /* challenge is sent, now wait for message from client
|
---|
3765 | */
|
---|
3766 | conn->headcount = 0;
|
---|
3767 | conn->bytecount = 0;
|
---|
3768 | conn->bytes_to_send = 0;
|
---|
3769 | conn->bytes_to_get = 0;
|
---|
3770 | if (conn->buf != NULL)
|
---|
3771 | {
|
---|
3772 | SH_FREE(conn->buf);
|
---|
3773 | conn->buf = NULL;
|
---|
3774 | }
|
---|
3775 | conn->state = CONN_READING;
|
---|
3776 | }
|
---|
3777 | TPT((0, FIL__, __LINE__, _("msg=<return>\n") ));
|
---|
3778 | SL_RET0(_("check_protocol"));
|
---|
3779 | }
|
---|
3780 |
|
---|
3781 | /* --------- authentication -----------
|
---|
3782 | */
|
---|
3783 |
|
---|
3784 | /* entry point for jump from message forward if session key must
|
---|
3785 | * be re-initialized
|
---|
3786 | */
|
---|
3787 | servInit:
|
---|
3788 |
|
---|
3789 | if ( (conn->head[0] & SH_PROTO_SRP) != 0 /* is set */ )
|
---|
3790 | {
|
---|
3791 |
|
---|
3792 | #ifndef USE_SRP_PROTOCOL
|
---|
3793 |
|
---|
3794 | if (state == SH_DO_READ) /* finished reading */
|
---|
3795 | {
|
---|
3796 | TPT((0, FIL__, __LINE__, _("msg=<Authentication - entry.>\n")));
|
---|
3797 |
|
---|
3798 | /* first pass -- client request salt
|
---|
3799 | */
|
---|
3800 | if (conn->pass == 1)
|
---|
3801 | {
|
---|
3802 |
|
---|
3803 | TPT((0, FIL__, __LINE__,
|
---|
3804 | _("msg=<Authentication - SALT (1).>\n")));
|
---|
3805 |
|
---|
3806 | if (conn->buf == NULL || sl_strlen(conn->buf) == 0)
|
---|
3807 | {
|
---|
3808 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NOCLT);
|
---|
3809 | sh_forward_do_free (conn);
|
---|
3810 | SL_RET0(_("check_protocol"));
|
---|
3811 | }
|
---|
3812 |
|
---|
3813 |
|
---|
3814 | /* search the register
|
---|
3815 | */
|
---|
3816 |
|
---|
3817 | this_client = search_register (conn, 0);
|
---|
3818 | if (NULL == this_client)
|
---|
3819 | SL_RET0(_("check_protocol"));
|
---|
3820 |
|
---|
3821 |
|
---|
3822 | conn->client_entry = this_client;
|
---|
3823 | sl_strlcpy (conn->peer, conn->buf, SH_MINIBUF+1);
|
---|
3824 |
|
---|
3825 | if (0 != check_request_s((char *)&(conn->head[3]),
|
---|
3826 | _("SALT"),conn->peer))
|
---|
3827 | {
|
---|
3828 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
3829 | _("No salt requested"), conn->peer);
|
---|
3830 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3831 | conn->client_entry->session_key_timer =
|
---|
3832 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3833 | sh_forward_do_free (conn);
|
---|
3834 | SL_RET0(_("check_protocol"));
|
---|
3835 | }
|
---|
3836 |
|
---|
3837 |
|
---|
3838 | /* -- create server nounce v --
|
---|
3839 | */
|
---|
3840 | ticks = (UINT32) taus_get ();
|
---|
3841 |
|
---|
3842 | if (conn->A != NULL)
|
---|
3843 | {
|
---|
3844 | SH_FREE(conn->A);
|
---|
3845 | conn->A = NULL;
|
---|
3846 | }
|
---|
3847 | conn->A = SH_ALLOC(KEY_LEN+1);
|
---|
3848 |
|
---|
3849 | sl_strlcpy(conn->A,
|
---|
3850 | sh_tiger_hash((char *) &ticks,
|
---|
3851 | TIGER_DATA, sizeof(UINT32),
|
---|
3852 | hashbuf, sizeof(hashbuf)),
|
---|
3853 | KEY_LEN+1);
|
---|
3854 | u[0] = 'I'; u[1] = 'N'; u[2] = 'I'; u[3] = 'T'; u[4] = '\0';
|
---|
3855 |
|
---|
3856 | if (conn->M1 != NULL)
|
---|
3857 | {
|
---|
3858 | SH_FREE(conn->M1);
|
---|
3859 | conn->M1 = NULL;
|
---|
3860 | }
|
---|
3861 | conn->M1 = SH_ALLOC(2*KEY_LEN+1);
|
---|
3862 |
|
---|
3863 | /* compute hash key H(v(server), P)v(server)
|
---|
3864 | */
|
---|
3865 | sh_passwd (conn->A, conn->client_entry->verifier,
|
---|
3866 | NULL, conn->M1);
|
---|
3867 |
|
---|
3868 | sl_strlcat(conn->M1, conn->A, 2*KEY_LEN+1);
|
---|
3869 |
|
---|
3870 |
|
---|
3871 | /* --- send H(v(server), P)v(server) ----
|
---|
3872 | */
|
---|
3873 | sh_forward_prep_send (conn,
|
---|
3874 | conn->M1,
|
---|
3875 | sl_strlen(conn->M1),
|
---|
3876 | u,
|
---|
3877 | (conn->head[0]|SH_PROTO_SRP));
|
---|
3878 |
|
---|
3879 | SH_FREE(conn->M1);
|
---|
3880 | conn->M1 = NULL;
|
---|
3881 | }
|
---|
3882 |
|
---|
3883 | /* client -- third pass
|
---|
3884 | * Message is H(H(u,v),P)u
|
---|
3885 | *
|
---|
3886 | * A := v, verifier := H(password),
|
---|
3887 | */
|
---|
3888 | else if (conn->pass == 3 &&
|
---|
3889 | conn->client_entry != NULL)
|
---|
3890 | {
|
---|
3891 |
|
---|
3892 | TPT((0, FIL__, __LINE__,
|
---|
3893 | _("msg=<Authentication - PASS (3).>\n")));
|
---|
3894 |
|
---|
3895 | if (0 != check_request_s((char *) &(conn->head[3]), _("PASS"),
|
---|
3896 | conn->peer) ||
|
---|
3897 | sl_strlen(conn->buf) <= KEY_LEN ||
|
---|
3898 | conn->A == NULL)
|
---|
3899 | {
|
---|
3900 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
3901 | _("Invalid client request"), conn->peer);
|
---|
3902 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3903 | conn->client_entry->session_key_timer =
|
---|
3904 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3905 | sh_forward_do_free (conn);
|
---|
3906 | SL_RET0(_("check_protocol"));
|
---|
3907 | }
|
---|
3908 |
|
---|
3909 | /* store random nonce u from client
|
---|
3910 | */
|
---|
3911 | if (conn->K != NULL)
|
---|
3912 | {
|
---|
3913 | SH_FREE(conn->K);
|
---|
3914 | conn->K = NULL;
|
---|
3915 | }
|
---|
3916 | conn->K = SH_ALLOC(KEY_LEN+1);
|
---|
3917 | sl_strlcpy(conn->K, &(conn->buf[KEY_LEN]), KEY_LEN+1);
|
---|
3918 |
|
---|
3919 | /* verify random nonce u from client
|
---|
3920 | */
|
---|
3921 | if (conn->M1 != NULL)
|
---|
3922 | {
|
---|
3923 | SH_FREE(conn->M1);
|
---|
3924 | conn->M1 = NULL;
|
---|
3925 | }
|
---|
3926 | conn->M1 = sh_util_strconcat(conn->K, conn->A, NULL);
|
---|
3927 |
|
---|
3928 | TPT((0, FIL__, __LINE__, _("msg=<c/r: K = %s>\n"), conn->K));
|
---|
3929 | TPT((0, FIL__, __LINE__, _("msg=<c/r: A = %s>\n"), conn->A));
|
---|
3930 | TPT((0, FIL__, __LINE__, _("msg=<c/r: M = %s>\n"), conn->M1));
|
---|
3931 |
|
---|
3932 | sl_strlcpy(hash, sh_tiger_hash (conn->M1,
|
---|
3933 | TIGER_DATA,
|
---|
3934 | sl_strlen(conn->M1),
|
---|
3935 | hashbuf, sizeof(hashbuf)),
|
---|
3936 | KEY_LEN+1);
|
---|
3937 | sh_passwd (hash, conn->client_entry->verifier, NULL, conn->M1);
|
---|
3938 |
|
---|
3939 | TPT((0, FIL__, __LINE__, _("msg=<c/r: H = %s>\n"), hash));
|
---|
3940 | TPT((0, FIL__, __LINE__, _("msg=<c/r: P = %s>\n"), conn->M1));
|
---|
3941 |
|
---|
3942 | if ( 0 != sl_strncmp(conn->M1, conn->buf, KEY_LEN))
|
---|
3943 | {
|
---|
3944 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
3945 | _("Session key mismatch"), conn->peer);
|
---|
3946 | status_update (conn->client_entry, CLT_FAILED);
|
---|
3947 | conn->client_entry->session_key_timer =
|
---|
3948 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
3949 | sh_forward_do_free (conn);
|
---|
3950 | SL_RET0(_("check_protocol"));
|
---|
3951 | }
|
---|
3952 |
|
---|
3953 |
|
---|
3954 | /* ---- compute hash key H(v, P, u) ----
|
---|
3955 | */
|
---|
3956 |
|
---|
3957 | sh_passwd (conn->A, conn->client_entry->verifier, conn->K,
|
---|
3958 | conn->M1);
|
---|
3959 |
|
---|
3960 | sl_strlcpy(conn->client_entry->session_key,
|
---|
3961 | conn->M1, KEY_LEN+1);
|
---|
3962 | TPT((0, FIL__, __LINE__, _("msg=<c/r: Key = %s>\n"),
|
---|
3963 | conn->client_entry->session_key));
|
---|
3964 |
|
---|
3965 | #ifdef SH_ENCRYPT
|
---|
3966 | err_num = makeKey(&(conn->client_entry->keyInstE),
|
---|
3967 | DIR_ENCRYPT, 192,
|
---|
3968 | conn->client_entry->session_key);
|
---|
3969 | if (err_num < 0)
|
---|
3970 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
3971 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
3972 | _("check_protocol: makeKey"));
|
---|
3973 | err_num = makeKey(&(conn->client_entry->keyInstD),
|
---|
3974 | DIR_DECRYPT, 192,
|
---|
3975 | conn->client_entry->session_key);
|
---|
3976 | if (err_num < 0)
|
---|
3977 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
3978 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
3979 | _("check_protocol: makeKey"));
|
---|
3980 | #endif
|
---|
3981 |
|
---|
3982 | if (conn->K != NULL) SH_FREE (conn->K);
|
---|
3983 | conn->K = NULL;
|
---|
3984 | if (conn->A != NULL) SH_FREE (conn->A);
|
---|
3985 | conn->A = NULL;
|
---|
3986 | if (conn->M1 != NULL) SH_FREE (conn->M1);
|
---|
3987 | conn->M1 = NULL;
|
---|
3988 |
|
---|
3989 | /* if (conn->client_entry->status_now == CLT_STARTED */
|
---|
3990 | if (((conn->client_entry->status_now != CLT_INACTIVE) &&
|
---|
3991 | (conn->client_entry->status_now != CLT_EXITED) &&
|
---|
3992 | (conn->client_entry->status_now != CLT_SUSPEND))
|
---|
3993 | && conn->client_entry->session_key_timer > (time_t) 1)
|
---|
3994 | {
|
---|
3995 | status_update (conn->client_entry, CLT_ILLEGAL);
|
---|
3996 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_ILL,
|
---|
3997 | conn->peer);
|
---|
3998 | }
|
---|
3999 | else if (conn->client_entry->session_key_timer == (time_t) 0)
|
---|
4000 | {
|
---|
4001 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_NEW,
|
---|
4002 | conn->peer);
|
---|
4003 | if (conn->client_entry->status_now != CLT_SUSPEND)
|
---|
4004 | status_update (conn->client_entry, CLT_STARTED);
|
---|
4005 | }
|
---|
4006 |
|
---|
4007 | conn->client_entry->session_key_timer = time (NULL);
|
---|
4008 | conn->client_entry->last_connect = time (NULL);
|
---|
4009 |
|
---|
4010 | /* put in read state
|
---|
4011 | */
|
---|
4012 | sh_forward_prep_send (conn,
|
---|
4013 | _("AUTH"),
|
---|
4014 | 5,
|
---|
4015 | _("AUTH"),
|
---|
4016 | (conn->head[0]|SH_PROTO_SRP));
|
---|
4017 |
|
---|
4018 | }
|
---|
4019 | else
|
---|
4020 | {
|
---|
4021 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FINV,
|
---|
4022 | 3, conn->pass, conn->peer,
|
---|
4023 | '\\', conn->head[3], '\\', conn->head[4],
|
---|
4024 | '\\', conn->head[5], '\\', conn->head[6]);
|
---|
4025 | sh_forward_do_free (conn);
|
---|
4026 | }
|
---|
4027 | }
|
---|
4028 |
|
---|
4029 | #else
|
---|
4030 | /* use SRP */
|
---|
4031 |
|
---|
4032 |
|
---|
4033 | if (state == SH_DO_READ) /* finished reading */
|
---|
4034 | {
|
---|
4035 |
|
---|
4036 | TPT((0, FIL__, __LINE__, _("msg=<Authentication - entry.>\n")));
|
---|
4037 |
|
---|
4038 | /* first pass -- client request salt
|
---|
4039 | */
|
---|
4040 | if (conn->pass == 1)
|
---|
4041 | {
|
---|
4042 | TPT((0, FIL__, __LINE__,
|
---|
4043 | _("msg=<Authentication - SALT (1).>\n")));
|
---|
4044 |
|
---|
4045 | if (conn->buf == NULL)
|
---|
4046 | {
|
---|
4047 | sh_error_handle( (-1), FIL__, __LINE__, 0, MSG_TCP_NOCLT);
|
---|
4048 | sh_forward_do_free (conn);
|
---|
4049 | SL_RET0(_("check_protocol"));
|
---|
4050 | }
|
---|
4051 |
|
---|
4052 | /* search the register
|
---|
4053 | */
|
---|
4054 | this_client = search_register(conn, 0);
|
---|
4055 | if (NULL == this_client)
|
---|
4056 | SL_RET0(_("check_protocol"));
|
---|
4057 |
|
---|
4058 | conn->client_entry = this_client;
|
---|
4059 | sl_strlcpy (conn->peer, conn->buf, SH_MINIBUF+1);
|
---|
4060 |
|
---|
4061 | if (0 != check_request_s((char *)&(conn->head[3]), _("SALT"),
|
---|
4062 | conn->peer))
|
---|
4063 | {
|
---|
4064 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
4065 | _("No salt requested"), conn->peer);
|
---|
4066 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4067 | conn->client_entry->session_key_timer =
|
---|
4068 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
4069 | sh_forward_do_free (conn);
|
---|
4070 | SL_RET0(_("check_protocol"));
|
---|
4071 | }
|
---|
4072 |
|
---|
4073 |
|
---|
4074 | u[0] = 'I'; u[1] = 'N'; u[2] = 'I'; u[3] = 'T'; u[4] = '\0';
|
---|
4075 |
|
---|
4076 | sh_forward_prep_send (conn,
|
---|
4077 | conn->client_entry->salt,
|
---|
4078 | sl_strlen(conn->client_entry->salt),
|
---|
4079 | u,
|
---|
4080 | (conn->head[0]|SH_PROTO_SRP));
|
---|
4081 | }
|
---|
4082 |
|
---|
4083 | /* client has sent A -- third pass
|
---|
4084 | */
|
---|
4085 | else if (conn->pass == 3 &&
|
---|
4086 | conn->client_entry != NULL)
|
---|
4087 | {
|
---|
4088 |
|
---|
4089 | TPT((0, FIL__, __LINE__,
|
---|
4090 | _("msg=<Authentication - PC01 (3).>\n")));
|
---|
4091 |
|
---|
4092 | if (0 != check_request_s((char *)&(conn->head[3]),_("PC01"),conn->peer)||
|
---|
4093 | conn->buf == NULL
|
---|
4094 | )
|
---|
4095 | {
|
---|
4096 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
4097 | _("Invalid client request"), conn->peer);
|
---|
4098 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4099 | conn->client_entry->session_key_timer =
|
---|
4100 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
4101 | sh_forward_do_free (conn);
|
---|
4102 | SL_RET0(_("check_protocol"));
|
---|
4103 | }
|
---|
4104 |
|
---|
4105 | if (0 != sh_srp_init())
|
---|
4106 | {
|
---|
4107 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4108 | sh_error_handle(SH_ERR_SEVERE, FIL__, __LINE__, 0,
|
---|
4109 | MSG_TCP_EBGN);
|
---|
4110 | sh_forward_do_free (conn);
|
---|
4111 | SL_RET0(_("check_protocol"));
|
---|
4112 | }
|
---|
4113 |
|
---|
4114 |
|
---|
4115 | /* check A, only send B if correct
|
---|
4116 | */
|
---|
4117 | if ( sl_strlen(conn->buf) < SH_BUFSIZE &&
|
---|
4118 | 0 == sh_srp_check_zero (conn->buf) )
|
---|
4119 | {
|
---|
4120 | len = sl_strlen(conn->buf)+1;
|
---|
4121 |
|
---|
4122 | if (conn->A != NULL)
|
---|
4123 | {
|
---|
4124 | SH_FREE(conn->A);
|
---|
4125 | conn->A = NULL;
|
---|
4126 | }
|
---|
4127 | conn->A = SH_ALLOC(len);
|
---|
4128 | sl_strlcpy (conn->A, conn->buf, len);
|
---|
4129 |
|
---|
4130 | /*
|
---|
4131 | * compute B
|
---|
4132 | */
|
---|
4133 | if (0 != sh_srp_make_a ()) /* b random number */
|
---|
4134 | {
|
---|
4135 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4136 |
|
---|
4137 | sh_error_handle(SH_ERR_SEVERE, FIL__, __LINE__, 0,
|
---|
4138 | MSG_TCP_EBGN);
|
---|
4139 | sh_srp_exit();
|
---|
4140 | sh_forward_do_free (conn);
|
---|
4141 | SL_RET0(_("check_protocol"));
|
---|
4142 | }
|
---|
4143 |
|
---|
4144 | foo_B = sh_srp_B /* B = v + g^b */
|
---|
4145 | (conn->client_entry->verifier);
|
---|
4146 |
|
---|
4147 | if (foo_B == NULL)
|
---|
4148 | {
|
---|
4149 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4150 |
|
---|
4151 | sh_error_handle(SH_ERR_SEVERE, FIL__, __LINE__, 0,
|
---|
4152 | MSG_TCP_EBGN);
|
---|
4153 | sh_srp_exit();
|
---|
4154 | sh_forward_do_free (conn);
|
---|
4155 | SL_RET0(_("check_protocol"));
|
---|
4156 | }
|
---|
4157 |
|
---|
4158 | TPT((0, FIL__, __LINE__, _("msg=<srp: A = %s>\n"), conn->A));
|
---|
4159 | TPT((0, FIL__, __LINE__, _("msg=<srp: B = %s>\n"), foo_B));
|
---|
4160 |
|
---|
4161 | /*
|
---|
4162 | * create nonce u
|
---|
4163 | */
|
---|
4164 | ticks = (UINT32) taus_get ();
|
---|
4165 |
|
---|
4166 | test = (char *) &ticks;
|
---|
4167 | sh_util_cpylong (u, test, 4); /* u nounce */
|
---|
4168 | u[4] = '\0';
|
---|
4169 | sl_strlcpy(conn->challenge,
|
---|
4170 | sh_tiger_hash(u, TIGER_DATA, 4, hashbuf, sizeof(hashbuf)),
|
---|
4171 | SH_CHALLENGE_SIZE);
|
---|
4172 |
|
---|
4173 | TPT((0, FIL__, __LINE__, _("msg=<srp: u = %03o-%03o-%03o-%03o>\n"), u[0], u[1], u[2], u[3]));
|
---|
4174 | TPT((0, FIL__, __LINE__, _("msg=<srp: U = %s>\n"),
|
---|
4175 | conn->challenge));
|
---|
4176 |
|
---|
4177 | /*
|
---|
4178 | * compute the session key K and M1 = Hash(A,B,K)
|
---|
4179 | */
|
---|
4180 | foo_Ss = sh_srp_S_s (conn->challenge,
|
---|
4181 | conn->A,
|
---|
4182 | conn->client_entry->verifier);
|
---|
4183 |
|
---|
4184 | if (foo_Ss == NULL || 0 != sh_srp_check_zero (foo_Ss))
|
---|
4185 | {
|
---|
4186 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4187 |
|
---|
4188 | sh_error_handle(SH_ERR_SEVERE, FIL__, __LINE__, 0,
|
---|
4189 | MSG_TCP_EBGN);
|
---|
4190 | sh_srp_exit();
|
---|
4191 | sh_forward_do_free (conn);
|
---|
4192 | SL_RET0(_("check_protocol"));
|
---|
4193 | }
|
---|
4194 |
|
---|
4195 | if (conn->K != NULL)
|
---|
4196 | {
|
---|
4197 | SH_FREE(conn->K);
|
---|
4198 | conn->K = NULL;
|
---|
4199 | }
|
---|
4200 | conn->K = SH_ALLOC(KEY_LEN+1);
|
---|
4201 | sl_strlcpy(conn->K,
|
---|
4202 | sh_tiger_hash(foo_Ss, TIGER_DATA,
|
---|
4203 | sl_strlen(foo_Ss),
|
---|
4204 | hashbuf, sizeof(hashbuf)),
|
---|
4205 | KEY_LEN+1);
|
---|
4206 |
|
---|
4207 | if (conn->M1 != NULL)
|
---|
4208 | {
|
---|
4209 | SH_FREE(conn->M1);
|
---|
4210 | conn->M1 = NULL;
|
---|
4211 | }
|
---|
4212 | conn->M1 = SH_ALLOC(KEY_LEN+1);
|
---|
4213 | sh_srp_M (conn->A, foo_B, conn->K, conn->M1, KEY_LEN+1);
|
---|
4214 |
|
---|
4215 | TPT((0, FIL__, __LINE__, _("msg=<srp:Ss = %s>\n"), foo_Ss));
|
---|
4216 | TPT((0, FIL__, __LINE__, _("msg=<srp: K = %s>\n"), conn->K));
|
---|
4217 | TPT((0, FIL__, __LINE__, _("msg=<srp:M1 = %s>\n"),conn->M1));
|
---|
4218 |
|
---|
4219 | /*
|
---|
4220 | * send B
|
---|
4221 | */
|
---|
4222 | sh_forward_prep_send (conn,
|
---|
4223 | foo_B,
|
---|
4224 | sl_strlen(foo_B)+1,
|
---|
4225 | u,
|
---|
4226 | (conn->head[0]|SH_PROTO_SRP));
|
---|
4227 | if (foo_Ss != NULL)
|
---|
4228 | {
|
---|
4229 | SH_FREE(foo_Ss);
|
---|
4230 | foo_Ss = NULL;
|
---|
4231 | }
|
---|
4232 | if (foo_B != NULL)
|
---|
4233 | {
|
---|
4234 | SH_FREE(foo_B);
|
---|
4235 | foo_B = NULL;
|
---|
4236 | }
|
---|
4237 | }
|
---|
4238 | else
|
---|
4239 | {
|
---|
4240 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4241 |
|
---|
4242 | sh_error_handle(SH_ERR_SEVERE, FIL__, __LINE__, 0,
|
---|
4243 | MSG_TCP_EZERO);
|
---|
4244 | sh_forward_do_free (conn);
|
---|
4245 | }
|
---|
4246 |
|
---|
4247 | sh_srp_exit();
|
---|
4248 | }
|
---|
4249 |
|
---|
4250 | /* client has sent M1 -- fifth pass
|
---|
4251 | */
|
---|
4252 | else if (conn->pass == 5 &&
|
---|
4253 | conn->client_entry != NULL)
|
---|
4254 | {
|
---|
4255 | TPT((0, FIL__, __LINE__,
|
---|
4256 | _("msg=<Authentication - PC02 (5).>\n")));
|
---|
4257 |
|
---|
4258 | /* check that the state is valid
|
---|
4259 | */
|
---|
4260 | if (0 != check_request_s((char *)&(conn->head[3]), _("PC02"),
|
---|
4261 | conn->peer) ||
|
---|
4262 | conn->A == NULL || conn->K == NULL || conn->M1 == NULL)
|
---|
4263 | {
|
---|
4264 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
4265 | _("Invalid client request"), conn->peer);
|
---|
4266 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4267 | conn->client_entry->session_key_timer =
|
---|
4268 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
4269 | sh_forward_do_free (conn);
|
---|
4270 | SL_RET0(_("check_protocol"));
|
---|
4271 | }
|
---|
4272 |
|
---|
4273 | /* ------ verify M1 = H(A, B, K) -------
|
---|
4274 | * ----- send M2 = H(A, M1, K) -------
|
---|
4275 | */
|
---|
4276 | if (conn->buf != NULL &&
|
---|
4277 | sl_strncmp(conn->buf, conn->M1, KEY_LEN) == 0)
|
---|
4278 | {
|
---|
4279 | /*
|
---|
4280 | * send M2
|
---|
4281 | */
|
---|
4282 | char M_buf[KEY_LEN+1];
|
---|
4283 | sh_forward_prep_send (conn,
|
---|
4284 | sh_srp_M (conn->A, conn->M1, conn->K,
|
---|
4285 | M_buf, sizeof(M_buf)),
|
---|
4286 | KEY_LEN+1,
|
---|
4287 | _("PARP"),
|
---|
4288 | (conn->head[0]|SH_PROTO_SRP));
|
---|
4289 |
|
---|
4290 | if (conn->A != NULL) SH_FREE(conn->A); conn->A = NULL;
|
---|
4291 | if (conn->M1 != NULL) SH_FREE(conn->M1); conn->M1 = NULL;
|
---|
4292 | sl_strlcpy(conn->client_entry->session_key,
|
---|
4293 | conn->K, KEY_LEN+1);
|
---|
4294 | TPT((0, FIL__, __LINE__, _("msg=<key %s>\n"),
|
---|
4295 | conn->client_entry->session_key));
|
---|
4296 |
|
---|
4297 | #ifdef SH_ENCRYPT
|
---|
4298 | err_num = makeKey(&(conn->client_entry->keyInstE),
|
---|
4299 | DIR_ENCRYPT, 192,
|
---|
4300 | conn->client_entry->session_key);
|
---|
4301 | if (err_num < 0)
|
---|
4302 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
4303 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
4304 | _("sh_forward_prep_send_int: makeKey"));
|
---|
4305 | err_num = makeKey(&(conn->client_entry->keyInstD),
|
---|
4306 | DIR_DECRYPT, 192,
|
---|
4307 | conn->client_entry->session_key);
|
---|
4308 | if (err_num < 0)
|
---|
4309 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
4310 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
4311 | _("sh_forward_prep_send_int: makeKey"));
|
---|
4312 | #endif
|
---|
4313 |
|
---|
4314 | if (conn->K != NULL) SH_FREE(conn->K); conn->K = NULL;
|
---|
4315 |
|
---|
4316 | conn->client_entry->last_connect = time (NULL);
|
---|
4317 |
|
---|
4318 | if (((conn->client_entry->status_now != CLT_INACTIVE) &&
|
---|
4319 | (conn->client_entry->status_now != CLT_EXITED) &&
|
---|
4320 | (conn->client_entry->status_now != CLT_SUSPEND))
|
---|
4321 | && conn->client_entry->session_key_timer > (time_t) 1)
|
---|
4322 | {
|
---|
4323 | status_update (conn->client_entry, CLT_ILLEGAL);
|
---|
4324 |
|
---|
4325 | sh_error_handle((-1), FIL__, __LINE__, 0,
|
---|
4326 | MSG_TCP_ILL,
|
---|
4327 | conn->peer);
|
---|
4328 | }
|
---|
4329 | else if (conn->client_entry->session_key_timer == (time_t) 0)
|
---|
4330 | {
|
---|
4331 | sh_error_handle((-1), FIL__, __LINE__, 0,
|
---|
4332 | MSG_TCP_NEW,
|
---|
4333 | conn->peer);
|
---|
4334 | if (conn->client_entry->status_now != CLT_SUSPEND)
|
---|
4335 | status_update (conn->client_entry, CLT_STARTED);
|
---|
4336 | }
|
---|
4337 | conn->client_entry->session_key_timer = time (NULL);
|
---|
4338 |
|
---|
4339 | }
|
---|
4340 | else
|
---|
4341 | {
|
---|
4342 | status_update (conn->client_entry, CLT_FAILED);
|
---|
4343 | conn->client_entry->session_key_timer =
|
---|
4344 | time(NULL) - (2*TIMEOUT_KEY);
|
---|
4345 |
|
---|
4346 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_BADCONN,
|
---|
4347 | _("Session key mismatch"), conn->peer);
|
---|
4348 | sh_forward_do_free (conn);
|
---|
4349 | }
|
---|
4350 | }
|
---|
4351 |
|
---|
4352 | else
|
---|
4353 | {
|
---|
4354 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FINV,
|
---|
4355 | 4, conn->pass, conn->peer,
|
---|
4356 | '\\', conn->head[3], '\\', conn->head[4],
|
---|
4357 | '\\', conn->head[5], '\\', conn->head[6]);
|
---|
4358 | sh_forward_do_free (conn);
|
---|
4359 | }
|
---|
4360 | }
|
---|
4361 |
|
---|
4362 | #endif
|
---|
4363 |
|
---|
4364 | else if (state == SH_DO_WRITE) /* finished writing */
|
---|
4365 | {
|
---|
4366 | TPT((0, FIL__, __LINE__, _("msg=<Authentication -- (wait).>\n")));
|
---|
4367 |
|
---|
4368 | conn->headcount = 0;
|
---|
4369 | conn->bytecount = 0;
|
---|
4370 | conn->bytes_to_send = 0;
|
---|
4371 | conn->bytes_to_get = 0;
|
---|
4372 | if (conn->buf != NULL)
|
---|
4373 | {
|
---|
4374 | SH_FREE(conn->buf);
|
---|
4375 | conn->buf = NULL;
|
---|
4376 | }
|
---|
4377 | conn->state = CONN_READING;
|
---|
4378 | }
|
---|
4379 | }
|
---|
4380 | SL_RET0(_("check_protocol"));
|
---|
4381 | }
|
---|
4382 |
|
---|
4383 |
|
---|
4384 | /***********************************************************
|
---|
4385 | *
|
---|
4386 | * SERVER RECEIVE FUNCTION
|
---|
4387 | *
|
---|
4388 | ***********************************************************
|
---|
4389 | */
|
---|
4390 | int sh_forward_do_read (sh_conn_t * conn)
|
---|
4391 | {
|
---|
4392 | unsigned long byteread; /* bytes read */
|
---|
4393 |
|
---|
4394 | #ifdef SH_ENCRYPT
|
---|
4395 |
|
---|
4396 | unsigned long blkfac = 0;
|
---|
4397 | /* unsigned long length2; */
|
---|
4398 | char * p = NULL, * q = NULL;
|
---|
4399 | RIJ_BYTE inBlock[B_SIZ];
|
---|
4400 | RIJ_BYTE outBlock[B_SIZ];
|
---|
4401 | unsigned int j;
|
---|
4402 | cipherInstance cipherInst;
|
---|
4403 | int err_num;
|
---|
4404 | char expbuf[SH_ERRBUF_SIZE];
|
---|
4405 | #endif
|
---|
4406 |
|
---|
4407 | SL_ENTER(_("sh_forward_do_read"));
|
---|
4408 |
|
---|
4409 | if (conn->state == CONN_SENDING)
|
---|
4410 | {
|
---|
4411 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_SYNC,
|
---|
4412 | conn->peer);
|
---|
4413 | SL_RETURN( (-1), _("sh_forward_do_read"));
|
---|
4414 | }
|
---|
4415 |
|
---|
4416 | if (conn->headcount < SH_HEADER_SIZE)
|
---|
4417 | {
|
---|
4418 | conn->bytes_to_get = SH_HEADER_SIZE - conn->headcount;
|
---|
4419 | byteread = read (conn->fd, &(conn->head[conn->headcount]),
|
---|
4420 | conn->bytes_to_get);
|
---|
4421 | if (byteread > 0 || errno == EINTR)
|
---|
4422 | {
|
---|
4423 | if (byteread > 0)
|
---|
4424 | conn->headcount += byteread;
|
---|
4425 | if (conn->headcount == SH_HEADER_SIZE)
|
---|
4426 | {
|
---|
4427 | conn->bytes_to_get =
|
---|
4428 | (256 * (unsigned int)conn->head[1] +
|
---|
4429 | (unsigned int)conn->head[2]);
|
---|
4430 | SH_SHOWPROT(conn->head, '<');
|
---|
4431 | conn->bytecount = 0;
|
---|
4432 | }
|
---|
4433 | }
|
---|
4434 | else
|
---|
4435 | {
|
---|
4436 | goto conn_reset;
|
---|
4437 | }
|
---|
4438 | SL_RETURN( (0), _("sh_forward_do_read"));
|
---|
4439 | }
|
---|
4440 |
|
---|
4441 |
|
---|
4442 | /* limit message size
|
---|
4443 | */
|
---|
4444 | /*
|
---|
4445 | conn->bytes_to_get =
|
---|
4446 | (conn->bytes_to_get > (16*SH_BUFSIZE - 1)) ?
|
---|
4447 | (16*SH_BUFSIZE - 1) : conn->bytes_to_get;
|
---|
4448 | */
|
---|
4449 | conn->bytes_to_get = (conn->bytes_to_get > TRANS_BYTES) ?
|
---|
4450 | TRANS_BYTES : conn->bytes_to_get;
|
---|
4451 |
|
---|
4452 | if (conn->headcount == SH_HEADER_SIZE && conn->bytes_to_get > 0)
|
---|
4453 | {
|
---|
4454 | if ((conn->bytecount > 0) && (conn->bytes_to_get > conn->bytecount))
|
---|
4455 | {
|
---|
4456 | /* do nothing */;
|
---|
4457 | }
|
---|
4458 | else
|
---|
4459 | {
|
---|
4460 | if (conn->buf != NULL)
|
---|
4461 | SH_FREE (conn->buf);
|
---|
4462 | conn->buf = SH_ALLOC(conn->bytes_to_get + 1); /* <= TRANS_BYTES+1 */
|
---|
4463 | conn->bytecount = 0;
|
---|
4464 | }
|
---|
4465 |
|
---|
4466 | byteread = read (conn->fd, &(conn->buf[conn->bytecount]),
|
---|
4467 | conn->bytes_to_get - conn->bytecount);
|
---|
4468 | if (byteread > 0 || errno == EINTR)
|
---|
4469 | {
|
---|
4470 | if (byteread > 0)
|
---|
4471 | conn->bytecount += byteread;
|
---|
4472 | if (conn->bytecount == conn->bytes_to_get)
|
---|
4473 | {
|
---|
4474 | ++conn->pass;
|
---|
4475 | /* always terminate with NULL - we might use sl_strcmp()
|
---|
4476 | */
|
---|
4477 | conn->buf[conn->bytecount] = '\0';
|
---|
4478 | conn->state = CONN_PAUSE;
|
---|
4479 |
|
---|
4480 | #ifdef SH_ENCRYPT
|
---|
4481 | if ((conn->head[0] & SH_PROTO_EN2) != 0) /* if encrypted */
|
---|
4482 | {
|
---|
4483 | conn->buf =
|
---|
4484 | sh_tools_revertPack (conn->head, conn->buf,
|
---|
4485 | &(conn->client_entry->keyInstD),
|
---|
4486 | conn->bytecount);
|
---|
4487 | }
|
---|
4488 | else if ((conn->head[0] & SH_PROTO_ENC) != 0) /* if encrypted */
|
---|
4489 | {
|
---|
4490 | /* Decrypt only complete blocks.
|
---|
4491 | * If there is an incomplete block,
|
---|
4492 | * something is wrong anyway.
|
---|
4493 | * Decrypt in place.
|
---|
4494 | */
|
---|
4495 | blkfac = conn->bytecount / B_SIZ;
|
---|
4496 | /* length2 = (B_SIZ * blkfac); */
|
---|
4497 | p = conn->buf;
|
---|
4498 | q = conn->buf;
|
---|
4499 |
|
---|
4500 | err_num = cipherInit (&cipherInst, MODE_CBC, NULL);
|
---|
4501 | if (err_num < 0)
|
---|
4502 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
4503 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
4504 | _("sh_forward_do_read: cipherInit"));
|
---|
4505 |
|
---|
4506 | for (j = 0; j < blkfac; ++j)
|
---|
4507 | {
|
---|
4508 | memcpy(inBlock, p, B_SIZ);
|
---|
4509 | err_num = blockDecrypt(&cipherInst,
|
---|
4510 | &(conn->client_entry->keyInstD),
|
---|
4511 | inBlock, 128 * BNUM, outBlock);
|
---|
4512 | if (err_num < 0)
|
---|
4513 | sh_error_handle((-1), FIL__, __LINE__, -1,
|
---|
4514 | MSG_E_SUBGEN,
|
---|
4515 | errorExplain(err_num, expbuf, sizeof(expbuf)),
|
---|
4516 | _("sh_forward_do_read: blockDecrypt"));
|
---|
4517 | memcpy(q, outBlock, B_SIZ);
|
---|
4518 | p += 16;
|
---|
4519 | q += 16;
|
---|
4520 | }
|
---|
4521 | }
|
---|
4522 | #endif
|
---|
4523 |
|
---|
4524 | /* ------ HERE CALL check_protocol(conn) ------- */
|
---|
4525 | check_protocol(conn, SH_DO_READ);
|
---|
4526 | }
|
---|
4527 | }
|
---|
4528 | else
|
---|
4529 | {
|
---|
4530 | goto conn_reset;
|
---|
4531 | }
|
---|
4532 | }
|
---|
4533 |
|
---|
4534 | else if (conn->headcount == SH_HEADER_SIZE && conn->bytes_to_get == 0)
|
---|
4535 | {
|
---|
4536 | if (conn->buf != NULL)
|
---|
4537 | SH_FREE (conn->buf);
|
---|
4538 | conn->buf = NULL;
|
---|
4539 | conn->bytecount = 0;
|
---|
4540 | ++conn->pass;
|
---|
4541 | conn->state = CONN_PAUSE;
|
---|
4542 | /* fprintf(stderr, "\n**** FIXME null read ****\n\n"); */
|
---|
4543 | /* ------ HERE CALL check_protocol(conn) ------- */
|
---|
4544 | check_protocol(conn, SH_DO_READ);
|
---|
4545 | }
|
---|
4546 |
|
---|
4547 | SL_RETURN( (0), _("sh_forward_do_read"));
|
---|
4548 |
|
---|
4549 | conn_reset:
|
---|
4550 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_RESET,
|
---|
4551 | conn->peer);
|
---|
4552 | sh_forward_do_free ( conn );
|
---|
4553 | SL_RETURN( (-1), _("sh_forward_do_read"));
|
---|
4554 | }
|
---|
4555 |
|
---|
4556 | #if !defined(O_NONBLOCK)
|
---|
4557 | #if defined(O_NDELAY)
|
---|
4558 | #define O_NONBLOCK O_NDELAY
|
---|
4559 | #else
|
---|
4560 | #define O_NONBLOCK 0
|
---|
4561 | #endif
|
---|
4562 | #endif
|
---|
4563 |
|
---|
4564 | /* send to the client
|
---|
4565 | */
|
---|
4566 | int sh_forward_do_write (sh_conn_t * conn)
|
---|
4567 | {
|
---|
4568 | int flags;
|
---|
4569 | long arg = 0;
|
---|
4570 | long bytesent; /* bytes read */
|
---|
4571 |
|
---|
4572 | SL_ENTER(_("sh_forward_do_write"));
|
---|
4573 |
|
---|
4574 | /* ---- consistency check ------
|
---|
4575 | */
|
---|
4576 | if (conn->state == CONN_READING)
|
---|
4577 | {
|
---|
4578 | sh_error_handle( (-1), FIL__, __LINE__, 0, MSG_TCP_SYNC,
|
---|
4579 | conn->peer);
|
---|
4580 | SL_RETURN( (-1), _("sh_forward_do_write"));
|
---|
4581 | }
|
---|
4582 |
|
---|
4583 |
|
---|
4584 | flags = retry_fcntl (FIL__, __LINE__, conn->fd, F_GETFL, arg);
|
---|
4585 | retry_fcntl (FIL__, __LINE__, conn->fd, F_SETFL, flags|O_NONBLOCK);
|
---|
4586 |
|
---|
4587 | /* ---- send the header ------
|
---|
4588 | */
|
---|
4589 | if (conn->headcount < SH_HEADER_SIZE)
|
---|
4590 | {
|
---|
4591 | conn->bytes_to_send = SH_HEADER_SIZE - conn->headcount;
|
---|
4592 | bytesent = write (conn->fd,
|
---|
4593 | &(conn->head[conn->headcount]),
|
---|
4594 | conn->bytes_to_send);
|
---|
4595 | if (bytesent >= 0 || errno == EINTR || errno == EAGAIN)
|
---|
4596 | {
|
---|
4597 | if (bytesent > 0)
|
---|
4598 | conn->headcount += bytesent;
|
---|
4599 | if (conn->headcount == SH_HEADER_SIZE)
|
---|
4600 | {
|
---|
4601 | conn->bytes_to_send =
|
---|
4602 | (256 * (int)conn->head[1] + (int)conn->head[2]);
|
---|
4603 | }
|
---|
4604 | }
|
---|
4605 | else
|
---|
4606 | {
|
---|
4607 | goto conn_reset_w;
|
---|
4608 | }
|
---|
4609 | if (conn->fd >= 0)
|
---|
4610 | retry_fcntl (FIL__, __LINE__, conn->fd, F_SETFL, flags);
|
---|
4611 | SL_RETURN( (0), _("sh_forward_do_write"));
|
---|
4612 | }
|
---|
4613 |
|
---|
4614 |
|
---|
4615 | /* ---- send the body ------
|
---|
4616 | */
|
---|
4617 |
|
---|
4618 | if (conn->headcount == SH_HEADER_SIZE && conn->bytes_to_send > 0 &&
|
---|
4619 | conn->buf != NULL)
|
---|
4620 | {
|
---|
4621 | bytesent = write (conn->fd, &(conn->buf[conn->bytecount]),
|
---|
4622 | conn->bytes_to_send - conn->bytecount);
|
---|
4623 | if (bytesent >= 0 || errno == EINTR || errno == EAGAIN)
|
---|
4624 | {
|
---|
4625 | if (bytesent > 0)
|
---|
4626 | conn->bytecount += bytesent;
|
---|
4627 | if (conn->bytecount == conn->bytes_to_send)
|
---|
4628 | {
|
---|
4629 | ++conn->pass;
|
---|
4630 | conn->state = CONN_PAUSE;
|
---|
4631 | /* ------ HERE CALL check_protocol(conn) ------- */
|
---|
4632 | check_protocol(conn, SH_DO_WRITE);
|
---|
4633 | }
|
---|
4634 | }
|
---|
4635 | else
|
---|
4636 | {
|
---|
4637 | goto conn_reset_w;
|
---|
4638 | }
|
---|
4639 | }
|
---|
4640 |
|
---|
4641 | else if (conn->headcount == SH_HEADER_SIZE && conn->bytes_to_send == 0)
|
---|
4642 | {
|
---|
4643 | ++conn->pass;
|
---|
4644 | conn->state = CONN_PAUSE;
|
---|
4645 | /* fprintf(stderr, "\n**** FIXME null write ****\n\n"); */
|
---|
4646 | /* ------ HERE CALL check_protocol(conn) ------- */
|
---|
4647 | check_protocol(conn, SH_DO_WRITE);
|
---|
4648 | }
|
---|
4649 |
|
---|
4650 | if (conn->fd >= 0)
|
---|
4651 | retry_fcntl (FIL__, __LINE__, conn->fd, F_SETFL, flags);
|
---|
4652 | SL_RETURN( (0), _("sh_forward_do_write"));
|
---|
4653 |
|
---|
4654 | conn_reset_w:
|
---|
4655 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_RESET,
|
---|
4656 | conn->peer);
|
---|
4657 | sh_forward_do_free ( conn );
|
---|
4658 | SL_RETURN( (-1), _("sh_forward_do_write"));
|
---|
4659 | }
|
---|
4660 |
|
---|
4661 | /* accept a connection from a client
|
---|
4662 | */
|
---|
4663 | #include <syslog.h>
|
---|
4664 | #ifdef SH_USE_LIBWRAP
|
---|
4665 | #include <tcpd.h>
|
---|
4666 |
|
---|
4667 | #ifndef ALLOW_SEVERITY
|
---|
4668 | #define ALLOW_SEVERITY LOG_INFO
|
---|
4669 | #define DENY_SEVERITY LOG_WARNING
|
---|
4670 | #endif
|
---|
4671 |
|
---|
4672 | int allow_severity;
|
---|
4673 | int deny_severity;
|
---|
4674 | #endif
|
---|
4675 |
|
---|
4676 | int sh_forward_accept (int sock, sh_conn_t * newconn)
|
---|
4677 | {
|
---|
4678 | int errflag;
|
---|
4679 | int rc;
|
---|
4680 | struct sockaddr_in addr;
|
---|
4681 | #ifdef SH_USE_LIBWRAP
|
---|
4682 | struct request_info request;
|
---|
4683 | char errbuf[128];
|
---|
4684 | char daemon[128];
|
---|
4685 | #endif
|
---|
4686 |
|
---|
4687 | /* handle AIX (size_t addrlen) in wrapper
|
---|
4688 | */
|
---|
4689 | int addrlen = sizeof(addr);
|
---|
4690 |
|
---|
4691 | SL_ENTER(_("sh_forward_accept"));
|
---|
4692 |
|
---|
4693 | rc = retry_accept(FIL__, __LINE__, sock,
|
---|
4694 | (struct sockaddr *) &addr, &addrlen);
|
---|
4695 |
|
---|
4696 | if (rc >= 0)
|
---|
4697 | {
|
---|
4698 |
|
---|
4699 | if (addrlen == 0)
|
---|
4700 | {
|
---|
4701 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
4702 | _("Connecting entity unknown"), _("accept"));
|
---|
4703 | newconn->fd = -1;
|
---|
4704 | newconn->state = CONN_FREE;
|
---|
4705 | sl_close_fd(FIL__, __LINE__, rc);
|
---|
4706 | SL_RETURN( (-1), _("sh_forward_accept"));
|
---|
4707 | }
|
---|
4708 |
|
---|
4709 | #ifdef SH_USE_LIBWRAP
|
---|
4710 | sl_strlcpy(daemon, SH_INSTALL_NAME, 128);
|
---|
4711 | request_init(&request, RQ_DAEMON, daemon, RQ_FILE, rc, 0);
|
---|
4712 | fromhost(&request);
|
---|
4713 | if (!hosts_access(&request))
|
---|
4714 | {
|
---|
4715 | sl_strlcpy(errbuf, _("Refused connection from "), 128);
|
---|
4716 | sl_strlcat(errbuf, eval_client(&request), 128);
|
---|
4717 |
|
---|
4718 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
4719 | errbuf, _("libwrap"));
|
---|
4720 | newconn->fd = -1;
|
---|
4721 | newconn->state = CONN_FREE;
|
---|
4722 | sl_close_fd(FIL__, __LINE__, rc);
|
---|
4723 | SL_RETURN( (-1), _("sh_forward_accept"));
|
---|
4724 | }
|
---|
4725 | #endif
|
---|
4726 |
|
---|
4727 | memcpy (&(newconn->addr_peer), &addr, sizeof(struct sockaddr_in));
|
---|
4728 |
|
---|
4729 | /* prepare for usage of connection
|
---|
4730 | */
|
---|
4731 | (void) retry_fcntl( FIL__, __LINE__, rc, F_SETFD, 1 );
|
---|
4732 | newconn->fd = rc;
|
---|
4733 | newconn->state = CONN_READING;
|
---|
4734 | newconn->timer = (unsigned long) time (NULL);
|
---|
4735 |
|
---|
4736 | if (flag_err_info == SL_TRUE)
|
---|
4737 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_CNEW, newconn->fd);
|
---|
4738 |
|
---|
4739 | SL_RETURN( (0), _("sh_forward_accept"));
|
---|
4740 | }
|
---|
4741 | else
|
---|
4742 | {
|
---|
4743 | char err_buf[SH_ERRBUF_SIZE];
|
---|
4744 | errflag = errno;
|
---|
4745 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
4746 | sh_error_message(errflag,err_buf, sizeof(err_buf)), _("accept"));
|
---|
4747 | newconn->fd = -1;
|
---|
4748 | newconn->state = CONN_FREE;
|
---|
4749 | SL_RETURN( (-1), _("sh_forward_accept"));
|
---|
4750 | }
|
---|
4751 | }
|
---|
4752 |
|
---|
4753 | extern char sh_sig_msg[64]; /* defined in sh_unix.c */
|
---|
4754 |
|
---|
4755 | /* ------------ port and interface -------
|
---|
4756 | */
|
---|
4757 | static unsigned int server_port = SH_DEFAULT_PORT;
|
---|
4758 |
|
---|
4759 | int sh_forward_set_port (const char * str)
|
---|
4760 | {
|
---|
4761 | int retval = 0;
|
---|
4762 | unsigned long i;
|
---|
4763 | char * endptr;
|
---|
4764 |
|
---|
4765 | SL_ENTER(_("sh_forward_set_port"));
|
---|
4766 | i = strtoul (str, &endptr, 0);
|
---|
4767 | if (endptr == str) {
|
---|
4768 | retval = -1;
|
---|
4769 | } else if (i > 65535) {
|
---|
4770 | retval = -1;
|
---|
4771 | } else {
|
---|
4772 | server_port = i;
|
---|
4773 | }
|
---|
4774 | SL_RETURN( (retval), _("sh_forward_set_port"));
|
---|
4775 | }
|
---|
4776 |
|
---|
4777 | static struct in_addr server_interface;
|
---|
4778 | static int use_server_interface = 0;
|
---|
4779 |
|
---|
4780 | int sh_forward_set_interface (const char * str)
|
---|
4781 | {
|
---|
4782 | if (0 == strcmp(str, _("INADDR_ANY")))
|
---|
4783 | {
|
---|
4784 | use_server_interface = 0;
|
---|
4785 | return 0;
|
---|
4786 | }
|
---|
4787 | if (0 == /*@-unrecog@*/inet_aton(str, &server_interface)/*@+unrecog@*/)
|
---|
4788 | {
|
---|
4789 | use_server_interface = 0;
|
---|
4790 | return -1;
|
---|
4791 | }
|
---|
4792 | use_server_interface = 1;
|
---|
4793 | return 0;
|
---|
4794 | }
|
---|
4795 |
|
---|
4796 | /* ------------ print error --------------
|
---|
4797 | */
|
---|
4798 | struct sock_err_st {
|
---|
4799 | char msg[128];
|
---|
4800 | int errnum;
|
---|
4801 | int port;
|
---|
4802 | int line;
|
---|
4803 | int euid;
|
---|
4804 | };
|
---|
4805 |
|
---|
4806 | static struct sock_err_st sock_err[2];
|
---|
4807 |
|
---|
4808 | void sh_forward_printerr(char * str, int errnum, unsigned int port, int line)
|
---|
4809 | {
|
---|
4810 | int slot = 0;
|
---|
4811 |
|
---|
4812 | if (port != server_port)
|
---|
4813 | slot = 1;
|
---|
4814 | if (str == NULL)
|
---|
4815 | sock_err[slot].msg[0] = '\0';
|
---|
4816 | else
|
---|
4817 | sl_strlcpy(sock_err[slot].msg, str, 128);
|
---|
4818 | sock_err[slot].errnum = errnum;
|
---|
4819 | sock_err[slot].port = port;
|
---|
4820 | sock_err[slot].line = line;
|
---|
4821 | sock_err[slot].euid = (int) geteuid();
|
---|
4822 | }
|
---|
4823 |
|
---|
4824 | int sh_forward_printerr_final(int slot)
|
---|
4825 | {
|
---|
4826 | char errbuf[SH_ERRBUF_SIZE];
|
---|
4827 |
|
---|
4828 | SL_ENTER(_("sh_forward_printerr_final"));
|
---|
4829 | if (sock_err[slot].msg[0] != '\0')
|
---|
4830 | {
|
---|
4831 | dlog(1, FIL__, __LINE__,
|
---|
4832 | _("Could not set up the listening socket for the server because of the\nfollowing error: %s\nPossible reasons include:\n - insufficient privilege for UID %d, or\n - the port %d is already used by another program.\n"),
|
---|
4833 | sh_error_message(sock_err[slot].errnum, errbuf, sizeof(errbuf)),
|
---|
4834 | sock_err[slot].euid,
|
---|
4835 | sock_err[slot].port);
|
---|
4836 | sh_error_handle((-1), FIL__, sock_err[slot].line,
|
---|
4837 | sock_err[slot].errnum, MSG_EXIT_ABORTS,
|
---|
4838 | sh_error_message(sock_err[slot].errnum, errbuf, sizeof(errbuf)),
|
---|
4839 | sh.prg_name,
|
---|
4840 | sock_err[slot].msg);
|
---|
4841 | SL_RETURN((-1), _("sh_forward_printerr_final"));
|
---|
4842 | }
|
---|
4843 | SL_RETURN(0, _("sh_forward_printerr_final"));
|
---|
4844 | }
|
---|
4845 |
|
---|
4846 | #define TIME_OUT_DEF 900
|
---|
4847 | static unsigned long time_out_val = TIME_OUT_DEF;
|
---|
4848 |
|
---|
4849 | int sh_forward_set_timeout (const char * c)
|
---|
4850 | {
|
---|
4851 | long val;
|
---|
4852 |
|
---|
4853 | SL_ENTER(_("sh_forward_set_time_out"));
|
---|
4854 |
|
---|
4855 | val = strtol (c, (char **)NULL, 10);
|
---|
4856 |
|
---|
4857 | if (val == 0)
|
---|
4858 | {
|
---|
4859 | val = TIME_OUT_DEF;
|
---|
4860 | }
|
---|
4861 | else if (val < 0)
|
---|
4862 | {
|
---|
4863 | time_out_val = TIME_OUT_DEF;
|
---|
4864 | SL_RETURN( (-1), _("sh_forward_set_time_out"));
|
---|
4865 | }
|
---|
4866 |
|
---|
4867 | time_out_val = (unsigned long) val;
|
---|
4868 | SL_RETURN( (0), _("sh_forward_set_time_out"));
|
---|
4869 | }
|
---|
4870 |
|
---|
4871 |
|
---|
4872 | static sh_conn_t * conns = NULL;
|
---|
4873 | static int maxconn = 0; /* maximum number of simultaneous connections */
|
---|
4874 |
|
---|
4875 |
|
---|
4876 | #ifdef INET_SYSLOG
|
---|
4877 | #define INET_SUSPEND_TIME 180 /* equal to 3 minutes */
|
---|
4878 | #define SH_MINSOCK 3
|
---|
4879 | int create_syslog_socket (int flag);
|
---|
4880 | static int recv_syslog_socket (int fd);
|
---|
4881 | static int syslog_sock = -1;
|
---|
4882 | #else
|
---|
4883 | #define SH_MINSOCK 2
|
---|
4884 | #endif
|
---|
4885 |
|
---|
4886 | extern int pf_unix_fd;
|
---|
4887 |
|
---|
4888 | /* the tcp socket, and the function to establish it
|
---|
4889 | */
|
---|
4890 | static int sh_tcp_sock = -1;
|
---|
4891 |
|
---|
4892 | int sh_create_tcp_socket (void)
|
---|
4893 | {
|
---|
4894 | struct sockaddr_in addr;
|
---|
4895 | int addrlen = sizeof(addr);
|
---|
4896 |
|
---|
4897 | int sock = -1;
|
---|
4898 | int errnum = 0;
|
---|
4899 | int flag = 1; /* non-zero to enable an option */
|
---|
4900 |
|
---|
4901 | SL_ENTER(_("sh_create_tcp_socket"));
|
---|
4902 |
|
---|
4903 | sh_forward_printerr (NULL, 0, server_port, __LINE__);
|
---|
4904 |
|
---|
4905 | /* create the socket, bind() it and listen()
|
---|
4906 | */
|
---|
4907 | if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0 )
|
---|
4908 | {
|
---|
4909 | errnum = errno;
|
---|
4910 | sh_forward_printerr (_("socket"), errnum, server_port, __LINE__);
|
---|
4911 | SL_RETURN((-1), _("sl_create_tcp_socket"));
|
---|
4912 | }
|
---|
4913 | (void) retry_fcntl( FIL__, __LINE__, sock, F_SETFD, 1 );
|
---|
4914 |
|
---|
4915 | if ( setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
|
---|
4916 | (void *) &flag, sizeof(flag)) < 0 )
|
---|
4917 | {
|
---|
4918 | errnum = errno;
|
---|
4919 | sh_forward_printerr (_("setsockopt"), errnum, server_port, __LINE__);
|
---|
4920 | SL_RETURN((-1), _("sl_create_tcp_socket"));
|
---|
4921 | }
|
---|
4922 |
|
---|
4923 | addr.sin_family = AF_INET;
|
---|
4924 | addr.sin_port = htons(server_port);
|
---|
4925 | if (use_server_interface == 0)
|
---|
4926 | addr.sin_addr.s_addr = INADDR_ANY;
|
---|
4927 | else
|
---|
4928 | memcpy(&addr.sin_addr, &server_interface, sizeof(struct in_addr));
|
---|
4929 |
|
---|
4930 | if ( bind(sock, (struct sockaddr *) &addr, addrlen) < 0)
|
---|
4931 | {
|
---|
4932 | errnum = errno;
|
---|
4933 | sh_forward_printerr (_("bind"), errnum, server_port, __LINE__);
|
---|
4934 | SL_RETURN((-1), _("sl_create_tcp_socket"));
|
---|
4935 | }
|
---|
4936 |
|
---|
4937 | if ( retry_fcntl( FIL__, __LINE__, sock, F_SETFL, O_NONBLOCK ) < 0 )
|
---|
4938 | {
|
---|
4939 | errnum = errno;
|
---|
4940 | sh_forward_printerr (_("fcntl"), errnum, server_port, __LINE__);
|
---|
4941 | SL_RETURN((-1), _("sl_create_tcp_socket"));
|
---|
4942 | }
|
---|
4943 |
|
---|
4944 | if ( listen(sock, 5) < 0)
|
---|
4945 | {
|
---|
4946 | errnum = errno;
|
---|
4947 | sh_forward_printerr (_("listen"), errnum, server_port, __LINE__);
|
---|
4948 | SL_RETURN((-1), _("sl_create_tcp_socket"));
|
---|
4949 | }
|
---|
4950 |
|
---|
4951 | sh_tcp_sock = sock;
|
---|
4952 |
|
---|
4953 | SL_RETURN((sock), _("sl_create_tcp_socket"));
|
---|
4954 | }
|
---|
4955 |
|
---|
4956 | /*****************************************
|
---|
4957 | *
|
---|
4958 | * This is the server main loop.
|
---|
4959 | *
|
---|
4960 | * The server is set up for listening, and
|
---|
4961 | * and starts a select() loop.
|
---|
4962 | *
|
---|
4963 | *****************************************/
|
---|
4964 |
|
---|
4965 | void sh_receive()
|
---|
4966 | {
|
---|
4967 | #ifdef SH_USE_XML
|
---|
4968 | extern int sh_log_file (char * message, char * inet_peer);
|
---|
4969 | #endif
|
---|
4970 |
|
---|
4971 | int sock = -1;
|
---|
4972 | sh_conn_t * cx;
|
---|
4973 | fd_set readset;
|
---|
4974 | fd_set writeset;
|
---|
4975 | struct timeval tv;
|
---|
4976 | int num_sel;
|
---|
4977 | int errnum;
|
---|
4978 | int nowconn;
|
---|
4979 | int status;
|
---|
4980 | int high_fd;
|
---|
4981 | register int i;
|
---|
4982 | long dummy = 0;
|
---|
4983 | unsigned long time_now;
|
---|
4984 | unsigned long time_last = 0;
|
---|
4985 | unsigned long time_out = time_out_val;
|
---|
4986 |
|
---|
4987 | time_t told;
|
---|
4988 | time_t tcurrent;
|
---|
4989 |
|
---|
4990 | unsigned long tchkold;
|
---|
4991 |
|
---|
4992 | struct sigaction new_act;
|
---|
4993 | struct sigaction old_act;
|
---|
4994 |
|
---|
4995 | int setsize_fd;
|
---|
4996 |
|
---|
4997 | SL_ENTER(_("sh_receive"));
|
---|
4998 |
|
---|
4999 | /* ignore SIGPIPE (instead get EPIPE if connection is closed)
|
---|
5000 | * --- we have called sh_unix_init() already ---
|
---|
5001 | */
|
---|
5002 | new_act.sa_handler = SIG_IGN;
|
---|
5003 | sigemptyset( &new_act.sa_mask ); /* set an empty mask */
|
---|
5004 | new_act.sa_flags = 0; /* init sa_flags */
|
---|
5005 | retry_sigaction (FIL__, __LINE__, SIGPIPE, &new_act, &old_act);
|
---|
5006 |
|
---|
5007 | if ( sh_forward_printerr_final(0) < 0)
|
---|
5008 | {
|
---|
5009 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
5010 | }
|
---|
5011 | sock = sh_tcp_sock;
|
---|
5012 |
|
---|
5013 | /* ****************************************************************
|
---|
5014 | *
|
---|
5015 | * This is a non-forking server. We use select() on the listen()
|
---|
5016 | * socket to watch for new connections. For new connections, accept()
|
---|
5017 | * will return a new socket that is put in the read/write filesets.
|
---|
5018 | * Data about active connections are kept in the 'conns' table.
|
---|
5019 | *
|
---|
5020 | ******************************************************************/
|
---|
5021 |
|
---|
5022 | /* The table to hold info on sockets.
|
---|
5023 | * We reserve 6 file descriptors for misc. use.
|
---|
5024 | * The POSIX lower limit on open files seems to be eight.
|
---|
5025 | */
|
---|
5026 | maxconn = get_open_max() - 6;
|
---|
5027 | /* ugly fix for FreeBSD compiler warning; casting FD_SETSIZE in the
|
---|
5028 | * conditional expression does not suppress the warning... */
|
---|
5029 | setsize_fd = (int)FD_SETSIZE;
|
---|
5030 | maxconn = (setsize_fd < maxconn) ? setsize_fd : maxconn;
|
---|
5031 |
|
---|
5032 | if (maxconn < 0 || !sl_ok_muls(maxconn, sizeof(sh_conn_t)))
|
---|
5033 | {
|
---|
5034 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_START_SRV,
|
---|
5035 | 0, sock);
|
---|
5036 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
5037 | }
|
---|
5038 | conns = SH_ALLOC (sizeof(sh_conn_t) * maxconn);
|
---|
5039 |
|
---|
5040 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_START_SRV,
|
---|
5041 | (maxconn-1), sock);
|
---|
5042 |
|
---|
5043 | /* timer
|
---|
5044 | */
|
---|
5045 | tcurrent = (unsigned long) time (NULL);
|
---|
5046 | told = tcurrent;
|
---|
5047 |
|
---|
5048 | tchkold = tcurrent;
|
---|
5049 |
|
---|
5050 | for (i = SH_MINSOCK; i < maxconn; ++i)
|
---|
5051 | {
|
---|
5052 | conns[i].buf = NULL;
|
---|
5053 | conns[i].K = NULL;
|
---|
5054 | conns[i].A = NULL;
|
---|
5055 | conns[i].M1 = NULL;
|
---|
5056 | conns[i].FileName = NULL;
|
---|
5057 | conns[i].fd = -1;
|
---|
5058 | sh_forward_do_free ( &conns[i]);
|
---|
5059 | }
|
---|
5060 |
|
---|
5061 | /* status init
|
---|
5062 | */
|
---|
5063 | server_status.conn_open = 0;
|
---|
5064 | server_status.conn_total = 0;
|
---|
5065 | server_status.conn_max = maxconn-1;
|
---|
5066 | server_status.start = time (NULL);
|
---|
5067 | server_status.last = (time_t) 0;
|
---|
5068 |
|
---|
5069 | nowconn = 1;
|
---|
5070 | tv.tv_sec = 5;
|
---|
5071 | tv.tv_usec = 0;
|
---|
5072 |
|
---|
5073 | /* conns[0] is the listen() socket. Always in read mode.
|
---|
5074 | */
|
---|
5075 | conns[0].fd = sock;
|
---|
5076 | conns[0].state = CONN_READING;
|
---|
5077 | high_fd = sock;
|
---|
5078 |
|
---|
5079 | conns[1].fd = pf_unix_fd;
|
---|
5080 | conns[1].state = CONN_READING;
|
---|
5081 | high_fd = (pf_unix_fd > high_fd) ? pf_unix_fd : high_fd;
|
---|
5082 |
|
---|
5083 | #ifdef INET_SYSLOG
|
---|
5084 | conns[2].fd = -1;
|
---|
5085 | if ( sh_forward_printerr_final(1) < 0)
|
---|
5086 | {
|
---|
5087 | SH_FREE(conns);
|
---|
5088 | conns = NULL;
|
---|
5089 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
5090 | }
|
---|
5091 | sock = syslog_sock;
|
---|
5092 |
|
---|
5093 | if (sock >= 0)
|
---|
5094 | {
|
---|
5095 | conns[2].fd = sock;
|
---|
5096 | conns[2].state = CONN_READING;
|
---|
5097 | high_fd = (high_fd > conns[2].fd) ? high_fd : conns[2].fd;
|
---|
5098 | }
|
---|
5099 | #endif
|
---|
5100 |
|
---|
5101 | sh_html_write(all_clients);
|
---|
5102 |
|
---|
5103 | /* This is the select() loop.
|
---|
5104 | */
|
---|
5105 | while (1 == 1)
|
---|
5106 | {
|
---|
5107 |
|
---|
5108 | if (sig_raised > 0)
|
---|
5109 | {
|
---|
5110 | TPT((0, FIL__, __LINE__, _("msg=<Process a signal.>\n")))
|
---|
5111 |
|
---|
5112 | if (sig_termfast == 1) /* SIGTERM */
|
---|
5113 | {
|
---|
5114 | TPT((0, FIL__, __LINE__, _("msg=<Terminate.>\n")));
|
---|
5115 | strncpy (sh_sig_msg, _("SIGTERM"), 20);
|
---|
5116 | --sig_raised; --sig_urgent;
|
---|
5117 | aud_exit (FIL__, __LINE__, EXIT_SUCCESS);
|
---|
5118 | }
|
---|
5119 |
|
---|
5120 | if (sig_config_read_again == 1)
|
---|
5121 | {
|
---|
5122 | TPT((0, FIL__, __LINE__, _("msg=<Re-read configuration.>\n")));
|
---|
5123 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_RECONF);
|
---|
5124 |
|
---|
5125 |
|
---|
5126 | /* -- Delete the name server cache. --
|
---|
5127 | */
|
---|
5128 |
|
---|
5129 | delete_cache();
|
---|
5130 | #if defined(WITH_EXTERNAL)
|
---|
5131 | /* -- Delete list of external tasks. --
|
---|
5132 | */
|
---|
5133 | (void) sh_ext_cleanup();
|
---|
5134 | #endif
|
---|
5135 | #if defined(SH_WITH_MAIL)
|
---|
5136 | sh_nmail_free();
|
---|
5137 | #endif
|
---|
5138 | /* - mark all clients dead
|
---|
5139 | * - read configuration file
|
---|
5140 | * - remove clients still dead
|
---|
5141 | */
|
---|
5142 | sh_forward_mark_dead ();
|
---|
5143 |
|
---|
5144 | reset_count_dev_console();
|
---|
5145 | reset_count_dev_time();
|
---|
5146 | sl_trust_purge_user();
|
---|
5147 |
|
---|
5148 | (void) sh_readconf_read ();
|
---|
5149 | for (i = SH_MINSOCK; i < maxconn; ++i)
|
---|
5150 | if (conns[i].state != CONN_FREE &&
|
---|
5151 | conns[i].client_entry != NULL &&
|
---|
5152 | conns[i].client_entry->dead_flag == 1)
|
---|
5153 | sh_forward_do_free ( &conns[i]);
|
---|
5154 | sh_forward_clean_tree ();
|
---|
5155 |
|
---|
5156 | sig_config_read_again = 0;
|
---|
5157 | --sig_raised;
|
---|
5158 | }
|
---|
5159 |
|
---|
5160 | if (sig_fresh_trail == 1) /* SIGIOT */
|
---|
5161 | {
|
---|
5162 | /* Logfile access
|
---|
5163 | */
|
---|
5164 | #ifdef SH_USE_XML
|
---|
5165 | sh_log_file (NULL, NULL);
|
---|
5166 | #endif
|
---|
5167 | TPT((0, FIL__, __LINE__, _("msg=<Logfile stop/restart.>\n")));
|
---|
5168 | sh_error_only_stderr (S_TRUE);
|
---|
5169 | sh_unix_rm_lock_file(sh.srvlog.name);
|
---|
5170 | retry_msleep(3, 0);
|
---|
5171 | sh.flag.log_start = S_TRUE;
|
---|
5172 | sh_error_only_stderr (S_FALSE);
|
---|
5173 | sig_fresh_trail = 0;
|
---|
5174 | --sig_raised;
|
---|
5175 | }
|
---|
5176 |
|
---|
5177 |
|
---|
5178 | if (sig_terminate == 1 && nowconn < 2) /* SIGQUIT */
|
---|
5179 | {
|
---|
5180 | TPT((0, FIL__, __LINE__, _("msg=<Terminate.>\n")));
|
---|
5181 | strncpy (sh_sig_msg, _("SIGQUIT"), 20);
|
---|
5182 | --sig_raised; --sig_urgent;
|
---|
5183 | aud_exit (FIL__, __LINE__, EXIT_SUCCESS);
|
---|
5184 | }
|
---|
5185 |
|
---|
5186 |
|
---|
5187 | if (sig_debug_switch == 1) /* SIGUSR1 */
|
---|
5188 | {
|
---|
5189 | TPT((0, FIL__, __LINE__, _("msg=<Debug switch.>\n")));
|
---|
5190 | sh_error_dbg_switch();
|
---|
5191 | sig_debug_switch = 0;
|
---|
5192 | --sig_raised;
|
---|
5193 | }
|
---|
5194 |
|
---|
5195 | if (sig_suspend_switch > 0) /* SIGUSR2 */
|
---|
5196 | {
|
---|
5197 | TPT((0, FIL__, __LINE__, _("msg=<Suspend switch.>\n")));
|
---|
5198 | if (sh_global_suspend_flag == 1) {
|
---|
5199 | sh_global_suspend_flag = 0;
|
---|
5200 | } else {
|
---|
5201 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_SUSPEND,
|
---|
5202 | sh.prg_name);
|
---|
5203 | sh_global_suspend_flag = 1;
|
---|
5204 | }
|
---|
5205 | --sig_suspend_switch;
|
---|
5206 | --sig_raised; --sig_urgent;
|
---|
5207 | }
|
---|
5208 |
|
---|
5209 | sig_raised = (sig_raised < 0) ? 0 : sig_raised;
|
---|
5210 | sig_urgent = (sig_urgent < 0) ? 0 : sig_urgent;
|
---|
5211 | TPT((0, FIL__, __LINE__, _("msg=<End signal processing.>\n")));
|
---|
5212 | }
|
---|
5213 |
|
---|
5214 | if (sh_global_suspend_flag == 1)
|
---|
5215 | {
|
---|
5216 | (void) retry_msleep (1, 0);
|
---|
5217 | continue;
|
---|
5218 | }
|
---|
5219 |
|
---|
5220 | /* Recompute the descriptor set. select() modifies it,
|
---|
5221 | * thus we update it using the info from the connection table.
|
---|
5222 | * Also recompute the number of open connections.
|
---|
5223 | */
|
---|
5224 | FD_ZERO( &readset );
|
---|
5225 | FD_ZERO( &writeset );
|
---|
5226 | FD_SET(conns[0].fd, &readset );
|
---|
5227 | high_fd = conns[0].fd;
|
---|
5228 |
|
---|
5229 | if (conns[1].fd > -1)
|
---|
5230 | {
|
---|
5231 | FD_SET(conns[1].fd, &readset );
|
---|
5232 | high_fd = (high_fd > conns[1].fd) ? high_fd : conns[1].fd;
|
---|
5233 | }
|
---|
5234 |
|
---|
5235 | #ifdef INET_SYSLOG
|
---|
5236 | if (conns[2].fd > -1)
|
---|
5237 | {
|
---|
5238 | FD_SET(conns[2].fd, &readset );
|
---|
5239 | high_fd = (high_fd > conns[2].fd) ? high_fd : conns[2].fd;
|
---|
5240 | }
|
---|
5241 | #endif
|
---|
5242 |
|
---|
5243 | time_now = (unsigned long) time (NULL);
|
---|
5244 | nowconn = 1;
|
---|
5245 |
|
---|
5246 | for (i = SH_MINSOCK; i < maxconn; ++i)
|
---|
5247 | {
|
---|
5248 | /* eliminate timed out connections
|
---|
5249 | */
|
---|
5250 | if (conns[i].state != CONN_FREE)
|
---|
5251 | {
|
---|
5252 | if (time_now-conns[i].timer > time_out)
|
---|
5253 | {
|
---|
5254 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_TIMOUT,
|
---|
5255 | conns[i].peer);
|
---|
5256 | sh_forward_do_free ( &conns[i]);
|
---|
5257 | }
|
---|
5258 | else
|
---|
5259 | ++nowconn;
|
---|
5260 | }
|
---|
5261 |
|
---|
5262 |
|
---|
5263 | if (conns[i].state == CONN_READING)
|
---|
5264 | {
|
---|
5265 | FD_SET(conns[i].fd, &readset);
|
---|
5266 | high_fd = (high_fd < conns[i].fd ? conns[i].fd : high_fd);
|
---|
5267 | }
|
---|
5268 | else if (conns[i].state == CONN_SENDING)
|
---|
5269 | {
|
---|
5270 | FD_SET(conns[i].fd, &writeset);
|
---|
5271 | high_fd = (high_fd < conns[i].fd ? conns[i].fd : high_fd);
|
---|
5272 | }
|
---|
5273 | }
|
---|
5274 |
|
---|
5275 | /* -- Exponentially reduce timeout limit if more than 1/2 full. --
|
---|
5276 | */
|
---|
5277 | /* Eliminate this, will cause problems when too much clients are
|
---|
5278 | * starting up. */
|
---|
5279 | #if 0
|
---|
5280 | if (nowconn > (maxconn/2))
|
---|
5281 | time_out = ( (time_out/2) > 1) ? (time_out/2) : 1;
|
---|
5282 | else
|
---|
5283 | time_out = time_out_val;
|
---|
5284 | #endif
|
---|
5285 |
|
---|
5286 |
|
---|
5287 | /* -- Do the select(). --
|
---|
5288 | */
|
---|
5289 | num_sel = select(high_fd+1, &readset, &writeset, NULL, &tv);
|
---|
5290 | errnum = errno;
|
---|
5291 |
|
---|
5292 | /* reset timeout - modified by select() on some systems
|
---|
5293 | */
|
---|
5294 | tv.tv_sec = 5;
|
---|
5295 | tv.tv_usec = 0;
|
---|
5296 |
|
---|
5297 |
|
---|
5298 | if ( (time_now - time_last) > 2L)
|
---|
5299 | {
|
---|
5300 | time_last = time_now;
|
---|
5301 | if (sh_html_write(all_clients) < 0)
|
---|
5302 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_HTML);
|
---|
5303 | }
|
---|
5304 |
|
---|
5305 |
|
---|
5306 | /* Error handling.
|
---|
5307 | */
|
---|
5308 | if ( num_sel < 0 ) /* some error */
|
---|
5309 | {
|
---|
5310 | char errbuf[SH_ERRBUF_SIZE];
|
---|
5311 |
|
---|
5312 | if (sig_raised == 1)
|
---|
5313 | {
|
---|
5314 | sig_raised = 2;
|
---|
5315 | continue;
|
---|
5316 | }
|
---|
5317 |
|
---|
5318 | if ( errnum == EINTR)
|
---|
5319 | continue; /* try again */
|
---|
5320 |
|
---|
5321 | if ( errnum == EBADF)
|
---|
5322 | {
|
---|
5323 | /* seek and destroy the bad fd
|
---|
5324 | */
|
---|
5325 | for (i = SH_MINSOCK; i < high_fd; ++i)
|
---|
5326 | {
|
---|
5327 | if ((conns[i].state == CONN_READING) ||
|
---|
5328 | (conns[i].state == CONN_SENDING))
|
---|
5329 | {
|
---|
5330 | if (-1 == retry_fcntl(FIL__, __LINE__,
|
---|
5331 | conns[i].fd, F_GETFL, dummy))
|
---|
5332 | sh_forward_do_free ( &conns[i]);
|
---|
5333 | }
|
---|
5334 | }
|
---|
5335 | continue;
|
---|
5336 | }
|
---|
5337 |
|
---|
5338 | sh_error_handle((-1), FIL__, __LINE__, errnum, MSG_EXIT_ABORTS,
|
---|
5339 | sh_error_message(errnum, errbuf, sizeof(errbuf)),
|
---|
5340 | sh.prg_name,
|
---|
5341 | _("select"));
|
---|
5342 | aud_exit(FIL__, __LINE__, EXIT_FAILURE );
|
---|
5343 | }
|
---|
5344 |
|
---|
5345 |
|
---|
5346 | /* log the timestamp
|
---|
5347 | */
|
---|
5348 | if ((tcurrent - told) > sh.looptime )
|
---|
5349 | {
|
---|
5350 | told = tcurrent;
|
---|
5351 | #ifdef MEM_DEBUG
|
---|
5352 | sh_mem_check();
|
---|
5353 | sh_unix_count_mlock();
|
---|
5354 | #else
|
---|
5355 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_STAMP);
|
---|
5356 | #endif
|
---|
5357 | }
|
---|
5358 |
|
---|
5359 | #if defined(SH_WITH_MAIL)
|
---|
5360 | /*
|
---|
5361 | * flush the mail queue
|
---|
5362 | */
|
---|
5363 | if (tcurrent - sh.mailTime.alarm_last > sh.mailTime.alarm_interval)
|
---|
5364 | {
|
---|
5365 | TPT((0, FIL__, __LINE__, _("msg=<Flush mail queue.>\n")))
|
---|
5366 | (void) sh_nmail_flush ();
|
---|
5367 | sh.mailTime.alarm_last = tcurrent;
|
---|
5368 | }
|
---|
5369 | #endif
|
---|
5370 | #ifdef MEM_DEBUG
|
---|
5371 | sh_mem_dump();
|
---|
5372 | #endif
|
---|
5373 |
|
---|
5374 | tcurrent = (unsigned long) time (NULL);
|
---|
5375 |
|
---|
5376 | /* check for time limit exceeded
|
---|
5377 | */
|
---|
5378 | if ((tcurrent - tchkold) > (unsigned int) 3 )
|
---|
5379 | {
|
---|
5380 | tchkold = tcurrent;
|
---|
5381 | client_time_check(/* all_clients */);
|
---|
5382 | /* reset cache */
|
---|
5383 | sh_userid_destroy();
|
---|
5384 | }
|
---|
5385 |
|
---|
5386 | /* seed / re-seed the PRNG if required
|
---|
5387 | */
|
---|
5388 | (void) taus_seed();
|
---|
5389 |
|
---|
5390 | /* select() timeout handling.
|
---|
5391 | */
|
---|
5392 | if ( num_sel == 0 ) /* timeout - no connection */
|
---|
5393 | {
|
---|
5394 | if (sh_html_write(all_clients) < 0)
|
---|
5395 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_HTML);
|
---|
5396 | continue;
|
---|
5397 | }
|
---|
5398 |
|
---|
5399 | /* New connection.
|
---|
5400 | */
|
---|
5401 | if ( FD_ISSET(conns[0].fd , &readset )) /* a new connection */
|
---|
5402 | {
|
---|
5403 | --num_sel;
|
---|
5404 | status = 0;
|
---|
5405 | if (nowconn < maxconn && sig_terminate == 0 && sig_termfast == 0)
|
---|
5406 | {
|
---|
5407 | i = SH_MINSOCK;
|
---|
5408 | while (i < maxconn)
|
---|
5409 | {
|
---|
5410 | if (conns[i].state == CONN_FREE)
|
---|
5411 | {
|
---|
5412 | status = sh_forward_accept (conns[0].fd, &conns[i]);
|
---|
5413 | if (status == 0)
|
---|
5414 | {
|
---|
5415 | high_fd =
|
---|
5416 | (high_fd > conns[i].fd ? high_fd : conns[i].fd);
|
---|
5417 | ++server_status.conn_open;
|
---|
5418 | ++server_status.conn_total;
|
---|
5419 | server_status.last = time (NULL);
|
---|
5420 | }
|
---|
5421 | break;
|
---|
5422 | }
|
---|
5423 | ++i;
|
---|
5424 | }
|
---|
5425 | }
|
---|
5426 | if (status == 0)
|
---|
5427 | continue;
|
---|
5428 | }
|
---|
5429 |
|
---|
5430 | /* check for commands on the socket
|
---|
5431 | */
|
---|
5432 | if (conns[1].fd > (-1) && FD_ISSET(conns[1].fd , &readset ))
|
---|
5433 | {
|
---|
5434 | sh_socket_poll();
|
---|
5435 | }
|
---|
5436 |
|
---|
5437 | #ifdef INET_SYSLOG
|
---|
5438 | if (conns[2].fd > (-1) && FD_ISSET(conns[2].fd , &readset ))
|
---|
5439 | {
|
---|
5440 | recv_syslog_socket (conns[2].fd);
|
---|
5441 | }
|
---|
5442 | #endif
|
---|
5443 |
|
---|
5444 | /* Check for pending read/write on the rest of the sockets.
|
---|
5445 | */
|
---|
5446 | for ( i = SH_MINSOCK; num_sel > 0 && i < maxconn; ++i )
|
---|
5447 | {
|
---|
5448 | if (sig_termfast == 1)
|
---|
5449 | break;
|
---|
5450 |
|
---|
5451 | cx = &conns[i];
|
---|
5452 | if ( cx->state == CONN_READING &&
|
---|
5453 | FD_ISSET( cx->fd, &readset ) )
|
---|
5454 | {
|
---|
5455 | --num_sel;
|
---|
5456 | sh_forward_do_read ( cx );
|
---|
5457 | }
|
---|
5458 | else if ( cx->state == CONN_SENDING &&
|
---|
5459 | FD_ISSET( cx->fd, &writeset ) )
|
---|
5460 | {
|
---|
5461 | --num_sel;
|
---|
5462 | sh_forward_do_write ( cx );
|
---|
5463 | }
|
---|
5464 | }
|
---|
5465 | /* continue */
|
---|
5466 | }
|
---|
5467 | /* notreached */
|
---|
5468 | }
|
---|
5469 |
|
---|
5470 | void free_client_tree (void)
|
---|
5471 | {
|
---|
5472 | SL_ENTER(_("free_client_tree"));
|
---|
5473 | zAVLFreeTree (all_clients, free_client);
|
---|
5474 | SL_RET0(_("free_client_tree"));
|
---|
5475 | }
|
---|
5476 |
|
---|
5477 | void sh_forward_free_all ()
|
---|
5478 | {
|
---|
5479 | register int i;
|
---|
5480 |
|
---|
5481 | SL_ENTER(_("sh_forward_free_all"));
|
---|
5482 |
|
---|
5483 | if (conns != NULL)
|
---|
5484 | for (i = SH_MINSOCK; i < maxconn; ++i)
|
---|
5485 | {
|
---|
5486 | sh_forward_do_free ( &conns[i]);
|
---|
5487 | }
|
---|
5488 |
|
---|
5489 |
|
---|
5490 | free_client_tree ();
|
---|
5491 |
|
---|
5492 | if (conns != NULL)
|
---|
5493 | SH_FREE (conns);
|
---|
5494 |
|
---|
5495 | SL_RET0(_("sh_forward_free_all"));
|
---|
5496 | }
|
---|
5497 |
|
---|
5498 | #ifdef INET_SYSLOG
|
---|
5499 |
|
---|
5500 | #ifdef HAVE_INET_ATON
|
---|
5501 | static char * my_inet_ntoa(struct in_addr in)
|
---|
5502 | {
|
---|
5503 | return inet_ntoa(in);
|
---|
5504 | }
|
---|
5505 | #else
|
---|
5506 | static char * my_inet_ntoa(struct in_addr in)
|
---|
5507 | {
|
---|
5508 | unsigned char a, b, c, d;
|
---|
5509 | static char foo[16];
|
---|
5510 | char bar[4];
|
---|
5511 | memcpy (bar, &(in.s_addr), 4); /* memory alignment (?) */
|
---|
5512 | memcpy (&a, &bar[0], 1);
|
---|
5513 | memcpy (&b, &bar[1], 1);
|
---|
5514 | memcpy (&c, &bar[2], 1);
|
---|
5515 | memcpy (&d, &bar[3], 1);
|
---|
5516 | sprintf(foo, "%d.%d.%d.%d", /* known to fit */
|
---|
5517 | (int) a, (int) b, (int) c, (int) d);
|
---|
5518 | return foo;
|
---|
5519 | }
|
---|
5520 | #endif
|
---|
5521 |
|
---|
5522 |
|
---|
5523 | /* Unlike Linux / FreeBSD, most systems don't define the stuff below
|
---|
5524 | * in syslog.h
|
---|
5525 | */
|
---|
5526 |
|
---|
5527 | #ifndef LOG_FAC
|
---|
5528 | #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
|
---|
5529 | #endif
|
---|
5530 |
|
---|
5531 | #ifndef LOG_PRI
|
---|
5532 | #define LOG_PRI(p) ((p) & LOG_PRIMASK)
|
---|
5533 | #endif
|
---|
5534 |
|
---|
5535 | typedef struct sh_code {
|
---|
5536 | char *c_name;
|
---|
5537 | int c_val;
|
---|
5538 | } SH_CODE;
|
---|
5539 |
|
---|
5540 | SH_CODE sh_facilitynames[] =
|
---|
5541 | {
|
---|
5542 | #ifdef LOG_AUTH
|
---|
5543 | { N_("auth"), LOG_AUTH },
|
---|
5544 | #endif
|
---|
5545 | #ifdef LOG_AUTHPRIV
|
---|
5546 | { N_("authpriv"), LOG_AUTHPRIV },
|
---|
5547 | #endif
|
---|
5548 | #ifdef LOG_CRON
|
---|
5549 | { N_("cron"), LOG_CRON },
|
---|
5550 | #endif
|
---|
5551 | #ifdef LOG_DAEMON
|
---|
5552 | { N_("daemon"), LOG_DAEMON },
|
---|
5553 | #endif
|
---|
5554 | #ifdef LOG_FTP
|
---|
5555 | { N_("ftp"), LOG_FTP },
|
---|
5556 | #endif
|
---|
5557 | #ifdef LOG_KERN
|
---|
5558 | { N_("kern"), LOG_KERN },
|
---|
5559 | #endif
|
---|
5560 | #ifdef LOG_LPR
|
---|
5561 | { N_("lpr"), LOG_LPR },
|
---|
5562 | #endif
|
---|
5563 | #ifdef LOG_MAIL
|
---|
5564 | { N_("mail"), LOG_MAIL },
|
---|
5565 | #endif
|
---|
5566 | #ifdef INTERNAL_MARK
|
---|
5567 | { N_("mark"), INTERNAL_MARK }, /* INTERNAL */
|
---|
5568 | #endif
|
---|
5569 | #ifdef LOG_NEWS
|
---|
5570 | { N_("news"), LOG_NEWS },
|
---|
5571 | #endif
|
---|
5572 | #ifdef LOG_AUTH
|
---|
5573 | { N_("security"), LOG_AUTH }, /* DEPRECATED */
|
---|
5574 | #endif
|
---|
5575 | #ifdef LOG_SYSLOG
|
---|
5576 | { N_("syslog"), LOG_SYSLOG },
|
---|
5577 | #endif
|
---|
5578 | #ifdef LOG_USER
|
---|
5579 | { N_("user"), LOG_USER },
|
---|
5580 | #endif
|
---|
5581 | #ifdef LOG_UUCP
|
---|
5582 | { N_("uucp"), LOG_UUCP },
|
---|
5583 | #endif
|
---|
5584 | #ifdef LOG_LOCAL0
|
---|
5585 | { N_("local0"), LOG_LOCAL0 },
|
---|
5586 | #endif
|
---|
5587 | #ifdef LOG_LOCAL1
|
---|
5588 | { N_("local1"), LOG_LOCAL1 },
|
---|
5589 | #endif
|
---|
5590 | #ifdef LOG_LOCAL2
|
---|
5591 | { N_("local2"), LOG_LOCAL2 },
|
---|
5592 | #endif
|
---|
5593 | #ifdef LOG_LOCAL3
|
---|
5594 | { N_("local3"), LOG_LOCAL3 },
|
---|
5595 | #endif
|
---|
5596 | #ifdef LOG_LOCAL4
|
---|
5597 | { N_("local4"), LOG_LOCAL4 },
|
---|
5598 | #endif
|
---|
5599 | #ifdef LOG_LOCAL5
|
---|
5600 | { N_("local5"), LOG_LOCAL5 },
|
---|
5601 | #endif
|
---|
5602 | #ifdef LOG_LOCAL6
|
---|
5603 | { N_("local6"), LOG_LOCAL6 },
|
---|
5604 | #endif
|
---|
5605 | #ifdef LOG_LOCAL7
|
---|
5606 | { N_("local7"), LOG_LOCAL7 },
|
---|
5607 | #endif
|
---|
5608 | { NULL, -1 }
|
---|
5609 | };
|
---|
5610 |
|
---|
5611 |
|
---|
5612 | SH_CODE sh_prioritynames[] =
|
---|
5613 | {
|
---|
5614 | #ifdef LOG_ALERT
|
---|
5615 | { N_("alert"), LOG_ALERT },
|
---|
5616 | #endif
|
---|
5617 | #ifdef LOG_CRIT
|
---|
5618 | { N_("crit"), LOG_CRIT },
|
---|
5619 | #endif
|
---|
5620 | #ifdef LOG_DEBUG
|
---|
5621 | { N_("debug"), LOG_DEBUG },
|
---|
5622 | #endif
|
---|
5623 | #ifdef LOG_EMERG
|
---|
5624 | { N_("emerg"), LOG_EMERG },
|
---|
5625 | #endif
|
---|
5626 | #ifdef LOG_ERR
|
---|
5627 | { N_("err"), LOG_ERR },
|
---|
5628 | #endif
|
---|
5629 | #ifdef LOG_ERR
|
---|
5630 | { N_("error"), LOG_ERR }, /* DEPRECATED */
|
---|
5631 | #endif
|
---|
5632 | #ifdef LOG_INFO
|
---|
5633 | { N_("info"), LOG_INFO },
|
---|
5634 | #endif
|
---|
5635 | #ifdef INTERNAL_NOPRI
|
---|
5636 | { N_("none"), INTERNAL_NOPRI }, /* INTERNAL */
|
---|
5637 | #endif
|
---|
5638 | #ifdef LOG_NOTICE
|
---|
5639 | { N_("notice"), LOG_NOTICE },
|
---|
5640 | #endif
|
---|
5641 | #ifdef LOG_EMERG
|
---|
5642 | { N_("panic"), LOG_EMERG }, /* DEPRECATED */
|
---|
5643 | #endif
|
---|
5644 | #ifdef LOG_WARNING
|
---|
5645 | { N_("warn"), LOG_WARNING }, /* DEPRECATED */
|
---|
5646 | #endif
|
---|
5647 | #ifdef LOG_WARNING
|
---|
5648 | { N_("warning"), LOG_WARNING },
|
---|
5649 | #endif
|
---|
5650 | { NULL, -1 }
|
---|
5651 | };
|
---|
5652 |
|
---|
5653 | static int enable_syslog_socket = S_FALSE;
|
---|
5654 |
|
---|
5655 | static int recv_syslog_socket (int fd)
|
---|
5656 | {
|
---|
5657 | static time_t return_next = 0;
|
---|
5658 | int priority = 0;
|
---|
5659 | int fac, pri;
|
---|
5660 | int i;
|
---|
5661 | char * cfac = NULL;
|
---|
5662 | char * cpri = NULL;
|
---|
5663 | int res;
|
---|
5664 | char * tmp;
|
---|
5665 | char * bptr;
|
---|
5666 | char * ptr = NULL;
|
---|
5667 | char buf[1048];
|
---|
5668 | struct sockaddr_in from;
|
---|
5669 | char errbuf[SH_ERRBUF_SIZE];
|
---|
5670 |
|
---|
5671 | /* The 6th argument in recvfrom is *socklen_t in Linux and *BSD,
|
---|
5672 | * but *int everywhere else. Because socklen_t is unsigned int, there
|
---|
5673 | * should be no problem as long as sizeof(struct sockaddr_in) < INT_MAX ...
|
---|
5674 | */
|
---|
5675 | int fromlen = sizeof(from);
|
---|
5676 |
|
---|
5677 | if (enable_syslog_socket == S_FALSE)
|
---|
5678 | return 0;
|
---|
5679 |
|
---|
5680 | SL_ENTER(_("recv_syslog_socket"));
|
---|
5681 |
|
---|
5682 | if (return_next > 0)
|
---|
5683 | {
|
---|
5684 | if ( (time(NULL) - return_next) < 2)
|
---|
5685 | SL_RETURN( 0, _("recv_syslog_socket"));
|
---|
5686 | else
|
---|
5687 | return_next = 0;
|
---|
5688 | }
|
---|
5689 |
|
---|
5690 | res = recvfrom(fd, buf, 1047, 0, (struct sockaddr *) &from, &fromlen);
|
---|
5691 |
|
---|
5692 | if (res > 0)
|
---|
5693 | {
|
---|
5694 | res = (res < 1047) ? res : 1047;
|
---|
5695 | buf[res] = '\0';
|
---|
5696 | if (res > 1 && buf[res-1] == '\n')
|
---|
5697 | buf[res-1] = '\0';
|
---|
5698 |
|
---|
5699 | /* here we expect an xml formatted message, thus we don't
|
---|
5700 | escape xml special chars (flag == 0) */
|
---|
5701 | /* commented out to not escape twice */
|
---|
5702 | /* bptr = sh_tools_safe_name(buf, 0); */
|
---|
5703 | bptr = buf;
|
---|
5704 |
|
---|
5705 | if (!bptr || !(*bptr))
|
---|
5706 | {
|
---|
5707 | res = errno;
|
---|
5708 | TPT(( 0, FIL__, __LINE__, _("msg=<UDP error: %d>\n"), res));
|
---|
5709 | sh_error_handle((-1), FIL__, __LINE__, res, MSG_ERR_SYSLOG,
|
---|
5710 | sh_error_message(res, errbuf, sizeof(errbuf)),
|
---|
5711 | my_inet_ntoa(from.sin_addr));
|
---|
5712 | SL_RETURN( (-1), _("recv_syslog_socket"));
|
---|
5713 | }
|
---|
5714 |
|
---|
5715 | TPT(( 0, FIL__, __LINE__, _("msg=<UDP message from %s>\n"),
|
---|
5716 | my_inet_ntoa(from.sin_addr)));
|
---|
5717 | ptr = bptr;
|
---|
5718 | i = 0;
|
---|
5719 | if (*ptr == '<')
|
---|
5720 | {
|
---|
5721 | ++ptr; ++i;
|
---|
5722 | while (i < res &&
|
---|
5723 | (unsigned char) *ptr > 47 && (unsigned char) *ptr < 58)
|
---|
5724 | {
|
---|
5725 | priority = 10 * priority + (*ptr - '0');
|
---|
5726 | ++ptr;
|
---|
5727 | ++i;
|
---|
5728 | }
|
---|
5729 | if (*ptr == '>')
|
---|
5730 | ++ptr;
|
---|
5731 | }
|
---|
5732 | fac = LOG_FAC(priority);
|
---|
5733 | i = 0;
|
---|
5734 | while (sh_facilitynames[i].c_name != NULL)
|
---|
5735 | {
|
---|
5736 | if (sh_facilitynames[i].c_val == (fac<<3))
|
---|
5737 | { cfac = sh_util_strdup(_(sh_facilitynames[i].c_name)); break; }
|
---|
5738 | ++i;
|
---|
5739 | }
|
---|
5740 | pri = LOG_PRI(priority);
|
---|
5741 | i = 0;
|
---|
5742 | while (sh_prioritynames[i].c_name != NULL)
|
---|
5743 | {
|
---|
5744 | if (sh_prioritynames[i].c_val == pri)
|
---|
5745 | { cpri = sh_util_strdup(_(sh_prioritynames[i].c_name)); break; }
|
---|
5746 | ++i;
|
---|
5747 | }
|
---|
5748 |
|
---|
5749 | /* here we do not expect an xml formatted message, thus we escape
|
---|
5750 | xml special chars (flag == 1) */
|
---|
5751 | tmp = sh_tools_safe_name (ptr, 1);
|
---|
5752 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_INET_SYSLOG,
|
---|
5753 | my_inet_ntoa(from.sin_addr),
|
---|
5754 | (cfac == NULL) ? _("none") : cfac,
|
---|
5755 | (cpri == NULL) ? _("none") : cpri,
|
---|
5756 | (ptr == NULL) ? _("none") : ptr);
|
---|
5757 | if (cfac != NULL)
|
---|
5758 | SH_FREE(cfac);
|
---|
5759 | if (cpri != NULL)
|
---|
5760 | SH_FREE(cpri);
|
---|
5761 | SH_FREE(tmp);
|
---|
5762 | /* SH_FREE(bptr); */
|
---|
5763 | }
|
---|
5764 |
|
---|
5765 | else if (res < 0 && errno != EINTR)
|
---|
5766 | {
|
---|
5767 | res = errno;
|
---|
5768 | TPT(( 0, FIL__, __LINE__, _("msg=<UDP error: %d>\n"), res));
|
---|
5769 | sh_error_handle((-1), FIL__, __LINE__, res, MSG_ERR_SYSLOG,
|
---|
5770 | sh_error_message(res, errbuf, sizeof(errbuf)),
|
---|
5771 | my_inet_ntoa(from.sin_addr));
|
---|
5772 |
|
---|
5773 | /* don't accept anything the next 2 seconds
|
---|
5774 | */
|
---|
5775 | return_next = time(NULL);
|
---|
5776 | SL_RETURN( (-1), _("recv_syslog_socket"));
|
---|
5777 | }
|
---|
5778 | SL_RETURN( (0), _("recv_syslog_socket"));
|
---|
5779 | }
|
---|
5780 |
|
---|
5781 | int set_syslog_active(const char * c)
|
---|
5782 | {
|
---|
5783 | return sh_util_flagval(c, &enable_syslog_socket);
|
---|
5784 | }
|
---|
5785 |
|
---|
5786 | /* callerFlag == S_TRUE means override the enable_syslog_socket flag
|
---|
5787 | */
|
---|
5788 | int create_syslog_socket (int callerFlag)
|
---|
5789 | {
|
---|
5790 | int flag = 1; /* non-zero to enable an option */
|
---|
5791 | int sock;
|
---|
5792 | int errnum;
|
---|
5793 | int res;
|
---|
5794 | struct sockaddr_in addr;
|
---|
5795 | int addrlen = sizeof(addr);
|
---|
5796 |
|
---|
5797 | SL_ENTER(_("create_syslog_socket"));
|
---|
5798 |
|
---|
5799 | if (callerFlag == S_FALSE)
|
---|
5800 | {
|
---|
5801 | if (enable_syslog_socket == S_FALSE && syslog_sock >= 0)
|
---|
5802 | {
|
---|
5803 | /* user does not wish to use this facility
|
---|
5804 | */
|
---|
5805 | TPT(( 0, FIL__, __LINE__, _("msg=<close syslog socket>\n")));
|
---|
5806 | sl_close_fd(FIL__, __LINE__, syslog_sock);
|
---|
5807 | syslog_sock = -1;
|
---|
5808 | }
|
---|
5809 | SL_RETURN((-1), _("create_syslog_socket"));
|
---|
5810 | }
|
---|
5811 |
|
---|
5812 | sh_forward_printerr (NULL, 0, 514, __LINE__);
|
---|
5813 |
|
---|
5814 | /* create the socket, bind() it and listen()
|
---|
5815 | */
|
---|
5816 | sock = socket(AF_INET, SOCK_DGRAM, 0);
|
---|
5817 |
|
---|
5818 | if (sock < 0)
|
---|
5819 | {
|
---|
5820 | errnum = errno;
|
---|
5821 | sh_forward_printerr (_("syslog socket"), errnum, 514, __LINE__);
|
---|
5822 | SL_RETURN((-1), _("create_syslog_socket"));
|
---|
5823 | }
|
---|
5824 | (void) retry_fcntl( FIL__, __LINE__, sock, F_SETFD, 1 );
|
---|
5825 |
|
---|
5826 | if ( setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
|
---|
5827 | (void *) &flag, sizeof(flag)) < 0 )
|
---|
5828 | {
|
---|
5829 | errnum = errno;
|
---|
5830 | sh_forward_printerr (_("syslog setsockopt SO_REUSEADDR"),
|
---|
5831 | errnum, 514, __LINE__);
|
---|
5832 | SL_RETURN((-1), _("create_syslog_socket"));
|
---|
5833 | }
|
---|
5834 |
|
---|
5835 | #if defined(SO_BSDCOMPAT)
|
---|
5836 | if ( setsockopt(sock, SOL_SOCKET, SO_BSDCOMPAT,
|
---|
5837 | (void *) &flag, sizeof(flag)) < 0 )
|
---|
5838 | {
|
---|
5839 | errnum = errno;
|
---|
5840 | sh_forward_printerr (_("syslog setsockopt SO_BSDCOMPAT"),
|
---|
5841 | errnum, 514, __LINE__);
|
---|
5842 | SL_RETURN((-1), _("create_syslog_socket"));
|
---|
5843 | }
|
---|
5844 | #endif
|
---|
5845 |
|
---|
5846 | memset(&addr, 0, sizeof(addr));
|
---|
5847 | addr.sin_family = AF_INET;
|
---|
5848 | addr.sin_port = htons(514);
|
---|
5849 |
|
---|
5850 | res = bind(sock, (struct sockaddr *) &addr, addrlen);
|
---|
5851 |
|
---|
5852 | if ( res < 0)
|
---|
5853 | {
|
---|
5854 | errnum = errno;
|
---|
5855 | sh_forward_printerr (_("syslog bind"), errnum, 514, __LINE__);
|
---|
5856 | sl_close_fd(FIL__, __LINE__, sock);
|
---|
5857 | SL_RETURN((-1), _("create_syslog_socket"));
|
---|
5858 | }
|
---|
5859 |
|
---|
5860 | syslog_sock = sock;
|
---|
5861 |
|
---|
5862 | SL_RETURN((sock), _("create_syslog_socket"));
|
---|
5863 | }
|
---|
5864 | /* #ifdef INET_SYSLOG */
|
---|
5865 | #endif
|
---|
5866 |
|
---|
5867 |
|
---|
5868 |
|
---|
5869 | /* #ifdef SH_WITH_SERVER */
|
---|
5870 | #endif
|
---|
5871 |
|
---|
5872 |
|
---|
5873 |
|
---|
5874 |
|
---|
5875 |
|
---|
5876 |
|
---|