* [PATCH 1/1] Char: moxa, prevent opening unavailable ports
@ 2009-06-09 14:33 Jiri Slaby
2009-06-09 19:27 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Jiri Slaby @ 2009-06-09 14:33 UTC (permalink / raw)
To: alan; +Cc: Andrew Morton, linux-kernel, Jiri Slaby, Dirk Eibach
From: Dirk Eibach <eibach@gdsys.de>
In moxa.c there are 32 minor numbers reserved for each device. The
number of ports actually available per device is stored in
moxa_board_conf->numPorts. This number is not considered in moxa_open().
Opening a port that is not available results in a kernel oops.
This patch adds a test to moxa_open() that prevents opening unavailable
ports.
Signed-off-by: Dirk Eibach <eibach@gdsys.de>
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
---
drivers/char/moxa.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/char/moxa.c b/drivers/char/moxa.c
index 4a4cab7..65b6ff2 100644
--- a/drivers/char/moxa.c
+++ b/drivers/char/moxa.c
@@ -1184,6 +1184,11 @@ static int moxa_open(struct tty_struct *tty, struct file *filp)
return -ENODEV;
}
+ if (port % MAX_PORTS_PER_BOARD >= brd->numPorts) {
+ mutex_unlock(&moxa_openlock);
+ return -ENODEV;
+ }
+
ch = &brd->ports[port % MAX_PORTS_PER_BOARD];
ch->port.count++;
tty->driver_data = ch;
--
1.6.3.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 1/1] Char: moxa, prevent opening unavailable ports
2009-06-09 14:33 [PATCH 1/1] Char: moxa, prevent opening unavailable ports Jiri Slaby
@ 2009-06-09 19:27 ` Andrew Morton
2009-06-09 19:36 ` Jiri Slaby
2009-06-09 23:34 ` Alan Cox
0 siblings, 2 replies; 4+ messages in thread
From: Andrew Morton @ 2009-06-09 19:27 UTC (permalink / raw)
To: Jiri Slaby; +Cc: alan, linux-kernel, jirislaby, eibach
On Tue, 9 Jun 2009 16:33:01 +0200
Jiri Slaby <jirislaby@gmail.com> wrote:
> From: Dirk Eibach <eibach@gdsys.de>
>
> In moxa.c there are 32 minor numbers reserved for each device. The
> number of ports actually available per device is stored in
> moxa_board_conf->numPorts. This number is not considered in moxa_open().
> Opening a port that is not available results in a kernel oops.
> This patch adds a test to moxa_open() that prevents opening unavailable
> ports.
>
> Signed-off-by: Dirk Eibach <eibach@gdsys.de>
> Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
> ---
> drivers/char/moxa.c | 5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/char/moxa.c b/drivers/char/moxa.c
> index 4a4cab7..65b6ff2 100644
> --- a/drivers/char/moxa.c
> +++ b/drivers/char/moxa.c
> @@ -1184,6 +1184,11 @@ static int moxa_open(struct tty_struct *tty, struct file *filp)
> return -ENODEV;
> }
>
> + if (port % MAX_PORTS_PER_BOARD >= brd->numPorts) {
> + mutex_unlock(&moxa_openlock);
> + return -ENODEV;
> + }
> +
> ch = &brd->ports[port % MAX_PORTS_PER_BOARD];
> ch->port.count++;
> tty->driver_data = ch;
Looks good to me. But please, let's avoid adding the
multiple-return-statement hand grenade?
--- a/drivers/char/moxa.c~char-moxa-prevent-opening-unavailable-ports
+++ a/drivers/char/moxa.c
@@ -1184,6 +1184,11 @@ static int moxa_open(struct tty_struct *
return -ENODEV;
}
+ if (port % MAX_PORTS_PER_BOARD >= brd->numPorts) {
+ retval = -ENODEV;
+ goto out_unlock;
+ }
+
ch = &brd->ports[port % MAX_PORTS_PER_BOARD];
ch->port.count++;
tty->driver_data = ch;
@@ -1208,8 +1213,8 @@ static int moxa_open(struct tty_struct *
moxa_close_port(tty);
} else
ch->port.flags |= ASYNC_NORMAL_ACTIVE;
+out_unlock:
mutex_unlock(&moxa_openlock);
-
return retval;
}
_
btw, what's this code in moxa_open() doing?
if (port == MAX_PORTS) {
return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
}
why does it return 0 if CAP_SYS_ADMIN?
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH 1/1] Char: moxa, prevent opening unavailable ports
2009-06-09 19:27 ` Andrew Morton
@ 2009-06-09 19:36 ` Jiri Slaby
2009-06-09 23:34 ` Alan Cox
1 sibling, 0 replies; 4+ messages in thread
From: Jiri Slaby @ 2009-06-09 19:36 UTC (permalink / raw)
To: Andrew Morton; +Cc: alan, linux-kernel, eibach
On 06/09/2009 09:27 PM, Andrew Morton wrote:
> btw, what's this code in moxa_open() doing?
>
> if (port == MAX_PORTS) {
> return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
> }
>
> why does it return 0 if CAP_SYS_ADMIN?
There is some global stats ioctl crap on that port number available only
to users with permissions. Look at moxa_ioctl, there is:
if (tty->index == MAX_PORTS) {
if (cmd != MOXA_GETDATACOUNT && cmd != MOXA_GET_IOQUEUE &&
cmd != MOXA_GETMSTATUS)
return -EINVAL;
Of course, there is also alloc_tty_driver(MAX_PORTS + 1).
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH 1/1] Char: moxa, prevent opening unavailable ports
2009-06-09 19:27 ` Andrew Morton
2009-06-09 19:36 ` Jiri Slaby
@ 2009-06-09 23:34 ` Alan Cox
1 sibling, 0 replies; 4+ messages in thread
From: Alan Cox @ 2009-06-09 23:34 UTC (permalink / raw)
To: Andrew Morton; +Cc: Jiri Slaby, linux-kernel, eibach
> btw, what's this code in moxa_open() doing?
>
> if (port == MAX_PORTS) {
> return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
> }
>
> why does it return 0 if CAP_SYS_ADMIN?
0-MAX_PORTS-1 = tty devices
MAX_PORTS = magic secret control channel
Alan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-06-09 23:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-09 14:33 [PATCH 1/1] Char: moxa, prevent opening unavailable ports Jiri Slaby
2009-06-09 19:27 ` Andrew Morton
2009-06-09 19:36 ` Jiri Slaby
2009-06-09 23:34 ` Alan Cox
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.