Skip to content

Commit

Permalink
chore: convert getuid32 and ugetrlimit and _llseek too.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Oct 18, 2023
1 parent 994f7e4 commit 1e509df
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,21 @@ var ia32TranslatorMap = map[int64]int64{
* Forcefully convert it.
*/
214: 106,
/*
* getuid32 ia32 only; but it sends same event as getuid.
* Forcefully convert it.
*/
199: 102,
/*
* ugetrlimit ia32 only; but it sends same event as getrlimit.
* Forcefully convert it.
*/
191: 97,
/*
* _llseek ia32 only; but it sends a compatible with lseek event.
* Forcefully convert it.
*/
140: 8,
/*
* umount ia32 only; send a semi compatible umount2 instead.
* (only exit event is actually compatible, see https://github.com/falcosecurity/libs/blob/master/driver/event_table.c#L444
Expand Down

0 comments on commit 1e509df

Please sign in to comment.