Merge tag 'soc-ep93xx-dt-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-2.6-block.git] / fs / ocfs2 / cluster / tcp.h
CommitLineData
328970de 1/* SPDX-License-Identifier: GPL-2.0-or-later */
fa60ce2c 2/*
98211489
ZB
3 * tcp.h
4 *
5 * Function prototypes
6 *
7 * Copyright (C) 2004 Oracle. All rights reserved.
98211489
ZB
8 */
9
10#ifndef O2CLUSTER_TCP_H
11#define O2CLUSTER_TCP_H
12
13#include <linux/socket.h>
14#ifdef __KERNEL__
15#include <net/sock.h>
16#include <linux/tcp.h>
17#else
18#include <sys/socket.h>
19#endif
20#include <linux/inet.h>
21#include <linux/in.h>
22
23struct o2net_msg
24{
25 __be16 magic;
26 __be16 data_len;
27 __be16 msg_type;
28 __be16 pad1;
29 __be32 sys_status;
30 __be32 status;
31 __be32 key;
32 __be32 msg_num;
fa803cf8 33 __u8 buf[];
98211489
ZB
34};
35
d74c9803
KH
36typedef int (o2net_msg_handler_func)(struct o2net_msg *msg, u32 len, void *data,
37 void **ret_data);
38typedef void (o2net_post_msg_handler_func)(int status, void *data,
39 void *ret_data);
98211489
ZB
40
41#define O2NET_MAX_PAYLOAD_BYTES (4096 - sizeof(struct o2net_msg))
42
b5dd8030
JM
43/* same as hb delay, we're waiting for another node to recognize our hb */
44#define O2NET_RECONNECT_DELAY_MS_DEFAULT 2000
45
17104683
SM
46#define O2NET_KEEPALIVE_DELAY_MS_DEFAULT 2000
47#define O2NET_IDLE_TIMEOUT_MS_DEFAULT 30000
b5dd8030 48
8e9801df 49#define O2NET_TCP_USER_TIMEOUT 0x7fffffff
b5dd8030 50
98211489
ZB
51/* TODO: figure this out.... */
52static inline int o2net_link_down(int err, struct socket *sock)
53{
54 if (sock) {
55 if (sock->sk->sk_state != TCP_ESTABLISHED &&
56 sock->sk->sk_state != TCP_CLOSE_WAIT)
57 return 1;
58 }
59
60 if (err >= 0)
61 return 0;
62 switch (err) {
63 /* ????????????????????????? */
64 case -ERESTARTSYS:
65 case -EBADF:
66 /* When the server has died, an ICMP port unreachable
67 * message prompts ECONNREFUSED. */
68 case -ECONNREFUSED:
69 case -ENOTCONN:
70 case -ECONNRESET:
71 case -EPIPE:
72 return 1;
73 }
74 return 0;
75}
76
77enum {
78 O2NET_DRIVER_UNINITED,
79 O2NET_DRIVER_READY,
80};
81
98211489
ZB
82int o2net_send_message(u32 msg_type, u32 key, void *data, u32 len,
83 u8 target_node, int *status);
84int o2net_send_message_vec(u32 msg_type, u32 key, struct kvec *vec,
85 size_t veclen, u8 target_node, int *status);
98211489
ZB
86
87int o2net_register_handler(u32 msg_type, u32 key, u32 max_len,
88 o2net_msg_handler_func *func, void *data,
d74c9803 89 o2net_post_msg_handler_func *post_func,
98211489
ZB
90 struct list_head *unreg_list);
91void o2net_unregister_handler_list(struct list_head *list);
92
3ba169cc
SM
93void o2net_fill_node_map(unsigned long *map, unsigned bytes);
94
98211489
ZB
95struct o2nm_node;
96int o2net_register_hb_callbacks(void);
97void o2net_unregister_hb_callbacks(void);
98int o2net_start_listening(struct o2nm_node *node);
99void o2net_stop_listening(struct o2nm_node *node);
100void o2net_disconnect_node(struct o2nm_node *node);
828ae6af 101int o2net_num_connected_peers(void);
98211489
ZB
102
103int o2net_init(void);
104void o2net_exit(void);
98211489 105
2309e9e0
SM
106struct o2net_send_tracking;
107struct o2net_sock_container;
108
109#ifdef CONFIG_DEBUG_FS
e581595e 110void o2net_debugfs_init(void);
2309e9e0
SM
111void o2net_debugfs_exit(void);
112void o2net_debug_add_nst(struct o2net_send_tracking *nst);
113void o2net_debug_del_nst(struct o2net_send_tracking *nst);
114void o2net_debug_add_sc(struct o2net_sock_container *sc);
115void o2net_debug_del_sc(struct o2net_sock_container *sc);
116#else
e581595e 117static inline void o2net_debugfs_init(void)
2309e9e0 118{
2309e9e0 119}
271d772d 120static inline void o2net_debugfs_exit(void)
2309e9e0
SM
121{
122}
271d772d 123static inline void o2net_debug_add_nst(struct o2net_send_tracking *nst)
2309e9e0
SM
124{
125}
271d772d 126static inline void o2net_debug_del_nst(struct o2net_send_tracking *nst)
2309e9e0
SM
127{
128}
271d772d 129static inline void o2net_debug_add_sc(struct o2net_sock_container *sc)
2309e9e0
SM
130{
131}
271d772d 132static inline void o2net_debug_del_sc(struct o2net_sock_container *sc)
2309e9e0
SM
133{
134}
135#endif /* CONFIG_DEBUG_FS */
136
98211489 137#endif /* O2CLUSTER_TCP_H */