quickfix_ruby_ud 2.0.7-x86_64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/quickfix/Acceptor.cpp +257 -0
- data/ext/quickfix/Acceptor.h +127 -0
- data/ext/quickfix/Allocator.h +9 -0
- data/ext/quickfix/Application.h +137 -0
- data/ext/quickfix/DOMDocument.h +70 -0
- data/ext/quickfix/DataDictionary.cpp +679 -0
- data/ext/quickfix/DataDictionary.h +607 -0
- data/ext/quickfix/DataDictionaryProvider.cpp +66 -0
- data/ext/quickfix/DataDictionaryProvider.h +67 -0
- data/ext/quickfix/DatabaseConnectionID.h +98 -0
- data/ext/quickfix/DatabaseConnectionPool.h +84 -0
- data/ext/quickfix/Dictionary.cpp +157 -0
- data/ext/quickfix/Dictionary.h +89 -0
- data/ext/quickfix/Event.h +89 -0
- data/ext/quickfix/Except.h +39 -0
- data/ext/quickfix/Exceptions.h +257 -0
- data/ext/quickfix/Field.h +654 -0
- data/ext/quickfix/FieldConvertors.cpp +86 -0
- data/ext/quickfix/FieldConvertors.h +800 -0
- data/ext/quickfix/FieldMap.cpp +254 -0
- data/ext/quickfix/FieldMap.h +327 -0
- data/ext/quickfix/FieldNumbers.h +44 -0
- data/ext/quickfix/FieldTypes.cpp +62 -0
- data/ext/quickfix/FieldTypes.h +817 -0
- data/ext/quickfix/Fields.h +30 -0
- data/ext/quickfix/FileLog.cpp +176 -0
- data/ext/quickfix/FileLog.h +110 -0
- data/ext/quickfix/FileStore.cpp +369 -0
- data/ext/quickfix/FileStore.h +131 -0
- data/ext/quickfix/FixCommonFields.h +13 -0
- data/ext/quickfix/FixFieldNumbers.h +6132 -0
- data/ext/quickfix/FixFields.h +6133 -0
- data/ext/quickfix/FixValues.h +5790 -0
- data/ext/quickfix/Group.cpp +44 -0
- data/ext/quickfix/Group.h +78 -0
- data/ext/quickfix/HostDetailsProvider.cpp +79 -0
- data/ext/quickfix/HostDetailsProvider.h +44 -0
- data/ext/quickfix/HtmlBuilder.h +178 -0
- data/ext/quickfix/HttpConnection.cpp +914 -0
- data/ext/quickfix/HttpConnection.h +74 -0
- data/ext/quickfix/HttpMessage.cpp +229 -0
- data/ext/quickfix/HttpMessage.h +112 -0
- data/ext/quickfix/HttpParser.cpp +49 -0
- data/ext/quickfix/HttpParser.h +49 -0
- data/ext/quickfix/HttpServer.cpp +152 -0
- data/ext/quickfix/HttpServer.h +76 -0
- data/ext/quickfix/Initiator.cpp +310 -0
- data/ext/quickfix/Initiator.h +151 -0
- data/ext/quickfix/Log.cpp +71 -0
- data/ext/quickfix/Log.h +254 -0
- data/ext/quickfix/Message.cpp +617 -0
- data/ext/quickfix/Message.h +419 -0
- data/ext/quickfix/MessageCracker.h +171 -0
- data/ext/quickfix/MessageSorters.cpp +101 -0
- data/ext/quickfix/MessageSorters.h +185 -0
- data/ext/quickfix/MessageStore.cpp +182 -0
- data/ext/quickfix/MessageStore.h +164 -0
- data/ext/quickfix/Mutex.h +120 -0
- data/ext/quickfix/MySQLConnection.h +187 -0
- data/ext/quickfix/MySQLLog.cpp +262 -0
- data/ext/quickfix/MySQLLog.h +158 -0
- data/ext/quickfix/MySQLStore.cpp +323 -0
- data/ext/quickfix/MySQLStore.h +161 -0
- data/ext/quickfix/MySQLStubs.h +203 -0
- data/ext/quickfix/NullStore.cpp +40 -0
- data/ext/quickfix/NullStore.h +89 -0
- data/ext/quickfix/OdbcConnection.h +241 -0
- data/ext/quickfix/OdbcLog.cpp +230 -0
- data/ext/quickfix/OdbcLog.h +109 -0
- data/ext/quickfix/OdbcStore.cpp +313 -0
- data/ext/quickfix/OdbcStore.h +124 -0
- data/ext/quickfix/PUGIXML_DOMDocument.cpp +112 -0
- data/ext/quickfix/PUGIXML_DOMDocument.h +81 -0
- data/ext/quickfix/Parser.cpp +111 -0
- data/ext/quickfix/Parser.h +50 -0
- data/ext/quickfix/PostgreSQLConnection.h +163 -0
- data/ext/quickfix/PostgreSQLLog.cpp +263 -0
- data/ext/quickfix/PostgreSQLLog.h +157 -0
- data/ext/quickfix/PostgreSQLStore.cpp +327 -0
- data/ext/quickfix/PostgreSQLStore.h +160 -0
- data/ext/quickfix/PostgreSQLStubs.h +203 -0
- data/ext/quickfix/Queue.h +66 -0
- data/ext/quickfix/QuickfixRuby.cpp +131900 -0
- data/ext/quickfix/QuickfixRuby.h +56 -0
- data/ext/quickfix/Responder.h +41 -0
- data/ext/quickfix/SSLSocketAcceptor.cpp +409 -0
- data/ext/quickfix/SSLSocketAcceptor.h +186 -0
- data/ext/quickfix/SSLSocketConnection.cpp +434 -0
- data/ext/quickfix/SSLSocketConnection.h +221 -0
- data/ext/quickfix/SSLSocketInitiator.cpp +558 -0
- data/ext/quickfix/SSLSocketInitiator.h +203 -0
- data/ext/quickfix/SSLStubs.h +129 -0
- data/ext/quickfix/Session.cpp +1437 -0
- data/ext/quickfix/Session.h +343 -0
- data/ext/quickfix/SessionFactory.cpp +314 -0
- data/ext/quickfix/SessionFactory.h +84 -0
- data/ext/quickfix/SessionID.h +136 -0
- data/ext/quickfix/SessionSettings.cpp +165 -0
- data/ext/quickfix/SessionSettings.h +283 -0
- data/ext/quickfix/SessionState.h +260 -0
- data/ext/quickfix/Settings.cpp +160 -0
- data/ext/quickfix/Settings.h +56 -0
- data/ext/quickfix/SharedArray.h +274 -0
- data/ext/quickfix/SocketAcceptor.cpp +216 -0
- data/ext/quickfix/SocketAcceptor.h +77 -0
- data/ext/quickfix/SocketConnection.cpp +256 -0
- data/ext/quickfix/SocketConnection.h +102 -0
- data/ext/quickfix/SocketConnector.cpp +112 -0
- data/ext/quickfix/SocketConnector.h +76 -0
- data/ext/quickfix/SocketInitiator.cpp +241 -0
- data/ext/quickfix/SocketInitiator.h +76 -0
- data/ext/quickfix/SocketMonitor.h +26 -0
- data/ext/quickfix/SocketMonitor_UNIX.cpp +238 -0
- data/ext/quickfix/SocketMonitor_UNIX.h +101 -0
- data/ext/quickfix/SocketMonitor_WIN32.cpp +248 -0
- data/ext/quickfix/SocketMonitor_WIN32.h +99 -0
- data/ext/quickfix/SocketServer.cpp +163 -0
- data/ext/quickfix/SocketServer.h +100 -0
- data/ext/quickfix/ThreadedSSLSocketAcceptor.cpp +436 -0
- data/ext/quickfix/ThreadedSSLSocketAcceptor.h +209 -0
- data/ext/quickfix/ThreadedSSLSocketConnection.cpp +364 -0
- data/ext/quickfix/ThreadedSSLSocketConnection.h +191 -0
- data/ext/quickfix/ThreadedSSLSocketInitiator.cpp +434 -0
- data/ext/quickfix/ThreadedSSLSocketInitiator.h +193 -0
- data/ext/quickfix/ThreadedSocketAcceptor.cpp +242 -0
- data/ext/quickfix/ThreadedSocketAcceptor.h +95 -0
- data/ext/quickfix/ThreadedSocketConnection.cpp +227 -0
- data/ext/quickfix/ThreadedSocketConnection.h +89 -0
- data/ext/quickfix/ThreadedSocketInitiator.cpp +238 -0
- data/ext/quickfix/ThreadedSocketInitiator.h +78 -0
- data/ext/quickfix/TimeRange.cpp +227 -0
- data/ext/quickfix/TimeRange.h +215 -0
- data/ext/quickfix/Utility.cpp +639 -0
- data/ext/quickfix/Utility.h +255 -0
- data/ext/quickfix/UtilitySSL.cpp +1612 -0
- data/ext/quickfix/UtilitySSL.h +274 -0
- data/ext/quickfix/Values.h +63 -0
- data/ext/quickfix/config-all.h +10 -0
- data/ext/quickfix/config.h +10 -0
- data/ext/quickfix/config_unix.h +178 -0
- data/ext/quickfix/config_windows.h +0 -0
- data/ext/quickfix/dirent_windows.h +838 -0
- data/ext/quickfix/double-conversion/bignum-dtoa.cc +641 -0
- data/ext/quickfix/double-conversion/bignum-dtoa.h +84 -0
- data/ext/quickfix/double-conversion/bignum.cc +766 -0
- data/ext/quickfix/double-conversion/bignum.h +144 -0
- data/ext/quickfix/double-conversion/cached-powers.cc +176 -0
- data/ext/quickfix/double-conversion/cached-powers.h +64 -0
- data/ext/quickfix/double-conversion/diy-fp.cc +57 -0
- data/ext/quickfix/double-conversion/diy-fp.h +118 -0
- data/ext/quickfix/double-conversion/double-conversion.cc +994 -0
- data/ext/quickfix/double-conversion/double-conversion.h +543 -0
- data/ext/quickfix/double-conversion/fast-dtoa.cc +665 -0
- data/ext/quickfix/double-conversion/fast-dtoa.h +88 -0
- data/ext/quickfix/double-conversion/fixed-dtoa.cc +404 -0
- data/ext/quickfix/double-conversion/fixed-dtoa.h +56 -0
- data/ext/quickfix/double-conversion/ieee.h +402 -0
- data/ext/quickfix/double-conversion/strtod.cc +557 -0
- data/ext/quickfix/double-conversion/strtod.h +45 -0
- data/ext/quickfix/double-conversion/utils.h +374 -0
- data/ext/quickfix/extconf.rb +76 -0
- data/ext/quickfix/index.h +37 -0
- data/ext/quickfix/pugiconfig.hpp +77 -0
- data/ext/quickfix/pugixml.cpp +13237 -0
- data/ext/quickfix/pugixml.hpp +1516 -0
- data/ext/quickfix/scope_guard.hpp +215 -0
- data/ext/quickfix/stdint_msvc.h +254 -0
- data/ext/quickfix/strptime.h +7 -0
- data/lib/2.4/quickfix.so +0 -0
- data/lib/2.5/quickfix.so +0 -0
- data/lib/2.6/quickfix.so +0 -0
- data/lib/2.7/quickfix.so +0 -0
- data/lib/3.0/quickfix.so +0 -0
- data/lib/3.1/quickfix.so +0 -0
- data/lib/3.2/quickfix.so +0 -0
- data/lib/3.3/quickfix.so +0 -0
- data/lib/3.4/quickfix.so +0 -0
- data/lib/quickfix40.rb +274 -0
- data/lib/quickfix41.rb +351 -0
- data/lib/quickfix42.rb +1184 -0
- data/lib/quickfix43.rb +3504 -0
- data/lib/quickfix44.rb +14040 -0
- data/lib/quickfix50.rb +20051 -0
- data/lib/quickfix50sp1.rb +23596 -0
- data/lib/quickfix50sp2.rb +412444 -0
- data/lib/quickfix_fields.rb +79393 -0
- data/lib/quickfix_ruby.rb +82 -0
- data/lib/quickfixt11.rb +65 -0
- data/spec/FIX40.xml +862 -0
- data/spec/FIX41.xml +1282 -0
- data/spec/FIX42.xml +2743 -0
- data/spec/FIX43.xml +4230 -0
- data/spec/FIX44.xml +6600 -0
- data/spec/FIX50.xml +8142 -0
- data/spec/FIX50SP1.xml +9506 -0
- data/spec/FIX50SP2.xml +26069 -0
- data/spec/FIXT11.xml +252 -0
- data/test/DataDictionaryTestCase.rb +268 -0
- data/test/DictionaryTestCase.rb +112 -0
- data/test/FieldBaseTestCase.rb +24 -0
- data/test/MessageStoreTestCase.rb +19 -0
- data/test/MessageTestCase.rb +368 -0
- data/test/SessionSettingsTestCase.rb +41 -0
- metadata +247 -0
@@ -0,0 +1,434 @@
|
|
1
|
+
/* ====================================================================
|
2
|
+
* Copyright (c) 1998-2006 Ralf S. Engelschall. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions
|
6
|
+
* are met:
|
7
|
+
*
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
*
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following
|
13
|
+
* disclaimer in the documentation and/or other materials
|
14
|
+
* provided with the distribution.
|
15
|
+
*
|
16
|
+
* 3. All advertising materials mentioning features or use of this
|
17
|
+
* software must display the following acknowledgment:
|
18
|
+
* "This product includes software developed by
|
19
|
+
* Ralf S. Engelschall <rse@engelschall.com> for use in the
|
20
|
+
* mod_ssl project (http://www.modssl.org/)."
|
21
|
+
*
|
22
|
+
* 4. The names "mod_ssl" must not be used to endorse or promote
|
23
|
+
* products derived from this software without prior written
|
24
|
+
* permission. For written permission, please contact
|
25
|
+
* rse@engelschall.com.
|
26
|
+
*
|
27
|
+
* 5. Products derived from this software may not be called "mod_ssl"
|
28
|
+
* nor may "mod_ssl" appear in their names without prior
|
29
|
+
* written permission of Ralf S. Engelschall.
|
30
|
+
*
|
31
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
32
|
+
* acknowledgment:
|
33
|
+
* "This product includes software developed by
|
34
|
+
* Ralf S. Engelschall <rse@engelschall.com> for use in the
|
35
|
+
* mod_ssl project (http://www.modssl.org/)."
|
36
|
+
*
|
37
|
+
* THIS SOFTWARE IS PROVIDED BY RALF S. ENGELSCHALL ``AS IS'' AND ANY
|
38
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
39
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
40
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RALF S. ENGELSCHALL OR
|
41
|
+
* HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
42
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
43
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
44
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
45
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
46
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
47
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
48
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
49
|
+
* ====================================================================
|
50
|
+
*/
|
51
|
+
|
52
|
+
/* ====================================================================
|
53
|
+
* Copyright (c) 1995-1999 Ben Laurie. All rights reserved.
|
54
|
+
*
|
55
|
+
* Redistribution and use in source and binary forms, with or without
|
56
|
+
* modification, are permitted provided that the following conditions
|
57
|
+
* are met:
|
58
|
+
*
|
59
|
+
* 1. Redistributions of source code must retain the above copyright
|
60
|
+
* notice, this list of conditions and the following disclaimer.
|
61
|
+
*
|
62
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
63
|
+
* notice, this list of conditions and the following disclaimer in
|
64
|
+
* the documentation and/or other materials provided with the
|
65
|
+
* distribution.
|
66
|
+
*
|
67
|
+
* 3. All advertising materials mentioning features or use of this
|
68
|
+
* software must display the following acknowledgment:
|
69
|
+
* "This product includes software developed by Ben Laurie
|
70
|
+
* for use in the Apache-SSL HTTP server project."
|
71
|
+
*
|
72
|
+
* 4. The name "Apache-SSL Server" must not be used to
|
73
|
+
* endorse or promote products derived from this software without
|
74
|
+
* prior written permission.
|
75
|
+
*
|
76
|
+
* 5. Redistributions of any form whatsoever must retain the following
|
77
|
+
* acknowledgment:
|
78
|
+
* "This product includes software developed by Ben Laurie
|
79
|
+
* for use in the Apache-SSL HTTP server project."
|
80
|
+
*
|
81
|
+
* THIS SOFTWARE IS PROVIDED BY BEN LAURIE ``AS IS'' AND ANY
|
82
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
83
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
84
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BEN LAURIE OR
|
85
|
+
* HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
86
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
87
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
88
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
89
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
90
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
91
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
92
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
93
|
+
* ====================================================================
|
94
|
+
*/
|
95
|
+
/****************************************************************************
|
96
|
+
** Copyright (c) 2001-2014
|
97
|
+
**
|
98
|
+
** This file is part of the QuickFIX FIX Engine
|
99
|
+
**
|
100
|
+
** This file may be distributed under the terms of the quickfixengine.org
|
101
|
+
** license as defined by quickfixengine.org and appearing in the file
|
102
|
+
** LICENSE included in the packaging of this file.
|
103
|
+
**
|
104
|
+
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
105
|
+
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
106
|
+
**
|
107
|
+
** See http://www.quickfixengine.org/LICENSE for licensing information.
|
108
|
+
**
|
109
|
+
** Contact ask@quickfixengine.org if any conditions of this licensing are
|
110
|
+
** not clear to you.
|
111
|
+
**
|
112
|
+
****************************************************************************/
|
113
|
+
|
114
|
+
#ifdef _MSC_VER
|
115
|
+
#include "stdafx.h"
|
116
|
+
#else
|
117
|
+
#include "config.h"
|
118
|
+
#endif
|
119
|
+
|
120
|
+
#if (HAVE_SSL > 0)
|
121
|
+
|
122
|
+
#include "Session.h"
|
123
|
+
#include "Settings.h"
|
124
|
+
#include "ThreadedSSLSocketInitiator.h"
|
125
|
+
#include "UtilitySSL.h"
|
126
|
+
|
127
|
+
namespace FIX {
|
128
|
+
|
129
|
+
int ThreadedSSLSocketInitiator::passwordHandleCB(char *buf, int bufsize, int verify, void *instance) {
|
130
|
+
return reinterpret_cast<ThreadedSSLSocketInitiator *>(instance)->passwordHandleCallback(buf, bufsize, verify);
|
131
|
+
}
|
132
|
+
|
133
|
+
ThreadedSSLSocketInitiator::ThreadedSSLSocketInitiator(
|
134
|
+
Application &application,
|
135
|
+
MessageStoreFactory &factory,
|
136
|
+
const SessionSettings &settings) EXCEPT(ConfigError)
|
137
|
+
: Initiator(application, factory, settings),
|
138
|
+
m_lastConnect(0),
|
139
|
+
m_reconnectInterval(30),
|
140
|
+
m_noDelay(false),
|
141
|
+
m_sendBufSize(0),
|
142
|
+
m_rcvBufSize(0),
|
143
|
+
m_sslInit(false),
|
144
|
+
m_ctx(0),
|
145
|
+
m_cert(0),
|
146
|
+
m_key(0) {
|
147
|
+
socket_init();
|
148
|
+
}
|
149
|
+
|
150
|
+
ThreadedSSLSocketInitiator::ThreadedSSLSocketInitiator(
|
151
|
+
Application &application,
|
152
|
+
MessageStoreFactory &factory,
|
153
|
+
const SessionSettings &settings,
|
154
|
+
LogFactory &logFactory) EXCEPT(ConfigError)
|
155
|
+
: Initiator(application, factory, settings, logFactory),
|
156
|
+
m_lastConnect(0),
|
157
|
+
m_reconnectInterval(30),
|
158
|
+
m_noDelay(false),
|
159
|
+
m_sendBufSize(0),
|
160
|
+
m_rcvBufSize(0),
|
161
|
+
m_sslInit(false),
|
162
|
+
m_ctx(0),
|
163
|
+
m_cert(0),
|
164
|
+
m_key(0) {
|
165
|
+
socket_init();
|
166
|
+
}
|
167
|
+
|
168
|
+
ThreadedSSLSocketInitiator::~ThreadedSSLSocketInitiator() {
|
169
|
+
if (m_sslInit) {
|
170
|
+
SSL_CTX_free(m_ctx);
|
171
|
+
m_ctx = 0;
|
172
|
+
ssl_term();
|
173
|
+
}
|
174
|
+
|
175
|
+
socket_term();
|
176
|
+
}
|
177
|
+
|
178
|
+
void ThreadedSSLSocketInitiator::onConfigure(const SessionSettings &s) EXCEPT(ConfigError) {
|
179
|
+
const Dictionary &dict = s.get();
|
180
|
+
|
181
|
+
if (dict.has(RECONNECT_INTERVAL)) // ReconnectInterval in [DEFAULT]
|
182
|
+
{
|
183
|
+
m_reconnectInterval = dict.getInt(RECONNECT_INTERVAL);
|
184
|
+
}
|
185
|
+
if (dict.has(SOCKET_NODELAY)) {
|
186
|
+
m_noDelay = dict.getBool(SOCKET_NODELAY);
|
187
|
+
}
|
188
|
+
if (dict.has(SOCKET_SEND_BUFFER_SIZE)) {
|
189
|
+
m_sendBufSize = dict.getInt(SOCKET_SEND_BUFFER_SIZE);
|
190
|
+
}
|
191
|
+
if (dict.has(SOCKET_RECEIVE_BUFFER_SIZE)) {
|
192
|
+
m_rcvBufSize = dict.getInt(SOCKET_RECEIVE_BUFFER_SIZE);
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
void ThreadedSSLSocketInitiator::onInitialize(const SessionSettings &s) EXCEPT(RuntimeError) {
|
197
|
+
if (m_sslInit) {
|
198
|
+
return;
|
199
|
+
}
|
200
|
+
|
201
|
+
ssl_init();
|
202
|
+
|
203
|
+
std::string errStr;
|
204
|
+
|
205
|
+
/* set up the application context */
|
206
|
+
if ((m_ctx = createSSLContext(false, m_settings, errStr)) == 0) {
|
207
|
+
throw RuntimeError(errStr);
|
208
|
+
}
|
209
|
+
|
210
|
+
if (m_cert && m_key) {
|
211
|
+
if (SSL_CTX_use_certificate(m_ctx, m_cert) < 1) {
|
212
|
+
ssl_term();
|
213
|
+
throw RuntimeError("Failed to set certificate");
|
214
|
+
}
|
215
|
+
|
216
|
+
if (SSL_CTX_use_RSAPrivateKey(m_ctx, m_key) <= 0) {
|
217
|
+
ssl_term();
|
218
|
+
throw RuntimeError("Failed to set key");
|
219
|
+
}
|
220
|
+
} else if (!loadSSLCert(
|
221
|
+
m_ctx,
|
222
|
+
false,
|
223
|
+
m_settings,
|
224
|
+
getLog(),
|
225
|
+
ThreadedSSLSocketInitiator::passwordHandleCB,
|
226
|
+
this,
|
227
|
+
errStr)) {
|
228
|
+
ssl_term();
|
229
|
+
throw RuntimeError(errStr);
|
230
|
+
}
|
231
|
+
|
232
|
+
int verifyLevel;
|
233
|
+
if (!loadCAInfo(m_ctx, false, m_settings, getLog(), errStr, verifyLevel)) {
|
234
|
+
ssl_term();
|
235
|
+
throw RuntimeError(errStr);
|
236
|
+
}
|
237
|
+
|
238
|
+
m_sslInit = true;
|
239
|
+
}
|
240
|
+
|
241
|
+
void ThreadedSSLSocketInitiator::onStart() {
|
242
|
+
while (!isStopped()) {
|
243
|
+
time_t now;
|
244
|
+
::time(&now);
|
245
|
+
|
246
|
+
if ((now - m_lastConnect) >= m_reconnectInterval) {
|
247
|
+
Locker l(m_mutex);
|
248
|
+
connect();
|
249
|
+
m_lastConnect = now;
|
250
|
+
}
|
251
|
+
|
252
|
+
process_sleep(1);
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
bool ThreadedSSLSocketInitiator::onPoll() { return false; }
|
257
|
+
|
258
|
+
void ThreadedSSLSocketInitiator::onStop() {
|
259
|
+
SocketToThread threads;
|
260
|
+
SocketToThread::iterator i;
|
261
|
+
|
262
|
+
{
|
263
|
+
Locker l(m_mutex);
|
264
|
+
|
265
|
+
time_t start = 0;
|
266
|
+
time_t now = 0;
|
267
|
+
|
268
|
+
::time(&start);
|
269
|
+
while (isLoggedOn()) {
|
270
|
+
if (::time(&now) - 5 >= start) {
|
271
|
+
break;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
|
275
|
+
threads = m_threads;
|
276
|
+
m_threads.clear();
|
277
|
+
}
|
278
|
+
|
279
|
+
for (i = threads.begin(); i != threads.end(); ++i) {
|
280
|
+
ssl_socket_close(i->first.first, i->first.second);
|
281
|
+
}
|
282
|
+
|
283
|
+
for (i = threads.begin(); i != threads.end(); ++i) {
|
284
|
+
thread_join(i->second);
|
285
|
+
if (i->first.second != 0) {
|
286
|
+
SSL_free(i->first.second);
|
287
|
+
}
|
288
|
+
}
|
289
|
+
threads.clear();
|
290
|
+
}
|
291
|
+
|
292
|
+
void ThreadedSSLSocketInitiator::doConnect(const SessionID &s, const Dictionary &d) {
|
293
|
+
try {
|
294
|
+
Session *session = Session::lookupSession(s);
|
295
|
+
if (!session->isSessionTime(UtcTimeStamp::now())) {
|
296
|
+
return;
|
297
|
+
}
|
298
|
+
|
299
|
+
Log *log = session->getLog();
|
300
|
+
|
301
|
+
HostDetails host = m_hostDetailsProvider.getHost(s, d);
|
302
|
+
if (d.has(RECONNECT_INTERVAL)) // ReconnectInterval in [SESSION]
|
303
|
+
{
|
304
|
+
m_reconnectInterval = d.getInt(RECONNECT_INTERVAL);
|
305
|
+
}
|
306
|
+
|
307
|
+
socket_handle socket = socket_createConnector();
|
308
|
+
if (m_noDelay) {
|
309
|
+
socket_setsockopt(socket, TCP_NODELAY);
|
310
|
+
}
|
311
|
+
if (m_sendBufSize) {
|
312
|
+
socket_setsockopt(socket, SO_SNDBUF, m_sendBufSize);
|
313
|
+
}
|
314
|
+
if (m_rcvBufSize) {
|
315
|
+
socket_setsockopt(socket, SO_RCVBUF, m_rcvBufSize);
|
316
|
+
}
|
317
|
+
|
318
|
+
setPending(s);
|
319
|
+
log->onEvent(
|
320
|
+
"Connecting to " + host.address + " on port " + IntConvertor::convert((unsigned short)host.port)
|
321
|
+
+ " ReconnectInterval=" + IntConvertor::convert((int)m_reconnectInterval));
|
322
|
+
|
323
|
+
SSL *ssl = SSL_new(m_ctx);
|
324
|
+
if (ssl == 0) {
|
325
|
+
log->onEvent("Failed to create ssl object");
|
326
|
+
return;
|
327
|
+
}
|
328
|
+
SSL_clear(ssl);
|
329
|
+
BIO *sbio = BIO_new_socket(socket, BIO_CLOSE); // unfortunately OpenSSL uses int for socket handles
|
330
|
+
SSL_set_bio(ssl, sbio, sbio);
|
331
|
+
|
332
|
+
ThreadedSSLSocketConnection *pConnection
|
333
|
+
= new ThreadedSSLSocketConnection(s, socket, ssl, host.address, host.port, getLog());
|
334
|
+
|
335
|
+
ThreadPair *pair = new ThreadPair(this, pConnection);
|
336
|
+
|
337
|
+
{
|
338
|
+
Locker l(m_mutex);
|
339
|
+
thread_id thread;
|
340
|
+
if (thread_spawn(&socketThread, pair, thread)) {
|
341
|
+
addThread(SocketKey(socket, ssl), thread);
|
342
|
+
} else {
|
343
|
+
delete pair;
|
344
|
+
pConnection->disconnect();
|
345
|
+
delete pConnection;
|
346
|
+
SSL_free(ssl);
|
347
|
+
setDisconnected(s);
|
348
|
+
}
|
349
|
+
}
|
350
|
+
} catch (std::exception &) {}
|
351
|
+
}
|
352
|
+
|
353
|
+
void ThreadedSSLSocketInitiator::addThread(SocketKey s, thread_id t) {
|
354
|
+
Locker l(m_mutex);
|
355
|
+
|
356
|
+
m_threads[s] = t;
|
357
|
+
}
|
358
|
+
|
359
|
+
void ThreadedSSLSocketInitiator::removeThread(SocketKey s) {
|
360
|
+
Locker l(m_mutex);
|
361
|
+
SocketToThread::iterator i = m_threads.find(s);
|
362
|
+
|
363
|
+
if (i != m_threads.end()) {
|
364
|
+
thread_detach(i->second);
|
365
|
+
if (i->first.second != 0) {
|
366
|
+
SSL_free(i->first.second);
|
367
|
+
}
|
368
|
+
m_threads.erase(i);
|
369
|
+
}
|
370
|
+
}
|
371
|
+
|
372
|
+
THREAD_PROC ThreadedSSLSocketInitiator::socketThread(void *p) {
|
373
|
+
ThreadPair *pair = reinterpret_cast<ThreadPair *>(p);
|
374
|
+
|
375
|
+
ThreadedSSLSocketInitiator *pInitiator = pair->first;
|
376
|
+
ThreadedSSLSocketConnection *pConnection = pair->second;
|
377
|
+
FIX::SessionID sessionID = pConnection->getSession()->getSessionID();
|
378
|
+
FIX::Session *pSession = FIX::Session::lookupSession(sessionID);
|
379
|
+
socket_handle socket = pConnection->getSocket();
|
380
|
+
delete pair;
|
381
|
+
|
382
|
+
pInitiator->lock();
|
383
|
+
|
384
|
+
if (!pConnection->connect()) {
|
385
|
+
pInitiator->getLog()->onEvent("Connection failed");
|
386
|
+
pConnection->disconnect();
|
387
|
+
SSL *ssl = pConnection->sslObject();
|
388
|
+
delete pConnection;
|
389
|
+
pInitiator->removeThread(SocketKey(socket, ssl));
|
390
|
+
pInitiator->setDisconnected(sessionID);
|
391
|
+
return 0;
|
392
|
+
}
|
393
|
+
|
394
|
+
// Do the SSL handshake.
|
395
|
+
int rc = SSL_connect(pConnection->sslObject());
|
396
|
+
if (rc <= 0) {
|
397
|
+
int err = SSL_get_error(pConnection->sslObject(), rc);
|
398
|
+
pInitiator->getLog()->onEvent("SSL_connect failed with SSL error " + IntConvertor::convert(err));
|
399
|
+
pConnection->disconnect();
|
400
|
+
SSL *ssl = pConnection->sslObject();
|
401
|
+
delete pConnection;
|
402
|
+
pInitiator->removeThread(SocketKey(socket, ssl));
|
403
|
+
pInitiator->setDisconnected(sessionID);
|
404
|
+
return 0;
|
405
|
+
}
|
406
|
+
|
407
|
+
pInitiator->setConnected(sessionID);
|
408
|
+
pInitiator->getLog()->onEvent("Connection succeeded");
|
409
|
+
|
410
|
+
pSession->next(UtcTimeStamp::now());
|
411
|
+
|
412
|
+
while (pConnection->read()) {}
|
413
|
+
|
414
|
+
SSL *ssl = pConnection->sslObject();
|
415
|
+
delete pConnection;
|
416
|
+
if (!pInitiator->isStopped()) {
|
417
|
+
pInitiator->removeThread(SocketKey(socket, ssl));
|
418
|
+
}
|
419
|
+
|
420
|
+
pInitiator->setDisconnected(sessionID);
|
421
|
+
return 0;
|
422
|
+
}
|
423
|
+
|
424
|
+
int ThreadedSSLSocketInitiator::passwordHandleCallback(char *buf, size_t bufsize, int verify) {
|
425
|
+
if (m_password.length() > bufsize) {
|
426
|
+
return -1;
|
427
|
+
}
|
428
|
+
|
429
|
+
std::strcpy(buf, m_password.c_str());
|
430
|
+
return m_password.length();
|
431
|
+
}
|
432
|
+
} // namespace FIX
|
433
|
+
|
434
|
+
#endif
|
@@ -0,0 +1,193 @@
|
|
1
|
+
/* ====================================================================
|
2
|
+
* Copyright (c) 1998-2006 Ralf S. Engelschall. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions
|
6
|
+
* are met:
|
7
|
+
*
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
*
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following
|
13
|
+
* disclaimer in the documentation and/or other materials
|
14
|
+
* provided with the distribution.
|
15
|
+
*
|
16
|
+
* 3. All advertising materials mentioning features or use of this
|
17
|
+
* software must display the following acknowledgment:
|
18
|
+
* "This product includes software developed by
|
19
|
+
* Ralf S. Engelschall <rse@engelschall.com> for use in the
|
20
|
+
* mod_ssl project (http://www.modssl.org/)."
|
21
|
+
*
|
22
|
+
* 4. The names "mod_ssl" must not be used to endorse or promote
|
23
|
+
* products derived from this software without prior written
|
24
|
+
* permission. For written permission, please contact
|
25
|
+
* rse@engelschall.com.
|
26
|
+
*
|
27
|
+
* 5. Products derived from this software may not be called "mod_ssl"
|
28
|
+
* nor may "mod_ssl" appear in their names without prior
|
29
|
+
* written permission of Ralf S. Engelschall.
|
30
|
+
*
|
31
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
32
|
+
* acknowledgment:
|
33
|
+
* "This product includes software developed by
|
34
|
+
* Ralf S. Engelschall <rse@engelschall.com> for use in the
|
35
|
+
* mod_ssl project (http://www.modssl.org/)."
|
36
|
+
*
|
37
|
+
* THIS SOFTWARE IS PROVIDED BY RALF S. ENGELSCHALL ``AS IS'' AND ANY
|
38
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
39
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
40
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RALF S. ENGELSCHALL OR
|
41
|
+
* HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
42
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
43
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
44
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
45
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
46
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
47
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
48
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
49
|
+
* ====================================================================
|
50
|
+
*/
|
51
|
+
|
52
|
+
/* ====================================================================
|
53
|
+
* Copyright (c) 1995-1999 Ben Laurie. All rights reserved.
|
54
|
+
*
|
55
|
+
* Redistribution and use in source and binary forms, with or without
|
56
|
+
* modification, are permitted provided that the following conditions
|
57
|
+
* are met:
|
58
|
+
*
|
59
|
+
* 1. Redistributions of source code must retain the above copyright
|
60
|
+
* notice, this list of conditions and the following disclaimer.
|
61
|
+
*
|
62
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
63
|
+
* notice, this list of conditions and the following disclaimer in
|
64
|
+
* the documentation and/or other materials provided with the
|
65
|
+
* distribution.
|
66
|
+
*
|
67
|
+
* 3. All advertising materials mentioning features or use of this
|
68
|
+
* software must display the following acknowledgment:
|
69
|
+
* "This product includes software developed by Ben Laurie
|
70
|
+
* for use in the Apache-SSL HTTP server project."
|
71
|
+
*
|
72
|
+
* 4. The name "Apache-SSL Server" must not be used to
|
73
|
+
* endorse or promote products derived from this software without
|
74
|
+
* prior written permission.
|
75
|
+
*
|
76
|
+
* 5. Redistributions of any form whatsoever must retain the following
|
77
|
+
* acknowledgment:
|
78
|
+
* "This product includes software developed by Ben Laurie
|
79
|
+
* for use in the Apache-SSL HTTP server project."
|
80
|
+
*
|
81
|
+
* THIS SOFTWARE IS PROVIDED BY BEN LAURIE ``AS IS'' AND ANY
|
82
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
83
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
84
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BEN LAURIE OR
|
85
|
+
* HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
86
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
87
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
88
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
89
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
90
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
91
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
92
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
93
|
+
* ====================================================================
|
94
|
+
*/
|
95
|
+
|
96
|
+
/* -*- C++ -*- */
|
97
|
+
|
98
|
+
/****************************************************************************
|
99
|
+
** Copyright (c) 2001-2014
|
100
|
+
**
|
101
|
+
** This file is part of the QuickFIX FIX Engine
|
102
|
+
**
|
103
|
+
** This file may be distributed under the terms of the quickfixengine.org
|
104
|
+
** license as defined by quickfixengine.org and appearing in the file
|
105
|
+
** LICENSE included in the packaging of this file.
|
106
|
+
**
|
107
|
+
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
108
|
+
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
109
|
+
**
|
110
|
+
** See http://www.quickfixengine.org/LICENSE for licensing information.
|
111
|
+
**
|
112
|
+
** Contact ask@quickfixengine.org if any conditions of this licensing are
|
113
|
+
** not clear to you.
|
114
|
+
**
|
115
|
+
****************************************************************************/
|
116
|
+
|
117
|
+
#ifndef FIX_THREADEDSSLSOCKETINITIATOR_H
|
118
|
+
#define FIX_THREADEDSSLSOCKETINITIATOR_H
|
119
|
+
|
120
|
+
#if (HAVE_SSL > 0)
|
121
|
+
|
122
|
+
#ifdef _MSC_VER
|
123
|
+
#pragma warning(disable : 4503 4355 4786 4290)
|
124
|
+
#endif
|
125
|
+
|
126
|
+
#include "HostDetailsProvider.h"
|
127
|
+
#include "Initiator.h"
|
128
|
+
#include "ThreadedSSLSocketConnection.h"
|
129
|
+
#include <map>
|
130
|
+
|
131
|
+
namespace FIX {
|
132
|
+
/*! \addtogroup user
|
133
|
+
* @{
|
134
|
+
*/
|
135
|
+
/// Threaded Socket implementation of Initiator.
|
136
|
+
class ThreadedSSLSocketInitiator : public Initiator {
|
137
|
+
public:
|
138
|
+
ThreadedSSLSocketInitiator(Application &, MessageStoreFactory &, const SessionSettings &) EXCEPT(ConfigError);
|
139
|
+
ThreadedSSLSocketInitiator(Application &, MessageStoreFactory &, const SessionSettings &, LogFactory &)
|
140
|
+
EXCEPT(ConfigError);
|
141
|
+
|
142
|
+
virtual ~ThreadedSSLSocketInitiator();
|
143
|
+
|
144
|
+
void setPassword(const std::string &pwd) { m_password.assign(pwd); }
|
145
|
+
|
146
|
+
void setCertAndKey(X509 *cert, RSA *key) {
|
147
|
+
m_cert = cert;
|
148
|
+
m_key = key;
|
149
|
+
}
|
150
|
+
|
151
|
+
int passwordHandleCallback(char *buf, size_t bufsize, int verify);
|
152
|
+
|
153
|
+
static int passwordHandleCB(char *buf, int bufsize, int verify, void *instance);
|
154
|
+
|
155
|
+
private:
|
156
|
+
typedef std::pair<socket_handle, SSL *> SocketKey;
|
157
|
+
typedef std::map<SocketKey, thread_id> SocketToThread;
|
158
|
+
typedef std::pair<ThreadedSSLSocketInitiator *, ThreadedSSLSocketConnection *> ThreadPair;
|
159
|
+
|
160
|
+
void onConfigure(const SessionSettings &) EXCEPT(ConfigError);
|
161
|
+
void onInitialize(const SessionSettings &) EXCEPT(RuntimeError);
|
162
|
+
|
163
|
+
void onStart();
|
164
|
+
bool onPoll();
|
165
|
+
void onStop();
|
166
|
+
|
167
|
+
void doConnect(const SessionID &s, const Dictionary &d);
|
168
|
+
|
169
|
+
void addThread(SocketKey s, thread_id t);
|
170
|
+
void removeThread(SocketKey s);
|
171
|
+
void lock() { Locker l(m_mutex); }
|
172
|
+
static THREAD_PROC socketThread(void *p);
|
173
|
+
|
174
|
+
HostDetailsProvider m_hostDetailsProvider;
|
175
|
+
time_t m_lastConnect;
|
176
|
+
int m_reconnectInterval;
|
177
|
+
bool m_noDelay;
|
178
|
+
int m_sendBufSize;
|
179
|
+
int m_rcvBufSize;
|
180
|
+
SocketToThread m_threads;
|
181
|
+
Mutex m_mutex;
|
182
|
+
bool m_sslInit;
|
183
|
+
SSL_CTX *m_ctx;
|
184
|
+
std::string m_password;
|
185
|
+
X509 *m_cert;
|
186
|
+
RSA *m_key;
|
187
|
+
};
|
188
|
+
/*! @} */
|
189
|
+
} // namespace FIX
|
190
|
+
|
191
|
+
#endif // FIX_THREADEDSOCKETINITIATOR_H
|
192
|
+
|
193
|
+
#endif
|