summaryrefslogtreecommitdiffstats
path: root/src/Core/ConnectionManager.cpp
blob: e953fce255f6d9285cd26ed8e1f1bb352f064b60 (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
/*
 * ConnectionManager.cpp
 *
 * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
 *
 * 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, see <http://www.gnu.org/licenses/>.
 */

#include "ConnectionManager.h"
#include "ConfigManager.h"
#include "RequestHandler/CoreStatusRequestHandler.h"
#include "RequestHandler/GSSAPIAuthRequestHandler.h"
#include <Net/ServerConnection.h>
#include <Net/Packet.h>
#include <Net/Listener.h>
#include <unistd.h>

namespace Mad {
namespace Core {

void ConnectionManager::refreshPollfds() {
  pollfds.clear();
  pollfdMap.clear();

  for(std::list<Net::Listener*>::iterator listener = listeners.begin(); listener != listeners.end(); ++listener) {
    std::vector<struct pollfd> fds = (*listener)->getPollfds();

    for(std::vector<struct pollfd>::iterator fd = fds.begin(); fd != fds.end(); ++fd) {
      pollfds.push_back(*fd);
      pollfdMap.insert(std::make_pair(fd->fd, &pollfds.back().revents));
    }
  }

  for(std::list<Net::ServerConnection*>::iterator con = daemonConnections.begin(); con != daemonConnections.end(); ++con) {
    pollfds.push_back((*con)->getPollfd());
    pollfdMap.insert(std::make_pair(pollfds.back().fd, &pollfds.back().revents));
  }

  for(std::list<Net::ServerConnection*>::iterator con = clientConnections.begin(); con != clientConnections.end(); ++con) {
    pollfds.push_back((*con)->getPollfd());
    pollfdMap.insert(std::make_pair(pollfds.back().fd, &pollfds.back().revents));
  }
}

ConnectionManager::ConnectionManager(const ConfigManager& configManager) : requestManager(true) {
  requestManager.registerPacketType<RequestHandler::CoreStatusRequestHandler>(Net::Packet::TYPE_CORE_STATUS);
  requestManager.registerPacketType<RequestHandler::GSSAPIAuthRequestHandler>(Net::Packet::TYPE_GSSAPI_AUTH);

  const std::vector<Net::IPAddress> &listenerAddresses = configManager.getListenerAddresses();

  if(listenerAddresses.empty()) {
    try {
      listeners.push_back(new Net::Listener(configManager.getX509CertFile(), configManager.getX509KeyFile()));
    }
    catch(Net::Exception &e) {
      // TODO Log error
    }
  }
  else {
    for(std::vector<Net::IPAddress>::const_iterator address = listenerAddresses.begin(); address != listenerAddresses.end(); ++address) {
      try {
        listeners.push_back(new Net::Listener(configManager.getX509CertFile(), configManager.getX509KeyFile(), *address));
      }
      catch(Net::Exception &e) {
        // TODO Log error
      }
    }
  }

  refreshPollfds();
}

ConnectionManager::~ConnectionManager() {
  for(std::list<Net::ServerConnection*>::iterator con = daemonConnections.begin(); con != daemonConnections.end(); ++con)
    delete *con;

  for(std::list<Net::ServerConnection*>::iterator con = clientConnections.begin(); con != clientConnections.end(); ++con)
    delete *con;
}

void ConnectionManager::handleConnections(std::list<Net::ServerConnection*>& connections) {
  for(std::list<Net::ServerConnection*>::iterator con = connections.begin(); con != connections.end();) {
    if((*con)->isConnected()) {
      std::map<int,const short*>::iterator events = pollfdMap.find((*con)->getSocket());

      if(events != pollfdMap.end() && *events->second)
        (*con)->sendReceive(*events->second);

      ++con;
    }
    else {
      requestManager.unregisterConnection(*con);
      delete *con;
      connections.erase(con++);
    }
  }
}

void ConnectionManager::run() {
  // TODO Logging

  handleConnections(daemonConnections);
  handleConnections(clientConnections);

  for(std::list<Net::Listener*>::iterator listener = listeners.begin(); listener != listeners.end(); ++listener) {
    Net::ServerConnection *con;

    while((con = (*listener)->getConnection(pollfdMap)) != 0) {
      (con->isDaemonConnection() ? daemonConnections : clientConnections).push_back(con);
      requestManager.registerConnection(con);
    }
  }

  refreshPollfds();
}

}
}