guowenxue
2024-06-02 eaa90c75a6b4981dbbb15e3ebf851c056bf015c9
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
/*********************************************************************************
 *      Copyright:  (C) 2024 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  can_test.c
 *    Description:  This file is socket CAN loop test program
 *
 *        Version:  1.0.0(05/26/2024)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "05/26/2024 05:42:49 PM"
 *
 ********************************************************************************/
 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/raw.h>
#include <getopt.h>
 
// 打印使用帮助信息
void print_usage(const char *progname)
{
    printf("Usage: %s -i <can_interface> -m <mode>\n", progname);
    printf("Options:\n");
    printf("  -i, --interface    CAN interface (e.g., can0)\n");
    printf("  -m, --mode         Mode: send or receive\n");
    printf("  -h, --help         Display this help message\n");
}
 
void send_can_message(const char *ifname)
{
    int                     fd;
    struct sockaddr_can     addr;
    struct ifreq            ifr;
    struct can_frame        frame;
 
    // 创建socket
    fd = socket(PF_CAN, SOCK_RAW, CAN_RAW);
    if (fd < 0)
    {
        perror("socket");
        exit(1);
    }
 
    // 指定CAN接口
    strcpy(ifr.ifr_name, ifname);
    ioctl(fd, SIOCGIFINDEX, &ifr);
    addr.can_family = AF_CAN;
    addr.can_ifindex = ifr.ifr_ifindex;
 
    // 绑定socket到CAN接口
    if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0)
    {
        perror("bind");
        exit(1);
    }
 
    // 构造CAN帧
    frame.can_id = 0x123; // 设置CAN ID
    frame.can_dlc = 2;    // 数据长度
    frame.data[0] = 0x11; // 数据
    frame.data[1] = 0x22; // 数据
 
    // 发送CAN帧
    if (write(fd, &frame, sizeof(struct can_frame)) != sizeof(struct can_frame))
    {
        perror("write");
        exit(1);
    }
 
    // 关闭socket
    close(fd);
}
 
void receive_can_message(const char *ifname)
{
    int                     fd;
    struct sockaddr_can     addr;
    struct ifreq            ifr;
    struct can_frame        frame;
 
    // 创建socket
    fd = socket(PF_CAN, SOCK_RAW, CAN_RAW);
    if (fd < 0) {
        perror("socket");
        exit(1);
    }
 
    // 指定CAN接口
    strcpy(ifr.ifr_name, ifname);
    ioctl(fd, SIOCGIFINDEX, &ifr);
    addr.can_family = AF_CAN;
    addr.can_ifindex = ifr.ifr_ifindex;
 
    // 绑定socket到CAN接口
    if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0)
    {
        perror("bind");
        exit(1);
    }
 
    // 接收CAN帧
    while (1)
    {
        int nbytes = read(fd, &frame, sizeof(struct can_frame));
        if (nbytes < 0)
        {
            perror("read");
            exit(1);
        }
 
        if (nbytes < sizeof(struct can_frame))
        {
            fprintf(stderr, "read: incomplete CAN frame\n");
            exit(1);
        }
 
        // 打印接收到的CAN帧
        printf("Received CAN frame: ID=0x%X DLC=%d data=", frame.can_id, frame.can_dlc);
        for (int i = 0; i < frame.can_dlc; i++)
            printf("%02X ", frame.data[i]);
 
        printf("\n");
    }
 
    // 关闭socket
    close(fd);
}
 
int main(int argc, char **argv)
{
    int              opt, index = 0;
    const char      *ifname = NULL;
    const char      *mode = NULL;
 
    // 定义长选项
    static struct option long_options[] =
    {
        {"interface", required_argument, 0, 'i'},
        {"mode",      required_argument, 0, 'm'},
        {"help",      no_argument,       0, 'h'},
        {0, 0, 0, 0}
    };
 
    while ((opt = getopt_long(argc, argv, "i:m:h", long_options, &index)) != -1)
    {
        switch (opt) {
            case 'i':
                ifname = optarg;
                break;
            case 'm':
                mode = optarg;
                break;
            case 'h':
                print_usage(argv[0]);
                return 0;
            default:
                print_usage(argv[0]);
                return 1;
        }
    }
 
    if (ifname == NULL || mode == NULL)
    {
        print_usage(argv[0]);
        return 1;
    }
 
    if (strcmp(mode, "send") == 0)
    {
        send_can_message(ifname);
    }
    else if (strcmp(mode, "receive") == 0)
    {
        receive_can_message(ifname);
    }
    else
    {
        fprintf(stderr, "Invalid mode: %s\n", mode);
        print_usage(argv[0]);
        return 1;
    }
 
    return 0;
}