Opened 7 years ago
Last modified 7 years ago
#749 closed defect
Map and eradicate uses of kernel addresses as IDs for userspace — at Version 2
| Reported by: | Jakub Jermář | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 0.8.0 |
| Component: | helenos/kernel/generic | Version: | mainline |
| Keywords: | Cc: | ||
| Blocker for: | Depends on: | ||
| See also: |
Description (last modified by )
The kernel (still) intentionally leaks kernel addresses at various places in order to provide identifiers to userspace.
In the past it used to identify calls this way, but this behavior has been replaced by using capabilities. There are still some other uses in other contexts that this ticket aims to map and eventually eradicate.
Note that using kernel addresses as userspace IDs is bad for two reasons:
- leaking addresses of kernel objects represents a security risk and
- kernel addresses use a global namespace (unlike task-local capability handles), so this precludes some light forms of virtualisation on the namespace-level
The following list enumerates the individual cases:
ipc_forwardsets phone_t *newphone in call→data.phoneipc_forwardsets TASK→taskid (another global ID) in call→data.task_id_ipc_call_actions_internalsets phone_t *phone in call→data.phone_ipc_call_actions_internalsets caller→task_id in call→data.task_idsys_ipc_wait_for_callsets call→priv in call→data.phoneevent_enqueuesets TASK→taskid in call→data.task_id_ipc_answer_free_callsets TASK→taskid in call→data.task_id
Change History (2)
comment:1 by , 7 years ago
| Description: | modified (diff) |
|---|---|
| Summary: | Map and eradicate use of kernel addresses as IDs for userspace → Map and eradicate uses of kernel addresses as IDs for userspace |
comment:2 by , 7 years ago
| Description: | modified (diff) |
|---|
Note:
See TracTickets
for help on using tickets.
