lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 7 Aug 2020 21:07:07 +0200
From:   Stephen Kitt <steve@....org>
To:     Guenter Roeck <linux@...ck-us.net>
Cc:     Jean Delvare <jdelvare@...e.com>, linux-hwmon@...r.kernel.org,
        linux-i2c@...r.kernel.org, linux-kernel@...r.kernel.org,
        Wolfram Sang <wsa@...nel.org>
Subject: Re: [PATCH v3] hwmon/pmbus: use simple i2c probe function

On Fri, 7 Aug 2020 10:32:31 -0700, Guenter Roeck <linux@...ck-us.net> wrote:
> On Fri, Aug 07, 2020 at 06:28:01PM +0200, Stephen Kitt wrote:
> >  
> > -static int ltc2978_probe(struct i2c_client *client,
> > -			 const struct i2c_device_id *id)
> > +static int ltc2978_probe(struct i2c_client *client)
> >  {
> >  	int i, chip_id;
> >  	struct ltc2978_data *data;
> > @@ -670,10 +669,10 @@ static int ltc2978_probe(struct i2c_client *client,
> >  		return chip_id;
> >  
> >  	data->id = chip_id;
> > -	if (data->id != id->driver_data)
> > +	if (strcmp(client->name, ltc2978_id[data->id].name) != 0)  
> 
> I was about to apply this patch, but this is problematic: It assumes that
> __stringify(id) == ltc2978_id[id].name and that ltc2978_id[id].driver_data
> == id. While that is curently the case (as far as I can see), it is still
> unsafe. I think it would be much safer to use i2c_match_id() here.

I’m not following the __stringify assumption, but I do get your point about
the driver_data being a valid index into the array; that was already baked
into the code, as

		dev_warn(&client->dev,
			 "Device mismatch: Configured %s, detected %s\n",
			 client->name,
			 ltc2978_id[data->id].name);

but I’ll fix both.

Similar assumptions are present in other drivers here IIRC, I’ll fix those
too.

Regards,

Stephen

Content of type "application/pgp-signature" skipped

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ