* [PATCH] password: fixed underflow on <backspace>
@ 2012-12-04 12:04 Enrico Scholz
2012-12-05 9:38 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Enrico Scholz @ 2012-12-04 12:04 UTC (permalink / raw)
To: barebox; +Cc: Enrico Scholz
due to missing/misplaced boundary check, deleting characters could
underflow the password buffer.
Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
---
common/password.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/common/password.c b/common/password.c
index a03e1db..d157a11 100644
--- a/common/password.c
+++ b/common/password.c
@@ -66,11 +66,14 @@ int password(unsigned char *passwd, size_t length, int flags, int timeout)
case CTL_CH('h'):
case KEY_DEL7:
case KEY_DEL:
- if (flags & STAR && pos > 0)
- puts("\b \b");
- *buf = '\0';
- buf--;
- pos--;
+ if (pos > 0) {
+ if (flags & STAR)
+ puts("\b \b");
+
+ *buf = '\0';
+ buf--;
+ pos--;
+ }
continue;
default:
if (pos < length - 1) {
--
1.7.11.7
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] password: fixed underflow on <backspace>
2012-12-04 12:04 [PATCH] password: fixed underflow on <backspace> Enrico Scholz
@ 2012-12-05 9:38 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-12-05 9:38 UTC (permalink / raw)
To: Enrico Scholz; +Cc: barebox
On Tue, Dec 04, 2012 at 01:04:25PM +0100, Enrico Scholz wrote:
> due to missing/misplaced boundary check, deleting characters could
> underflow the password buffer.
>
> Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Applied, thanks
Sascha
> ---
> common/password.c | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/common/password.c b/common/password.c
> index a03e1db..d157a11 100644
> --- a/common/password.c
> +++ b/common/password.c
> @@ -66,11 +66,14 @@ int password(unsigned char *passwd, size_t length, int flags, int timeout)
> case CTL_CH('h'):
> case KEY_DEL7:
> case KEY_DEL:
> - if (flags & STAR && pos > 0)
> - puts("\b \b");
> - *buf = '\0';
> - buf--;
> - pos--;
> + if (pos > 0) {
> + if (flags & STAR)
> + puts("\b \b");
> +
> + *buf = '\0';
> + buf--;
> + pos--;
> + }
> continue;
> default:
> if (pos < length - 1) {
> --
> 1.7.11.7
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-05 9:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-04 12:04 [PATCH] password: fixed underflow on <backspace> Enrico Scholz
2012-12-05 9:38 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox