[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH v2 13/13] fuzz/x86_emulate: Add an option to limit the number of instructions executed



On 10/06/2017 01:12 PM, Jan Beulich wrote:
>>>> On 06.10.17 at 12:40, <george.dunlap@xxxxxxxxxx> wrote:
>> On 10/04/2017 09:28 AM, Jan Beulich wrote:
>>>>>> On 25.09.17 at 16:26, <george.dunlap@xxxxxxxxxx> wrote:
>>>> AFL considers a testcase to be a useful addition not only if there are
>>>> tuples exercised by that testcase which were not exercised otherwise,
>>>> but also if the *number* of times an individual tuple is exercised
>>>> changes significantly; in particular, if the number of the highes bit
>>>> changes (i.e., if it is run 1, 2-3, 4-7, 8-15, &c).
>>>
>>> Perhaps I simply don't know about AFL (yet) to understand how "highest
>>> bit" matters here, or even whose highest bits there's talk of.
>>
>> Probably the easiest way to get this would be to read the
>> 'technical_details.txt' [1] document about AFL, specifically the section
>> "Detecting new behaviors".  The section isn't long, and I'm not sure I
>> could explain the situation more concisely than the author has there.
> 
> Having read that, I still don't see what "bit" you talk about. The
> text there talks about "hit"s - is this perhaps just a typo here?

I'm sorry my wording wasn't very precise, but I don't understand why the
examples in parentheses don't communicate what I mean.  Here by "highest
bit" I basically meant, the highest bit which is non-zero.  For 2 and 3,
the number of the highest non-zero bit is 2.  For 4, 5, 6, and 7, the
number of the highest non-zero bit is 3.  For 8-15, the number of the
highest non-zero bit is 4, and so on.

If two test cases touch the exact same branch tuples, but the order of
at least one the counts is different (i.e., if the number of the highest
non-zero bit is different), then AFL considers them as behaving differently.

>>>> Unfortunately, one simple way to increase these stats it to execute
>>>> the same (or similar) instructions multiple times.
>>>
>>> But the change here doesn't look at instruction similarity at all.
>>
>> I'm talking about how blind changes AFL makes to the input affect what
>> AFL sees at the "output".
>>
>> Suppose it has a testcase where instruction A is executed once, and it
>> sees tuple N executed twice.  Now suppose it morphs the instruction so
>> instruction A is executed twice.  It will now see tuple N executed 4
>> times.  This is seen as 'new behavior', and so it will add that as a
>> 'new' test case to its set of interesting things to fuzz.  Then suppose
>> it morphs one of those so that instruction A is executed four times.
>> Tuple N will be executed  8 times, which again is new behavior.  The
>> highest tuple count it sees as unique is 128; so in our example, it will
>> generate sample inputs up to 64 instructions -- even if the actual path
>> through the code for each instruction is identical to the
>> single-instruction one.
>>
>> A 64-instruction test case will take at least 64x as long to execute as
>> a 1-instruction test case; and it will generally also take 64x as long
>> to fuzz.  This makes AFL is spending nearly 1000x as much time fuzzing
>> that test case as the 1-instruction test case, but for no very good
>> reason -- if you can't get actual new behavior we care about out of 2-3
>> instructions, you're not going to get it out of 60 instructions.
>>
>> IOW, arbitrary numbers of instructions fool AFL into thinking it's found
>> something new and interesting when it hasn't.  Limiting the number of
>> instructions should in theory keep AFL from getting distracted with test
>> cases it thinks are new and unique but aren't.  And we see that for the
>> old format, this is true.
>>
>> I suspect there's some number of instructions past which we get
>> diminishing returns even for the 'compact' format, but since testing
>> involves running things for 24 hours, there's also a diminishing returns
>> for that kind of optimization. :-)
> 
> All understood, yet I still don't understand why you say "the
> same (or similar)" when really you only care to limit instruction
> count. This is the more that the same insn executed with
> different inputs can have dramatically different effects (most
> severe case probably being no exception vs exception).

I don't care to limit the instruction count.  I care to restrict AFL
from chasing false leads, thinking that it's discovered "unique" and
"interesting" behavior because it's managed to run an instruction 50
times instead of 5.

One way AFL can chase false leads is by executing *the exact same*
instruction a number of times in a row.  But many instructions which are
*similar* also trigger similar paths; so the same effect could happen
just as well with to instructions that touch nearly the same paths as
with a single instruction.

But I'm not sure what exceptions vs no exceptions has to do with it, so
perhaps I still don't understand you. :-)

 -George

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.