summaryrefslogtreecommitdiff
path: root/easytool/easytool.c
blob: 65de185569f118a8c4331df5ed822ff55a180515 (plain)
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/* A reverse-engineered implementation of the EasyCard data format */

/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
 * All Rights Reserved
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */

/* System includes */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <fcntl.h>
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <netinet/in.h>

/* libnfc includes */
#include <nfc/nfc-types.h>
#include <nfc/mifaretag.h>

#include "mifare_classic.h"

/* Easycard specific includes */
#include "easycard.h"

#define VERSION	"0.01"
#define COPYRIGHT 						\
	"EasyTool "VERSION"\n"					\
	"(C) 2010 by Harald Welte <laforge@gnumonks.org>\n"	\
	"This is FREE SOFTWARE with ABSOLUTELY NO VARRANTY\n\n"	\
	"Use of this software is only authorized for RESEARCH PURPOSE!\n\n" 

struct {
	int fd;
	unsigned long size;
	mifare_tag *mft;
} global;

/* Sector 0 of Block 2 seems to contain manufacturing timestamp */
struct easy_block2sec0 {
	uint8_t unknown[6];
	uint8_t timestamp[3];
	uint8_t unknown2[7];
} __attribute__ ((packed));

/* Sector 2 of Block 15 */
struct easy_block15sec2 {
	uint8_t unknown[11];
	uint8_t day_of_month;
	uint8_t unknown2;	/* always 0x3d? */
	uint16_t sum_of_day;	/* sum of all shop purchases on a day */
	uint8_t unknown3;
} __attribute__ ((packed));


/* storage of a transaction log record on the transponder itself */
struct easy_log_rec {
	uint8_t trans_id;
	uint8_t unknown;
	uint8_t timestamp[3];	/* seconds since January 1st 1970 / 256 */
	uint8_t trans_type;
	uint16_t amount;	/* transaction amount / value */
	uint16_t remaining;	/* remaining value on card _after_ trans */
	uint8_t unknown2;
	uint8_t station_code;	/* MRT station code */
	uint16_t reader_code;	/* unique code of RFID reader */
	uint8_t unknown3[2];
} __attribute__ ((packed));

/* Mifare classic VALUE BLOCK */
struct mfcl_value_block {
	uint32_t value;		/* value in NTD */
	uint32_t value_inv;	/* bit-inverted copy of value in NTD */
	uint32_t value_backup;	/* backup copy of value in NTD */
	uint8_t addr[4];
} __attribute__ ((packed));

static time_t easy_timestamp2time(const uint8_t *easy_ts)
{
	return (easy_ts[2] << 16 | easy_ts[1] << 8 | easy_ts[0]) << 8;
}

static char tsbuf[64];
char *easy_asc_timestamp(const uint8_t *timestamp)
{
	time_t t_time = easy_timestamp2time(timestamp);
	struct tm *t_tm = gmtime(&t_time);
	memset(tsbuf, 0, sizeof(tsbuf));
	snprintf(tsbuf, sizeof(tsbuf), "%4u-%02u-%02u %02u:%02u",
		t_tm->tm_year+1900, t_tm->tm_mon+1, t_tm->tm_mday,
		t_tm->tm_hour, t_tm->tm_min);
	return tsbuf;
}

static void dump_easy_log(const struct easy_log_rec *elr)
{
	printf("%s | %02x | %10s | Paid %4u NTD | %4u NTD remaining\n",
		easy_asc_timestamp(elr->timestamp),
		elr->trans_id,
		get_value_string(easy_tt_names, elr->trans_type),
		elr->amount, elr->remaining);
	switch (elr->trans_type) {
	case EASY_TT_MRT_ENTER:
	case EASY_TT_MRT_REENTER:
	case EASY_TT_MRT_EXIT:
		printf("\tMRT Station %s\n",
			get_value_string(taipei_mrt_stn_id,
					 elr->station_code));
		break;
	}
}

static void dump_acc_bits(const struct acc_bits_parsed *abp)
{
	uint8_t block;

	for (block = 0; block < 4; block++) {
		printf("\tBlock %u: %x (%u %u %u)\n", block, abp->block[block],
			abp->block[block] & ABP_C1 ? 1 : 0,
			abp->block[block] & ABP_C2 ? 1 : 0,
			abp->block[block] & ABP_C3 ? 1 : 0);
	}
}

static void dump_mfcl(mifare_tag *mft)
{
	unsigned int sect;

	mifare_block_manufacturer *manuf = &mft->amb[0].mbm;

	printf("UID %x, ATQA %x\n", ntohl(*((uint32_t *) manuf->abtUID)),
		ntohs(*((uint16_t *) manuf->abtATQA)));

	for (sect = 0; sect < 16; sect++) {
		unsigned int block_base = sect * 4;
		uint8_t *access_bits = mft->amb[block_base+3].mbt.abtAccessBits;
		struct acc_bits_parsed abp;

		printf("Sector %02u (base: 0x%02x) Access bits: 0x%08x\n", sect,
			sect*4*16, ntohl(*((uint32_t *) access_bits)));
		mfcl_parse_acc_bits(&abp, access_bits);
		dump_acc_bits(&abp);
	}
}

static void dump_easycard(mifare_tag *mft)
{
	unsigned int sect;
	mifare_block_manufacturer *manuf = &mft->amb[0].mbm;
	struct mfcl_value_block *val =
			(struct mfcl_value_block *) mft->amb[8].mbd.abtData;
	struct easy_block2sec0 *b2s0 =
			(struct easy_block2sec0 *) mft->amb[1*4+0].mbd.abtData;
	struct easy_block15sec2 *b15s2 =
			(struct easy_block15sec2 *) mft->amb[15*4+2].mbd.abtData;
	uint32_t uid = *((uint32_t *) manuf->abtUID);

	/* dump the header */
	printf("EasyCard UID 0x%08x (%u)\n", ntohl(uid), uid);
	printf("Date of manufacture: %s\n",
		easy_asc_timestamp(b2s0->timestamp));
	printf("Current Balance: %5u NTD\n", val->value);
	printf("Sum of all purchases on day %u (of month): %u NTD\n",
		b15s2->day_of_month, b15s2->sum_of_day);
	printf("\nTransaction Log:\n");

	/* dump the transaction log */
	for (sect = 3; sect < 6; sect++) {
		unsigned int block_base = sect * 4;
		unsigned int i;
		for (i = 0; i < 3; i++) {
			void *data = mft->amb[block_base+i].mbd.abtData;
			/* first block of sector 3 is not a log record */
			if (sect == 3 && i == 0)
				continue;
			dump_easy_log(data);
		}
	}
}

static void print_help(void)
{
}

int main(int argc, char **argv)
{
	struct stat st;

	printf(COPYRIGHT);

	if (argc < 2) {
		fprintf(stderr, "ERROR: You must specify the file name of "
			"a mifare dump file (.mfd)\n");
		print_help();
		exit(2);
	}

	global.fd = open(argv[1], O_RDONLY);
	if (global.fd < 0) {
		perror("Error opening the MFD file");
		exit(1);
	}
	if (fstat(global.fd, &st) < 0) {
		perror("Error stat()ing the MFD file");
		exit(1);
	}
	global.size = st.st_size;
	global.mft = mmap(NULL, global.size, PROT_READ, MAP_SHARED,
			  global.fd, 0);
	if (!global.mft) {
		perror("Error mmap()ing the MFD file");
		exit(1);
	}

	//dump_mfcl(global.mft);
	dump_easycard(global.mft);

	munmap(global.mft, global.size);
	close(global.fd);
	exit(0);
}
personal git repositories of Harald Welte. Your mileage may vary