What are possible causes of “failed to map segment from shared object: operation not permitted”, and how to debug?

浪子不回头ぞ 提交于 2019-12-18 04:35:12

问题


I have two executables, both cross compiled to run in Android. I have put both on the device in the same directory. I have put all the shared libraries that they are dependent on in the same directory, including ld-linux.so.3. I run the executables by using:

ld-linux.so.3 --library-path /path/to/libraries executable_name

both work on older versions of Android when running as any user. The both work on the latest version of Android if running as root. Only one works on the latest version of android when running as any user. Instead it gives:

failed to map segment from shared object: executable_name operation not permitted

How can I find out what is different with the executable that won't run?

I read a lot online and most people that get this error, either:

A) don't have execute permissions for one of the libraries they are dependent on or the executable itself.

or

B) are trying to run from a directory that is mounted as NOEXEC.

both of these don't appear to be the case. It can find all libraries and I can load any library by itself and see what other things it is dependent on being resolved. Also, I can run basic scripts from the directories of interest.

The newer version of Android, Jelly Bean, is a different linux kernel version and I wonder if that is related.

What give? How do I debug?


回答1:


I had this error in a different context. For some reason it causes an error when trying to use the /tmp folder.

To solve this I simply:

mkdir tmp
export TMPDIR=`pwd`/tmp



回答2:


Permission issue. Need to remount /tmp. The following command works for me (Centos 7):

sudo mount /tmp -o remount,exec




回答3:


The issue was with how the executables were compiled. They needed to be compiled with a cross compiler that properly supported newer arm devices. The compiler I used generated executables that would only work on a subset of arm devices. The issue was not with the different versions of android.




回答4:


SELinux is enabled by default on Android 4.3, however it is supposed to be "permissive" [0]. Maybe your phone vendor added more restrictive rules.

[0] https://source.android.com/devices/tech/security/se-linux.html



来源:https://stackoverflow.com/questions/13502156/what-are-possible-causes-of-failed-to-map-segment-from-shared-object-operation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!