Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp1605463ybt; Thu, 9 Jul 2020 10:49:08 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxi88FBOl9XLwgGcTBUGKFZ+jWAMIGBLOc9eHZOgtNvH+JpYpVp/eNXF+YcTBU/F7WM86cJ X-Received: by 2002:aa7:c496:: with SMTP id m22mr60261077edq.336.1594316947936; Thu, 09 Jul 2020 10:49:07 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594316947; cv=none; d=google.com; s=arc-20160816; b=J2cMGus16tXhHMbTmiMuIsynyGWFhTCgC+TCfyRdED9AZ7sTQL4l4b82I06NBn5W8f 8QWA8iW5jzp3WWIRLuN1dW1wKrf8XhV/iY8oKLf2MjohAXnlor/GVJXTa2Qlark5Y+m+ OWZxviHm1THtjLy03wjxx1E5XnA3u000ZLhUXBpbKaEsE1DurjgT3VwSXmacvpEMrggk Ftj4+fsUbMEOAMCI+CH3dOSTd76Wk7Hj14tO1EZr83fEVhMPbBb+H0o8L5OQeoldVsbn UyA1Wvc/ekUGUmwze6qlrT2vlxo6DsPMgBHs/d8GNNMJ8OSHGIQK5tfKxlEDbBpDjYO1 Ud8g== 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=BL3NgzgABrEVQ+qQJKrCg2iUzaCaLUi47EyN0+yHjJc=; b=af/Yt2ba30Nh1DPxICPReMcZsvcc0VF9Wlf+pT/ufD+VJVITqmY0+VfDmqPjxzju1N hbLfbVyTKGtmh131v51i/QICQhQYhkdYrdIEggxMRC2IfR3UnOheIuX4ChBOLvaPiXcc NkOuq+xxbhkmZ2X+OBz0ExsGWVqbGvrFj0dbGhmbVikWHMG+DntNQbjySLap1lZkgWAN 8bhQMhb8gwTJN5Y2iUi/WEAuJ+uVh/1MSY+KVnpR6pZ9SHruDQ64uJ/83CsySnOkR40+ BBfGcS+tDSfqwBRjpmz2gVxm/+rHJLP3l4KUk4BVoDzUr559pxc0g5dJJxjJ+b3NUVYW VDpQ== 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 r11si2601946edw.359.2020.07.09.10.48.44; Thu, 09 Jul 2020 10:49:07 -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 S1728846AbgGIRrl (ORCPT + 99 others); Thu, 9 Jul 2020 13:47:41 -0400 Received: from smtp.al2klimov.de ([78.46.175.9]:57444 "EHLO smtp.al2klimov.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728449AbgGIRrf (ORCPT ); Thu, 9 Jul 2020 13:47:35 -0400 Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by smtp.al2klimov.de (Postfix) with ESMTPA id E42D6BC078; Thu, 9 Jul 2020 17:47:30 +0000 (UTC) From: "Alexander A. Klimov" To: t-kristo@ti.com, bp@alien8.de, mchehab@kernel.org, tony.luck@intel.com, james.morse@arm.com, rrichter@marvell.com, linux-edac@vger.kernel.org, linux-kernel@vger.kernel.org Cc: "Alexander A. Klimov" Subject: [PATCH] EDAC-TI: Replace HTTP links with HTTPS ones Date: Thu, 9 Jul 2020 19:47:24 +0200 Message-Id: <20200709174724.24570-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. drivers/edac/ti_edac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/edac/ti_edac.c b/drivers/edac/ti_edac.c index 8be3e89a510e..6e52796a0b41 100644 --- a/drivers/edac/ti_edac.c +++ b/drivers/edac/ti_edac.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 /* - * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/ + * Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/ * * Texas Instruments DDR3 ECC error correction and detection driver * -- 2.27.0