Received: by 2002:a25:e74b:0:0:0:0:0 with SMTP id e72csp977217ybh; Mon, 13 Jul 2020 06:21:01 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxO8zc1TSxqYcSMlMC98O7JVWed9WeHFgSv66NUiQ+j35w68aqiYPGVs1G8zIY1FS/z/beV X-Received: by 2002:a50:fc88:: with SMTP id f8mr60369595edq.314.1594646460880; Mon, 13 Jul 2020 06:21:00 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594646460; cv=none; d=google.com; s=arc-20160816; b=BzlyNwwKWVHYgDlgoPCMJkIRnqnwrCQfuyrxfY6mXpQdxrFUFh1zCIaB6HECBNlbOq d75iT1wJXnZmaCFRG/0jVwcwoot32QDnpsUdIhFYqvi/gvpUeA6mSLdDbCPrJxIzGOa+ L+Cx8FlF8aKkwsE8YHNfjVm9Pj16VtIUrYQzGpLXyU7KKB7BjyNBkBQJYX7CbcDuSzSh O6WszyfGdeNL14V1wN/Ja56+RYdg+iiE07XVNGGmqAfHmBjDKLWn1iOqfnG7OWH6TrXE oRShrpJwki+TX2Ovw6dYSE9o4JHjEm7arJf6lpBsyvFOEdEEmB5uJDQTAn0cLf24zCcb ru+g== 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=I2i76m4F+CWsV4hl+dXwQXkWAgi61LleunnznRaOsdY=; b=va+txv0HkURzP2KtwnujNSg1vF5NXDy2mgP7xBUefFN+pSklbXBTvs8OibHtSSq4Da G2UytUQdkNmYe4JlihF3/ikbT0U8VLY+xgKWjh/S/jgdgnFURXfRVgsrFO4V6rhpIRsl ocReVZze4OOz1OFCwHvc7sBhZde/5mQQxcpsdAIn1x85tUuWOnnJluUsxxSlxFLgLlPr nWGgsBCXkaKVRQuN07g1YU52TjCaB8DxfymzPnaOl2c+S3jjobU7hpVseqOkBk3jA2rX RzqmjFPCAb9gBfot8exfxWlEdM+l1ehJLVyYxtetcyUvi8pnUi3WFbSWdVaBtB2DJ3j+ ilsQ== 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 h1si9088966ejk.3.2020.07.13.06.20.37; Mon, 13 Jul 2020 06:21:00 -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 S1729845AbgGMNUE (ORCPT + 99 others); Mon, 13 Jul 2020 09:20:04 -0400 Received: from smtp.al2klimov.de ([78.46.175.9]:50400 "EHLO smtp.al2klimov.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729814AbgGMNUB (ORCPT ); Mon, 13 Jul 2020 09:20:01 -0400 Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by smtp.al2klimov.de (Postfix) with ESMTPA id 86441BC0CA; Mon, 13 Jul 2020 13:19:59 +0000 (UTC) From: "Alexander A. Klimov" To: myungjoo.ham@samsung.com, cw00.choi@samsung.com, linux-kernel@vger.kernel.org Cc: "Alexander A. Klimov" Subject: [PATCH] extcon: Replace HTTP links with HTTPS ones Date: Mon, 13 Jul 2020 15:19:53 +0200 Message-Id: <20200713131953.34489-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 just 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. Sorry again to all maintainers who complained about subject lines. Now I realized that you want an actually perfect prefixes, not just subsystem ones. I tried my best... And yes, *I could* (at least half-)automate it. Impossible is nothing! :) drivers/extcon/extcon-palmas.c | 2 +- drivers/extcon/extcon-usb-gpio.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/extcon/extcon-palmas.c b/drivers/extcon/extcon-palmas.c index cea58d0cb457..e8e9eebe6b1d 100644 --- a/drivers/extcon/extcon-palmas.c +++ b/drivers/extcon/extcon-palmas.c @@ -2,7 +2,7 @@ /* * Palmas USB transceiver driver * - * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com + * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com * Author: Graeme Gregory * Author: Kishon Vijay Abraham I * Based on twl6030_usb.c diff --git a/drivers/extcon/extcon-usb-gpio.c b/drivers/extcon/extcon-usb-gpio.c index 98b5afa5b615..f06be6d4e2a9 100644 --- a/drivers/extcon/extcon-usb-gpio.c +++ b/drivers/extcon/extcon-usb-gpio.c @@ -2,7 +2,7 @@ /** * drivers/extcon/extcon-usb-gpio.c - USB GPIO extcon driver * - * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com + * Copyright (C) 2015 Texas Instruments Incorporated - https://www.ti.com * Author: Roger Quadros */ -- 2.27.0