CVE-2019-5736: runc container breakout
CVE-2019-5736: runc container breakout
Posted Feb 12, 2019 21:03 UTC (Tue) by ibukanov (subscriber, #3942)In reply to: CVE-2019-5736: runc container breakout by sorokin
Parent article: CVE-2019-5736: runc container breakout
Memory allocation is much more widespread then open calls. So most applications do not even try to bother with allocation errors and assume that new/alloc/realloc never fails as dealing with those is too painful. This is true both for manual memory management and GC languages like Java or Go. This leads to the question of what to do if an allocation does report an error and one cannot propagate the error to the caller. Then doing a loop is not particularly worse then calling abort().
