source: ntrip/trunk/BNC/src/bncnetqueryv2.cpp@ 7813

Last change on this file since 7813 was 7813, checked in by stuerze, 8 years ago

minor changes to prevent crash in case of ssl errors

File size: 6.9 KB
RevLine 
[1378]1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: bncNetQueryV2
6 *
7 * Purpose: Blocking Network Requests (NTRIP Version 2)
8 *
9 * Author: L. Mervart
10 *
11 * Created: 27-Dec-2008
12 *
[7612]13 * Changes:
[1378]14 *
15 * -----------------------------------------------------------------------*/
16
[1583]17#include <iostream>
18
[1379]19#include "bncnetqueryv2.h"
[1535]20#include "bncsettings.h"
[2011]21#include "bncversion.h"
[3349]22#include "bncsslconfig.h"
[3359]23#include "bncsettings.h"
[1378]24
25// Constructor
26////////////////////////////////////////////////////////////////////////////
[3337]27bncNetQueryV2::bncNetQueryV2(bool secure) {
28 _secure = secure;
[1378]29 _manager = new QNetworkAccessManager(this);
[7612]30 connect(_manager, SIGNAL(proxyAuthenticationRequired(const QNetworkProxy&,
[1405]31 QAuthenticator*)),
[7612]32 this, SLOT(slotProxyAuthenticationRequired(const QNetworkProxy&,
[1405]33 QAuthenticator*)));
[1378]34 _reply = 0;
35 _eventLoop = new QEventLoop(this);
[1583]36 _firstData = true;
[1378]37 _status = init;
[3359]38
39 bncSettings settings;
[7612]40 _sslIgnoreErrors =
[7513]41 (Qt::CheckState(settings.value("sslIgnoreErrors").toInt()) == Qt::Checked);
[3359]42
[3352]43 if (_secure && !QSslSocket::supportsSsl()) {
[5068]44 BNC_CORE->slotMessage("No SSL support, install OpenSSL run-time libraries", true);
[3352]45 stop();
46 }
[1378]47}
48
49// Destructor
50////////////////////////////////////////////////////////////////////////////
51bncNetQueryV2::~bncNetQueryV2() {
52 delete _eventLoop;
[7704]53 if (_reply) {
54 _reply->abort();
55 delete _reply;
56 }
[1378]57 delete _manager;
58}
59
[1713]60// Stop (quit event loop)
[1390]61////////////////////////////////////////////////////////////////////////////
62void bncNetQueryV2::stop() {
[1393]63 if (_reply) {
[1395]64 _reply->abort();
[7704]65 delete _reply;
66 _reply = 0;
[1393]67 }
[1394]68 _eventLoop->quit();
[1398]69 _status = finished;
[1390]70}
71
[1389]72// End of Request
73////////////////////////////////////////////////////////////////////////////
[1378]74void bncNetQueryV2::slotFinished() {
[1704]75 _eventLoop->quit();
76 if (_reply && _reply->error() != QNetworkReply::NoError) {
77 _status = error;
78 emit newMessage(_url.path().toAscii().replace(0,1,"") +
[7612]79 ": NetQueryV2: server replied: " +
[1704]80 _reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toByteArray(),
81 true);
82 }
83 else {
[1378]84 _status = finished;
85 }
86}
87
[7612]88//
[1405]89////////////////////////////////////////////////////////////////////////////
[7612]90void bncNetQueryV2::slotProxyAuthenticationRequired(const QNetworkProxy&,
[1405]91 QAuthenticator*) {
92 emit newMessage("slotProxyAuthenticationRequired", true);
93}
94
[1389]95// Start request, block till the next read
[1378]96////////////////////////////////////////////////////////////////////////////
[1380]97void bncNetQueryV2::startRequest(const QUrl& url, const QByteArray& gga) {
[1389]98 startRequestPrivate(url, gga, false);
[1378]99}
100
[6787]101// Start request, block till the next read
102////////////////////////////////////////////////////////////////////////////
103void bncNetQueryV2::keepAliveRequest(const QUrl& url, const QByteArray& gga) {
104 startRequestPrivate(url, gga, false);
105}
106
[1389]107// Start Request (Private Method)
[1378]108////////////////////////////////////////////////////////////////////////////
[1389]109void bncNetQueryV2::startRequestPrivate(const QUrl& url, const QByteArray& gga,
110 bool full) {
[1378]111
112 _status = running;
113
114 // Default scheme and path
115 // -----------------------
[1509]116 _url = url;
117 if (_url.scheme().isEmpty()) {
[3337]118 if (_secure) {
119 _url.setScheme("https");
120 }
121 else {
122 _url.setScheme("http");
123 }
[1378]124 }
[1509]125 if (_url.path().isEmpty()) {
126 _url.setPath("/");
[1378]127 }
128
[1404]129 // Proxy Settings
130 // --------------
[1535]131 bncSettings settings;
[1404]132 QString proxyHost = settings.value("proxyHost").toString();
133 int proxyPort = settings.value("proxyPort").toInt();
134
135 if (!proxyHost.isEmpty()) {
136 QNetworkProxy proxy(QNetworkProxy::HttpProxy, proxyHost, proxyPort);
137 _manager->setProxy(proxy);
138 }
139
[1378]140 // Network Request
141 // ---------------
[1716]142 QNetworkRequest request;
[3360]143 bncSslConfig sslConfig;
144 request.setSslConfiguration(sslConfig);
[1716]145 request.setUrl(_url);
146 request.setRawHeader("Host" , _url.host().toAscii());
147 request.setRawHeader("Ntrip-Version", "Ntrip/2.0");
[6572]148 request.setRawHeader("User-Agent" , "NTRIP BNC/"BNCVERSION" ("BNC_OS")");
[1509]149 if (!_url.userName().isEmpty()) {
150 QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii());
151 QString passW = QUrl::fromPercentEncoding(_url.password().toAscii());
[7612]152 request.setRawHeader("Authorization", "Basic " +
[1509]153 (uName + ":" + passW).toAscii().toBase64());
[7612]154 }
[1389]155 if (!gga.isEmpty()) {
[1716]156 request.setRawHeader("Ntrip-GGA", gga);
[1389]157 }
[1716]158 request.setRawHeader("Connection" , "close");
[1378]159
[7698]160 delete _reply;
[1716]161 _reply = _manager->get(request);
[1378]162
163 // Connect Signals
164 // ---------------
165 connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
166 connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
[3332]167 connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),
168 this, SLOT(slotSslErrors(QList<QSslError>)));
[1378]169 if (!full) {
170 connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
171 }
172}
173
174// Start Request, wait for its completion
175////////////////////////////////////////////////////////////////////////////
176void bncNetQueryV2::waitForRequestResult(const QUrl& url, QByteArray& outData) {
177
178 // Send Request
179 // ------------
[1389]180 startRequestPrivate(url, "", true);
[1378]181
182 // Wait Loop
183 // ---------
[1394]184 _eventLoop->exec();
[1378]185
186 // Copy Data and Return
187 // --------------------
[7813]188 if (_reply) {
189 outData = _reply->readAll();
190 }
[1378]191}
192
193// Wait for next data
194////////////////////////////////////////////////////////////////////////////
195void bncNetQueryV2::waitForReadyRead(QByteArray& outData) {
196
197 // Wait Loop
198 // ---------
199 if (!_reply->bytesAvailable()) {
[1394]200 _eventLoop->exec();
[1378]201 }
202
[1701]203 // Check NTRIPv2 error code
204 // ------------------------
205 if (_reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() != 200) {
206 _reply->abort();
207 }
208
[1378]209 // Append Data
210 // -----------
[1701]211 else {
212 outData.append(_reply->readAll());
[1583]213 }
[1378]214}
[1712]215
[7612]216// TSL/SSL
[3332]217////////////////////////////////////////////////////////////////////////////
[3349]218void bncNetQueryV2::slotSslErrors(QList<QSslError> errors) {
[3332]219
[3353]220 QString msg = "SSL Error\n";
[3351]221 QSslCertificate cert = _reply->sslConfiguration().peerCertificate();
222 if (!cert.isNull()) {
[3354]223 msg += QString("Server Certificate Issued by:\n"
224 "%1\n%2\nCannot be verified\n")
225 .arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName))
226 .arg(cert.issuerInfo(QSslCertificate::Organization));
[3351]227 }
[3363]228 QListIterator<QSslError> it(errors);
229 while (it.hasNext()) {
230 const QSslError& err = it.next();
231 msg += "\n" + err.errorString();
[3353]232 }
[3351]233
[5068]234 BNC_CORE->slotMessage(msg.toAscii(), true);
[3346]235
[7513]236 if (_sslIgnoreErrors) {
[3353]237 _reply->ignoreSslErrors();
238 }
239 else {
240 stop();
241 }
[3332]242}
Note: See TracBrowser for help on using the repository browser.