1d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes/*
277c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes * Copyright (c) 2016 Fabien Siron <fabien.siron@epita.fr>
3d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * Copyright (c) 2017 JingPiao Chen <chenjingpiao@gmail.com>
477c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes * Copyright (c) 2016-2017 The strace developers.
5d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * All rights reserved.
6d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes *
7d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * Redistribution and use in source and binary forms, with or without
8d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * modification, are permitted provided that the following conditions
9d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * are met:
10d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * 1. Redistributions of source code must retain the above copyright
11d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes *    notice, this list of conditions and the following disclaimer.
12d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * 2. Redistributions in binary form must reproduce the above copyright
13d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes *    notice, this list of conditions and the following disclaimer in the
14d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes *    documentation and/or other materials provided with the distribution.
15d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * 3. The name of the author may not be used to endorse or promote products
16d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes *    derived from this software without specific prior written permission.
17d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes *
18d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes */
29d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes
30d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes#include "defs.h"
3177c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes#include "netlink_route.h"
3277c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes#include "nlattr.h"
3377c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes#include "print_fields.h"
34d35df493b4e7684c50d2d2fa032ee3a7ac228009Elliott Hughes
3577c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes#include "netlink.h"
3677c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes#include <linux/rtnetlink.h>
3777c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes
3877c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes#include "xlat/rtnl_tc_action_attrs.h"
3977c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes
40bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughesstatic const nla_decoder_t tcamsg_nla_decoders[] = {
41bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes	[TCA_ACT_KIND]		= decode_nla_str,
42bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes	[TCA_ACT_OPTIONS]	= NULL, /* unimplemented */
43bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes	[TCA_ACT_INDEX]		= decode_nla_u32,
44bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes	[TCA_ACT_STATS]		= decode_nla_tc_stats,
45bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes	[TCA_ACT_PAD]		= NULL,
46bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes	[TCA_ACT_COOKIE]	= NULL /* default parser */
47bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes};
48bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes
4977c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott HughesDECL_NETLINK_ROUTE_DECODER(decode_tcamsg)
5077c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes{
5177c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes	struct tcamsg tca = { .tca_family = family };
5277c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes
5377c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes	PRINT_FIELD_XVAL("{", tca, tca_family, addrfams, "AF_???");
5477c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes	tprints("}");
5577c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes
5677c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes	const size_t offset = NLMSG_ALIGN(sizeof(tca));
5777c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes	if (len > offset) {
5877c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes		tprints(", ");
5977c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes		decode_nlattr(tcp, addr + offset, len - offset,
6077c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes			      rtnl_tc_action_attrs, "TCA_ACT_???",
61bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes			      tcamsg_nla_decoders,
62bbf97dc20c4ee0e36b4628fe03e0e7db5a11d469Elliott Hughes			      ARRAY_SIZE(tcamsg_nla_decoders), NULL);
6377c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes	}
6477c3ff8e0644f1e120e4b2ebc7222150b0446f3bElliott Hughes}
65