| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- /* Sniffer example.
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include "sdkconfig.h"
- #include "linenoise/linenoise.h"
- #include "argtable3/argtable3.h"
- #include "esp_console.h"
- #include "esp_event.h"
- #include "esp_vfs_fat.h"
- #include "esp_wifi.h"
- #include "esp_err.h"
- #include "esp_log.h"
- #if CONFIG_SNIFFER_PCAP_DESTINATION_SD
- #include "driver/sdmmc_host.h"
- #include "driver/sdspi_host.h"
- #include "driver/spi_common.h"
- #endif
- #include "nvs_flash.h"
- #include "sdmmc_cmd.h"
- #include "cmd_sniffer.h"
- #include "cmd_pcap.h"
- #if CONFIG_ETH_USE_SPI_ETHERNET
- #include "driver/spi_master.h"
- #endif // CONFIG_ETH_USE_SPI_ETHERNET
- #if CONFIG_SNIFFER_STORE_HISTORY
- #define HISTORY_MOUNT_POINT "/data"
- #define HISTORY_FILE_PATH HISTORY_MOUNT_POINT "/history.txt"
- #endif
- #if CONFIG_SNIFFER_SD_SPI_MODE
- #if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
- #define PIN_NUM_MISO 2
- #define PIN_NUM_MOSI 15
- #define PIN_NUM_CLK 14
- #define PIN_NUM_CS 13
- #elif CONFIG_IDF_TARGET_ESP32C3
- #define PIN_NUM_MISO 18
- #define PIN_NUM_MOSI 9
- #define PIN_NUM_CLK 8
- #define PIN_NUM_CS 19
- #endif //CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
- #endif // CONFIG_SNIFFER_SD_SPI_MODE
- static const char *TAG = "example";
- #if CONFIG_SNIFFER_STORE_HISTORY
- /* Initialize filesystem for command history store */
- static void initialize_filesystem(void)
- {
- static wl_handle_t wl_handle;
- const esp_vfs_fat_mount_config_t mount_config = {
- .max_files = 4,
- .format_if_mount_failed = true
- };
- esp_err_t err = esp_vfs_fat_spiflash_mount_rw_wl(HISTORY_MOUNT_POINT, "storage", &mount_config, &wl_handle);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err));
- return;
- }
- }
- #endif
- static void initialize_nvs(void)
- {
- esp_err_t err = nvs_flash_init();
- if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
- ESP_ERROR_CHECK(nvs_flash_erase());
- err = nvs_flash_init();
- }
- ESP_ERROR_CHECK(err);
- }
- /* Initialize wifi with tcp/ip adapter */
- static void initialize_wifi(void)
- {
- wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
- ESP_ERROR_CHECK(esp_wifi_init(&cfg));
- ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM));
- ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_NULL));
- }
- #ifndef CONFIG_SNIFFER_NO_ETHERNET
- /** Event handler for Ethernet events */
- static void eth_event_handler(void *arg, esp_event_base_t event_base,
- int32_t event_id, void *event_data)
- {
- uint8_t mac_addr[6] = {0};
- /* we can get the ethernet driver handle from event data */
- esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data;
- switch (event_id) {
- case ETHERNET_EVENT_CONNECTED:
- esp_eth_ioctl(eth_handle, ETH_CMD_G_MAC_ADDR, mac_addr);
- printf("\n");
- ESP_LOGI(TAG, "Ethernet Link Up");
- ESP_LOGI(TAG, "Ethernet HW Addr %02x:%02x:%02x:%02x:%02x:%02x\n",
- mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4], mac_addr[5]);
- break;
- case ETHERNET_EVENT_DISCONNECTED:
- printf("\n");
- ESP_LOGI(TAG, "Ethernet Link Down");
- break;
- case ETHERNET_EVENT_START:
- printf("\n");
- ESP_LOGI(TAG, "Ethernet Started");
- break;
- case ETHERNET_EVENT_STOP:
- printf("\n");
- ESP_LOGI(TAG, "Ethernet Stopped");
- break;
- default:
- break;
- }
- }
- static void initialize_eth(void)
- {
- // Register user defined event handers
- ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
- eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
- eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
- phy_config.phy_addr = CONFIG_SNIFFER_ETH_PHY_ADDR;
- phy_config.reset_gpio_num = CONFIG_SNIFFER_ETH_PHY_RST_GPIO;
- #if CONFIG_SNIFFER_USE_INTERNAL_ETHERNET
- eth_esp32_emac_config_t esp32_emac_config = ETH_ESP32_EMAC_DEFAULT_CONFIG();
- esp32_emac_config.smi_mdc_gpio_num = CONFIG_SNIFFER_ETH_MDC_GPIO;
- esp32_emac_config.smi_mdio_gpio_num = CONFIG_SNIFFER_ETH_MDIO_GPIO;
- esp_eth_mac_t *mac = esp_eth_mac_new_esp32(&esp32_emac_config, &mac_config);
- #if CONFIG_SNIFFER_ETH_PHY_IP101
- esp_eth_phy_t *phy = esp_eth_phy_new_ip101(&phy_config);
- #elif CONFIG_SNIFFER_ETH_PHY_RTL8201
- esp_eth_phy_t *phy = esp_eth_phy_new_rtl8201(&phy_config);
- #elif CONFIG_SNIFFER_ETH_PHY_LAN87XX
- esp_eth_phy_t *phy = esp_eth_phy_new_lan87xx(&phy_config);
- #elif CONFIG_SNIFFER_ETH_PHY_DP83848
- esp_eth_phy_t *phy = esp_eth_phy_new_dp83848(&phy_config);
- #elif CONFIG_SNIFFER_ETH_PHY_KSZ80XX
- esp_eth_phy_t *phy = esp_eth_phy_new_ksz80xx(&phy_config);
- #endif
- #elif CONFIG_ETH_USE_SPI_ETHERNET
- gpio_install_isr_service(0);
- spi_bus_config_t buscfg = {
- .miso_io_num = CONFIG_SNIFFER_ETH_SPI_MISO_GPIO,
- .mosi_io_num = CONFIG_SNIFFER_ETH_SPI_MOSI_GPIO,
- .sclk_io_num = CONFIG_SNIFFER_ETH_SPI_SCLK_GPIO,
- .quadwp_io_num = -1,
- .quadhd_io_num = -1,
- };
- ESP_ERROR_CHECK(spi_bus_initialize(CONFIG_SNIFFER_ETH_SPI_HOST, &buscfg, SPI_DMA_CH_AUTO));
- spi_device_interface_config_t spi_devcfg = {
- .mode = 0,
- .clock_speed_hz = CONFIG_SNIFFER_ETH_SPI_CLOCK_MHZ * 1000 * 1000,
- .spics_io_num = CONFIG_SNIFFER_ETH_SPI_CS_GPIO,
- .queue_size = 20
- };
- #if CONFIG_SNIFFER_USE_KSZ8851SNL
- eth_ksz8851snl_config_t ksz8851snl_config = ETH_KSZ8851SNL_DEFAULT_CONFIG(CONFIG_SNIFFER_ETH_SPI_HOST, &spi_devcfg);
- ksz8851snl_config.int_gpio_num = CONFIG_SNIFFER_ETH_SPI_INT_GPIO;
- esp_eth_mac_t *mac = esp_eth_mac_new_ksz8851snl(&ksz8851snl_config, &mac_config);
- esp_eth_phy_t *phy = esp_eth_phy_new_ksz8851snl(&phy_config);
- #elif CONFIG_SNIFFER_USE_DM9051
- eth_dm9051_config_t dm9051_config = ETH_DM9051_DEFAULT_CONFIG(CONFIG_SNIFFER_ETH_SPI_HOST, &spi_devcfg);
- dm9051_config.int_gpio_num = CONFIG_SNIFFER_ETH_SPI_INT_GPIO;
- esp_eth_mac_t *mac = esp_eth_mac_new_dm9051(&dm9051_config, &mac_config);
- esp_eth_phy_t *phy = esp_eth_phy_new_dm9051(&phy_config);
- #elif CONFIG_SNIFFER_USE_W5500
- eth_w5500_config_t w5500_config = ETH_W5500_DEFAULT_CONFIG(CONFIG_SNIFFER_ETH_SPI_HOST, &spi_devcfg);
- w5500_config.int_gpio_num = CONFIG_SNIFFER_ETH_SPI_INT_GPIO;
- esp_eth_mac_t *mac = esp_eth_mac_new_w5500(&w5500_config, &mac_config);
- esp_eth_phy_t *phy = esp_eth_phy_new_w5500(&phy_config);
- #endif
- #endif // CONFIG_ETH_USE_SPI_ETHERNET
- esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
- esp_eth_handle_t eth_handle = NULL;
- ESP_ERROR_CHECK(esp_eth_driver_install(&config, ð_handle));
- #if !CONFIG_SNIFFER_USE_INTERNAL_ETHERNET
- /* The SPI Ethernet module might doesn't have a burned factory MAC address, we cat to set it manually.
- 02:00:00 is a Locally Administered OUI range so should not be used except when testing on a LAN under your control.
- */
- ESP_ERROR_CHECK(esp_eth_ioctl(eth_handle, ETH_CMD_S_MAC_ADDR, (uint8_t[]) {
- 0x02, 0x00, 0x00, 0x12, 0x34, 0x56
- }));
- #endif
- /* start Ethernet driver state machine */
- ESP_ERROR_CHECK(esp_eth_start(eth_handle));
- /* Register Ethernet interface to could be used by sniffer */
- ESP_ERROR_CHECK(sniffer_reg_eth_intf(eth_handle));
- }
- #endif // CONFIG_SNIFFER_NO_ETHERNET
- #if CONFIG_SNIFFER_PCAP_DESTINATION_SD
- static struct {
- struct arg_str *device;
- struct arg_end *end;
- } mount_args;
- /** 'mount' command */
- static int mount(int argc, char **argv)
- {
- esp_err_t ret;
- int nerrors = arg_parse(argc, argv, (void **)&mount_args);
- if (nerrors != 0) {
- arg_print_errors(stderr, mount_args.end, argv[0]);
- return 1;
- }
- /* mount sd card */
- if (!strncmp(mount_args.device->sval[0], "sd", 2)) {
- ESP_LOGI(TAG, "Initializing SD card");
- esp_vfs_fat_sdmmc_mount_config_t mount_config = {
- .format_if_mount_failed = true,
- .max_files = 4,
- .allocation_unit_size = 16 * 1024
- };
- // initialize SD card and mount FAT filesystem.
- sdmmc_card_t *card;
- #if CONFIG_SNIFFER_SD_SPI_MODE
- ESP_LOGI(TAG, "Using SPI peripheral");
- sdmmc_host_t host = SDSPI_HOST_DEFAULT();
- spi_bus_config_t bus_cfg = {
- .mosi_io_num = PIN_NUM_MOSI,
- .miso_io_num = PIN_NUM_MISO,
- .sclk_io_num = PIN_NUM_CLK,
- .quadwp_io_num = -1,
- .quadhd_io_num = -1,
- .max_transfer_sz = 4000,
- };
- ret = spi_bus_initialize(host.slot, &bus_cfg, SPI_DMA_CH_AUTO);
- if (ret != ESP_OK) {
- ESP_LOGE(TAG, "Failed to initialize bus.");
- return 1;
- }
- // This initializes the slot without card detect (CD) and write protect (WP) signals.
- // Modify slot_config.gpio_cd and slot_config.gpio_wp if your board has these signals.
- sdspi_device_config_t slot_config = SDSPI_DEVICE_CONFIG_DEFAULT();
- slot_config.gpio_cs = PIN_NUM_CS;
- slot_config.host_id = host.slot;
- ret = esp_vfs_fat_sdspi_mount(CONFIG_SNIFFER_MOUNT_POINT, &host, &slot_config, &mount_config, &card);
- #else
- ESP_LOGI(TAG, "Using SDMMC peripheral");
- sdmmc_host_t host = SDMMC_HOST_DEFAULT();
- sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
- gpio_set_pull_mode(15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1-line modes
- gpio_set_pull_mode(2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes
- gpio_set_pull_mode(4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only
- gpio_set_pull_mode(12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only
- gpio_set_pull_mode(13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes
- ret = esp_vfs_fat_sdmmc_mount(CONFIG_SNIFFER_MOUNT_POINT, &host, &slot_config, &mount_config, &card);
- #endif
- if (ret != ESP_OK) {
- if (ret == ESP_FAIL) {
- ESP_LOGE(TAG, "Failed to mount filesystem. "
- "If you want the card to be formatted, set format_if_mount_failed = true.");
- } else {
- ESP_LOGE(TAG, "Failed to initialize the card (%s). "
- "Make sure SD card lines have pull-up resistors in place.",
- esp_err_to_name(ret));
- }
- return 1;
- }
- /* print card info if mount successfully */
- sdmmc_card_print_info(stdout, card);
- }
- return 0;
- }
- static void register_mount(void)
- {
- mount_args.device = arg_str1(NULL, NULL, "<sd>", "choose a proper device to mount/unmount");
- mount_args.end = arg_end(1);
- const esp_console_cmd_t cmd = {
- .command = "mount",
- .help = "mount the filesystem",
- .hint = NULL,
- .func = &mount,
- .argtable = &mount_args
- };
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- static int unmount(int argc, char **argv)
- {
- int nerrors = arg_parse(argc, argv, (void **)&mount_args);
- if (nerrors != 0) {
- arg_print_errors(stderr, mount_args.end, argv[0]);
- return 1;
- }
- /* unmount sd card */
- if (!strncmp(mount_args.device->sval[0], "sd", 2)) {
- if (esp_vfs_fat_sdmmc_unmount() != ESP_OK) {
- ESP_LOGE(TAG, "Card unmount failed");
- return -1;
- }
- ESP_LOGI(TAG, "Card unmounted");
- }
- return 0;
- }
- static void register_unmount(void)
- {
- mount_args.device = arg_str1(NULL, NULL, "<sd>", "choose a proper device to mount/unmount");
- mount_args.end = arg_end(1);
- const esp_console_cmd_t cmd = {
- .command = "unmount",
- .help = "unmount the filesystem",
- .hint = NULL,
- .func = &unmount,
- .argtable = &mount_args
- };
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- #endif // CONFIG_SNIFFER_PCAP_DESTINATION_SD
- void app_main(void)
- {
- initialize_nvs();
- /*--- Initialize Network ---*/
- ESP_ERROR_CHECK(esp_event_loop_create_default());
- /* Initialize WiFi */
- initialize_wifi();
- #ifndef CONFIG_SNIFFER_NO_ETHERNET
- /* Initialize Ethernet */
- initialize_eth();
- #endif
- /*--- Initialize Console ---*/
- esp_console_repl_t *repl = NULL;
- esp_console_repl_config_t repl_config = ESP_CONSOLE_REPL_CONFIG_DEFAULT();
- #if CONFIG_SNIFFER_STORE_HISTORY
- initialize_filesystem();
- repl_config.history_save_path = HISTORY_FILE_PATH;
- #endif
- repl_config.prompt = "sniffer>";
- // install console REPL environment
- #if CONFIG_ESP_CONSOLE_UART
- esp_console_dev_uart_config_t uart_config = ESP_CONSOLE_DEV_UART_CONFIG_DEFAULT();
- ESP_ERROR_CHECK(esp_console_new_repl_uart(&uart_config, &repl_config, &repl));
- #elif CONFIG_ESP_CONSOLE_USB_CDC
- esp_console_dev_usb_cdc_config_t cdc_config = ESP_CONSOLE_DEV_CDC_CONFIG_DEFAULT();
- ESP_ERROR_CHECK(esp_console_new_repl_usb_cdc(&cdc_config, &repl_config, &repl));
- #elif CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG
- esp_console_dev_usb_serial_jtag_config_t usbjtag_config = ESP_CONSOLE_DEV_USB_SERIAL_JTAG_CONFIG_DEFAULT();
- ESP_ERROR_CHECK(esp_console_new_repl_usb_serial_jtag(&usbjtag_config, &repl_config, &repl));
- #endif
- /* Register commands */
- #if CONFIG_SNIFFER_PCAP_DESTINATION_SD
- register_mount();
- register_unmount();
- #endif
- register_sniffer_cmd();
- register_pcap_cmd();
- #if CONFIG_SNIFFER_PCAP_DESTINATION_SD
- printf("\n =======================================================\n");
- printf(" | Steps to sniff network packets |\n");
- printf(" | |\n");
- printf(" | 1. Enter 'help' to check all commands usage |\n");
- printf(" | 2. Enter 'mount <device>' to mount filesystem |\n");
- printf(" | 3. Enter 'pcap' to create pcap file |\n");
- printf(" | 4. Enter 'sniffer' to start capture packets |\n");
- printf(" | 5. Enter 'unmount <device>' to unmount filesystem |\n");
- printf(" | |\n");
- printf(" =======================================================\n\n");
- #else
- printf("\n =======================================================\n");
- printf(" | Steps to sniff network packets |\n");
- printf(" | |\n");
- printf(" | 1. Enter 'help' to check all commands' usage |\n");
- printf(" | 2. Enter 'pcap' to create pcap file |\n");
- printf(" | 3. Enter 'sniffer' to start capture packets |\n");
- printf(" | |\n");
- printf(" =======================================================\n\n");
- #endif
- // start console REPL
- ESP_ERROR_CHECK(esp_console_start_repl(repl));
- }
|