active questions tagged selinux - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:19:59Zhttp://stackoverflow.com/feeds/tag/selinuxhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1787583/log-files-not-being-written-to-passenger1Log files not being written to (Passenger)MrCheetoDust2009-11-24T03:26:15Z2009-11-25T13:52:44Z
<p>Locally, my app runs fine on and writes to its logs.</p>
<p>My production server is running CentOS with an Apache server running Passenger. When trying to debug, I noticed my log files were not being written to. First thing I did was chmod 0666 them, and when I found out that didn't work I looked at my apache log. I found this: Rails Error: Unable to access log file. Please ensure that /var/www/vhosts/mysite.com/rails/exp/releases/20091124020342/log/production.log exists and is chmod 0666. The log level has been raised to WARN and the output directed to STDERR until the problem is fixed.</p>
<p>(Note: I am deploying with capistrano)</p>
<p>Anyway, I Googled around and found people saying it's an SELinux issue, so I looked on passenger's docs and found this: <a href="http://www.modrails.com/documentation/Users%20guide.html#%5Fmy%5Frails%5Fapplication%5F8217%5Fs%5Flog%5Ffile%5Fis%5Fnot%5Fbeing%5Fwritten%5Fto" rel="nofollow">http://www.modrails.com/documentation/Users%20guide.html#%5Fmy%5Frails%5Fapplication%5F8217%5Fs%5Flog%5Ffile%5Fis%5Fnot%5Fbeing%5Fwritten%5Fto</a></p>
<p>which basically says do this: chcon -R -h -t httpd_sys_content_t /path/to/your/rails/app</p>
<p>However, when I fill in the proper path I get: Operation not supported.</p>
<p>Pretty stumped...any ideas?</p>
http://stackoverflow.com/questions/1749927/is-there-a-way-to-build-a-libxml2-without-text-relocations-on-linux0Is there a way to build a libxml2 without text relocations on Linux?struppi2009-11-17T16:10:11Z2009-11-18T08:40:04Z
<p>Good afternoon,</p>
<p>I am having difficulties with libxml2.</p>
<p>I tried to build the Perl module XML-LibXML which is part of our standard runtime environment. However, this time the installation on a RHEL5 box failed, because the build process complained about missing libxml2:</p>
<pre>
$> perl Makefile.PL LIB=/foo/lib/perl PREFIX=/foo INSTALLDIRS=site
enable native perl UTF8
running xml2-config...ok (2.7.6)
looking for -lxml2... no
looking for -llibxml2... no
libxml2 not found
</pre>
<p>However, the file was available. Starting the build with</p>
<pre>
perl Makefile.PL LIB=/usr/inform/target/lib/perl PREFIX=/usr/inform/target INSTALLDIRS=site
</pre>
<p>led to more evidence of the real problem:</p>
<pre>
[...]
Can't load 'blib/arch/auto/Conftest/Conftest.so' for module Conftest: /usr/inform/target/lib/libxml2.so.2: cannot restore segment prot after reloc: Permission denied at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm line 230.
at test.pl line 2
[...]
</pre>
<p>After some investigations I found that the problem appears to be that <code>libxml2.so</code> is created with text relocation:</p>
<pre>
[tess91@INF-AW] lib$ eu-findtextrel libxml2.so.2.7.6
the file containing the function 'get_crc_table' is not compiled with -fpic/-fPIC
the file containing the function 'crc32' is not compiled with -fpic/-fPIC
the file containing the function 'gzerror' is not compiled with -fpic/-fPIC
[...]
</pre>
<p>Ans since we have SElinux active on the target machine, linking against libxml.2 failed!</p>
<p>Is there any possibility to create <code>libxml2</code> properly, or do I have to ask the admin to twist SElinux to allow relocations?</p>
<p>I really can't believe I am the olny one having this problem on Linux with SElinux active. What am I missing?</p>
<p>Any help apprecitated!</p>
<p>Regards,
Stefan</p>
http://stackoverflow.com/questions/1664034/selinux-fedora-and-trusted-applet-crashing0SELinux, Fedora, and Trusted Applet crashing?Stefan Kendall2009-11-02T22:07:27Z2009-11-06T22:28:02Z
<p>For some reason, if I run Firefox 3.5.x under Fedora 11 with SELinux enabled, my browser crashes when I attempt to embed the applet dynamically. Under Windows, Ubuntu, and Mac, the user is prompted to trust the signer and then trust the executing java applet, but under Fedora, I never see this prompt. If I disable SELinux, I get NO prompting, and the applet embeds without any notice whatsoever!</p>
<p>Remembering that trusted applets can execute user programs and manipulate user data, this becomes quite a nightmare. Has anyone else had to deal with SELinux and Fedora/SuSE/Linux and trusted applets before? If so, how did you overcome this broken behavior?</p>
http://stackoverflow.com/questions/1367428/real-life-selinux-security-example1Real life SELinux security example? [closed]kmarsh2009-09-02T12:33:52Z2009-09-02T13:11:27Z
<p>Can anyone give a real life example of where SELinux saved their security bacon? (or AppArmour if you wish). If not your own, a pointer to someone with a credible experience?</p>
<p>Not a lab test, not a white paper, not a best practice, not a CERT advisory, but a real example, something like audit2why showing a real hacking attempt stopped in its tracks?</p>
<p>(If you have no example, please keep commentary in comments instead of Answers.)</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/97816/do-you-disable-selinux9Do you disable SELinux?manicmethod2008-09-18T22:55:12Z2009-08-10T12:08:46Z
<p>I want to know if people here typically disable SELinux on installations where it is on by default? If so can you explain why, what kind of system it was, etc?</p>
<p>I'd like to get as many opinions on this as possible.</p>
http://stackoverflow.com/questions/186789/best-security-practices-in-linux1Best security practices in LinuxFederico Ramponi2008-10-09T11:15:37Z2009-06-20T00:34:32Z
<p>What security best-practices would you strongly recommend in maintaining a Linux server? (i.e. bring up a firewall, disable unnecessary services, beware of suid executables, and so on.)</p>
<p>Also: is there a definitive reference on Selinux?</p>
<p>EDIT: Yes, I'm planning to put the machine on the Internet, with at least openvpn, ssh and apache (at the moment, without dynamic content), and to provide shell access to some people.</p>
http://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level3Is it possible to limit standard streams available to linux at the process level?Stephen Cagle2008-10-08T21:55:37Z2009-06-20T00:16:49Z
<p>I would like to be able to spawn a linux process that would only have access to stdin, stdout, and stderr (nothing more and nothing less). Can I do this at the process level itself? I am also implicitly stating (oxymoron) that I don't want the spawned process to be able to change the "thing" that the other end of the stream points to. </p>
<p>Metaphorically:</p>
<ul>
<li>the process has a input pipe that comes from somewhere, it cannot change where the pipe starts from, so it cannot control where input comes from.</li>
<li>the process has output and error pipes that go somewhere, it cannot change where the other end of the output pipes point to, so it cannot control where output goes to.</li>
<li>it cannot create any new pipes.</li>
</ul>
<p>I am also currently looking at SElinux. Would this allow me to create a process that only had access to these three streams? Thank you.</p>
http://stackoverflow.com/questions/1005683/selinux-and-java0SELinux and JAVAEG2009-06-17T08:00:23Z2009-06-19T23:33:47Z
<p>Are there any best practices to handle Java applications with SELinux?
Is it able to configure SELinux for each Java App or can only the VM be handled because it makes the finale system calls?</p>
<p>thanks</p>
http://stackoverflow.com/questions/739090/how-do-you-automate-the-launching-debugging-of-large-scale-projects4How do you automate the launching/debugging of large scale projects?ceretullis2009-04-10T22:43:55Z2009-04-15T21:05:18Z
<p><strong>Scenario:</strong></p>
<p>There is a complex piece of software that is annoying to launch by hand. What I've done is to create a python script to launch the executable and attach <em>gdb</em> for debugging.</p>
<p>The process launching script:</p>
<ul>
<li>ensures an environment variable is set.</li>
<li>ensures a local build directory gets added to the environment's <code>LD_LIBRARY_PATH</code> variable.</li>
<li>changes the current working directory to where the executable expects to be (not my design)</li>
<li>launches the executable with a config file the only command line option </li>
<li>pipes the output from the executable to a second logging process</li>
<li>remembers PID of executable, then launches & attaches gdb to running executable.</li>
</ul>
<p>The script works, with one caveat. <strong>ctrl-c doesn't interrupt the debugee and return control to gdb.</strong> So if I "continue" with no active breakpoints I can never stop the process again, it has to be killed/interrupted from another shell. BTW, running "kill -s SIGINT <pid>" where <pid> is the debuggee's pid does get me back to gdb's prompt... but it is really annoying to have to do things this way</p>
<p>At first I thought Python was grabbing the SIGINT signal, but this doesn't seem to be the case as I set up signal handlers forward the signal to the debugee and that doesn't fix the problem.</p>
<p>I've tried various configurations to the python script (calling os.spawn* instead of subprocess, etc.) It seems that any way I go about it, if python launched the child process, SIGINT (ctrl-c) signals DO NOT to get routed to gdb or the child process. </p>
<p><strong>Current line of thinking</strong></p>
<ul>
<li>This might be related to needing a
separate process group id for the debugee & gdb...any credence to this? </li>
<li>Possible bug with SELinux?</li>
</ul>
<p><strong>Info:</strong> </p>
<ul>
<li>gdb 6.8</li>
<li>Python 2.5.2 (problem present with Python 2.6.1 as well)</li>
<li>SELinux Environment (bug delivering signals to processes?)</li>
</ul>
<p><strong>Alternatives I've considered:</strong></p>
<ul>
<li>Setting up a .gdbinit file to do as much of what the script does, environment variables and current working directory are a problem with this approach. </li>
<li>Launching executable and attaching gdb manually (yuck)</li>
</ul>
<p><strong>Question:</strong>
How do you automate the launching/debugging of large scale projects?</p>
<p><strong>Update:</strong>
I've tried Nicholas Riley's examples below, on my Macintosh at home they all allow cntl-c to work to varrying degrees, on the production boxen (which I now to believe may be running SELinux) they don't... </p>
http://stackoverflow.com/questions/436976/ldap-wont-update-if-cached-data-exists1LDAP won't update if cached data existsjohn1462009-01-12T20:53:17Z2009-03-10T02:17:50Z
<p>We have an SELinux client that authenticates network users using LDAP connecting to an Active Directory server. Since our machines have to operate "untethered," we have to use nscd to cache group and passwd info.</p>
<p>Here's the issue. If we change group information on the Active Directory server, then log in on the client, if a cache exists for that user, LDAP seems to ignore the server and only use the cached data. The only way we've been able to get an update is to invalidate the passwd cache.</p>
<p>Significant portion of /etc/nsswitch.conf:</p>
<pre>
passwd: file ldap cache
group: file ldap cache
shadow: file ldap cache
</pre>
<p>Thanks.</p>
<p><b>Update:</b> Figured out running <code>strace getent passwd</code> that nscd cache gets checked before /etc/nsswitch.conf gets read, so the configuration of nss doesn't matter.</p>
<p><b>Update 2:</b> Playing with nss_updatedb today to see if it will work. So far no joy, although <a href="https://help.ubuntu.com/community/PamCcredsHowto" rel="nofollow">this howto</a> looks like exactly what we need to do.</p>
http://stackoverflow.com/questions/607599/how-to-debug-an-issue-of-crons-not-executing-a-given-script-or-other0How to debug an issue of cron's not executing a given script -- or other?Ian Terrell2009-03-03T18:38:55Z2009-03-03T19:02:30Z
<p>I have a Rails script that I would like to run daily. I know there are many approaches, and that a cron'd <code>script/runner</code> approach is frowned upon by some, but it seems to meet my needs.</p>
<p>However, my script is not getting executed as scheduled.</p>
<p>My application lives at <code>/data/myapp/current</code>, and the script is in <code>script/myscript.rb</code>. I can run it manually without problem as <code>root</code> with:</p>
<pre><code>/data/myapp/current/script/runner -e production /data/myapp/current/script/myscript.rb
</code></pre>
<p>When I do that, the special log file (<code>log/myscript.log</code>) gets logged to as expected:</p>
<pre><code>Tue Mar 03 13:16:00 -0500 2009 Starting to execute script...
...
Tue Mar 03 13:19:08 -0500 2009 Finished executing script in 188.075028 seconds
</code></pre>
<p>I have it set to run with <code>cron</code> every morning at 4 am. <code>root</code>'s crontab:</p>
<pre><code>$ crontab -l
0 4 * * * /data/myapp/current/script/runner -e production /data/myapp/current/script/myscript.rb
</code></pre>
<p>In fact, it looks like it's tried to run as recently as this morning!</p>
<pre><code>$ tail -100 /var/log/cron
...
Mar 2 04:00:01 hostname crond[8894]: (root) CMD (/data/myapp/current/script/runner -e production /data/myapp/current/script/myscript.rb)
...
Mar 3 04:00:01 hostname crond[22398]: (root) CMD (/data/myapp/current/script/runner -e production /data/myapp/current/script/myscript.rb)
...
</code></pre>
<p>However, there is no entry in my log file, and the data that it should update has not been getting updated. The log file permissions (as a test) were even set to globally writable:</p>
<pre><code>$ ls -lh
total 19M
...
-rw-rw-rw- 1 myuser apps 7.4K Mar 3 13:19 myscript.log
...
</code></pre>
<p>I am running on CentOS 5.</p>
<p>So my questions are...</p>
<ol>
<li>Where else can I look for information to debug this?</li>
<li>Could this be a SELinux issue? Is there a security context that I could set or change that might resolve this error?</li>
</ol>
<p>Thank you!</p>
<p><strong>Update</strong></p>
<p>Thank you to Paul and Luke both. It did turn out to be an environment issue, and capturing the <code>stderr</code> to a log file enabled me to find the error.</p>
<pre><code>$ cat cron.log
/usr/bin/env: ruby: No such file or directory
$ head /data/myapp/current/script/runner
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../config/boot'
require 'commands/runner'
</code></pre>
<p>Adding the specific Ruby executable to the command did the trick:</p>
<pre><code>$ crontab -l
0 4 * * * /usr/local/bin/ruby /data/myapp/current/script/runner -e production /data/myapp/current/script/myscript.rb >> /data/myapp/current/log/cron.log 2>&1
</code></pre>