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
|
/*
* socket.c -- socket library functions
*
* For license terms, see the file COPYING in this directory.
*/
#include <config.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
#endif
#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif
#if defined(HAVE_STDARG_H)
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "socket.h"
#ifndef INADDR_NONE
#ifdef INADDR_BROADCAST
#define INADDR_NONE INADDR_BROADCAST
#else
#define INADDR_NONE -1
#endif
#endif
/*
* There are, in effect, two different implementations here. One
* uses read(2) and write(2) directly with no buffering, the other
* uses stdio with line buffering (for better throughput). Both
* are known to work under Linux.
*/
/* #define USE_STDIO */
#ifdef USE_STDIO
/*
* Size of buffer for internal buffering read function
* don't increase beyond the maximum atomic read/write size for
* your sockets, or you'll take a potentially huge performance hit
*/
#define INTERNAL_BUFSIZE 2048
#endif /* USE_STDIO */
FILE *SockOpen(char *host, int clientPort)
{
int sock;
unsigned long inaddr;
struct sockaddr_in ad;
struct hostent *hp;
#ifdef USE_STDIO
FILE *fp;
#endif /* USE_STDIO */
memset(&ad, 0, sizeof(ad));
ad.sin_family = AF_INET;
inaddr = inet_addr(host);
if (inaddr != INADDR_NONE)
memcpy(&ad.sin_addr, &inaddr, sizeof(inaddr));
else
{
hp = gethostbyname(host);
if (hp == NULL)
return (FILE *)NULL;
memcpy(&ad.sin_addr, hp->h_addr, hp->h_length);
}
ad.sin_port = htons(clientPort);
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0)
return (FILE *)NULL;
if (connect(sock, (struct sockaddr *) &ad, sizeof(ad)) < 0)
{
close(sock);
return (FILE *)NULL;
}
#ifndef USE_STDIO
return fdopen(sock, "r+");
#else
fp = fdopen(sock, "r+");
setvbuf(fp, NULL, _IOLBF, INTERNAL_BUFSIZE);
return(fp);
#endif /* USE_STDIO */
}
#if defined(HAVE_STDARG_H)
int SockPrintf(FILE *sockfp, char* format, ...)
{
#else
int SockPrintf(sockfp,format,va_alist)
FILE *sockfp;
char *format;
va_dcl {
#endif
va_list ap;
char buf[8192];
#if defined(HAVE_STDARG_H)
va_start(ap, format) ;
#else
va_start(ap);
#endif
vsprintf(buf, format, ap);
va_end(ap);
return SockWrite(buf, 1, strlen(buf), sockfp);
}
#ifndef USE_STDIO
int SockWrite(char *buf, int size, int len, FILE *sockfp)
{
int n, wrlen = 0;
len *= size;
while (len)
{
n = write(fileno(sockfp), buf, len);
if (n <= 0)
return -1;
len -= n;
wrlen += n;
buf += n;
}
return wrlen;
}
char *SockGets(char *buf, int len, FILE *sockfp)
{
int rdlen = 0;
char *cp = buf;
while (--len)
{
if (read(fileno(sockfp), cp, 1) != 1)
return((char *)NULL);
else
rdlen++;
if (*cp++ == '\n')
break;
}
*cp = 0;
return buf;
}
#else
int SockWrite(char *buf, int size, int len, FILE *sockfp)
{
return(fwrite(buf, size, len, sockfp));
}
char *SockGets(char *buf, int len, FILE *sockfp)
{
return(fgets(buf, len, sockfp));
}
#endif
#ifdef MAIN
/*
* Use the chargen service to test buffering directly.
* You may have to uncomment the `chargen' service description in your
* inetd.conf (and then SIGHUP inetd) for this to work.
*/
main()
{
FILE *fp = SockOpen("localhost", 19);
char buf[80];
while (SockGets(buf, sizeof(buf)-1, fp))
SockWrite(buf, 1, strlen(buf), stdout);
}
#endif /* MAIN */
/* socket.c ends here */
|