2006-12-19 12:03:30 +01:00
|
|
|
// -*- mode: cpp; mode: fold -*-
|
|
|
|
|
// Description /*{{{*/// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
|
|
|
|
|
// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
|
|
|
|
|
/* ######################################################################
|
|
|
|
|
|
2014-02-22 18:34:33 +01:00
|
|
|
HTTP Acquire Method - This is the HTTP acquire method for APT.
|
2006-12-19 12:03:30 +01:00
|
|
|
|
|
|
|
|
##################################################################### */
|
|
|
|
|
/*}}}*/
|
|
|
|
|
|
2012-02-11 21:26:42 +01:00
|
|
|
#ifndef APT_HTTPS_H
|
|
|
|
|
#define APT_HTTPS_H
|
2006-12-19 12:03:30 +01:00
|
|
|
|
2014-03-05 22:11:25 +01:00
|
|
|
#include <apt-pkg/acquire-method.h>
|
|
|
|
|
|
2006-12-19 12:03:30 +01:00
|
|
|
#include <curl/curl.h>
|
2014-03-05 22:11:25 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
#include <string>
|
2015-09-11 21:02:19 +02:00
|
|
|
#include <memory>
|
2006-12-19 12:03:30 +01:00
|
|
|
|
2013-09-30 16:41:16 +02:00
|
|
|
#include "server.h"
|
|
|
|
|
|
2006-12-19 12:03:30 +01:00
|
|
|
using std::cout;
|
|
|
|
|
using std::endl;
|
|
|
|
|
|
2014-03-05 22:11:25 +01:00
|
|
|
class Hashes;
|
2006-12-19 12:03:30 +01:00
|
|
|
class HttpsMethod;
|
2011-09-19 19:14:19 +02:00
|
|
|
class FileFd;
|
2006-12-19 12:03:30 +01:00
|
|
|
|
2013-09-30 16:41:16 +02:00
|
|
|
class HttpsServerState : public ServerState
|
|
|
|
|
{
|
2015-04-11 10:23:52 +02:00
|
|
|
Hashes * Hash;
|
|
|
|
|
|
2013-09-30 16:41:16 +02:00
|
|
|
protected:
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual bool ReadHeaderLines(std::string &/*Data*/) APT_OVERRIDE { return false; }
|
|
|
|
|
virtual bool LoadNextResponse(bool const /*ToFile*/, FileFd * const /*File*/) APT_OVERRIDE { return false; }
|
2013-09-30 16:41:16 +02:00
|
|
|
|
|
|
|
|
public:
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual bool WriteResponse(std::string const &/*Data*/) APT_OVERRIDE { return false; }
|
2013-09-30 16:41:16 +02:00
|
|
|
|
|
|
|
|
/** \brief Transfer the data from the socket */
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual bool RunData(FileFd * const /*File*/) APT_OVERRIDE { return false; }
|
2013-09-30 16:41:16 +02:00
|
|
|
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual bool Open() APT_OVERRIDE { return false; }
|
|
|
|
|
virtual bool IsOpen() APT_OVERRIDE { return false; }
|
|
|
|
|
virtual bool Close() APT_OVERRIDE { return false; }
|
|
|
|
|
virtual bool InitHashes(HashStringList const &ExpectedHashes) APT_OVERRIDE;
|
|
|
|
|
virtual Hashes * GetHashes() APT_OVERRIDE;
|
|
|
|
|
virtual bool Die(FileFd &/*File*/) APT_OVERRIDE { return false; }
|
|
|
|
|
virtual bool Flush(FileFd * const /*File*/) APT_OVERRIDE { return false; }
|
|
|
|
|
virtual bool Go(bool /*ToFile*/, FileFd * const /*File*/) APT_OVERRIDE { return false; }
|
2013-09-30 16:41:16 +02:00
|
|
|
|
|
|
|
|
HttpsServerState(URI Srv, HttpsMethod *Owner);
|
|
|
|
|
virtual ~HttpsServerState() {Close();};
|
|
|
|
|
};
|
|
|
|
|
|
2015-03-09 01:54:46 +01:00
|
|
|
class HttpsMethod : public ServerMethod
|
2006-12-19 12:03:30 +01:00
|
|
|
{
|
2009-11-17 09:55:22 -06:00
|
|
|
// minimum speed in bytes/se that triggers download timeout handling
|
|
|
|
|
static const int DL_MIN_SPEED = 10;
|
2006-12-19 12:03:30 +01:00
|
|
|
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual bool Fetch(FetchItem *) APT_OVERRIDE;
|
2014-10-13 10:57:30 +02:00
|
|
|
|
2013-09-30 16:41:16 +02:00
|
|
|
static size_t parse_header(void *buffer, size_t size, size_t nmemb, void *userp);
|
2006-12-19 12:03:30 +01:00
|
|
|
static size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp);
|
2015-03-09 01:34:10 +01:00
|
|
|
static int progress_callback(void *clientp, double dltotal, double dlnow,
|
|
|
|
|
double ultotal, double ulnow);
|
2007-07-10 15:06:12 -03:00
|
|
|
void SetupProxy();
|
2006-12-19 12:03:30 +01:00
|
|
|
CURL *curl;
|
2015-03-09 01:54:46 +01:00
|
|
|
|
|
|
|
|
// Used by ServerMethods unused by https
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual void SendReq(FetchItem *) APT_OVERRIDE { exit(42); }
|
|
|
|
|
virtual void RotateDNS() APT_OVERRIDE { exit(42); }
|
2006-12-19 12:03:30 +01:00
|
|
|
|
|
|
|
|
public:
|
2015-03-09 01:34:10 +01:00
|
|
|
|
2015-07-09 00:35:40 +02:00
|
|
|
virtual bool Configuration(std::string Message) APT_OVERRIDE;
|
2015-09-11 21:02:19 +02:00
|
|
|
virtual std::unique_ptr<ServerState> CreateServerState(URI const &uri) APT_OVERRIDE;
|
2015-03-27 15:53:43 +01:00
|
|
|
using pkgAcqMethod::FetchResult;
|
2015-05-12 00:30:16 +02:00
|
|
|
using pkgAcqMethod::FetchItem;
|
2015-03-09 01:54:46 +01:00
|
|
|
|
2015-11-04 21:08:55 +01:00
|
|
|
HttpsMethod() : ServerMethod("https","1.2",Pipeline | SendConfig)
|
2006-12-19 12:03:30 +01:00
|
|
|
{
|
|
|
|
|
curl = curl_easy_init();
|
|
|
|
|
};
|
2013-01-09 14:47:35 +01:00
|
|
|
|
|
|
|
|
~HttpsMethod()
|
|
|
|
|
{
|
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
};
|
2006-12-19 12:03:30 +01:00
|
|
|
};
|
|
|
|
|
|
2011-09-19 19:14:19 +02:00
|
|
|
#include <apt-pkg/strutl.h>
|
2006-12-19 12:03:30 +01:00
|
|
|
URI Proxy;
|
|
|
|
|
|
|
|
|
|
#endif
|