123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- /* <!-- copyright */
- /*
- * aria2 - The high speed download utility
- *
- * Copyright (C) 2006 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 "CookieStorage.h"
- #include <cstring>
- #include <algorithm>
- #include <fstream>
- #include "util.h"
- #include "LogFactory.h"
- #include "Logger.h"
- #include "DlAbortEx.h"
- #include "StringFormat.h"
- #include "NsCookieParser.h"
- #include "File.h"
- #include "a2functional.h"
- #include "A2STR.h"
- #include "message.h"
- #include "cookie_helper.h"
- #ifdef HAVE_SQLITE3
- # include "Sqlite3CookieParserImpl.h"
- #endif // HAVE_SQLITE3
- namespace aria2 {
- CookieStorage::DomainEntry::DomainEntry
- (const std::string& domain):
- key_(util::isNumericHost(domain)?domain:cookie::reverseDomainLevel(domain))
- {}
- bool CookieStorage::DomainEntry::addCookie(const Cookie& cookie, time_t now)
- {
- setLastAccessTime(now);
- std::deque<Cookie>::iterator i =
- std::find(cookies_.begin(), cookies_.end(), cookie);
- if(i == cookies_.end()) {
- if(cookie.isExpired(now)) {
- return false;
- } else {
- if(cookies_.size() >= CookieStorage::MAX_COOKIE_PER_DOMAIN) {
- cookies_.erase
- (std::remove_if(cookies_.begin(), cookies_.end(),
- std::bind2nd
- (std::mem_fun_ref(&Cookie::isExpired), now)),
- cookies_.end());
- if(cookies_.size() >= CookieStorage::MAX_COOKIE_PER_DOMAIN) {
- std::deque<Cookie>::iterator m = std::min_element
- (cookies_.begin(), cookies_.end(), LeastRecentAccess<Cookie>());
- *m = cookie;
- } else {
- cookies_.push_back(cookie);
- }
- } else {
- cookies_.push_back(cookie);
- }
- return true;
- }
- } else if(cookie.isExpired(now)) {
- cookies_.erase(i);
- return false;
- } else {
- *i = cookie;
- return true;
- }
- }
- bool CookieStorage::DomainEntry::contains(const Cookie& cookie) const
- {
- return std::find(cookies_.begin(), cookies_.end(), cookie) != cookies_.end();
- }
- void CookieStorage::DomainEntry::writeCookie(std::ostream& o) const
- {
- for(std::deque<Cookie>::const_iterator i = cookies_.begin(),
- eoi = cookies_.end(); i != eoi; ++i) {
- o << (*i).toNsCookieFormat() << "\n";
- }
- }
- CookieStorage::CookieStorage():logger_(LogFactory::getInstance()) {}
- CookieStorage::~CookieStorage() {}
- // See CookieStorageTest::testDomainIsFull() in CookieStorageTest.cc
- static const size_t DOMAIN_EVICTION_TRIGGER = 2000;
- static const double DOMAIN_EVICTION_RATE = 0.1;
- bool CookieStorage::store(const Cookie& cookie, time_t now)
- {
- if(domains_.size() >= DOMAIN_EVICTION_TRIGGER) {
- std::sort(domains_.begin(), domains_.end(),
- LeastRecentAccess<DomainEntry>());
- size_t delnum = (size_t)(domains_.size()*DOMAIN_EVICTION_RATE);
- domains_.erase(domains_.begin(), domains_.begin()+delnum);
- std::sort(domains_.begin(), domains_.end());
- }
- DomainEntry v(cookie.getDomain());
- std::deque<DomainEntry>::iterator i =
- std::lower_bound(domains_.begin(), domains_.end(), v);
- bool added = false;
- if(i != domains_.end() && (*i).getKey() == v.getKey()) {
- added = (*i).addCookie(cookie, now);
- } else {
- added = v.addCookie(cookie, now);
- if(added) {
- domains_.insert(i, v);
- }
- }
- return added;
- }
- bool CookieStorage::parseAndStore
- (const std::string& setCookieString,
- const std::string& requestHost,
- const std::string& defaultPath,
- time_t now)
- {
- Cookie cookie;
- if(cookie::parse(cookie, setCookieString, requestHost, defaultPath, now)) {
- return store(cookie, now);
- } else {
- return false;
- }
- }
- struct CookiePathDivider {
- Cookie cookie_;
- int pathDepth_;
- CookiePathDivider(const Cookie& cookie):cookie_(cookie)
- {
- std::vector<std::string> paths;
- util::split(cookie_.getPath(), std::back_inserter(paths), A2STR::SLASH_C);
- pathDepth_ = paths.size();
- }
- };
- namespace {
- class CookiePathDividerConverter {
- public:
- CookiePathDivider operator()(const Cookie& cookie) const
- {
- return CookiePathDivider(cookie);
- }
- Cookie operator()(const CookiePathDivider& cookiePathDivider) const
- {
- return cookiePathDivider.cookie_;
- }
- };
- } // namespace
- namespace {
- class OrderByPathDepthDesc:public std::binary_function<Cookie, Cookie, bool> {
- public:
- bool operator()
- (const CookiePathDivider& lhs, const CookiePathDivider& rhs) const
- {
- // Sort by path-length.
- //
- // RFC2965 says: Note that the NAME=VALUE pair for the cookie with
- // the more specific Path attribute, /acme/ammo, comes before the
- // one with the less specific Path attribute, /acme. Further note
- // that the same cookie name appears more than once.
- //
- // Netscape spec says: When sending cookies to a server, all
- // cookies with a more specific path mapping should be sent before
- // cookies with less specific path mappings. For example, a cookie
- // "name1=foo" with a path mapping of "/" should be sent after a
- // cookie "name1=foo2" with a path mapping of "/bar" if they are
- // both to be sent.
- //
- // See also http://tools.ietf.org/html/draft-ietf-httpstate-cookie-14
- // section5.4
- return lhs.pathDepth_ > rhs.pathDepth_ ||
- (!(rhs.pathDepth_ > lhs.pathDepth_) &&
- lhs.cookie_.getCreationTime() < rhs.cookie_.getCreationTime());
- }
- };
- } // namespace
- namespace {
- template<typename DomainInputIterator, typename CookieOutputIterator>
- void searchCookieByDomainSuffix
- (const std::string& domain,
- DomainInputIterator first, DomainInputIterator last, CookieOutputIterator out,
- const std::string& requestHost,
- const std::string& requestPath,
- time_t now, bool secure)
- {
- CookieStorage::DomainEntry v(domain);
- std::deque<CookieStorage::DomainEntry>::iterator i =
- std::lower_bound(first, last, v);
- if(i != last && (*i).getKey() == v.getKey()) {
- (*i).setLastAccessTime(now);
- (*i).findCookie(out, requestHost, requestPath, now, secure);
- }
- }
- } // namespace
- bool CookieStorage::contains(const Cookie& cookie) const
- {
- CookieStorage::DomainEntry v(cookie.getDomain());
- std::deque<CookieStorage::DomainEntry>::const_iterator i =
- std::lower_bound(domains_.begin(), domains_.end(), v);
- if(i != domains_.end() && (*i).getKey() == v.getKey()) {
- return (*i).contains(cookie);
- } else {
- return false;
- }
- }
- std::vector<Cookie> CookieStorage::criteriaFind
- (const std::string& requestHost,
- const std::string& requestPath,
- time_t now,
- bool secure)
- {
- std::vector<Cookie> res;
- if(requestPath.empty()) {
- return res;
- }
- if(util::isNumericHost(requestHost)) {
- searchCookieByDomainSuffix
- (requestHost, domains_.begin(), domains_.end(), std::back_inserter(res),
- requestHost, requestPath, now, secure);
- } else {
- std::vector<std::string> levels;
- util::split(requestHost, std::back_inserter(levels),A2STR::DOT_C);
- std::reverse(levels.begin(), levels.end());
- std::string domain;
- for(std::vector<std::string>::const_iterator i =
- levels.begin(), eoi = levels.end();
- i != eoi; ++i, domain.insert(domain.begin(), '.')) {
- domain.insert(domain.begin(), (*i).begin(), (*i).end());
- searchCookieByDomainSuffix
- (domain, domains_.begin(), domains_.end(),
- std::back_inserter(res), requestHost, requestPath, now, secure);
- }
- }
- std::vector<CookiePathDivider> divs;
- std::transform(res.begin(), res.end(), std::back_inserter(divs),
- CookiePathDividerConverter());
- std::sort(divs.begin(), divs.end(), OrderByPathDepthDesc());
- std::transform(divs.begin(), divs.end(), res.begin(),
- CookiePathDividerConverter());
- return res;
- }
- size_t CookieStorage::size() const
- {
- size_t numCookie = 0;
- for(std::deque<DomainEntry>::const_iterator i = domains_.begin(),
- eoi = domains_.end(); i != eoi; ++i) {
- numCookie += (*i).countCookie();
- }
- return numCookie;
- }
- bool CookieStorage::load(const std::string& filename, time_t now)
- {
- char header[16]; // "SQLite format 3" plus \0
- std::ifstream s(filename.c_str(), std::ios::binary);
- if(!s) {
- logger_->error("Failed to open cookie file %s", filename.c_str());
- return false;
- }
- s.get(header, sizeof(header));
- if(!s) {
- logger_->error("Failed to read header of cookie file %s",
- filename.c_str());
- return false;
- }
- try {
- if(std::string(header) == "SQLite format 3") {
- #ifdef HAVE_SQLITE3
- std::vector<Cookie> cookies;
- try {
- Sqlite3MozCookieParser(filename).parse(cookies);
- } catch(RecoverableException& e) {
- if(logger_->info()) {
- logger_->info(EX_EXCEPTION_CAUGHT, e);
- logger_->info("This does not look like Firefox3 cookie file."
- " Retrying, assuming it is Chromium cookie file.");
- }
- // Try chrome cookie format
- Sqlite3ChromiumCookieParser(filename).parse(cookies);
- }
- storeCookies(cookies.begin(), cookies.end(), now);
- #else // !HAVE_SQLITE3
- throw DL_ABORT_EX
- ("Cannot read SQLite3 database because SQLite3 support is disabled by"
- " configuration.");
- #endif // !HAVE_SQLITE3
- } else {
- std::vector<Cookie> cookies = NsCookieParser().parse(filename, now);
- storeCookies(cookies.begin(), cookies.end(), now);
- }
- return true;
- } catch(RecoverableException& e) {
- logger_->error("Failed to load cookies from %s", filename.c_str());
- return false;
- }
- }
- bool CookieStorage::saveNsFormat(const std::string& filename)
- {
- std::string tempfilename = filename+"__temp";
- {
- std::ofstream o(tempfilename.c_str(), std::ios::binary);
- if(!o) {
- logger_->error("Cannot create cookie file %s, cause %s",
- filename.c_str(), strerror(errno));
- return false;
- }
- for(std::deque<DomainEntry>::const_iterator i = domains_.begin(),
- eoi = domains_.end(); i != eoi; ++i) {
- (*i).writeCookie(o);
- }
- o.flush();
- if(!o) {
- logger_->error("Failed to save cookies to %s, cause %s",
- filename.c_str(), strerror(errno));
- return false;
- }
- }
- if(File(tempfilename).renameTo(filename)) {
- return true;
- } else {
- logger_->error("Could not rename file %s as %s",
- tempfilename.c_str(), filename.c_str());
- return false;
- }
- }
- } // namespace aria2
|