c8439026fbef7ba03ec1aab073f012bfd7e309e7
[revag-nm.git] / vw-nm.c
1 /*
2  * Copyright 2015-2016 Max Staudt
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License 2 as published
6  * by the Free Software Foundation.
7  */
8
9 #include <assert.h>
10
11 #include <stdio.h>
12 #include <stdint.h>
13 #include <unistd.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <sys/types.h>
17 #include <sys/socket.h>
18 #include <linux/can.h>
19 #include <linux/can/raw.h>
20 #include <net/if.h>
21 #include <sys/ioctl.h>
22 #include <endian.h>
23 #include <sys/time.h>
24
25
26 #include "vw-nm.h"
27 #include "vw-nm-tools.h"
28
29
30
31
32
33 static void nm_update_my_next_id(struct NM_Main *nm) {
34         unsigned id = nm->my_id;
35
36         do {
37                 NM_State state;
38
39                 id++;
40                 if (id >= nm->max_nodes) {
41                         id = 0;
42                 }
43
44                 state = nm->nodes[id].state & NM_MAIN_MASK;
45
46                 if (state == NM_MAIN_ON || state == NM_MAIN_LOGIN) {
47                         /* We skip limp home nodes */
48                         nm->nodes[nm->my_id].next = id;
49                         break;
50                 }
51         } while (id != nm->my_id);
52
53         if (nm->nodes[nm->my_id].next == nm->my_id) {
54                 /* Uh oh, we're the only one left. */
55
56                 /* TODO */
57                 nm->nodes[nm->my_id].state = NM_MAIN_LOGIN;
58
59                 /* TODO: Timeout 140ms (RCD 310) */
60         }
61 }
62
63
64
65 static void nm_handle_can_frame(struct NM_Main *nm, struct can_frame *frame)
66 {
67         NM_ID sender, next;
68         NM_State state;
69
70         /* Is this a valid frame within our logical network? */
71         if (!nm_is_rx_frame_valid(nm, frame)) {
72                 return;
73         }
74
75         printf("Received NM frame from CAN ID %03x\n", frame->can_id);
76
77
78         /* Parse sender, its perceived successor, and its state */
79         sender = frame->can_id & (nm->max_nodes - 1);
80         next = frame->data[0];
81         state = frame->data[1];
82
83         /* TODO: Validate state, it needs to be within the enum */
84
85         /* Skip our own frames */
86         if (sender == nm->my_id) {
87                 return;
88         }
89
90         nm->nodes[sender].next = next;
91         nm->nodes[sender].state = state;
92
93         /* Update our view of the world */
94         nm_update_my_next_id(nm);
95
96         switch (state & NM_MAIN_MASK) {
97                 case NM_MAIN_ON:
98                         /* We're not alone, so let's transition to ON for now.
99                          */
100                         nm->nodes[nm->my_id].state = NM_MAIN_ON;
101
102                         /* The AWOL timeout is ONLY reset on
103                          * NM_MAIN_ON messages.
104                          */
105                         nm_set_timer_awol(nm);
106
107                         if (next == nm->nodes[nm->my_id].next
108                                 && nm->nodes[nm->my_id].next != nm->my_id) {
109                                 /* Sender doesn't know we exist */
110
111                                 nm->nodes[nm->my_id].state = NM_MAIN_LOGIN;
112
113                                 nm_set_timer_now(nm);
114
115                                 /* IMPORTANT: The caller needs to check for
116                                  * timeouts first, i.e. no other NM frames
117                                  * are received until our correcting login
118                                  * has been sent.
119                                  */
120                         } else if (next == nm->nodes[nm->my_id].next) {
121                                 /* where (nm->nodes[nm->my_id].next == nm->my_id) */
122
123                                 /* It can happen when:
124                                  *  - our sent frames don't go anywhere
125                                  *  - we just logged in and immediately
126                                  *    afterwards another ECU sent a regular
127                                  *    NM frame.
128                                  */
129
130                                 /* Nothing to do. */
131                         } else if (next == nm->my_id) {
132                                 /* It's our turn, do a normal timeout.
133                                  * This is a period in which anyone we missed
134                                  * can send its re-login frame to correct us.
135                                  */
136
137                                 nm_set_timer_normal(nm);
138                         } else {
139                                 /* We just received a random ON message. */
140
141                                 /* Nothing to do. */
142                         }
143                         break;
144                 case NM_MAIN_LOGIN:
145                         /* Note: sender != nm->my_id */
146
147                         /* We're not alone anymore, so let's change state. */
148                         nm->nodes[nm->my_id].state = NM_MAIN_ON;
149
150                         /* We don't reset the timeout when somebody logs in.
151                          * Instead, we'll simply include them in the next
152                          * round.
153                          */
154
155                         /* Nothing else to do. */
156                         break;
157                 case NM_MAIN_LIMPHOME:
158                         break;
159         }
160
161         nm_dump_all(nm);
162 }
163
164
165
166
167
168
169 static void nm_buildframe(struct NM_Main *nm, struct can_frame *frame)
170 {
171         frame->can_id = nm->can_base + nm->my_id;
172         frame->can_dlc = 2;
173         frame->data[0] = nm->nodes[nm->my_id].next;
174         frame->data[1] = nm->nodes[nm->my_id].state;
175 }
176
177
178
179
180 static void nm_timeout_callback(struct NM_Main *nm, struct can_frame *frame)
181 {
182         switch(nm->timer_reason) {
183                 case NM_TIMER_NOW:
184                 case NM_TIMER_NORMAL:
185                         /* We're due to send our own ring message */
186                         switch(nm->nodes[nm->my_id].state & NM_MAIN_MASK) {
187                                 case NM_MAIN_ON:
188                                         break;
189                                 case NM_MAIN_LOGIN:
190                                         /* We're going to be ready, let's
191                                          * change state (RCD 310 behavior)
192                                          */
193                                         nm->nodes[nm->my_id].state = NM_MAIN_ON;
194                                         break;
195                                 default:
196                                         printf("BUG: TIMER_NORMAL expired in unknown NM_MAIN state\n");
197                                         break;
198                         }
199                         nm_set_timer_awol(nm);
200                         nm_buildframe(nm, frame);
201                         break;
202                 case NM_TIMER_AWOL:
203                         /* The network is silent because a node disappeared
204                          * or something bad happened.
205                          * Reset everything and start over.
206                          */
207                         nm_reset(nm);
208                         break;
209                 case NM_TIMER_LIMPHOME:
210                         /* TODO */
211                         break;
212         }
213
214         nm_buildframe(nm, frame);
215 }
216
217
218
219
220 static int net_init(char *ifname)
221 {
222         int s;
223         int recv_own_msgs;
224         struct sockaddr_can addr;
225         struct ifreq ifr;
226         struct can_filter fi;
227
228         s = socket(PF_CAN, SOCK_RAW, CAN_RAW);
229         if (s < 0) {
230                 perror("socket");
231                 exit(1);
232         }
233
234         /* Convert interface name to index */
235         memset(&ifr.ifr_name, 0, sizeof(ifr.ifr_name));
236         strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
237         if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
238                 perror("SIOCGIFINDEX");
239                 exit(1);
240         }
241
242         /* Open the CAN interface */
243         memset(&addr, 0, sizeof(addr));
244         addr.can_family = AF_CAN;
245         addr.can_ifindex = ifr.ifr_ifindex;
246         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
247                 perror("bind");
248                 return 0;
249         }
250
251         recv_own_msgs = 1; /* 0 = disabled (default), 1 = enabled */
252         setsockopt(s, SOL_CAN_RAW, CAN_RAW_RECV_OWN_MSGS,
253                         &recv_own_msgs, sizeof(recv_own_msgs));
254
255         /* Handle only 32 NM IDs at CAN base ID 0x420 */
256         fi.can_id   = 0x420;
257         fi.can_mask = 0x7E0;
258
259         setsockopt(s, SOL_CAN_RAW, CAN_RAW_FILTER, &fi, sizeof(struct can_filter));
260
261         return s;
262 }
263
264
265 int main(int argc, char **argv)
266 {
267         struct NM_Main *nm;
268         fd_set rdfs;
269         int s;
270         NM_ID my_id;
271
272         if (argc != 3) {
273                 printf("syntax: %s IFNAME MY_ID\n", argv[0]);
274                 return 1;
275         }
276
277         my_id = strtoul(argv[2], NULL, 0);
278
279         nm = nm_alloc(5, my_id, 0x420);
280         if (!nm) {
281                 printf("Out of memory allocating NM struct.\n");
282                 return 1;
283         }
284
285         s = net_init(argv[1]);
286
287         /* Stir up the hornet's nest */
288         if (1) {
289                 struct can_frame frame;
290
291                 nm_buildframe(nm, &frame);
292                 can_tx(s, &frame);
293         }
294
295         while (1) {
296                 int retval;
297
298                 FD_ZERO(&rdfs);
299                 FD_SET(s, &rdfs);
300
301                 retval = select(s+1, &rdfs, NULL, NULL, &nm->tv);
302                 /* We currently rely on Linux timeout behavior here,
303                  * i.e. the timeout now reflects the remaining time */
304                 if (retval < 0) {
305                         perror("select");
306                         return 1;
307                 } else if (!retval) {
308                         /* Timeout, we NEED to check this first */
309                         struct can_frame frame;
310
311                         nm_timeout_callback(nm, &frame);
312                         can_tx(s, &frame);
313                 } else if (FD_ISSET(s, &rdfs)) {
314                         struct can_frame frame;
315                         ssize_t ret;
316
317                         ret = read(s, &frame, sizeof(frame));
318                         if (ret < 0) {
319                                 perror("recvfrom CAN socket");
320                                 return 1;
321                         }
322
323                         nm_handle_can_frame(nm, &frame);
324                         continue;
325                 }
326         }
327
328         nm_free(nm);
329         close(s);
330
331         return 0;
332 }