All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] bluetooth:hicp:Fix error handling in the function hidp_connection_del
@ 2015-12-29 20:55 Nicholas Krause
  2016-01-08 12:16 ` David Herrmann
  0 siblings, 1 reply; 2+ messages in thread
From: Nicholas Krause @ 2015-12-29 20:55 UTC (permalink / raw)
  To: marcel
  Cc: gustavo, johan.hedberg, davem, dh.herrmann, tedd.an,
	linux-bluetooth, netdev, linux-kernel

This fixes error handling in the function hidp_connection_del to
properly check if the internal call to hidp_send_ctrl_message has
failed by returning a error code and if so immediately return this
error code to the caller of hidp_connection_del to signal that a
failed call has occurred that needs to be handled by this function's
caller.

Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
---
 net/bluetooth/hidp/core.c | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
index f1a117f..13aa6d0 100644
--- a/net/bluetooth/hidp/core.c
+++ b/net/bluetooth/hidp/core.c
@@ -1360,6 +1360,7 @@ int hidp_connection_del(struct hidp_conndel_req *req)
 {
 	u32 valid_flags = BIT(HIDP_VIRTUAL_CABLE_UNPLUG);
 	struct hidp_session *session;
+	int err;
 
 	if (req->flags & ~valid_flags)
 		return -EINVAL;
@@ -1368,14 +1369,16 @@ int hidp_connection_del(struct hidp_conndel_req *req)
 	if (!session)
 		return -ENOENT;
 
-	if (req->flags & BIT(HIDP_VIRTUAL_CABLE_UNPLUG))
-		hidp_send_ctrl_message(session,
-				       HIDP_TRANS_HID_CONTROL |
-				         HIDP_CTRL_VIRTUAL_CABLE_UNPLUG,
-				       NULL, 0);
-	else
+	if (req->flags & BIT(HIDP_VIRTUAL_CABLE_UNPLUG)) {
+		err = hidp_send_ctrl_message(session,
+					     HIDP_TRANS_HID_CONTROL |
+					     HIDP_CTRL_VIRTUAL_CABLE_UNPLUG,
+					     NULL, 0);
+		if (err)
+			return err;
+	} else {
 		l2cap_unregister_user(session->conn, &session->user);
-
+	}
 	hidp_session_put(session);
 
 	return 0;
-- 
2.1.4

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

* Re: [PATCH RESEND] bluetooth:hicp:Fix error handling in the function hidp_connection_del
  2015-12-29 20:55 [PATCH RESEND] bluetooth:hicp:Fix error handling in the function hidp_connection_del Nicholas Krause
@ 2016-01-08 12:16 ` David Herrmann
  0 siblings, 0 replies; 2+ messages in thread
From: David Herrmann @ 2016-01-08 12:16 UTC (permalink / raw)
  To: Nicholas Krause
  Cc: Marcel Holtmann, Gustavo F. Padovan, Johan Hedberg,
	David S. Miller, tedd.an, linux-bluetooth, netdev, linux-kernel

Hi

On Tue, Dec 29, 2015 at 9:55 PM, Nicholas Krause <xerofoify@gmail.com> wrote:
> This fixes error handling in the function hidp_connection_del to
> properly check if the internal call to hidp_send_ctrl_message has
> failed by returning a error code and if so immediately return this
> error code to the caller of hidp_connection_del to signal that a
> failed call has occurred that needs to be handled by this function's
> caller.
>
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
>  net/bluetooth/hidp/core.c | 17 ++++++++++-------
>  1 file changed, 10 insertions(+), 7 deletions(-)
>
> diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
> index f1a117f..13aa6d0 100644
> --- a/net/bluetooth/hidp/core.c
> +++ b/net/bluetooth/hidp/core.c
> @@ -1360,6 +1360,7 @@ int hidp_connection_del(struct hidp_conndel_req *req)
>  {
>         u32 valid_flags = BIT(HIDP_VIRTUAL_CABLE_UNPLUG);
>         struct hidp_session *session;
> +       int err;
>
>         if (req->flags & ~valid_flags)
>                 return -EINVAL;
> @@ -1368,14 +1369,16 @@ int hidp_connection_del(struct hidp_conndel_req *req)
>         if (!session)
>                 return -ENOENT;
>
> -       if (req->flags & BIT(HIDP_VIRTUAL_CABLE_UNPLUG))
> -               hidp_send_ctrl_message(session,
> -                                      HIDP_TRANS_HID_CONTROL |
> -                                        HIDP_CTRL_VIRTUAL_CABLE_UNPLUG,
> -                                      NULL, 0);
> -       else
> +       if (req->flags & BIT(HIDP_VIRTUAL_CABLE_UNPLUG)) {
> +               err = hidp_send_ctrl_message(session,
> +                                            HIDP_TRANS_HID_CONTROL |
> +                                            HIDP_CTRL_VIRTUAL_CABLE_UNPLUG,
> +                                            NULL, 0);
> +               if (err)
> +                       return err;

This leaks a reference to 'session'.

> +       } else {
>                 l2cap_unregister_user(session->conn, &session->user);
> -
> +       }
>         hidp_session_put(session);

I'm not very convinced that this is a good idea. Transmission is
handled async, hence all you catch here is OOM. Nothing interesting
can be returned, and there's nothing sane the caller can do to handle
the error. I'd keep the code as is.

Thanks
David

>
>         return 0;
> --
> 2.1.4
>

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

end of thread, other threads:[~2016-01-08 12:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-29 20:55 [PATCH RESEND] bluetooth:hicp:Fix error handling in the function hidp_connection_del Nicholas Krause
2016-01-08 12:16 ` David Herrmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.