Currently, the logic to parse paths of the form intent:/some/path is entirely inside sys_object_open. As a result, it only applis to the open system call, and not to other system calls that deal with names, such as process execution, etc. Move this logic over to fs_resolve, which is the global control point for evaluating names.
Currently, the logic to parse paths of the form
intent:/some/path
is entirely insidesys_object_open
. As a result, it only applis to the open system call, and not to other system calls that deal with names, such as process execution, etc. Move this logic over tofs_resolve
, which is the global control point for evaluating names.