├── .fmf └── version ├── .github └── workflows │ └── checks.yml ├── COPYING ├── Makefile ├── README.md ├── ToDo ├── defconfig ├── doc └── tests │ ├── Makefile │ ├── ackno.sgml │ ├── biblio.sgml │ ├── binprm.sgml │ ├── capable.sgml │ ├── coverage.sgml │ ├── custom.dsl │ ├── environment.sgml │ ├── file.sgml │ ├── inode.sgml │ ├── intro.sgml │ ├── ipc.sgml │ ├── socket.sgml │ ├── system.sgml │ ├── task.sgml │ └── tests.sgml ├── policy ├── .gitignore ├── Makefile ├── test_add_levels.cil ├── test_atsecure.te ├── test_attrib.te ├── test_binder.te ├── test_binder_bpf.te ├── test_bounds.te ├── test_bpf.te ├── test_cap_userns.te ├── test_capable_file.te ├── test_capable_net.te ├── test_capable_sys.te ├── test_cgroupfs.te ├── test_dyntrace.te ├── test_dyntrans.te ├── test_entrypoint.te ├── test_execshare.te ├── test_exectrace.te ├── test_execute_no_trans.te ├── test_extended_socket_class.te ├── test_fdreceive.te ├── test_fdreceive_bpf.te ├── test_file.te ├── test_file_load.te ├── test_filesystem.te ├── test_filesystem_name_trans.te ├── test_filesystem_notify.te ├── test_glblub.cil ├── test_global.te ├── test_ibendport.te ├── test_ibpkey.te ├── test_inet_socket.te ├── test_inherit.te ├── test_io_uring.te ├── test_ioctl.te ├── test_ioctl_cond_xperms.te ├── test_ioctl_xperms.te ├── test_ipc.te ├── test_key_socket.te ├── test_keys.te ├── test_link.te ├── test_mac_admin.te ├── test_memfd.te ├── test_mkdir.te ├── test_mlsconstrain.cil ├── test_mmap.te ├── test_module_load.te ├── test_mqueue.te ├── test_netlink_socket.te ├── test_nlmsg.te ├── test_nnp_nosuid.te ├── test_notify.te ├── test_open.te ├── test_overlay_defaultrange.cil ├── test_overlayfs.te ├── test_perf_event.te ├── test_policy.if ├── test_prlimit.te ├── test_ptrace.te ├── test_readlink.te ├── test_relabel.te ├── test_rename.te ├── test_rxdir.te ├── test_sctp.te ├── test_secretmem.te ├── test_setattr.te ├── test_setnice.te ├── test_sigkill.te ├── test_stat.te ├── test_sysctl.te ├── test_task_create.te ├── test_task_getpgid.te ├── test_task_getsched.te ├── test_task_getsid.te ├── test_task_setpgid.te ├── test_task_setsched.te ├── test_transition.te ├── test_tun_tap.te ├── test_unix_socket.te ├── test_userfaultfd.te ├── test_vsock_socket.te └── test_watchkey.te ├── tests ├── Makefile ├── atsecure │ ├── .gitignore │ ├── Makefile │ ├── atsecure.c │ ├── evil.c │ ├── good.c │ └── test ├── binder │ ├── .gitignore │ ├── Makefile │ ├── binder_common.c │ ├── binder_common.h │ ├── check_binder.c │ ├── check_binderfs.c │ ├── cleanup_binder.sh │ ├── client.c │ ├── init_binder.sh │ ├── manager.c │ ├── service_provider.c │ └── test ├── bounds │ ├── .gitignore │ ├── Makefile │ ├── test │ └── thread.c ├── bpf │ ├── .gitignore │ ├── Makefile │ ├── bpf_common.c │ ├── bpf_common.h │ ├── bpf_test.c │ └── test ├── cap_userns │ ├── .gitignore │ ├── Makefile │ ├── test │ └── userns_child_exec.c ├── capable_file │ ├── .gitignore │ ├── Makefile │ ├── test │ └── test_lease.c ├── capable_net │ ├── .gitignore │ ├── Makefile │ ├── test │ ├── test_bind.c │ └── test_raw.c ├── capable_sys │ ├── .gitignore │ ├── Makefile │ ├── test │ ├── test_chroot.c │ ├── test_hostname.c │ ├── test_nice.c │ └── test_rawio.c ├── cgroupfs_label │ ├── Makefile │ └── test ├── checkreqprot │ ├── Makefile │ ├── default_value.sh │ └── test ├── domain_trans │ ├── Makefile │ └── test ├── dyntrace │ ├── .gitignore │ ├── Makefile │ ├── child.c │ ├── parent.c │ └── test ├── dyntrans │ ├── .gitignore │ ├── Makefile │ ├── parent.c │ └── test ├── entrypoint │ ├── Makefile │ └── test ├── execshare │ ├── .gitignore │ ├── Makefile │ ├── child.c │ ├── parent.c │ └── test ├── exectrace │ ├── .gitignore │ ├── Makefile │ ├── child.c │ ├── parent.c │ └── test ├── execute_no_trans │ ├── Makefile │ └── test ├── extended_socket_class │ ├── .gitignore │ ├── Makefile │ ├── sockcreate.c │ └── test ├── fdreceive │ ├── .gitignore │ ├── Makefile │ ├── client.c │ ├── server.c │ └── test ├── file │ ├── .gitignore │ ├── Makefile │ ├── test │ ├── test_fcntl.c │ ├── test_lock.c │ ├── test_mmap.c │ ├── test_mprotect.c │ ├── test_nofcntl.c │ ├── test_rw.c │ ├── test_seek.c │ ├── test_sigiotask.c │ └── wait_io.c ├── filesystem │ ├── .gitignore │ ├── Filesystem.pm │ ├── Makefile │ ├── btrfs │ ├── check_file_context.c │ ├── check_mount_context.c │ ├── create_file.c │ ├── create_file_change_context.c │ ├── ext4 │ ├── fanotify_fs.c │ ├── fs_relabel.c │ ├── grim_reaper.c │ ├── jfs │ ├── mount.c │ ├── native_quotas_test.c │ ├── quotas_test.c │ ├── statfs_test.c │ ├── test │ ├── umount.c │ ├── vfat │ ├── xfs │ └── xfs_quotas_test.c ├── fs_filesystem │ ├── .gitignore │ ├── Makefile │ ├── btrfs │ ├── ext4 │ ├── fs_common.c │ ├── fs_common.h │ ├── fsmount.c │ ├── fspick.c │ ├── jfs │ ├── move_mount.c │ ├── test │ ├── vfat │ └── xfs ├── glblub │ ├── .gitignore │ ├── Makefile │ ├── default_range.c │ └── test ├── inet_socket │ ├── .gitignore │ ├── Makefile │ ├── bind.c │ ├── calipso-flush │ ├── calipso-load │ ├── cipso-fl-flush │ ├── cipso-fl-load │ ├── cipso-flush │ ├── cipso-load-t1 │ ├── cipso-load-t2 │ ├── cipso-load-t5 │ ├── client.c │ ├── connect.c │ ├── ipsec-flush │ ├── ipsec-load │ ├── iptables-flush │ ├── iptables-load │ ├── mptcp │ ├── nftables-flush │ ├── nftables-load │ ├── server.c │ ├── tcp │ ├── test │ └── udp ├── infiniband_endport │ ├── Makefile │ ├── ibendport_test.conf │ └── test ├── infiniband_pkey │ ├── .gitignore │ ├── Makefile │ ├── create_modify_qp.c │ ├── ibpkey_test.conf │ └── test ├── inherit │ ├── .gitignore │ ├── Makefile │ ├── child.c │ ├── parent.c │ └── test ├── io_uring │ ├── .gitignore │ ├── Makefile │ ├── iouring.c │ └── test ├── ioctl │ ├── .gitignore │ ├── Makefile │ ├── test │ ├── test_ioctl.c │ ├── test_noioctl.c │ ├── test_siocgifindex.c │ └── test_siocgifname.c ├── key_socket │ ├── .gitignore │ ├── Makefile │ ├── key_sock.c │ └── test ├── keys │ ├── .gitignore │ ├── Makefile │ ├── keyctl.c │ ├── keyctl_relabel.c │ ├── keyring_service.c │ ├── keys_common.h │ ├── request_keys.c │ └── test ├── kvercmp ├── link │ ├── Makefile │ └── test ├── loop.pl ├── mac_admin │ ├── Makefile │ └── test ├── memfd │ ├── Makefile │ ├── memfd.c │ ├── memfd_fexecve.c │ ├── nothing.c │ └── test ├── mkdir │ ├── Makefile │ └── test ├── mmap │ ├── .gitignore │ ├── Makefile │ ├── mmap_anon_private.c │ ├── mmap_anon_shared.c │ ├── mmap_file_private.c │ ├── mmap_file_shared.c │ ├── mmap_hugetlb_anon_private.c │ ├── mmap_hugetlb_anon_shared.c │ ├── mmap_zero.c │ ├── mprotect_anon_private.c │ ├── mprotect_anon_shared.c │ ├── mprotect_file_private_execmod.c │ ├── mprotect_file_private_rwx.c │ ├── mprotect_file_private_rx.c │ ├── mprotect_file_shared.c │ ├── mprotect_heap.c │ ├── mprotect_hugetlb_anon_private.c │ ├── mprotect_hugetlb_anon_shared.c │ ├── mprotect_stack.c │ ├── mprotect_stack_thread.c │ ├── shmat.c │ ├── test │ └── utils.h ├── module_load │ ├── .gitignore │ ├── Makefile │ ├── finit_load.c │ ├── init_load.c │ ├── setest_firmware_load.c │ ├── setest_module_load.c │ ├── setest_module_request.c │ └── test ├── mqueue │ ├── .gitignore │ ├── Makefile │ ├── mqmgr.c │ ├── mqrcv.c │ ├── mqsnd.c │ └── test ├── msg │ ├── .gitignore │ ├── Makefile │ ├── msgctl.c │ ├── msgget.c │ ├── msgrcv.c │ ├── msgsnd.c │ └── test ├── netlink_socket │ ├── .gitignore │ ├── Makefile │ ├── netlinkcreate.c │ └── test ├── nfs_filesystem │ ├── Makefile │ └── test ├── nfsruntests.pl ├── nlmsg │ ├── .gitignore │ ├── Makefile │ ├── nlmsg.c │ └── test ├── nnp_nosuid │ ├── .gitignore │ ├── Makefile │ ├── checkcon.c │ ├── execnnp.c │ └── test ├── notify │ ├── .gitignore │ ├── Makefile │ ├── test │ ├── test_fanotify.c │ └── test_inotify.c ├── open │ ├── .gitignore │ ├── Makefile │ ├── append2write.c │ ├── fopen.c │ └── test ├── os_detect ├── overlay │ ├── .gitignore │ ├── Makefile │ ├── access.c │ ├── append │ ├── badentrypoint │ ├── cleanup-overlay │ ├── goodentrypoint │ ├── setup-overlay │ └── test ├── perf_event │ ├── .gitignore │ ├── Makefile │ ├── perf_event.c │ └── test ├── pol_detect ├── prlimit │ ├── .gitignore │ ├── Makefile │ ├── child.c │ ├── parent.c │ └── test ├── ptrace │ ├── .gitignore │ ├── Makefile │ ├── ptrace.c │ └── test ├── readlink │ ├── Makefile │ └── test ├── relabel │ ├── Makefile │ └── test ├── rename │ ├── Makefile │ └── test ├── runtests.pl ├── rxdir │ ├── Makefile │ └── test ├── sctp │ ├── .gitignore │ ├── Makefile │ ├── calipso-flush │ ├── calipso-load │ ├── cipso-fl-flush │ ├── cipso-fl-load │ ├── cipso-flush │ ├── cipso-load-t1 │ ├── cipso-load-t2 │ ├── cipso-load-t5 │ ├── fb-deny-label-flush │ ├── fb-deny-label-load │ ├── fb-label-flush │ ├── fb-label-load │ ├── iptables-flush │ ├── iptables-load │ ├── nftables-flush │ ├── nftables-load │ ├── sctp_asconf_params_client.c │ ├── sctp_asconf_params_server.c │ ├── sctp_bind.c │ ├── sctp_bindx.c │ ├── sctp_client.c │ ├── sctp_common.c │ ├── sctp_common.h │ ├── sctp_connectx.c │ ├── sctp_peeloff_client.c │ ├── sctp_peeloff_server.c │ ├── sctp_server.c │ └── test ├── secretmem │ ├── .gitignore │ ├── Makefile │ ├── secretmem.c │ └── test ├── sem │ ├── .gitignore │ ├── Makefile │ ├── getinfo.c │ ├── semctl.c │ ├── semget.c │ ├── semop.c │ └── test ├── setattr │ ├── Makefile │ └── test ├── setnice │ ├── .gitignore │ ├── Makefile │ ├── child.c │ ├── parent.c │ └── test ├── shm │ ├── .gitignore │ ├── Makefile │ ├── shmat.c │ ├── shmctl.c │ ├── shmget.c │ └── test ├── sigkill │ ├── .gitignore │ ├── Makefile │ ├── server.c │ └── test ├── stat │ ├── Makefile │ └── test ├── sysctl │ ├── Makefile │ └── test ├── task_create │ ├── .gitignore │ ├── Makefile │ ├── parent.c │ └── test ├── task_getpgid │ ├── .gitignore │ ├── Makefile │ ├── source.c │ └── test ├── task_getscheduler │ ├── .gitignore │ ├── Makefile │ ├── source.c │ └── test ├── task_getsid │ ├── .gitignore │ ├── Makefile │ ├── source.c │ └── test ├── task_setnice │ ├── Makefile │ └── test ├── task_setpgid │ ├── .gitignore │ ├── Makefile │ ├── source.c │ └── test ├── task_setscheduler │ ├── .gitignore │ ├── Makefile │ ├── source.c │ └── test ├── tun_tap │ ├── .gitignore │ ├── Makefile │ ├── test │ ├── tun_common.c │ ├── tun_common.h │ ├── tun_relabel.c │ └── tun_tap.c ├── unix_socket │ ├── .gitignore │ ├── Makefile │ ├── client.c │ ├── server.c │ ├── socketpair.c │ └── test ├── userfaultfd │ ├── .gitignore │ ├── Makefile │ ├── test │ └── userfaultfd.c ├── vsock_socket │ ├── .gitignore │ ├── Makefile │ ├── client.c │ ├── server.c │ └── test └── watchkey │ ├── .gitignore │ ├── Makefile │ ├── test │ └── watchkey.c ├── tmt ├── README.md ├── plans.fmf └── tests.fmf └── tools ├── check-syntax └── nfs.sh /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/README.md -------------------------------------------------------------------------------- /ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/ToDo -------------------------------------------------------------------------------- /defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/defconfig -------------------------------------------------------------------------------- /doc/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/Makefile -------------------------------------------------------------------------------- /doc/tests/ackno.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/ackno.sgml -------------------------------------------------------------------------------- /doc/tests/biblio.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/biblio.sgml -------------------------------------------------------------------------------- /doc/tests/binprm.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/binprm.sgml -------------------------------------------------------------------------------- /doc/tests/capable.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/capable.sgml -------------------------------------------------------------------------------- /doc/tests/coverage.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/coverage.sgml -------------------------------------------------------------------------------- /doc/tests/custom.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/custom.dsl -------------------------------------------------------------------------------- /doc/tests/environment.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/environment.sgml -------------------------------------------------------------------------------- /doc/tests/file.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/file.sgml -------------------------------------------------------------------------------- /doc/tests/inode.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/inode.sgml -------------------------------------------------------------------------------- /doc/tests/intro.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/intro.sgml -------------------------------------------------------------------------------- /doc/tests/ipc.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/ipc.sgml -------------------------------------------------------------------------------- /doc/tests/socket.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/socket.sgml -------------------------------------------------------------------------------- /doc/tests/system.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/system.sgml -------------------------------------------------------------------------------- /doc/tests/task.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/task.sgml -------------------------------------------------------------------------------- /doc/tests/tests.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/doc/tests/tests.sgml -------------------------------------------------------------------------------- /policy/.gitignore: -------------------------------------------------------------------------------- 1 | test_policy/ 2 | -------------------------------------------------------------------------------- /policy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/Makefile -------------------------------------------------------------------------------- /policy/test_add_levels.cil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_add_levels.cil -------------------------------------------------------------------------------- /policy/test_atsecure.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_atsecure.te -------------------------------------------------------------------------------- /policy/test_attrib.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_attrib.te -------------------------------------------------------------------------------- /policy/test_binder.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_binder.te -------------------------------------------------------------------------------- /policy/test_binder_bpf.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_binder_bpf.te -------------------------------------------------------------------------------- /policy/test_bounds.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_bounds.te -------------------------------------------------------------------------------- /policy/test_bpf.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_bpf.te -------------------------------------------------------------------------------- /policy/test_cap_userns.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_cap_userns.te -------------------------------------------------------------------------------- /policy/test_capable_file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_capable_file.te -------------------------------------------------------------------------------- /policy/test_capable_net.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_capable_net.te -------------------------------------------------------------------------------- /policy/test_capable_sys.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_capable_sys.te -------------------------------------------------------------------------------- /policy/test_cgroupfs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_cgroupfs.te -------------------------------------------------------------------------------- /policy/test_dyntrace.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_dyntrace.te -------------------------------------------------------------------------------- /policy/test_dyntrans.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_dyntrans.te -------------------------------------------------------------------------------- /policy/test_entrypoint.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_entrypoint.te -------------------------------------------------------------------------------- /policy/test_execshare.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_execshare.te -------------------------------------------------------------------------------- /policy/test_exectrace.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_exectrace.te -------------------------------------------------------------------------------- /policy/test_execute_no_trans.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_execute_no_trans.te -------------------------------------------------------------------------------- /policy/test_extended_socket_class.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_extended_socket_class.te -------------------------------------------------------------------------------- /policy/test_fdreceive.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_fdreceive.te -------------------------------------------------------------------------------- /policy/test_fdreceive_bpf.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_fdreceive_bpf.te -------------------------------------------------------------------------------- /policy/test_file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_file.te -------------------------------------------------------------------------------- /policy/test_file_load.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_file_load.te -------------------------------------------------------------------------------- /policy/test_filesystem.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_filesystem.te -------------------------------------------------------------------------------- /policy/test_filesystem_name_trans.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_filesystem_name_trans.te -------------------------------------------------------------------------------- /policy/test_filesystem_notify.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_filesystem_notify.te -------------------------------------------------------------------------------- /policy/test_glblub.cil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_glblub.cil -------------------------------------------------------------------------------- /policy/test_global.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_global.te -------------------------------------------------------------------------------- /policy/test_ibendport.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ibendport.te -------------------------------------------------------------------------------- /policy/test_ibpkey.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ibpkey.te -------------------------------------------------------------------------------- /policy/test_inet_socket.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_inet_socket.te -------------------------------------------------------------------------------- /policy/test_inherit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_inherit.te -------------------------------------------------------------------------------- /policy/test_io_uring.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_io_uring.te -------------------------------------------------------------------------------- /policy/test_ioctl.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ioctl.te -------------------------------------------------------------------------------- /policy/test_ioctl_cond_xperms.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ioctl_cond_xperms.te -------------------------------------------------------------------------------- /policy/test_ioctl_xperms.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ioctl_xperms.te -------------------------------------------------------------------------------- /policy/test_ipc.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ipc.te -------------------------------------------------------------------------------- /policy/test_key_socket.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_key_socket.te -------------------------------------------------------------------------------- /policy/test_keys.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_keys.te -------------------------------------------------------------------------------- /policy/test_link.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_link.te -------------------------------------------------------------------------------- /policy/test_mac_admin.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_mac_admin.te -------------------------------------------------------------------------------- /policy/test_memfd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_memfd.te -------------------------------------------------------------------------------- /policy/test_mkdir.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_mkdir.te -------------------------------------------------------------------------------- /policy/test_mlsconstrain.cil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_mlsconstrain.cil -------------------------------------------------------------------------------- /policy/test_mmap.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_mmap.te -------------------------------------------------------------------------------- /policy/test_module_load.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_module_load.te -------------------------------------------------------------------------------- /policy/test_mqueue.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_mqueue.te -------------------------------------------------------------------------------- /policy/test_netlink_socket.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_netlink_socket.te -------------------------------------------------------------------------------- /policy/test_nlmsg.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_nlmsg.te -------------------------------------------------------------------------------- /policy/test_nnp_nosuid.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_nnp_nosuid.te -------------------------------------------------------------------------------- /policy/test_notify.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_notify.te -------------------------------------------------------------------------------- /policy/test_open.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_open.te -------------------------------------------------------------------------------- /policy/test_overlay_defaultrange.cil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_overlay_defaultrange.cil -------------------------------------------------------------------------------- /policy/test_overlayfs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_overlayfs.te -------------------------------------------------------------------------------- /policy/test_perf_event.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_perf_event.te -------------------------------------------------------------------------------- /policy/test_policy.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_policy.if -------------------------------------------------------------------------------- /policy/test_prlimit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_prlimit.te -------------------------------------------------------------------------------- /policy/test_ptrace.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_ptrace.te -------------------------------------------------------------------------------- /policy/test_readlink.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_readlink.te -------------------------------------------------------------------------------- /policy/test_relabel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_relabel.te -------------------------------------------------------------------------------- /policy/test_rename.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_rename.te -------------------------------------------------------------------------------- /policy/test_rxdir.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_rxdir.te -------------------------------------------------------------------------------- /policy/test_sctp.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_sctp.te -------------------------------------------------------------------------------- /policy/test_secretmem.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_secretmem.te -------------------------------------------------------------------------------- /policy/test_setattr.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_setattr.te -------------------------------------------------------------------------------- /policy/test_setnice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_setnice.te -------------------------------------------------------------------------------- /policy/test_sigkill.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_sigkill.te -------------------------------------------------------------------------------- /policy/test_stat.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_stat.te -------------------------------------------------------------------------------- /policy/test_sysctl.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_sysctl.te -------------------------------------------------------------------------------- /policy/test_task_create.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_task_create.te -------------------------------------------------------------------------------- /policy/test_task_getpgid.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_task_getpgid.te -------------------------------------------------------------------------------- /policy/test_task_getsched.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_task_getsched.te -------------------------------------------------------------------------------- /policy/test_task_getsid.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_task_getsid.te -------------------------------------------------------------------------------- /policy/test_task_setpgid.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_task_setpgid.te -------------------------------------------------------------------------------- /policy/test_task_setsched.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_task_setsched.te -------------------------------------------------------------------------------- /policy/test_transition.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_transition.te -------------------------------------------------------------------------------- /policy/test_tun_tap.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_tun_tap.te -------------------------------------------------------------------------------- /policy/test_unix_socket.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_unix_socket.te -------------------------------------------------------------------------------- /policy/test_userfaultfd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_userfaultfd.te -------------------------------------------------------------------------------- /policy/test_vsock_socket.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_vsock_socket.te -------------------------------------------------------------------------------- /policy/test_watchkey.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/policy/test_watchkey.te -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/atsecure/.gitignore: -------------------------------------------------------------------------------- 1 | atsecure 2 | evil.so 3 | good 4 | -------------------------------------------------------------------------------- /tests/atsecure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/atsecure/Makefile -------------------------------------------------------------------------------- /tests/atsecure/atsecure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/atsecure/atsecure.c -------------------------------------------------------------------------------- /tests/atsecure/evil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/atsecure/evil.c -------------------------------------------------------------------------------- /tests/atsecure/good.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/atsecure/good.c -------------------------------------------------------------------------------- /tests/atsecure/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/atsecure/test -------------------------------------------------------------------------------- /tests/binder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/.gitignore -------------------------------------------------------------------------------- /tests/binder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/Makefile -------------------------------------------------------------------------------- /tests/binder/binder_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/binder_common.c -------------------------------------------------------------------------------- /tests/binder/binder_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/binder_common.h -------------------------------------------------------------------------------- /tests/binder/check_binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/check_binder.c -------------------------------------------------------------------------------- /tests/binder/check_binderfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/check_binderfs.c -------------------------------------------------------------------------------- /tests/binder/cleanup_binder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/cleanup_binder.sh -------------------------------------------------------------------------------- /tests/binder/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/client.c -------------------------------------------------------------------------------- /tests/binder/init_binder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/init_binder.sh -------------------------------------------------------------------------------- /tests/binder/manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/manager.c -------------------------------------------------------------------------------- /tests/binder/service_provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/service_provider.c -------------------------------------------------------------------------------- /tests/binder/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/binder/test -------------------------------------------------------------------------------- /tests/bounds/.gitignore: -------------------------------------------------------------------------------- 1 | thread 2 | -------------------------------------------------------------------------------- /tests/bounds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bounds/Makefile -------------------------------------------------------------------------------- /tests/bounds/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bounds/test -------------------------------------------------------------------------------- /tests/bounds/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bounds/thread.c -------------------------------------------------------------------------------- /tests/bpf/.gitignore: -------------------------------------------------------------------------------- 1 | bpf_test 2 | bpf_common 3 | -------------------------------------------------------------------------------- /tests/bpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bpf/Makefile -------------------------------------------------------------------------------- /tests/bpf/bpf_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bpf/bpf_common.c -------------------------------------------------------------------------------- /tests/bpf/bpf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bpf/bpf_common.h -------------------------------------------------------------------------------- /tests/bpf/bpf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bpf/bpf_test.c -------------------------------------------------------------------------------- /tests/bpf/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/bpf/test -------------------------------------------------------------------------------- /tests/cap_userns/.gitignore: -------------------------------------------------------------------------------- 1 | userns_child_exec 2 | -------------------------------------------------------------------------------- /tests/cap_userns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/cap_userns/Makefile -------------------------------------------------------------------------------- /tests/cap_userns/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/cap_userns/test -------------------------------------------------------------------------------- /tests/cap_userns/userns_child_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/cap_userns/userns_child_exec.c -------------------------------------------------------------------------------- /tests/capable_file/.gitignore: -------------------------------------------------------------------------------- 1 | test_lease 2 | -------------------------------------------------------------------------------- /tests/capable_file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_file/Makefile -------------------------------------------------------------------------------- /tests/capable_file/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_file/test -------------------------------------------------------------------------------- /tests/capable_file/test_lease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_file/test_lease.c -------------------------------------------------------------------------------- /tests/capable_net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_net/.gitignore -------------------------------------------------------------------------------- /tests/capable_net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_net/Makefile -------------------------------------------------------------------------------- /tests/capable_net/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_net/test -------------------------------------------------------------------------------- /tests/capable_net/test_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_net/test_bind.c -------------------------------------------------------------------------------- /tests/capable_net/test_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_net/test_raw.c -------------------------------------------------------------------------------- /tests/capable_sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/.gitignore -------------------------------------------------------------------------------- /tests/capable_sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/Makefile -------------------------------------------------------------------------------- /tests/capable_sys/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/test -------------------------------------------------------------------------------- /tests/capable_sys/test_chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/test_chroot.c -------------------------------------------------------------------------------- /tests/capable_sys/test_hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/test_hostname.c -------------------------------------------------------------------------------- /tests/capable_sys/test_nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/test_nice.c -------------------------------------------------------------------------------- /tests/capable_sys/test_rawio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/capable_sys/test_rawio.c -------------------------------------------------------------------------------- /tests/cgroupfs_label/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | -------------------------------------------------------------------------------- /tests/cgroupfs_label/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/cgroupfs_label/test -------------------------------------------------------------------------------- /tests/checkreqprot/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | -------------------------------------------------------------------------------- /tests/checkreqprot/default_value.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/checkreqprot/default_value.sh -------------------------------------------------------------------------------- /tests/checkreqprot/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/checkreqprot/test -------------------------------------------------------------------------------- /tests/domain_trans/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | -------------------------------------------------------------------------------- /tests/domain_trans/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/domain_trans/test -------------------------------------------------------------------------------- /tests/dyntrace/.gitignore: -------------------------------------------------------------------------------- 1 | child 2 | parent 3 | -------------------------------------------------------------------------------- /tests/dyntrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrace/Makefile -------------------------------------------------------------------------------- /tests/dyntrace/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrace/child.c -------------------------------------------------------------------------------- /tests/dyntrace/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrace/parent.c -------------------------------------------------------------------------------- /tests/dyntrace/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrace/test -------------------------------------------------------------------------------- /tests/dyntrans/.gitignore: -------------------------------------------------------------------------------- 1 | parent 2 | -------------------------------------------------------------------------------- /tests/dyntrans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrans/Makefile -------------------------------------------------------------------------------- /tests/dyntrans/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrans/parent.c -------------------------------------------------------------------------------- /tests/dyntrans/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/dyntrans/test -------------------------------------------------------------------------------- /tests/entrypoint/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -f true 4 | -------------------------------------------------------------------------------- /tests/entrypoint/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/entrypoint/test -------------------------------------------------------------------------------- /tests/execshare/.gitignore: -------------------------------------------------------------------------------- 1 | child 2 | parent 3 | -------------------------------------------------------------------------------- /tests/execshare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/execshare/Makefile -------------------------------------------------------------------------------- /tests/execshare/child.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | exit(0); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /tests/execshare/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/execshare/parent.c -------------------------------------------------------------------------------- /tests/execshare/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/execshare/test -------------------------------------------------------------------------------- /tests/exectrace/.gitignore: -------------------------------------------------------------------------------- 1 | child 2 | parent 3 | -------------------------------------------------------------------------------- /tests/exectrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/exectrace/Makefile -------------------------------------------------------------------------------- /tests/exectrace/child.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | exit(0); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /tests/exectrace/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/exectrace/parent.c -------------------------------------------------------------------------------- /tests/exectrace/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/exectrace/test -------------------------------------------------------------------------------- /tests/execute_no_trans/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -f true 4 | -------------------------------------------------------------------------------- /tests/execute_no_trans/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/execute_no_trans/test -------------------------------------------------------------------------------- /tests/extended_socket_class/.gitignore: -------------------------------------------------------------------------------- 1 | sockcreate 2 | -------------------------------------------------------------------------------- /tests/extended_socket_class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/extended_socket_class/Makefile -------------------------------------------------------------------------------- /tests/extended_socket_class/sockcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/extended_socket_class/sockcreate.c -------------------------------------------------------------------------------- /tests/extended_socket_class/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/extended_socket_class/test -------------------------------------------------------------------------------- /tests/fdreceive/.gitignore: -------------------------------------------------------------------------------- 1 | client 2 | server 3 | -------------------------------------------------------------------------------- /tests/fdreceive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fdreceive/Makefile -------------------------------------------------------------------------------- /tests/fdreceive/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fdreceive/client.c -------------------------------------------------------------------------------- /tests/fdreceive/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fdreceive/server.c -------------------------------------------------------------------------------- /tests/fdreceive/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fdreceive/test -------------------------------------------------------------------------------- /tests/file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/.gitignore -------------------------------------------------------------------------------- /tests/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/Makefile -------------------------------------------------------------------------------- /tests/file/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test -------------------------------------------------------------------------------- /tests/file/test_fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_fcntl.c -------------------------------------------------------------------------------- /tests/file/test_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_lock.c -------------------------------------------------------------------------------- /tests/file/test_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_mmap.c -------------------------------------------------------------------------------- /tests/file/test_mprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_mprotect.c -------------------------------------------------------------------------------- /tests/file/test_nofcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_nofcntl.c -------------------------------------------------------------------------------- /tests/file/test_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_rw.c -------------------------------------------------------------------------------- /tests/file/test_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_seek.c -------------------------------------------------------------------------------- /tests/file/test_sigiotask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/test_sigiotask.c -------------------------------------------------------------------------------- /tests/file/wait_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/file/wait_io.c -------------------------------------------------------------------------------- /tests/filesystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/.gitignore -------------------------------------------------------------------------------- /tests/filesystem/Filesystem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/Filesystem.pm -------------------------------------------------------------------------------- /tests/filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/Makefile -------------------------------------------------------------------------------- /tests/filesystem/btrfs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/filesystem/check_file_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/check_file_context.c -------------------------------------------------------------------------------- /tests/filesystem/check_mount_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/check_mount_context.c -------------------------------------------------------------------------------- /tests/filesystem/create_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/create_file.c -------------------------------------------------------------------------------- /tests/filesystem/create_file_change_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/create_file_change_context.c -------------------------------------------------------------------------------- /tests/filesystem/ext4: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/filesystem/fanotify_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/fanotify_fs.c -------------------------------------------------------------------------------- /tests/filesystem/fs_relabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/fs_relabel.c -------------------------------------------------------------------------------- /tests/filesystem/grim_reaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/grim_reaper.c -------------------------------------------------------------------------------- /tests/filesystem/jfs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/filesystem/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/mount.c -------------------------------------------------------------------------------- /tests/filesystem/native_quotas_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/native_quotas_test.c -------------------------------------------------------------------------------- /tests/filesystem/quotas_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/quotas_test.c -------------------------------------------------------------------------------- /tests/filesystem/statfs_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/statfs_test.c -------------------------------------------------------------------------------- /tests/filesystem/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/test -------------------------------------------------------------------------------- /tests/filesystem/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/umount.c -------------------------------------------------------------------------------- /tests/filesystem/vfat: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/filesystem/xfs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/filesystem/xfs_quotas_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/filesystem/xfs_quotas_test.c -------------------------------------------------------------------------------- /tests/fs_filesystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/.gitignore -------------------------------------------------------------------------------- /tests/fs_filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/Makefile -------------------------------------------------------------------------------- /tests/fs_filesystem/btrfs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/fs_filesystem/ext4: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/fs_filesystem/fs_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/fs_common.c -------------------------------------------------------------------------------- /tests/fs_filesystem/fs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/fs_common.h -------------------------------------------------------------------------------- /tests/fs_filesystem/fsmount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/fsmount.c -------------------------------------------------------------------------------- /tests/fs_filesystem/fspick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/fspick.c -------------------------------------------------------------------------------- /tests/fs_filesystem/jfs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/fs_filesystem/move_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/move_mount.c -------------------------------------------------------------------------------- /tests/fs_filesystem/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/fs_filesystem/test -------------------------------------------------------------------------------- /tests/fs_filesystem/vfat: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/fs_filesystem/xfs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/glblub/.gitignore: -------------------------------------------------------------------------------- 1 | default_range 2 | -------------------------------------------------------------------------------- /tests/glblub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/glblub/Makefile -------------------------------------------------------------------------------- /tests/glblub/default_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/glblub/default_range.c -------------------------------------------------------------------------------- /tests/glblub/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/glblub/test -------------------------------------------------------------------------------- /tests/inet_socket/.gitignore: -------------------------------------------------------------------------------- 1 | bind 2 | client 3 | connect 4 | server 5 | -------------------------------------------------------------------------------- /tests/inet_socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/Makefile -------------------------------------------------------------------------------- /tests/inet_socket/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/bind.c -------------------------------------------------------------------------------- /tests/inet_socket/calipso-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/calipso-flush -------------------------------------------------------------------------------- /tests/inet_socket/calipso-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/calipso-load -------------------------------------------------------------------------------- /tests/inet_socket/cipso-fl-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/cipso-fl-flush -------------------------------------------------------------------------------- /tests/inet_socket/cipso-fl-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/cipso-fl-load -------------------------------------------------------------------------------- /tests/inet_socket/cipso-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/cipso-flush -------------------------------------------------------------------------------- /tests/inet_socket/cipso-load-t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/cipso-load-t1 -------------------------------------------------------------------------------- /tests/inet_socket/cipso-load-t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/cipso-load-t2 -------------------------------------------------------------------------------- /tests/inet_socket/cipso-load-t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/cipso-load-t5 -------------------------------------------------------------------------------- /tests/inet_socket/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/client.c -------------------------------------------------------------------------------- /tests/inet_socket/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/connect.c -------------------------------------------------------------------------------- /tests/inet_socket/ipsec-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/ipsec-flush -------------------------------------------------------------------------------- /tests/inet_socket/ipsec-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/ipsec-load -------------------------------------------------------------------------------- /tests/inet_socket/iptables-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/iptables-flush -------------------------------------------------------------------------------- /tests/inet_socket/iptables-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/iptables-load -------------------------------------------------------------------------------- /tests/inet_socket/mptcp: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/inet_socket/nftables-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/nftables-flush -------------------------------------------------------------------------------- /tests/inet_socket/nftables-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/nftables-load -------------------------------------------------------------------------------- /tests/inet_socket/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/server.c -------------------------------------------------------------------------------- /tests/inet_socket/tcp: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/inet_socket/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inet_socket/test -------------------------------------------------------------------------------- /tests/inet_socket/udp: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/infiniband_endport/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | -------------------------------------------------------------------------------- /tests/infiniband_endport/ibendport_test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/infiniband_endport/ibendport_test.conf -------------------------------------------------------------------------------- /tests/infiniband_endport/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/infiniband_endport/test -------------------------------------------------------------------------------- /tests/infiniband_pkey/.gitignore: -------------------------------------------------------------------------------- 1 | create_modify_qp 2 | -------------------------------------------------------------------------------- /tests/infiniband_pkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/infiniband_pkey/Makefile -------------------------------------------------------------------------------- /tests/infiniband_pkey/create_modify_qp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/infiniband_pkey/create_modify_qp.c -------------------------------------------------------------------------------- /tests/infiniband_pkey/ibpkey_test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/infiniband_pkey/ibpkey_test.conf -------------------------------------------------------------------------------- /tests/infiniband_pkey/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/infiniband_pkey/test -------------------------------------------------------------------------------- /tests/inherit/.gitignore: -------------------------------------------------------------------------------- 1 | child 2 | parent 3 | -------------------------------------------------------------------------------- /tests/inherit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inherit/Makefile -------------------------------------------------------------------------------- /tests/inherit/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inherit/child.c -------------------------------------------------------------------------------- /tests/inherit/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inherit/parent.c -------------------------------------------------------------------------------- /tests/inherit/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/inherit/test -------------------------------------------------------------------------------- /tests/io_uring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/io_uring/.gitignore -------------------------------------------------------------------------------- /tests/io_uring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/io_uring/Makefile -------------------------------------------------------------------------------- /tests/io_uring/iouring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/io_uring/iouring.c -------------------------------------------------------------------------------- /tests/io_uring/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/io_uring/test -------------------------------------------------------------------------------- /tests/ioctl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/.gitignore -------------------------------------------------------------------------------- /tests/ioctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/Makefile -------------------------------------------------------------------------------- /tests/ioctl/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/test -------------------------------------------------------------------------------- /tests/ioctl/test_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/test_ioctl.c -------------------------------------------------------------------------------- /tests/ioctl/test_noioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/test_noioctl.c -------------------------------------------------------------------------------- /tests/ioctl/test_siocgifindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/test_siocgifindex.c -------------------------------------------------------------------------------- /tests/ioctl/test_siocgifname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ioctl/test_siocgifname.c -------------------------------------------------------------------------------- /tests/key_socket/.gitignore: -------------------------------------------------------------------------------- 1 | key_sock 2 | -------------------------------------------------------------------------------- /tests/key_socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/key_socket/Makefile -------------------------------------------------------------------------------- /tests/key_socket/key_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/key_socket/key_sock.c -------------------------------------------------------------------------------- /tests/key_socket/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/key_socket/test -------------------------------------------------------------------------------- /tests/keys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/.gitignore -------------------------------------------------------------------------------- /tests/keys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/Makefile -------------------------------------------------------------------------------- /tests/keys/keyctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/keyctl.c -------------------------------------------------------------------------------- /tests/keys/keyctl_relabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/keyctl_relabel.c -------------------------------------------------------------------------------- /tests/keys/keyring_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/keyring_service.c -------------------------------------------------------------------------------- /tests/keys/keys_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/keys_common.h -------------------------------------------------------------------------------- /tests/keys/request_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/request_keys.c -------------------------------------------------------------------------------- /tests/keys/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/keys/test -------------------------------------------------------------------------------- /tests/kvercmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/kvercmp -------------------------------------------------------------------------------- /tests/link/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -rf test_dir 4 | -------------------------------------------------------------------------------- /tests/link/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/link/test -------------------------------------------------------------------------------- /tests/loop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/loop.pl -------------------------------------------------------------------------------- /tests/mac_admin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mac_admin/Makefile -------------------------------------------------------------------------------- /tests/mac_admin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mac_admin/test -------------------------------------------------------------------------------- /tests/memfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/memfd/Makefile -------------------------------------------------------------------------------- /tests/memfd/memfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/memfd/memfd.c -------------------------------------------------------------------------------- /tests/memfd/memfd_fexecve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/memfd/memfd_fexecve.c -------------------------------------------------------------------------------- /tests/memfd/nothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/memfd/nothing.c -------------------------------------------------------------------------------- /tests/memfd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/memfd/test -------------------------------------------------------------------------------- /tests/mkdir/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -rf test_dir 4 | -------------------------------------------------------------------------------- /tests/mkdir/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mkdir/test -------------------------------------------------------------------------------- /tests/mmap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/.gitignore -------------------------------------------------------------------------------- /tests/mmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/Makefile -------------------------------------------------------------------------------- /tests/mmap/mmap_anon_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_anon_private.c -------------------------------------------------------------------------------- /tests/mmap/mmap_anon_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_anon_shared.c -------------------------------------------------------------------------------- /tests/mmap/mmap_file_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_file_private.c -------------------------------------------------------------------------------- /tests/mmap/mmap_file_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_file_shared.c -------------------------------------------------------------------------------- /tests/mmap/mmap_hugetlb_anon_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_hugetlb_anon_private.c -------------------------------------------------------------------------------- /tests/mmap/mmap_hugetlb_anon_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_hugetlb_anon_shared.c -------------------------------------------------------------------------------- /tests/mmap/mmap_zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mmap_zero.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_anon_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_anon_private.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_anon_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_anon_shared.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_file_private_execmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_file_private_execmod.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_file_private_rwx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_file_private_rwx.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_file_private_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_file_private_rx.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_file_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_file_shared.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_heap.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_hugetlb_anon_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_hugetlb_anon_private.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_hugetlb_anon_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_hugetlb_anon_shared.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_stack.c -------------------------------------------------------------------------------- /tests/mmap/mprotect_stack_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/mprotect_stack_thread.c -------------------------------------------------------------------------------- /tests/mmap/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/shmat.c -------------------------------------------------------------------------------- /tests/mmap/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/test -------------------------------------------------------------------------------- /tests/mmap/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mmap/utils.h -------------------------------------------------------------------------------- /tests/module_load/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/.gitignore -------------------------------------------------------------------------------- /tests/module_load/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/Makefile -------------------------------------------------------------------------------- /tests/module_load/finit_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/finit_load.c -------------------------------------------------------------------------------- /tests/module_load/init_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/init_load.c -------------------------------------------------------------------------------- /tests/module_load/setest_firmware_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/setest_firmware_load.c -------------------------------------------------------------------------------- /tests/module_load/setest_module_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/setest_module_load.c -------------------------------------------------------------------------------- /tests/module_load/setest_module_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/setest_module_request.c -------------------------------------------------------------------------------- /tests/module_load/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/module_load/test -------------------------------------------------------------------------------- /tests/mqueue/.gitignore: -------------------------------------------------------------------------------- 1 | mqmgr 2 | mqrcv 3 | mqsnd 4 | -------------------------------------------------------------------------------- /tests/mqueue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mqueue/Makefile -------------------------------------------------------------------------------- /tests/mqueue/mqmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mqueue/mqmgr.c -------------------------------------------------------------------------------- /tests/mqueue/mqrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mqueue/mqrcv.c -------------------------------------------------------------------------------- /tests/mqueue/mqsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mqueue/mqsnd.c -------------------------------------------------------------------------------- /tests/mqueue/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/mqueue/test -------------------------------------------------------------------------------- /tests/msg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/.gitignore -------------------------------------------------------------------------------- /tests/msg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/Makefile -------------------------------------------------------------------------------- /tests/msg/msgctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/msgctl.c -------------------------------------------------------------------------------- /tests/msg/msgget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/msgget.c -------------------------------------------------------------------------------- /tests/msg/msgrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/msgrcv.c -------------------------------------------------------------------------------- /tests/msg/msgsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/msgsnd.c -------------------------------------------------------------------------------- /tests/msg/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/msg/test -------------------------------------------------------------------------------- /tests/netlink_socket/.gitignore: -------------------------------------------------------------------------------- 1 | netlinkcreate 2 | -------------------------------------------------------------------------------- /tests/netlink_socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/netlink_socket/Makefile -------------------------------------------------------------------------------- /tests/netlink_socket/netlinkcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/netlink_socket/netlinkcreate.c -------------------------------------------------------------------------------- /tests/netlink_socket/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/netlink_socket/test -------------------------------------------------------------------------------- /tests/nfs_filesystem/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | -------------------------------------------------------------------------------- /tests/nfs_filesystem/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nfs_filesystem/test -------------------------------------------------------------------------------- /tests/nfsruntests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nfsruntests.pl -------------------------------------------------------------------------------- /tests/nlmsg/.gitignore: -------------------------------------------------------------------------------- 1 | nlmsg 2 | -------------------------------------------------------------------------------- /tests/nlmsg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nlmsg/Makefile -------------------------------------------------------------------------------- /tests/nlmsg/nlmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nlmsg/nlmsg.c -------------------------------------------------------------------------------- /tests/nlmsg/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nlmsg/test -------------------------------------------------------------------------------- /tests/nnp_nosuid/.gitignore: -------------------------------------------------------------------------------- 1 | checkcon 2 | execnnp 3 | -------------------------------------------------------------------------------- /tests/nnp_nosuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nnp_nosuid/Makefile -------------------------------------------------------------------------------- /tests/nnp_nosuid/checkcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nnp_nosuid/checkcon.c -------------------------------------------------------------------------------- /tests/nnp_nosuid/execnnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nnp_nosuid/execnnp.c -------------------------------------------------------------------------------- /tests/nnp_nosuid/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/nnp_nosuid/test -------------------------------------------------------------------------------- /tests/notify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/notify/.gitignore -------------------------------------------------------------------------------- /tests/notify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/notify/Makefile -------------------------------------------------------------------------------- /tests/notify/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/notify/test -------------------------------------------------------------------------------- /tests/notify/test_fanotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/notify/test_fanotify.c -------------------------------------------------------------------------------- /tests/notify/test_inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/notify/test_inotify.c -------------------------------------------------------------------------------- /tests/open/.gitignore: -------------------------------------------------------------------------------- 1 | append2write 2 | fopen 3 | -------------------------------------------------------------------------------- /tests/open/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/open/Makefile -------------------------------------------------------------------------------- /tests/open/append2write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/open/append2write.c -------------------------------------------------------------------------------- /tests/open/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/open/fopen.c -------------------------------------------------------------------------------- /tests/open/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/open/test -------------------------------------------------------------------------------- /tests/os_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/os_detect -------------------------------------------------------------------------------- /tests/overlay/.gitignore: -------------------------------------------------------------------------------- 1 | access 2 | -------------------------------------------------------------------------------- /tests/overlay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/overlay/Makefile -------------------------------------------------------------------------------- /tests/overlay/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/overlay/access.c -------------------------------------------------------------------------------- /tests/overlay/append: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | echo "append" > $1 3 | -------------------------------------------------------------------------------- /tests/overlay/badentrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | id -Z 3 | -------------------------------------------------------------------------------- /tests/overlay/cleanup-overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/overlay/cleanup-overlay -------------------------------------------------------------------------------- /tests/overlay/goodentrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | id -Z 3 | -------------------------------------------------------------------------------- /tests/overlay/setup-overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/overlay/setup-overlay -------------------------------------------------------------------------------- /tests/overlay/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/overlay/test -------------------------------------------------------------------------------- /tests/perf_event/.gitignore: -------------------------------------------------------------------------------- 1 | perf_event 2 | -------------------------------------------------------------------------------- /tests/perf_event/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/perf_event/Makefile -------------------------------------------------------------------------------- /tests/perf_event/perf_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/perf_event/perf_event.c -------------------------------------------------------------------------------- /tests/perf_event/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/perf_event/test -------------------------------------------------------------------------------- /tests/pol_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/pol_detect -------------------------------------------------------------------------------- /tests/prlimit/.gitignore: -------------------------------------------------------------------------------- 1 | child 2 | parent 3 | -------------------------------------------------------------------------------- /tests/prlimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/prlimit/Makefile -------------------------------------------------------------------------------- /tests/prlimit/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/prlimit/child.c -------------------------------------------------------------------------------- /tests/prlimit/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/prlimit/parent.c -------------------------------------------------------------------------------- /tests/prlimit/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/prlimit/test -------------------------------------------------------------------------------- /tests/ptrace/.gitignore: -------------------------------------------------------------------------------- 1 | ptrace 2 | -------------------------------------------------------------------------------- /tests/ptrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ptrace/Makefile -------------------------------------------------------------------------------- /tests/ptrace/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ptrace/ptrace.c -------------------------------------------------------------------------------- /tests/ptrace/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/ptrace/test -------------------------------------------------------------------------------- /tests/readlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/readlink/Makefile -------------------------------------------------------------------------------- /tests/readlink/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/readlink/test -------------------------------------------------------------------------------- /tests/relabel/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -f test_file 4 | -------------------------------------------------------------------------------- /tests/relabel/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/relabel/test -------------------------------------------------------------------------------- /tests/rename/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/rename/Makefile -------------------------------------------------------------------------------- /tests/rename/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/rename/test -------------------------------------------------------------------------------- /tests/runtests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/runtests.pl -------------------------------------------------------------------------------- /tests/rxdir/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -rf test_dir 4 | -------------------------------------------------------------------------------- /tests/rxdir/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/rxdir/test -------------------------------------------------------------------------------- /tests/sctp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/.gitignore -------------------------------------------------------------------------------- /tests/sctp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/Makefile -------------------------------------------------------------------------------- /tests/sctp/calipso-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/calipso-flush -------------------------------------------------------------------------------- /tests/sctp/calipso-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/calipso-load -------------------------------------------------------------------------------- /tests/sctp/cipso-fl-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/cipso-fl-flush -------------------------------------------------------------------------------- /tests/sctp/cipso-fl-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/cipso-fl-load -------------------------------------------------------------------------------- /tests/sctp/cipso-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/cipso-flush -------------------------------------------------------------------------------- /tests/sctp/cipso-load-t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/cipso-load-t1 -------------------------------------------------------------------------------- /tests/sctp/cipso-load-t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/cipso-load-t2 -------------------------------------------------------------------------------- /tests/sctp/cipso-load-t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/cipso-load-t5 -------------------------------------------------------------------------------- /tests/sctp/fb-deny-label-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/fb-deny-label-flush -------------------------------------------------------------------------------- /tests/sctp/fb-deny-label-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/fb-deny-label-load -------------------------------------------------------------------------------- /tests/sctp/fb-label-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/fb-label-flush -------------------------------------------------------------------------------- /tests/sctp/fb-label-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/fb-label-load -------------------------------------------------------------------------------- /tests/sctp/iptables-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/iptables-flush -------------------------------------------------------------------------------- /tests/sctp/iptables-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/iptables-load -------------------------------------------------------------------------------- /tests/sctp/nftables-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/nftables-flush -------------------------------------------------------------------------------- /tests/sctp/nftables-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/nftables-load -------------------------------------------------------------------------------- /tests/sctp/sctp_asconf_params_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_asconf_params_client.c -------------------------------------------------------------------------------- /tests/sctp/sctp_asconf_params_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_asconf_params_server.c -------------------------------------------------------------------------------- /tests/sctp/sctp_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_bind.c -------------------------------------------------------------------------------- /tests/sctp/sctp_bindx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_bindx.c -------------------------------------------------------------------------------- /tests/sctp/sctp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_client.c -------------------------------------------------------------------------------- /tests/sctp/sctp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_common.c -------------------------------------------------------------------------------- /tests/sctp/sctp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_common.h -------------------------------------------------------------------------------- /tests/sctp/sctp_connectx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_connectx.c -------------------------------------------------------------------------------- /tests/sctp/sctp_peeloff_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_peeloff_client.c -------------------------------------------------------------------------------- /tests/sctp/sctp_peeloff_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_peeloff_server.c -------------------------------------------------------------------------------- /tests/sctp/sctp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/sctp_server.c -------------------------------------------------------------------------------- /tests/sctp/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sctp/test -------------------------------------------------------------------------------- /tests/secretmem/.gitignore: -------------------------------------------------------------------------------- 1 | secretmem 2 | -------------------------------------------------------------------------------- /tests/secretmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/secretmem/Makefile -------------------------------------------------------------------------------- /tests/secretmem/secretmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/secretmem/secretmem.c -------------------------------------------------------------------------------- /tests/secretmem/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/secretmem/test -------------------------------------------------------------------------------- /tests/sem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/.gitignore -------------------------------------------------------------------------------- /tests/sem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/Makefile -------------------------------------------------------------------------------- /tests/sem/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/getinfo.c -------------------------------------------------------------------------------- /tests/sem/semctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/semctl.c -------------------------------------------------------------------------------- /tests/sem/semget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/semget.c -------------------------------------------------------------------------------- /tests/sem/semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/semop.c -------------------------------------------------------------------------------- /tests/sem/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sem/test -------------------------------------------------------------------------------- /tests/setattr/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -f test_file 4 | -------------------------------------------------------------------------------- /tests/setattr/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/setattr/test -------------------------------------------------------------------------------- /tests/setnice/.gitignore: -------------------------------------------------------------------------------- 1 | child 2 | parent 3 | -------------------------------------------------------------------------------- /tests/setnice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/setnice/Makefile -------------------------------------------------------------------------------- /tests/setnice/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/setnice/child.c -------------------------------------------------------------------------------- /tests/setnice/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/setnice/parent.c -------------------------------------------------------------------------------- /tests/setnice/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/setnice/test -------------------------------------------------------------------------------- /tests/shm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/shm/.gitignore -------------------------------------------------------------------------------- /tests/shm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/shm/Makefile -------------------------------------------------------------------------------- /tests/shm/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/shm/shmat.c -------------------------------------------------------------------------------- /tests/shm/shmctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/shm/shmctl.c -------------------------------------------------------------------------------- /tests/shm/shmget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/shm/shmget.c -------------------------------------------------------------------------------- /tests/shm/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/shm/test -------------------------------------------------------------------------------- /tests/sigkill/.gitignore: -------------------------------------------------------------------------------- 1 | server 2 | -------------------------------------------------------------------------------- /tests/sigkill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sigkill/Makefile -------------------------------------------------------------------------------- /tests/sigkill/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sigkill/server.c -------------------------------------------------------------------------------- /tests/sigkill/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sigkill/test -------------------------------------------------------------------------------- /tests/stat/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -f test_file 4 | -------------------------------------------------------------------------------- /tests/stat/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/stat/test -------------------------------------------------------------------------------- /tests/sysctl/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | -------------------------------------------------------------------------------- /tests/sysctl/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/sysctl/test -------------------------------------------------------------------------------- /tests/task_create/.gitignore: -------------------------------------------------------------------------------- 1 | parent 2 | -------------------------------------------------------------------------------- /tests/task_create/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_create/Makefile -------------------------------------------------------------------------------- /tests/task_create/parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_create/parent.c -------------------------------------------------------------------------------- /tests/task_create/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_create/test -------------------------------------------------------------------------------- /tests/task_getpgid/.gitignore: -------------------------------------------------------------------------------- 1 | source 2 | -------------------------------------------------------------------------------- /tests/task_getpgid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getpgid/Makefile -------------------------------------------------------------------------------- /tests/task_getpgid/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getpgid/source.c -------------------------------------------------------------------------------- /tests/task_getpgid/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getpgid/test -------------------------------------------------------------------------------- /tests/task_getscheduler/.gitignore: -------------------------------------------------------------------------------- 1 | source 2 | -------------------------------------------------------------------------------- /tests/task_getscheduler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getscheduler/Makefile -------------------------------------------------------------------------------- /tests/task_getscheduler/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getscheduler/source.c -------------------------------------------------------------------------------- /tests/task_getscheduler/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getscheduler/test -------------------------------------------------------------------------------- /tests/task_getsid/.gitignore: -------------------------------------------------------------------------------- 1 | source 2 | -------------------------------------------------------------------------------- /tests/task_getsid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getsid/Makefile -------------------------------------------------------------------------------- /tests/task_getsid/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getsid/source.c -------------------------------------------------------------------------------- /tests/task_getsid/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_getsid/test -------------------------------------------------------------------------------- /tests/task_setnice/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | rm -f flag 4 | -------------------------------------------------------------------------------- /tests/task_setnice/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setnice/test -------------------------------------------------------------------------------- /tests/task_setpgid/.gitignore: -------------------------------------------------------------------------------- 1 | source 2 | -------------------------------------------------------------------------------- /tests/task_setpgid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setpgid/Makefile -------------------------------------------------------------------------------- /tests/task_setpgid/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setpgid/source.c -------------------------------------------------------------------------------- /tests/task_setpgid/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setpgid/test -------------------------------------------------------------------------------- /tests/task_setscheduler/.gitignore: -------------------------------------------------------------------------------- 1 | source 2 | -------------------------------------------------------------------------------- /tests/task_setscheduler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setscheduler/Makefile -------------------------------------------------------------------------------- /tests/task_setscheduler/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setscheduler/source.c -------------------------------------------------------------------------------- /tests/task_setscheduler/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/task_setscheduler/test -------------------------------------------------------------------------------- /tests/tun_tap/.gitignore: -------------------------------------------------------------------------------- 1 | tun_tap 2 | tun_relabel 3 | -------------------------------------------------------------------------------- /tests/tun_tap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/tun_tap/Makefile -------------------------------------------------------------------------------- /tests/tun_tap/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/tun_tap/test -------------------------------------------------------------------------------- /tests/tun_tap/tun_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/tun_tap/tun_common.c -------------------------------------------------------------------------------- /tests/tun_tap/tun_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/tun_tap/tun_common.h -------------------------------------------------------------------------------- /tests/tun_tap/tun_relabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/tun_tap/tun_relabel.c -------------------------------------------------------------------------------- /tests/tun_tap/tun_tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/tun_tap/tun_tap.c -------------------------------------------------------------------------------- /tests/unix_socket/.gitignore: -------------------------------------------------------------------------------- 1 | client 2 | server 3 | socketpair 4 | -------------------------------------------------------------------------------- /tests/unix_socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/unix_socket/Makefile -------------------------------------------------------------------------------- /tests/unix_socket/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/unix_socket/client.c -------------------------------------------------------------------------------- /tests/unix_socket/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/unix_socket/server.c -------------------------------------------------------------------------------- /tests/unix_socket/socketpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/unix_socket/socketpair.c -------------------------------------------------------------------------------- /tests/unix_socket/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/unix_socket/test -------------------------------------------------------------------------------- /tests/userfaultfd/.gitignore: -------------------------------------------------------------------------------- 1 | userfaultfd 2 | -------------------------------------------------------------------------------- /tests/userfaultfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/userfaultfd/Makefile -------------------------------------------------------------------------------- /tests/userfaultfd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/userfaultfd/test -------------------------------------------------------------------------------- /tests/userfaultfd/userfaultfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/userfaultfd/userfaultfd.c -------------------------------------------------------------------------------- /tests/vsock_socket/.gitignore: -------------------------------------------------------------------------------- 1 | client 2 | server 3 | -------------------------------------------------------------------------------- /tests/vsock_socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/vsock_socket/Makefile -------------------------------------------------------------------------------- /tests/vsock_socket/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/vsock_socket/client.c -------------------------------------------------------------------------------- /tests/vsock_socket/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/vsock_socket/server.c -------------------------------------------------------------------------------- /tests/vsock_socket/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/vsock_socket/test -------------------------------------------------------------------------------- /tests/watchkey/.gitignore: -------------------------------------------------------------------------------- 1 | watchkey 2 | -------------------------------------------------------------------------------- /tests/watchkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/watchkey/Makefile -------------------------------------------------------------------------------- /tests/watchkey/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/watchkey/test -------------------------------------------------------------------------------- /tests/watchkey/watchkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tests/watchkey/watchkey.c -------------------------------------------------------------------------------- /tmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tmt/README.md -------------------------------------------------------------------------------- /tmt/plans.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tmt/plans.fmf -------------------------------------------------------------------------------- /tmt/tests.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tmt/tests.fmf -------------------------------------------------------------------------------- /tools/check-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tools/check-syntax -------------------------------------------------------------------------------- /tools/nfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SELinuxProject/selinux-testsuite/HEAD/tools/nfs.sh --------------------------------------------------------------------------------