access(2) #1

Open
opened 2024-12-18 21:33:22 +01:00 by fedir · 0 comments
Owner

So far, it's unclear how the access function has to be implemented, because at the time of the call, the user access control decision is not yet known.

Possible solutions:

  • Not implement the function - quite a lot of programs don't work properly.
  • Always return -1 - quite a lot of programs refuse to try accessing the filesystem again.
  • Always return F_OK
  • Ask the user, and then remember the decision.
So far, it's unclear how the `access` function has to be implemented, because at the time of the call, the user access control decision is not yet known. Possible solutions: * ~~Not implement the function~~ - quite a lot of programs don't work properly. * ~~Always return `-1`~~ - quite a lot of programs refuse to try accessing the filesystem again. * Always return `F_OK` * Ask the user, and then remember the decision.
fedir added the
bug
enhancement
labels 2024-12-18 21:35:32 +01:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: fedir/ICFS#1
No description provided.