aboutgitcodelistschat:MatrixIRC
path: root/gluten.h
Commit message (Collapse)AuthorAgeFilesLines
* Rename actions to operationsAlice Frosi2023-02-221-22/+22
| | | | | Replace all the action related names to operations to make them more generic.
* fix formattingAlice Frosi2023-02-221-3/+2
|
* gluten: remove error typeAlice Frosi2023-02-221-1/+0
| | | | The error is always constant and not a reference
* actions: add reference for the fdsAlice Frosi2023-02-211-2/+12
|
* actions: change pointer to offsetAlice Frosi2023-02-211-1/+1
|
* gluten: add reference fieldsAlice Frosi2023-02-211-2/+4
|
* actions: add reference to a_returnAlice Frosi2023-02-161-1/+10
| | | | | | | The action return can return either a constant value or a reference to a value. Signed-off-by: Alice Frosi <afrosi@redhat.com>
* Rename field old to oldfdAlice Frosi2023-02-161-1/+1
| | | | Signed-off-by: Alice Frosi <afrosi@redhat.com>
* seitan: add injection actionsAlice Frosi2023-02-151-7/+0
| | | | | | | | | The inject actions install a new fd into the target. If the action is an atomic injection then the target is unblock after this action and the return value of the syscall will be the the file descriptor number that was allocated in the target Signed-off-by: Alice Frosi <afrosi@redhat.com>
* seitan: add return actionAlice Frosi2023-02-151-0/+1
| | | | | | The return action return a value to the target. Signed-off-by: Alice Frosi <afrosi@redhat.com>
* seitan: action for the callAlice Frosi2023-02-151-0/+94
Perform the action action with the context. The action call executes a syscall in the given namespaces or in caller context if non is specified. Signed-off-by: Alice Frosi <afrosi@redhat.com>