* nfc: start nfc over rpc * nfc: add detect reader state * nfc: add reader analyzer * nfc: rework reader analyzer * reader_analyzer: print collected nonces to debug * reader analyzer: add save on SD card * reader_analyzer: separate mfkey related part to different file * mfkey32: add logic for collecting parameters * nfc: rework pcap with reader analyzer * nfc: add logger for reader * nfc: clean up * nfc: add detect reader view * nfc: add detect reader and mfkey nonces scenes * nfc: add mfkey comlplete scene * nfc: add new assets * nfc: fix gui * nfc: fix iso14443-4 UID emulation * nfc: add no sd card notification * nfc: fix grammar Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "nfc_debug_log.h"
 | 
						|
 | 
						|
#include <m-string.h>
 | 
						|
#include <storage/storage.h>
 | 
						|
#include <stream/buffered_file_stream.h>
 | 
						|
 | 
						|
#define TAG "NfcDebugLog"
 | 
						|
 | 
						|
#define NFC_DEBUG_PCAP_FILENAME EXT_PATH("nfc/debug.txt")
 | 
						|
 | 
						|
struct NfcDebugLog {
 | 
						|
    Stream* file_stream;
 | 
						|
    string_t data_str;
 | 
						|
};
 | 
						|
 | 
						|
NfcDebugLog* nfc_debug_log_alloc() {
 | 
						|
    NfcDebugLog* instance = malloc(sizeof(NfcDebugLog));
 | 
						|
 | 
						|
    Storage* storage = furi_record_open(RECORD_STORAGE);
 | 
						|
    instance->file_stream = buffered_file_stream_alloc(storage);
 | 
						|
 | 
						|
    if(!buffered_file_stream_open(
 | 
						|
           instance->file_stream, NFC_DEBUG_PCAP_FILENAME, FSAM_WRITE, FSOM_OPEN_APPEND)) {
 | 
						|
        buffered_file_stream_close(instance->file_stream);
 | 
						|
        stream_free(instance->file_stream);
 | 
						|
        instance->file_stream = NULL;
 | 
						|
    }
 | 
						|
 | 
						|
    if(!instance->file_stream) {
 | 
						|
        free(instance);
 | 
						|
        instance = NULL;
 | 
						|
    } else {
 | 
						|
        string_init(instance->data_str);
 | 
						|
    }
 | 
						|
    furi_record_close(RECORD_STORAGE);
 | 
						|
 | 
						|
    return instance;
 | 
						|
}
 | 
						|
 | 
						|
void nfc_debug_log_free(NfcDebugLog* instance) {
 | 
						|
    furi_assert(instance);
 | 
						|
    furi_assert(instance->file_stream);
 | 
						|
    furi_assert(instance->data_str);
 | 
						|
 | 
						|
    buffered_file_stream_close(instance->file_stream);
 | 
						|
    stream_free(instance->file_stream);
 | 
						|
    string_clear(instance->data_str);
 | 
						|
 | 
						|
    free(instance);
 | 
						|
}
 | 
						|
 | 
						|
void nfc_debug_log_process_data(
 | 
						|
    NfcDebugLog* instance,
 | 
						|
    uint8_t* data,
 | 
						|
    uint16_t len,
 | 
						|
    bool reader_to_tag,
 | 
						|
    bool crc_dropped) {
 | 
						|
    furi_assert(instance);
 | 
						|
    furi_assert(instance->file_stream);
 | 
						|
    furi_assert(instance->data_str);
 | 
						|
    furi_assert(data);
 | 
						|
    UNUSED(crc_dropped);
 | 
						|
 | 
						|
    string_printf(instance->data_str, "%lu %c:", furi_get_tick(), reader_to_tag ? 'R' : 'T');
 | 
						|
    uint16_t data_len = len;
 | 
						|
    for(size_t i = 0; i < data_len; i++) {
 | 
						|
        string_cat_printf(instance->data_str, " %02x", data[i]);
 | 
						|
    }
 | 
						|
    string_push_back(instance->data_str, '\n');
 | 
						|
 | 
						|
    stream_write_string(instance->file_stream, instance->data_str);
 | 
						|
}
 |