/* * isotptun.c - IP over CAN ISO-TP (ISO15765-2) tunnel / proof-of-concept * * This program creates a Linux tunnel netdevice 'ctunX' and transfers the * ethernet frames inside ISO15765-2 (unreliable) datagrams on CAN. * * Use e.g. "ifconfig ctun0 123.123.123.1 pointopoint 123.123.123.2 up" * to create a point-to-point IP connection on CAN. * * 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 * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define NO_CAN_ID 0xFFFFFFFFU #define DEFAULT_NAME "ctun%d" /* stay on 4095 bytes for the max. PDU length which is still much more than the standard ethernet MTU */ #define MAX_PDU_LENGTH 4095 #define BUF_LEN (MAX_PDU_LENGTH + 1) static volatile int running = 1; void print_usage(char *prg) { fprintf(stderr, "\nUsage: %s [options] \n\n", prg); fprintf(stderr, "This program creates a Linux tunnel netdevice 'ctunX' and transfers the\n"); fprintf(stderr, "ethernet frames inside ISO15765-2 (unreliable) datagrams on CAN.\n\n"); fprintf(stderr, "Options: -s (source can_id. Use 8 digits for extended IDs)\n"); fprintf(stderr, " -d (destination can_id. Use 8 digits for extended IDs)\n"); fprintf(stderr, " -n (name of created IP netdevice. Default: '%s')\n", DEFAULT_NAME); fprintf(stderr, " -x [:] (extended addressing / opt. separate rxaddr)\n"); fprintf(stderr, " -L :: (link layer options for CAN FD)\n"); fprintf(stderr, " -p [tx]:[rx] (set and enable tx/rx padding bytes)\n"); fprintf(stderr, " -P (check rx padding for (l)ength (c)ontent (a)ll)\n"); fprintf(stderr, " -t