what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

LG Felica Driver Dangerous set_fs Usage

LG Felica Driver Dangerous set_fs Usage
Posted Feb 9, 2017
Authored by Google Security Research, Mark Brand

The LG Felica driver performs a dangerous set_fs usage.

tags | advisory
SHA-256 | 5f2a0992eeb78e5f0e7011970487e4721cea768002f4fe1d89ffc9765b2c9f11

LG Felica Driver Dangerous set_fs Usage

Change Mirror Download
 LG: Felica driver dangerous set_fs usage 




There are multiple weaknesses in the use of KERNEL_DS in the LG felica drivers,
in /drivers/felica. See for example felica_i2c_open

/*
* Description :
* Input :
* Output :
*/
int felica_i2c_open (void)
{
mm_segment_t old_fs = get_fs();

FELICA_DEBUG_MSG_LOW("[FELICA_I2C] felica_i2c_open\n");

set_fs(KERNEL_DS);
fd = sys_open(FELICA_IC2_NAME, O_RDWR|O_NONBLOCK, 0);

FELICA_DEBUG_MSG_MED("[FELICA] cbal - sys_open fd : %d \n",fd);


if (fd < 0)
{
FELICA_DEBUG_MSG_HIGH("[FELICA_I2C] ERROR - felica_i2c_open : %d \n", fd);

return fd;
}

set_fs(old_fs);

return 0;
}

This code is setting KERNEL_DS, and there is a code-path in which it does not
restore USER_DS before returning; similarly to the other reported issue this can
be exploited to gain read/write access to kernel memory. This should be
triggerable from usermode by simply opening the maximum number of permitted open
files (ulimit -Sn), then opening the felica i2c device. The call to sys_open
will fail, triggering the error path and skipping the set_fs(old_fs) call.

(Every use of set_fs(KERNEL_DS) in the felica code appears to handle error cases
badly, failing to restore the original value).

The fact that this trick works suggests another issue with this code.
Calling sys_open from kernel code will insert the opened file descriptor
into the fd table of the current process. This means that userland can tamper
with this file descriptor while the kernel is expecting to be able to use it
safely; dup'ing it to another fd, closing it, reopening another file in it's
place. This makes it easy for userspace to cause errors at almost any place in
the felica driver's read/write handlers.

I haven't validated this issue on a device as it appears that the felica config options are only set in Japanese builds.

This bug is subject to a 90 day disclosure deadline. If 90 days elapse
without a broadly available patch, then the bug report will automatically
become visible to the public.




Found by: markbrand

Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    52 Files
  • 5
    Sep 5th
    0 Files
  • 6
    Sep 6th
    0 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    0 Files
  • 9
    Sep 9th
    0 Files
  • 10
    Sep 10th
    0 Files
  • 11
    Sep 11th
    0 Files
  • 12
    Sep 12th
    0 Files
  • 13
    Sep 13th
    0 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    0 Files
  • 17
    Sep 17th
    0 Files
  • 18
    Sep 18th
    0 Files
  • 19
    Sep 19th
    0 Files
  • 20
    Sep 20th
    0 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close