Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #2853: split HasMutatorBytes trait into two traits. #2856

Merged
merged 1 commit into from
Jan 16, 2025

Conversation

Railroad6230
Copy link
Contributor

(See #2853.)

This commit attempts to improve the HasMutatorBytes trait to allow it to
be used along with input types that cannot be resizable.

HasMutatorBytes is split into two traits:

  • HasMutatorBytes: requires bytes and bytes_mut.
  • HasMutatorResizableBytes: requires HasMutatorBytes, and also requires
    a few other methods for resizing / shrinking the underlying input type.

N.B.: I believe that if merged, this would introduce a breaking change.

@Railroad6230 Railroad6230 changed the title Fix #2853: split [HasMutatorBytes] trait into two traits. Fix #2853: split HasMutatorBytes trait into two traits. Jan 16, 2025
@Railroad6230 Railroad6230 force-pushed the pr2856 branch 4 times, most recently from 314fee1 to deeca27 Compare January 16, 2025 13:36
@tokatoka
Copy link
Member

i think HasMutatorVec is a better name than HasMutatorResizableBytes
@domenukk you have opinion?

@Railroad6230 Railroad6230 force-pushed the pr2856 branch 2 times, most recently from c2b6b13 to a9063d9 Compare January 16, 2025 13:47
(See AFLplusplus#2853.)

This commit attempts to improve the [`HasMutatorBytes`] trait to allow it to
be used along with input types that cannot be resizable.

[`HasMutatorBytes`] is split into two traits:

 - [`HasMutatorBytes`]: requires `bytes` and `bytes_mut`.
 - `HasMutatorResizableBytes`: requires [`HasMutatorBytes`], and also requires
   a few other methods for resizing / shrinking the underlying input type.


N.B.: I believe that if merged, this would introduce a breaking change.

[`HasMutatorBytes`]: https://github.com/AFLplusplus/LibAFL/blob/198cd5dbc5200bfba3df48cf2a14376e0f0e3000/libafl/src/inputs/bytes.rs#L26
@Railroad6230
Copy link
Contributor Author

i think HasMutatorVec is a better name than HasMutatorResizableBytes @domenukk you have opinion?

Is the underlying container necessarily a Vec?

@tokatoka
Copy link
Member

not 100% i guess...?
but the other functions in HasMutatorBytes are returning vec::Drain or vec::Splice so it's expected to work like vec.
if you want to keep it it's fine

@Railroad6230
Copy link
Contributor Author

are returning vec::Drain or vec::Splice so it's expected to work like vec.

Ho right! I haven't thought of that.

if you want to keep it it's fine

Your call :)

@Railroad6230 Railroad6230 marked this pull request as ready for review January 16, 2025 14:01
@tokatoka
Copy link
Member

Thank you

@tokatoka tokatoka merged commit 15aa498 into AFLplusplus:main Jan 16, 2025
104 checks passed
@@ -11,7 +11,7 @@ use core::cell::RefCell;
use libafl_bolts::{ownedref::OwnedSlice, HasLen};

use super::ValueInput;
use crate::inputs::{HasMutatorBytes, HasTargetBytes};
use crate::inputs::{HasMutatorBytes, HasMutatorResizableBytes, HasTargetBytes};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer to have HasFixedMutatorBytes since the default is that they are resizable(?)
Otherwise at least HasResizableMutatorBytes

Copy link
Contributor Author

@Railroad6230 Railroad6230 Jan 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I absolutely understand for HasResizableMutatorBytes.

However, I'm not sure about resizable being the default. In my opinion, you start with "nothing", then a buffer, then a buffer that is mutable, then a buffer that is resizable (because resizable implies mutable in a way).

What do you think?

In any case, I'll open a second PR to fix that name.

edit: made a PR: #2862

@Railroad6230 Railroad6230 deleted the pr2856 branch January 17, 2025 11:36
Railroad6230 added a commit to Railroad6230/LibAFL that referenced this pull request Jan 17, 2025
…sizableBytes` to `HasMutatorBytes`.

As discussed in AFLplusplus#2856 (comment).

Sorry about that!
Railroad6230 added a commit to Railroad6230/LibAFL that referenced this pull request Jan 17, 2025
…sizableBytes` to `HasMutatorBytes`.

As discussed in AFLplusplus#2856 (comment).

Sorry about that!
Railroad6230 added a commit to Railroad6230/LibAFL that referenced this pull request Jan 17, 2025
…sizableBytes` to `HasMutatorBytes`.

As discussed in AFLplusplus#2856 (comment).

Sorry about that!
mzfr pushed a commit to mzfr/LibAFL that referenced this pull request Jan 19, 2025
…FLplusplus#2856)

(See AFLplusplus#2853.)

This commit attempts to improve the [`HasMutatorBytes`] trait to allow it to
be used along with input types that cannot be resizable.

[`HasMutatorBytes`] is split into two traits:

 - [`HasMutatorBytes`]: requires `bytes` and `bytes_mut`.
 - `HasMutatorResizableBytes`: requires [`HasMutatorBytes`], and also requires
   a few other methods for resizing / shrinking the underlying input type.


N.B.: I believe that if merged, this would introduce a breaking change.

[`HasMutatorBytes`]: https://github.com/AFLplusplus/LibAFL/blob/198cd5dbc5200bfba3df48cf2a14376e0f0e3000/libafl/src/inputs/bytes.rs#L26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants