From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753943AbcIBUdu (ORCPT ); Fri, 2 Sep 2016 16:33:50 -0400 Received: from mail-it0-f47.google.com ([209.85.214.47]:37632 "EHLO mail-it0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751974AbcIBUdt (ORCPT ); Fri, 2 Sep 2016 16:33:49 -0400 Subject: Re: [Linaro-mm-sig] [PATCHv2 3/4] staging: android: ion: Add an ioctl for ABI checking To: Arnd Bergmann , linaro-mm-sig@lists.linaro.org References: <1472769644-11039-1-git-send-email-labbott@redhat.com> <1472769644-11039-4-git-send-email-labbott@redhat.com> <7145471.hhkX02hEGi@wuerfel> Cc: Sumit Semwal , John Stultz , =?UTF-8?Q?Arve_Hj=c3=b8nnev=c3=a5g?= , Riley Andrews , devel@driverdev.osuosl.org, Jon Medhurst , Android Kernel Team , Liviu Dudau , linux-kernel@vger.kernel.org, Jeremy Gebben , Eun Taik Lee , Greg Kroah-Hartman , Brian Starkey , Chen Feng From: Laura Abbott Message-ID: <6d37519b-fc92-1cdd-c7d8-b4eaa0d17089@redhat.com> Date: Fri, 2 Sep 2016 13:33:44 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <7145471.hhkX02hEGi@wuerfel> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/02/2016 02:02 AM, Arnd Bergmann wrote: > On Thursday, September 1, 2016 3:40:43 PM CEST Laura Abbott wrote: > >> --- a/drivers/staging/android/ion/ion-ioctl.c >> +++ b/drivers/staging/android/ion/ion-ioctl.c >> @@ -22,6 +22,29 @@ >> #include "ion_priv.h" >> #include "compat_ion.h" >> >> +union ion_ioctl_arg { >> + struct ion_fd_data fd; >> + struct ion_allocation_data allocation; >> + struct ion_handle_data handle; >> + struct ion_custom_data custom; >> + struct ion_abi_version abi_version; >> +}; > > Are you introducing this, or just clarifying the defintion of the > existing interface. For new interfaces, we should not have a union > as an ioctl argument. Instead each ioctl command should have one > specific structure (or better a scalar argument). > This was just a structure inside ion_ioctl. I pulled it out for the validate function. It's not an actual argument to any ioctl from userspace. ion_ioctl copies using _IOC_SIZE. >> +static int validate_ioctl_arg(unsigned int cmd, union ion_ioctl_arg *arg) >> +{ >> + int ret = 0; >> + >> + switch (cmd) { >> + case ION_IOC_ABI_VERSION: >> + ret = arg->abi_version.reserved != 0; >> + break; >> + default: >> + break; >> + } >> + >> + return ret ? -EINVAL : 0; >> +} > > I agree with Greg, ioctl interfaces should normally not be versioned, > the usual way is to try a command and see if it fails or not. > The concern was trying ioctls that wouldn't actually fail or would have some other unexpected side effect. My conclusion from the other thread was that assuming we don't botch up adding new ioctls in the future or make incompatible changes to these in the future we shouldn't technically need it. I was still trying to hedge my bets against the future but that might just be making the problem worse? >> +/** >> + * struct ion_abi_version >> + * >> + * @version - current ABI version >> + */ >> + >> +#define ION_ABI_VERSION KERNEL_VERSION(0, 1, 0) >> + >> +struct ion_abi_version { >> + __u32 abi_version; >> + __u32 reserved; >> +}; >> + > > This interface doesn't really need a "reserved" field, you could > as well use a __u32 by itself. If you ever need a second field, > just add a new command number. > The botching-ioctls.txt document suggested everything should be aligned to 64-bits. Was I interpreting that too literally? > Arnd > Thanks, Laura