Bug 533987

Summary: SELinux is preventing /usr/lib/thunderbird-3.0b4/thunderbird-bin from making the program stack executable.
Product: [Fedora] Fedora Reporter: jamesmccullough
Component: selinux-policyAssignee: Daniel Walsh <dwalsh>
Status: CLOSED CANTFIX QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: low    
Version: 12CC: aalam, a.aspden, abdelbensalem, adellam, ajayramak, alcapcom, amir72, as10santos, axet, bijolianabhi, bschueler, bstevens, bugzilla.redhat.com, bugzilla, castiglia.anthony, cje, c_urfali, darkshram, david.paige, devel.niks, dimi, dlesage, dony.87, drfudgeboy, dswbike, dwalsh, emailofchris, engineer.ahmed.ramadan.ahmed, fedora.jrg01, ferraneloi, frankly3d, glasfaserfenster, hottens, isada0, jacob, jaime.gomes, jalexander, jamesmccullough, jeff.raber, jusko, jws0818, lgraves, linux, luca.botti, lukaszlucka, M8R-7fin56, mail.dsp, mailto, mamock116, manitha, manzanasconfitadas, marbolangos, masterofdestiny, mdhensley, mgrepl, michael630angelo, mols.eg, msoteloa, nizam.rahim, nocountryman, nolimithottboy, opoq1, optimal_solution2000, panda.debabrata.2009, petrmej, phil.ingram, piotr.kral, pkgale, rosas.ben, rosen, rsvp11364, rubik.orange, rvokal, santiago.lunar.m, serge, shanmugam_sridharan, shorteysk, skipster99-redhat, Stevizard, thieme.reis, todhunter, tojosefonseca, tore, torreco, turbo, uge, vincenzo.romano, wj41, xxleite, zabeelmaster, zip0951
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard: setroubleshoot_trace_hash:45853538f250f563d06d363df9dc69df6779a8a2821b57d769223a2e6391135f
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2009-11-10 13:07:58 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description jamesmccullough 2009-11-09 23:43:25 UTC
Summary:

SELinux is preventing /usr/lib/thunderbird-3.0b4/thunderbird-bin from making the
program stack executable.

Detailed Description:

The thunderbird-bin application attempted to make its stack executable. This is
a potential security problem. This should never ever be necessary. Stack memory
is not executable on most OSes these days and this will not change. Executable
stack memory is one of the biggest security problems. An execstack error might
in fact be most likely raised by malicious code. Applications are sometimes
coded incorrectly and request this permission. The SELinux Memory Protection
Tests (http://people.redhat.com/drepper/selinux-mem.html) web page explains how
to remove this requirement. If thunderbird-bin does not work and you need it to
work, you can configure SELinux temporarily to allow this access until the
application is fixed. Please file a bug report.

Allowing Access:

Sometimes a library is accidentally marked with the execstack flag, if you find
a library with this flag you can clear it with the execstack -c LIBRARY_PATH.
Then retry your application. If the app continues to not work, you can turn the
flag back on with execstack -s LIBRARY_PATH. Otherwise, if you trust
thunderbird-bin to run correctly, you can change the context of the executable
to execmem_exec_t. "chcon -t execmem_exec_t
'/usr/lib/thunderbird-3.0b4/thunderbird-bin'" You must also change the default
file context files on the system in order to preserve them even on a full
relabel. "semanage fcontext -a -t execmem_exec_t
'/usr/lib/thunderbird-3.0b4/thunderbird-bin'"

Fix Command:

chcon -t execmem_exec_t '/usr/lib/thunderbird-3.0b4/thunderbird-bin'

Additional Information:

Source Context                unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1
                              023
Target Context                unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1
                              023
Target Objects                None [ process ]
Source                        thunderbird-bin
Source Path                   /usr/lib/thunderbird-3.0b4/thunderbird-bin
Port                          <Unknown>
Host                          (removed)
Source RPM Packages           thunderbird-3.0-3.9.b4.fc12
Target RPM Packages           
Policy RPM                    selinux-policy-3.6.32-41.fc12
Selinux Enabled               True
Policy Type                   targeted
MLS Enabled                   True
Enforcing Mode                Enforcing
Plugin Name                   allow_execstack
Host Name                     (removed)
Platform                      Linux (removed) 2.6.31.5-127.fc12.i686 #1 SMP
                              Sat Nov 7 21:41:45 EST 2009 i686 i686
Alert Count                   20
First Seen                    Mon 09 Nov 2009 05:56:36 PM EST
Last Seen                     Mon 09 Nov 2009 06:37:50 PM EST
Local ID                      beb39629-4b26-44bf-9acb-aadde9042ffb
Line Numbers                  

Raw Audit Messages            

node=(removed) type=AVC msg=audit(1257809870.922:74): avc:  denied  { execstack } for  pid=10204 comm="thunderbird-bin" scontext=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 tcontext=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 tclass=process

node=(removed) type=SYSCALL msg=audit(1257809870.922:74): arch=40000003 syscall=125 success=no exit=-13 a0=bfe79000 a1=1000 a2=1000007 a3=bfe78120 items=0 ppid=10200 pid=10204 auid=500 uid=500 gid=500 euid=500 suid=500 fsuid=500 egid=500 sgid=500 fsgid=500 tty=(none) ses=1 comm="thunderbird-bin" exe="/usr/lib/thunderbird-3.0b4/thunderbird-bin" subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 key=(null)



Hash String generated from  selinux-policy-3.6.32-41.fc12,allow_execstack,thunderbird-bin,unconfined_t,unconfined_t,process,execstack
audit2allow suggests:

#============= unconfined_t ==============
allow unconfined_t self:process execstack;

Comment 1 Daniel Walsh 2009-11-10 13:07:58 UTC
Do you have some closed source drivers or shared libraries installed?  nvidia drivers?  rpmfusion codecs?  These are built incorrectly and require a dangerous priv execstack.  

This link 

http://people.redhat.com/~drepper/selinux-mem.html

explains the access.

You can use the command execstack -q to try to find the libraries with the execstack flag on, I use a command like

find /usr/lib64 -name \*.so\* -exec execstack -q {} \; -print | grep ^X

Then try to turn off the flag of any libraries that require execstack

execstack -c

And see if the apps work.  

If you can not find the problem library or the libraray does not work without the execstack flag turned on, your only option is to tell SELinux to stop checking for execstack by setting the boolean allow_execstack.

setsebool -P allow_execstack 1

Comment 2 Daniel Walsh 2009-11-10 13:49:38 UTC
*** Bug 533454 has been marked as a duplicate of this bug. ***

Comment 3 Daniel Walsh 2009-11-10 13:50:23 UTC
*** Bug 533715 has been marked as a duplicate of this bug. ***

Comment 4 Daniel Walsh 2009-11-11 14:45:57 UTC
*** Bug 536688 has been marked as a duplicate of this bug. ***

Comment 5 Daniel Walsh 2009-11-12 22:26:44 UTC
*** Bug 533486 has been marked as a duplicate of this bug. ***

Comment 6 Erik P. Olsen 2009-11-14 06:22:58 UTC
OK. I've isolated the problem on my setup to be Sun's java: jre-1.6.0_17-fsc

Comment 7 Miroslav Grepl 2009-11-16 08:29:50 UTC
*** Bug 537636 has been marked as a duplicate of this bug. ***

Comment 8 Miroslav Grepl 2009-11-16 12:31:23 UTC
*** Bug 537790 has been marked as a duplicate of this bug. ***

Comment 9 Daniel Walsh 2009-11-16 14:45:20 UTC
Eric, can you describe what you figured out?  Is thunderbird running java directly?

Comment 10 Erik P. Olsen 2009-11-16 15:07:56 UTC
Actually, it's not thunderbird, it's firefox. I refer to bug 533486 which has been declared duplicate of this bug. When I remove Sun's java from the plugins directory I don't get hit by the bug. And when I disable SELinux I can run normally with firefox and the java plugin from Sun.

Comment 11 Daniel Walsh 2009-11-16 15:54:38 UTC
*** Bug 537699 has been marked as a duplicate of this bug. ***

Comment 12 cje 2009-11-16 21:20:38 UTC
rpmfusion has a bug (90) for this problem as it affects the proprietary nvidia drivers.  i've asked about a) talking to nvidia about it and b) creating a policy for it.

does anyone know if a similar request has been raised with sun regarding their java package?

also, when i ran that execstack command line i got lots of errors i had trouble filtering out, which made it tricky to see what was going on.  this probably isn't the best solution but i ended up with this:
find /usr/lib* -name \*.so\* | while read line; do execstack -q $line 2>/dev/null | grep ^X; done

which showed up /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/amd64/server/libjvm.so - from java-1.6.0-openjdk-1.6.0.0-33.b16.fc12.x86_64 as also needing execstack.  not sure if we should be worried about that.

Comment 13 Daniel Walsh 2009-11-16 21:23:12 UTC
If you clear the flag using execstack -c, does it work?

Comment 14 Daniel Walsh 2009-11-17 21:13:00 UTC
*** Bug 538141 has been marked as a duplicate of this bug. ***

Comment 15 Daniel Walsh 2009-11-18 14:39:52 UTC
*** Bug 538413 has been marked as a duplicate of this bug. ***

Comment 16 Daniel Walsh 2009-11-19 15:03:33 UTC
*** Bug 538764 has been marked as a duplicate of this bug. ***

Comment 17 Miroslav Grepl 2009-11-20 09:22:11 UTC
*** Bug 539333 has been marked as a duplicate of this bug. ***

Comment 18 Miroslav Grepl 2009-11-20 09:28:46 UTC
*** Bug 539398 has been marked as a duplicate of this bug. ***

Comment 19 Daniel Walsh 2009-11-20 12:49:58 UTC
*** Bug 539359 has been marked as a duplicate of this bug. ***

Comment 20 Daniel Walsh 2009-11-20 12:52:37 UTC
*** Bug 539409 has been marked as a duplicate of this bug. ***

Comment 21 Daniel Walsh 2009-11-20 13:04:26 UTC
*** Bug 539425 has been marked as a duplicate of this bug. ***

Comment 22 Daniel Walsh 2009-11-20 15:17:53 UTC
*** Bug 539531 has been marked as a duplicate of this bug. ***

Comment 23 Daniel Walsh 2009-11-20 21:36:30 UTC
*** Bug 539713 has been marked as a duplicate of this bug. ***

Comment 24 Miroslav Grepl 2009-11-23 07:52:40 UTC
*** Bug 539867 has been marked as a duplicate of this bug. ***

Comment 25 James Heather 2009-11-23 08:17:26 UTC
> which showed up
> /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/amd64/server/libjvm.so -
> from java-1.6.0-openjdk-1.6.0.0-33.b16.fc12.x86_64 as also needing execstack. 
> not sure if we should be worried about that.  

Sounds like it. I can confirm that I get the same. On my system, with no nvidia, this is the only execstack file. (On a similar system, but with nvidia drivers, only this file and the nvidia libs need execstack.)

Not sure this is CANTFIX--should this be either reopened, or reclassified as an openjdk bug?

What on earth is that file (and the rest of them) doing in /usr/lib rather than /usr/lib64, by the way?

James

Comment 26 Miroslav Grepl 2009-11-23 08:26:06 UTC
*** Bug 539799 has been marked as a duplicate of this bug. ***

Comment 27 Miroslav Grepl 2009-11-23 11:07:26 UTC
*** Bug 539974 has been marked as a duplicate of this bug. ***

Comment 28 Miroslav Grepl 2009-11-23 11:09:43 UTC
*** Bug 540332 has been marked as a duplicate of this bug. ***

Comment 29 Miroslav Grepl 2009-11-23 11:31:16 UTC
*** Bug 540195 has been marked as a duplicate of this bug. ***

Comment 30 Miroslav Grepl 2009-11-23 11:34:34 UTC
*** Bug 539969 has been marked as a duplicate of this bug. ***

Comment 31 Daniel Walsh 2009-11-23 13:48:03 UTC
*** Bug 539813 has been marked as a duplicate of this bug. ***

Comment 32 Daniel Walsh 2009-11-23 15:19:17 UTC
*** Bug 540021 has been marked as a duplicate of this bug. ***

Comment 33 Daniel Walsh 2009-11-23 15:47:07 UTC
*** Bug 540073 has been marked as a duplicate of this bug. ***

Comment 34 Daniel Walsh 2009-11-24 16:45:27 UTC
*** Bug 540993 has been marked as a duplicate of this bug. ***

Comment 35 Daniel Walsh 2009-11-24 20:05:58 UTC
*** Bug 541036 has been marked as a duplicate of this bug. ***

Comment 36 Daniel Walsh 2009-11-25 11:46:06 UTC
*** Bug 541178 has been marked as a duplicate of this bug. ***

Comment 37 Daniel Walsh 2009-11-25 15:19:18 UTC
*** Bug 541329 has been marked as a duplicate of this bug. ***

Comment 38 Daniel Walsh 2009-11-25 19:05:40 UTC
*** Bug 541384 has been marked as a duplicate of this bug. ***

Comment 39 Miroslav Grepl 2009-11-26 09:14:35 UTC
*** Bug 541489 has been marked as a duplicate of this bug. ***

Comment 40 Miroslav Grepl 2009-11-26 09:23:42 UTC
*** Bug 541493 has been marked as a duplicate of this bug. ***

Comment 41 Miroslav Grepl 2009-11-26 09:28:30 UTC
*** Bug 541484 has been marked as a duplicate of this bug. ***

Comment 42 Miroslav Grepl 2009-11-27 08:43:57 UTC
*** Bug 541647 has been marked as a duplicate of this bug. ***

Comment 43 Miroslav Grepl 2009-11-27 08:46:14 UTC
*** Bug 541665 has been marked as a duplicate of this bug. ***

Comment 44 Miroslav Grepl 2009-11-27 08:49:03 UTC
*** Bug 541746 has been marked as a duplicate of this bug. ***

Comment 45 Miroslav Grepl 2009-11-27 08:55:55 UTC
*** Bug 541681 has been marked as a duplicate of this bug. ***

Comment 46 Daniel Walsh 2009-11-29 19:49:31 UTC
*** Bug 542421 has been marked as a duplicate of this bug. ***

Comment 47 Miroslav Grepl 2009-11-30 12:07:38 UTC
*** Bug 542515 has been marked as a duplicate of this bug. ***

Comment 48 Miroslav Grepl 2009-11-30 12:09:17 UTC
*** Bug 542336 has been marked as a duplicate of this bug. ***

Comment 49 Miroslav Grepl 2009-11-30 12:10:06 UTC
*** Bug 542483 has been marked as a duplicate of this bug. ***

Comment 50 Daniel Walsh 2009-11-30 15:44:17 UTC
*** Bug 541629 has been marked as a duplicate of this bug. ***

Comment 51 James Heather 2009-11-30 15:53:43 UTC
We've now had this bug reported 44 times!

Does that make a case for a tweak to abrt to give it better duplicate detection logic? I've noticed it often finds for itself that a bug report is a duplicate, but there's clearly room for improvement.

Might be worth it even on an ad hoc basis, e.g., add a rule that anything with the title '(allow_execstack) SELinux is preventing /usr/lib/thunderbird-3.0b4/thunderbird-bin from making the program stack executable' is a duplicate of this.

DW and MG must be losing the will to live just flagging duplicates.

Comment 52 Daniel Walsh 2009-11-30 16:24:54 UTC
*** Bug 541674 has been marked as a duplicate of this bug. ***

Comment 53 Daniel Walsh 2009-11-30 18:24:53 UTC
*** Bug 541837 has been marked as a duplicate of this bug. ***

Comment 54 Daniel Walsh 2009-11-30 19:04:11 UTC
*** Bug 542772 has been marked as a duplicate of this bug. ***

Comment 55 Daniel Walsh 2009-11-30 19:17:33 UTC
*** Bug 542719 has been marked as a duplicate of this bug. ***

Comment 56 Daniel Walsh 2009-11-30 21:09:16 UTC
*** Bug 542252 has been marked as a duplicate of this bug. ***

Comment 57 Daniel Walsh 2009-11-30 21:51:16 UTC
*** Bug 542360 has been marked as a duplicate of this bug. ***

Comment 58 Daniel Walsh 2009-11-30 22:10:35 UTC
*** Bug 542499 has been marked as a duplicate of this bug. ***

Comment 59 Daniel Walsh 2009-11-30 22:35:28 UTC
*** Bug 541922 has been marked as a duplicate of this bug. ***

Comment 60 Daniel Walsh 2009-12-01 12:43:43 UTC
*** Bug 542960 has been marked as a duplicate of this bug. ***

Comment 61 Daniel Walsh 2009-12-01 15:21:26 UTC
*** Bug 538659 has been marked as a duplicate of this bug. ***

Comment 62 Daniel Walsh 2009-12-01 17:08:21 UTC
*** Bug 543086 has been marked as a duplicate of this bug. ***

Comment 63 Daniel Walsh 2009-12-01 19:53:48 UTC
*** Bug 543145 has been marked as a duplicate of this bug. ***

Comment 64 Daniel Walsh 2009-12-02 19:23:59 UTC
*** Bug 543493 has been marked as a duplicate of this bug. ***

Comment 65 Miroslav Grepl 2009-12-03 10:19:14 UTC
*** Bug 543804 has been marked as a duplicate of this bug. ***

Comment 66 Daniel Walsh 2009-12-03 15:11:08 UTC
*** Bug 543891 has been marked as a duplicate of this bug. ***

Comment 67 Daniel Walsh 2009-12-03 15:28:02 UTC
*** Bug 543939 has been marked as a duplicate of this bug. ***

Comment 68 Suraj Prasad 2009-12-03 20:40:18 UTC
I am confused.. running the command for execstack -q in the following form

find /usr/lib64 -name \*.so\* -exec execstack -q {} \; -print | grep ^X

 as stated above tells me that no such file exists.

then I navigate to the folder and there exactly is no folder by that name i.e. 'lib64'
now what is this.. I have allowed execstack by setting the boolean value.. but I am afraid the same bug will come up again.

Comment 69 Daniel Walsh 2009-12-03 21:58:26 UTC
You also should look in /lib64

Suraj are you using xguest?

Comment 70 Daniel Walsh 2009-12-05 12:14:28 UTC
*** Bug 544453 has been marked as a duplicate of this bug. ***

Comment 71 Miroslav Grepl 2009-12-07 10:33:22 UTC
*** Bug 544694 has been marked as a duplicate of this bug. ***

Comment 72 Daniel Walsh 2009-12-09 14:19:17 UTC
*** Bug 545617 has been marked as a duplicate of this bug. ***

Comment 73 Daniel Walsh 2009-12-09 15:24:20 UTC
*** Bug 545844 has been marked as a duplicate of this bug. ***

Comment 74 Daniel Walsh 2009-12-09 16:39:02 UTC
*** Bug 545894 has been marked as a duplicate of this bug. ***

Comment 75 Daniel Walsh 2009-12-10 15:44:01 UTC
*** Bug 546162 has been marked as a duplicate of this bug. ***

Comment 76 Daniel Walsh 2009-12-10 18:00:33 UTC
*** Bug 546349 has been marked as a duplicate of this bug. ***

Comment 77 Daniel Walsh 2009-12-10 19:12:17 UTC
*** Bug 546383 has been marked as a duplicate of this bug. ***

Comment 78 Daniel Walsh 2009-12-11 21:21:08 UTC
*** Bug 546689 has been marked as a duplicate of this bug. ***

Comment 79 Daniel Walsh 2009-12-12 12:14:21 UTC
*** Bug 546776 has been marked as a duplicate of this bug. ***

Comment 80 Daniel Walsh 2009-12-14 12:51:29 UTC
*** Bug 547325 has been marked as a duplicate of this bug. ***

Comment 81 Daniel Walsh 2009-12-16 19:49:45 UTC
*** Bug 548159 has been marked as a duplicate of this bug. ***

Comment 82 Daniel Walsh 2009-12-17 16:53:43 UTC
*** Bug 548506 has been marked as a duplicate of this bug. ***

Comment 83 Daniel Walsh 2009-12-21 18:21:02 UTC
*** Bug 549440 has been marked as a duplicate of this bug. ***

Comment 84 Daniel Walsh 2009-12-23 14:21:38 UTC
*** Bug 533535 has been marked as a duplicate of this bug. ***

Comment 85 Daniel Walsh 2009-12-23 16:23:42 UTC
*** Bug 532239 has been marked as a duplicate of this bug. ***

Comment 86 Daniel Walsh 2009-12-23 16:33:49 UTC
*** Bug 530816 has been marked as a duplicate of this bug. ***

Comment 87 Daniel Walsh 2009-12-23 16:54:36 UTC
*** Bug 536964 has been marked as a duplicate of this bug. ***

Comment 88 Daniel Walsh 2009-12-23 16:57:56 UTC
*** Bug 537675 has been marked as a duplicate of this bug. ***

Comment 89 Daniel Walsh 2009-12-23 16:59:20 UTC
*** Bug 538545 has been marked as a duplicate of this bug. ***

Comment 90 Daniel Walsh 2009-12-23 17:14:40 UTC
*** Bug 539226 has been marked as a duplicate of this bug. ***

Comment 91 Daniel Walsh 2009-12-23 17:27:02 UTC
*** Bug 543051 has been marked as a duplicate of this bug. ***

Comment 92 Miroslav Grepl 2009-12-25 10:48:27 UTC
*** Bug 550380 has been marked as a duplicate of this bug. ***

Comment 93 Daniel Walsh 2009-12-29 14:03:47 UTC
*** Bug 550509 has been marked as a duplicate of this bug. ***

Comment 94 Daniel Walsh 2009-12-30 00:44:30 UTC
*** Bug 550718 has been marked as a duplicate of this bug. ***

Comment 95 Miroslav Grepl 2009-12-30 11:07:49 UTC
*** Bug 551361 has been marked as a duplicate of this bug. ***

Comment 96 Miroslav Grepl 2010-01-08 10:16:13 UTC
*** Bug 553504 has been marked as a duplicate of this bug. ***

Comment 97 Daniel Walsh 2010-01-08 14:37:46 UTC
*** Bug 553468 has been marked as a duplicate of this bug. ***

Comment 98 Daniel Walsh 2010-01-25 17:26:45 UTC
*** Bug 558118 has been marked as a duplicate of this bug. ***

Comment 99 Daniel Walsh 2010-01-25 17:36:37 UTC
*** Bug 558153 has been marked as a duplicate of this bug. ***

Comment 100 Miroslav Grepl 2010-02-01 16:50:55 UTC
*** Bug 560677 has been marked as a duplicate of this bug. ***

Comment 101 Daniel Walsh 2010-04-19 02:01:25 UTC
*** Bug 583294 has been marked as a duplicate of this bug. ***

Comment 102 Daniel Walsh 2010-04-19 02:14:15 UTC
*** Bug 583369 has been marked as a duplicate of this bug. ***

Comment 103 Daniel Walsh 2010-04-21 14:29:08 UTC
*** Bug 584404 has been marked as a duplicate of this bug. ***

Comment 104 Jeff Raber 2010-09-20 04:25:23 UTC
(In reply to comment #1)
> This link 
> 
> http://people.redhat.com/~drepper/selinux-mem.html
> 
> explains the access.
> 
Dan, The link seems to be dead.  Do you have any other reading suggestions for people interested in learning about execstack issues?

Comment 105 Daniel Walsh 2010-09-22 16:11:48 UTC
http://www.akkadia.org/drepper/selinux-mem.html

Comment 106 Daniel Walsh 2010-11-11 21:35:59 UTC
*** Bug 652297 has been marked as a duplicate of this bug. ***

Comment 107 Pete Gale 2010-11-15 22:31:08 UTC
AdbeRdr9.4-1_i486linux_enu.rpm installed files that triggered this denial also:

/opt/Adobe/Reader9/Reader/intellinux/bin/acroread: error while loading shared libraries: libcrypto.so.0.9.8: cannot enable executable stack as shared object requires: Permission denied

The work-around above fixed the issue for me.

# pwd
/opt/Adobe/Reader9/Reader/intellinux/lib
# find . -name \*.so\* -exec execstack -q {} \; -print | grep ^X
X ./libcrypto.so.0
X ./libcrypto.so
X ./libcrypto.so.0.9.8
X ./libsccore.so
# execstack -c libcrypto.so* libsccore.so 
# find . -name \*.so\* -exec execstack -q {} \; -print | grep ^X
#

acroread would start up after making this change.