summaryrefslogtreecommitdiff
path: root/src/label.c
AgeCommit message (Collapse)Author
2012-04-10util: move all to shared/ and split external dependencies in separate ↵Kay Sievers
internal libraries Before: $ ldd /lib/systemd/systemd-timestamp linux-vdso.so.1 => (0x00007fffb05ff000) libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f90aac57000) libcap.so.2 => /lib64/libcap.so.2 (0x00007f90aaa53000) librt.so.1 => /lib64/librt.so.1 (0x00007f90aa84a000) libc.so.6 => /lib64/libc.so.6 (0x00007f90aa494000) /lib64/ld-linux-x86-64.so.2 (0x00007f90aae90000) libdl.so.2 => /lib64/libdl.so.2 (0x00007f90aa290000) libattr.so.1 => /lib64/libattr.so.1 (0x00007f90aa08a000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f90a9e6e000) After: $ ldd systemd-timestamp linux-vdso.so.1 => (0x00007fff3cbff000) libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f5eaa1c3000) librt.so.1 => /lib64/librt.so.1 (0x00007f5ea9fbb000) libc.so.6 => /lib64/libc.so.6 (0x00007f5ea9c04000) /lib64/ld-linux-x86-64.so.2 (0x00007f5eaa3fc000) libdl.so.2 => /lib64/libdl.so.2 (0x00007f5ea9a00000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f5ea97e4000)
2011-12-19label: fix labeling of symbolic linksDan Walsh
2011-09-01label: fix database checkLennart Poettering
2011-08-31label: minor fixesLennart Poettering
2011-08-31label: introduce label_bind() and make use of it where necessaryLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=729997
2011-08-29selinux: retest selinux after we loaded the policyLennart Poettering
2011-07-29selinux: mount /sys, /proc, /dev before we load the SELinux policyLennart Poettering
2011-07-28label: generalize label_get_socket_label_from_exe() a bitLennart Poettering
2011-07-27selinux: also profile memory usageLennart Poettering
2011-07-25selinux: log how much time it takes to load the SELinux policy and databaseLennart Poettering
2011-04-28label: don't print warning when we try ro relabel an non-existing fileLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=698674
2011-02-25label: udev might be making changes in /dev while we iterate through itLennart Poettering
Also, there are most likely dead symlinks in there, so let's ignore ENOENT when we relabel. https://bugzilla.redhat.com/show_bug.cgi?id=680169
2010-11-10label: use internal utility functions wher epossibleLennart Poettering
2010-10-27mounts: automatically create /dev/stderr and friends early on boot so that ↵Lennart Poettering
they are around when we run shell scripts before udevd
2010-10-27selinux: automatically load policy if the initrd hasn't done this for us yetLennart Poettering
2010-10-19label: don't fail miserably if filesystem doesn't do xattrs/labelsLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=642664
2010-10-18label: if the selinux policy knows no label, then silently don't do anythingLennart Poettering
2010-08-20selinux: properly query policy for FIFO filesLennart Poettering
2010-08-14emacs: make sure nobody accidently adds tabs to our sourcesLennart Poettering
2010-08-11selinux: split off selinux calls into seperate file label.cLennart Poettering