gui: sandbox: Add 'error' to vow_promises to avoid getting killed on ioctl() with TIOCSTI

Cette révision appartient à :
Albert S. 2022-05-30 00:03:38 +02:00
Parent 396c619cf1
révision 11af6e530e
1 fichiers modifiés avec 2 ajouts et 1 suppressions

Voir le fichier

@ -45,7 +45,8 @@ void enableIpcSandbox()
policy->namespace_options = EXILE_UNSHARE_NETWORK | EXILE_UNSHARE_USER;
policy->no_new_privs = 1;
policy->drop_caps = 1;
policy->vow_promises = exile_vows_from_str("thread cpath wpath rpath unix stdio prot_exec proc shm fsnotify ioctl");
policy->vow_promises =
exile_vows_from_str("thread cpath wpath rpath unix stdio prot_exec proc shm fsnotify ioctl error");
QString ipcSocketPath = Common::ipcSocketPath();
QFileInfo info{ipcSocketPath};