| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 | /* <!-- copyright *//* * aria2 - The high speed download utility * * Copyright (C) 2009 Tatsuhiro Tsujikawa * * 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 2 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 * * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each * individual source file, and distribute linked combinations * including the two. * You must obey the GNU General Public License in all respects * for all of the code used other than OpenSSL.  If you modify * file(s) with this exception, you may extend this exception to your * version of the file(s), but you are not obligated to do so.  If you * do not wish to do so, delete this exception statement from your * version.  If you delete this exception statement from all source * files in the program, then also delete it here. *//* copyright --> */#include "EpollEventPoll.h"#include <cstring>#include <algorithm>#include <numeric>#include "Command.h"#include "LogFactory.h"#include "Logger.h"namespace aria2 {EpollEventPoll::KSocketEntry::KSocketEntry(sock_t s):  SocketEntry<KCommandEvent, KADNSEvent>(s) {}int accumulateEvent(int events, const EpollEventPoll::KEvent& event){  return events|event.getEvents();}struct epoll_event EpollEventPoll::KSocketEntry::getEvents(){  struct epoll_event epEvent;  memset(&epEvent, 0, sizeof(struct epoll_event));  epEvent.data.ptr = this;#ifdef ENABLE_ASYNC_DNS  epEvent.events =    std::accumulate(adnsEvents_.begin(),                    adnsEvents_.end(),                    std::accumulate(commandEvents_.begin(),                                    commandEvents_.end(), 0, accumulateEvent),                    accumulateEvent);#else // !ENABLE_ASYNC_DNS  epEvent.events =    std::accumulate(commandEvents_.begin(), commandEvents_.end(), 0,                    accumulateEvent);#endif // !ENABLE_ASYNC_DNS  return epEvent;}EpollEventPoll::EpollEventPoll():  epEventsSize_(EPOLL_EVENTS_MAX),  epEvents_(new struct epoll_event[epEventsSize_]),  logger_(LogFactory::getInstance()){  epfd_ = epoll_create(EPOLL_EVENTS_MAX);}EpollEventPoll::~EpollEventPoll(){  if(epfd_ != -1) {    int r;    while((r = close(epfd_)) == -1 && errno == EINTR);    if(r == -1) {      logger_->error("Error occurred while closing epoll file descriptor"                     " %d: %s",                     epfd_, strerror(errno));    }  }  delete [] epEvents_;}bool EpollEventPoll::good() const{  return epfd_ != -1;}void EpollEventPoll::poll(const struct timeval& tv){  // timeout is millisec  int timeout = tv.tv_sec*1000+tv.tv_usec/1000;  int res;  while((res = epoll_wait(epfd_, epEvents_, EPOLL_EVENTS_MAX, timeout)) == -1 &&        errno == EINTR);  if(res > 0) {    for(int i = 0; i < res; ++i) {      KSocketEntry* p = reinterpret_cast<KSocketEntry*>(epEvents_[i].data.ptr);      p->processEvents(epEvents_[i].events);    }  }#ifdef ENABLE_ASYNC_DNS  // It turns out that we have to call ares_process_fd before ares's  // own timeout and ares may create new sockets or closes socket in  // their API. So we call ares_process_fd for all ares_channel and  // re-register their sockets.  for(std::deque<SharedHandle<KAsyncNameResolverEntry> >::iterator i =        nameResolverEntries_.begin(), eoi = nameResolverEntries_.end();      i != eoi; ++i) {    (*i)->processTimeout();    (*i)->removeSocketEvents(this);    (*i)->addSocketEvents(this);  }#endif // ENABLE_ASYNC_DNS  // TODO timeout of name resolver is determined in Command(AbstractCommand,  // DHTEntryPoint...Command)}static int translateEvents(EventPoll::EventType events){  int newEvents = 0;  if(EventPoll::EVENT_READ&events) {    newEvents |= EPOLLIN;  }  if(EventPoll::EVENT_WRITE&events) {    newEvents |= EPOLLOUT;  }  if(EventPoll::EVENT_ERROR&events) {    newEvents |= EPOLLERR;  }  if(EventPoll::EVENT_HUP&events) {    newEvents |= EPOLLHUP;      }  return newEvents;}bool EpollEventPoll::addEvents(sock_t socket,                               const EpollEventPoll::KEvent& event){  SharedHandle<KSocketEntry> socketEntry(new KSocketEntry(socket));  std::deque<SharedHandle<KSocketEntry> >::iterator i =    std::lower_bound(socketEntries_.begin(), socketEntries_.end(), socketEntry);  int r = 0;  if(i != socketEntries_.end() && (*i) == socketEntry) {    event.addSelf(*i);    struct epoll_event epEvent = (*i)->getEvents();    r = epoll_ctl(epfd_, EPOLL_CTL_MOD, (*i)->getSocket(), &epEvent);    if(r == -1) {      // try EPOLL_CTL_ADD: There is a chance that previously socket X is      // added to epoll, but it is closed and is not yet removed from      // SocketEntries. In this case, EPOLL_CTL_MOD is failed with ENOENT.      r = epoll_ctl(epfd_, EPOLL_CTL_ADD, (*i)->getSocket(),                    &epEvent);    }  } else {    socketEntries_.insert(i, socketEntry);    if(socketEntries_.size() > epEventsSize_) {      epEventsSize_ *= 2;      delete [] epEvents_;      epEvents_ = new struct epoll_event[epEventsSize_];    }    event.addSelf(socketEntry);    struct epoll_event epEvent = socketEntry->getEvents();    r = epoll_ctl(epfd_, EPOLL_CTL_ADD, socketEntry->getSocket(), &epEvent);  }  if(r == -1) {    if(logger_->debug()) {      logger_->debug("Failed to add socket event %d:%s",                     socket, strerror(errno));    }    return false;  } else {    return true;  }}bool EpollEventPoll::addEvents(sock_t socket, Command* command,                               EventPoll::EventType events){  int epEvents = translateEvents(events);  return addEvents(socket, KCommandEvent(command, epEvents));}#ifdef ENABLE_ASYNC_DNSbool EpollEventPoll::addEvents(sock_t socket, Command* command, int events,                               const SharedHandle<AsyncNameResolver>& rs){  return addEvents(socket, KADNSEvent(rs, command, socket, events));}#endif // ENABLE_ASYNC_DNSbool EpollEventPoll::deleteEvents(sock_t socket,                                  const EpollEventPoll::KEvent& event){  SharedHandle<KSocketEntry> socketEntry(new KSocketEntry(socket));  std::deque<SharedHandle<KSocketEntry> >::iterator i =    std::lower_bound(socketEntries_.begin(), socketEntries_.end(), socketEntry);  if(i != socketEntries_.end() && (*i) == socketEntry) {    event.removeSelf(*i);    int r = 0;    if((*i)->eventEmpty()) {      // In kernel before 2.6.9, epoll_ctl with EPOLL_CTL_DEL requires non-null      // pointer of epoll_event.      struct epoll_event ev = {0,{0}};      r = epoll_ctl(epfd_, EPOLL_CTL_DEL, (*i)->getSocket(), &ev);      socketEntries_.erase(i);    } else {      // If socket is closed, then it seems it is automatically removed from      // epoll, so following EPOLL_CTL_MOD may fail.      struct epoll_event epEvent = (*i)->getEvents();      r = epoll_ctl(epfd_, EPOLL_CTL_MOD, (*i)->getSocket(), &epEvent);      if(r == -1) {        if(logger_->debug()) {          logger_->debug("Failed to delete socket event, but may be ignored:%s",                         strerror(errno));        }      }    }    if(r == -1) {      if(logger_->debug()) {        logger_->debug("Failed to delete socket event:%s", strerror(errno));      }      return false;    } else {      return true;    }  } else {    if(logger_->debug()) {      logger_->debug("Socket %d is not found in SocketEntries.", socket);    }    return false;  }}#ifdef ENABLE_ASYNC_DNSbool EpollEventPoll::deleteEvents(sock_t socket, Command* command,                                  const SharedHandle<AsyncNameResolver>& rs){  return deleteEvents(socket, KADNSEvent(rs, command, socket, 0));}#endif // ENABLE_ASYNC_DNSbool EpollEventPoll::deleteEvents(sock_t socket, Command* command,                                  EventPoll::EventType events){  int epEvents = translateEvents(events);  return deleteEvents(socket, KCommandEvent(command, epEvents));}#ifdef ENABLE_ASYNC_DNSbool EpollEventPoll::addNameResolver(const SharedHandle<AsyncNameResolver>& resolver, Command* command){  SharedHandle<KAsyncNameResolverEntry> entry    (new KAsyncNameResolverEntry(resolver, command));  std::deque<SharedHandle<KAsyncNameResolverEntry> >::iterator itr =    std::find(nameResolverEntries_.begin(), nameResolverEntries_.end(), entry);  if(itr == nameResolverEntries_.end()) {    nameResolverEntries_.push_back(entry);    entry->addSocketEvents(this);    return true;  } else {    return false;  }}bool EpollEventPoll::deleteNameResolver(const SharedHandle<AsyncNameResolver>& resolver, Command* command){  SharedHandle<KAsyncNameResolverEntry> entry    (new KAsyncNameResolverEntry(resolver, command));  std::deque<SharedHandle<KAsyncNameResolverEntry> >::iterator itr =    std::find(nameResolverEntries_.begin(), nameResolverEntries_.end(), entry);  if(itr == nameResolverEntries_.end()) {    return false;  } else {    (*itr)->removeSocketEvents(this);    nameResolverEntries_.erase(itr);    return true;  }}#endif // ENABLE_ASYNC_DNS} // namespace aria2
 |