]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - test/canecho.c
Remove remnants of the projects VW history (Email addresses, Makefile targets).
[socketcan-devel.git] / test / canecho.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * canecho.c
7  *
8  * Copyright (c) 2002-2005 Volkswagen Group Electronic Research
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions, the following disclaimer and
16  *    the referenced file 'COPYING'.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. Neither the name of Volkswagen nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * Alternatively, provided that this notice is retained in full, this
25  * software may be distributed under the terms of the GNU General
26  * Public License ("GPL") version 2 as distributed in the 'COPYING'
27  * file from the main directory of the linux kernel source.
28  *
29  * The provided data structures and external interfaces from this code
30  * are not restricted to be used by modules with a GPL compatible license.
31  *
32  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
35  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
37  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
38  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
42  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
43  * DAMAGE.
44  *
45  * Send feedback to <socketcan-users@lists.berlios.de>
46  *
47  */
48
49 #include <stdio.h>
50 #include <stdlib.h>
51 #include <unistd.h>
52 #include <string.h>
53 #include <signal.h>
54 #include <libgen.h>
55
56 #include <sys/types.h>
57 #include <sys/socket.h>
58 #include <sys/ioctl.h>
59 #include <sys/uio.h>
60
61 #include "af_can.h"
62
63 extern int optind, opterr, optopt;
64
65 static int      s = -1;
66 static int      running = 1;
67
68 void print_usage(char *prg)
69 {
70         fprintf(stderr, "Usage: %s [can-interface]\n", prg);
71 }
72
73 void sigterm(int signo)
74 {
75         printf("got signal %d\n", signo);
76         running = 0;
77 }
78
79 int main(int argc, char **argv)
80 {
81         int family = PF_CAN, type = SOCK_RAW, proto = CAN_RAW;
82         int opt;
83         struct sockaddr_can addr;
84         struct ifreq ifr;
85         struct can_frame frame;
86         int nbytes, i;
87         int verbose = 0;
88
89         signal(SIGTERM, sigterm);
90         signal(SIGHUP, sigterm);
91
92         while ((opt = getopt(argc, argv, "f:t:p:v")) != -1) {
93                 switch (opt) {
94                         case 'f':
95                                 family = atoi(optarg);
96                                 break;
97
98                         case 't':
99                                 type = atoi(optarg);
100                                 break;
101
102                         case 'p':
103                                 proto = atoi(optarg);
104                                 break;
105
106                         case 'v':
107                                 verbose = 1;
108                                 break;
109
110                         case '?':
111                                 break;
112
113                         default:
114                                 fprintf(stderr, "Unknown option %c\n", opt);
115                                 break;
116                 }
117         }
118
119         if (optind == argc) {
120                 print_usage(basename(argv[0]));
121                 exit(0);
122         }
123         
124         printf("interface = %s, family = %d, type = %d, proto = %d\n",
125                         argv[optind], family, type, proto);
126         if ((s = socket(family, type, proto)) < 0) {
127                 perror("socket");
128                 return 1;
129         }
130
131         addr.can_family = family;
132         strcpy(ifr.ifr_name, argv[optind]);
133         ioctl(s, SIOCGIFINDEX, &ifr);
134         addr.can_ifindex = ifr.ifr_ifindex;
135
136         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
137                 perror("bind");
138                 return 1;
139         }
140
141         while (running) {
142                 if ((nbytes = read(s, &frame, sizeof(frame))) < 0) {
143                         perror("read");
144                         return 1;
145                 }
146                 if (verbose) {
147                         printf("%03X: ", frame.can_id & CAN_EFF_MASK);
148                         if (frame.can_id & CAN_RTR_FLAG) {
149                                 printf("remote request");
150                         } else {
151                                 printf("[%d]", frame.can_dlc);
152                                 for (i = 0; i < frame.can_dlc; i++) {
153                                         printf(" %02X", frame.data[i]);
154                                 }
155                         }
156                         printf("\n");
157                 }
158                 frame.can_id++;
159                 write(s, &frame, sizeof(frame));
160         }
161
162         return 0;
163 }