-
Notifications
You must be signed in to change notification settings - Fork 333
/
sendudp.c
81 lines (65 loc) · 1.94 KB
/
sendudp.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
/*
* $smu-mark$
* $name: sendudp.c$
* $author: Salvatore Sanfilippo <[email protected]>$
* $copyright: Copyright (C) 1999 by Salvatore Sanfilippo$
* $license: This software is under GPL version 2 of license$
* $date: Fri Nov 5 11:55:49 MET 1999$
* $rev: 8$
*/
/* $Id: sendudp.c,v 1.2 2003/09/01 00:22:06 antirez Exp $ */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <unistd.h>
#include <signal.h>
#include "hping2.h"
#include "globals.h"
/* void hexdumper(unsigned char *packet, int size); */
void send_udp(void)
{
int packet_size;
char *packet, *data;
struct myudphdr *udp;
struct pseudohdr *pseudoheader;
packet_size = UDPHDR_SIZE + data_size;
packet = malloc(PSEUDOHDR_SIZE + packet_size);
if (packet == NULL) {
perror("[send_udphdr] malloc()");
return;
}
pseudoheader = (struct pseudohdr*) packet;
udp = (struct myudphdr*) (packet+PSEUDOHDR_SIZE);
data = (char*) (packet+PSEUDOHDR_SIZE+UDPHDR_SIZE);
memset(packet, 0, PSEUDOHDR_SIZE+packet_size);
/* udp pseudo header */
memcpy(&pseudoheader->saddr, &local.sin_addr.s_addr, 4);
memcpy(&pseudoheader->daddr, &remote.sin_addr.s_addr, 4);
pseudoheader->protocol = 17; /* udp */
pseudoheader->lenght = htons(packet_size);
/* udp header */
udp->uh_dport = htons(dst_port);
udp->uh_sport = htons(src_port);
udp->uh_ulen = htons(packet_size);
/* data */
data_handler(data, data_size);
/* compute checksum */
#ifdef STUPID_SOLARIS_CHECKSUM_BUG
udp->uh_sum = packet_size;
#else
udp->uh_sum = cksum((__u16*) packet, PSEUDOHDR_SIZE +
packet_size);
#endif
/* adds this pkt in delaytable */
delaytable_add(sequence, src_port, time(NULL), get_usec(), S_SENT);
/* send packet */
send_ip_handler(packet+PSEUDOHDR_SIZE, packet_size);
free(packet);
sequence++; /* next sequence number */
if (!opt_keepstill)
src_port = (sequence + initsport) % 65536;
if (opt_force_incdport)
dst_port++;
}