2c1d0e8cc75a2f6305e2dd433b4d35e40df68b56
[librfid] / include / librfid / rfid_protocol.h
1 #ifndef _RFID_PROTOCOL_H
2 #define _RFID_PROTOCOL_H
3
4 #include <librfid/rfid_layer2.h>
5
6 struct rfid_protocol_handle;
7
8 struct rfid_protocol_handle *
9 rfid_protocol_init(struct rfid_layer2_handle *l2h, unsigned int id);
10 int rfid_protocol_open(struct rfid_protocol_handle *ph);
11 int rfid_protocol_transceive(struct rfid_protocol_handle *ph,
12                              const unsigned char *tx_buf, unsigned int tx_len,
13                              unsigned char *rx_buf, unsigned int *rx_len,
14                              unsigned int timeout, unsigned int flags);
15 int
16 rfid_protocol_read(struct rfid_protocol_handle *ph,
17                    unsigned int page,
18                    unsigned char *rx_data,
19                    unsigned int *rx_len);
20
21 int
22 rfid_protocol_write(struct rfid_protocol_handle *ph,
23                    unsigned int page,
24                    unsigned char *tx_data,
25                    unsigned int tx_len);
26
27 int rfid_protocol_fini(struct rfid_protocol_handle *ph);
28 int rfid_protocol_close(struct rfid_protocol_handle *ph);
29
30 int rfid_protocol_getopt(struct rfid_protocol_handle *ph, int optname,
31                          void *optval, unsigned int *optlen);
32
33 int rfid_protocol_setopt(struct rfid_protocol_handle *ph, int optname,
34                          const void *optval, unsigned int optlen);
35
36 char *rfid_protocol_name(struct rfid_protocol_handle *ph);
37
38 enum rfid_protocol_id {
39         RFID_PROTOCOL_UNKNOWN,
40         RFID_PROTOCOL_TCL,
41         RFID_PROTOCOL_MIFARE_UL,
42         RFID_PROTOCOL_MIFARE_CLASSIC,
43 };
44
45 enum rfid_protocol_opt {
46         RFID_OPT_PROTO_ID,
47 };
48
49 #ifdef __LIBRFID__
50
51 struct rfid_protocol {
52         unsigned int id;
53         char *name;
54         struct {
55                 struct rfid_protocol_handle *(*init)(struct rfid_layer2_handle *l2h);
56                 int (*open)(struct rfid_protocol_handle *ph);
57                 int (*close)(struct rfid_protocol_handle *ph);
58                 int (*fini)(struct rfid_protocol_handle *ph);
59                 /* transceive for session based transport protocols */
60                 int (*transceive)(struct rfid_protocol_handle *ph,
61                                   const unsigned char *tx_buf,
62                                   unsigned int tx_len,
63                                   unsigned char *rx_buf,
64                                   unsigned int *rx_len,
65                                   unsigned int timeout,
66                                   unsigned int flags);
67                 /* read/write for synchronous memory cards */
68                 int (*read)(struct rfid_protocol_handle *ph,
69                             unsigned int page,
70                             unsigned char *rx_data,
71                             unsigned int *rx_len);
72                 int (*write)(struct rfid_protocol_handle *ph,
73                              unsigned int page,
74                              unsigned char *tx_data,
75                              unsigned int tx_len);
76                 int (*getopt)(struct rfid_protocol_handle *h,
77                               int optname, void *optval, unsigned int *optlen);
78                 int (*setopt)(struct rfid_protocol_handle *h,
79                               int optname, const void *optval,
80                               unsigned int optlen);
81         } fn;
82 };
83
84 #include <librfid/rfid_protocol_tcl.h>
85 #include <librfid/rfid_protocol_mifare_ul.h>
86 #include <librfid/rfid_protocol_mifare_classic.h>
87
88 struct rfid_protocol_handle {
89         struct rfid_layer2_handle *l2h;
90         struct rfid_protocol *proto;
91         union {
92                 struct tcl_handle tcl;
93         } priv;                         /* priv has to be last, since
94                                          * it could contain additional
95                                          * private data over the end of
96                                          * sizeof(priv). */
97 };
98
99 #endif /* __LIBRFID__ */
100
101 #endif /* _RFID_PROTOCOL_H */