users/clients compile their C++ code to dynamic library(e.g. libuser.so) and upload to servers on Linux(x64).
Server process opens libuser.so and calls functions in it.
- How to prevent server process core dump(and other errors) from any errors of
libuser.so? - How to control the resources of
libuser.socan access? (e.g. Memory, disk, and CPU) - Maybe there are some evil users/clients.