-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathscanssh.c
1492 lines (1203 loc) · 30.8 KB
/
scanssh.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* ScanSSH - simple SSH version scanner
*
* Copyright 2000-2004 (c) Niels Provos <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/queue.h>
#include <sys/tree.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <err.h>
#include <fcntl.h>
#include <netdb.h>
#include <pcap.h>
#include <unistd.h>
#include <md5.h>
#include <stdarg.h>
#include <assert.h>
#include <event.h>
#include <dnet.h>
#include "scanssh.h"
#include "exclude.h"
#include "xmalloc.h"
#include "interface.h"
#include "string-compat.h"
#ifndef howmany
#define howmany(x,y) (((x) + ((y) - 1)) / (y))
#endif
#ifdef DEBUG
int debug = 0;
#define DFPRINTF(x) if (debug) fprintf x
#define DNFPRINTF(y, x) if (debug >= y) fprintf x
#else
#define DFPRINTF(x)
#define DNFPRINTF(y, x)
#endif
struct address_node {
TAILQ_ENTRY (address_node) an_next;
struct addr an_start;
struct addr an_end;
int an_bits;
};
struct generate {
TAILQ_ENTRY (generate) gen_next;
TAILQ_HEAD (an_list, address_node) gen_anqueue;
int gen_flags;
uint32_t gen_seed; /* Seed for PRNG */
uint32_t gen_bits;
uint32_t gen_start;
uint32_t gen_iterate;
uint32_t gen_end;
uint32_t gen_current;
uint32_t gen_n; /* successful generations */
uint32_t gen_max;
struct port *gen_ports;
int gen_nports;
};
int populate(struct argument **, int *);
int next_address(struct generate *, struct addr *);
/* Globals */
struct interface *ss_inter;
rand_t *ss_rand;
ip_t *ss_ip;
/* SOCKS servers via which we can scan */
struct socksq socks_host;
struct scanner **ss_scanners = NULL;
int ss_nscanners = 0;
struct argument *args; /* global list of addresses */
int entries; /* number of remaining addresses */
int ssh_sendident; /* should we send ident to ssh server? */
struct port *ss_ports = NULL; /* global list of ports to be scanned */
int ss_nports = 0;
int ss_nhosts = 0; /* Number of addresses generated */
pcap_t *pd;
int rndexclude = 1;
struct timeval syn_start;
int syn_rate = 100;
int syn_nsent = 0;
int max_scanqueue_size = MAXSCANQUEUESZ;
struct address_slot slots[MAXSLOTS];
#define MAX_PROCESSES 30
int commands[MAX_PROCESSES];
int results[MAX_PROCESSES];
TAILQ_HEAD (gen_list, generate) genqueue;
struct queue_list readyqueue;
/* Structure for probes */
static SPLAY_HEAD(syntree, argument) synqueue;
int
argumentcompare(struct argument *a, struct argument *b)
{
return (addr_cmp(&a->addr, &b->addr));
}
SPLAY_PROTOTYPE(syntree, argument, a_node, argumentcompare);
SPLAY_GENERATE(syntree, argument, a_node, argumentcompare);
#define synlist_empty() (synqueuesz == 0)
int synqueuesz;
struct address_slot *
slot_get(void)
{
int i;
struct address_slot *slot;
for (i = 0; i < MAXSLOTS; i++)
if (slots[i].slot_base == NULL)
break;
if (i >= MAXSLOTS)
return (NULL);
slot = &slots[i];
if (slot->slot_base == NULL) {
slot->slot_size = EXPANDEDARGS;
slot->slot_base = xmalloc(EXPANDEDARGS * sizeof(struct argument));
memset(slot->slot_base, 0,
slot->slot_size * sizeof(struct argument));
}
return (slot);
}
/* We need to call this to free up our memory */
void
slot_free(struct address_slot *slot)
{
slot->slot_ref--;
if (slot->slot_ref)
return;
slot->slot_size = 0;
free(slot->slot_base);
slot->slot_base = NULL;
}
void
argument_free(struct argument *arg)
{
if (arg->a_ports != NULL && arg->a_hasports) {
int i;
for (i = 0; i < arg->a_nports; i++) {
struct port_scan *ps = arg->a_ports[i].scan;
if (ps != NULL) {
event_del(&ps->ev);
free(ps);
}
}
free(arg->a_ports);
arg->a_ports = NULL;
}
if (arg->a_res != NULL) {
free(arg->a_res);
arg->a_res = NULL;
}
slot_free(arg->a_slot);
}
void
synlist_init(void)
{
SPLAY_INIT(&synqueue);
synqueuesz = 0;
}
/* Inserts an address into the syn tree and schedules a retransmit */
int
synlist_insert(struct argument *arg)
{
struct timeval tv;
timerclear(&tv);
tv.tv_sec = (arg->a_retry/2 + 1) * SYNWAIT;
tv.tv_usec = rand_uint32(ss_rand) % 1000000L;
evtimer_add(&arg->ev, &tv);
/* Insert the node into our tree */
assert(SPLAY_FIND(syntree, &synqueue, arg) == NULL);
SPLAY_INSERT(syntree, &synqueue, arg);
synqueuesz++;
return (0);
}
void
synlist_remove(struct argument *arg)
{
SPLAY_REMOVE(syntree, &synqueue, arg);
evtimer_del(&arg->ev);
synqueuesz--;
}
int
synlist_probe(struct argument *arg, uint16_t port)
{
return (synprobe_send(&ss_inter->if_ent.intf_addr,
&arg->addr, port, &arg->a_seqnr));
}
int
synprobe_send(struct addr *src, struct addr *dst,
uint16_t port, uint32_t *seqnr)
{
static uint8_t pkt[1500];
struct tcp_hdr *tcp;
uint iplen;
int res;
DFPRINTF((stderr, "Sending probe to %s:%d\n", addr_ntoa(dst), port));
tcp = (struct tcp_hdr *)(pkt + IP_HDR_LEN);
tcp_pack_hdr(tcp, rand_uint16(ss_rand), port,
*seqnr, 0,
TH_SYN, 0x8000, 0);
iplen = IP_HDR_LEN + (tcp->th_off << 2);
/* Src and Dst are reversed both for ip and tcp */
ip_pack_hdr(pkt, 0, iplen,
rand_uint16(ss_rand),
IP_DF, 64,
IP_PROTO_TCP, src->addr_ip, dst->addr_ip);
ip_checksum(pkt, iplen);
if ((res = ip_send(ss_ip, pkt, iplen)) != iplen) {
warn("%s: ip_send(%d): %s", __func__, res, addr_ntoa(dst));
return (-1);
}
return (0);
}
void
sigchld_handler(int sig)
{
int save_errno = errno;
int status;
wait(&status);
signal(SIGCHLD, sigchld_handler);
errno = save_errno;
}
void
printres(struct argument *exp, uint16_t port, char *result)
{
fprintf(stdout, "%s:%d %s\n",
addr_ntoa(&exp->addr), port, result);
fflush(stdout);
}
void
postres(struct argument *arg, const char *fmt, ...)
{
static char buffer[1024];
va_list ap;
va_start(ap, fmt);
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
if (arg->a_res != NULL)
free(arg->a_res);
if ((arg->a_res = strdup(buffer)) == NULL)
err(1, "%s: strdup", __func__);
}
/*
* Called when a syn probe times out and we might have to repeat it
*/
void
ss_timeout(int fd, short what, void *parameter)
{
struct argument *arg = parameter;
struct timeval tv;
if (arg->a_retry < SYNRETRIES) {
arg->a_retry++;
/*
* If this probe fails we are not reducing the retry counter,
* as some of the failures might repeat always, like a host
* on the local network not being reachable or some unrouteable
* address space.
*/
if (synlist_probe(arg, arg->a_ports[0].port) == 0)
syn_nsent++;
} else {
printres(arg, arg->a_ports[0].port, "<timeout>");
synlist_remove(arg);
argument_free(arg);
return;
}
timerclear(&tv);
tv.tv_sec = (arg->a_retry/2 + 1) * SYNWAIT;
tv.tv_usec = rand_uint32(ss_rand) % 1000000L;
evtimer_add(&arg->ev, &tv);
}
void
ss_recv_cb(uint8_t *ag, const struct pcap_pkthdr *pkthdr, const uint8_t *pkt)
{
struct interface *inter = (struct interface *)ag;
struct ip_hdr *ip;
struct tcp_hdr *tcp = NULL;
struct addr addr;
struct argument *arg, tmp;
ushort iplen, iphlen;
/* Everything below assumes that the packet is IPv4 */
if (pkthdr->caplen < inter->if_dloff + IP_HDR_LEN)
return;
pkt += inter->if_dloff;
ip = (struct ip_hdr *)pkt;
iplen = ntohs(ip->ip_len);
if (pkthdr->caplen - inter->if_dloff < iplen)
return;
iphlen = ip->ip_hl << 2;
if (iphlen > iplen)
return;
if (iphlen < sizeof(struct ip_hdr))
return;
addr_pack(&addr, ADDR_TYPE_IP, IP_ADDR_BITS, &ip->ip_src, IP_ADDR_LEN);
if (iplen < iphlen + TCP_HDR_LEN)
return;
tcp = (struct tcp_hdr *)(pkt + iphlen);
/* See if we get results from our syn probe */
tmp.addr = addr;
if ((arg = SPLAY_FIND(syntree, &synqueue, &tmp)) != NULL) {
struct port *port;
/* Check if the result is coming from the right port */
port = ports_find(arg, ntohs(tcp->th_sport));
if (port == NULL)
return;
if (!arg->a_hasports)
ports_setup(arg, arg->a_ports, arg->a_nports);
if (tcp->th_flags & TH_RST) {
printres(arg, port->port, "<refused>");
ports_remove(arg, port->port);
if (arg->a_nports == 0) {
synlist_remove(arg);
argument_free(arg);
return;
}
} else {
ports_markchecked(arg, port);
}
if (ports_isalive(arg) == 1) {
synlist_remove(arg);
scanhost_ready(arg);
}
}
}
void
scanssh_init(void)
{
TAILQ_INIT(&readyqueue);
synlist_init();
}
void
usage(char *name)
{
fprintf(stderr,
"%s: [-VIERhp] [-s scanners] [-n ports] [-e excludefile] [-i if] [-b alias] <IP address|network>...\n\n"
"\t-V print version number of scanssh,\n"
"\t-I do not send identification string,\n"
"\t-E exit if exclude file is missing,\n"
"\t-R do not honor exclude file for random addresses,\n"
"\t-p proxy detection mode; set scanners and ports,\n"
"\t-n <port> the port number to scan.\n"
"\t-e <file> exclude the IP addresses and networks in <file>,\n"
"\t-b <alias> specifies the IP alias to connect from,\n"
"\t-i <if> specifies the local interface,\n"
"\t-h this message.\n"
"\t-s <modes> uses the following modules for scanning:\n",
name);
scanner_print("\t\t");
}
void
generate_free(struct generate *gen)
{
struct address_node *node;
/* Remove generator and attached addr nodes */
for (node = TAILQ_FIRST(&gen->gen_anqueue);
node;
node = TAILQ_FIRST(&gen->gen_anqueue)) {
TAILQ_REMOVE(&gen->gen_anqueue, node, an_next);
xfree(node);
}
TAILQ_REMOVE(&genqueue, gen, gen_next);
xfree(gen);
}
/*
* Given an IP prefix and mask create all addresses contained
* excluding any addresses specified in the exclude queues.
*/
int
populate(struct argument **pargs, int *nargs)
{
struct generate *gen;
struct addr addr;
struct address_slot *slot = NULL;
struct argument *args;
int count;
uint32_t i = 0;
if (!TAILQ_FIRST(&genqueue))
return (-1);
if ((slot = slot_get()) == NULL)
return (-1);
args = slot->slot_base;
count = slot->slot_size;
while (TAILQ_FIRST(&genqueue) && count) {
struct port *ports;
int nports;
gen = TAILQ_FIRST(&genqueue);
ports = gen->gen_ports;
nports = gen->gen_nports;
/* Initalize generator */
if (!gen->gen_current) {
if (gen->gen_flags & FLAGS_USERANDOM)
rndsboxinit(gen->gen_seed);
gen->gen_current = gen->gen_start;
}
while (count) {
if (next_address(gen, &addr) == -1) {
generate_free(gen);
break;
}
DFPRINTF((stderr, "New address: %s\n",
addr_ntoa(&addr)));
/* Set up a new address for scanning */
memset(&args[i], 0, sizeof(struct argument));
args[i].addr = addr;
args[i].a_slot = slot;
args[i].a_scanner = ss_scanners[0];
args[i].a_scanneroff = 0;
args[i].a_seqnr = rand_uint32(ss_rand);
/*
* If we have a local port range from the generator
* use that. Otherwise, use the ports that have
* been supplied globally.
*/
if (ports != NULL) {
args[i].a_ports = ports;
args[i].a_nports = nports;
} else {
args[i].a_ports = ss_ports;
args[i].a_nports = ss_nports;
}
evtimer_set(&args[i].ev, ss_timeout, &args[i]);
slot->slot_ref++;
ss_nhosts++;
count--;
i++;
}
}
*pargs = args;
*nargs = i;
return (0);
}
int
address_from_offset(struct address_node *an, uint32_t offset,
struct addr *addr)
{
ip_addr_t start, end;
for (; an; an = TAILQ_NEXT(an, an_next)) {
*addr = an->an_start;
start = ntohl(an->an_start.addr_ip);
end = ntohl(an->an_end.addr_ip);
if (start + offset <= end)
break;
offset -= end - start + 1;
}
if (an == NULL)
return (-1);
addr->addr_ip = htonl(start + offset);
return (0);
}
/*
* get the next address, keep state.
*/
int
next_address(struct generate *gen, struct addr *addr)
{
struct addr ipv4addr, tmp;
uint32_t offset;
int done = 0, random;
/* Check if generator has been exhausted */
if (gen->gen_n >= gen->gen_max)
return (-1);
random = gen->gen_flags & FLAGS_USERANDOM;
do {
/* Get offset into address range */
if (random)
offset = rndgetaddr(gen->gen_bits,
gen->gen_current);
else
offset = gen->gen_current;
gen->gen_current += gen->gen_iterate;
if (address_from_offset(TAILQ_FIRST(&gen->gen_anqueue),
offset, &ipv4addr) == -1)
continue;
if (!random || rndexclude) {
tmp = exclude(ipv4addr, &excludequeue);
if (addr_cmp(&ipv4addr, &tmp)) {
if (random) {
if (gen->gen_flags & FLAGS_SUBTRACTEXCLUDE)
gen->gen_max--;
continue;
}
/* In linear mode, we can skip these */
offset = gen->gen_current;
offset += ntohl(tmp.addr_ip) - ntohl(ipv4addr.addr_ip);
if (offset < gen->gen_current) {
gen->gen_current = gen->gen_end;
break;
}
gen->gen_current = offset;
if (gen->gen_iterate == 1)
continue;
/* Adjust for splits */
offset /= gen->gen_iterate;
offset *= gen->gen_iterate;
offset += gen->gen_start;
if (offset < gen->gen_current)
offset += gen->gen_iterate;
if (offset < gen->gen_current) {
gen->gen_current = gen->gen_end;
break;
}
gen->gen_current = offset;
continue;
}
}
if (random) {
tmp = exclude(ipv4addr, &rndexclqueue);
if (addr_cmp(&ipv4addr, &tmp)) {
if (gen->gen_flags & FLAGS_SUBTRACTEXCLUDE)
gen->gen_max--;
continue;
}
}
/* We have an address */
done = 1;
} while ((gen->gen_current < gen->gen_end) &&
(gen->gen_n < gen->gen_max) && !done);
if (!done)
return (-1);
gen->gen_n += gen->gen_iterate;
*addr = ipv4addr;
return (0);
}
struct address_node *
address_node_get(char *line)
{
struct address_node *an;
/* Allocate an address node */
an = xmalloc(sizeof(struct address_node));
memset(an, 0, sizeof(struct address_node));
if (addr_pton(line, &an->an_start) == -1) {
fprintf(stderr, "Can not parse %s\n", line);
goto error;
}
/* Working around libdnet bug */
if (strcmp(line, "0.0.0.0/0") == 0)
an->an_start.addr_bits = 0;
an->an_bits = an->an_start.addr_bits;
addr_bcast(&an->an_start, &an->an_end);
an->an_start.addr_bits = IP_ADDR_BITS;
an->an_end.addr_bits = IP_ADDR_BITS;
return (an);
error:
free(an);
return (NULL);
}
/*
* Creates a generator from a command line
* [split(x/n)/][random(x,s)/][(]<address/mask> .... [)]
*/
int
generate_split(struct generate *gen, char **pline)
{
char *line, *end;
line = *pline;
if ((end = strstr(line, ")/")) == NULL ||
strchr(line, '/') < end) {
fprintf(stderr, "Split not terminated correctly: %s\n", line);
return (-1);
}
line = strsep(pline, "/");
/* Generate a random scan entry */
if (sscanf(line, "split(%d,%d)/",
&gen->gen_start, &gen->gen_iterate) != 2)
return (-1);
if (!gen->gen_start || gen->gen_start > gen->gen_iterate) {
fprintf(stderr, "Invalid start/iterate pair: %d/%d\n",
gen->gen_start, gen->gen_iterate);
return (-1);
}
/* Internally, we start counting at 0 */
gen->gen_start--;
return (0);
}
/*
* Creates a generator from a command line
* [split(x/n)/][random(x,s)/][(]<address/mask> .... [)]
*/
int
generate_random(struct generate *gen, char **pline)
{
int i;
char seed[31], *line, *end;
line = *pline;
if ((end = strstr(line, ")/")) == NULL ||
strchr(line, '/') < end) {
fprintf(stderr, "Random not terminated correctly: %s\n", line);
return (-1);
}
line = strsep(pline, "/");
/* Generate a random scan entry */
seed[0] = '\0';
if (sscanf(line, "random(%d,%30s)/", &gen->gen_max, seed) < 1)
return (-1);
/* Generate seed from string */
if (strlen(seed)) {
MD5_CTX ctx;
uint8_t digest[16];
uint32_t *tmp = (uint32_t *)digest;
MD5Init(&ctx);
MD5Update(&ctx, seed, strlen(seed));
MD5Final(digest, &ctx);
gen->gen_seed = 0;
for (i = 0; i < 4; i ++)
gen->gen_seed ^= *tmp++;
} else
gen->gen_seed = rand_uint32(ss_rand);
gen->gen_flags |= FLAGS_USERANDOM;
/* If the random numbers exhaust all possible addresses,
* we need to subtract those addresses from the count
* that can not be generated because they were excluded
*/
if (!gen->gen_max)
gen->gen_flags |= FLAGS_SUBTRACTEXCLUDE;
return (0);
}
int
generate(char *line)
{
struct generate *gen;
struct address_node *an;
uint32_t count, tmp;
char *p;
int bits, i, done;
gen = xmalloc(sizeof(struct generate));
memset(gen, 0, sizeof(struct generate));
TAILQ_INIT(&gen->gen_anqueue);
/* Insert in generator queue, on failure generate_free removes it */
TAILQ_INSERT_TAIL(&genqueue, gen, gen_next);
/* Check for port ranges */
p = strsep(&line, ":");
if (line != NULL) {
if (ports_parse(line,
&gen->gen_ports, &gen->gen_nports) == -1) {
fprintf(stderr, "Bad port range: %s\n", line);
goto fail;
}
}
line = p;
done = 0;
while (!done) {
done = 1;
if (strncmp(line, "random(", 7) == 0) {
if (gen->gen_flags & FLAGS_USERANDOM) {
fprintf(stderr,
"Random already specified: %s\n",
line);
goto fail;
}
if (generate_random(gen, &line) == -1)
goto fail;
done = 0;
} else if (strncmp(line, "split(", 6) == 0) {
if (gen->gen_iterate) {
fprintf(stderr,
"Split already specified: %s\n",
line);
goto fail;
}
if (generate_split(gen, &line) == -1)
goto fail;
done = 0;
}
}
/* If no special split is specified, always iterated by 1 */
if (!gen->gen_iterate)
gen->gen_iterate = 1;
if (line[0] == '(') {
char *end;
line++;
if ((end = strchr(line, ')')) == NULL) {
fprintf(stderr, "Missing ')' in line: %s\n", line);
goto fail;
}
*end = '\0';
}
while (line && (p = strsep(&line, " "))) {
if ((an = address_node_get(p)) == NULL)
goto fail;
TAILQ_INSERT_TAIL(&gen->gen_anqueue, an, an_next);
}
/* Try to find out the effective bit range */
count = 0;
for (an = TAILQ_FIRST(&gen->gen_anqueue); an;
an = TAILQ_NEXT(an, an_next)) {
bits = an->an_bits;
if (bits == 0) {
count = -1;
break;
}
if (count + (1 << (32 - bits)) < count) {
count = -1;
break;
}
count += 1 << (32 - bits);
}
/* Try to convert count into a network mask */
bits = 0;
tmp = count;
for (i = -1; tmp; tmp >>= 1, i++) {
if (tmp & 1)
bits++;
}
/* a count of 01100, results in bits = 29, but it should be 28 */
gen->gen_bits = 32 - i;
if (bits > 1)
gen->gen_bits--;
bits = gen->gen_bits;
if (gen->gen_flags & FLAGS_USERANDOM) {
if (bits == 0)
gen->gen_end = -1;
else
gen->gen_end = 1 << (32 - bits);
} else
gen->gen_end = count;
if (gen->gen_max == 0)
gen->gen_max = count;
return (0);
fail:
if (gen)
generate_free(gen);
return (-1);
}
int
probe_haswork(void)
{
return (TAILQ_FIRST(&genqueue) || entries || !synlist_empty());
}
void
probe_send(int fd, short what, void *parameter)
{
struct event *ev = parameter;
struct timeval tv;
int ntotal, nprobes, nsent;
extern int scan_nhosts;
/* Schedule the next probe */
if (probe_haswork()) {
timerclear(&tv);
tv.tv_usec = 1000000L / syn_rate;
evtimer_add(ev, &tv);
} else if (TAILQ_FIRST(&readyqueue) == NULL && !scan_nhosts) {
struct timeval tv;
/* Terminate the event loop */
timerclear(&tv);
tv.tv_sec = 2;
event_loopexit(&tv);
}
gettimeofday(&tv, NULL);
timersub(&tv, &syn_start, &tv);
ntotal = tv.tv_sec * syn_rate + (tv.tv_usec * syn_rate) / 1000000L;
nprobes = ntotal - syn_nsent;
nsent = 0;
while ((TAILQ_FIRST(&genqueue) || entries) && nsent < nprobes) {
/* Create new entries, if we need them */
if (!entries && TAILQ_FIRST(&genqueue)) {
if (populate(&args, &entries) == -1) {
/*
* We fail if we have used up our memory.
* We also need to consume our number of
* sent packets.
*/
syn_nsent = ntotal;
entries = 0;
break;
}
continue;
}
entries--;
args[entries].a_retry = 0;
if (TAILQ_FIRST(&socks_host) == NULL) {
synlist_insert(&args[entries]);