mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] i2o: remove compile-time warnings
@ 2013-02-20 13:24 Hannes Reinecke
  2013-02-26 13:20 ` Jiri Kosina
  0 siblings, 1 reply; 2+ messages in thread
From: Hannes Reinecke @ 2013-02-20 13:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: Hannes Reinecke, Jiri Kosina

The compiler complains about invalid cast for i2o_config.
However, the ioctl passes us an 32-bit address, which we
have to assume is a valid 64-bit kernel address.
So we should cast this to 'unsigned long' before casting
it to a pointer.
Minimal fix, doesn't break anything which wasn't broken
before.

Cc: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Hannes Reinecke <hare@suse.de>

diff --git a/drivers/message/i2o/i2o_config.c b/drivers/message/i2o/i2o_config.c
index 5451bef..5b95dc1 100644
--- a/drivers/message/i2o/i2o_config.c
+++ b/drivers/message/i2o/i2o_config.c
@@ -883,10 +883,9 @@ static int i2o_cfg_passthru(unsigned long arg)
 			/* Copy in the user's SG buffer if necessary */
 			if (sg[i].
 			    flag_count & 0x04000000 /*I2O_SGL_FLAGS_DIR */ ) {
-				// TODO 64bit fix
-				if (copy_from_user
-				    (p->virt, (void __user *)sg[i].addr_bus,
-				     sg_size)) {
+				void __user *sg_addr = (void __user *)
+					(unsigned long)sg[i].addr_bus;
+				if (copy_from_user(p->virt, sg_addr, sg_size)) {
 					printk(KERN_DEBUG
 					       "%s: Could not copy SG buf %d FROM user\n",
 					       c->name, i);
@@ -937,11 +936,12 @@ static int i2o_cfg_passthru(unsigned long arg)
 			if (!
 			    (sg[j].
 			     flag_count & 0x4000000 /*I2O_SGL_FLAGS_DIR */ )) {
+				void __user *sg_addr = (void __user *)
+					(unsigned long)sg[j].addr_bus;
+
 				sg_size = sg[j].flag_count & 0xffffff;
-				// TODO 64bit fix
-				if (copy_to_user
-				    ((void __user *)sg[j].addr_bus, sg_list[j].virt,
-				     sg_size)) {
+				if (copy_to_user(sg_addr, sg_list[j].virt,
+						 sg_size)) {
 					printk(KERN_WARNING
 					       "%s: Could not copy %p TO user %x\n",
 					       c->name, sg_list[j].virt,

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] i2o: remove compile-time warnings
  2013-02-20 13:24 [PATCH] i2o: remove compile-time warnings Hannes Reinecke
@ 2013-02-26 13:20 ` Jiri Kosina
  0 siblings, 0 replies; 2+ messages in thread
From: Jiri Kosina @ 2013-02-26 13:20 UTC (permalink / raw)
  To: Hannes Reinecke; +Cc: linux-kernel

On Wed, 20 Feb 2013, Hannes Reinecke wrote:

> The compiler complains about invalid cast for i2o_config.
> However, the ioctl passes us an 32-bit address, which we
> have to assume is a valid 64-bit kernel address.

Umm, I find this explanation rather confusing, could you please formulate 
it in a more verbose way?

Also, looking at the code, all the 'TODO 64bit fix' scattered all over the 
place (and the comments being there since the beginning of time), makes me 
really wonder whether this whole thing doesn't require a much more 
thorough review of the user <-> kernel interface.

> So we should cast this to 'unsigned long' before casting
> it to a pointer.
> Minimal fix, doesn't break anything which wasn't broken
> before.
> 
> Cc: Jiri Kosina <jkosina@suse.cz>
> Signed-off-by: Hannes Reinecke <hare@suse.de>
> 
> diff --git a/drivers/message/i2o/i2o_config.c b/drivers/message/i2o/i2o_config.c
> index 5451bef..5b95dc1 100644
> --- a/drivers/message/i2o/i2o_config.c
> +++ b/drivers/message/i2o/i2o_config.c
> @@ -883,10 +883,9 @@ static int i2o_cfg_passthru(unsigned long arg)
>  			/* Copy in the user's SG buffer if necessary */
>  			if (sg[i].
>  			    flag_count & 0x04000000 /*I2O_SGL_FLAGS_DIR */ ) {
> -				// TODO 64bit fix
> -				if (copy_from_user
> -				    (p->virt, (void __user *)sg[i].addr_bus,
> -				     sg_size)) {
> +				void __user *sg_addr = (void __user *)
> +					(unsigned long)sg[i].addr_bus;
> +				if (copy_from_user(p->virt, sg_addr, sg_size)) {
>  					printk(KERN_DEBUG
>  					       "%s: Could not copy SG buf %d FROM user\n",
>  					       c->name, i);
> @@ -937,11 +936,12 @@ static int i2o_cfg_passthru(unsigned long arg)
>  			if (!
>  			    (sg[j].
>  			     flag_count & 0x4000000 /*I2O_SGL_FLAGS_DIR */ )) {
> +				void __user *sg_addr = (void __user *)
> +					(unsigned long)sg[j].addr_bus;
> +
>  				sg_size = sg[j].flag_count & 0xffffff;
> -				// TODO 64bit fix
> -				if (copy_to_user
> -				    ((void __user *)sg[j].addr_bus, sg_list[j].virt,
> -				     sg_size)) {
> +				if (copy_to_user(sg_addr, sg_list[j].virt,
> +						 sg_size)) {
>  					printk(KERN_WARNING
>  					       "%s: Could not copy %p TO user %x\n",
>  					       c->name, sg_list[j].virt,
> 

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-02-26 13:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-20 13:24 [PATCH] i2o: remove compile-time warnings Hannes Reinecke
2013-02-26 13:20 ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®