• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/

Lines Matching refs:ops

848 #define set_to_cap_if_null(ops, function)				\
850 if (!ops->function) { \
851 ops->function = cap_##function; \
857 void __init security_fixup_ops(struct security_operations *ops)
859 set_to_cap_if_null(ops, ptrace_access_check);
860 set_to_cap_if_null(ops, ptrace_traceme);
861 set_to_cap_if_null(ops, capget);
862 set_to_cap_if_null(ops, capset);
863 set_to_cap_if_null(ops, capable);
864 set_to_cap_if_null(ops, quotactl);
865 set_to_cap_if_null(ops, quota_on);
866 set_to_cap_if_null(ops, sysctl);
867 set_to_cap_if_null(ops, syslog);
868 set_to_cap_if_null(ops, settime);
869 set_to_cap_if_null(ops, vm_enough_memory);
870 set_to_cap_if_null(ops, bprm_set_creds);
871 set_to_cap_if_null(ops, bprm_committing_creds);
872 set_to_cap_if_null(ops, bprm_committed_creds);
873 set_to_cap_if_null(ops, bprm_check_security);
874 set_to_cap_if_null(ops, bprm_secureexec);
875 set_to_cap_if_null(ops, sb_alloc_security);
876 set_to_cap_if_null(ops, sb_free_security);
877 set_to_cap_if_null(ops, sb_copy_data);
878 set_to_cap_if_null(ops, sb_kern_mount);
879 set_to_cap_if_null(ops, sb_show_options);
880 set_to_cap_if_null(ops, sb_statfs);
881 set_to_cap_if_null(ops, sb_mount);
882 set_to_cap_if_null(ops, sb_umount);
883 set_to_cap_if_null(ops, sb_pivotroot);
884 set_to_cap_if_null(ops, sb_set_mnt_opts);
885 set_to_cap_if_null(ops, sb_clone_mnt_opts);
886 set_to_cap_if_null(ops, sb_parse_opts_str);
887 set_to_cap_if_null(ops, inode_alloc_security);
888 set_to_cap_if_null(ops, inode_free_security);
889 set_to_cap_if_null(ops, inode_init_security);
890 set_to_cap_if_null(ops, inode_create);
891 set_to_cap_if_null(ops, inode_link);
892 set_to_cap_if_null(ops, inode_unlink);
893 set_to_cap_if_null(ops, inode_symlink);
894 set_to_cap_if_null(ops, inode_mkdir);
895 set_to_cap_if_null(ops, inode_rmdir);
896 set_to_cap_if_null(ops, inode_mknod);
897 set_to_cap_if_null(ops, inode_rename);
898 set_to_cap_if_null(ops, inode_readlink);
899 set_to_cap_if_null(ops, inode_follow_link);
900 set_to_cap_if_null(ops, inode_permission);
901 set_to_cap_if_null(ops, inode_setattr);
902 set_to_cap_if_null(ops, inode_getattr);
903 set_to_cap_if_null(ops, inode_setxattr);
904 set_to_cap_if_null(ops, inode_post_setxattr);
905 set_to_cap_if_null(ops, inode_getxattr);
906 set_to_cap_if_null(ops, inode_listxattr);
907 set_to_cap_if_null(ops, inode_removexattr);
908 set_to_cap_if_null(ops, inode_need_killpriv);
909 set_to_cap_if_null(ops, inode_killpriv);
910 set_to_cap_if_null(ops, inode_getsecurity);
911 set_to_cap_if_null(ops, inode_setsecurity);
912 set_to_cap_if_null(ops, inode_listsecurity);
913 set_to_cap_if_null(ops, inode_getsecid);
915 set_to_cap_if_null(ops, path_mknod);
916 set_to_cap_if_null(ops, path_mkdir);
917 set_to_cap_if_null(ops, path_rmdir);
918 set_to_cap_if_null(ops, path_unlink);
919 set_to_cap_if_null(ops, path_symlink);
920 set_to_cap_if_null(ops, path_link);
921 set_to_cap_if_null(ops, path_rename);
922 set_to_cap_if_null(ops, path_truncate);
923 set_to_cap_if_null(ops, path_chmod);
924 set_to_cap_if_null(ops, path_chown);
925 set_to_cap_if_null(ops, path_chroot);
927 set_to_cap_if_null(ops, file_permission);
928 set_to_cap_if_null(ops, file_alloc_security);
929 set_to_cap_if_null(ops, file_free_security);
930 set_to_cap_if_null(ops, file_ioctl);
931 set_to_cap_if_null(ops, file_mmap);
932 set_to_cap_if_null(ops, file_mprotect);
933 set_to_cap_if_null(ops, file_lock);
934 set_to_cap_if_null(ops, file_fcntl);
935 set_to_cap_if_null(ops, file_set_fowner);
936 set_to_cap_if_null(ops, file_send_sigiotask);
937 set_to_cap_if_null(ops, file_receive);
938 set_to_cap_if_null(ops, dentry_open);
939 set_to_cap_if_null(ops, task_create);
940 set_to_cap_if_null(ops, cred_alloc_blank);
941 set_to_cap_if_null(ops, cred_free);
942 set_to_cap_if_null(ops, cred_prepare);
943 set_to_cap_if_null(ops, cred_transfer);
944 set_to_cap_if_null(ops, kernel_act_as);
945 set_to_cap_if_null(ops, kernel_create_files_as);
946 set_to_cap_if_null(ops, kernel_module_request);
947 set_to_cap_if_null(ops, task_fix_setuid);
948 set_to_cap_if_null(ops, task_setpgid);
949 set_to_cap_if_null(ops, task_getpgid);
950 set_to_cap_if_null(ops, task_getsid);
951 set_to_cap_if_null(ops, task_getsecid);
952 set_to_cap_if_null(ops, task_setnice);
953 set_to_cap_if_null(ops, task_setioprio);
954 set_to_cap_if_null(ops, task_getioprio);
955 set_to_cap_if_null(ops, task_setrlimit);
956 set_to_cap_if_null(ops, task_setscheduler);
957 set_to_cap_if_null(ops, task_getscheduler);
958 set_to_cap_if_null(ops, task_movememory);
959 set_to_cap_if_null(ops, task_wait);
960 set_to_cap_if_null(ops, task_kill);
961 set_to_cap_if_null(ops, task_prctl);
962 set_to_cap_if_null(ops, task_to_inode);
963 set_to_cap_if_null(ops, ipc_permission);
964 set_to_cap_if_null(ops, ipc_getsecid);
965 set_to_cap_if_null(ops, msg_msg_alloc_security);
966 set_to_cap_if_null(ops, msg_msg_free_security);
967 set_to_cap_if_null(ops, msg_queue_alloc_security);
968 set_to_cap_if_null(ops, msg_queue_free_security);
969 set_to_cap_if_null(ops, msg_queue_associate);
970 set_to_cap_if_null(ops, msg_queue_msgctl);
971 set_to_cap_if_null(ops, msg_queue_msgsnd);
972 set_to_cap_if_null(ops, msg_queue_msgrcv);
973 set_to_cap_if_null(ops, shm_alloc_security);
974 set_to_cap_if_null(ops, shm_free_security);
975 set_to_cap_if_null(ops, shm_associate);
976 set_to_cap_if_null(ops, shm_shmctl);
977 set_to_cap_if_null(ops, shm_shmat);
978 set_to_cap_if_null(ops, sem_alloc_security);
979 set_to_cap_if_null(ops, sem_free_security);
980 set_to_cap_if_null(ops, sem_associate);
981 set_to_cap_if_null(ops, sem_semctl);
982 set_to_cap_if_null(ops, sem_semop);
983 set_to_cap_if_null(ops, netlink_send);
984 set_to_cap_if_null(ops, netlink_recv);
985 set_to_cap_if_null(ops, d_instantiate);
986 set_to_cap_if_null(ops, getprocattr);
987 set_to_cap_if_null(ops, setprocattr);
988 set_to_cap_if_null(ops, secid_to_secctx);
989 set_to_cap_if_null(ops, secctx_to_secid);
990 set_to_cap_if_null(ops, release_secctx);
991 set_to_cap_if_null(ops, inode_notifysecctx);
992 set_to_cap_if_null(ops, inode_setsecctx);
993 set_to_cap_if_null(ops, inode_getsecctx);
995 set_to_cap_if_null(ops, unix_stream_connect);
996 set_to_cap_if_null(ops, unix_may_send);
997 set_to_cap_if_null(ops, socket_create);
998 set_to_cap_if_null(ops, socket_post_create);
999 set_to_cap_if_null(ops, socket_bind);
1000 set_to_cap_if_null(ops, socket_connect);
1001 set_to_cap_if_null(ops, socket_listen);
1002 set_to_cap_if_null(ops, socket_accept);
1003 set_to_cap_if_null(ops, socket_sendmsg);
1004 set_to_cap_if_null(ops, socket_recvmsg);
1005 set_to_cap_if_null(ops, socket_getsockname);
1006 set_to_cap_if_null(ops, socket_getpeername);
1007 set_to_cap_if_null(ops, socket_setsockopt);
1008 set_to_cap_if_null(ops, socket_getsockopt);
1009 set_to_cap_if_null(ops, socket_shutdown);
1010 set_to_cap_if_null(ops, socket_sock_rcv_skb);
1011 set_to_cap_if_null(ops, socket_getpeersec_stream);
1012 set_to_cap_if_null(ops, socket_getpeersec_dgram);
1013 set_to_cap_if_null(ops, sk_alloc_security);
1014 set_to_cap_if_null(ops, sk_free_security);
1015 set_to_cap_if_null(ops, sk_clone_security);
1016 set_to_cap_if_null(ops, sk_getsecid);
1017 set_to_cap_if_null(ops, sock_graft);
1018 set_to_cap_if_null(ops, inet_conn_request);
1019 set_to_cap_if_null(ops, inet_csk_clone);
1020 set_to_cap_if_null(ops, inet_conn_established);
1021 set_to_cap_if_null(ops, req_classify_flow);
1022 set_to_cap_if_null(ops, tun_dev_create);
1023 set_to_cap_if_null(ops, tun_dev_post_create);
1024 set_to_cap_if_null(ops, tun_dev_attach);
1027 set_to_cap_if_null(ops, xfrm_policy_alloc_security);
1028 set_to_cap_if_null(ops, xfrm_policy_clone_security);
1029 set_to_cap_if_null(ops, xfrm_policy_free_security);
1030 set_to_cap_if_null(ops, xfrm_policy_delete_security);
1031 set_to_cap_if_null(ops, xfrm_state_alloc_security);
1032 set_to_cap_if_null(ops, xfrm_state_free_security);
1033 set_to_cap_if_null(ops, xfrm_state_delete_security);
1034 set_to_cap_if_null(ops, xfrm_policy_lookup);
1035 set_to_cap_if_null(ops, xfrm_state_pol_flow_match);
1036 set_to_cap_if_null(ops, xfrm_decode_session);
1039 set_to_cap_if_null(ops, key_alloc);
1040 set_to_cap_if_null(ops, key_free);
1041 set_to_cap_if_null(ops, key_permission);
1042 set_to_cap_if_null(ops, key_getsecurity);
1045 set_to_cap_if_null(ops, audit_rule_init);
1046 set_to_cap_if_null(ops, audit_rule_known);
1047 set_to_cap_if_null(ops, audit_rule_match);
1048 set_to_cap_if_null(ops, audit_rule_free);