Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp304456ybt; Tue, 7 Jul 2020 23:56:11 -0700 (PDT) X-Google-Smtp-Source: ABdhPJz8H+UMruJDazkdQaHR6PXuSVGRs9MRrOy099/Ifr6qLvIEwkkyfM0HYr7f5bHRKVMLvrlt X-Received: by 2002:a05:6402:1d89:: with SMTP id dk9mr53639734edb.31.1594191371519; Tue, 07 Jul 2020 23:56:11 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594191371; cv=none; d=google.com; s=arc-20160816; b=ZZedvmFroyHddyZil4qU3RYOm/pPVDfMU5bipbvD6w6x+YPR3EXbuTSWfvUuMZZmLH JSd82xBLrbFTbzR1rhBAOyEAt5TR8k8PPQQQITWAb70od0YJ71i62u0ihLI8tZsQriRx 1OFdYPOhCbSl4lur5ENAQPRIXMhBPz2g6XaIHIkJJKNUNaBdzsL0iTDm6YmXnNvER+q4 xOACVN0A6AgWI8EKwybljZL+GfqHyKuregu44xkCdQNzAPSS5Ctk/+tTN49Pp8+H+6Fc 0Rn4JWV900YRUmHJoay7wEokpKokju/DaU8NDI1l8Ikl0aNUsZlv1Qxr/CqKuhkPYdM6 WFqg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=X7f+U+xrp069jfQzVkD7pxUIZJfWMQrnrdgC8k1g6CM=; b=cPjafq43esb1I7fBcandrsAo+huBk9nauigThRd8BWyoUsqljTuRY1NH92jW/ni1HD nleY22yoLbBu722Xe2OqvngPt5Hz/6AjFKkP2Fu4Snewqe8lRAXNJphUSGBFgYZ1dMf0 F7Ti8xIMZ9+aABPkBZdibhu9z/6B7opi7nk7B+jA+gNBNTYasWpRo6fC6ptofxdmafze En+loe2fNuDB+/Ps/CYELLcivqK76wBQAbeSGtD3ySmFTPIo8qq+4XDX+vTtBa63q4us S70/eKW8/NLZgF9ILWCT75D0ZjHUWnWH25rJtBNdNF82T5Pk3K3ZExQR1UqoWnnyqrT2 3c7Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id do15si22624894ejc.430.2020.07.07.23.55.48; Tue, 07 Jul 2020 23:56:11 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729856AbgGHGxj (ORCPT + 99 others); Wed, 8 Jul 2020 02:53:39 -0400 Received: from smtp.al2klimov.de ([78.46.175.9]:34890 "EHLO smtp.al2klimov.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729535AbgGHGxi (ORCPT ); Wed, 8 Jul 2020 02:53:38 -0400 Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by smtp.al2klimov.de (Postfix) with ESMTPA id C4DB6BC06E; Wed, 8 Jul 2020 06:53:34 +0000 (UTC) From: "Alexander A. Klimov" To: idryomov@gmail.com, jlayton@kernel.org, davem@davemloft.net, kuba@kernel.org, ceph-devel@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: "Alexander A. Klimov" Subject: [PATCH] Replace HTTP links with HTTPS ones: CEPH COMMON CODE (LIBCEPH) Date: Wed, 8 Jul 2020 08:53:28 +0200 Message-Id: <20200708065328.13031-1-grandmaster@al2klimov.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spamd-Bar: +++++ X-Spam-Level: ***** Authentication-Results: smtp.al2klimov.de; auth=pass smtp.auth=aklimov@al2klimov.de smtp.mailfrom=grandmaster@al2klimov.de Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Deterministic algorithm: For each file: If not .svg: For each line: If doesn't contain `\bxmlns\b`: For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`: If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Signed-off-by: Alexander A. Klimov --- Continuing my work started at 93431e0607e5. See also: git log --oneline '--author=Alexander A. Klimov ' v5.7..master (Actually letting a shell for loop submit all this stuff for me.) If there are any URLs to be removed completely or at least not HTTPSified: Just clearly say so and I'll *undo my change*. See also: https://lkml.org/lkml/2020/6/27/64 If there are any valid, but yet not changed URLs: See: https://lkml.org/lkml/2020/6/26/837 If you apply the patch, please let me know. net/ceph/ceph_hash.c | 2 +- net/ceph/crush/hash.c | 2 +- net/ceph/crush/mapper.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/ceph/ceph_hash.c b/net/ceph/ceph_hash.c index 9a5850f264ed..81e1e006c540 100644 --- a/net/ceph/ceph_hash.c +++ b/net/ceph/ceph_hash.c @@ -4,7 +4,7 @@ /* * Robert Jenkin's hash function. - * http://burtleburtle.net/bob/hash/evahash.html + * https://burtleburtle.net/bob/hash/evahash.html * This is in the public domain. */ #define mix(a, b, c) \ diff --git a/net/ceph/crush/hash.c b/net/ceph/crush/hash.c index e5cc603cdb17..fe79f6d2d0db 100644 --- a/net/ceph/crush/hash.c +++ b/net/ceph/crush/hash.c @@ -7,7 +7,7 @@ /* * Robert Jenkins' function for mixing 32-bit values - * http://burtleburtle.net/bob/hash/evahash.html + * https://burtleburtle.net/bob/hash/evahash.html * a, b = random bits, c = input and output */ #define crush_hashmix(a, b, c) do { \ diff --git a/net/ceph/crush/mapper.c b/net/ceph/crush/mapper.c index 3f323ed9df52..07e5614eb3f1 100644 --- a/net/ceph/crush/mapper.c +++ b/net/ceph/crush/mapper.c @@ -298,7 +298,7 @@ static __u64 crush_ln(unsigned int xin) * * for reference, see: * - * http://en.wikipedia.org/wiki/Exponential_distribution#Distribution_of_the_minimum_of_exponential_random_variables + * https://en.wikipedia.org/wiki/Exponential_distribution#Distribution_of_the_minimum_of_exponential_random_variables * */ -- 2.27.0