Lines Matching refs:sk
1905 int security_netlink_send(struct sock *sk, struct sk_buff *skb)
1907 return call_int_hook(netlink_send, 0, sk, skb);
2048 int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
2050 return call_int_hook(socket_sock_rcv_skb, 0, sk, skb);
2068 int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
2070 return call_int_hook(sk_alloc_security, 0, sk, family, priority);
2073 void security_sk_free(struct sock *sk)
2075 call_void_hook(sk_free_security, sk);
2078 void security_sk_clone(const struct sock *sk, struct sock *newsk)
2080 call_void_hook(sk_clone_security, sk, newsk);
2084 void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
2086 call_void_hook(sk_getsecid, sk, &fl->flowi_secid);
2096 void security_sock_graft(struct sock *sk, struct socket *parent)
2098 call_void_hook(sock_graft, sk, parent);
2102 int security_inet_conn_request(struct sock *sk,
2105 return call_int_hook(inet_conn_request, 0, sk, skb, req);
2115 void security_inet_conn_established(struct sock *sk,
2118 call_void_hook(inet_conn_established, sk, skb);
2164 int security_tun_dev_attach(struct sock *sk, void *security)
2166 return call_int_hook(tun_dev_attach, 0, sk, security);
2182 int security_sctp_bind_connect(struct sock *sk, int optname,
2185 return call_int_hook(sctp_bind_connect, 0, sk, optname,
2190 void security_sctp_sk_clone(struct sctp_endpoint *ep, struct sock *sk,
2193 call_void_hook(sctp_sk_clone, ep, sk, newsk);