2 * Copyright (C) 2011 Instituto Nokia de Tecnologia
5 * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
24 #include <net/genetlink.h>
25 #include <linux/nfc.h>
26 #include <linux/slab.h>
31 static const struct genl_multicast_group nfc_genl_mcgrps
[] = {
32 { .name
= NFC_GENL_MCAST_EVENT_NAME
, },
35 static struct genl_family nfc_genl_family
= {
36 .id
= GENL_ID_GENERATE
,
38 .name
= NFC_GENL_NAME
,
39 .version
= NFC_GENL_VERSION
,
40 .maxattr
= NFC_ATTR_MAX
,
43 static const struct nla_policy nfc_genl_policy
[NFC_ATTR_MAX
+ 1] = {
44 [NFC_ATTR_DEVICE_INDEX
] = { .type
= NLA_U32
},
45 [NFC_ATTR_DEVICE_NAME
] = { .type
= NLA_STRING
,
46 .len
= NFC_DEVICE_NAME_MAXSIZE
},
47 [NFC_ATTR_PROTOCOLS
] = { .type
= NLA_U32
},
48 [NFC_ATTR_COMM_MODE
] = { .type
= NLA_U8
},
49 [NFC_ATTR_RF_MODE
] = { .type
= NLA_U8
},
50 [NFC_ATTR_DEVICE_POWERED
] = { .type
= NLA_U8
},
51 [NFC_ATTR_IM_PROTOCOLS
] = { .type
= NLA_U32
},
52 [NFC_ATTR_TM_PROTOCOLS
] = { .type
= NLA_U32
},
53 [NFC_ATTR_LLC_PARAM_LTO
] = { .type
= NLA_U8
},
54 [NFC_ATTR_LLC_PARAM_RW
] = { .type
= NLA_U8
},
55 [NFC_ATTR_LLC_PARAM_MIUX
] = { .type
= NLA_U16
},
56 [NFC_ATTR_LLC_SDP
] = { .type
= NLA_NESTED
},
57 [NFC_ATTR_FIRMWARE_NAME
] = { .type
= NLA_STRING
,
58 .len
= NFC_FIRMWARE_NAME_MAXSIZE
},
59 [NFC_ATTR_SE_APDU
] = { .type
= NLA_BINARY
},
62 static const struct nla_policy nfc_sdp_genl_policy
[NFC_SDP_ATTR_MAX
+ 1] = {
63 [NFC_SDP_ATTR_URI
] = { .type
= NLA_STRING
},
64 [NFC_SDP_ATTR_SAP
] = { .type
= NLA_U8
},
67 static int nfc_genl_send_target(struct sk_buff
*msg
, struct nfc_target
*target
,
68 struct netlink_callback
*cb
, int flags
)
72 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).portid
, cb
->nlh
->nlmsg_seq
,
73 &nfc_genl_family
, flags
, NFC_CMD_GET_TARGET
);
77 genl_dump_check_consistent(cb
, hdr
, &nfc_genl_family
);
79 if (nla_put_u32(msg
, NFC_ATTR_TARGET_INDEX
, target
->idx
) ||
80 nla_put_u32(msg
, NFC_ATTR_PROTOCOLS
, target
->supported_protocols
) ||
81 nla_put_u16(msg
, NFC_ATTR_TARGET_SENS_RES
, target
->sens_res
) ||
82 nla_put_u8(msg
, NFC_ATTR_TARGET_SEL_RES
, target
->sel_res
))
84 if (target
->nfcid1_len
> 0 &&
85 nla_put(msg
, NFC_ATTR_TARGET_NFCID1
, target
->nfcid1_len
,
88 if (target
->sensb_res_len
> 0 &&
89 nla_put(msg
, NFC_ATTR_TARGET_SENSB_RES
, target
->sensb_res_len
,
92 if (target
->sensf_res_len
> 0 &&
93 nla_put(msg
, NFC_ATTR_TARGET_SENSF_RES
, target
->sensf_res_len
,
97 if (target
->is_iso15693
) {
98 if (nla_put_u8(msg
, NFC_ATTR_TARGET_ISO15693_DSFID
,
99 target
->iso15693_dsfid
) ||
100 nla_put(msg
, NFC_ATTR_TARGET_ISO15693_UID
,
101 sizeof(target
->iso15693_uid
), target
->iso15693_uid
))
102 goto nla_put_failure
;
105 return genlmsg_end(msg
, hdr
);
108 genlmsg_cancel(msg
, hdr
);
112 static struct nfc_dev
*__get_device_from_cb(struct netlink_callback
*cb
)
118 rc
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nfc_genl_family
.hdrsize
,
119 nfc_genl_family
.attrbuf
,
120 nfc_genl_family
.maxattr
,
125 if (!nfc_genl_family
.attrbuf
[NFC_ATTR_DEVICE_INDEX
])
126 return ERR_PTR(-EINVAL
);
128 idx
= nla_get_u32(nfc_genl_family
.attrbuf
[NFC_ATTR_DEVICE_INDEX
]);
130 dev
= nfc_get_device(idx
);
132 return ERR_PTR(-ENODEV
);
137 static int nfc_genl_dump_targets(struct sk_buff
*skb
,
138 struct netlink_callback
*cb
)
141 struct nfc_dev
*dev
= (struct nfc_dev
*) cb
->args
[1];
145 dev
= __get_device_from_cb(cb
);
149 cb
->args
[1] = (long) dev
;
152 device_lock(&dev
->dev
);
154 cb
->seq
= dev
->targets_generation
;
156 while (i
< dev
->n_targets
) {
157 rc
= nfc_genl_send_target(skb
, &dev
->targets
[i
], cb
,
165 device_unlock(&dev
->dev
);
172 static int nfc_genl_dump_targets_done(struct netlink_callback
*cb
)
174 struct nfc_dev
*dev
= (struct nfc_dev
*) cb
->args
[1];
182 int nfc_genl_targets_found(struct nfc_dev
*dev
)
187 dev
->genl_data
.poll_req_portid
= 0;
189 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
193 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
194 NFC_EVENT_TARGETS_FOUND
);
198 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
199 goto nla_put_failure
;
201 genlmsg_end(msg
, hdr
);
203 return genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_ATOMIC
);
206 genlmsg_cancel(msg
, hdr
);
212 int nfc_genl_target_lost(struct nfc_dev
*dev
, u32 target_idx
)
217 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
221 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
222 NFC_EVENT_TARGET_LOST
);
226 if (nla_put_string(msg
, NFC_ATTR_DEVICE_NAME
, nfc_device_name(dev
)) ||
227 nla_put_u32(msg
, NFC_ATTR_TARGET_INDEX
, target_idx
))
228 goto nla_put_failure
;
230 genlmsg_end(msg
, hdr
);
232 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
237 genlmsg_cancel(msg
, hdr
);
243 int nfc_genl_tm_activated(struct nfc_dev
*dev
, u32 protocol
)
248 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
252 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
253 NFC_EVENT_TM_ACTIVATED
);
257 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
258 goto nla_put_failure
;
259 if (nla_put_u32(msg
, NFC_ATTR_TM_PROTOCOLS
, protocol
))
260 goto nla_put_failure
;
262 genlmsg_end(msg
, hdr
);
264 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
269 genlmsg_cancel(msg
, hdr
);
275 int nfc_genl_tm_deactivated(struct nfc_dev
*dev
)
280 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
284 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
285 NFC_EVENT_TM_DEACTIVATED
);
289 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
290 goto nla_put_failure
;
292 genlmsg_end(msg
, hdr
);
294 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
299 genlmsg_cancel(msg
, hdr
);
305 int nfc_genl_device_added(struct nfc_dev
*dev
)
310 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
314 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
315 NFC_EVENT_DEVICE_ADDED
);
319 if (nla_put_string(msg
, NFC_ATTR_DEVICE_NAME
, nfc_device_name(dev
)) ||
320 nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
) ||
321 nla_put_u32(msg
, NFC_ATTR_PROTOCOLS
, dev
->supported_protocols
) ||
322 nla_put_u8(msg
, NFC_ATTR_DEVICE_POWERED
, dev
->dev_up
))
323 goto nla_put_failure
;
325 genlmsg_end(msg
, hdr
);
327 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
332 genlmsg_cancel(msg
, hdr
);
338 int nfc_genl_device_removed(struct nfc_dev
*dev
)
343 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
347 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
348 NFC_EVENT_DEVICE_REMOVED
);
352 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
353 goto nla_put_failure
;
355 genlmsg_end(msg
, hdr
);
357 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
362 genlmsg_cancel(msg
, hdr
);
368 int nfc_genl_llc_send_sdres(struct nfc_dev
*dev
, struct hlist_head
*sdres_list
)
371 struct nlattr
*sdp_attr
, *uri_attr
;
372 struct nfc_llcp_sdp_tlv
*sdres
;
373 struct hlist_node
*n
;
378 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
382 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
383 NFC_EVENT_LLC_SDRES
);
387 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
388 goto nla_put_failure
;
390 sdp_attr
= nla_nest_start(msg
, NFC_ATTR_LLC_SDP
);
391 if (sdp_attr
== NULL
) {
393 goto nla_put_failure
;
397 hlist_for_each_entry_safe(sdres
, n
, sdres_list
, node
) {
398 pr_debug("uri: %s, sap: %d\n", sdres
->uri
, sdres
->sap
);
400 uri_attr
= nla_nest_start(msg
, i
++);
401 if (uri_attr
== NULL
) {
403 goto nla_put_failure
;
406 if (nla_put_u8(msg
, NFC_SDP_ATTR_SAP
, sdres
->sap
))
407 goto nla_put_failure
;
409 if (nla_put_string(msg
, NFC_SDP_ATTR_URI
, sdres
->uri
))
410 goto nla_put_failure
;
412 nla_nest_end(msg
, uri_attr
);
414 hlist_del(&sdres
->node
);
416 nfc_llcp_free_sdp_tlv(sdres
);
419 nla_nest_end(msg
, sdp_attr
);
421 genlmsg_end(msg
, hdr
);
423 return genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_ATOMIC
);
426 genlmsg_cancel(msg
, hdr
);
431 nfc_llcp_free_sdp_tlv_list(sdres_list
);
436 int nfc_genl_se_added(struct nfc_dev
*dev
, u32 se_idx
, u16 type
)
441 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
445 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
450 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
) ||
451 nla_put_u32(msg
, NFC_ATTR_SE_INDEX
, se_idx
) ||
452 nla_put_u8(msg
, NFC_ATTR_SE_TYPE
, type
))
453 goto nla_put_failure
;
455 genlmsg_end(msg
, hdr
);
457 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
462 genlmsg_cancel(msg
, hdr
);
468 int nfc_genl_se_removed(struct nfc_dev
*dev
, u32 se_idx
)
473 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
477 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
478 NFC_EVENT_SE_REMOVED
);
482 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
) ||
483 nla_put_u32(msg
, NFC_ATTR_SE_INDEX
, se_idx
))
484 goto nla_put_failure
;
486 genlmsg_end(msg
, hdr
);
488 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
493 genlmsg_cancel(msg
, hdr
);
499 static int nfc_genl_send_device(struct sk_buff
*msg
, struct nfc_dev
*dev
,
501 struct netlink_callback
*cb
,
506 hdr
= genlmsg_put(msg
, portid
, seq
, &nfc_genl_family
, flags
,
512 genl_dump_check_consistent(cb
, hdr
, &nfc_genl_family
);
514 if (nla_put_string(msg
, NFC_ATTR_DEVICE_NAME
, nfc_device_name(dev
)) ||
515 nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
) ||
516 nla_put_u32(msg
, NFC_ATTR_PROTOCOLS
, dev
->supported_protocols
) ||
517 nla_put_u8(msg
, NFC_ATTR_DEVICE_POWERED
, dev
->dev_up
) ||
518 nla_put_u8(msg
, NFC_ATTR_RF_MODE
, dev
->rf_mode
))
519 goto nla_put_failure
;
521 return genlmsg_end(msg
, hdr
);
524 genlmsg_cancel(msg
, hdr
);
528 static int nfc_genl_dump_devices(struct sk_buff
*skb
,
529 struct netlink_callback
*cb
)
531 struct class_dev_iter
*iter
= (struct class_dev_iter
*) cb
->args
[0];
532 struct nfc_dev
*dev
= (struct nfc_dev
*) cb
->args
[1];
533 bool first_call
= false;
537 iter
= kmalloc(sizeof(struct class_dev_iter
), GFP_KERNEL
);
540 cb
->args
[0] = (long) iter
;
543 mutex_lock(&nfc_devlist_mutex
);
545 cb
->seq
= nfc_devlist_generation
;
548 nfc_device_iter_init(iter
);
549 dev
= nfc_device_iter_next(iter
);
555 rc
= nfc_genl_send_device(skb
, dev
, NETLINK_CB(cb
->skb
).portid
,
556 cb
->nlh
->nlmsg_seq
, cb
, NLM_F_MULTI
);
560 dev
= nfc_device_iter_next(iter
);
563 mutex_unlock(&nfc_devlist_mutex
);
565 cb
->args
[1] = (long) dev
;
570 static int nfc_genl_dump_devices_done(struct netlink_callback
*cb
)
572 struct class_dev_iter
*iter
= (struct class_dev_iter
*) cb
->args
[0];
574 nfc_device_iter_exit(iter
);
580 int nfc_genl_dep_link_up_event(struct nfc_dev
*dev
, u32 target_idx
,
581 u8 comm_mode
, u8 rf_mode
)
586 pr_debug("DEP link is up\n");
588 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
592 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0, NFC_CMD_DEP_LINK_UP
);
596 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
597 goto nla_put_failure
;
598 if (rf_mode
== NFC_RF_INITIATOR
&&
599 nla_put_u32(msg
, NFC_ATTR_TARGET_INDEX
, target_idx
))
600 goto nla_put_failure
;
601 if (nla_put_u8(msg
, NFC_ATTR_COMM_MODE
, comm_mode
) ||
602 nla_put_u8(msg
, NFC_ATTR_RF_MODE
, rf_mode
))
603 goto nla_put_failure
;
605 genlmsg_end(msg
, hdr
);
607 dev
->dep_link_up
= true;
609 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_ATOMIC
);
614 genlmsg_cancel(msg
, hdr
);
620 int nfc_genl_dep_link_down_event(struct nfc_dev
*dev
)
625 pr_debug("DEP link is down\n");
627 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
631 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
632 NFC_CMD_DEP_LINK_DOWN
);
636 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
637 goto nla_put_failure
;
639 genlmsg_end(msg
, hdr
);
641 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_ATOMIC
);
646 genlmsg_cancel(msg
, hdr
);
652 static int nfc_genl_get_device(struct sk_buff
*skb
, struct genl_info
*info
)
659 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
662 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
664 dev
= nfc_get_device(idx
);
668 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
674 rc
= nfc_genl_send_device(msg
, dev
, info
->snd_portid
, info
->snd_seq
,
681 return genlmsg_reply(msg
, info
);
690 static int nfc_genl_dev_up(struct sk_buff
*skb
, struct genl_info
*info
)
696 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
699 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
701 dev
= nfc_get_device(idx
);
705 rc
= nfc_dev_up(dev
);
711 static int nfc_genl_dev_down(struct sk_buff
*skb
, struct genl_info
*info
)
717 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
720 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
722 dev
= nfc_get_device(idx
);
726 rc
= nfc_dev_down(dev
);
732 static int nfc_genl_start_poll(struct sk_buff
*skb
, struct genl_info
*info
)
737 u32 im_protocols
= 0, tm_protocols
= 0;
739 pr_debug("Poll start\n");
741 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
742 ((!info
->attrs
[NFC_ATTR_IM_PROTOCOLS
] &&
743 !info
->attrs
[NFC_ATTR_PROTOCOLS
]) &&
744 !info
->attrs
[NFC_ATTR_TM_PROTOCOLS
]))
747 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
749 if (info
->attrs
[NFC_ATTR_TM_PROTOCOLS
])
750 tm_protocols
= nla_get_u32(info
->attrs
[NFC_ATTR_TM_PROTOCOLS
]);
752 if (info
->attrs
[NFC_ATTR_IM_PROTOCOLS
])
753 im_protocols
= nla_get_u32(info
->attrs
[NFC_ATTR_IM_PROTOCOLS
]);
754 else if (info
->attrs
[NFC_ATTR_PROTOCOLS
])
755 im_protocols
= nla_get_u32(info
->attrs
[NFC_ATTR_PROTOCOLS
]);
757 dev
= nfc_get_device(idx
);
761 mutex_lock(&dev
->genl_data
.genl_data_mutex
);
763 rc
= nfc_start_poll(dev
, im_protocols
, tm_protocols
);
765 dev
->genl_data
.poll_req_portid
= info
->snd_portid
;
767 mutex_unlock(&dev
->genl_data
.genl_data_mutex
);
773 static int nfc_genl_stop_poll(struct sk_buff
*skb
, struct genl_info
*info
)
779 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
782 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
784 dev
= nfc_get_device(idx
);
788 device_lock(&dev
->dev
);
791 device_unlock(&dev
->dev
);
795 device_unlock(&dev
->dev
);
797 mutex_lock(&dev
->genl_data
.genl_data_mutex
);
799 if (dev
->genl_data
.poll_req_portid
!= info
->snd_portid
) {
804 rc
= nfc_stop_poll(dev
);
805 dev
->genl_data
.poll_req_portid
= 0;
808 mutex_unlock(&dev
->genl_data
.genl_data_mutex
);
813 static int nfc_genl_activate_target(struct sk_buff
*skb
, struct genl_info
*info
)
816 u32 device_idx
, target_idx
, protocol
;
819 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
822 device_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
824 dev
= nfc_get_device(device_idx
);
828 target_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_TARGET_INDEX
]);
829 protocol
= nla_get_u32(info
->attrs
[NFC_ATTR_PROTOCOLS
]);
831 nfc_deactivate_target(dev
, target_idx
);
832 rc
= nfc_activate_target(dev
, target_idx
, protocol
);
838 static int nfc_genl_dep_link_up(struct sk_buff
*skb
, struct genl_info
*info
)
845 pr_debug("DEP link up\n");
847 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
848 !info
->attrs
[NFC_ATTR_COMM_MODE
])
851 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
852 if (!info
->attrs
[NFC_ATTR_TARGET_INDEX
])
853 tgt_idx
= NFC_TARGET_IDX_ANY
;
855 tgt_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_TARGET_INDEX
]);
857 comm
= nla_get_u8(info
->attrs
[NFC_ATTR_COMM_MODE
]);
859 if (comm
!= NFC_COMM_ACTIVE
&& comm
!= NFC_COMM_PASSIVE
)
862 dev
= nfc_get_device(idx
);
866 rc
= nfc_dep_link_up(dev
, tgt_idx
, comm
);
873 static int nfc_genl_dep_link_down(struct sk_buff
*skb
, struct genl_info
*info
)
879 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
882 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
884 dev
= nfc_get_device(idx
);
888 rc
= nfc_dep_link_down(dev
);
894 static int nfc_genl_send_params(struct sk_buff
*msg
,
895 struct nfc_llcp_local
*local
,
900 hdr
= genlmsg_put(msg
, portid
, seq
, &nfc_genl_family
, 0,
901 NFC_CMD_LLC_GET_PARAMS
);
905 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, local
->dev
->idx
) ||
906 nla_put_u8(msg
, NFC_ATTR_LLC_PARAM_LTO
, local
->lto
) ||
907 nla_put_u8(msg
, NFC_ATTR_LLC_PARAM_RW
, local
->rw
) ||
908 nla_put_u16(msg
, NFC_ATTR_LLC_PARAM_MIUX
, be16_to_cpu(local
->miux
)))
909 goto nla_put_failure
;
911 return genlmsg_end(msg
, hdr
);
915 genlmsg_cancel(msg
, hdr
);
919 static int nfc_genl_llc_get_params(struct sk_buff
*skb
, struct genl_info
*info
)
922 struct nfc_llcp_local
*local
;
924 struct sk_buff
*msg
= NULL
;
927 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
930 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
932 dev
= nfc_get_device(idx
);
936 device_lock(&dev
->dev
);
938 local
= nfc_llcp_find_local(dev
);
944 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
950 rc
= nfc_genl_send_params(msg
, local
, info
->snd_portid
, info
->snd_seq
);
953 device_unlock(&dev
->dev
);
964 return genlmsg_reply(msg
, info
);
967 static int nfc_genl_llc_set_params(struct sk_buff
*skb
, struct genl_info
*info
)
970 struct nfc_llcp_local
*local
;
976 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
977 (!info
->attrs
[NFC_ATTR_LLC_PARAM_LTO
] &&
978 !info
->attrs
[NFC_ATTR_LLC_PARAM_RW
] &&
979 !info
->attrs
[NFC_ATTR_LLC_PARAM_MIUX
]))
982 if (info
->attrs
[NFC_ATTR_LLC_PARAM_RW
]) {
983 rw
= nla_get_u8(info
->attrs
[NFC_ATTR_LLC_PARAM_RW
]);
985 if (rw
> LLCP_MAX_RW
)
989 if (info
->attrs
[NFC_ATTR_LLC_PARAM_MIUX
]) {
990 miux
= nla_get_u16(info
->attrs
[NFC_ATTR_LLC_PARAM_MIUX
]);
992 if (miux
> LLCP_MAX_MIUX
)
996 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
998 dev
= nfc_get_device(idx
);
1002 device_lock(&dev
->dev
);
1004 local
= nfc_llcp_find_local(dev
);
1006 nfc_put_device(dev
);
1011 if (info
->attrs
[NFC_ATTR_LLC_PARAM_LTO
]) {
1012 if (dev
->dep_link_up
) {
1017 local
->lto
= nla_get_u8(info
->attrs
[NFC_ATTR_LLC_PARAM_LTO
]);
1020 if (info
->attrs
[NFC_ATTR_LLC_PARAM_RW
])
1023 if (info
->attrs
[NFC_ATTR_LLC_PARAM_MIUX
])
1024 local
->miux
= cpu_to_be16(miux
);
1027 device_unlock(&dev
->dev
);
1029 nfc_put_device(dev
);
1034 static int nfc_genl_llc_sdreq(struct sk_buff
*skb
, struct genl_info
*info
)
1036 struct nfc_dev
*dev
;
1037 struct nfc_llcp_local
*local
;
1038 struct nlattr
*attr
, *sdp_attrs
[NFC_SDP_ATTR_MAX
+1];
1043 size_t uri_len
, tlvs_len
;
1044 struct hlist_head sdreq_list
;
1045 struct nfc_llcp_sdp_tlv
*sdreq
;
1047 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
1048 !info
->attrs
[NFC_ATTR_LLC_SDP
])
1051 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
1053 dev
= nfc_get_device(idx
);
1059 device_lock(&dev
->dev
);
1061 if (dev
->dep_link_up
== false) {
1066 local
= nfc_llcp_find_local(dev
);
1068 nfc_put_device(dev
);
1073 INIT_HLIST_HEAD(&sdreq_list
);
1077 nla_for_each_nested(attr
, info
->attrs
[NFC_ATTR_LLC_SDP
], rem
) {
1078 rc
= nla_parse_nested(sdp_attrs
, NFC_SDP_ATTR_MAX
, attr
,
1079 nfc_sdp_genl_policy
);
1086 if (!sdp_attrs
[NFC_SDP_ATTR_URI
])
1089 uri_len
= nla_len(sdp_attrs
[NFC_SDP_ATTR_URI
]);
1093 uri
= nla_data(sdp_attrs
[NFC_SDP_ATTR_URI
]);
1094 if (uri
== NULL
|| *uri
== 0)
1097 tid
= local
->sdreq_next_tid
++;
1099 sdreq
= nfc_llcp_build_sdreq_tlv(tid
, uri
, uri_len
);
1100 if (sdreq
== NULL
) {
1105 tlvs_len
+= sdreq
->tlv_len
;
1107 hlist_add_head(&sdreq
->node
, &sdreq_list
);
1110 if (hlist_empty(&sdreq_list
)) {
1115 rc
= nfc_llcp_send_snl_sdreq(local
, &sdreq_list
, tlvs_len
);
1117 device_unlock(&dev
->dev
);
1119 nfc_put_device(dev
);
1124 static int nfc_genl_fw_download(struct sk_buff
*skb
, struct genl_info
*info
)
1126 struct nfc_dev
*dev
;
1129 char firmware_name
[NFC_FIRMWARE_NAME_MAXSIZE
+ 1];
1131 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
])
1134 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
1136 dev
= nfc_get_device(idx
);
1140 nla_strlcpy(firmware_name
, info
->attrs
[NFC_ATTR_FIRMWARE_NAME
],
1141 sizeof(firmware_name
));
1143 rc
= nfc_fw_download(dev
, firmware_name
);
1145 nfc_put_device(dev
);
1149 int nfc_genl_fw_download_done(struct nfc_dev
*dev
, const char *firmware_name
,
1152 struct sk_buff
*msg
;
1155 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1159 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
1160 NFC_CMD_FW_DOWNLOAD
);
1164 if (nla_put_string(msg
, NFC_ATTR_FIRMWARE_NAME
, firmware_name
) ||
1165 nla_put_u32(msg
, NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS
, result
) ||
1166 nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
))
1167 goto nla_put_failure
;
1169 genlmsg_end(msg
, hdr
);
1171 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
1176 genlmsg_cancel(msg
, hdr
);
1182 static int nfc_genl_enable_se(struct sk_buff
*skb
, struct genl_info
*info
)
1184 struct nfc_dev
*dev
;
1188 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
1189 !info
->attrs
[NFC_ATTR_SE_INDEX
])
1192 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
1193 se_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_SE_INDEX
]);
1195 dev
= nfc_get_device(idx
);
1199 rc
= nfc_enable_se(dev
, se_idx
);
1201 nfc_put_device(dev
);
1205 static int nfc_genl_disable_se(struct sk_buff
*skb
, struct genl_info
*info
)
1207 struct nfc_dev
*dev
;
1211 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
1212 !info
->attrs
[NFC_ATTR_SE_INDEX
])
1215 idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
1216 se_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_SE_INDEX
]);
1218 dev
= nfc_get_device(idx
);
1222 rc
= nfc_disable_se(dev
, se_idx
);
1224 nfc_put_device(dev
);
1228 static int nfc_genl_send_se(struct sk_buff
*msg
, struct nfc_dev
*dev
,
1229 u32 portid
, u32 seq
,
1230 struct netlink_callback
*cb
,
1234 struct nfc_se
*se
, *n
;
1236 list_for_each_entry_safe(se
, n
, &dev
->secure_elements
, list
) {
1237 hdr
= genlmsg_put(msg
, portid
, seq
, &nfc_genl_family
, flags
,
1240 goto nla_put_failure
;
1243 genl_dump_check_consistent(cb
, hdr
, &nfc_genl_family
);
1245 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, dev
->idx
) ||
1246 nla_put_u32(msg
, NFC_ATTR_SE_INDEX
, se
->idx
) ||
1247 nla_put_u8(msg
, NFC_ATTR_SE_TYPE
, se
->type
))
1248 goto nla_put_failure
;
1250 if (genlmsg_end(msg
, hdr
) < 0)
1251 goto nla_put_failure
;
1257 genlmsg_cancel(msg
, hdr
);
1261 static int nfc_genl_dump_ses(struct sk_buff
*skb
,
1262 struct netlink_callback
*cb
)
1264 struct class_dev_iter
*iter
= (struct class_dev_iter
*) cb
->args
[0];
1265 struct nfc_dev
*dev
= (struct nfc_dev
*) cb
->args
[1];
1266 bool first_call
= false;
1270 iter
= kmalloc(sizeof(struct class_dev_iter
), GFP_KERNEL
);
1273 cb
->args
[0] = (long) iter
;
1276 mutex_lock(&nfc_devlist_mutex
);
1278 cb
->seq
= nfc_devlist_generation
;
1281 nfc_device_iter_init(iter
);
1282 dev
= nfc_device_iter_next(iter
);
1288 rc
= nfc_genl_send_se(skb
, dev
, NETLINK_CB(cb
->skb
).portid
,
1289 cb
->nlh
->nlmsg_seq
, cb
, NLM_F_MULTI
);
1293 dev
= nfc_device_iter_next(iter
);
1296 mutex_unlock(&nfc_devlist_mutex
);
1298 cb
->args
[1] = (long) dev
;
1303 static int nfc_genl_dump_ses_done(struct netlink_callback
*cb
)
1305 struct class_dev_iter
*iter
= (struct class_dev_iter
*) cb
->args
[0];
1307 nfc_device_iter_exit(iter
);
1313 static int nfc_se_io(struct nfc_dev
*dev
, u32 se_idx
,
1314 u8
*apdu
, size_t apdu_length
,
1315 se_io_cb_t cb
, void *cb_context
)
1320 pr_debug("%s se index %d\n", dev_name(&dev
->dev
), se_idx
);
1322 device_lock(&dev
->dev
);
1324 if (!device_is_registered(&dev
->dev
)) {
1334 if (!dev
->ops
->se_io
) {
1339 se
= nfc_find_se(dev
, se_idx
);
1345 if (se
->state
!= NFC_SE_ENABLED
) {
1350 rc
= dev
->ops
->se_io(dev
, se_idx
, apdu
,
1351 apdu_length
, cb
, cb_context
);
1354 device_unlock(&dev
->dev
);
1363 static void se_io_cb(void *context
, u8
*apdu
, size_t apdu_len
, int err
)
1365 struct se_io_ctx
*ctx
= context
;
1366 struct sk_buff
*msg
;
1369 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1375 hdr
= genlmsg_put(msg
, 0, 0, &nfc_genl_family
, 0,
1380 if (nla_put_u32(msg
, NFC_ATTR_DEVICE_INDEX
, ctx
->dev_idx
) ||
1381 nla_put_u32(msg
, NFC_ATTR_SE_INDEX
, ctx
->se_idx
) ||
1382 nla_put(msg
, NFC_ATTR_SE_APDU
, apdu_len
, apdu
))
1383 goto nla_put_failure
;
1385 genlmsg_end(msg
, hdr
);
1387 genlmsg_multicast(&nfc_genl_family
, msg
, 0, 0, GFP_KERNEL
);
1394 genlmsg_cancel(msg
, hdr
);
1402 static int nfc_genl_se_io(struct sk_buff
*skb
, struct genl_info
*info
)
1404 struct nfc_dev
*dev
;
1405 struct se_io_ctx
*ctx
;
1406 u32 dev_idx
, se_idx
;
1410 if (!info
->attrs
[NFC_ATTR_DEVICE_INDEX
] ||
1411 !info
->attrs
[NFC_ATTR_SE_INDEX
] ||
1412 !info
->attrs
[NFC_ATTR_SE_APDU
])
1415 dev_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_DEVICE_INDEX
]);
1416 se_idx
= nla_get_u32(info
->attrs
[NFC_ATTR_SE_INDEX
]);
1418 dev
= nfc_get_device(dev_idx
);
1422 if (!dev
->ops
|| !dev
->ops
->se_io
)
1425 apdu_len
= nla_len(info
->attrs
[NFC_ATTR_SE_APDU
]);
1429 apdu
= nla_data(info
->attrs
[NFC_ATTR_SE_APDU
]);
1433 ctx
= kzalloc(sizeof(struct se_io_ctx
), GFP_KERNEL
);
1437 ctx
->dev_idx
= dev_idx
;
1438 ctx
->se_idx
= se_idx
;
1440 return nfc_se_io(dev
, se_idx
, apdu
, apdu_len
, se_io_cb
, ctx
);
1443 static const struct genl_ops nfc_genl_ops
[] = {
1445 .cmd
= NFC_CMD_GET_DEVICE
,
1446 .doit
= nfc_genl_get_device
,
1447 .dumpit
= nfc_genl_dump_devices
,
1448 .done
= nfc_genl_dump_devices_done
,
1449 .policy
= nfc_genl_policy
,
1452 .cmd
= NFC_CMD_DEV_UP
,
1453 .doit
= nfc_genl_dev_up
,
1454 .policy
= nfc_genl_policy
,
1457 .cmd
= NFC_CMD_DEV_DOWN
,
1458 .doit
= nfc_genl_dev_down
,
1459 .policy
= nfc_genl_policy
,
1462 .cmd
= NFC_CMD_START_POLL
,
1463 .doit
= nfc_genl_start_poll
,
1464 .policy
= nfc_genl_policy
,
1467 .cmd
= NFC_CMD_STOP_POLL
,
1468 .doit
= nfc_genl_stop_poll
,
1469 .policy
= nfc_genl_policy
,
1472 .cmd
= NFC_CMD_DEP_LINK_UP
,
1473 .doit
= nfc_genl_dep_link_up
,
1474 .policy
= nfc_genl_policy
,
1477 .cmd
= NFC_CMD_DEP_LINK_DOWN
,
1478 .doit
= nfc_genl_dep_link_down
,
1479 .policy
= nfc_genl_policy
,
1482 .cmd
= NFC_CMD_GET_TARGET
,
1483 .dumpit
= nfc_genl_dump_targets
,
1484 .done
= nfc_genl_dump_targets_done
,
1485 .policy
= nfc_genl_policy
,
1488 .cmd
= NFC_CMD_LLC_GET_PARAMS
,
1489 .doit
= nfc_genl_llc_get_params
,
1490 .policy
= nfc_genl_policy
,
1493 .cmd
= NFC_CMD_LLC_SET_PARAMS
,
1494 .doit
= nfc_genl_llc_set_params
,
1495 .policy
= nfc_genl_policy
,
1498 .cmd
= NFC_CMD_LLC_SDREQ
,
1499 .doit
= nfc_genl_llc_sdreq
,
1500 .policy
= nfc_genl_policy
,
1503 .cmd
= NFC_CMD_FW_DOWNLOAD
,
1504 .doit
= nfc_genl_fw_download
,
1505 .policy
= nfc_genl_policy
,
1508 .cmd
= NFC_CMD_ENABLE_SE
,
1509 .doit
= nfc_genl_enable_se
,
1510 .policy
= nfc_genl_policy
,
1513 .cmd
= NFC_CMD_DISABLE_SE
,
1514 .doit
= nfc_genl_disable_se
,
1515 .policy
= nfc_genl_policy
,
1518 .cmd
= NFC_CMD_GET_SE
,
1519 .dumpit
= nfc_genl_dump_ses
,
1520 .done
= nfc_genl_dump_ses_done
,
1521 .policy
= nfc_genl_policy
,
1524 .cmd
= NFC_CMD_SE_IO
,
1525 .doit
= nfc_genl_se_io
,
1526 .policy
= nfc_genl_policy
,
1529 .cmd
= NFC_CMD_ACTIVATE_TARGET
,
1530 .doit
= nfc_genl_activate_target
,
1531 .policy
= nfc_genl_policy
,
1536 struct urelease_work
{
1537 struct work_struct w
;
1541 static void nfc_urelease_event_work(struct work_struct
*work
)
1543 struct urelease_work
*w
= container_of(work
, struct urelease_work
, w
);
1544 struct class_dev_iter iter
;
1545 struct nfc_dev
*dev
;
1547 pr_debug("portid %d\n", w
->portid
);
1549 mutex_lock(&nfc_devlist_mutex
);
1551 nfc_device_iter_init(&iter
);
1552 dev
= nfc_device_iter_next(&iter
);
1555 mutex_lock(&dev
->genl_data
.genl_data_mutex
);
1557 if (dev
->genl_data
.poll_req_portid
== w
->portid
) {
1559 dev
->genl_data
.poll_req_portid
= 0;
1562 mutex_unlock(&dev
->genl_data
.genl_data_mutex
);
1564 dev
= nfc_device_iter_next(&iter
);
1567 nfc_device_iter_exit(&iter
);
1569 mutex_unlock(&nfc_devlist_mutex
);
1574 static int nfc_genl_rcv_nl_event(struct notifier_block
*this,
1575 unsigned long event
, void *ptr
)
1577 struct netlink_notify
*n
= ptr
;
1578 struct urelease_work
*w
;
1580 if (event
!= NETLINK_URELEASE
|| n
->protocol
!= NETLINK_GENERIC
)
1583 pr_debug("NETLINK_URELEASE event from id %d\n", n
->portid
);
1585 w
= kmalloc(sizeof(*w
), GFP_ATOMIC
);
1587 INIT_WORK((struct work_struct
*) w
, nfc_urelease_event_work
);
1588 w
->portid
= n
->portid
;
1589 schedule_work((struct work_struct
*) w
);
1596 void nfc_genl_data_init(struct nfc_genl_data
*genl_data
)
1598 genl_data
->poll_req_portid
= 0;
1599 mutex_init(&genl_data
->genl_data_mutex
);
1602 void nfc_genl_data_exit(struct nfc_genl_data
*genl_data
)
1604 mutex_destroy(&genl_data
->genl_data_mutex
);
1607 static struct notifier_block nl_notifier
= {
1608 .notifier_call
= nfc_genl_rcv_nl_event
,
1612 * nfc_genl_init() - Initialize netlink interface
1614 * This initialization function registers the nfc netlink family.
1616 int __init
nfc_genl_init(void)
1620 rc
= genl_register_family_with_ops_groups(&nfc_genl_family
,
1626 netlink_register_notifier(&nl_notifier
);
1632 * nfc_genl_exit() - Deinitialize netlink interface
1634 * This exit function unregisters the nfc netlink family.
1636 void nfc_genl_exit(void)
1638 netlink_unregister_notifier(&nl_notifier
);
1639 genl_unregister_family(&nfc_genl_family
);