2020-06-15 20:30:50 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2020-06-15 20:30:50 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2020-06-15 20:30:50 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Low frequency EM4x50 structs
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef EM4X50_H__
|
|
|
|
#define EM4X50_H__
|
|
|
|
|
2021-05-17 05:03:13 +08:00
|
|
|
#include "common.h"
|
|
|
|
|
2020-06-26 20:21:54 +08:00
|
|
|
#define EM4X50_NO_WORDS 34
|
|
|
|
|
|
|
|
// special words
|
|
|
|
#define EM4X50_DEVICE_PASSWORD 0
|
|
|
|
#define EM4X50_PROTECTION 1
|
|
|
|
#define EM4X50_CONTROL 2
|
|
|
|
#define EM4X50_DEVICE_SERIAL 32
|
|
|
|
#define EM4X50_DEVICE_ID 33
|
|
|
|
|
|
|
|
// control word (word = 4 bytes)
|
|
|
|
#define FIRST_WORD_READ 0 // first byte
|
|
|
|
#define LAST_WORD_READ 1 // second byte
|
|
|
|
#define CONFIG_BLOCK 2 // third byte
|
|
|
|
#define PASSWORD_CHECK 0x80 // first bit in third byte
|
|
|
|
#define READ_AFTER_WRITE 0x40 // second bit in third byte
|
|
|
|
|
|
|
|
// protection word
|
|
|
|
#define FIRST_WORD_READ_PROTECTED 0 // first byte
|
|
|
|
#define LAST_WORD_READ_PROTECTED 1 // second byte
|
|
|
|
#define FIRST_WORD_WRITE_INHIBITED 2 // third byte
|
|
|
|
#define LAST_WORD_WRITE_INHIBITED 3 // fourth byte
|
|
|
|
|
2021-01-26 06:52:14 +08:00
|
|
|
// commands
|
|
|
|
#define EM4X50_COMMAND_LOGIN 0x01
|
|
|
|
#define EM4X50_COMMAND_RESET 0x80
|
|
|
|
#define EM4X50_COMMAND_WRITE 0x12
|
|
|
|
#define EM4X50_COMMAND_WRITE_PASSWORD 0x11
|
|
|
|
#define EM4X50_COMMAND_SELECTIVE_READ 0x0A
|
|
|
|
#define EM4X50_COMMAND_STANDARD_READ 0x02 // virtual command
|
|
|
|
|
2020-06-26 20:21:54 +08:00
|
|
|
// misc
|
2021-02-07 02:59:03 +08:00
|
|
|
#define TIMEOUT_CMD 3000
|
2020-10-26 07:11:49 +08:00
|
|
|
#define DUMP_FILESIZE 136
|
2021-01-04 05:50:27 +08:00
|
|
|
|
2020-06-15 20:30:50 +08:00
|
|
|
typedef struct {
|
2020-06-26 20:21:54 +08:00
|
|
|
bool addr_given;
|
2020-06-15 20:30:50 +08:00
|
|
|
bool pwd_given;
|
2020-10-22 06:42:18 +08:00
|
|
|
uint32_t password1;
|
|
|
|
uint32_t password2;
|
|
|
|
uint32_t word;
|
|
|
|
uint32_t addresses;
|
2020-10-25 23:37:35 +08:00
|
|
|
} PACKED em4x50_data_t;
|
2020-06-15 20:30:50 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t byte[4];
|
2020-10-25 23:37:35 +08:00
|
|
|
} PACKED em4x50_word_t;
|
2020-06-15 20:30:50 +08:00
|
|
|
|
2021-08-22 05:02:27 +08:00
|
|
|
extern bool g_Login;
|
|
|
|
extern bool g_WritePasswordProcess;
|
|
|
|
extern uint32_t g_Password;
|
2021-01-26 06:52:14 +08:00
|
|
|
|
2020-06-15 20:30:50 +08:00
|
|
|
#endif /* EM4X50_H__ */
|