Re: [PATCH] Bad IOCTLs - time to fix them?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Em Mon, 28 Dec 2020 16:21:05 +0100
Hans Petter Selasky <hps@xxxxxxxxxxx> escreveu:

> Hi,
> 
> For some years now, FreeBSD's webcamd project at GitHub has carried 
> patches to fix up IOCTL's in the Linux Kernel and I'm reaching out once 
> again, that the bad read/write bits for certain IOCTLs may be seen as a 
> security issue and should be fixed. These are:
> 

> diff --git a/include/uapi/linux/dvb/ca.h b/include/uapi/linux/dvb/ca.h
> index dffa59e95ebb..c4533a16d93e 100644
> --- a/include/uapi/linux/dvb/ca.h
> +++ b/include/uapi/linux/dvb/ca.h
> @@ -134,9 +134,17 @@ struct ca_descr {
> 
>   #define CA_RESET          _IO('o', 128)
>   #define CA_GET_CAP        _IOR('o', 129, struct ca_caps)
> +/*
> + * At least CA_GET_SLOT_INFO and CA_GET_MSG need to be _IOWR not _IOR.
> + * This is wrong on Linux too but there the driver doesn't care.
> + *
>   #define CA_GET_SLOT_INFO  _IOR('o', 130, struct ca_slot_info)
>   #define CA_GET_DESCR_INFO _IOR('o', 131, struct ca_descr_info)
>   #define CA_GET_MSG        _IOR('o', 132, struct ca_msg)
> +*/
> +#define CA_GET_SLOT_INFO  _IOWR('o', 130, struct ca_slot_info)
> +#define CA_GET_DESCR_INFO _IOR('o', 131, struct ca_descr_info)
> +#define CA_GET_MSG        _IOWR('o', 132, struct ca_msg)
>   #define CA_SEND_MSG       _IOW('o', 133, struct ca_msg)
>   #define CA_SET_DESCR      _IOW('o', 134, struct ca_descr)
> 
> diff --git a/include/uapi/linux/dvb/frontend.h 
> b/include/uapi/linux/dvb/frontend.h
> index 4f9b4551c534..a5e950404072 100644
> --- a/include/uapi/linux/dvb/frontend.h
> +++ b/include/uapi/linux/dvb/frontend.h
> @@ -908,7 +908,8 @@ struct dtv_properties {
>   #define FE_DISHNETWORK_SEND_LEGACY_CMD _IO('o', 80) /* unsigned int */
> 
>   #define FE_SET_PROPERTY		   _IOW('o', 82, struct dtv_properties)
> -#define FE_GET_PROPERTY		   _IOR('o', 83, struct dtv_properties)
> +#define FE_GET_PROPERTY		   _IOW('o', 83, struct dtv_properties)
> +#define FE_GET_PROPERTY_OLD	   _IOR('o', 83, struct dtv_properties)
> 
>   #if defined(__DVB_CORE__) || !defined(__KERNEL__)

Commenting just the issues related to the media subsystem. You should
forward the evdev ones to linux-input@xxxxxxxxxxxxxxx.

This has been wrongly defined for so long time that I'm not sure if
it makes sense to fix.

If this is touched, we need to have _OLD versions for all the ioctls,
and the code also need to be changed in order to accept both ways.

So, at the current stage, this patch seems incomplete.

Thanks,
Mauro



[Index of Archives]     [Linux Input]     [Video for Linux]     [Gstreamer Embedded]     [Mplayer Users]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]

  Powered by Linux