|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
Subject: Re: StackGuard with ... Re: [Paper] Format bugs.
From: Gerardo Richarte (core.lists.bugtraq
CORE-SDI.COM)Date: Mon Jul 24 2000 - 12:51:43 CDT
- Next message: Linus Akesson: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Previous message: Casper Dik: "Re: StackGuard with ... Re: [Paper] Format bugs."
- In reply to: Greg A. Woods: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Next in thread: Greg A. Woods: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Next in thread: Keith Owens: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Reply: Gerardo Richarte: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Reply: Greg A. Woods: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"Greg A. Woods" wrote:
> It's not possible to do bounds checking without: a) changing the
> function calling interface so that the number of parameters, as
> well as the type of each parameter, can be passed to the function;
You don't need the number of arguments nor their types, you
only need how much space they take from the stack (the same number
that is subtracted from stack pointer after returning from a call).
It's true that something must be changed, but I don't think
it to be too deep, isn't there already a special treatment for
<stdarg.h>'s functions? All that needs to be added is pushing the
number of bytes args are taking from stack as first argument, and the
add some [C] code in <stdarg.h>'s functions. Am I wrong?
In short: you don't need to know anything about types, and I'm
pretty sure that, if you are not trying to do strange things, it'll
not break any functionality.
richie
-- A390 1BBA 2C58 D679 5A71 - 86F9 404F 4B53 3944 C2D0 Investigacion y Desarrollo - CoreLabs - Core SDI http://www.core-sdi.com--- For a personal reply use gera
core-sdi.com
- Next message: Linus Akesson: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Previous message: Casper Dik: "Re: StackGuard with ... Re: [Paper] Format bugs."
- In reply to: Greg A. Woods: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Next in thread: Greg A. Woods: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Next in thread: Keith Owens: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Reply: Gerardo Richarte: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Reply: Greg A. Woods: "Re: StackGuard with ... Re: [Paper] Format bugs."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]