linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] serial/sunsu: fix refcount leak
@ 2018-12-12 16:01 Yangtao Li
  2018-12-12 16:05 ` Frank Lee
  2018-12-21 19:25 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Yangtao Li @ 2018-12-12 16:01 UTC (permalink / raw)
  To: davem, gregkh, jslaby, sparclinux
  Cc: daniel.lezcano, linux-serial, linux-kernel, Yangtao Li

The function of_find_node_by_path() acquires a reference to the node
returned by it and that reference needs to be dropped by its caller.

su_get_type() doesn't do that. The match node are used as an identifier
to compare against the current node, so we can directly drop the refcount
after getting the node from the path as it is not used as pointer.

Fix this by use a single variable and drop the refcount right after
of_find_node_by_path().

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 drivers/tty/serial/sunsu.c | 31 ++++++++++++++++++++++++++-----
 1 file changed, 26 insertions(+), 5 deletions(-)

diff --git a/drivers/tty/serial/sunsu.c b/drivers/tty/serial/sunsu.c
index 6cf3e9b0728f..c5428b0426a9 100644
--- a/drivers/tty/serial/sunsu.c
+++ b/drivers/tty/serial/sunsu.c
@@ -1394,22 +1394,43 @@ static inline struct console *SUNSU_CONSOLE(void)
 static enum su_type su_get_type(struct device_node *dp)
 {
 	struct device_node *ap = of_find_node_by_path("/aliases");
+	enum su_type rc = SU_PORT_PORT;
 
 	if (ap) {
 		const char *keyb = of_get_property(ap, "keyboard", NULL);
 		const char *ms = of_get_property(ap, "mouse", NULL);
+		struct device_node *match;
 
 		if (keyb) {
-			if (dp == of_find_node_by_path(keyb))
-				return SU_PORT_KBD;
+			match = of_find_node_by_path(keyb);
+
+			/*
+			 * The pointer is used as an identifier not
+			 * as a pointer, we can drop the refcount on
+			 * the of__node immediately after getting it.
+			 */
+			of_node_put(match);
+
+			if (dp == match) {
+				rc = SU_PORT_KBD;
+				goto out;
+			}
 		}
 		if (ms) {
-			if (dp == of_find_node_by_path(ms))
-				return SU_PORT_MS;
+			match = of_find_node_by_path(ms);
+
+			of_node_put(match);
+
+			if (dp == match) {
+				rc = SU_PORT_MS;
+				goto out;
+			}
 		}
 	}
 
-	return SU_PORT_PORT;
+out:
+	of_node_put(ap);
+	return rc;
 }
 
 static int su_probe(struct platform_device *op)
-- 
2.17.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] serial/sunsu: fix refcount leak
  2018-12-12 16:01 [PATCH] serial/sunsu: fix refcount leak Yangtao Li
@ 2018-12-12 16:05 ` Frank Lee
  2018-12-21 16:41   ` Frank Lee
  2018-12-21 19:25 ` David Miller
  1 sibling, 1 reply; 4+ messages in thread
From: Frank Lee @ 2018-12-12 16:05 UTC (permalink / raw)
  To: davem, gregkh, jslaby, sparclinux
  Cc: Daniel Lezcano, linux-serial, linux-kernel

Sorry for got to add a prefix(PATCH v2).
I hope this has no effect.

MBR,
Yangtao

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] serial/sunsu: fix refcount leak
  2018-12-12 16:05 ` Frank Lee
@ 2018-12-21 16:41   ` Frank Lee
  0 siblings, 0 replies; 4+ messages in thread
From: Frank Lee @ 2018-12-21 16:41 UTC (permalink / raw)
  To: davem, Greg Kroah-Hartman, jslaby, sparclinux
  Cc: Daniel Lezcano, linux-serial, Linux Kernel Mailing List

ping...

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] serial/sunsu: fix refcount leak
  2018-12-12 16:01 [PATCH] serial/sunsu: fix refcount leak Yangtao Li
  2018-12-12 16:05 ` Frank Lee
@ 2018-12-21 19:25 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2018-12-21 19:25 UTC (permalink / raw)
  To: tiny.windzz
  Cc: gregkh, jslaby, sparclinux, daniel.lezcano, linux-serial, linux-kernel

From: Yangtao Li <tiny.windzz@gmail.com>
Date: Wed, 12 Dec 2018 11:01:45 -0500

> The function of_find_node_by_path() acquires a reference to the node
> returned by it and that reference needs to be dropped by its caller.
> 
> su_get_type() doesn't do that. The match node are used as an identifier
> to compare against the current node, so we can directly drop the refcount
> after getting the node from the path as it is not used as pointer.
> 
> Fix this by use a single variable and drop the refcount right after
> of_find_node_by_path().
> 
> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>

Applied.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-12-21 19:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-12 16:01 [PATCH] serial/sunsu: fix refcount leak Yangtao Li
2018-12-12 16:05 ` Frank Lee
2018-12-21 16:41   ` Frank Lee
2018-12-21 19:25 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).