lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Mon, 04 Aug 2008 16:17:50 +0200
From:	Stefan Richter <stefanr@...6.in-berlin.de>
To:	jmerkey@...fmountaingroup.com
CC:	linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2.6.27-rc1 6/25] mdb:  Merkey's Kernel Debugger 2.6.27-rc1

jmerkey@...fmountaingroup.com wrote:
> --- a/debug/mdb.c	1969-12-31 17:00:00.000000000 -0700
> +++ b/debug/mdb.c	2008-08-03 16:15:00.000000000 -0600
[...]
> +ULONG ScreenInputFromKeyboard(BYTE *buf, ULONG buf_index, ULONG max_index)
> +{
[...]
> +    HistoryIndex = HistoryPointer;
> +    while (1)
> +    {
> +       key = mdb_getkey();
> +
> +       if ((IsAccelerator(key)) && (key != 13))
> +	  return key;
> +
> +       switch (key)
> +       {
[...]
> +	  default:
> +	     if ((key > 0x7E) || (key < ' '))  // if above or below text
> +		break;
> +	     else
> +	     {
> +	        if (strlen(buf) < max_index)
> +		{
> +                   register int delta;
> +
> +		   for (i=max_index; i > buf_index; i--)
> +		      buf[i] = buf[i-1];
> +		   buf[buf_index] = (BYTE)key;
> +		   if (buf_index < max_index)
> +		      buf_index++;
> +
> +                   delta = strlen(buf) - buf_index;
> +
> +                   for (i=0; (i < delta) && (buf[i]); i++)
> +                        DBGPrint("%c", buf[buf_index + i]);
> +
> +                   for (i=0; i < delta; i++)
> +                        DBGPrint("\b");
> +		}
> +             }
> +	     break;
> +       }
> +    }
> +}

This function would benefit from being broken up into smaller ones.
-- 
Stefan Richter
-=====-==--- =--- --=--
http://arcgraph.de/sr/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ