Imported Upstream version 0.3
[anytun.git] / src / syncServer.cpp
1 /*
2  *  anytun
3  *
4  *  The secure anycast tunneling protocol (satp) defines a protocol used
5  *  for communication between any combination of unicast and anycast
6  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
7  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
8  *  ethernet, ip, arp ...). satp directly includes cryptography and
9  *  message authentication based on the methodes used by SRTP.  It is
10  *  intended to deliver a generic, scaleable and secure solution for
11  *  tunneling and relaying of packets of any protocol.
12  *
13  *
14  *  Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, 
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License version 3 as
21  *  published by the Free Software Foundation.
22  *
23  *  Anytun is distributed in the hope that it will be useful,
24  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *  GNU General Public License for more details.
27  *
28  *  You should have received a copy of the GNU General Public License
29  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 #include "syncServer.h"
33 #include "resolver.h"
34 #include "log.h"
35
36 //using asio::ip::tcp;
37
38 SyncServer::SyncServer(std::string localaddr, std::string port, ConnectCallback onConnect) 
39   : acceptor_(io_service_), onConnect_(onConnect)
40 {
41   gResolver.resolveTcp(localaddr, port, boost::bind(&SyncServer::onResolve, this, _1), boost::bind(&SyncServer::onResolvError, this, _1));
42 }
43
44 void SyncServer::onResolve(const SyncTcpConnection::proto::endpoint& e)
45 {
46   acceptor_.open(e.protocol());
47   acceptor_.set_option(boost::asio::socket_base::reuse_address(true));
48   acceptor_.bind(e);
49   acceptor_.listen();
50   start_accept();
51   ready_sem_.up();
52   cLog.msg(Log::PRIO_NOTICE) << "sync server listening on " << e;
53 }
54
55 void SyncServer::onResolvError(const std::runtime_error& e)
56 {
57   cLog.msg(Log::PRIO_ERROR) << "sync server bind/listen failed: " << e.what();
58       // TODO: stop daemon??
59 }
60
61 void SyncServer::run()
62 {
63   ready_sem_.down();
64   io_service_.run();
65 }
66
67 void SyncServer::send(std::string message)
68 {
69   Lock lock(mutex_);
70   for(std::list<SyncTcpConnection::pointer>::iterator it = conns_.begin() ;it != conns_.end(); ++it)
71     (*it)->Send(message);
72 }
73
74 void SyncServer::start_accept()
75 {
76   Lock lock(mutex_);
77   SyncTcpConnection::pointer new_connection = SyncTcpConnection::create(acceptor_.io_service());
78   conns_.push_back(new_connection);
79   acceptor_.async_accept(new_connection->socket(),
80                          boost::bind(&SyncServer::handle_accept, this, new_connection, boost::asio::placeholders::error));
81 }
82
83 void SyncServer::handle_accept(SyncTcpConnection::pointer new_connection, const boost::system::error_code& error)
84 {
85   if (!error) {
86     new_connection->onConnect = onConnect_;
87     new_connection->start();
88     start_accept();
89   }
90 }