123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- /*
- * isotpsniffer.c - dump ISO15765-2 datagrams using PF_CAN isotp protocol
- *
- * Copyright (c) 2008 Volkswagen Group Electronic Research
- * All rights reserved.
- *
- * 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.
- * 3. Neither the name of Volkswagen nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * Alternatively, provided that this notice is retained in full, this
- * software may be distributed under the terms of the GNU General
- * Public License ("GPL") version 2, in which case the provisions of the
- * GPL apply INSTEAD OF those given above.
- *
- * The provided data structures and external interfaces from this code
- * are not restricted to be used by modules with a GPL compatible license.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
- * OWNER 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.
- *
- * Send feedback to <linux-can@vger.kernel.org>
- *
- */
- #include <stdio.h>
- #include <unistd.h>
- #include <stdlib.h>
- #include <string.h>
- #include <libgen.h>
- #include <time.h>
- #include <net/if.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <sys/ioctl.h>
- #include <linux/can.h>
- #include <linux/can/isotp.h>
- #include "terminal.h"
- #define NO_CAN_ID 0xFFFFFFFFU
- #define FORMAT_HEX 1
- #define FORMAT_ASCII 2
- #define FORMAT_DEFAULT (FORMAT_ASCII | FORMAT_HEX)
- void print_usage(char *prg)
- {
- fprintf(stderr, "\nUsage: %s [options] <CAN interface>\n", prg);
- fprintf(stderr, "Options: -s <can_id> (source can_id. Use 8 digits for extended IDs)\n");
- fprintf(stderr, " -d <can_id> (destination can_id. Use 8 digits for extended IDs)\n");
- fprintf(stderr, " -x <addr> (extended addressing mode)\n");
- fprintf(stderr, " -X <addr> (extended addressing mode - rx addr)\n");
- fprintf(stderr, " -c (color mode)\n");
- fprintf(stderr, " -t <type> (timestamp: (a)bsolute/(d)elta/(z)ero/(A)bsolute w date)\n");
- fprintf(stderr, " -f <format> (1 = HEX, 2 = ASCII, 3 = HEX & ASCII - default: %d)\n", FORMAT_DEFAULT);
- fprintf(stderr, " -h <len> (head: print only first <len> bytes)\n");
- fprintf(stderr, "\nCAN IDs and addresses are given and expected in hexadecimal values.\n");
- fprintf(stderr, "\n");
- }
- void printbuf(unsigned char *buffer, int nbytes, int color, int timestamp,
- int format, struct timeval *tv, struct timeval *last_tv,
- canid_t src, int socket, char *candevice, int head)
- {
- int i;
- if (color == 1)
- printf("%s", FGRED);
- if (color == 2)
- printf("%s", FGBLUE);
- if (timestamp) {
- ioctl(socket, SIOCGSTAMP, tv);
- switch (timestamp) {
- case 'a': /* absolute with timestamp */
- printf("(%ld.%06ld) ", tv->tv_sec, tv->tv_usec);
- break;
- case 'A': /* absolute with date */
- {
- struct tm tm;
- char timestring[25];
- tm = *localtime(&tv->tv_sec);
- strftime(timestring, 24, "%Y-%m-%d %H:%M:%S", &tm);
- printf("(%s.%06ld) ", timestring, tv->tv_usec);
- }
- break;
- case 'd': /* delta */
- case 'z': /* starting with zero */
- {
- struct timeval diff;
- if (last_tv->tv_sec == 0) /* first init */
- *last_tv = *tv;
- diff.tv_sec = tv->tv_sec - last_tv->tv_sec;
- diff.tv_usec = tv->tv_usec - last_tv->tv_usec;
- if (diff.tv_usec < 0)
- diff.tv_sec--, diff.tv_usec += 1000000;
- if (diff.tv_sec < 0)
- diff.tv_sec = diff.tv_usec = 0;
- printf("(%ld.%06ld) ", diff.tv_sec, diff.tv_usec);
- if (timestamp == 'd')
- *last_tv = *tv; /* update for delta calculation */
- }
- break;
- default: /* no timestamp output */
- break;
- }
- }
- /* the source socket gets pdu data from the detination id */
- printf(" %s %03X [%d] ", candevice, src & CAN_EFF_MASK, nbytes);
- if (format & FORMAT_HEX) {
- for (i=0; i<nbytes; i++) {
- printf("%02X ", buffer[i]);
- if (head && i+1 >= head) {
- printf("... ");
- break;
- }
- }
- if (format & FORMAT_ASCII)
- printf(" - ");
- }
- if (format & FORMAT_ASCII) {
- printf("'");
- for (i=0; i<nbytes; i++) {
- if ((buffer[i] > 0x1F) && (buffer[i] < 0x7F))
- printf("%c", buffer[i]);
- else
- printf(".");
- if (head && i+1 >= head)
- break;
- }
- printf("'");
- if (head && i+1 >= head)
- printf(" ... ");
- }
- if (color)
- printf("%s", ATTRESET);
- printf("\n");
- fflush(stdout);
- }
- int main(int argc, char **argv)
- {
- fd_set rdfs;
- int s, t;
- struct sockaddr_can addr;
- char if_name[IFNAMSIZ];
- static struct can_isotp_options opts;
- int opt, quit = 0;
- int color = 0;
- int head = 0;
- int timestamp = 0;
- int format = FORMAT_DEFAULT;
- canid_t src = NO_CAN_ID;
- canid_t dst = NO_CAN_ID;
- extern int optind, opterr, optopt;
- static struct timeval tv, last_tv;
- unsigned char buffer[4096];
- int nbytes;
- while ((opt = getopt(argc, argv, "s:d:x:X:h:ct:f:?")) != -1) {
- switch (opt) {
- case 's':
- src = strtoul(optarg, (char **)NULL, 16);
- if (strlen(optarg) > 7)
- src |= CAN_EFF_FLAG;
- break;
- case 'd':
- dst = strtoul(optarg, (char **)NULL, 16);
- if (strlen(optarg) > 7)
- dst |= CAN_EFF_FLAG;
- break;
- case 'x':
- opts.flags |= CAN_ISOTP_EXTEND_ADDR;
- opts.ext_address = strtoul(optarg, (char **)NULL, 16) & 0xFF;
- break;
- case 'X':
- opts.flags |= CAN_ISOTP_RX_EXT_ADDR;
- opts.rx_ext_address = strtoul(optarg, (char **)NULL, 16) & 0xFF;
- break;
- case 'f':
- format = (atoi(optarg) & (FORMAT_ASCII | FORMAT_HEX));
- break;
- case 'h':
- head = atoi(optarg);
- break;
- case 'c':
- color = 1;
- break;
- case 't':
- timestamp = optarg[0];
- if ((timestamp != 'a') && (timestamp != 'A') &&
- (timestamp != 'd') && (timestamp != 'z')) {
- printf("%s: unknown timestamp mode '%c' - ignored\n",
- basename(argv[0]), optarg[0]);
- timestamp = 0;
- }
- break;
- case '?':
- print_usage(basename(argv[0]));
- exit(0);
- break;
- default:
- fprintf(stderr, "Unknown option %c\n", opt);
- print_usage(basename(argv[0]));
- exit(1);
- break;
- }
- }
- if ((argc - optind) != 1 || src == NO_CAN_ID || dst == NO_CAN_ID) {
- print_usage(basename(argv[0]));
- exit(1);
- }
-
- if ((opts.flags & CAN_ISOTP_RX_EXT_ADDR) && (!(opts.flags & CAN_ISOTP_EXTEND_ADDR))) {
- print_usage(basename(argv[0]));
- exit(1);
- }
- if ((s = socket(PF_CAN, SOCK_DGRAM, CAN_ISOTP)) < 0) {
- perror("socket");
- exit(1);
- }
- if ((t = socket(PF_CAN, SOCK_DGRAM, CAN_ISOTP)) < 0) {
- perror("socket");
- exit(1);
- }
- opts.flags |= CAN_ISOTP_LISTEN_MODE;
- strncpy(if_name, argv[optind], IFNAMSIZ - 1);
- if_name[IFNAMSIZ - 1] = '\0';
- addr.can_family = AF_CAN;
- addr.can_ifindex = if_nametoindex(if_name);
- setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_OPTS, &opts, sizeof(opts));
- addr.can_addr.tp.tx_id = src;
- addr.can_addr.tp.rx_id = dst;
- if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
- perror("bind");
- close(s);
- exit(1);
- }
- if (opts.flags & CAN_ISOTP_RX_EXT_ADDR) {
- /* flip extended address info due to separate rx ext addr */
- __u8 tmpext;
- tmpext = opts.ext_address;
- opts.ext_address = opts.rx_ext_address;
- opts.rx_ext_address = tmpext;
- }
- setsockopt(t, SOL_CAN_ISOTP, CAN_ISOTP_OPTS, &opts, sizeof(opts));
- addr.can_addr.tp.tx_id = dst;
- addr.can_addr.tp.rx_id = src;
- if (bind(t, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
- perror("bind");
- close(s);
- exit(1);
- }
- while (!quit) {
- FD_ZERO(&rdfs);
- FD_SET(s, &rdfs);
- FD_SET(t, &rdfs);
- FD_SET(0, &rdfs);
- if ((nbytes = select(t+1, &rdfs, NULL, NULL, NULL)) < 0) {
- perror("select");
- continue;
- }
- if (FD_ISSET(0, &rdfs)) {
- getchar();
- quit = 1;
- printf("quit due to keyboard input.\n");
- }
- if (FD_ISSET(s, &rdfs)) {
- nbytes = read(s, buffer, 4096);
- if (nbytes < 0) {
- perror("read socket s");
- return -1;
- }
- if (nbytes > 4095)
- return -1;
- printbuf(buffer, nbytes, color?2:0, timestamp, format,
- &tv, &last_tv, dst, s, if_name, head);
- }
- if (FD_ISSET(t, &rdfs)) {
- nbytes = read(t, buffer, 4096);
- if (nbytes < 0) {
- perror("read socket t");
- return -1;
- }
- if (nbytes > 4095)
- return -1;
- printbuf(buffer, nbytes, color?1:0, timestamp, format,
- &tv, &last_tv, src, t, if_name, head);
- }
- }
- close(s);
- return 0;
- }
|