blob: ab0eff9a564c5314535cc79c98d7a31d39dad027 (
plain)
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
|
/*
* Remote Laboratory Authentication Server
*
* 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 3 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* (c) 2012-2013 Timothy Pearson
* Raptor Engineering
* http://www.raptorengineeringinc.com
*/
#include <tqsocket.h>
#include <tqserversocket.h>
#include <tqapplication.h>
#include <tqvbox.h>
#include <tqtextview.h>
#include <tqlabel.h>
#include <tqpushbutton.h>
#include <tqtextstream.h>
#include <tqsqldatabase.h>
#include <tqsqlcursor.h>
#include <ksimpleconfig.h>
#include <tdekrbserversocket.h>
#include <tdekrbclientsocket.h>
#include <tqtrla.h>
#define MAGIC_NUMBER 1
#define PROTOCOL_VERSION 1
class AuthSocket : public TDEKerberosServerSocket
{
Q_OBJECT
public:
AuthSocket(int sock, int serverID, TQObject *parent=0, const char *name=0);
~AuthSocket();
public:
void close();
void initiateKerberosHandshake();
int enterCommandLoop();
private slots:
void finishKerberosHandshake();
int connectToDatabase();
void connectionClosedHandler();
void commandLoop();
int servLoop();
void pollFlags();
private:
void updateStatistics(int eventType);
private:
int line;
int m_criticalSection;
TQString m_remoteHost;
int m_stationID;
bool m_bound;
int m_serviceID;
int m_serverID;
int m_pollInterval;
TQ_ULLONG m_terminationStamp;
bool m_servActive;
int m_servState;
TDEKerberosClientSocket* m_servClientSocket;
TQTimer* m_servClientTimeout;
TQString m_srvServiceHostName;
int m_srvServicePort;
TQTimer* m_kerberosInitTimer;
TQTimer* m_loopTimer;
TQTimer* m_pollTimer;
TQByteArray m_loopBuffer;
KSimpleConfig* m_config;
TQSqlDatabase* m_database;
TQSqlCursor* m_databaseStationsCursor;
TQSqlCursor* m_databaseServicesCursor;
TQSqlCursor* m_databaseServiceTypesCursor;
TQSqlCursor* m_databasePermissionsCursor;
TQSqlCursor* m_databaseActivityCursor;
TQSqlCursor* m_databaseStatisticsCursor;
TQSqlCursor* m_databaseStatusCursor;
StationList m_slist;
friend class AuthServer;
};
class AuthServer : public TQServerSocket
{
Q_OBJECT
public:
AuthServer(TQObject* parent=0);
~AuthServer();
void newConnection(int socket);
private slots:
int connectToDatabase();
void pingSQLServer();
signals:
void newConnect(AuthSocket*);
private:
KSimpleConfig* m_config;
TQSqlDatabase* m_database;
TQTimer* m_sqlPingTimer;
int m_serverID;
friend class AuthSocket;
};
|