linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: "Alexander A. Klimov" <grandmaster@al2klimov.de>
Cc: ben.dooks@codethink.co.uk, swboyd@chromium.org, arnd@arndb.de,
	megous@megous.com, linux-input@vger.kernel.org,
	rydberg@bitmath.org, m.felsch@pengutronix.de,
	Henk.Vergonet@gmail.com, linux-kernel@vger.kernel.org,
	ronald@innovation.ch, lee.jones@linaro.org, Anson.Huang@nxp.com,
	corbet@lwn.net, christophe.jaillet@wanadoo.fr,
	marcus.folkesson@gmail.com, p.zabel@pengutronix.de,
	luzmaximilian@gmail.com, robh+dt@kernel.org,
	linux-doc@vger.kernel.org, andriy.shevchenko@linux.intel.com,
	mylene.josserand@bootlin.com, usbb2k-api-dev@nongnu.org,
	oneukum@suse.com, linus.walleij@linaro.org, jeff@labundy.com,
	masneyb@onstation.org, james.hilliard1@gmail.com,
	devicetree@vger.kernel.org, a.fatoum@pengutronix.de,
	krzk@kernel.org, dmitry.torokhov@gmail.com
Subject: Re: [PATCH] Replace HTTP links with HTTPS ones: input drivers
Date: Wed, 15 Jul 2020 15:43:09 -0600	[thread overview]
Message-ID: <20200715214309.GA867493@bogus> (raw)
In-Reply-To: <20200705074959.22533-1-grandmaster@al2klimov.de>

On Sun, 05 Jul 2020 09:49:59 +0200, Alexander A. Klimov wrote:
> 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 both the HTTP and HTTPS versions
>           return 200 OK and serve the same content:
>             Replace HTTP with HTTPS.
> 
> Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de>
> ---
>  Continuing my work started at 93431e0607e5.
> 
>  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
> 
>  .../devicetree/bindings/input/ps2keyb-mouse-apbps2.txt        | 2 +-
>  .../devicetree/bindings/input/rmi4/rmi_2d_sensor.txt          | 2 +-
>  Documentation/devicetree/bindings/input/rmi4/rmi_f01.txt      | 2 +-
>  Documentation/devicetree/bindings/input/ti,drv260x.txt        | 2 +-
>  Documentation/devicetree/bindings/input/ti,drv2665.txt        | 2 +-
>  Documentation/devicetree/bindings/input/ti,drv2667.txt        | 2 +-
>  Documentation/input/devices/appletouch.rst                    | 2 +-
>  Documentation/input/devices/bcm5974.rst                       | 4 ++--
>  Documentation/input/devices/iforce-protocol.rst               | 2 +-
>  Documentation/input/devices/joystick-parport.rst              | 2 +-
>  Documentation/input/devices/ntrig.rst                         | 2 +-
>  Documentation/input/devices/pxrc.rst                          | 2 +-
>  Documentation/input/multi-touch-protocol.rst                  | 2 +-
>  drivers/input/keyboard/Kconfig                                | 2 +-
>  drivers/input/keyboard/lkkbd.c                                | 2 +-
>  drivers/input/keyboard/opencores-kbd.c                        | 2 +-
>  drivers/input/keyboard/tca8418_keypad.c                       | 2 +-
>  drivers/input/misc/Kconfig                                    | 2 +-
>  drivers/input/misc/cm109.c                                    | 2 +-
>  drivers/input/misc/gpio_decoder.c                             | 2 +-
>  drivers/input/misc/palmas-pwrbutton.c                         | 2 +-
>  drivers/input/misc/powermate.c                                | 2 +-
>  drivers/input/misc/tps65218-pwrbutton.c                       | 2 +-
>  drivers/input/misc/yealink.c                                  | 2 +-
>  drivers/input/mouse/vsxxxaa.c                                 | 2 +-
>  drivers/input/serio/apbps2.c                                  | 2 +-
>  drivers/input/touchscreen/edt-ft5x06.c                        | 2 +-
>  drivers/input/touchscreen/iqs5xx.c                            | 2 +-
>  drivers/input/touchscreen/mc13783_ts.c                        | 2 +-
>  drivers/input/touchscreen/ti_am335x_tsc.c                     | 2 +-
>  drivers/input/touchscreen/usbtouchscreen.c                    | 2 +-
>  include/uapi/linux/input-event-codes.h                        | 2 +-
>  32 files changed, 33 insertions(+), 33 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>

      parent reply	other threads:[~2020-07-15 21:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-05  7:49 [PATCH] Replace HTTP links with HTTPS ones: input drivers Alexander A. Klimov
2020-07-05 11:16 ` Marco Felsch
2020-07-15 21:43 ` Rob Herring [this message]

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=20200715214309.GA867493@bogus \
    --to=robh@kernel.org \
    --cc=Anson.Huang@nxp.com \
    --cc=Henk.Vergonet@gmail.com \
    --cc=a.fatoum@pengutronix.de \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=arnd@arndb.de \
    --cc=ben.dooks@codethink.co.uk \
    --cc=christophe.jaillet@wanadoo.fr \
    --cc=corbet@lwn.net \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=grandmaster@al2klimov.de \
    --cc=james.hilliard1@gmail.com \
    --cc=jeff@labundy.com \
    --cc=krzk@kernel.org \
    --cc=lee.jones@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luzmaximilian@gmail.com \
    --cc=m.felsch@pengutronix.de \
    --cc=marcus.folkesson@gmail.com \
    --cc=masneyb@onstation.org \
    --cc=megous@megous.com \
    --cc=mylene.josserand@bootlin.com \
    --cc=oneukum@suse.com \
    --cc=p.zabel@pengutronix.de \
    --cc=robh+dt@kernel.org \
    --cc=ronald@innovation.ch \
    --cc=rydberg@bitmath.org \
    --cc=swboyd@chromium.org \
    --cc=usbb2k-api-dev@nongnu.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;
as well as URLs for NNTP newsgroup(s).