blob: fd54af477dfaf247c02bdbd04efd4f0122fee357 [file] [log] [blame]
Elliott Hughesdc75b012017-07-05 13:54:44 -07001/*
2 * Copyright (c) 2016 Fabien Siron <fabien.siron@epita.fr>
3 * Copyright (c) 2017 JingPiao Chen <chenjingpiao@gmail.com>
Elliott Hughes03a418e2018-06-15 13:11:40 -07004 * Copyright (c) 2016-2018 The strace developers.
Elliott Hughesdc75b012017-07-05 13:54:44 -07005 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#ifndef STRACE_NLATTR_H
31#define STRACE_NLATTR_H
32
Elliott Hughes03a418e2018-06-15 13:11:40 -070033#include "xlat.h"
34
35struct decode_nla_xlat_opts {
36 const struct xlat *xlat;
37 size_t xlat_size; /* is not needed for XT_NORMAL */
38 const char *dflt;
39 enum xlat_type xt;
40 enum xlat_style style;
41 const char *prefix;
42 const char *suffix;
43 uint64_t (*process_fn)(uint64_t val);
44 size_t size;
45};
46
47/*
48 * Used for IFLA_LINKINFO decoding. Since there are no other indicators
49 * regarding the nature of data except for previously provided string
50 * in an IFLA_LINKINFO_KIND attribute, we have to store it in order to pass
51 * between calls as an opaque data.
52 */
53struct ifla_linkinfo_ctx {
54 char kind[16];
55};
56
Elliott Hughesdc75b012017-07-05 13:54:44 -070057typedef bool (*nla_decoder_t)(struct tcb *, kernel_ulong_t addr,
Elliott Hughes77c3ff82017-09-08 17:11:00 -070058 unsigned int len, const void *opaque_data);
Elliott Hughes03a418e2018-06-15 13:11:40 -070059
60/**
61 * The case of non-NULL decoders and zero size is handled in a special way:
62 * the zeroth decoder is always called with nla_type being passed as opaque
63 * data.
64 */
Elliott Hughesdc75b012017-07-05 13:54:44 -070065extern void
66decode_nlattr(struct tcb *,
67 kernel_ulong_t addr,
Elliott Hughes77c3ff82017-09-08 17:11:00 -070068 unsigned int len,
Elliott Hughesdc75b012017-07-05 13:54:44 -070069 const struct xlat *,
70 const char *dflt,
Elliott Hughes03a418e2018-06-15 13:11:40 -070071 const nla_decoder_t *decoders,
Elliott Hughesdc75b012017-07-05 13:54:44 -070072 unsigned int size,
73 const void *opaque_data);
74
75#define DECL_NLA(name) \
76extern bool \
77decode_nla_ ## name(struct tcb *, kernel_ulong_t addr, \
Elliott Hughes77c3ff82017-09-08 17:11:00 -070078 unsigned int len, const void *) \
79/* End of DECL_NLA definition. */
80
Elliott Hughes03a418e2018-06-15 13:11:40 -070081DECL_NLA(x8);
82DECL_NLA(x16);
83DECL_NLA(x32);
84DECL_NLA(x64);
Elliott Hughesdc75b012017-07-05 13:54:44 -070085DECL_NLA(u8);
86DECL_NLA(u16);
87DECL_NLA(u32);
88DECL_NLA(u64);
89DECL_NLA(s8);
90DECL_NLA(s16);
91DECL_NLA(s32);
92DECL_NLA(s64);
Elliott Hughes77c3ff82017-09-08 17:11:00 -070093DECL_NLA(be16);
94DECL_NLA(be64);
Elliott Hughes03a418e2018-06-15 13:11:40 -070095DECL_NLA(xval);
96DECL_NLA(flags);
Elliott Hughesdc75b012017-07-05 13:54:44 -070097DECL_NLA(str);
98DECL_NLA(strn);
Elliott Hughesb7556142018-02-20 17:03:16 -080099DECL_NLA(fd);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700100DECL_NLA(uid);
101DECL_NLA(gid);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700102DECL_NLA(ifindex);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700103DECL_NLA(ether_proto);
104DECL_NLA(ip_proto);
Elliott Hughesc1873762018-12-19 15:13:36 -0800105DECL_NLA(in_addr);
106DECL_NLA(in6_addr);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700107DECL_NLA(meminfo);
108DECL_NLA(rt_class);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700109DECL_NLA(rt_proto);
Elliott Hughesbbf97dc2017-11-15 16:45:52 -0800110DECL_NLA(tc_stats);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700111
112#endif /* !STRACE_NLATTR_H */