LCOV - code coverage report
Current view: top level - drivers/input - input-compat.c (source / functions) Hit Total Coverage
Test: landlock.info Lines: 0 38 0.0 %
Date: 2021-04-22 12:43:58 Functions: 0 3 0.0 %

          Line data    Source code
       1             : // SPDX-License-Identifier: GPL-2.0-only
       2             : /*
       3             :  * 32bit compatibility wrappers for the input subsystem.
       4             :  *
       5             :  * Very heavily based on evdev.c - Copyright (c) 1999-2002 Vojtech Pavlik
       6             :  */
       7             : 
       8             : #include <linux/export.h>
       9             : #include <linux/uaccess.h>
      10             : #include "input-compat.h"
      11             : 
      12             : #ifdef CONFIG_COMPAT
      13             : 
      14           0 : int input_event_from_user(const char __user *buffer,
      15             :                           struct input_event *event)
      16             : {
      17           0 :         if (in_compat_syscall() && !COMPAT_USE_64BIT_TIME) {
      18           0 :                 struct input_event_compat compat_event;
      19             : 
      20           0 :                 if (copy_from_user(&compat_event, buffer,
      21             :                                    sizeof(struct input_event_compat)))
      22           0 :                         return -EFAULT;
      23             : 
      24           0 :                 event->input_event_sec = compat_event.sec;
      25           0 :                 event->input_event_usec = compat_event.usec;
      26           0 :                 event->type = compat_event.type;
      27           0 :                 event->code = compat_event.code;
      28           0 :                 event->value = compat_event.value;
      29             : 
      30             :         } else {
      31           0 :                 if (copy_from_user(event, buffer, sizeof(struct input_event)))
      32           0 :                         return -EFAULT;
      33             :         }
      34             : 
      35             :         return 0;
      36             : }
      37             : 
      38           0 : int input_event_to_user(char __user *buffer,
      39             :                         const struct input_event *event)
      40             : {
      41           0 :         if (in_compat_syscall() && !COMPAT_USE_64BIT_TIME) {
      42           0 :                 struct input_event_compat compat_event;
      43             : 
      44           0 :                 compat_event.sec = event->input_event_sec;
      45           0 :                 compat_event.usec = event->input_event_usec;
      46           0 :                 compat_event.type = event->type;
      47           0 :                 compat_event.code = event->code;
      48           0 :                 compat_event.value = event->value;
      49             : 
      50           0 :                 if (copy_to_user(buffer, &compat_event,
      51             :                                  sizeof(struct input_event_compat)))
      52           0 :                         return -EFAULT;
      53             : 
      54             :         } else {
      55           0 :                 if (copy_to_user(buffer, event, sizeof(struct input_event)))
      56           0 :                         return -EFAULT;
      57             :         }
      58             : 
      59             :         return 0;
      60             : }
      61             : 
      62           0 : int input_ff_effect_from_user(const char __user *buffer, size_t size,
      63             :                               struct ff_effect *effect)
      64             : {
      65           0 :         if (in_compat_syscall()) {
      66           0 :                 struct ff_effect_compat *compat_effect;
      67             : 
      68           0 :                 if (size != sizeof(struct ff_effect_compat))
      69             :                         return -EINVAL;
      70             : 
      71             :                 /*
      72             :                  * It so happens that the pointer which needs to be changed
      73             :                  * is the last field in the structure, so we can retrieve the
      74             :                  * whole thing and replace just the pointer.
      75             :                  */
      76           0 :                 compat_effect = (struct ff_effect_compat *)effect;
      77             : 
      78           0 :                 if (copy_from_user(compat_effect, buffer,
      79             :                                    sizeof(struct ff_effect_compat)))
      80           0 :                         return -EFAULT;
      81             : 
      82           0 :                 if (compat_effect->type == FF_PERIODIC &&
      83           0 :                     compat_effect->u.periodic.waveform == FF_CUSTOM)
      84           0 :                         effect->u.periodic.custom_data =
      85           0 :                                 compat_ptr(compat_effect->u.periodic.custom_data);
      86             :         } else {
      87           0 :                 if (size != sizeof(struct ff_effect))
      88             :                         return -EINVAL;
      89             : 
      90           0 :                 if (copy_from_user(effect, buffer, sizeof(struct ff_effect)))
      91           0 :                         return -EFAULT;
      92             :         }
      93             : 
      94             :         return 0;
      95             : }
      96             : 
      97             : #else
      98             : 
      99             : int input_event_from_user(const char __user *buffer,
     100             :                          struct input_event *event)
     101             : {
     102             :         if (copy_from_user(event, buffer, sizeof(struct input_event)))
     103             :                 return -EFAULT;
     104             : 
     105             :         return 0;
     106             : }
     107             : 
     108             : int input_event_to_user(char __user *buffer,
     109             :                         const struct input_event *event)
     110             : {
     111             :         if (copy_to_user(buffer, event, sizeof(struct input_event)))
     112             :                 return -EFAULT;
     113             : 
     114             :         return 0;
     115             : }
     116             : 
     117             : int input_ff_effect_from_user(const char __user *buffer, size_t size,
     118             :                               struct ff_effect *effect)
     119             : {
     120             :         if (size != sizeof(struct ff_effect))
     121             :                 return -EINVAL;
     122             : 
     123             :         if (copy_from_user(effect, buffer, sizeof(struct ff_effect)))
     124             :                 return -EFAULT;
     125             : 
     126             :         return 0;
     127             : }
     128             : 
     129             : #endif /* CONFIG_COMPAT */
     130             : 
     131             : EXPORT_SYMBOL_GPL(input_event_from_user);
     132             : EXPORT_SYMBOL_GPL(input_event_to_user);
     133             : EXPORT_SYMBOL_GPL(input_ff_effect_from_user);

Generated by: LCOV version 1.14