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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
/* $NetBSD: h_canutils.c,v 1.4 2019/10/13 07:46:16 mrg Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Manuel Bouyer
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
* CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: h_canutils.c,v 1.4 2019/10/13 07:46:16 mrg Exp $");
#endif /* not lint */
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <sys/sockio.h>
#include <sys/param.h>
#include <atf-c.h>
#include <assert.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <net/if.h>
#include <netcan/can.h>
#include <rump/rump.h>
#include <rump/rump_syscalls.h>
#include "h_macros.h"
#include "h_canutils.h"
void
cancfg_rump_createif(const char *ifname)
{
int s, rv;
struct ifreq ifr;
s = -1;
if ((s = rump_sys_socket(AF_CAN, SOCK_RAW, CAN_RAW)) < 0) {
atf_tc_fail_errno("if config socket");
}
memset(&ifr, 0, sizeof(ifr));
strncpy(ifr.ifr_name, ifname, IFNAMSIZ-1);
ifr.ifr_name[IFNAMSIZ - 1] = '\0';
if ((rv = rump_sys_ioctl(s, SIOCIFCREATE, &ifr)) < 0) {
atf_tc_fail_errno("if config create");
}
memset(&ifr, 0, sizeof(ifr));
strncpy(ifr.ifr_name, ifname, IFNAMSIZ-1);
ifr.ifr_name[IFNAMSIZ - 1] = '\0';
if ((rv = rump_sys_ioctl(s, SIOCGIFFLAGS, &ifr)) < 0) {
atf_tc_fail_errno("if config get flags");
}
ifr.ifr_flags |= IFF_UP;
if ((rv = rump_sys_ioctl(s, SIOCSIFFLAGS, &ifr)) < 0) {
atf_tc_fail_errno("if config set flags");
}
}
int
can_recvfrom(int s, struct can_frame *cf, int *len, struct sockaddr_can *sa)
{
socklen_t salen;
fd_set rfds;
struct timeval tmout;
int rv;
memset(cf, 0, sizeof(struct can_frame));
FD_ZERO(&rfds);
FD_SET(s, &rfds);
/* wait 1 second for the message (in some tests we expect no message) */
tmout.tv_sec = 1;
tmout.tv_usec = 0;
rv = rump_sys_select(s + 1, &rfds, NULL, NULL, &tmout);
switch(rv) {
case -1:
atf_tc_fail_errno("select");
/* NOTREACHED */
case 0:
/* timeout */
errno = EWOULDBLOCK;
return -1;
default: break;
}
ATF_CHECK_MSG(FD_ISSET(s, &rfds), "select returns but s not in set");
salen = sizeof(struct sockaddr_can);
if (( *len = rump_sys_recvfrom(s, cf, sizeof(struct can_frame),
0, (struct sockaddr *)sa, &salen)) < 0) {
atf_tc_fail_errno("recvfrom");
}
ATF_CHECK_MSG(rv > 0, "short read on socket");
ATF_CHECK_MSG(sa->can_family == AF_CAN,
"recvfrom provided wrong %d family", sa->can_family);
ATF_CHECK_MSG(salen == sizeof(struct sockaddr_can),
"recvfrom provided wrong size %d (!= %zu)", salen, sizeof(sa));
return 0;
}
int
can_read(int s, struct can_frame *cf, int *len)
{
fd_set rfds;
struct timeval tmout;
int rv;
memset(cf, 0, sizeof(struct can_frame));
FD_ZERO(&rfds);
FD_SET(s, &rfds);
/* wait 1 second for the message (in some tests we expect no message) */
tmout.tv_sec = 1;
tmout.tv_usec = 0;
rv = rump_sys_select(s + 1, &rfds, NULL, NULL, &tmout);
switch(rv) {
case -1:
atf_tc_fail_errno("select");
/* NOTREACHED */
case 0:
/* timeout */
errno = EWOULDBLOCK;
return -1;
default: break;
}
ATF_CHECK_MSG(FD_ISSET(s, &rfds), "select returns but s not in set");
if (( *len = rump_sys_read(s, cf, sizeof(struct can_frame))) < 0) {
atf_tc_fail_errno("read");
}
ATF_CHECK_MSG(rv > 0, "short read on socket");
return 0;
}
int
can_bind(int s, const char *ifname)
{
struct ifreq ifr;
struct sockaddr_can sa;
strcpy(ifr.ifr_name, ifname );
if (rump_sys_ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
atf_tc_fail_errno("SIOCGIFINDEX");
}
ATF_CHECK_MSG(ifr.ifr_ifindex > 0, "%s index is %d (not > 0)",
ifname, ifr.ifr_ifindex);
sa.can_family = AF_CAN;
sa.can_ifindex = ifr.ifr_ifindex;
if (rump_sys_bind(s, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
atf_tc_fail_errno("bind");
}
return ifr.ifr_ifindex;
}
int
can_socket_with_own(void)
{
int s;
int v;
if ((s = rump_sys_socket(AF_CAN, SOCK_RAW, CAN_RAW)) < 0) {
atf_tc_fail_errno("CAN socket");
}
v = 1;
if (rump_sys_setsockopt(s, SOL_CAN_RAW, CAN_RAW_RECV_OWN_MSGS,
&v, sizeof(v)) < 0) {
atf_tc_fail_errno("setsockopt(CAN_RAW_RECV_OWN_MSGS)");
}
return s;
}
|