-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/etc/selinux/targeted/policy/policy.31 missing from default install #219
Comments
A quick build takes about two hours btw. EDIT: Turns out that package does not provide that file. It would also seem that that file will also need to be placed into the initrd file, instead of as a package in the userspace operating system partition. Time to do some more research and testing initrd changes. Watch this space. |
Thanks for help! |
This warrants a post instead of an edit. File '/etc/selinux/targeted/policy/policy.31' seems to be provided by package 'selinux-policy-targeted' that exists in either an Enterprise Linux (or a clone) or Fedora. I see it on my Oracle Linux 8 chromebook. Going to download the noarch package from here to copy and paste that file into a resource file (or files?) to be included in the initramfs. Going to edit buildInitramFS.sh and create the '/etc/selinux/targeted/policy/' directory, copy relevant file into the appropriate folder, and document the changes. Once there is something worth documenting I'll let you all know. In short, I think all the changes can be self contained to only the initramfs. I notice vanilla Debian does not dictate selinux policy, while Enterprise Linux does. I want to respect that design as much as possible, as I have seen backups of conversations where people where using PrawnOS as an installer for their preferred os. EDIT: Doing a build now. The policy.31 file once extracted from the rpm file is 8.1 megabytes though. Good thing the kernel partition got resized. EDIT 2: Now getting a slightly different message. SELinux: Could not open policy file <= /etc/selinux/default/policy/policy.31: No such file or directory. Going to do another build with that directory, and symlink the same file into it. Not sure on how to decrease the policy file size yet. |
Is it possible to make it smaller? Putting 8mb file is not good... |
no wonder armhf is sold out everywhere. |
Seeing as we do not currently use any selinux policies, and I would have to do a lot of research to determine if and how PrawnOS would implement SELinux I am going to disable selinux in the kernel as a seperate commit citing this issue and the PR for the splash. |
Please note I had most of this written earlier, and don't want it to go to waste. Still working on the selinux issue, or why it springs up even when U DAC was the default module, and with selinux set to permissive... Regarding kernel config, the two major changes there are: 1) changing the initramfs filename and compression settings, and 2) setting the Default console loglevel from 7 to 1. Am I correct? And some notes. I've also noticed that @SolidHal's repo has had "CONFIG_SECURITY_SELINUX=y" and "CONFIG_DEFAULT_SECURITY_SELINUX=y" set for years, which I believe is consistent with Debian x86, and it's SELinux Documentation. Debian allows for installing selinux userspace packages after install time with their offered kernel. Also worth noting is that on @Maccraft123's config file that "CONFIG_LSM_MMAP_MIN_ADDR=32768" is missing and 2) "CONFIG_DEFAULT_SECURITY_DAC" used to be set to "Y" (yes). Which leads to 3) SELinux would still complain about the titular missing file. I'm also considering playing around with "mknod /dev/fb0 c 29 0" in the initramfs, and (finally) setting up a rescueshell partition. As a contingency, would you be willing to isolate the changes that add the daemon for disabling keyboard and touchpad into a separate branch and pull request. And on the topic of contingencies, I've been looking at bannerd, which appears to draw from an image file to /dev/fb0. It can read a .BMP file and draw it in the center of the screen. That would mean only needing one image file too. And this fork has changes that let it exit when it senses a specific program running. I'm thinking if told to kill bannerd when "*dm" is running should work for both gdm and lightdm. |
/etc/selinux/targeted/policy/policy.31 file is missing from default install, and it makes selinux write to tty, ignoring loglevel
This blocks #215
A workaround was to disable it, but some people like to use it
@gdallasdye, maybe you know how to fix it?
The text was updated successfully, but these errors were encountered: