]> Git Repo - linux.git/commitdiff
Input: synaptics - fix crash when enabling pass-through port
authorDmitry Torokhov <[email protected]>
Fri, 17 Jan 2025 17:23:40 +0000 (09:23 -0800)
committerDmitry Torokhov <[email protected]>
Tue, 21 Jan 2025 05:27:02 +0000 (21:27 -0800)
When enabling a pass-through port an interrupt might come before psmouse
driver binds to the pass-through port. However synaptics sub-driver
tries to access psmouse instance presumably associated with the
pass-through port to figure out if only 1 byte of response or entire
protocol packet needs to be forwarded to the pass-through port and may
crash if psmouse instance has not been attached to the port yet.

Fix the crash by introducing open() and close() methods for the port and
check if the port is open before trying to access psmouse instance.
Because psmouse calls serio_open() only after attaching psmouse instance
to serio port instance this prevents the potential crash.

Reported-by: Takashi Iwai <[email protected]>
Fixes: 100e16959c3c ("Input: libps2 - attach ps2dev instances as serio port's drvdata")
Link: https://bugzilla.suse.com/show_bug.cgi?id=1219522
Cc: [email protected]
Reviewed-by: Takashi Iwai <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
drivers/input/mouse/synaptics.c
drivers/input/mouse/synaptics.h

index 2735f86c23cc898ecb4964f11f17344008135c49..aba57abe6978828ec39d5393105ff65f93c5e9e8 100644 (file)
@@ -665,23 +665,50 @@ static void synaptics_pt_stop(struct serio *serio)
        priv->pt_port = NULL;
 }
 
+static int synaptics_pt_open(struct serio *serio)
+{
+       struct psmouse *parent = psmouse_from_serio(serio->parent);
+       struct synaptics_data *priv = parent->private;
+
+       guard(serio_pause_rx)(parent->ps2dev.serio);
+       priv->pt_port_open = true;
+
+       return 0;
+}
+
+static void synaptics_pt_close(struct serio *serio)
+{
+       struct psmouse *parent = psmouse_from_serio(serio->parent);
+       struct synaptics_data *priv = parent->private;
+
+       guard(serio_pause_rx)(parent->ps2dev.serio);
+       priv->pt_port_open = false;
+}
+
 static int synaptics_is_pt_packet(u8 *buf)
 {
        return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
 }
 
-static void synaptics_pass_pt_packet(struct serio *ptport, u8 *packet)
+static void synaptics_pass_pt_packet(struct synaptics_data *priv, u8 *packet)
 {
-       struct psmouse *child = psmouse_from_serio(ptport);
+       struct serio *ptport;
 
-       if (child && child->state == PSMOUSE_ACTIVATED) {
-               serio_interrupt(ptport, packet[1], 0);
-               serio_interrupt(ptport, packet[4], 0);
-               serio_interrupt(ptport, packet[5], 0);
-               if (child->pktsize == 4)
-                       serio_interrupt(ptport, packet[2], 0);
-       } else {
-               serio_interrupt(ptport, packet[1], 0);
+       ptport = priv->pt_port;
+       if (!ptport)
+               return;
+
+       serio_interrupt(ptport, packet[1], 0);
+
+       if (priv->pt_port_open) {
+               struct psmouse *child = psmouse_from_serio(ptport);
+
+               if (child->state == PSMOUSE_ACTIVATED) {
+                       serio_interrupt(ptport, packet[4], 0);
+                       serio_interrupt(ptport, packet[5], 0);
+                       if (child->pktsize == 4)
+                               serio_interrupt(ptport, packet[2], 0);
+               }
        }
 }
 
@@ -720,6 +747,8 @@ static void synaptics_pt_create(struct psmouse *psmouse)
        serio->write = synaptics_pt_write;
        serio->start = synaptics_pt_start;
        serio->stop = synaptics_pt_stop;
+       serio->open = synaptics_pt_open;
+       serio->close = synaptics_pt_close;
        serio->parent = psmouse->ps2dev.serio;
 
        psmouse->pt_activate = synaptics_pt_activate;
@@ -1216,11 +1245,10 @@ static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
 
                if (SYN_CAP_PASS_THROUGH(priv->info.capabilities) &&
                    synaptics_is_pt_packet(psmouse->packet)) {
-                       if (priv->pt_port)
-                               synaptics_pass_pt_packet(priv->pt_port,
-                                                        psmouse->packet);
-               } else
+                       synaptics_pass_pt_packet(priv, psmouse->packet);
+               } else {
                        synaptics_process_packet(psmouse);
+               }
 
                return PSMOUSE_FULL_PACKET;
        }
index 899aee598632b9575a32137c75994c34f4ac8960..3853165b6b3a06d1a4cfe7d6fef7f7a3ded93e7d 100644 (file)
@@ -188,6 +188,7 @@ struct synaptics_data {
        bool disable_gesture;                   /* disable gestures */
 
        struct serio *pt_port;                  /* Pass-through serio port */
+       bool pt_port_open;
 
        /*
         * Last received Advanced Gesture Mode (AGM) packet. An AGM packet
This page took 0.061634 seconds and 4 git commands to generate.