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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
/*
* Copyright (c) 2017 JingPiao Chen <chenjingpiao@gmail.com>
* Copyright (c) 2017-2018 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
#include <sys/socket.h>
#ifndef AF_SMC
# define XLAT_MACROS_ONLY
# include "xlat/addrfams.h"
# undef XLAT_MACROS_ONLY
#endif
#include "netlink.h"
#include "netlink_sock_diag.h"
#include "nlattr.h"
#include <arpa/inet.h>
#include <linux/smc_diag.h>
#include "xlat/smc_decl_codes.h"
#include "xlat/smc_diag_attrs.h"
#include "xlat/smc_diag_extended_flags.h"
#include "xlat/smc_diag_mode.h"
#include "xlat/smc_link_group_roles.h"
#include "xlat/smc_states.h"
#include "xlat/sock_shutdown_flags.h"
DECL_NETLINK_DIAG_DECODER(decode_smc_diag_req)
{
struct smc_diag_req req = { .diag_family = family };
const size_t offset = sizeof(req.diag_family);
tprint_struct_begin();
PRINT_FIELD_XVAL(req, diag_family, addrfams, "AF_???");
tprints(", ");
if (len >= sizeof(req)) {
if (!umoven_or_printaddr(tcp, addr + offset,
sizeof(req) - offset,
(void *) &req + offset)) {
PRINT_FIELD_FLAGS(req, diag_ext,
smc_diag_extended_flags,
"1<<SMC_DIAG_\?\?\?-1");
/*
* AF_SMC protocol family socket handler
* keeping the AF_INET sock address.
*/
tprint_struct_next();
PRINT_FIELD_INET_DIAG_SOCKID(req, id, AF_INET);
}
} else
tprint_more_data_follows();
tprint_struct_end();
}
static void
print_smc_diag_cursor(const struct smc_diag_cursor *const cursor)
{
tprint_struct_begin();
PRINT_FIELD_U(*cursor, reserved);
tprint_struct_next();
PRINT_FIELD_U(*cursor, wrap);
tprint_struct_next();
PRINT_FIELD_U(*cursor, count);
tprint_struct_end();
}
static bool
decode_smc_diag_conninfo(struct tcb *const tcp,
const kernel_ulong_t addr,
const unsigned int len,
const void *const opaque_data)
{
struct smc_diag_conninfo cinfo;
if (len < sizeof(cinfo))
return false;
if (umove_or_printaddr(tcp, addr, &cinfo))
return true;
tprint_struct_begin();
PRINT_FIELD_U(cinfo, token);
tprint_struct_next();
PRINT_FIELD_U(cinfo, sndbuf_size);
tprint_struct_next();
PRINT_FIELD_U(cinfo, rmbe_size);
tprint_struct_next();
PRINT_FIELD_U(cinfo, peer_rmbe_size);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, rx_prod, print_smc_diag_cursor);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, rx_cons, print_smc_diag_cursor);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, tx_prod, print_smc_diag_cursor);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, tx_cons, print_smc_diag_cursor);
tprint_struct_next();
PRINT_FIELD_0X(cinfo, rx_prod_flags);
tprint_struct_next();
PRINT_FIELD_0X(cinfo, rx_conn_state_flags);
tprint_struct_next();
PRINT_FIELD_0X(cinfo, tx_prod_flags);
tprint_struct_next();
PRINT_FIELD_0X(cinfo, tx_conn_state_flags);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, tx_prep, print_smc_diag_cursor);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, tx_sent, print_smc_diag_cursor);
tprint_struct_next();
PRINT_FIELD_OBJ_PTR(cinfo, tx_fin, print_smc_diag_cursor);
tprint_struct_end();
return true;
}
static bool
print_smc_diag_linkinfo_array_member(struct tcb *tcp, void *elem_buf,
size_t elem_size, void *data)
{
const struct smc_diag_linkinfo *const p = elem_buf;
tprint_struct_begin();
PRINT_FIELD_U(*p, link_id);
tprint_struct_next();
PRINT_FIELD_CSTRING(*p, ibname);
tprint_struct_next();
PRINT_FIELD_U(*p, ibport);
tprint_struct_next();
PRINT_FIELD_CSTRING(*p, gid);
tprint_struct_next();
PRINT_FIELD_CSTRING(*p, peer_gid);
tprint_struct_end();
return true;
}
static bool
decode_smc_diag_lgrinfo(struct tcb *const tcp,
const kernel_ulong_t addr,
const unsigned int len,
const void *const opaque_data)
{
struct smc_diag_lgrinfo linfo;
if (len < sizeof(linfo))
return false;
if (umove_or_printaddr(tcp, addr, &linfo))
return true;
tprint_struct_begin();
PRINT_FIELD_ARRAY(linfo, lnk, tcp,
print_smc_diag_linkinfo_array_member);
tprint_struct_next();
PRINT_FIELD_XVAL(linfo, role, smc_link_group_roles, "SMC_???");
tprint_struct_end();
return true;
}
static bool
decode_smc_diag_shutdown(struct tcb *const tcp,
const kernel_ulong_t addr,
const unsigned int len,
const void *const opaque_data)
{
const struct decode_nla_xlat_opts opts = {
sock_shutdown_flags, "???_SHUTDOWN",
.size = 1,
};
return decode_nla_flags(tcp, addr, len, &opts);
}
static bool
decode_smc_diag_dmbinfo(struct tcb *const tcp,
const kernel_ulong_t addr,
const unsigned int len,
const void *const opaque_data)
{
struct smcd_diag_dmbinfo dinfo;
if (len < sizeof(dinfo))
return false;
if (umove_or_printaddr(tcp, addr, &dinfo))
return true;
tprint_struct_begin();
PRINT_FIELD_U(dinfo, linkid);
tprint_struct_next();
PRINT_FIELD_X(dinfo, peer_gid);
tprint_struct_next();
PRINT_FIELD_X(dinfo, my_gid);
tprint_struct_next();
PRINT_FIELD_X(dinfo, token);
tprint_struct_next();
PRINT_FIELD_X(dinfo, peer_token);
tprint_struct_end();
return true;
}
static bool
decode_smc_diag_fallback(struct tcb *const tcp,
const kernel_ulong_t addr,
const unsigned int len,
const void *const opaque_data)
{
struct smc_diag_fallback fb;
if (len < sizeof(fb))
return false;
if (umove_or_printaddr(tcp, addr, &fb))
return true;
/*
* We print them verbose since they are defined in a non-UAPI header,
* net/smc/smc_clc.h
*/
tprint_struct_begin();
tprints_field_name("reason");
printxval_ex(smc_decl_codes, fb.reason, "SMC_CLC_DECL_???",
XLAT_STYLE_VERBOSE);
tprint_struct_next();
tprints_field_name("peer_diagnosis");
printxval_ex(smc_decl_codes, fb.peer_diagnosis, "SMC_CLC_DECL_???",
XLAT_STYLE_VERBOSE);
tprint_struct_end();
return true;
}
static const nla_decoder_t smc_diag_msg_nla_decoders[] = {
[SMC_DIAG_CONNINFO] = decode_smc_diag_conninfo,
[SMC_DIAG_LGRINFO] = decode_smc_diag_lgrinfo,
[SMC_DIAG_SHUTDOWN] = decode_smc_diag_shutdown,
[SMC_DIAG_DMBINFO] = decode_smc_diag_dmbinfo,
[SMC_DIAG_FALLBACK] = decode_smc_diag_fallback,
};
DECL_NETLINK_DIAG_DECODER(decode_smc_diag_msg)
{
struct smc_diag_msg msg = { .diag_family = family };
size_t offset = sizeof(msg.diag_family);
bool decode_nla = false;
tprint_struct_begin();
PRINT_FIELD_XVAL(msg, diag_family, addrfams, "AF_???");
tprints(", ");
if (len >= sizeof(msg)) {
if (!umoven_or_printaddr(tcp, addr + offset,
sizeof(msg) - offset,
(void *) &msg + offset)) {
PRINT_FIELD_XVAL(msg, diag_state,
smc_states, "SMC_???");
tprint_struct_next();
PRINT_FIELD_XVAL(msg, diag_fallback,
smc_diag_mode, "SMC_DIAG_MODE_???");
tprint_struct_next();
PRINT_FIELD_U(msg, diag_shutdown);
/*
* AF_SMC protocol family socket handler
* keeping the AF_INET sock address.
*/
tprint_struct_next();
PRINT_FIELD_INET_DIAG_SOCKID(msg, id, AF_INET);
tprint_struct_next();
PRINT_FIELD_U(msg, diag_uid);
tprint_struct_next();
PRINT_FIELD_U(msg, diag_inode);
decode_nla = true;
}
} else
tprint_more_data_follows();
tprint_struct_end();
offset = NLMSG_ALIGN(sizeof(msg));
if (decode_nla && len > offset) {
tprints(", ");
decode_nlattr(tcp, addr + offset, len - offset,
smc_diag_attrs, "SMC_DIAG_???",
smc_diag_msg_nla_decoders,
ARRAY_SIZE(smc_diag_msg_nla_decoders), NULL);
}
}
|