| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- /* <!-- 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::CommandEvent::CommandEvent(Command* command, int events):
- _command(command), _events(events) {}
- int EpollEventPoll::CommandEvent::getEvents() const
- {
- return _events;
- }
- void EpollEventPoll::CommandEvent::processEvents(int events)
- {
- if((_events&events) ||
- ((EpollEventPoll::EVENT_ERROR|EpollEventPoll::EVENT_HUP)&events)) {
- _command->setStatusActive();
- }
- if(EpollEventPoll::EVENT_READ&events) {
- _command->readEventReceived();
- }
- if(EpollEventPoll::EVENT_WRITE&events) {
- _command->writeEventReceived();
- }
- if(EpollEventPoll::EVENT_ERROR&events) {
- _command->errorEventReceived();
- }
- if(EpollEventPoll::EVENT_HUP&events) {
- _command->hupEventReceived();
- }
- }
- void EpollEventPoll::CommandEvent::addSelf
- (const SharedHandle<SocketEntry>& socketEntry) const
- {
- socketEntry->addCommandEvent(*this);
- }
- void EpollEventPoll::CommandEvent::removeSelf
- (const SharedHandle<SocketEntry>& socketEntry) const
- {
- socketEntry->removeCommandEvent(*this);
- }
- #ifdef ENABLE_ASYNC_DNS
- EpollEventPoll::ADNSEvent::ADNSEvent
- (const SharedHandle<AsyncNameResolver>& resolver,
- Command* command,
- sock_t socket, int events):
- _resolver(resolver), _command(command), _socket(socket), _events(events) {}
- int EpollEventPoll::ADNSEvent::getEvents() const
- {
- return _events;
- }
- void EpollEventPoll::ADNSEvent::processEvents(int events)
- {
- ares_socket_t readfd;
- ares_socket_t writefd;
- if(events&(EpollEventPoll::EVENT_READ|EpollEventPoll::EVENT_ERROR|
- EpollEventPoll::EVENT_HUP)) {
- readfd = _socket;
- } else {
- readfd = ARES_SOCKET_BAD;
- }
- if(events&(EpollEventPoll::EVENT_WRITE|EpollEventPoll::EVENT_ERROR|
- EpollEventPoll::EVENT_HUP)) {
- writefd = _socket;
- } else {
- writefd = ARES_SOCKET_BAD;
- }
- _resolver->process(readfd, writefd);
- _command->setStatusActive();
- }
- void EpollEventPoll::ADNSEvent::addSelf
- (const SharedHandle<SocketEntry>& socketEntry) const
- {
- socketEntry->addADNSEvent(*this);
- }
- void EpollEventPoll::ADNSEvent::removeSelf
- (const SharedHandle<SocketEntry>& socketEntry) const
- {
- socketEntry->removeADNSEvent(*this);
- }
- #endif // ENABLE_ASYNC_DNS
- EpollEventPoll::SocketEntry::SocketEntry(sock_t socket):_socket(socket)
- {
- memset(&_epEvent, 0, sizeof(struct epoll_event));
- }
- void EpollEventPoll::SocketEntry::addCommandEvent(const CommandEvent& cev)
- {
- std::deque<CommandEvent>::iterator i = std::find(_commandEvents.begin(),
- _commandEvents.end(),
- cev);
- if(i == _commandEvents.end()) {
- _commandEvents.push_back(cev);
- } else {
- (*i).addEvents(cev.getEvents());
- }
- }
- void EpollEventPoll::SocketEntry::removeCommandEvent(const CommandEvent& cev)
- {
- std::deque<CommandEvent>::iterator i = std::find(_commandEvents.begin(),
- _commandEvents.end(),
- cev);
- if(i == _commandEvents.end()) {
- // not found
- } else {
- (*i).removeEvents(cev.getEvents());
- if((*i).eventsEmpty()) {
- _commandEvents.erase(i);
- }
- }
- }
- #ifdef ENABLE_ASYNC_DNS
- void EpollEventPoll::SocketEntry::addADNSEvent(const ADNSEvent& aev)
- {
- std::deque<ADNSEvent>::iterator i = std::find(_adnsEvents.begin(),
- _adnsEvents.end(),
- aev);
- if(i == _adnsEvents.end()) {
- _adnsEvents.push_back(aev);
- }
- }
- void EpollEventPoll::SocketEntry::removeADNSEvent(const ADNSEvent& aev)
- {
- std::deque<ADNSEvent>::iterator i = std::find(_adnsEvents.begin(),
- _adnsEvents.end(),
- aev);
- if(i == _adnsEvents.end()) {
- // not found
- } else {
- _adnsEvents.erase(i);
- }
- }
- #endif // ENABLE_ASYNC_DNS
- void EpollEventPoll::SocketEntry::processEvents(int events)
- {
- std::for_each(_commandEvents.begin(), _commandEvents.end(),
- std::bind2nd(std::mem_fun_ref
- (&EpollEventPoll::CommandEvent::processEvents),
- events));
- #ifdef ENABLE_ASYNC_DNS
- std::for_each(_adnsEvents.begin(), _adnsEvents.end(),
- std::bind2nd(std::mem_fun_ref
- (&EpollEventPoll::ADNSEvent::processEvents),
- events));
- #endif // ENABLE_ASYNC_DNS
- }
- bool EpollEventPoll::SocketEntry::eventEmpty() const
- {
- #ifdef ENABLE_ASYNC_DNS
- return _commandEvents.empty() && _adnsEvents.empty();
- #else // !ENABLE_ASYNC_DNS
- return _commandEvents.empty();
- #endif // !ENABLE_ASYNC_DNS)
- }
- int accumulateEvent(int events, const EpollEventPoll::Event& event)
- {
- return events|event.getEvents();
- }
- struct epoll_event& EpollEventPoll::SocketEntry::getEpEvent()
- {
- _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;
- }
- #ifdef ENABLE_ASYNC_DNS
- EpollEventPoll::AsyncNameResolverEntry::AsyncNameResolverEntry
- (const SharedHandle<AsyncNameResolver>& nameResolver, Command* command):
- _nameResolver(nameResolver), _command(command), _socketsSize(0)
- {}
- void EpollEventPoll::AsyncNameResolverEntry::addSocketEvents
- (EpollEventPoll* e)
- {
- _socketsSize = 0;
- int mask = _nameResolver->getsock(_sockets);
- if(mask == 0) {
- return;
- }
- size_t i;
- for(i = 0; i < ARES_GETSOCK_MAXNUM; ++i) {
- //epoll_event_t* epEventPtr = &_epEvents[_socketsSize];
- int events = 0;
- if(ARES_GETSOCK_READABLE(mask, i)) {
- events |= EPOLLIN;
- }
- if(ARES_GETSOCK_WRITABLE(mask, i)) {
- events |= EPOLLOUT;
- }
- if(events == 0) {
- // assume no further sockets are returned.
- break;
- }
- e->addEvents(_sockets[i], _command, events, _nameResolver);
- }
- _socketsSize = i;
- }
-
- void EpollEventPoll::AsyncNameResolverEntry::removeSocketEvents
- (EpollEventPoll* e)
- {
- for(size_t i = 0; i < _socketsSize; ++i) {
- e->deleteEvents(_sockets[i], _command, _nameResolver);
- }
- }
- #endif // ENABLE_ASYNC_DNS
- EpollEventPoll::EpollEventPoll():_logger(LogFactory::getInstance())
- {
- _epfd = epoll_create(EPOLL_EVENTS_MAX);
- _epEvents = new struct epoll_event[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) {
- SocketEntry* p = reinterpret_cast<SocketEntry*>(_epEvents[i].data.ptr);
- p->processEvents(_epEvents[i].events);
- }
- }
- // 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::Event& event)
- {
- SharedHandle<SocketEntry> socketEntry(new SocketEntry(socket));
- std::deque<SharedHandle<SocketEntry> >::iterator i =
- std::lower_bound(_socketEntries.begin(), _socketEntries.end(), socketEntry);
- int r = 0;
- if(i != _socketEntries.end() && (*i) == socketEntry) {
- event.addSelf(*i);
- r = epoll_ctl(_epfd, EPOLL_CTL_MOD, (*i)->getSocket(), &(*i)->getEpEvent());
- 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(),
- &(*i)->getEpEvent());
- }
- } else {
- _socketEntries.insert(i, socketEntry);
- event.addSelf(socketEntry);
- r = epoll_ctl(_epfd, EPOLL_CTL_ADD, socketEntry->getSocket(),
- &socketEntry->getEpEvent());
- }
- if(r == -1) {
- _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, CommandEvent(command, epEvents));
- }
- #ifdef ENABLE_ASYNC_DNS
- bool EpollEventPoll::addEvents(sock_t socket, Command* command, int events,
- const SharedHandle<AsyncNameResolver>& rs)
- {
- return addEvents(socket, ADNSEvent(rs, command, socket, events));
- }
- #endif // ENABLE_ASYNC_DNS
- bool EpollEventPoll::deleteEvents(sock_t socket,
- const EpollEventPoll::Event& event)
- {
- SharedHandle<SocketEntry> socketEntry(new SocketEntry(socket));
- std::deque<SharedHandle<SocketEntry> >::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.
- r = epoll_ctl(_epfd, EPOLL_CTL_MOD, (*i)->getSocket(),
- &(*i)->getEpEvent());
- if(r == -1) {
- _logger->debug("Failed to delete socket event, but may be ignored:%s",
- strerror(errno));
- }
- }
- if(r == -1) {
- _logger->debug("Failed to delete socket event:%s", strerror(errno));
- return false;
- } else {
- return true;
- }
- } else {
- _logger->debug("Socket %d is not found in SocketEntries.", socket);
- return false;
- }
- }
- #ifdef ENABLE_ASYNC_DNS
- bool EpollEventPoll::deleteEvents(sock_t socket, Command* command,
- const SharedHandle<AsyncNameResolver>& rs)
- {
- return deleteEvents(socket, ADNSEvent(rs, command, socket, 0));
- }
- #endif // ENABLE_ASYNC_DNS
- bool EpollEventPoll::deleteEvents(sock_t socket, Command* command,
- EventPoll::EventType events)
- {
- int epEvents = translateEvents(events);
- return deleteEvents(socket, CommandEvent(command, epEvents));
- }
- #ifdef ENABLE_ASYNC_DNS
- bool EpollEventPoll::addNameResolver
- (const SharedHandle<AsyncNameResolver>& resolver, Command* command)
- {
- SharedHandle<AsyncNameResolverEntry> entry
- (new AsyncNameResolverEntry(resolver, command));
- std::deque<SharedHandle<AsyncNameResolverEntry> >::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<AsyncNameResolverEntry> entry
- (new AsyncNameResolverEntry(resolver, command));
- std::deque<SharedHandle<AsyncNameResolverEntry> >::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
|