File: misc.h

package info (click to toggle)
libteam 1.12-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,320 kB
  • ctags: 2,189
  • sloc: ansic: 16,808; sh: 1,190; python: 613; makefile: 110
file content (105 lines) | stat: -rw-r--r-- 2,423 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 *   misc.c - Miscellaneous helpers
 *   Copyright (C) 2011-2013 Jiri Pirko <jiri@resnulli.us>
 *
 *   This library is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU Lesser General Public
 *   License as published by the Free Software Foundation; either
 *   version 2.1 of the License, or (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 *   License along with this library; if not, write to the Free Software
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef _T_MISC_H_
#define _T_MISC_H_

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#include <unistd.h>
#include <sys/socket.h>
#include <inttypes.h>
#include <sys/ioctl.h>
#include <linux/if.h>

static inline void *myzalloc(size_t size)
{
	return calloc(1, size);
}

static inline size_t mystrlcpy(char *dst, const char *src, size_t size)
{
	size_t ret = strlen(src);

	if (size) {
		size_t len = (ret >= size) ? size - 1 : ret;

		memcpy(dst, src, len);
		dst[len] = '\0';
	}
	return ret;
}

#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))

static inline void hwaddr_str(char *str, char *hwaddr, size_t len)
{
	int i;

	for (i = 0; i < len; i++) {
		sprintf(str, "%02x:", (unsigned char) hwaddr[i]);
		str += 3;
	}
	*(str - 1) = '\0';
}

static inline size_t hwaddr_str_len(size_t len)
{
	return len * 3 + 1;
}

static inline char *a_hwaddr_str(char *hwaddr, size_t len)
{
	char *str;

	str = malloc(sizeof(char) * hwaddr_str_len(len));
	if (!str)
		return NULL;
	hwaddr_str(str, hwaddr, len);
	return str;
}

static inline int ifname2ifindex(uint32_t *p_ifindex, char *ifname)
{
	int sock;
	struct ifreq ifr;
	int ret;

	sock = socket(PF_PACKET, SOCK_DGRAM, 0);
	if (sock == -1)
		return -errno;
	memset(&ifr, 0, sizeof(ifr));
	strncpy(ifr.ifr_name, ifname, IFNAMSIZ - 1);
	ret = ioctl(sock, SIOCGIFINDEX, &ifr);
	close(sock);
	if (ret == -1) {
		if (errno == ENODEV)
			*p_ifindex = 0;
		else
			return -errno;
	} else {
		*p_ifindex = ifr.ifr_ifindex;
	}
	return 0;
}

#endif /* _T_MISC_H_ */