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
|
/**
** \file echoserver.cpp
** \date 2006-10-02
** \author grymse@alhem.net
**/
/*
Copyright (C) 2006 Anders Hedstrom
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef _WIN32
#pragma warning(disable:4786)
#endif
#include <StdoutLog.h>
#include <ListenSocket.h>
#include <SocketHandler.h>
#include <TcpSocket.h>
#ifndef _WIN32
#include <signal.h>
#endif
#include <HttpDebugSocket.h>
#ifdef ENABLE_DETACH
static bool g_b_detach = false;
#endif
#ifdef HAVE_OPENSSL
static bool g_b_ssl = false;
#endif
static std::string gFilename = "server.pem";
static std::string gPw;
static bool quit = false;
static bool g_b_http = false;
static bool g_b_nobuf = false;
#ifdef ENABLE_DETACH
static bool g_b_detach2 = false;
#endif
#define DEB(x)
class MySocket : public TcpSocket
{
public:
MySocket(ISocketHandler& h) : TcpSocket(h) {
SetLineProtocol();
#ifdef HAVE_OPENSSL
if (g_b_ssl)
EnableSSL();
#endif
if (g_b_nobuf)
DisableInputBuffer();
}
~MySocket() {
}
void OnAccept() {
#ifdef ENABLE_DETACH
if (g_b_detach)
{
if (!Detach())
fprintf(stderr, "\nDetach failed\n");
}
#endif
}
void OnRawData(const char *buf,size_t len) {
if (g_b_nobuf)
{
SendBuf(buf, len);
}
}
void OnLine(const std::string& line) {
#ifdef ENABLE_DETACH
if (g_b_detach2 && !IsDetach())
{
m_line = line;
if (!Detach())
{
fprintf(stderr, "\nDetach failed\n");
}
return;
}
DEB(printf("fd %d OnLine; %s\n", GetSocket(), Handler().IsSlave() ? "slave" : "master");)
#endif
Send(line + "\n");
}
void OnDetached() {
DEB(printf("fd %d OnDetached; %s\n", GetSocket(), Handler().IsSlave() ? "slave" : "master");)
// fprintf(stderr, "-");
// fflush(stderr);
#ifdef ENABLE_DETACH
if (g_b_detach2)
{
Send(m_line + "\n");
}
#endif
}
#ifdef HAVE_OPENSSL
void InitSSLServer() {
InitializeContext("echoserver", gFilename, gPw, SSLv23_method());
}
#endif
private:
std::string m_line;
};
#ifndef _WIN32
void sigint(int)
{
quit = true;
}
#endif
int main(int argc,char *argv[])
{
#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
signal(SIGINT, sigint);
#endif
port_t port = 2222;
bool enableLog = false;
int queue = 20;
for (int i = 1; i < argc; i++)
{
#ifdef ENABLE_DETACH
if (!strcmp(argv[i], "-detach"))
g_b_detach = true;
if (!strcmp(argv[i], "-detach2"))
g_b_detach2 = true;
#endif
#ifdef HAVE_OPENSSL
if (!strcmp(argv[i], "-ssl"))
g_b_ssl = true;
if (!strcmp(argv[i], "-file") && i < argc - 1)
gFilename = argv[++i];
#endif
if (!strcmp(argv[i], "-port") && i < argc - 1)
port = atoi(argv[++i]);
if (!strcmp(argv[i], "-pw") && i < argc - 1)
gPw = argv[++i];
if (!strcmp(argv[i], "-log"))
enableLog = true;
if (!strcmp(argv[i], "-queue") && i < argc - 1)
queue = atoi(argv[++i]);
if (!strcmp(argv[i], "-http"))
g_b_http = true;
if (!strcmp(argv[i], "-nobuf"))
g_b_nobuf = true;
if (!strcmp(argv[i], "-h"))
{
printf("Usage: %s [ options ] [-ssl]\n", *argv);
printf(" -port nn listen on port nn\n");
#ifdef ENABLE_DETACH
printf(" -detach detach each socket on accept\n");
printf(" -detach2 detach when line received\n");
#endif
#ifdef HAVE_OPENSSL
printf(" -ssl run as ssl server, .pem file needed\n");
printf(" -file xx .pem filename, default is \"server.pem\"\n");
#endif
printf(" -pw xx private key password\n");
printf(" -log enable sockethandler debug log\n");
printf(" -queue nn listen queue size (default 20)\n");
printf(" -http enable http server with dummy response\n");
printf(" -nobuf echo raw data\n");
exit(-1);
}
}
if (g_b_http && g_b_nobuf)
{
printf("Nobuf and Http does not work together\n");
exit(-1);
}
StdoutLog *log = enableLog ? new StdoutLog() : NULL;
SocketHandler h(log);
ListenSocket<MySocket> l(h);
ListenSocket<HttpDebugSocket> l2(h);
if (!g_b_http)
{
if (l.Bind(port, queue))
{
fprintf(stderr, "Bind to port %d failed\n", port);
return -1;
}
fprintf(stderr, "Listening on port %d\n", port);
h.Add(&l);
}
else
{
printf("Enable HttpDebugSocket\n");
if (l2.Bind(port, queue))
{
fprintf(stderr, "Bind to port %d failed\n", port);
return -1;
}
fprintf(stderr, "Listening on port %d\n", port);
h.Add(&l2);
}
#ifdef ENABLE_DETACH
if (g_b_detach)
fprintf(stderr, "Will detach each incoming socket\n");
#endif
#ifdef HAVE_OPENSSL
if (g_b_ssl)
fprintf(stderr, "Using SSL\n");
#endif
while (!quit)
{
h.Select(1, 0);
}
fprintf(stderr, "\nExiting...\n");
if (log)
{
// delete log;
}
return 0;
}
|