Dmitrii Kuvaiskii
Dmitrii Kuvaiskii
`arithmetic fault` is interesting! Can you debug your program using gdb? You simply build all Gramine in debug mode and then run `GDB=1 gramine-sgx `. For more info, check https://gramine.readthedocs.io/en/latest/devel/debugging.html...
Thanks @lejunzhu for the awesome analysis, as always! I was vaguely aware of this issue when adding mbedTLS send/recv to pipes/UNIX domain sockets, but thought that applications don't really do...
@lejunzhu Check out #2059.
This one is annoying hard to fix...
The actual problem is that this LTP test does `setuid()` -- and this syscall is a mockup (doesn't do anything and returns success) in Graphene. So the LTP test thinks...
We need to discuss the Big Problem of `setuid`, `chown` and so on. Graphene doesn't have the concept of Users, Groups, Ownership, Permissions for files. And Graphene just does absolutely...
@bigdata-memory Is this issue for `allowed files`, `trusted files` or `protected files`? - Trusted files cannot be writable by design - Protected files should already support it (please test) -...
The real issue here is that these LTP tests do not report any results (no TFAIL, no errors) and this leads to LTP outputting a general TBROK message. Need to...
@pwmarcz This will be interesting for you. That's a cool stress test for your F_SETLK implementation in Graphene.
We didn't try to update the TensorFlow Lite version from 1.9 to 2.4. Please try it out (just change the version in the Makefile, as you correctly noticed). If there...