-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathnet.c
179 lines (158 loc) · 4.72 KB
/
net.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
/*-
* Copyright (c) 1997 Dave Richards <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* and exceptions 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 authors may not be used to endorse or promote products
* derived from this software without specific prior written permission.
* 4. The code can not be used by Gary Random, Random Communications, Inc.,
* the employees of Random Communications, Inc. or its subsidiaries,
* including Defiance MUD, without prior written permission from the
* authors.
*
* THIS SOFTWARE IS PROVIDED ``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 AUTHORS 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 <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include "config.h"
#include "simulate.h"
#include "lint.h"
#include "nqueue.h"
#ifndef IPTOS_LOWDELAY
#define IPTOS_LOWDELAY 0x10
#endif
/*
* Enable non-blocking I/O on a socket.
*/
void
enable_nbio(int fd)
{
if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1)
fatal("enable_nbio: fcntl(F_SETFL, O_NONBLOCK) errno = %d.\n",
errno);
}
/*
* Enable keep-alive on a socket.
*/
void
enable_keepalive(int s)
{
int keepalive = 1;
if (setsockopt(s, SOL_SOCKET, SO_KEEPALIVE, (char *)&keepalive, sizeof (keepalive)) == -1)
fatal("enable_keepalive: setsockopt() errno = %d.\n", errno);
}
/*
* Enable address re-use on a socket.
*/
void
enable_reuseaddr(int s)
{
int reuse = 1;
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&reuse, sizeof (reuse)) == -1)
fatal("enable_reuseaddr: setsockopt() errno = %d.\n", errno);
}
/*
* Enable in-line out-of-band data.
*/
void
enable_oobinline(int s)
{
int oobinline = 1;
if (setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (char *)&oobinline, sizeof (oobinline)) == -1)
fatal("enable_oobinline: setsockopt() errno = %d.\n", errno);
}
/*
* Enable v6only on ipv6 sockets.
*/
void
enable_v6only(int s)
{
int on = 1;
if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, (char *)&on, sizeof (on)) == -1)
fatal("enable_v6only: setsockopt() errno = %d.\n", errno);
}
/*
* Enable Low-Delay IP Type-of-service.
*/
void
enable_lowdelay(int s)
{
#if defined(IPPROTO_IP) && defined(IP_TOS)
int tos = IPTOS_LOWDELAY;
setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof (tos));
// This seems to be causing crashes regularly. If this property isn't set,
// then the socket will use its default anyway. In my humble opinion, this
// should not crash the mud so regularly. Outcommented until a proper fix
// can be installed. Mercade.
// if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof (tos)) == -1)
// fatal("enable_lowdelay: setsockopt() errno = %d.\n", errno);
#endif
}
/*
* Enable TCP_NODELAY / Disable Nagle
*/
void
enable_nodelay(int s)
{
int nodelay = 1;
if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (char *)&nodelay, sizeof (nodelay)) == -1)
fatal("enable_nodelay: setsockopt() errno = %d.\n", errno);
}
/*
* Determine whether we've reached the urgent data pointer.
*/
int
at_mark(int fd)
{
int atmark = 0;
if (ioctl(fd, SIOCATMARK, &atmark) != -1)
{
if (atmark)
return 1;
}
return 0;
}
/*
* Set the kernel receive buffer size for a socket
*/
void
set_rcvsize(int s, int size)
{
#ifdef SO_RCVBUF
(void)setsockopt(s, SOL_SOCKET, SO_RCVBUF, (void *)&size, sizeof(size));
#endif
}
/*
* Set the kernel transmit buffer size for a socket
*/
void
set_sndsize(int s, int size)
{
#ifdef SO_SNDBUF
(void)setsockopt(s, SOL_SOCKET, SO_SNDBUF, (void *)&size, sizeof(size));
#endif
}