d6a94e0bcd
In several netlink_sock_diag parsers NLA_ALIGN was used instead of NLMSG_ALIGN to align the length of netlink messages. Fortunately, both macros round the given length to the closest multiple of 4, so technically there is no difference, but the use of wrong macro is misleading. * netlink_inet_diag.c (decode_inet_diag_req_compat, decode_inet_diag_req_v2, decode_inet_diag_msg): Replace NLA_ALIGN with NLMSG_ALIGN. * netlink_netlink_diag.c (decode_netlink_diag_msg): Likewise. * netlink_packet_diag.c (decode_packet_diag_msg): Likewise. * netlink_smc_diag.c (decode_smc_diag_msg): Likewise.
191 lines
5.9 KiB
C
191 lines
5.9 KiB
C
/*
|
|
* Copyright (c) 2017 JingPiao Chen <chenjingpiao@gmail.com>
|
|
* Copyright (c) 2017 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "defs.h"
|
|
#include <sys/socket.h>
|
|
|
|
#ifdef AF_SMC
|
|
|
|
# include "netlink.h"
|
|
# include "netlink_sock_diag.h"
|
|
# include "nlattr.h"
|
|
# include "print_fields.h"
|
|
|
|
# include <arpa/inet.h>
|
|
# include <linux/smc_diag.h>
|
|
|
|
# include "xlat/smc_diag_attrs.h"
|
|
# include "xlat/smc_diag_extended_flags.h"
|
|
# include "xlat/smc_link_group_roles.h"
|
|
# include "xlat/smc_states.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);
|
|
|
|
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.
|
|
*/
|
|
PRINT_FIELD_INET_DIAG_SOCKID(", ", req, id, AF_INET);
|
|
}
|
|
} else
|
|
tprints("...");
|
|
tprints("}");
|
|
}
|
|
|
|
static void
|
|
print_smc_diag_cursor(const struct smc_diag_cursor *const cursor)
|
|
{
|
|
PRINT_FIELD_U("{", *cursor, reserved);
|
|
PRINT_FIELD_U(", ", *cursor, wrap);
|
|
PRINT_FIELD_U(", ", *cursor, count);
|
|
tprints("}");
|
|
}
|
|
|
|
# define PRINT_FIELD_SMC_DIAG_CURSOR(prefix_, where_, field_) \
|
|
do { \
|
|
tprintf("%s%s=", (prefix_), #field_); \
|
|
print_smc_diag_cursor(&(where_).field_); \
|
|
} while (0)
|
|
|
|
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;
|
|
|
|
PRINT_FIELD_U("{", cinfo, token);
|
|
PRINT_FIELD_U(", ", cinfo, sndbuf_size);
|
|
PRINT_FIELD_U(", ", cinfo, rmbe_size);
|
|
PRINT_FIELD_U(", ", cinfo, peer_rmbe_size);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, rx_prod);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, rx_cons);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, tx_prod);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, tx_cons);
|
|
PRINT_FIELD_0X(", ", cinfo, rx_prod_flags);
|
|
PRINT_FIELD_0X(", ", cinfo, rx_conn_state_flags);
|
|
PRINT_FIELD_0X(", ", cinfo, tx_prod_flags);
|
|
PRINT_FIELD_0X(", ", cinfo, tx_conn_state_flags);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, tx_prep);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, tx_sent);
|
|
PRINT_FIELD_SMC_DIAG_CURSOR(", ", cinfo, tx_fin);
|
|
tprints("}");
|
|
|
|
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;
|
|
|
|
tprints("{lnk[0]={");
|
|
PRINT_FIELD_U("", linfo.lnk[0], link_id);
|
|
PRINT_FIELD_CSTRING(", ", linfo.lnk[0], ibname);
|
|
PRINT_FIELD_U(", ", linfo.lnk[0], ibport);
|
|
PRINT_FIELD_CSTRING(", ", linfo.lnk[0], gid);
|
|
PRINT_FIELD_CSTRING(", ", linfo.lnk[0], peer_gid);
|
|
PRINT_FIELD_XVAL("}, ", linfo, role, smc_link_group_roles, "SMC_???");
|
|
tprints("}");
|
|
|
|
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_nla_u8
|
|
};
|
|
|
|
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;
|
|
|
|
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_???");
|
|
PRINT_FIELD_U(", ", msg, diag_fallback);
|
|
PRINT_FIELD_U(", ", msg, diag_shutdown);
|
|
/*
|
|
* AF_SMC protocol family socket handler
|
|
* keeping the AF_INET sock address.
|
|
*/
|
|
PRINT_FIELD_INET_DIAG_SOCKID(", ", msg, id, AF_INET);
|
|
PRINT_FIELD_U(", ", msg, diag_uid);
|
|
PRINT_FIELD_U(", ", msg, diag_inode);
|
|
decode_nla = true;
|
|
}
|
|
} else
|
|
tprints("...");
|
|
tprints("}");
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
#endif /* AF_SMC */
|