summaryrefslogtreecommitdiff
path: root/signalController.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2007-06-20 01:09:52 +0000
committerChristian Pointner <equinox@anytun.org>2007-06-20 01:09:52 +0000
commit9f9798e2c818a133aacc5b0c7b4fc6a6d1d3fddf (patch)
treea7f4965c642e011b1ca28c7bf1b97425d20afe61 /signalController.cpp
parentadded PracticalTCP Socket (diff)
begin multi threading
added signal controller (not working yet)
Diffstat (limited to 'signalController.cpp')
-rw-r--r--signalController.cpp159
1 files changed, 159 insertions, 0 deletions
diff --git a/signalController.cpp b/signalController.cpp
new file mode 100644
index 0000000..82dae3e
--- /dev/null
+++ b/signalController.cpp
@@ -0,0 +1,159 @@
+/*
+ * anytun
+ *
+ * The secure anycast tunneling protocol (satp) defines a protocol used
+ * for communication between any combination of unicast and anycast
+ * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
+ * mode and allows tunneling of every ETHER TYPE protocol (e.g.
+ * ethernet, ip, arp ...). satp directly includes cryptography and
+ * message authentication based on the methodes used by SRTP. It is
+ * intended to deliver a generic, scaleable and secure solution for
+ * tunneling and relaying of packets of any protocol.
+ *
+ *
+ * Copyright (C) 2007 anytun.org <satp@wirdorange.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * 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 (see the file COPYING included with this
+ * distribution); if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include <csignal>
+#include <map>
+
+#include <iostream>
+
+#include "threadUtils.hpp"
+#include "signalController.h"
+
+
+int SigIntHandler::handle()
+{
+ std::cout << "SIG-Int caught" << std::endl;
+
+ return 1;
+}
+
+int SigQuitHandler::handle()
+{
+ std::cout << "SIG-Quit caught" << std::endl;
+
+ return 1;
+}
+
+int SigHupHandler::handle()
+{
+ std::cout << "SIG-Hup caught" << std::endl;
+
+ return 0;
+}
+
+int SigTermHandler::handle()
+{
+ std::cout << "SIG-Term caught" << std::endl;
+
+ return 1;
+}
+
+int SigUsr1Handler::handle()
+{
+ std::cout << "SIG-Usr1 caught" << std::endl;
+
+ return 0;
+}
+
+int SigUsr2Handler::handle()
+{
+ std::cout << "SIG-Usr2 caught" << std::endl;
+
+ return 0;
+}
+
+SignalController::~SignalController()
+{
+ for(HandlerMap::iterator it = handler.begin(); it != handler.end(); ++it)
+ delete it->second;
+}
+
+void* SignalController::handle(void *s)
+{
+ SignalController* self = reinterpret_cast<SignalController*>(s);
+ sigset_t signal_set;
+ int sigNum;
+
+ while(1) {
+ sigfillset(&signal_set);
+ sigwait(&signal_set, &sigNum);
+
+ {
+ Lock(self->sigQueueMutex);
+ self->sigQueue.push(sigNum);
+ }
+ self->sigQueueSem.up();
+ }
+ pthread_exit(NULL);
+}
+
+void SignalController::init()
+{
+ sigset_t signal_set;
+
+ sigfillset(&signal_set);
+ sigdelset(&signal_set, SIGCHLD);
+ sigdelset(&signal_set, SIGSEGV);
+ sigdelset(&signal_set, SIGBUS);
+ sigdelset(&signal_set, SIGFPE);
+ pthread_sigmask(SIG_BLOCK, &signal_set, NULL);
+
+ pthread_create(&thread, NULL, handle, NULL);
+ pthread_detach(thread);
+
+ handler[SIGINT] = new SigIntHandler;
+ handler[SIGQUIT] = new SigQuitHandler;
+ handler[SIGHUP] = new SigHupHandler;
+ handler[SIGTERM] = new SigTermHandler;
+ handler[SIGUSR1] = new SigUsr1Handler;
+ handler[SIGUSR2] = new SigUsr2Handler;
+}
+
+bool SignalController::sigQueueEmpty()
+{
+ Lock lock(sigQueueMutex);
+ return sigQueue.empty();
+}
+
+int SignalController::run()
+{
+ while(1) {
+ sigQueueSem.down();
+ while(!sigQueueEmpty())
+ {
+ int sigNum;
+ {
+ Lock lock(sigQueueMutex);
+ sigNum = sigQueue.front();
+ sigQueue.pop();
+ }
+ HandlerMap::iterator it = handler.find(sigNum);
+ if(it != handler.end())
+ {
+ int ret = it->second->handle();
+ if(ret)
+ return ret;
+ }
+ else
+ std::cout << "SIG " << sigNum << " caught - ignoring" << std::endl;
+ }
+ }
+ return 0;
+}