From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935755Ab3BOLrA (ORCPT ); Fri, 15 Feb 2013 06:47:00 -0500 Received: from mail-ee0-f51.google.com ([74.125.83.51]:41838 "EHLO mail-ee0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932972Ab3BOLq5 (ORCPT ); Fri, 15 Feb 2013 06:46:57 -0500 MIME-Version: 1.0 In-Reply-To: <20130215112911.68A98E0085@blue.fi.intel.com> References: <20130215112911.68A98E0085@blue.fi.intel.com> Date: Fri, 15 Feb 2013 12:46:55 +0100 Message-ID: Subject: Re: uhid: broken interface: 32/64-bit compatibility From: David Herrmann To: "Kirill A. Shutemov" Cc: linux-api@vger.kernel.org, linux-input@vger.kernel.org, Jiri Kosina , RavindranathX Doddi , Greg Kroah-Hartman , Linus Torvalds , linux-kernel@vger.kernel.org, Marcel Holtmann , Johan Hedberg Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Kirill On Fri, Feb 15, 2013 at 12:29 PM, Kirill A. Shutemov wrote: > Hi David and all, > > There's claim in uhid.h that the interface is "compatible even between > architectures". But it obviously is not true: struct uhid_create_req > contains pointer which breaks everything. > > The easy way to demonstrate the issue is compile uhid-example.c with -m32 > and try to run it on 64 bit kernel. Creating of the device will fail. Indeed, we missed that. We should probably also notify the HIDP developers as "struct hidp_connadd_req" suffers from the same problems. (CC'ed) > I don't see an easy way to fix this. Few options: > > 1. Replace the pointer with u64. It will fix the issue, but it breaks ABI > which is never a good idea. Not sure how many users interface already > has. The only users I am aware of is an HID debugging tool and experimental HoG Bluetooth support (bluez). Maybe Marcel or Johan can comment whether this is already used by bluez-5? If it is, then we shouldn't break ABI and go with #2+#3. Otherwise, I think changing to u64 should be ok. On the other hand, it would break any future build for older stable kernels so not breaking ABI is probably the best idea. Any comments? I can add a COMPAT fix and a comment to fix this in the next version of UHID_CREATE. Thanks! David