Skip to content

Commit 1daa2fa

Browse files
committed
Merge branch 'ofw_dev' into dev
2 parents c416041 + 82baf1e commit 1daa2fa

File tree

9 files changed

+39
-21
lines changed

9 files changed

+39
-21
lines changed

applications/main/nfc/nfc_app.c

+10-9
Original file line numberDiff line numberDiff line change
@@ -400,15 +400,16 @@ bool nfc_load_from_file_select(NfcApp* instance) {
400400
browser_options.base_path = NFC_APP_FOLDER;
401401
browser_options.hide_dot_files = true;
402402

403-
// Input events and views are managed by file_browser
404-
bool result = dialog_file_browser_show(
405-
instance->dialogs, instance->file_path, instance->file_path, &browser_options);
406-
407-
if(result) {
408-
result = nfc_load_file(instance, instance->file_path, true);
409-
}
410-
411-
return result;
403+
bool success = false;
404+
do {
405+
// Input events and views are managed by file_browser
406+
if(!dialog_file_browser_show(
407+
instance->dialogs, instance->file_path, instance->file_path, &browser_options))
408+
break;
409+
success = nfc_load_file(instance, instance->file_path, true);
410+
} while(!success);
411+
412+
return success;
412413
}
413414

414415
void nfc_show_loading_popup(void* context, bool show) {

applications/main/nfc/plugins/supported_cards/aime.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,15 @@ static bool aime_parse(const NfcDevice* device, FuriString* parsed_data) {
120120
aime_accesscode[9]);
121121

122122
// validate decimal hex representation
123+
bool code_is_hex = true;
123124
for(int i = 0; i < 24; i++) {
124125
if(aime_accesscode_str[i] == ' ') continue;
125-
if(aime_accesscode_str[i] < '0' || aime_accesscode_str[i] > '9') return false;
126+
if(aime_accesscode_str[i] < '0' || aime_accesscode_str[i] > '9') {
127+
code_is_hex = false;
128+
break;
129+
}
126130
}
131+
if(!code_is_hex) break;
127132

128133
// Note: Aime access code has some other self-check algorithms that are not public.
129134
// This parser does not try to verify the number.

applications/main/nfc/scenes/nfc_scene_detect.c

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ bool nfc_scene_detect_on_event(void* context, SceneManagerEvent event) {
3737
if(event.type == SceneManagerEventTypeCustom) {
3838
if(event.event == NfcCustomEventWorkerExit) {
3939
if(instance->protocols_detected_num > 1) {
40+
notification_message(instance->notifications, &sequence_single_vibro);
4041
scene_manager_next_scene(instance->scene_manager, NfcSceneSelectProtocol);
4142
} else {
4243
scene_manager_next_scene(instance->scene_manager, NfcSceneRead);

applications/main/nfc/scenes/nfc_scene_extra_actions.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ bool nfc_scene_extra_actions_on_event(void* context, SceneManagerEvent event) {
4545

4646
if(event.type == SceneManagerEventTypeCustom) {
4747
if(event.event == SubmenuIndexMfClassicKeys) {
48-
if(nfc_dict_check_presence(NFC_APP_MF_CLASSIC_DICT_USER_PATH)) {
49-
scene_manager_next_scene(instance->scene_manager, NfcSceneMfClassicKeys);
50-
} else {
51-
scene_manager_previous_scene(instance->scene_manager);
52-
}
48+
scene_manager_next_scene(instance->scene_manager, NfcSceneMfClassicKeys);
5349
consumed = true;
5450
} else if(event.event == SubmenuIndexMfUltralightUnlock) {
5551
mf_ultralight_auth_reset(instance->mf_ul_auth);

applications/main/nfc/scenes/nfc_scene_mf_ultralight_unlock_warn.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ bool nfc_scene_mf_ultralight_unlock_warn_on_event(void* context, SceneManagerEve
5252

5353
bool consumed = false;
5454

55-
nfc->protocols_detected[0] = nfc_device_get_protocol(nfc->nfc_device);
5655
MfUltralightAuthType type = nfc->mf_ul_auth->type;
5756
if((type == MfUltralightAuthTypeReader) || (type == MfUltralightAuthTypeManual)) {
5857
if(event.type == SceneManagerEventTypeCustom) {
5958
if(event.event == DialogExResultRight) {
59+
const NfcProtocol mfu_protocol[] = {NfcProtocolMfUltralight};
60+
nfc_app_set_detected_protocols(nfc, mfu_protocol, COUNT_OF(mfu_protocol));
6061
scene_manager_next_scene(nfc->scene_manager, NfcSceneRead);
6162
dolphin_deed(DolphinDeedNfcRead);
6263
consumed = true;

applications/main/nfc/scenes/nfc_scene_select_protocol.c

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ void nfc_scene_select_protocol_on_enter(void* context) {
2121
} else {
2222
prefix = "Read as";
2323
submenu_set_header(submenu, "Multi-protocol card");
24-
notification_message(instance->notifications, &sequence_single_vibro);
2524
}
2625

2726
for(uint32_t i = 0; i < instance->protocols_detected_num; i++) {

applications/main/nfc/views/dict_attack.c

-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ void dict_attack_reset(DictAttack* instance) {
125125
instance->view,
126126
DictAttackViewModel * model,
127127
{
128-
model->card_detected = false;
129128
model->sectors_total = 0;
130129
model->sectors_read = 0;
131130
model->current_sector = 0;

lib/nfc/protocols/iso14443_3b/iso14443_3b_poller_i.c

+12-3
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,18 @@ Iso14443_3bError iso14443_3b_poller_activate(Iso14443_3bPoller* instance, Iso144
131131
break;
132132
}
133133

134-
if(bit_buffer_get_size_bytes(instance->rx_buffer) != 1 ||
135-
bit_buffer_get_byte(instance->rx_buffer, 0) != 0) {
136-
FURI_LOG_D(TAG, "Unexpected ATTRIB response");
134+
if(bit_buffer_get_size_bytes(instance->rx_buffer) != 1) {
135+
FURI_LOG_W(
136+
TAG,
137+
"Unexpected ATTRIB response length: %zu",
138+
bit_buffer_get_size_bytes(instance->rx_buffer));
139+
}
140+
141+
if(bit_buffer_get_byte(instance->rx_buffer, 0) != 0) {
142+
FURI_LOG_D(
143+
TAG,
144+
"Incorrect CID in ATTRIB response: %02X",
145+
bit_buffer_get_byte(instance->rx_buffer, 0));
137146
instance->state = Iso14443_3bPollerStateActivationFailed;
138147
ret = Iso14443_3bErrorCommunication;
139148
break;

lib/nfc/protocols/mf_classic/mf_classic_listener.c

+7
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,13 @@ static const MfClassicListenerCmd mf_classic_listener_cmd_handlers[] = {
481481
.command_num = COUNT_OF(mf_classic_listener_halt_handlers),
482482
.handler = mf_classic_listener_halt_handlers,
483483
},
484+
{
485+
// This crutch is necessary since some devices (like Pixel) send 15-bit "HALT" command ...
486+
.cmd_start_byte = MF_CLASSIC_CMD_HALT_MSB,
487+
.cmd_len_bits = 15,
488+
.command_num = COUNT_OF(mf_classic_listener_halt_handlers),
489+
.handler = mf_classic_listener_halt_handlers,
490+
},
484491
{
485492
.cmd_start_byte = MF_CLASSIC_CMD_AUTH_KEY_A,
486493
.cmd_len_bits = 2 * 8,

0 commit comments

Comments
 (0)