xref: /aosp_15_r20/external/strace/tests-mx32/nlattr_ifla.h (revision cf84ac9a129d8ea9952db616b4e9b904c4bdde56)
1*cf84ac9aSAndroid Build Coastguard Worker /*
2*cf84ac9aSAndroid Build Coastguard Worker  * netlink attribute ifinfomsg common code.
3*cf84ac9aSAndroid Build Coastguard Worker  *
4*cf84ac9aSAndroid Build Coastguard Worker  * Copyright (c) 2017 JingPiao Chen <[email protected]>
5*cf84ac9aSAndroid Build Coastguard Worker  * Copyright (c) 2017-2018 The strace developers.
6*cf84ac9aSAndroid Build Coastguard Worker  * All rights reserved.
7*cf84ac9aSAndroid Build Coastguard Worker  *
8*cf84ac9aSAndroid Build Coastguard Worker  * Redistribution and use in source and binary forms, with or without
9*cf84ac9aSAndroid Build Coastguard Worker  * modification, are permitted provided that the following conditions
10*cf84ac9aSAndroid Build Coastguard Worker  * are met:
11*cf84ac9aSAndroid Build Coastguard Worker  * 1. Redistributions of source code must retain the above copyright
12*cf84ac9aSAndroid Build Coastguard Worker  *    notice, this list of conditions and the following disclaimer.
13*cf84ac9aSAndroid Build Coastguard Worker  * 2. Redistributions in binary form must reproduce the above copyright
14*cf84ac9aSAndroid Build Coastguard Worker  *    notice, this list of conditions and the following disclaimer in the
15*cf84ac9aSAndroid Build Coastguard Worker  *    documentation and/or other materials provided with the distribution.
16*cf84ac9aSAndroid Build Coastguard Worker  * 3. The name of the author may not be used to endorse or promote products
17*cf84ac9aSAndroid Build Coastguard Worker  *    derived from this software without specific prior written permission.
18*cf84ac9aSAndroid Build Coastguard Worker  *
19*cf84ac9aSAndroid Build Coastguard Worker  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20*cf84ac9aSAndroid Build Coastguard Worker  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21*cf84ac9aSAndroid Build Coastguard Worker  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22*cf84ac9aSAndroid Build Coastguard Worker  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23*cf84ac9aSAndroid Build Coastguard Worker  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24*cf84ac9aSAndroid Build Coastguard Worker  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25*cf84ac9aSAndroid Build Coastguard Worker  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26*cf84ac9aSAndroid Build Coastguard Worker  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*cf84ac9aSAndroid Build Coastguard Worker  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28*cf84ac9aSAndroid Build Coastguard Worker  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*cf84ac9aSAndroid Build Coastguard Worker  */
30*cf84ac9aSAndroid Build Coastguard Worker 
31*cf84ac9aSAndroid Build Coastguard Worker #ifndef STRACE_TESTS_NLATTR_IFLA_H
32*cf84ac9aSAndroid Build Coastguard Worker #define STRACE_TESTS_NLATTR_IFLA_H
33*cf84ac9aSAndroid Build Coastguard Worker 
34*cf84ac9aSAndroid Build Coastguard Worker #include "tests.h"
35*cf84ac9aSAndroid Build Coastguard Worker 
36*cf84ac9aSAndroid Build Coastguard Worker #ifndef IFLA_ATTR
37*cf84ac9aSAndroid Build Coastguard Worker # error "Please define IFLA_ATTR before including this file"
38*cf84ac9aSAndroid Build Coastguard Worker #endif
39*cf84ac9aSAndroid Build Coastguard Worker 
40*cf84ac9aSAndroid Build Coastguard Worker static const unsigned int hdrlen = sizeof(struct ifinfomsg);
41*cf84ac9aSAndroid Build Coastguard Worker 
42*cf84ac9aSAndroid Build Coastguard Worker static void
init_ifinfomsg(struct nlmsghdr * const nlh,const unsigned int msg_len)43*cf84ac9aSAndroid Build Coastguard Worker init_ifinfomsg(struct nlmsghdr *const nlh, const unsigned int msg_len)
44*cf84ac9aSAndroid Build Coastguard Worker {
45*cf84ac9aSAndroid Build Coastguard Worker 	SET_STRUCT(struct nlmsghdr, nlh,
46*cf84ac9aSAndroid Build Coastguard Worker 		.nlmsg_len = msg_len,
47*cf84ac9aSAndroid Build Coastguard Worker 		.nlmsg_type = RTM_GETLINK,
48*cf84ac9aSAndroid Build Coastguard Worker 		.nlmsg_flags = NLM_F_DUMP
49*cf84ac9aSAndroid Build Coastguard Worker 	);
50*cf84ac9aSAndroid Build Coastguard Worker 
51*cf84ac9aSAndroid Build Coastguard Worker 	struct ifinfomsg *const msg = NLMSG_DATA(nlh);
52*cf84ac9aSAndroid Build Coastguard Worker 	SET_STRUCT(struct ifinfomsg, msg,
53*cf84ac9aSAndroid Build Coastguard Worker 		.ifi_family = AF_UNIX,
54*cf84ac9aSAndroid Build Coastguard Worker 		.ifi_type = ARPHRD_LOOPBACK,
55*cf84ac9aSAndroid Build Coastguard Worker 		.ifi_index = ifindex_lo(),
56*cf84ac9aSAndroid Build Coastguard Worker 		.ifi_flags = IFF_UP,
57*cf84ac9aSAndroid Build Coastguard Worker 	);
58*cf84ac9aSAndroid Build Coastguard Worker 
59*cf84ac9aSAndroid Build Coastguard Worker 	struct nlattr *const nla = NLMSG_ATTR(nlh, sizeof(*msg));
60*cf84ac9aSAndroid Build Coastguard Worker 	SET_STRUCT(struct nlattr, nla,
61*cf84ac9aSAndroid Build Coastguard Worker 		.nla_len = msg_len - NLMSG_SPACE(hdrlen),
62*cf84ac9aSAndroid Build Coastguard Worker 		.nla_type = IFLA_ATTR
63*cf84ac9aSAndroid Build Coastguard Worker 	);
64*cf84ac9aSAndroid Build Coastguard Worker }
65*cf84ac9aSAndroid Build Coastguard Worker 
66*cf84ac9aSAndroid Build Coastguard Worker static void
print_ifinfomsg(const unsigned int msg_len)67*cf84ac9aSAndroid Build Coastguard Worker print_ifinfomsg(const unsigned int msg_len)
68*cf84ac9aSAndroid Build Coastguard Worker {
69*cf84ac9aSAndroid Build Coastguard Worker 	printf("{len=%u, type=RTM_GETLINK, flags=NLM_F_DUMP"
70*cf84ac9aSAndroid Build Coastguard Worker 	       ", seq=0, pid=0}, {ifi_family=AF_UNIX"
71*cf84ac9aSAndroid Build Coastguard Worker 	       ", ifi_type=ARPHRD_LOOPBACK"
72*cf84ac9aSAndroid Build Coastguard Worker 	       ", ifi_index=" IFINDEX_LO_STR
73*cf84ac9aSAndroid Build Coastguard Worker 	       ", ifi_flags=IFF_UP, ifi_change=0}"
74*cf84ac9aSAndroid Build Coastguard Worker 	       ", {{nla_len=%u, nla_type=" STRINGIFY_VAL(IFLA_ATTR) "}",
75*cf84ac9aSAndroid Build Coastguard Worker 	       msg_len, msg_len - NLMSG_SPACE(hdrlen));
76*cf84ac9aSAndroid Build Coastguard Worker }
77*cf84ac9aSAndroid Build Coastguard Worker 
78*cf84ac9aSAndroid Build Coastguard Worker #endif /* STRACE_TESTS_NLATTR_IFLA_H */
79