09 Jan, 2020

1 commit

  • commit 6b2daec19094a90435abe67d16fb43b1a5527254 upstream.

    Unlike FICLONE, all of those take a pointer argument; they do need
    compat_ptr() applied to arg.

    Fixes: d79bdd52d8be ("vfs: wire up compat ioctl for CLONE/CLONE_RANGE")
    Fixes: 54dbc1517237 ("vfs: hoist the btrfs deduplication ioctl to the vfs")
    Fixes: ceac204e1da9 ("fs: make fiemap work from compat_ioctl")
    Signed-off-by: Al Viro
    Signed-off-by: Arnd Bergmann
    Signed-off-by: Greg Kroah-Hartman

    Al Viro
     

31 Jul, 2019

1 commit

  • Support for handling the PPPOEIOCSFWD ioctl in compat mode was added in
    linux-2.5.69 along with hundreds of other commands, but was always broken
    sincen only the structure is compatible, but the command number is not,
    due to the size being sizeof(size_t), or at first sizeof(sizeof((struct
    sockaddr_pppox)), which is different on 64-bit architectures.

    Guillaume Nault adds:

    And the implementation was broken until 2016 (see 29e73269aa4d ("pppoe:
    fix reference counting in PPPoE proxy")), and nobody ever noticed. I
    should probably have removed this ioctl entirely instead of fixing it.
    Clearly, it has never been used.

    Fix it by adding a compat_ioctl handler for all pppoe variants that
    translates the command number and then calls the regular ioctl function.

    All other ioctl commands handled by pppoe are compatible between 32-bit
    and 64-bit, and require compat_ptr() conversion.

    This should apply to all stable kernels.

    Acked-by: Guillaume Nault
    Signed-off-by: Arnd Bergmann
    Signed-off-by: David S. Miller

    Arnd Bergmann
     

30 Oct, 2018

1 commit

  • Pull media updates from Mauro Carvalho Chehab:

    - new dvb frontend driver: lnbh29

    - new sensor drivers: imx319 and imx 355

    - some old soc_camera driver renames to avoid conflict with new
    drivers

    - new i.MX Pixel Pipeline (PXP) mem-to-mem platform driver

    - a new V4L2 frontend for the FWHT codec

    - several other improvements, bug fixes, code cleanups, etc

    * tag 'media/v4.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (289 commits)
    media: rename soc_camera I2C drivers
    media: cec: forgot to cancel delayed work
    media: vivid: Support 480p for webcam capture
    media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD
    media: vivid: Add 16-bit bayer to format list
    media: v4l2-tpg-core: Add 16-bit bayer
    media: pvrusb2: replace `printk` with `pr_*`
    media: venus: vdec: fix decoded data size
    media: cx231xx: fix potential sign-extension overflow on large shift
    media: dt-bindings: media: rcar_vin: add device tree support for r8a7744
    media: isif: fix a NULL pointer dereference bug
    media: exynos4-is: make const array config_ids static
    media: cx23885: make const array addr_list static
    media: ivtv: make const array addr_list static
    media: bttv-input: make const array addr_list static
    media: cx18: Don't check for address of video_dev
    media: dw9807-vcm: Fix probe error handling
    media: dw9714: Remove useless error message
    media: dw9714: Fix error handling in probe function
    media: cec: name for RC passthrough device does not need 'RC for'
    ...

    Linus Torvalds
     

26 Oct, 2018

1 commit

  • Pull compat_ioctl fixes from Al Viro:
    "A bunch of compat_ioctl fixes, mostly in bluetooth.

    Hopefully, most of fs/compat_ioctl.c will get killed off over the next
    few cycles; between this, tty series already merged and Arnd's work
    this cycle ought to take a good chunk out of the damn thing..."

    * 'work.compat' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
    hidp: fix compat_ioctl
    hidp: constify hidp_connection_add()
    cmtp: fix compat_ioctl
    bnep: fix compat_ioctl
    compat_ioctl: trim the pointless includes

    Linus Torvalds
     

13 Oct, 2018

4 commits


14 Sep, 2018

1 commit

  • ioctls that are
    * callable only via tty_ioctl()
    * not driver-specific
    * not demand data structure conversions
    * either always need passing arg as is or always demand compat_ptr()
    get intercepted in tty_compat_ioctl() from the very beginning and
    redirecter to tty_ioctl(). As the result, their entries in fs/compat_ioctl.c
    (some of those had been missing, BTW) got removed, as well as
    n_tty_compat_ioctl_helper() (now it's never called with any cmd it would accept).

    Signed-off-by: Al Viro

    Al Viro
     

12 Sep, 2018

6 commits

  • The VIDEO_STILLPICTURE is only implemented by one driver, while
    VIDEO_GET_EVENT has two users in tree. In both cases, it is fairly
    easy to handle the compat ioctls in the native handler rather
    than relying on translation in fs/compat_ioctls.

    In effect, this means that now the drivers implement both structure
    layouts in both native and compat mode, but I don't see anything
    wrong with that.

    Signed-off-by: Arnd Bergmann
    Signed-off-by: Mauro Carvalho Chehab

    Arnd Bergmann
     
  • Most DVB audio and video ioctl commands are completely compatible,
    and are implemented by just two drivers: ttpci and ivtv. In both
    cases, we can use the same ioctl handler for both native and
    compat ioctl handling, and remove the entries from the global
    lookup table.

    In case of ttpci, this directly hooks into the file_operations
    structure, and for ivtv, we have to set the compat_ioctl32
    method in v4l2_file_operations. For all I can tell, setting it
    to video_ioctl2 will still do the right thing for all commands.

    Note that for the VIDEO_STILLPICTURE and VIDEO_GET_EVENT commands,
    a translation handler in fs/compat_ioctl.c is still used. This
    works because the command numbers are different on 32-bit
    systems.

    Signed-off-by: Arnd Bergmann
    Signed-off-by: Mauro Carvalho Chehab

    Arnd Bergmann
     
  • All the CEC ioctls are compatible, and they are only implemented
    in one driver, so we can simply let this driver handle them
    natively.

    Signed-off-by: Arnd Bergmann
    Reviewed-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Arnd Bergmann
     
  • All dmx ioctls are compatible, and they are only implemented
    in one file, so we can replace the list of commands in
    fs/compat_ioctl.c with a single line in dmxdev.

    Signed-off-by: Arnd Bergmann
    Signed-off-by: Mauro Carvalho Chehab

    Arnd Bergmann
     
  • The VIDEO_GET_EVENT and VIDEO_STILLPICTURE was added back in 2005 but
    it never worked because the command number is wrong.

    Using the right command number means we have a better chance of them
    actually doing the right thing, though clearly nobody has ever tried
    it successfully.

    I noticed these while auditing the remaining users of compat_time_t
    for y2038 bugs. This one is fine in that regard, it just never did
    anything.

    Fixes: 6e87abd0b8cb ("[DVB]: Add compat ioctl handling.")

    Signed-off-by: Arnd Bergmann
    Signed-off-by: Mauro Carvalho Chehab

    Arnd Bergmann
     
  • Signed-off-by: Al Viro

    Al Viro
     

11 Sep, 2018

4 commits


31 Jul, 2018

2 commits


27 Jul, 2018

1 commit


08 Jun, 2018

2 commits

  • Remove includes that aren't needed from autofs (and fs/compat_ioctl.c).

    Link: http://lkml.kernel.org/r/152635085258.5968.9743527195522188148.stgit@pluto.themaw.net
    Signed-off-by: Ian Kent
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Ian Kent
     
  • The autofs module has long since been removed so there's no need to have
    two separate include files for autofs.

    Link: http://lkml.kernel.org/r/152626703024.28589.9571964661718767929.stgit@pluto.themaw.net
    Signed-off-by: Ian Kent
    Cc: Al Viro
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Ian Kent
     

29 Dec, 2017

1 commit


13 Dec, 2017

1 commit


18 Nov, 2017

2 commits

  • Pull misc vfs updates from Al Viro:
    "Assorted stuff, really no common topic here"

    * 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
    vfs: grab the lock instead of blocking in __fd_install during resizing
    vfs: stop clearing close on exec when closing a fd
    include/linux/fs.h: fix comment about struct address_space
    fs: make fiemap work from compat_ioctl
    coda: fix 'kernel memory exposure attempt' in fsync
    pstore: remove unneeded unlikely()
    vfs: remove unneeded unlikely()
    stubs for mount_bdev() and kill_block_super() in !CONFIG_BLOCK case
    make vfs_ustat() static
    do_handle_open() should be static
    elf_fdpic: fix unused variable warning
    fold destroy_super() into __put_super()
    new helper: destroy_unused_super()
    fix address space warnings in ipc/
    acct.h: get rid of detritus

    Linus Torvalds
     
  • Pull compat and uaccess updates from Al Viro:

    - {get,put}_compat_sigset() series

    - assorted compat ioctl stuff

    - more set_fs() elimination

    - a few more timespec64 conversions

    - several removals of pointless access_ok() in places where it was
    followed only by non-__ variants of primitives

    * 'misc.compat' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (24 commits)
    coredump: call do_unlinkat directly instead of sys_unlink
    fs: expose do_unlinkat for built-in callers
    ext4: take handling of EXT4_IOC_GROUP_ADD into a helper, get rid of set_fs()
    ipmi: get rid of pointless access_ok()
    pi433: sanitize ioctl
    cxlflash: get rid of pointless access_ok()
    mtdchar: get rid of pointless access_ok()
    r128: switch compat ioctls to drm_ioctl_kernel()
    selection: get rid of field-by-field copyin
    VT_RESIZEX: get rid of field-by-field copyin
    i2c compat ioctls: move to ->compat_ioctl()
    sched_rr_get_interval(): move compat to native, get rid of set_fs()
    mips: switch to {get,put}_compat_sigset()
    sparc: switch to {get,put}_compat_sigset()
    s390: switch to {get,put}_compat_sigset()
    ppc: switch to {get,put}_compat_sigset()
    parisc: switch to {get,put}_compat_sigset()
    get_compat_sigset()
    get rid of {get,put}_compat_itimerspec()
    io_getevents: Use timespec64 to represent timeouts
    ...

    Linus Torvalds
     

06 Nov, 2017

1 commit

  • We don't need to do anything special with fiemap to make it work with a
    64bit kernel from 32bit userspace, so just go down to do_vfs_ioctl().
    Without this patch we were incorrectly failing to do fiemap with a 32bit
    userspace on a 64bit kernel.

    Signed-off-by: Josef Bacik
    Reviewed-by: Christoph Hellwig
    Signed-off-by: Al Viro

    Josef Bacik
     

02 Nov, 2017

1 commit

  • Many source files in the tree are missing licensing information, which
    makes it harder for compliance tools to determine the correct license.

    By default all files without license information are under the default
    license of the kernel, which is GPL version 2.

    Update the files which contain no license information with the 'GPL-2.0'
    SPDX license identifier. The SPDX identifier is a legally binding
    shorthand, which can be used instead of the full boiler plate text.

    This patch is based on work done by Thomas Gleixner and Kate Stewart and
    Philippe Ombredanne.

    How this work was done:

    Patches were generated and checked against linux-4.14-rc6 for a subset of
    the use cases:
    - file had no licensing information it it.
    - file was a */uapi/* one with no licensing information in it,
    - file was a */uapi/* one with existing licensing information,

    Further patches will be generated in subsequent months to fix up cases
    where non-standard license headers were used, and references to license
    had to be inferred by heuristics based on keywords.

    The analysis to determine which SPDX License Identifier to be applied to
    a file was done in a spreadsheet of side by side results from of the
    output of two independent scanners (ScanCode & Windriver) producing SPDX
    tag:value files created by Philippe Ombredanne. Philippe prepared the
    base worksheet, and did an initial spot review of a few 1000 files.

    The 4.13 kernel was the starting point of the analysis with 60,537 files
    assessed. Kate Stewart did a file by file comparison of the scanner
    results in the spreadsheet to determine which SPDX license identifier(s)
    to be applied to the file. She confirmed any determination that was not
    immediately clear with lawyers working with the Linux Foundation.

    Criteria used to select files for SPDX license identifier tagging was:
    - Files considered eligible had to be source code files.
    - Make and config files were included as candidates if they contained >5
    lines of source
    - File already had some variant of a license header in it (even if
    Reviewed-by: Philippe Ombredanne
    Reviewed-by: Thomas Gleixner
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

20 Sep, 2017

1 commit


05 Sep, 2017

1 commit


09 Jul, 2017

1 commit


09 Jun, 2017

1 commit

  • In order to avoid future diversions between fs/compat_ioctl.c and
    drivers/tty/pty.c, define .compat_ioctl callbacks for the relevant
    tty_operations structs. Since both pty_unix98_ioctl() and
    pty_bsd_ioctl() are compatible between 32-bit and 64-bit userspace no
    special translation is required.

    Signed-off-by: Aleksa Sarai
    Reviewed-by: Arnd Bergmann
    Signed-off-by: Greg Kroah-Hartman

    Aleksa Sarai
     

26 May, 2017

1 commit


30 Apr, 2017

1 commit


25 Dec, 2016

1 commit


24 Sep, 2016

1 commit


28 Jun, 2016

1 commit

  • The CEC ioctls didn't have compat32 support, so they returned -ENOTTY
    when used in a 32 bit application on a 64 bit kernel.

    Since all the CEC ioctls are 32-bit compatible adding support for this
    API is trivial.

    Signed-off-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Hans Verkuil
     

15 Feb, 2016

1 commit