File: print_ifindex.c

package info (click to toggle)
strace 5.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 49,332 kB
  • sloc: ansic: 113,177; sh: 8,831; makefile: 3,108; awk: 364; perl: 267; sed: 9
file content (64 lines) | stat: -rw-r--r-- 1,298 bytes parent folder | download | duplicates (2)
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
/*
 * Copyright (c) 2001-2018 The strace developers.
 * All rights reserved.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#include "defs.h"
#include <net/if.h>

#ifdef HAVE_IF_INDEXTONAME
# include "xstring.h"

# define INI_PFX "if_nametoindex(\""
# define INI_SFX "\")"
# define IFNAME_QUOTED_SZ (sizeof(IFNAMSIZ) * 4 + 3)

const char *
get_ifname(const unsigned int ifindex)
{
	static char name_quoted_buf[IFNAME_QUOTED_SZ];
	char name_buf[IFNAMSIZ];

	if (!if_indextoname(ifindex, name_buf))
		return NULL;

	if (string_quote(name_buf, name_quoted_buf, sizeof(name_buf),
			 QUOTE_0_TERMINATED | QUOTE_OMIT_LEADING_TRAILING_QUOTES,
			 NULL))
		return NULL;

	return name_quoted_buf;
}

static const char *
sprint_ifname(const unsigned int ifindex)
{
	static char res[IFNAME_QUOTED_SZ + sizeof(INI_PFX INI_SFX)];

	const char *name_quoted = get_ifname(ifindex);

	if (!name_quoted)
		return NULL;

	xsprintf(res, INI_PFX "%s" INI_SFX, name_quoted);

	return res;
}

#else /* !HAVE_IF_INDEXTONAME */

const char *get_ifname(const unsigned int ifindex) { return NULL; }

#endif /* HAVE_IF_INDEXTONAME */

void
print_ifindex(const unsigned int ifindex)
{
#ifdef HAVE_IF_INDEXTONAME
	print_xlat_ex(ifindex, sprint_ifname(ifindex), XLAT_STYLE_FMT_U);
#else
	tprintf("%u", ifindex);
#endif
}