Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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?

like image 927
corbin Avatar asked Nov 21 '12 21:11

corbin


2 Answers

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

sudo mount /tmp -o remount,exec

like image 197
Denys Avatar answered Oct 17 '22 07:10

Denys


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 
like image 29
vinyll Avatar answered Oct 17 '22 06:10

vinyll