mirror of
https://github.com/0xAX/linux-insides
synced 2024-11-09 13:10:43 +00:00
commit
16ce4f2c18
@ -250,7 +250,7 @@ If we didn't pass `O_TMPFILE` for creation of a temporary file, we check the `O_
|
|||||||
* to indicate a location in the filesystem tree;
|
* to indicate a location in the filesystem tree;
|
||||||
* to perform operations that act purely at the file descriptor level.
|
* to perform operations that act purely at the file descriptor level.
|
||||||
|
|
||||||
So, in this case the file itself is not opened, but operations like `dup`, `fcntl` and other can be used. So, if all file content related operations like `read`, `write` and other are permitted, only `O_DIRECTORY | O_NOFOLLOW | O_PATH` flags can be used. We have finished with flags for this moment in the `build_open_flags` for this moment and we may fill our `open_flags->open_flag` with them:
|
So, in this case the file itself is not opened, but operations like `dup`, `fcntl` and other can be used. So, if all file content related operations like `read`, `write` and other are not permitted, only `O_DIRECTORY | O_NOFOLLOW | O_PATH` flags can be used. We have finished with flags for this moment in the `build_open_flags` for this moment and we may fill our `open_flags->open_flag` with them:
|
||||||
|
|
||||||
```C
|
```C
|
||||||
op->open_flag = flags;
|
op->open_flag = flags;
|
||||||
|
Loading…
Reference in New Issue
Block a user