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 * Vendor commands implementation based on net/wireless/nl80211.c
11 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
12 * Copyright 2013-2014 Intel Mobile Communications GmbH
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see <http://www.gnu.org/licenses/>.
28 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
30 #include <net/genetlink.h>
31 #include <linux/nfc.h>
32 #include <linux/slab.h>
37 static const struct genl_multicast_group nfc_genl_mcgrps[] = {
38 { .name = NFC_GENL_MCAST_EVENT_NAME, },
41 static struct genl_family nfc_genl_family = {
42 .id = GENL_ID_GENERATE,
44 .name = NFC_GENL_NAME,
45 .version = NFC_GENL_VERSION,
46 .maxattr = NFC_ATTR_MAX,
49 static const struct nla_policy nfc_genl_policy[NFC_ATTR_MAX + 1] = {
50 [NFC_ATTR_DEVICE_INDEX] = { .type = NLA_U32 },
51 [NFC_ATTR_DEVICE_NAME] = { .type = NLA_STRING,
52 .len = NFC_DEVICE_NAME_MAXSIZE },
53 [NFC_ATTR_PROTOCOLS] = { .type = NLA_U32 },
54 [NFC_ATTR_COMM_MODE] = { .type = NLA_U8 },
55 [NFC_ATTR_RF_MODE] = { .type = NLA_U8 },
56 [NFC_ATTR_DEVICE_POWERED] = { .type = NLA_U8 },
57 [NFC_ATTR_IM_PROTOCOLS] = { .type = NLA_U32 },
58 [NFC_ATTR_TM_PROTOCOLS] = { .type = NLA_U32 },
59 [NFC_ATTR_LLC_PARAM_LTO] = { .type = NLA_U8 },
60 [NFC_ATTR_LLC_PARAM_RW] = { .type = NLA_U8 },
61 [NFC_ATTR_LLC_PARAM_MIUX] = { .type = NLA_U16 },
62 [NFC_ATTR_LLC_SDP] = { .type = NLA_NESTED },
63 [NFC_ATTR_FIRMWARE_NAME] = { .type = NLA_STRING,
64 .len = NFC_FIRMWARE_NAME_MAXSIZE },
65 [NFC_ATTR_SE_APDU] = { .type = NLA_BINARY },
66 [NFC_ATTR_VENDOR_DATA] = { .type = NLA_BINARY },
70 static const struct nla_policy nfc_sdp_genl_policy[NFC_SDP_ATTR_MAX + 1] = {
71 [NFC_SDP_ATTR_URI] = { .type = NLA_STRING },
72 [NFC_SDP_ATTR_SAP] = { .type = NLA_U8 },
75 static int nfc_genl_send_target(struct sk_buff *msg, struct nfc_target *target,
76 struct netlink_callback *cb, int flags)
80 hdr = genlmsg_put(msg, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
81 &nfc_genl_family, flags, NFC_CMD_GET_TARGET);
85 genl_dump_check_consistent(cb, hdr, &nfc_genl_family);
87 if (nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target->idx) ||
88 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, target->supported_protocols) ||
89 nla_put_u16(msg, NFC_ATTR_TARGET_SENS_RES, target->sens_res) ||
90 nla_put_u8(msg, NFC_ATTR_TARGET_SEL_RES, target->sel_res))
92 if (target->nfcid1_len > 0 &&
93 nla_put(msg, NFC_ATTR_TARGET_NFCID1, target->nfcid1_len,
96 if (target->sensb_res_len > 0 &&
97 nla_put(msg, NFC_ATTR_TARGET_SENSB_RES, target->sensb_res_len,
100 if (target->sensf_res_len > 0 &&
101 nla_put(msg, NFC_ATTR_TARGET_SENSF_RES, target->sensf_res_len,
103 goto nla_put_failure;
105 if (target->is_iso15693) {
106 if (nla_put_u8(msg, NFC_ATTR_TARGET_ISO15693_DSFID,
107 target->iso15693_dsfid) ||
108 nla_put(msg, NFC_ATTR_TARGET_ISO15693_UID,
109 sizeof(target->iso15693_uid), target->iso15693_uid))
110 goto nla_put_failure;
113 genlmsg_end(msg, hdr);
117 genlmsg_cancel(msg, hdr);
121 static struct nfc_dev *__get_device_from_cb(struct netlink_callback *cb)
127 rc = nlmsg_parse(cb->nlh, GENL_HDRLEN + nfc_genl_family.hdrsize,
128 nfc_genl_family.attrbuf,
129 nfc_genl_family.maxattr,
134 if (!nfc_genl_family.attrbuf[NFC_ATTR_DEVICE_INDEX])
135 return ERR_PTR(-EINVAL);
137 idx = nla_get_u32(nfc_genl_family.attrbuf[NFC_ATTR_DEVICE_INDEX]);
139 dev = nfc_get_device(idx);
141 return ERR_PTR(-ENODEV);
146 static int nfc_genl_dump_targets(struct sk_buff *skb,
147 struct netlink_callback *cb)
150 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
154 dev = __get_device_from_cb(cb);
158 cb->args[1] = (long) dev;
161 device_lock(&dev->dev);
163 cb->seq = dev->targets_generation;
165 while (i < dev->n_targets) {
166 rc = nfc_genl_send_target(skb, &dev->targets[i], cb,
174 device_unlock(&dev->dev);
181 static int nfc_genl_dump_targets_done(struct netlink_callback *cb)
183 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
191 int nfc_genl_targets_found(struct nfc_dev *dev)
196 dev->genl_data.poll_req_portid = 0;
198 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
202 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
203 NFC_EVENT_TARGETS_FOUND);
207 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
208 goto nla_put_failure;
210 genlmsg_end(msg, hdr);
212 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
215 genlmsg_cancel(msg, hdr);
221 int nfc_genl_target_lost(struct nfc_dev *dev, u32 target_idx)
226 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
230 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
231 NFC_EVENT_TARGET_LOST);
235 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
236 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
237 goto nla_put_failure;
239 genlmsg_end(msg, hdr);
241 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
246 genlmsg_cancel(msg, hdr);
252 int nfc_genl_tm_activated(struct nfc_dev *dev, u32 protocol)
257 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
261 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
262 NFC_EVENT_TM_ACTIVATED);
266 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
267 goto nla_put_failure;
268 if (nla_put_u32(msg, NFC_ATTR_TM_PROTOCOLS, protocol))
269 goto nla_put_failure;
271 genlmsg_end(msg, hdr);
273 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
278 genlmsg_cancel(msg, hdr);
284 int nfc_genl_tm_deactivated(struct nfc_dev *dev)
289 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
293 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
294 NFC_EVENT_TM_DEACTIVATED);
298 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
299 goto nla_put_failure;
301 genlmsg_end(msg, hdr);
303 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
308 genlmsg_cancel(msg, hdr);
314 int nfc_genl_device_added(struct nfc_dev *dev)
319 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
323 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
324 NFC_EVENT_DEVICE_ADDED);
328 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
329 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
330 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) ||
331 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up))
332 goto nla_put_failure;
334 genlmsg_end(msg, hdr);
336 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
341 genlmsg_cancel(msg, hdr);
347 int nfc_genl_device_removed(struct nfc_dev *dev)
352 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
356 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
357 NFC_EVENT_DEVICE_REMOVED);
361 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
362 goto nla_put_failure;
364 genlmsg_end(msg, hdr);
366 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
371 genlmsg_cancel(msg, hdr);
377 int nfc_genl_llc_send_sdres(struct nfc_dev *dev, struct hlist_head *sdres_list)
380 struct nlattr *sdp_attr, *uri_attr;
381 struct nfc_llcp_sdp_tlv *sdres;
382 struct hlist_node *n;
387 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
391 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
392 NFC_EVENT_LLC_SDRES);
396 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
397 goto nla_put_failure;
399 sdp_attr = nla_nest_start(msg, NFC_ATTR_LLC_SDP);
400 if (sdp_attr == NULL) {
402 goto nla_put_failure;
406 hlist_for_each_entry_safe(sdres, n, sdres_list, node) {
407 pr_debug("uri: %s, sap: %d\n", sdres->uri, sdres->sap);
409 uri_attr = nla_nest_start(msg, i++);
410 if (uri_attr == NULL) {
412 goto nla_put_failure;
415 if (nla_put_u8(msg, NFC_SDP_ATTR_SAP, sdres->sap))
416 goto nla_put_failure;
418 if (nla_put_string(msg, NFC_SDP_ATTR_URI, sdres->uri))
419 goto nla_put_failure;
421 nla_nest_end(msg, uri_attr);
423 hlist_del(&sdres->node);
425 nfc_llcp_free_sdp_tlv(sdres);
428 nla_nest_end(msg, sdp_attr);
430 genlmsg_end(msg, hdr);
432 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
435 genlmsg_cancel(msg, hdr);
440 nfc_llcp_free_sdp_tlv_list(sdres_list);
445 int nfc_genl_se_added(struct nfc_dev *dev, u32 se_idx, u16 type)
450 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
454 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
459 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
460 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
461 nla_put_u8(msg, NFC_ATTR_SE_TYPE, type))
462 goto nla_put_failure;
464 genlmsg_end(msg, hdr);
466 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
471 genlmsg_cancel(msg, hdr);
477 int nfc_genl_se_removed(struct nfc_dev *dev, u32 se_idx)
482 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
486 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
487 NFC_EVENT_SE_REMOVED);
491 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
492 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx))
493 goto nla_put_failure;
495 genlmsg_end(msg, hdr);
497 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
502 genlmsg_cancel(msg, hdr);
508 int nfc_genl_se_transaction(struct nfc_dev *dev, u8 se_idx,
509 struct nfc_evt_transaction *evt_transaction)
515 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
519 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
520 NFC_EVENT_SE_TRANSACTION);
524 se = nfc_find_se(dev, se_idx);
528 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
529 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
530 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type) ||
531 nla_put(msg, NFC_ATTR_SE_AID, evt_transaction->aid_len,
532 evt_transaction->aid) ||
533 nla_put(msg, NFC_ATTR_SE_PARAMS, evt_transaction->params_len,
534 evt_transaction->params))
535 goto nla_put_failure;
537 /* evt_transaction is no more used */
538 devm_kfree(&dev->dev, evt_transaction);
540 genlmsg_end(msg, hdr);
542 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
547 genlmsg_cancel(msg, hdr);
549 /* evt_transaction is no more used */
550 devm_kfree(&dev->dev, evt_transaction);
555 int nfc_genl_se_connectivity(struct nfc_dev *dev, u8 se_idx)
561 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
565 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
566 NFC_EVENT_SE_CONNECTIVITY);
570 se = nfc_find_se(dev, se_idx);
574 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
575 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
576 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
577 goto nla_put_failure;
579 genlmsg_end(msg, hdr);
581 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
586 genlmsg_cancel(msg, hdr);
592 static int nfc_genl_send_device(struct sk_buff *msg, struct nfc_dev *dev,
594 struct netlink_callback *cb,
599 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
605 genl_dump_check_consistent(cb, hdr, &nfc_genl_family);
607 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
608 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
609 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) ||
610 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up) ||
611 nla_put_u8(msg, NFC_ATTR_RF_MODE, dev->rf_mode))
612 goto nla_put_failure;
614 genlmsg_end(msg, hdr);
618 genlmsg_cancel(msg, hdr);
622 static int nfc_genl_dump_devices(struct sk_buff *skb,
623 struct netlink_callback *cb)
625 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
626 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
627 bool first_call = false;
631 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
634 cb->args[0] = (long) iter;
637 mutex_lock(&nfc_devlist_mutex);
639 cb->seq = nfc_devlist_generation;
642 nfc_device_iter_init(iter);
643 dev = nfc_device_iter_next(iter);
649 rc = nfc_genl_send_device(skb, dev, NETLINK_CB(cb->skb).portid,
650 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
654 dev = nfc_device_iter_next(iter);
657 mutex_unlock(&nfc_devlist_mutex);
659 cb->args[1] = (long) dev;
664 static int nfc_genl_dump_devices_done(struct netlink_callback *cb)
666 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
668 nfc_device_iter_exit(iter);
674 int nfc_genl_dep_link_up_event(struct nfc_dev *dev, u32 target_idx,
675 u8 comm_mode, u8 rf_mode)
680 pr_debug("DEP link is up\n");
682 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
686 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, NFC_CMD_DEP_LINK_UP);
690 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
691 goto nla_put_failure;
692 if (rf_mode == NFC_RF_INITIATOR &&
693 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
694 goto nla_put_failure;
695 if (nla_put_u8(msg, NFC_ATTR_COMM_MODE, comm_mode) ||
696 nla_put_u8(msg, NFC_ATTR_RF_MODE, rf_mode))
697 goto nla_put_failure;
699 genlmsg_end(msg, hdr);
701 dev->dep_link_up = true;
703 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
708 genlmsg_cancel(msg, hdr);
714 int nfc_genl_dep_link_down_event(struct nfc_dev *dev)
719 pr_debug("DEP link is down\n");
721 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
725 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
726 NFC_CMD_DEP_LINK_DOWN);
730 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
731 goto nla_put_failure;
733 genlmsg_end(msg, hdr);
735 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
740 genlmsg_cancel(msg, hdr);
746 static int nfc_genl_get_device(struct sk_buff *skb, struct genl_info *info)
753 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
756 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
758 dev = nfc_get_device(idx);
762 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
768 rc = nfc_genl_send_device(msg, dev, info->snd_portid, info->snd_seq,
775 return genlmsg_reply(msg, info);
784 static int nfc_genl_dev_up(struct sk_buff *skb, struct genl_info *info)
790 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
793 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
795 dev = nfc_get_device(idx);
799 rc = nfc_dev_up(dev);
805 static int nfc_genl_dev_down(struct sk_buff *skb, struct genl_info *info)
811 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
814 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
816 dev = nfc_get_device(idx);
820 rc = nfc_dev_down(dev);
826 static int nfc_genl_start_poll(struct sk_buff *skb, struct genl_info *info)
831 u32 im_protocols = 0, tm_protocols = 0;
833 pr_debug("Poll start\n");
835 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
836 ((!info->attrs[NFC_ATTR_IM_PROTOCOLS] &&
837 !info->attrs[NFC_ATTR_PROTOCOLS]) &&
838 !info->attrs[NFC_ATTR_TM_PROTOCOLS]))
841 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
843 if (info->attrs[NFC_ATTR_TM_PROTOCOLS])
844 tm_protocols = nla_get_u32(info->attrs[NFC_ATTR_TM_PROTOCOLS]);
846 if (info->attrs[NFC_ATTR_IM_PROTOCOLS])
847 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_IM_PROTOCOLS]);
848 else if (info->attrs[NFC_ATTR_PROTOCOLS])
849 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
851 dev = nfc_get_device(idx);
855 mutex_lock(&dev->genl_data.genl_data_mutex);
857 rc = nfc_start_poll(dev, im_protocols, tm_protocols);
859 dev->genl_data.poll_req_portid = info->snd_portid;
861 mutex_unlock(&dev->genl_data.genl_data_mutex);
867 static int nfc_genl_stop_poll(struct sk_buff *skb, struct genl_info *info)
873 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
876 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
878 dev = nfc_get_device(idx);
882 device_lock(&dev->dev);
885 device_unlock(&dev->dev);
889 device_unlock(&dev->dev);
891 mutex_lock(&dev->genl_data.genl_data_mutex);
893 if (dev->genl_data.poll_req_portid != info->snd_portid) {
898 rc = nfc_stop_poll(dev);
899 dev->genl_data.poll_req_portid = 0;
902 mutex_unlock(&dev->genl_data.genl_data_mutex);
907 static int nfc_genl_activate_target(struct sk_buff *skb, struct genl_info *info)
910 u32 device_idx, target_idx, protocol;
913 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
916 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
918 dev = nfc_get_device(device_idx);
922 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
923 protocol = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
925 nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP);
926 rc = nfc_activate_target(dev, target_idx, protocol);
932 static int nfc_genl_dep_link_up(struct sk_buff *skb, struct genl_info *info)
939 pr_debug("DEP link up\n");
941 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
942 !info->attrs[NFC_ATTR_COMM_MODE])
945 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
946 if (!info->attrs[NFC_ATTR_TARGET_INDEX])
947 tgt_idx = NFC_TARGET_IDX_ANY;
949 tgt_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
951 comm = nla_get_u8(info->attrs[NFC_ATTR_COMM_MODE]);
953 if (comm != NFC_COMM_ACTIVE && comm != NFC_COMM_PASSIVE)
956 dev = nfc_get_device(idx);
960 rc = nfc_dep_link_up(dev, tgt_idx, comm);
967 static int nfc_genl_dep_link_down(struct sk_buff *skb, struct genl_info *info)
973 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
976 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
978 dev = nfc_get_device(idx);
982 rc = nfc_dep_link_down(dev);
988 static int nfc_genl_send_params(struct sk_buff *msg,
989 struct nfc_llcp_local *local,
994 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, 0,
995 NFC_CMD_LLC_GET_PARAMS);
999 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, local->dev->idx) ||
1000 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_LTO, local->lto) ||
1001 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_RW, local->rw) ||
1002 nla_put_u16(msg, NFC_ATTR_LLC_PARAM_MIUX, be16_to_cpu(local->miux)))
1003 goto nla_put_failure;
1005 genlmsg_end(msg, hdr);
1010 genlmsg_cancel(msg, hdr);
1014 static int nfc_genl_llc_get_params(struct sk_buff *skb, struct genl_info *info)
1016 struct nfc_dev *dev;
1017 struct nfc_llcp_local *local;
1019 struct sk_buff *msg = NULL;
1022 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
1025 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1027 dev = nfc_get_device(idx);
1031 device_lock(&dev->dev);
1033 local = nfc_llcp_find_local(dev);
1039 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1045 rc = nfc_genl_send_params(msg, local, info->snd_portid, info->snd_seq);
1048 device_unlock(&dev->dev);
1050 nfc_put_device(dev);
1059 return genlmsg_reply(msg, info);
1062 static int nfc_genl_llc_set_params(struct sk_buff *skb, struct genl_info *info)
1064 struct nfc_dev *dev;
1065 struct nfc_llcp_local *local;
1071 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1072 (!info->attrs[NFC_ATTR_LLC_PARAM_LTO] &&
1073 !info->attrs[NFC_ATTR_LLC_PARAM_RW] &&
1074 !info->attrs[NFC_ATTR_LLC_PARAM_MIUX]))
1077 if (info->attrs[NFC_ATTR_LLC_PARAM_RW]) {
1078 rw = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_RW]);
1080 if (rw > LLCP_MAX_RW)
1084 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX]) {
1085 miux = nla_get_u16(info->attrs[NFC_ATTR_LLC_PARAM_MIUX]);
1087 if (miux > LLCP_MAX_MIUX)
1091 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1093 dev = nfc_get_device(idx);
1097 device_lock(&dev->dev);
1099 local = nfc_llcp_find_local(dev);
1101 nfc_put_device(dev);
1106 if (info->attrs[NFC_ATTR_LLC_PARAM_LTO]) {
1107 if (dev->dep_link_up) {
1112 local->lto = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_LTO]);
1115 if (info->attrs[NFC_ATTR_LLC_PARAM_RW])
1118 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX])
1119 local->miux = cpu_to_be16(miux);
1122 device_unlock(&dev->dev);
1124 nfc_put_device(dev);
1129 static int nfc_genl_llc_sdreq(struct sk_buff *skb, struct genl_info *info)
1131 struct nfc_dev *dev;
1132 struct nfc_llcp_local *local;
1133 struct nlattr *attr, *sdp_attrs[NFC_SDP_ATTR_MAX+1];
1138 size_t uri_len, tlvs_len;
1139 struct hlist_head sdreq_list;
1140 struct nfc_llcp_sdp_tlv *sdreq;
1142 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1143 !info->attrs[NFC_ATTR_LLC_SDP])
1146 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1148 dev = nfc_get_device(idx);
1152 device_lock(&dev->dev);
1154 if (dev->dep_link_up == false) {
1159 local = nfc_llcp_find_local(dev);
1161 nfc_put_device(dev);
1166 INIT_HLIST_HEAD(&sdreq_list);
1170 nla_for_each_nested(attr, info->attrs[NFC_ATTR_LLC_SDP], rem) {
1171 rc = nla_parse_nested(sdp_attrs, NFC_SDP_ATTR_MAX, attr,
1172 nfc_sdp_genl_policy);
1179 if (!sdp_attrs[NFC_SDP_ATTR_URI])
1182 uri_len = nla_len(sdp_attrs[NFC_SDP_ATTR_URI]);
1186 uri = nla_data(sdp_attrs[NFC_SDP_ATTR_URI]);
1187 if (uri == NULL || *uri == 0)
1190 tid = local->sdreq_next_tid++;
1192 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len);
1193 if (sdreq == NULL) {
1198 tlvs_len += sdreq->tlv_len;
1200 hlist_add_head(&sdreq->node, &sdreq_list);
1203 if (hlist_empty(&sdreq_list)) {
1208 rc = nfc_llcp_send_snl_sdreq(local, &sdreq_list, tlvs_len);
1210 device_unlock(&dev->dev);
1212 nfc_put_device(dev);
1217 static int nfc_genl_fw_download(struct sk_buff *skb, struct genl_info *info)
1219 struct nfc_dev *dev;
1222 char firmware_name[NFC_FIRMWARE_NAME_MAXSIZE + 1];
1224 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
1227 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1229 dev = nfc_get_device(idx);
1233 nla_strlcpy(firmware_name, info->attrs[NFC_ATTR_FIRMWARE_NAME],
1234 sizeof(firmware_name));
1236 rc = nfc_fw_download(dev, firmware_name);
1238 nfc_put_device(dev);
1242 int nfc_genl_fw_download_done(struct nfc_dev *dev, const char *firmware_name,
1245 struct sk_buff *msg;
1248 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1252 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1253 NFC_CMD_FW_DOWNLOAD);
1257 if (nla_put_string(msg, NFC_ATTR_FIRMWARE_NAME, firmware_name) ||
1258 nla_put_u32(msg, NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, result) ||
1259 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
1260 goto nla_put_failure;
1262 genlmsg_end(msg, hdr);
1264 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
1269 genlmsg_cancel(msg, hdr);
1275 static int nfc_genl_enable_se(struct sk_buff *skb, struct genl_info *info)
1277 struct nfc_dev *dev;
1281 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1282 !info->attrs[NFC_ATTR_SE_INDEX])
1285 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1286 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1288 dev = nfc_get_device(idx);
1292 rc = nfc_enable_se(dev, se_idx);
1294 nfc_put_device(dev);
1298 static int nfc_genl_disable_se(struct sk_buff *skb, struct genl_info *info)
1300 struct nfc_dev *dev;
1304 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1305 !info->attrs[NFC_ATTR_SE_INDEX])
1308 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1309 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1311 dev = nfc_get_device(idx);
1315 rc = nfc_disable_se(dev, se_idx);
1317 nfc_put_device(dev);
1321 static int nfc_genl_send_se(struct sk_buff *msg, struct nfc_dev *dev,
1322 u32 portid, u32 seq,
1323 struct netlink_callback *cb,
1327 struct nfc_se *se, *n;
1329 list_for_each_entry_safe(se, n, &dev->secure_elements, list) {
1330 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
1333 goto nla_put_failure;
1336 genl_dump_check_consistent(cb, hdr, &nfc_genl_family);
1338 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
1339 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se->idx) ||
1340 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
1341 goto nla_put_failure;
1343 genlmsg_end(msg, hdr);
1349 genlmsg_cancel(msg, hdr);
1353 static int nfc_genl_dump_ses(struct sk_buff *skb,
1354 struct netlink_callback *cb)
1356 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1357 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
1358 bool first_call = false;
1362 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
1365 cb->args[0] = (long) iter;
1368 mutex_lock(&nfc_devlist_mutex);
1370 cb->seq = nfc_devlist_generation;
1373 nfc_device_iter_init(iter);
1374 dev = nfc_device_iter_next(iter);
1380 rc = nfc_genl_send_se(skb, dev, NETLINK_CB(cb->skb).portid,
1381 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
1385 dev = nfc_device_iter_next(iter);
1388 mutex_unlock(&nfc_devlist_mutex);
1390 cb->args[1] = (long) dev;
1395 static int nfc_genl_dump_ses_done(struct netlink_callback *cb)
1397 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1399 nfc_device_iter_exit(iter);
1405 static int nfc_se_io(struct nfc_dev *dev, u32 se_idx,
1406 u8 *apdu, size_t apdu_length,
1407 se_io_cb_t cb, void *cb_context)
1412 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
1414 device_lock(&dev->dev);
1416 if (!device_is_registered(&dev->dev)) {
1426 if (!dev->ops->se_io) {
1431 se = nfc_find_se(dev, se_idx);
1437 if (se->state != NFC_SE_ENABLED) {
1442 rc = dev->ops->se_io(dev, se_idx, apdu,
1443 apdu_length, cb, cb_context);
1446 device_unlock(&dev->dev);
1455 static void se_io_cb(void *context, u8 *apdu, size_t apdu_len, int err)
1457 struct se_io_ctx *ctx = context;
1458 struct sk_buff *msg;
1461 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1467 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1472 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, ctx->dev_idx) ||
1473 nla_put_u32(msg, NFC_ATTR_SE_INDEX, ctx->se_idx) ||
1474 nla_put(msg, NFC_ATTR_SE_APDU, apdu_len, apdu))
1475 goto nla_put_failure;
1477 genlmsg_end(msg, hdr);
1479 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
1486 genlmsg_cancel(msg, hdr);
1494 static int nfc_genl_se_io(struct sk_buff *skb, struct genl_info *info)
1496 struct nfc_dev *dev;
1497 struct se_io_ctx *ctx;
1498 u32 dev_idx, se_idx;
1502 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1503 !info->attrs[NFC_ATTR_SE_INDEX] ||
1504 !info->attrs[NFC_ATTR_SE_APDU])
1507 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1508 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1510 dev = nfc_get_device(dev_idx);
1514 if (!dev->ops || !dev->ops->se_io)
1517 apdu_len = nla_len(info->attrs[NFC_ATTR_SE_APDU]);
1521 apdu = nla_data(info->attrs[NFC_ATTR_SE_APDU]);
1525 ctx = kzalloc(sizeof(struct se_io_ctx), GFP_KERNEL);
1529 ctx->dev_idx = dev_idx;
1530 ctx->se_idx = se_idx;
1532 return nfc_se_io(dev, se_idx, apdu, apdu_len, se_io_cb, ctx);
1535 static int nfc_genl_vendor_cmd(struct sk_buff *skb,
1536 struct genl_info *info)
1538 struct nfc_dev *dev;
1539 struct nfc_vendor_cmd *cmd;
1540 u32 dev_idx, vid, subcmd;
1545 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1546 !info->attrs[NFC_ATTR_VENDOR_ID] ||
1547 !info->attrs[NFC_ATTR_VENDOR_SUBCMD])
1550 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1551 vid = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_ID]);
1552 subcmd = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_SUBCMD]);
1554 dev = nfc_get_device(dev_idx);
1555 if (!dev || !dev->vendor_cmds || !dev->n_vendor_cmds)
1558 if (info->attrs[NFC_ATTR_VENDOR_DATA]) {
1559 data = nla_data(info->attrs[NFC_ATTR_VENDOR_DATA]);
1560 data_len = nla_len(info->attrs[NFC_ATTR_VENDOR_DATA]);
1568 for (i = 0; i < dev->n_vendor_cmds; i++) {
1569 cmd = &dev->vendor_cmds[i];
1571 if (cmd->vendor_id != vid || cmd->subcmd != subcmd)
1574 dev->cur_cmd_info = info;
1575 err = cmd->doit(dev, data, data_len);
1576 dev->cur_cmd_info = NULL;
1583 /* message building helper */
1584 static inline void *nfc_hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
1587 /* since there is no private header just add the generic one */
1588 return genlmsg_put(skb, portid, seq, &nfc_genl_family, flags, cmd);
1591 static struct sk_buff *
1592 __nfc_alloc_vendor_cmd_skb(struct nfc_dev *dev, int approxlen,
1593 u32 portid, u32 seq,
1594 enum nfc_attrs attr,
1595 u32 oui, u32 subcmd, gfp_t gfp)
1597 struct sk_buff *skb;
1600 skb = nlmsg_new(approxlen + 100, gfp);
1604 hdr = nfc_hdr_put(skb, portid, seq, 0, NFC_CMD_VENDOR);
1610 if (nla_put_u32(skb, NFC_ATTR_DEVICE_INDEX, dev->idx))
1611 goto nla_put_failure;
1612 if (nla_put_u32(skb, NFC_ATTR_VENDOR_ID, oui))
1613 goto nla_put_failure;
1614 if (nla_put_u32(skb, NFC_ATTR_VENDOR_SUBCMD, subcmd))
1615 goto nla_put_failure;
1617 ((void **)skb->cb)[0] = dev;
1618 ((void **)skb->cb)[1] = hdr;
1627 struct sk_buff *__nfc_alloc_vendor_cmd_reply_skb(struct nfc_dev *dev,
1628 enum nfc_attrs attr,
1629 u32 oui, u32 subcmd,
1632 if (WARN_ON(!dev->cur_cmd_info))
1635 return __nfc_alloc_vendor_cmd_skb(dev, approxlen,
1636 dev->cur_cmd_info->snd_portid,
1637 dev->cur_cmd_info->snd_seq, attr,
1638 oui, subcmd, GFP_KERNEL);
1640 EXPORT_SYMBOL(__nfc_alloc_vendor_cmd_reply_skb);
1642 int nfc_vendor_cmd_reply(struct sk_buff *skb)
1644 struct nfc_dev *dev = ((void **)skb->cb)[0];
1645 void *hdr = ((void **)skb->cb)[1];
1647 /* clear CB data for netlink core to own from now on */
1648 memset(skb->cb, 0, sizeof(skb->cb));
1650 if (WARN_ON(!dev->cur_cmd_info)) {
1655 genlmsg_end(skb, hdr);
1656 return genlmsg_reply(skb, dev->cur_cmd_info);
1658 EXPORT_SYMBOL(nfc_vendor_cmd_reply);
1660 static const struct genl_ops nfc_genl_ops[] = {
1662 .cmd = NFC_CMD_GET_DEVICE,
1663 .doit = nfc_genl_get_device,
1664 .dumpit = nfc_genl_dump_devices,
1665 .done = nfc_genl_dump_devices_done,
1666 .policy = nfc_genl_policy,
1669 .cmd = NFC_CMD_DEV_UP,
1670 .doit = nfc_genl_dev_up,
1671 .policy = nfc_genl_policy,
1674 .cmd = NFC_CMD_DEV_DOWN,
1675 .doit = nfc_genl_dev_down,
1676 .policy = nfc_genl_policy,
1679 .cmd = NFC_CMD_START_POLL,
1680 .doit = nfc_genl_start_poll,
1681 .policy = nfc_genl_policy,
1684 .cmd = NFC_CMD_STOP_POLL,
1685 .doit = nfc_genl_stop_poll,
1686 .policy = nfc_genl_policy,
1689 .cmd = NFC_CMD_DEP_LINK_UP,
1690 .doit = nfc_genl_dep_link_up,
1691 .policy = nfc_genl_policy,
1694 .cmd = NFC_CMD_DEP_LINK_DOWN,
1695 .doit = nfc_genl_dep_link_down,
1696 .policy = nfc_genl_policy,
1699 .cmd = NFC_CMD_GET_TARGET,
1700 .dumpit = nfc_genl_dump_targets,
1701 .done = nfc_genl_dump_targets_done,
1702 .policy = nfc_genl_policy,
1705 .cmd = NFC_CMD_LLC_GET_PARAMS,
1706 .doit = nfc_genl_llc_get_params,
1707 .policy = nfc_genl_policy,
1710 .cmd = NFC_CMD_LLC_SET_PARAMS,
1711 .doit = nfc_genl_llc_set_params,
1712 .policy = nfc_genl_policy,
1715 .cmd = NFC_CMD_LLC_SDREQ,
1716 .doit = nfc_genl_llc_sdreq,
1717 .policy = nfc_genl_policy,
1720 .cmd = NFC_CMD_FW_DOWNLOAD,
1721 .doit = nfc_genl_fw_download,
1722 .policy = nfc_genl_policy,
1725 .cmd = NFC_CMD_ENABLE_SE,
1726 .doit = nfc_genl_enable_se,
1727 .policy = nfc_genl_policy,
1730 .cmd = NFC_CMD_DISABLE_SE,
1731 .doit = nfc_genl_disable_se,
1732 .policy = nfc_genl_policy,
1735 .cmd = NFC_CMD_GET_SE,
1736 .dumpit = nfc_genl_dump_ses,
1737 .done = nfc_genl_dump_ses_done,
1738 .policy = nfc_genl_policy,
1741 .cmd = NFC_CMD_SE_IO,
1742 .doit = nfc_genl_se_io,
1743 .policy = nfc_genl_policy,
1746 .cmd = NFC_CMD_ACTIVATE_TARGET,
1747 .doit = nfc_genl_activate_target,
1748 .policy = nfc_genl_policy,
1751 .cmd = NFC_CMD_VENDOR,
1752 .doit = nfc_genl_vendor_cmd,
1753 .policy = nfc_genl_policy,
1758 struct urelease_work {
1759 struct work_struct w;
1763 static void nfc_urelease_event_work(struct work_struct *work)
1765 struct urelease_work *w = container_of(work, struct urelease_work, w);
1766 struct class_dev_iter iter;
1767 struct nfc_dev *dev;
1769 pr_debug("portid %d\n", w->portid);
1771 mutex_lock(&nfc_devlist_mutex);
1773 nfc_device_iter_init(&iter);
1774 dev = nfc_device_iter_next(&iter);
1777 mutex_lock(&dev->genl_data.genl_data_mutex);
1779 if (dev->genl_data.poll_req_portid == w->portid) {
1781 dev->genl_data.poll_req_portid = 0;
1784 mutex_unlock(&dev->genl_data.genl_data_mutex);
1786 dev = nfc_device_iter_next(&iter);
1789 nfc_device_iter_exit(&iter);
1791 mutex_unlock(&nfc_devlist_mutex);
1796 static int nfc_genl_rcv_nl_event(struct notifier_block *this,
1797 unsigned long event, void *ptr)
1799 struct netlink_notify *n = ptr;
1800 struct urelease_work *w;
1802 if (event != NETLINK_URELEASE || n->protocol != NETLINK_GENERIC)
1805 pr_debug("NETLINK_URELEASE event from id %d\n", n->portid);
1807 w = kmalloc(sizeof(*w), GFP_ATOMIC);
1809 INIT_WORK((struct work_struct *) w, nfc_urelease_event_work);
1810 w->portid = n->portid;
1811 schedule_work((struct work_struct *) w);
1818 void nfc_genl_data_init(struct nfc_genl_data *genl_data)
1820 genl_data->poll_req_portid = 0;
1821 mutex_init(&genl_data->genl_data_mutex);
1824 void nfc_genl_data_exit(struct nfc_genl_data *genl_data)
1826 mutex_destroy(&genl_data->genl_data_mutex);
1829 static struct notifier_block nl_notifier = {
1830 .notifier_call = nfc_genl_rcv_nl_event,
1834 * nfc_genl_init() - Initialize netlink interface
1836 * This initialization function registers the nfc netlink family.
1838 int __init nfc_genl_init(void)
1842 rc = genl_register_family_with_ops_groups(&nfc_genl_family,
1848 netlink_register_notifier(&nl_notifier);
1854 * nfc_genl_exit() - Deinitialize netlink interface
1856 * This exit function unregisters the nfc netlink family.
1858 void nfc_genl_exit(void)
1860 netlink_unregister_notifier(&nl_notifier);
1861 genl_unregister_family(&nfc_genl_family);