4032b8013917df1a28c4fc26ae1934ad3568f5b5
[librfid] / src / rfid_proto_mifare_classic.c
1
2 /* Mifare Classic implementation, PCD side.
3  *
4  * (C) 2005-2006 by Harald Welte <laforge@gnumonks.org>
5  *
6  */
7
8 /*
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License version 2 
11  *  as published by the Free Software Foundation
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <string.h>
26 #include <errno.h>
27
28 #include <librfid/rfid.h>
29 #include <librfid/rfid_protocol.h>
30 #include <librfid/rfid_layer2.h>
31 #include <librfid/rfid_protocol_mifare_classic.h>
32
33 #include <librfid/rfid_reader.h>
34
35 #include "rfid_iso14443_common.h"
36
37
38 #define MIFARE_UL_CMD_WRITE     0xA2
39 #define MIFARE_UL_CMD_READ      0x30
40
41 /* FIXME */
42 #define MIFARE_CL_READ_FWT      100
43 #define MIFARE_CL_WRITE_FWT     100
44
45 static int
46 mfcl_read(struct rfid_protocol_handle *ph, unsigned int page,
47           unsigned char *rx_data, unsigned int *rx_len)
48 {
49         unsigned char rx_buf[16];
50         unsigned int real_rx_len = sizeof(rx_buf);
51         unsigned char tx[2];
52         int ret;
53
54         if (page > MIFARE_CL_PAGE_MAX)
55                 return -EINVAL;
56
57         tx[0] = MIFARE_CL_CMD_READ;
58         tx[1] = page & 0xff;
59
60         ret = rfid_layer2_transceive(ph->l2h, RFID_MIFARE_FRAME, tx,
61                                      sizeof(tx), rx_buf, &real_rx_len,
62                                      MIFARE_CL_READ_FWT, 0);
63
64         if (ret < 0)
65                 return ret;
66
67         if (real_rx_len == 1 && *rx_buf == 0x04)
68                 return -EPERM;
69
70         if (real_rx_len < *rx_len)
71                 *rx_len = real_rx_len;
72
73         memcpy(rx_data, rx_buf, *rx_len);
74
75         return ret;
76 }
77
78 static int
79 mfcl_write(struct rfid_protocol_handle *ph, unsigned int page,
80            unsigned char *tx_data, unsigned int tx_len)
81 {
82         unsigned int i;
83         unsigned char tx[18];
84         unsigned char rx[1];
85         unsigned int rx_len;
86         int ret;
87
88         if (page > MIFARE_CL_PAGE_MAX)
89                 return -EINVAL;
90
91         if (tx_len != 16 && tx_len != 4)
92                 return -EINVAL;
93         
94         if (tx_len == 16) {
95                 tx[0] = MIFARE_CL_CMD_WRITE16;
96                 tx[1] = page & 0xff;
97
98                 ret = rfid_layer2_transceive(ph->l2h, RFID_MIFARE_FRAME, tx,
99                                              2, rx, &rx_len, 
100                                              MIFARE_CL_WRITE_FWT, 0);
101                 if (ret < 0)
102                         return ret;
103
104                 ret = rfid_layer2_transceive(ph->l2h, RFID_MIFARE_FRAME, tx_data,
105                                              tx_len, rx, &rx_len,
106                                              MIFARE_CL_WRITE_FWT, 0);
107                 if (ret < 0)
108                         return ret;
109
110                 if (rx[0] != MIFARE_UL_RESP_ACK)
111                         return -EIO;
112
113                 ret = rfid_layer2_transceive(ph->l2h, RFID_MIFARE_FRAME, tx,
114                                              sizeof(tx), rx, &rx_len, 
115                                              MIFARE_CL_WRITE_FWT, 0);
116                 if (ret < 0)
117                         return ret;
118
119                 if (rx[0] != MIFARE_UL_RESP_ACK)
120                         return -EIO;
121
122         } else if (tx_len == 4) {
123
124                 tx[0] = MIFARE_CL_CMD_WRITE4;
125                 tx[1] = page & 0xff;
126
127                 memcpy(tx+2, tx_data, 4);
128
129                 ret = rfid_layer2_transceive(ph->l2h, RFID_MIFARE_FRAME, tx,
130                                              2+4, rx, &rx_len, 
131                                              MIFARE_CL_WRITE_FWT, 0);
132                 if (ret < 0)
133                         return ret;
134
135                 if (rx[0] != MIFARE_UL_RESP_ACK)
136                         return -EIO;
137
138         }
139
140         return ret;
141 }
142
143 static struct rfid_protocol_handle *
144 mfcl_init(struct rfid_layer2_handle *l2h)
145 {
146         struct rfid_protocol_handle *ph;
147
148         if (l2h->l2->id != RFID_LAYER2_ISO14443A)
149                 return NULL;
150
151         if (l2h->uid_len != 4)
152                 return NULL;
153
154         ph = malloc_protocol_handle(sizeof(struct rfid_protocol_handle));
155         return ph;
156 }
157
158 static int mfcl_fini(struct rfid_protocol_handle *ph)
159 {
160         free_protocol_handle(ph);
161         return 0;
162 }
163
164 const struct rfid_protocol rfid_protocol_mfcl = {
165         .id     = RFID_PROTOCOL_MIFARE_CLASSIC,
166         .name   = "Mifare Classic",
167         .fn     = {
168                 .init           = &mfcl_init,
169                 .read           = &mfcl_read,
170                 .write          = &mfcl_write,
171                 .fini           = &mfcl_fini,
172         },
173 };
174
175 int mfcl_set_key(struct rfid_protocol_handle *ph, unsigned char *key)
176 {
177         if (!ph->l2h->rh->reader->mifare_classic.setkey)
178                 return -ENODEV;
179
180         return ph->l2h->rh->reader->mifare_classic.setkey(ph->l2h->rh, key);
181 }
182
183 int mfcl_auth(struct rfid_protocol_handle *ph, u_int8_t cmd, u_int8_t block)
184 {
185         u_int32_t serno = *((u_int32_t *)ph->l2h->uid);
186
187         if (!ph->l2h->rh->reader->mifare_classic.auth)
188                 return -ENODEV;
189
190         return ph->l2h->rh->reader->mifare_classic.auth(ph->l2h->rh, cmd,
191                                                        serno, block);
192 }