public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: "Peter Müller" <peter.mueller@link38.eu>
To: development@lists.ipfire.org
Subject: [PATCH] use protocol defined in server-list.db for mirror communication
Date: Sat, 24 Mar 2018 16:22:18 +0100	[thread overview]
Message-ID: <20180324162218.28f9d594.peter.mueller@link38.eu> (raw)

[-- Attachment #1: Type: text/plain, Size: 1175 bytes --]

For each mirror server, a protocol can be specified in the
server-list.db database. However, it was not used for the
actual URL query to a mirror before.

This might be useful for deploy HTTPS pinning for Pakfire.
If a mirror is known to support HTTPS, all queries to it
will be made with this protocol.

This saves some overhead if HTTPS is enforced on a mirror
via 301 redirects. To enable this, the server-list.db
needs to be adjusted.

Partially fixes #11661.

Signed-off-by: Peter Müller <peter.mueller(a)link38.eu>
Cc: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/pakfire/lib/functions.pl | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl
index c97d4254d..94f9f1826 100644
--- a/src/pakfire/lib/functions.pl
+++ b/src/pakfire/lib/functions.pl
@@ -171,8 +171,11 @@ sub fetchfile {
 			}
 		}
 
+		# Use specified protocol for mirror communication (allows HTTPS pinning)
+		my $urlproto = lc $proto;
+
 		$final_data = undef;
-	 	my $url = "http://$host/$file";
+	 	my $url = "$urlproto://$host/$file";
 		my $response;
 		
 		unless ($bfile =~ /^counter.py\?.*/) {
-- 
2.13.6



             reply	other threads:[~2018-03-24 15:22 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-24 15:22 Peter Müller [this message]
2018-03-26 13:36 ` Michael Tremer
2018-03-26 18:50   ` Peter Müller
2018-03-27 13:37     ` Michael Tremer
2018-03-28  3:41       ` [PATCH v2] " Peter Müller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180324162218.28f9d594.peter.mueller@link38.eu \
    --to=peter.mueller@link38.eu \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox