forked from jal2/WAG160Nv2
-
Notifications
You must be signed in to change notification settings - Fork 6
/
sercomm-recovery.c
executable file
·718 lines (596 loc) · 17.4 KB
/
sercomm-recovery.c
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
/*
* sercomm utility to detect and flash firmware to a Linksys WAG160Nv2.
*
* Based on information from the the upslug2 tool
* http://www.nslu2-linux.org/wiki/Main/UpSlug2
*
* The firmware file must contain a bootloader section
* with a pid in order to be able to compare the hardware id.
*
* compile this file under Linux: make sercomm
* You must be root to run it.
*
* There is no Windows version of it, please don't ask for a port
* (just do it yourself).
*
* copyright (c) Joerg Albert <jal2 at gmx.de> , 2011
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define _GNU_SOURCE /* to get sighandler_t from signal.h */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <stddef.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <netpacket/packet.h>
#include <net/if.h>
#include <net/ethernet.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <endian.h>
/* fixed ethernet type for all packets */
#define ETH_P_SERCOMM 0x8888
/* offset of "CFE1CFE1" in a firmware file */
#define CFE_MAGIC_OFFSET 0x4e0
/* max. size of a firmware file */
#define MAX_FW_SIZE ((unsigned long int)(528*1024*1024))
#define PID_MAGIC "sErCoMm"
#define PID2_MAGIC "seRcOmM"
#define PID_OFFSET 0x1ac7a
#define PID_MAGIC_LEN 7
struct pid_s {
char magic[PID_MAGIC_LEN]; /* PID*_MAGIC */
char reserved[4];
char hw_id[34]; /* hardware id: */
char annex; /* annex A or B */
unsigned char function; /* 1 bridge, 3 multi-pvc */
char company[2]; /* cisco == 08 */
char reserved2[8];
unsigned char version[2]; /* major == version[0]>>4),
minor == version[0] & 0xf,
subver == version[1] */
char reserved3[4];
char magic2[PID_MAGIC_LEN]; /* PID*_MAGIC */
};
/* minimum pid2 offset from the begin of the firmware file */
#define MIN_PID2_OFFSET 0x200000
/* max. number of bytes in a payload */
#define MAX_PAYLOAD_LEN 0x200
/* max. size of a firmware file */
#define MAX_FW_LEN 0x3e0000
#define err(fmt, __args__...) fprintf(stderr, "#ERR %s: " fmt "\n", __FUNCTION__, ##__args__ )
#define dbg(fmt, __args__...) \
do { \
if (debug) \
printf("#DBG %s: " fmt "\n", __FUNCTION__, ##__args__ ); \
} while (0)
static int debug = 0;
static unsigned char own_mac[ETH_ALEN]; /* own mac address */
static void hexdump(void *addr, int len)
{
unsigned char *c = addr;
while (len > 0) {
printf(" %02x", *c);
c++;
len--;
}
}
static void usage(const char *name)
{
printf("Download a firmware into a Linksys WAG160N v2\n\n");
printf("1) Power off the device\n");
printf("2) Press the reset button\n");
printf("3) Power on the device while holding the reset button pressed\n");
printf("4) Wait until the power LED flashes red/green, you may release the reset button then.\n");
printf(" The device is in download mode now.\n");
printf("5) Call %s [-v] <ethernet device name> [<firmware file>]\n", name);
printf(" if <firmware file> is missing only the devices found are dumped\n");
printf(" e.g.:\n");
printf(" dump all devices connected to eth2: %s eth2\n", name);
printf(" update a device at eth1: %s eth1 firmware\n", name);
printf(" -v to see debugs for each packet sent/received\n");
}
typedef enum {
HardwareInfo = 0,
UpgradeStart = 1,
UpgradeData = 2,
Reboot = 3,
UpgradeVerify = 4,
ReprogramStart = 5,
InvalidType = 0xffff,
} Cmd_e;
typedef enum {
Ok = 0, /* operation completed ok */
ProtocolError = 5, /* operation not expected (UpgradeStart packet dropped) */
SequenceError = 6, /* packet out of sequence (and ignored) */
ProgramError = 7, /* flash programming failed (fatal) */
VerifyError = 9, /* flash verification failed (fatal) */
} RetCode_e;
/* all multibyte values are in little endian */
struct hdr_s {
unsigned char da[ETH_ALEN];
unsigned char sa[ETH_ALEN];
unsigned short eth_type; /* fixed to 0x8888 */
unsigned short cmd; /* see Cmd_e */ /* offset 0xe */
unsigned short seqno;
unsigned short byte_off;
unsigned short chunk_off;
unsigned short length; /* length of following data */
} __attribute__ ((packed)); /* overall length = 0x18 */
/* sizeof of struct hdr_s */
#define HDR_SIZE sizeof(struct hdr_s)
void print_pkt(const char *str1, const char *str2, unsigned char *buf,
unsigned int len)
{
struct hdr_s hdr;
if (len < sizeof(hdr))
return;
#define MAC_ADDR(a) (a)[0],(a)[1],(a)[2],(a)[3],(a)[4],(a)[5]
memcpy(&hdr, buf, sizeof(hdr));
printf("#DBG %s %s da=%02x:%02x:%02x:%02x:%02x:%02x "
"sa=%02x:%02x:%02x:%02x:%02x:%02x eth_type=%04x cmd=%04x seqno=%04x\n",
str1, str2, MAC_ADDR(hdr.da), MAC_ADDR(hdr.sa), le16toh(hdr.eth_type),
le16toh(hdr.cmd), le16toh(hdr.seqno));
printf("#DBG byte_off=%04x chunk_off=%04x length=%04x\n",
le16toh(hdr.byte_off), le16toh(hdr.chunk_off), le16toh(hdr.length));
#undef MAC_ADDR
if (len > sizeof(hdr)) {
printf("#DBG payload 0x%lx:", len - sizeof(hdr));
hexdump(buf+sizeof(hdr), MIN(len-sizeof(hdr), 16));
printf("\n");
}
}
static int SendHWInfoReq(int s, const unsigned char *mac)
{
#define HW_LEN 56
struct hdr_s hdr;
memset(&hdr, 0, sizeof(hdr));
memcpy(hdr.da, mac, ETH_ALEN);
memcpy(hdr.sa, own_mac, ETH_ALEN);
hdr.eth_type = htons(ETH_P_SERCOMM);
hdr.cmd = htole16(HardwareInfo);
hdr.length = htole16(HW_LEN); /* TODO: verify this magic number */
if (debug) {
print_pkt(__FUNCTION__, "", (unsigned char *)&hdr, sizeof(hdr));
}
return send(s, &hdr, sizeof(hdr), 0) < 0;
}
static int SendReboot(int s, const unsigned char *mac)
{
struct hdr_s hdr;
memset(&hdr, 0, sizeof(hdr));
memcpy(hdr.da, mac, ETH_ALEN);
memcpy(hdr.sa, own_mac, ETH_ALEN);
hdr.eth_type = htons(ETH_P_SERCOMM);
hdr.cmd = htole16(Reboot);
if (debug) {
print_pkt(__FUNCTION__, "", (unsigned char *)&hdr, sizeof(hdr));
}
return send(s, &hdr, sizeof(hdr), 0) < 0;
}
static int SendUpgradeStart(int s, const unsigned char *mac,
unsigned short seqno)
{
struct hdr_s hdr;
memset(&hdr, 0, sizeof(hdr));
memcpy(hdr.da, mac, ETH_ALEN);
memcpy(hdr.sa, own_mac, ETH_ALEN);
hdr.eth_type = htons(ETH_P_SERCOMM);
hdr.cmd = htole16(UpgradeStart);
hdr.seqno = htole16(seqno);
if (debug) {
print_pkt(__FUNCTION__, "", (unsigned char *)&hdr, sizeof(hdr));
}
return send(s, &hdr, sizeof(hdr), 0) < 0;
}
static int SendUpgrade(int s, const unsigned char *mac,
unsigned short seqno, unsigned int addr,
void *data, unsigned int dlen, Cmd_e cmd)
{
struct hdr_s hdr;
unsigned char buf[HDR_SIZE+MAX_PAYLOAD_LEN];
unsigned int len;
if (cmd != UpgradeData && cmd != UpgradeVerify)
return -1;
memset(buf, 0, sizeof(buf));
memset(&hdr, 0, sizeof(hdr));
memcpy(hdr.da, mac, ETH_ALEN);
memcpy(hdr.sa, own_mac, ETH_ALEN);
hdr.eth_type = htons(ETH_P_SERCOMM);
hdr.cmd = htole16(cmd);
hdr.seqno = htole16(seqno);
hdr.byte_off = htole16(addr & 0xf);
hdr.chunk_off = htole16(addr >> 4);
len = MIN(MAX_PAYLOAD_LEN, dlen);
hdr.length = htole16(len);
memcpy(buf, &hdr, sizeof(hdr));
memcpy(buf+sizeof(hdr), data, len);
if (debug) {
print_pkt(__FUNCTION__, cmd == UpgradeData ? "Write" : "Verify", buf,
sizeof(hdr)+len);
}
return send(s, buf, sizeof(hdr)+len, 0) < 0;
}
/* max. number of boards we are able to detect */
#define MAX_NR_BOARDS 16
static struct hw_info_s {
unsigned char mac[ETH_ALEN];
struct pid_s pid;
} hwinfo[MAX_NR_BOARDS];
/* dump the content of a hwinfo */
void DumpHWInfo(struct hw_info_s *s, int nr)
{
printf("%u: %02x:%02x:%02x:%02x:%02x:%02x %s func %u company %c%c "
"version %u.%u-%u\n",
nr, s->mac[0], s->mac[1], s->mac[2], s->mac[3], s->mac[4],
s->mac[5], s->pid.hw_id, s->pid.function,
s->pid.company[0], s->pid.company[1],
s->pid.version[0]>>4, s->pid.version[0]&0xf, s->pid.version[1]);
}
static int alarm_raised;
/* my handler for SIGALRM */
static void alarm_handler(int dummy)
{
alarm_raised=1;
}
/* wait for a response from the given mac address and with a given seqno.
time is in seconds.
return >= 0 if we got one (the return value is the error code from the
response or -1 for timeout or read error. */
int ReadResp(int s, unsigned char *mac, unsigned int seqno, unsigned int time)
{
fd_set r,e;
struct sockaddr_ll from;
socklen_t fl;
unsigned char ibuf[1536];
sighandler_t old_handler;
int rc=0;
old_handler=signal(SIGALRM, alarm_handler);
alarm_raised=0;
alarm(time);
while (1) {
/* create the fd sets */
FD_ZERO(&r);
FD_SET(s, &r);
e=r;
rc=select(s+1, &r, NULL, &e, NULL);
if (rc < 0) {
if (errno == EINTR) {
if (!alarm_raised) {
continue;
} else {
err("timeout during select");
goto end;
}
}
err("select failed (%m)");
goto end;
}
if (FD_ISSET(s,&e)) {
err("error cond. on socket");
rc=-1;
goto end;
}
if (FD_ISSET(s,&r)) {
fl = sizeof(from);
rc = recvfrom(s,ibuf,sizeof(ibuf), 0,
(struct sockaddr *)&from, &fl);
if (rc < 0) {
err("recvfrom failed (%m)");
goto end;
}
/* should be an incoming packet */
if (from.sll_pkttype != PACKET_OUTGOING) {
struct hdr_s hdr;
memcpy(&hdr, ibuf, sizeof(hdr));
if (hdr.eth_type != htons(ETH_P_SERCOMM) ||
memcmp(hdr.sa, mac, ETH_ALEN))
/* either wrong ethtype or
wrong source mac address */
continue;
if (debug) {
/* dump received data */
print_pkt(__FUNCTION__, "", ibuf, rc);
}
if (le16toh(hdr.seqno) == seqno % 0x10000) {
rc = ibuf[sizeof(struct hdr_s)] |
(ibuf[sizeof(struct hdr_s)+1]<<8);
goto end;
}
err("%s: expected seq no %x, got %x",
__FUNCTION__, seqno, le16toh(hdr.seqno));
continue;
} /* if (from.sll_pkttype != PACKET_OUTGOING) */
}
} /* while (1) */
end:
alarm(0); /* delete any alarm still running */
signal(SIGALRM, old_handler); /* restore old handler */
return rc;
} /* ReadResp */
/* read all hw info responses in a certain time on socket s.
return the number of responses or < 0 for error */
int ReadHWInfoResp(int s)
{
int nr = 0;
sighandler_t old_handler;
unsigned int time=2;
int rc = -1;
old_handler=signal(SIGALRM, alarm_handler);
alarm_raised=0;
alarm(time);
/* read responses with timeout of 2 seconds */
while (1) {
fd_set r,e;
struct sockaddr_ll from;
socklen_t fl;
unsigned char ibuf[1536];
/* create the fd sets */
FD_ZERO(&r);
FD_SET(s, &r);
e=r;
rc=select(s+1, &r, NULL, &e, NULL);
if (rc < 0) {
if (errno == EINTR) {
if (alarm_raised)
break;
else
continue;
}
err("select failed (%m)");
goto end;
}
if (FD_ISSET(s,&e)) {
err("error cond. on socket");
rc = -1; goto end;
}
if (FD_ISSET(s,&r)) {
fl = sizeof(from);
rc = recvfrom(s,ibuf,sizeof(ibuf), 0, (struct sockaddr *)&from, &fl);
if (rc < 0) {
err("recvfrom failed (%m)");
goto end;
}
if (from.sll_pkttype != PACKET_OUTGOING) {
/* should be an incoming packet */
if (ibuf[2*ETH_ALEN] == 0x88 && ibuf[2*ETH_ALEN+1] == 0x88) {
memcpy(hwinfo[nr].mac, ibuf+ETH_ALEN, ETH_ALEN);
memcpy(hwinfo[nr].pid.reserved,
ibuf+sizeof(struct hdr_s),
sizeof(hwinfo[nr].pid) -
offsetof(struct pid_s, reserved));
nr++;
if (debug) {
print_pkt(__FUNCTION__, "", ibuf, rc);
}
}
}
}
} /* while (1); */
/* we arrive here if the alarm just let us break from the while (1) loop */
rc=nr;
end:
alarm(0); /* delete any alarm still running */
signal(SIGALRM, old_handler);
return rc;
}
int UpdateFW(int s, const char *fw_name, struct hw_info_s *hw)
{
int fd = -1;
unsigned char *mm;
unsigned char *fw = NULL;
unsigned char *cptr;
unsigned char *sec_pid;
unsigned int off;
unsigned int seqno;
struct stat st;
int rc = -1;
struct pid_s pid;
#define SHOW_PROGRESS(c) do { putchar(c); fflush(stdout); } while (0)
/* open and map firmware file */
if ((fd=open(fw_name, O_RDONLY)) < 0) {
err("failed to open firmware file %s (%m)", fw_name);
goto end;
}
if (fstat(fd, &st) < 0) {
err("fstat failed on %s (%m)", fw_name);
goto end;
}
if (!S_ISREG(st.st_mode)) {
err("%s is no regular file", fw_name);
goto end;
}
if (st.st_size > MAX_FW_SIZE) {
err("%s is too large (0x%lx > 0x%lx)", fw_name,
(unsigned long int)st.st_size, MAX_FW_SIZE);
goto end;
}
if (st.st_size < MIN_PID2_OFFSET) {
err("firmware file too small (must be >= 0x%x)", MIN_PID2_OFFSET);
goto end;
}
if ((mm=(unsigned char *)mmap(NULL, MAX_FW_SIZE, PROT_READ,
MAP_PRIVATE, fd, 0)) == MAP_FAILED) {
err("failed to mmap firmware file (%m)");
goto end;
}
if (!(fw=malloc(st.st_size))) {
err("failed to malloc %lx byte", st.st_size);
munmap(mm, MAX_FW_SIZE);
goto end;
}
memcpy(fw,mm,st.st_size);
munmap(mm, MAX_FW_SIZE);
/* start updating the firmware */
seqno=0;
if (SendUpgradeStart(s, hw->mac, seqno)) {
err("failed to send UPGRADE START");
goto end;
}
/* wait for response */
if ((rc=ReadResp(s, hw->mac, seqno, 2000))) {
err("ReadResp after upgrade start failed with %d", rc);
goto end;
}
SHOW_PROGRESS('S');
seqno++;
off=0;
while (off < st.st_size) {
unsigned int nr = MIN(MAX_PAYLOAD_LEN,st.st_size-off);
/* send update data */
if ((rc=SendUpgrade(s, hw->mac, seqno, off, fw+off, nr,
UpgradeData)) < 0)
goto end;
/* wait for response */
if ((rc=ReadResp(s, hw->mac, seqno, 2000))) {
err("ReadResp after upgrade start failed with %d", rc);
goto end;
}
SHOW_PROGRESS('F');
off += nr;
seqno++;
} /* while (off < st.st_size) */
/* verify the update */
off=0;
while (off < st.st_size) {
unsigned int nr = MIN(MAX_PAYLOAD_LEN,st.st_size-off);
/* send update data */
if ((rc=SendUpgrade(s, hw->mac, seqno, off, fw+off, nr, UpgradeVerify)) < 0)
goto end;
/* wait for response */
if ((rc=ReadResp(s, hw->mac, seqno, 2000))) {
err("ReadResp after upgrade start failed with %d", rc);
goto end;
}
SHOW_PROGRESS('V');
off += nr;
seqno++;
} /* while (off < st.st_size) */
/* send a Reset to the target */
if (SendReboot(s, hw->mac)) {
err("failed to reboot (%m)");
rc=-1;
}
end:
if (fw)
free(fw);
if (fd >= 0)
close(fd);
return rc;
}
static const unsigned char bc_mac[6] = {0xff,0xff,0xff,0xff,0xff,0xff};
int main(int argc, char **argv)
{
char *devname;
int s;
int idx;
struct ifreq ifr;
struct sockaddr_ll sa;
int nr;
int i;
unsigned int board_nr;
int devname_idx=1;
if (argc > 1 && argv[1][0] == '-') {
if (argv[1][1] == 'v') {
debug=1;
devname_idx++;
} else {
if (argv[1][1] == 'h') {
usage(argv[0]);
return 0;
}
}
}
if (argc < devname_idx+1) {
err("ethernet device missing");
usage(argv[0]);
return 1;
}
devname = argv[devname_idx];
/* we set the protocol the one used for sercomm to
filter the other packets out */
s=socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (s < 0) {
err("failed to create raw socket (%m)");
return 2;
}
/* get the interface index*/
memset(&ifr, 0, sizeof(ifr));
strncpy(ifr.ifr_name, devname, IFNAMSIZ - 1);
ifr.ifr_name[IFNAMSIZ-1] = '\0';
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
err("failed to find network interface %s", devname);
return 3;
}
idx = ifr.ifr_ifindex;
/* check whether the interface is up or down */
if (ioctl(s, SIOCGIFFLAGS, &ifr) < 0) {
err("failed to check up/down (%m)");
return 4;
}
if ((ifr.ifr_flags & IFF_UP) == 0) {
err("network interface %s is down", devname);
return 4;
}
/* obtain own MAC address */
if (ioctl(s, SIOCGIFHWADDR, &ifr) < 0) {
err("failed to get the own MAC address");
return 5;
}
memcpy(own_mac, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
memset(&sa, 0, sizeof(sa));
sa.sll_family = AF_PACKET;
sa.sll_ifindex = idx;
sa.sll_protocol = htons(ETH_P_ALL);
/* try to bind the raw socket to the interface */
if (bind(s,(struct sockaddr*)&sa,(socklen_t)sizeof(sa))) {
err("failed to bind the raw socket to %s (%m)", devname);
return 6;
}
/* send a hw info request to the broadcast mac */
if (SendHWInfoReq(s,bc_mac) < 0) {
err("failed to send HW Info Req (%m)");
return 7;
}
nr = ReadHWInfoResp(s);
if (nr < 0)
return 8;
if (!nr) {
printf("no boards found\n");
return 0;
}
for(i=0; i < nr; i++) {
DumpHWInfo(&hwinfo[i],i);
}
if (argc > devname_idx+1) {
/* a file to flash was given */
if (nr > 1) {
do {
printf("choose a board number(0-%d): ", nr-1);
scanf("%u\n", &board_nr);
} while (board_nr >= nr);
} else
board_nr=0;
return UpdateFW(s, argv[devname_idx+1], &hwinfo[board_nr]);
} else
return 0;
}