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
|
/*
* ip.c
*
* Copyright (c) 2000 Dug Song <dugsong@monkey.org>
*
* $Id: ip.c 547 2005-01-25 21:30:40Z dugsong $
*/
#include "config.h"
#include <netinet/in.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "dnet.h"
struct ip_handle {
int fd;
};
ip_t *
ip_open(void)
{
ip_t *i;
int n;
socklen_t len;
if ((i = calloc(1, sizeof(*i))) == NULL)
return (NULL);
if ((i->fd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0)
return (ip_close(i));
#ifdef IP_HDRINCL
n = 1;
if (setsockopt(i->fd, IPPROTO_IP, IP_HDRINCL, &n, sizeof(n)) < 0)
return (ip_close(i));
#endif
#ifdef SO_SNDBUF
len = sizeof(n);
if (getsockopt(i->fd, SOL_SOCKET, SO_SNDBUF, &n, &len) < 0)
return (ip_close(i));
for (n += 128; n < 1048576; n += 128) {
if (setsockopt(i->fd, SOL_SOCKET, SO_SNDBUF, &n, len) < 0) {
if (errno == ENOBUFS)
break;
return (ip_close(i));
}
}
#endif
#ifdef SO_BROADCAST
n = 1;
if (setsockopt(i->fd, SOL_SOCKET, SO_BROADCAST, &n, sizeof(n)) < 0)
return (ip_close(i));
#endif
return (i);
}
ssize_t
ip_send(ip_t *i, const void *buf, size_t len)
{
struct ip_hdr *ip;
struct sockaddr_in sin;
ip = (struct ip_hdr *)buf;
memset(&sin, 0, sizeof(sin));
#ifdef HAVE_SOCKADDR_SA_LEN
sin.sin_len = sizeof(sin);
#endif
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = ip->ip_dst;
#ifdef HAVE_RAWIP_HOST_OFFLEN
ip->ip_len = ntohs(ip->ip_len);
ip->ip_off = ntohs(ip->ip_off);
len = sendto(i->fd, buf, len, 0,
(struct sockaddr *)&sin, sizeof(sin));
ip->ip_len = htons(ip->ip_len);
ip->ip_off = htons(ip->ip_off);
return (len);
#else
return (sendto(i->fd, buf, len, 0,
(struct sockaddr *)&sin, sizeof(sin)));
#endif
}
ip_t *
ip_close(ip_t *i)
{
if (i != NULL) {
if (i->fd >= 0)
close(i->fd);
free(i);
}
return (NULL);
}
|