X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fthreadengines%2Fthreadengine_win32.cpp;h=ea37892f8d9c0d239ca1b1aa485f590a230b4fcf;hb=fc4fc43ec232407b38d7ca182cb92c5cac4287aa;hp=30f65ae741680d64be094a47563c92418a65fa2f;hpb=a3d9b31cb6eadd8960f2504d08c625c2dc9d03e8;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp index 30f65ae74..ea37892f8 100644 --- a/src/threadengines/threadengine_win32.cpp +++ b/src/threadengines/threadengine_win32.cpp @@ -1,20 +1,27 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2009 Daniel De Graaf + * Copyright (C) 2008 Craig Edwards * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * --------------------------------------------------- + * 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 . */ + #include "inspircd.h" #include "threadengines/threadengine_win32.h" -ThreadEngine::ThreadEngine(InspIRCd* Instance) +ThreadEngine::ThreadEngine() { } @@ -28,9 +35,12 @@ void ThreadEngine::Start(Thread* thread) if (data->handle == NULL) { + DWORD lasterr = GetLastError(); thread->state = NULL; delete data; - throw CoreException(std::string("Unable to create new thread: ") + dlerror()); + std::string err = "Unable to create new thread: " + ConvToStr(lasterr); + SetLastError(ERROR_SUCCESS); + throw CoreException(err); } } @@ -40,7 +50,7 @@ ThreadEngine::~ThreadEngine() DWORD WINAPI ThreadEngine::Entry(void* parameter) { - Thread* pt = reinterpret_cast(parameter); + Thread* pt = static_cast(parameter); pt->Run(); return 0; } @@ -49,80 +59,55 @@ void ThreadData::FreeThread(Thread* thread) { thread->SetExitFlag(); WaitForSingleObject(handle,INFINITE); + CloseHandle(handle); } class ThreadSignalSocket : public BufferedSocket { SocketThread* parent; public: - ThreadSignalSocket(SocketThread* t, InspIRCd* SI, int newfd, char* ip) - : BufferedSocket(SI, newfd, ip), parent(t) - { - } - - virtual bool OnDataReady() + ThreadSignalSocket(SocketThread* t, int newfd) + : BufferedSocket(newfd), parent(t) { - char data = 0; - if (ServerInstance->SE->Recv(this, &data, 1, 0) > 0) - { - parent->OnNotify(); - return true; - } - return false; } -}; -class ThreadSignalListener : public ListenSocketBase -{ - SocketThread* parent; - irc::sockets::insp_sockaddr sock_us; - public: - ThreadSignalListener(SocketThread* t, InspIRCd* Instance, int port, const std::string &addr) : ListenSocketBase(Instance, port, addr), parent(t) + void OnDataReady() { - socklen_t uslen = sizeof(sock_us); - if (getsockname(this->fd,(sockaddr*)&sock_us,&uslen)) - { - throw ModuleException("Could not getsockname() to find out port number for ITC port"); - } + recvq.clear(); + parent->OnNotify(); } - virtual void OnAcceptReady(const std::string &ipconnectedto, int nfd, const std::string &incomingip) + void OnError(BufferedSocketError) { - new ThreadSignalSocket(parent, ServerInstance, nfd, const_cast(ipconnectedto.c_str())); - ServerInstance->SE->DelFd(this); - // XXX unsafe casts suck - } -/* Using getsockname and ntohs, we can determine which port number we were allocated */ - int GetPort() - { -#ifdef IPV6 - return ntohs(sock_us.sin6_port); -#else - return ntohs(sock_us.sin_port); -#endif + ServerInstance->GlobalCulls.AddItem(this); } }; -SocketThread::SocketThread(InspIRCd* SI) +SocketThread::SocketThread() { - ThreadSignalListener* listener = new ThreadSignalListener(this, SI, 0, "127.0.0.1"); - if (listener->GetFd() == -1) + int listenFD = socket(AF_INET, SOCK_STREAM, 0); + if (listenFD == -1) throw CoreException("Could not create ITC pipe"); int connFD = socket(AF_INET, SOCK_STREAM, 0); if (connFD == -1) throw CoreException("Could not create ITC pipe"); - + + if (!ServerInstance->BindSocket(listenFD, 0, "127.0.0.1", true)) + throw CoreException("Could not create ITC pipe"); + ServerInstance->SE->NonBlocking(connFD); + struct sockaddr_in addr; - irc::sockets::insp_aton("127.0.0.1", &addr.sin_addr); - addr.sin_family = AF_INET; - addr.sin_port = htons(listener->GetPort()); + socklen_t sz = sizeof(addr); + getsockname(listenFD, reinterpret_cast(&addr), &sz); + connect(connFD, reinterpret_cast(&addr), sz); + ServerInstance->SE->Blocking(listenFD); + int nfd = accept(listenFD, reinterpret_cast(&addr), &sz); + if (nfd < 0) + throw CoreException("Could not create ITC pipe"); + new ThreadSignalSocket(this, nfd); + closesocket(listenFD); - if (connect(connFD, reinterpret_cast(&addr), sizeof(addr)) == -1) - { - SI->SE->DelFd(listener); - closesocket(connFD); - throw CoreException("Could not connet to ITC pipe"); - } + ServerInstance->SE->Blocking(connFD); this->signal.connFD = connFD; }