Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
1de5900
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
init
io_uring
ipc
kernel
lib
mm
net
6lowpan
802
8021q
9p
appletalk
atm
ax25
batman-adv
bluetooth
bpf
bpfilter
bridge
caif
can
ceph
core
dcb
dccp
devlink
dns_resolver
dsa
ethernet
ethtool
handshake
.kunitconfig
Makefile
genl.c
genl.h
handshake-test.c
handshake.h
netlink.c
request.c
tlshd.c
trace.c
hsr
ieee802154
ife
ipv4
ipv6
iucv
kcm
key
l2tp
l3mdev
lapb
llc
mac80211
mac802154
mctp
mpls
mptcp
ncsi
netfilter
netlabel
netlink
netrom
nfc
nsh
openvswitch
packet
phonet
psample
qrtr
rds
rfkill
rose
rxrpc
sched
sctp
smc
strparser
sunrpc
switchdev
tipc
tls
unix
vmw_vsock
wireless
x25
xdp
xfrm
Kconfig
Kconfig.debug
Makefile
compat.c
devres.c
socket.c
sysctl_net.c
rust
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
net
/
handshake
/
handshake.h
Copy path
Blame
Blame
Latest commit
Chuck Lever
and
Jakub Kicinski
net/handshake: Unpin sock->file if a handshake is cancelled
May 25, 2023
1ce77c9
·
May 25, 2023
History
History
88 lines (74 loc) · 2.28 KB
Breadcrumbs
linux
/
net
/
handshake
/
handshake.h
Top
File metadata and controls
Code
Blame
88 lines (74 loc) · 2.28 KB
Raw
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Generic netlink handshake service * * Author: Chuck Lever <chuck.lever@oracle.com> * * Copyright (c) 2023, Oracle and/or its affiliates. */ #ifndef _INTERNAL_HANDSHAKE_H #define _INTERNAL_HANDSHAKE_H /* Per-net namespace context */ struct handshake_net { spinlock_t hn_lock; /* protects next 3 fields */ int hn_pending; int hn_pending_max; struct list_head hn_requests; unsigned long hn_flags; }; enum hn_flags_bits { HANDSHAKE_F_NET_DRAINING, }; struct handshake_proto; /* One handshake request */ struct handshake_req { struct list_head hr_list; struct rhash_head hr_rhash; unsigned long hr_flags; struct file *hr_file; const struct handshake_proto *hr_proto; struct sock *hr_sk; void (*hr_odestruct)(struct sock *sk); /* Always the last field */ char hr_priv[]; }; enum hr_flags_bits { HANDSHAKE_F_REQ_COMPLETED, }; /* Invariants for all handshake requests for one transport layer * security protocol */ struct handshake_proto { int hp_handler_class; size_t hp_privsize; unsigned long hp_flags; int (*hp_accept)(struct handshake_req *req, struct genl_info *info, int fd); void (*hp_done)(struct handshake_req *req, unsigned int status, struct genl_info *info); void (*hp_destroy)(struct handshake_req *req); }; enum hp_flags_bits { HANDSHAKE_F_PROTO_NOTIFY, }; /* netlink.c */ int handshake_genl_notify(struct net *net, const struct handshake_proto *proto, gfp_t flags); struct nlmsghdr *handshake_genl_put(struct sk_buff *msg, struct genl_info *info); struct handshake_net *handshake_pernet(struct net *net); /* request.c */ struct handshake_req *handshake_req_alloc(const struct handshake_proto *proto, gfp_t flags); int handshake_req_hash_init(void); void handshake_req_hash_destroy(void); void *handshake_req_private(struct handshake_req *req); struct handshake_req *handshake_req_hash_lookup(struct sock *sk); struct handshake_req *handshake_req_next(struct handshake_net *hn, int class); int handshake_req_submit(struct socket *sock, struct handshake_req *req, gfp_t flags); void handshake_complete(struct handshake_req *req, unsigned int status, struct genl_info *info); bool handshake_req_cancel(struct sock *sk); #endif /* _INTERNAL_HANDSHAKE_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
You can’t perform that action at this time.