1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2011 Instituto Nokia de Tecnologia
9 * Vendor commands implementation based on net/wireless/nl80211.c
13 * Copyright 2013-2014 Intel Mobile Communications GmbH
16 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
18 #include <net/genetlink.h>
19 #include <linux/nfc.h>
20 #include <linux/slab.h>
25 static const struct genl_multicast_group nfc_genl_mcgrps[] = {
26 { .name = NFC_GENL_MCAST_EVENT_NAME, },
29 static struct genl_family nfc_genl_family;
30 static const struct nla_policy nfc_genl_policy[NFC_ATTR_MAX + 1] = {
31 [NFC_ATTR_DEVICE_INDEX] = { .type = NLA_U32 },
32 [NFC_ATTR_DEVICE_NAME] = { .type = NLA_STRING,
33 .len = NFC_DEVICE_NAME_MAXSIZE },
34 [NFC_ATTR_PROTOCOLS] = { .type = NLA_U32 },
35 [NFC_ATTR_TARGET_INDEX] = { .type = NLA_U32 },
36 [NFC_ATTR_COMM_MODE] = { .type = NLA_U8 },
37 [NFC_ATTR_RF_MODE] = { .type = NLA_U8 },
38 [NFC_ATTR_DEVICE_POWERED] = { .type = NLA_U8 },
39 [NFC_ATTR_IM_PROTOCOLS] = { .type = NLA_U32 },
40 [NFC_ATTR_TM_PROTOCOLS] = { .type = NLA_U32 },
41 [NFC_ATTR_LLC_PARAM_LTO] = { .type = NLA_U8 },
42 [NFC_ATTR_LLC_PARAM_RW] = { .type = NLA_U8 },
43 [NFC_ATTR_LLC_PARAM_MIUX] = { .type = NLA_U16 },
44 [NFC_ATTR_LLC_SDP] = { .type = NLA_NESTED },
45 [NFC_ATTR_FIRMWARE_NAME] = { .type = NLA_STRING,
46 .len = NFC_FIRMWARE_NAME_MAXSIZE },
47 [NFC_ATTR_SE_INDEX] = { .type = NLA_U32 },
48 [NFC_ATTR_SE_APDU] = { .type = NLA_BINARY },
49 [NFC_ATTR_VENDOR_ID] = { .type = NLA_U32 },
50 [NFC_ATTR_VENDOR_SUBCMD] = { .type = NLA_U32 },
51 [NFC_ATTR_VENDOR_DATA] = { .type = NLA_BINARY },
55 static const struct nla_policy nfc_sdp_genl_policy[NFC_SDP_ATTR_MAX + 1] = {
56 [NFC_SDP_ATTR_URI] = { .type = NLA_STRING,
58 [NFC_SDP_ATTR_SAP] = { .type = NLA_U8 },
61 static int nfc_genl_send_target(struct sk_buff *msg, struct nfc_target *target,
62 struct netlink_callback *cb, int flags)
66 hdr = genlmsg_put(msg, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
67 &nfc_genl_family, flags, NFC_CMD_GET_TARGET);
71 genl_dump_check_consistent(cb, hdr);
73 if (nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target->idx) ||
74 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, target->supported_protocols) ||
75 nla_put_u16(msg, NFC_ATTR_TARGET_SENS_RES, target->sens_res) ||
76 nla_put_u8(msg, NFC_ATTR_TARGET_SEL_RES, target->sel_res))
78 if (target->nfcid1_len > 0 &&
79 nla_put(msg, NFC_ATTR_TARGET_NFCID1, target->nfcid1_len,
82 if (target->sensb_res_len > 0 &&
83 nla_put(msg, NFC_ATTR_TARGET_SENSB_RES, target->sensb_res_len,
86 if (target->sensf_res_len > 0 &&
87 nla_put(msg, NFC_ATTR_TARGET_SENSF_RES, target->sensf_res_len,
91 if (target->is_iso15693) {
92 if (nla_put_u8(msg, NFC_ATTR_TARGET_ISO15693_DSFID,
93 target->iso15693_dsfid) ||
94 nla_put(msg, NFC_ATTR_TARGET_ISO15693_UID,
95 sizeof(target->iso15693_uid), target->iso15693_uid))
99 if (target->ats_len > 0 &&
100 nla_put(msg, NFC_ATTR_TARGET_ATS, target->ats_len,
102 goto nla_put_failure;
104 genlmsg_end(msg, hdr);
108 genlmsg_cancel(msg, hdr);
112 static struct nfc_dev *__get_device_from_cb(struct netlink_callback *cb)
114 const struct genl_dumpit_info *info = genl_dumpit_info(cb);
118 if (!info->info.attrs[NFC_ATTR_DEVICE_INDEX])
119 return ERR_PTR(-EINVAL);
121 idx = nla_get_u32(info->info.attrs[NFC_ATTR_DEVICE_INDEX]);
123 dev = nfc_get_device(idx);
125 return ERR_PTR(-ENODEV);
130 static int nfc_genl_dump_targets(struct sk_buff *skb,
131 struct netlink_callback *cb)
134 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
138 dev = __get_device_from_cb(cb);
142 cb->args[1] = (long) dev;
145 device_lock(&dev->dev);
147 cb->seq = dev->targets_generation;
149 while (i < dev->n_targets) {
150 rc = nfc_genl_send_target(skb, &dev->targets[i], cb,
158 device_unlock(&dev->dev);
165 static int nfc_genl_dump_targets_done(struct netlink_callback *cb)
167 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
175 int nfc_genl_targets_found(struct nfc_dev *dev)
180 dev->genl_data.poll_req_portid = 0;
182 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
186 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
187 NFC_EVENT_TARGETS_FOUND);
191 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
192 goto nla_put_failure;
194 genlmsg_end(msg, hdr);
196 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
204 int nfc_genl_target_lost(struct nfc_dev *dev, u32 target_idx)
209 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
213 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
214 NFC_EVENT_TARGET_LOST);
218 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
219 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
220 goto nla_put_failure;
222 genlmsg_end(msg, hdr);
224 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
234 int nfc_genl_tm_activated(struct nfc_dev *dev, u32 protocol)
239 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
243 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
244 NFC_EVENT_TM_ACTIVATED);
248 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
249 goto nla_put_failure;
250 if (nla_put_u32(msg, NFC_ATTR_TM_PROTOCOLS, protocol))
251 goto nla_put_failure;
253 genlmsg_end(msg, hdr);
255 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
265 int nfc_genl_tm_deactivated(struct nfc_dev *dev)
270 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
274 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
275 NFC_EVENT_TM_DEACTIVATED);
279 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
280 goto nla_put_failure;
282 genlmsg_end(msg, hdr);
284 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
294 static int nfc_genl_setup_device_added(struct nfc_dev *dev, struct sk_buff *msg)
296 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
297 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
298 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) ||
299 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up) ||
300 nla_put_u8(msg, NFC_ATTR_RF_MODE, dev->rf_mode))
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 (nfc_genl_setup_device_added(dev, msg))
320 goto nla_put_failure;
322 genlmsg_end(msg, hdr);
324 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
334 int nfc_genl_device_removed(struct nfc_dev *dev)
339 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
343 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
344 NFC_EVENT_DEVICE_REMOVED);
348 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
349 goto nla_put_failure;
351 genlmsg_end(msg, hdr);
353 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
363 int nfc_genl_llc_send_sdres(struct nfc_dev *dev, struct hlist_head *sdres_list)
366 struct nlattr *sdp_attr, *uri_attr;
367 struct nfc_llcp_sdp_tlv *sdres;
368 struct hlist_node *n;
373 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
377 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
378 NFC_EVENT_LLC_SDRES);
382 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
383 goto nla_put_failure;
385 sdp_attr = nla_nest_start_noflag(msg, NFC_ATTR_LLC_SDP);
386 if (sdp_attr == NULL) {
388 goto nla_put_failure;
392 hlist_for_each_entry_safe(sdres, n, sdres_list, node) {
393 pr_debug("uri: %s, sap: %d\n", sdres->uri, sdres->sap);
395 uri_attr = nla_nest_start_noflag(msg, i++);
396 if (uri_attr == NULL) {
398 goto nla_put_failure;
401 if (nla_put_u8(msg, NFC_SDP_ATTR_SAP, sdres->sap))
402 goto nla_put_failure;
404 if (nla_put_string(msg, NFC_SDP_ATTR_URI, sdres->uri))
405 goto nla_put_failure;
407 nla_nest_end(msg, uri_attr);
409 hlist_del(&sdres->node);
411 nfc_llcp_free_sdp_tlv(sdres);
414 nla_nest_end(msg, sdp_attr);
416 genlmsg_end(msg, hdr);
418 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
424 nfc_llcp_free_sdp_tlv_list(sdres_list);
429 int nfc_genl_se_added(struct nfc_dev *dev, u32 se_idx, u16 type)
434 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
438 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
443 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
444 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
445 nla_put_u8(msg, NFC_ATTR_SE_TYPE, type))
446 goto nla_put_failure;
448 genlmsg_end(msg, hdr);
450 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
460 int nfc_genl_se_removed(struct nfc_dev *dev, u32 se_idx)
465 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
469 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
470 NFC_EVENT_SE_REMOVED);
474 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
475 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx))
476 goto nla_put_failure;
478 genlmsg_end(msg, hdr);
480 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
490 int nfc_genl_se_transaction(struct nfc_dev *dev, u8 se_idx,
491 struct nfc_evt_transaction *evt_transaction)
497 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
501 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
502 NFC_EVENT_SE_TRANSACTION);
506 se = nfc_find_se(dev, se_idx);
510 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
511 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
512 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type) ||
513 nla_put(msg, NFC_ATTR_SE_AID, evt_transaction->aid_len,
514 evt_transaction->aid) ||
515 nla_put(msg, NFC_ATTR_SE_PARAMS, evt_transaction->params_len,
516 evt_transaction->params))
517 goto nla_put_failure;
519 /* evt_transaction is no more used */
520 devm_kfree(&dev->dev, evt_transaction);
522 genlmsg_end(msg, hdr);
524 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
530 /* evt_transaction is no more used */
531 devm_kfree(&dev->dev, evt_transaction);
536 int nfc_genl_se_connectivity(struct nfc_dev *dev, u8 se_idx)
538 const struct nfc_se *se;
542 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
546 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
547 NFC_EVENT_SE_CONNECTIVITY);
551 se = nfc_find_se(dev, se_idx);
555 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
556 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
557 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
558 goto nla_put_failure;
560 genlmsg_end(msg, hdr);
562 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
572 static int nfc_genl_send_device(struct sk_buff *msg, struct nfc_dev *dev,
574 struct netlink_callback *cb,
579 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
585 genl_dump_check_consistent(cb, hdr);
587 if (nfc_genl_setup_device_added(dev, msg))
588 goto nla_put_failure;
590 genlmsg_end(msg, hdr);
594 genlmsg_cancel(msg, hdr);
598 static int nfc_genl_dump_devices(struct sk_buff *skb,
599 struct netlink_callback *cb)
601 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
602 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
603 bool first_call = false;
607 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
610 cb->args[0] = (long) iter;
613 mutex_lock(&nfc_devlist_mutex);
615 cb->seq = nfc_devlist_generation;
618 nfc_device_iter_init(iter);
619 dev = nfc_device_iter_next(iter);
625 rc = nfc_genl_send_device(skb, dev, NETLINK_CB(cb->skb).portid,
626 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
630 dev = nfc_device_iter_next(iter);
633 mutex_unlock(&nfc_devlist_mutex);
635 cb->args[1] = (long) dev;
640 static int nfc_genl_dump_devices_done(struct netlink_callback *cb)
642 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
645 nfc_device_iter_exit(iter);
652 int nfc_genl_dep_link_up_event(struct nfc_dev *dev, u32 target_idx,
653 u8 comm_mode, u8 rf_mode)
658 pr_debug("DEP link is up\n");
660 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
664 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, NFC_CMD_DEP_LINK_UP);
668 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
669 goto nla_put_failure;
670 if (rf_mode == NFC_RF_INITIATOR &&
671 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
672 goto nla_put_failure;
673 if (nla_put_u8(msg, NFC_ATTR_COMM_MODE, comm_mode) ||
674 nla_put_u8(msg, NFC_ATTR_RF_MODE, rf_mode))
675 goto nla_put_failure;
677 genlmsg_end(msg, hdr);
679 dev->dep_link_up = true;
681 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
691 int nfc_genl_dep_link_down_event(struct nfc_dev *dev)
696 pr_debug("DEP link is down\n");
698 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
702 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
703 NFC_CMD_DEP_LINK_DOWN);
707 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
708 goto nla_put_failure;
710 genlmsg_end(msg, hdr);
712 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
722 static int nfc_genl_get_device(struct sk_buff *skb, struct genl_info *info)
729 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
732 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
734 dev = nfc_get_device(idx);
738 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
744 rc = nfc_genl_send_device(msg, dev, info->snd_portid, info->snd_seq,
751 return genlmsg_reply(msg, info);
760 static int nfc_genl_dev_up(struct sk_buff *skb, struct genl_info *info)
766 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
769 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
771 dev = nfc_get_device(idx);
775 rc = nfc_dev_up(dev);
781 static int nfc_genl_dev_down(struct sk_buff *skb, struct genl_info *info)
787 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
790 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
792 dev = nfc_get_device(idx);
796 rc = nfc_dev_down(dev);
802 static int nfc_genl_start_poll(struct sk_buff *skb, struct genl_info *info)
807 u32 im_protocols = 0, tm_protocols = 0;
809 pr_debug("Poll start\n");
811 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
812 ((!info->attrs[NFC_ATTR_IM_PROTOCOLS] &&
813 !info->attrs[NFC_ATTR_PROTOCOLS]) &&
814 !info->attrs[NFC_ATTR_TM_PROTOCOLS]))
817 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
819 if (info->attrs[NFC_ATTR_TM_PROTOCOLS])
820 tm_protocols = nla_get_u32(info->attrs[NFC_ATTR_TM_PROTOCOLS]);
822 if (info->attrs[NFC_ATTR_IM_PROTOCOLS])
823 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_IM_PROTOCOLS]);
824 else if (info->attrs[NFC_ATTR_PROTOCOLS])
825 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
827 dev = nfc_get_device(idx);
831 mutex_lock(&dev->genl_data.genl_data_mutex);
833 rc = nfc_start_poll(dev, im_protocols, tm_protocols);
835 dev->genl_data.poll_req_portid = info->snd_portid;
837 mutex_unlock(&dev->genl_data.genl_data_mutex);
843 static int nfc_genl_stop_poll(struct sk_buff *skb, struct genl_info *info)
849 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
852 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
854 dev = nfc_get_device(idx);
858 device_lock(&dev->dev);
861 device_unlock(&dev->dev);
866 device_unlock(&dev->dev);
868 mutex_lock(&dev->genl_data.genl_data_mutex);
870 if (dev->genl_data.poll_req_portid != info->snd_portid) {
875 rc = nfc_stop_poll(dev);
876 dev->genl_data.poll_req_portid = 0;
879 mutex_unlock(&dev->genl_data.genl_data_mutex);
884 static int nfc_genl_activate_target(struct sk_buff *skb, struct genl_info *info)
887 u32 device_idx, target_idx, protocol;
890 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
891 !info->attrs[NFC_ATTR_TARGET_INDEX] ||
892 !info->attrs[NFC_ATTR_PROTOCOLS])
895 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
897 dev = nfc_get_device(device_idx);
901 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
902 protocol = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
904 nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP);
905 rc = nfc_activate_target(dev, target_idx, protocol);
911 static int nfc_genl_deactivate_target(struct sk_buff *skb,
912 struct genl_info *info)
915 u32 device_idx, target_idx;
918 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
919 !info->attrs[NFC_ATTR_TARGET_INDEX])
922 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
924 dev = nfc_get_device(device_idx);
928 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
930 rc = nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP);
936 static int nfc_genl_dep_link_up(struct sk_buff *skb, struct genl_info *info)
943 pr_debug("DEP link up\n");
945 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
946 !info->attrs[NFC_ATTR_COMM_MODE])
949 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
950 if (!info->attrs[NFC_ATTR_TARGET_INDEX])
951 tgt_idx = NFC_TARGET_IDX_ANY;
953 tgt_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
955 comm = nla_get_u8(info->attrs[NFC_ATTR_COMM_MODE]);
957 if (comm != NFC_COMM_ACTIVE && comm != NFC_COMM_PASSIVE)
960 dev = nfc_get_device(idx);
964 rc = nfc_dep_link_up(dev, tgt_idx, comm);
971 static int nfc_genl_dep_link_down(struct sk_buff *skb, struct genl_info *info)
977 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
980 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
982 dev = nfc_get_device(idx);
986 rc = nfc_dep_link_down(dev);
992 static int nfc_genl_send_params(struct sk_buff *msg,
993 struct nfc_llcp_local *local,
998 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, 0,
999 NFC_CMD_LLC_GET_PARAMS);
1003 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, local->dev->idx) ||
1004 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_LTO, local->lto) ||
1005 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_RW, local->rw) ||
1006 nla_put_u16(msg, NFC_ATTR_LLC_PARAM_MIUX, be16_to_cpu(local->miux)))
1007 goto nla_put_failure;
1009 genlmsg_end(msg, hdr);
1013 genlmsg_cancel(msg, hdr);
1017 static int nfc_genl_llc_get_params(struct sk_buff *skb, struct genl_info *info)
1019 struct nfc_dev *dev;
1020 struct nfc_llcp_local *local;
1022 struct sk_buff *msg = NULL;
1025 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
1028 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1030 dev = nfc_get_device(idx);
1034 device_lock(&dev->dev);
1036 local = nfc_llcp_find_local(dev);
1042 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1048 rc = nfc_genl_send_params(msg, local, info->snd_portid, info->snd_seq);
1051 nfc_llcp_local_put(local);
1054 device_unlock(&dev->dev);
1056 nfc_put_device(dev);
1065 return genlmsg_reply(msg, info);
1068 static int nfc_genl_llc_set_params(struct sk_buff *skb, struct genl_info *info)
1070 struct nfc_dev *dev;
1071 struct nfc_llcp_local *local;
1077 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1078 (!info->attrs[NFC_ATTR_LLC_PARAM_LTO] &&
1079 !info->attrs[NFC_ATTR_LLC_PARAM_RW] &&
1080 !info->attrs[NFC_ATTR_LLC_PARAM_MIUX]))
1083 if (info->attrs[NFC_ATTR_LLC_PARAM_RW]) {
1084 rw = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_RW]);
1086 if (rw > LLCP_MAX_RW)
1090 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX]) {
1091 miux = nla_get_u16(info->attrs[NFC_ATTR_LLC_PARAM_MIUX]);
1093 if (miux > LLCP_MAX_MIUX)
1097 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1099 dev = nfc_get_device(idx);
1103 device_lock(&dev->dev);
1105 local = nfc_llcp_find_local(dev);
1111 if (info->attrs[NFC_ATTR_LLC_PARAM_LTO]) {
1112 if (dev->dep_link_up) {
1117 local->lto = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_LTO]);
1120 if (info->attrs[NFC_ATTR_LLC_PARAM_RW])
1123 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX])
1124 local->miux = cpu_to_be16(miux);
1127 nfc_llcp_local_put(local);
1130 device_unlock(&dev->dev);
1132 nfc_put_device(dev);
1137 static int nfc_genl_llc_sdreq(struct sk_buff *skb, struct genl_info *info)
1139 struct nfc_dev *dev;
1140 struct nfc_llcp_local *local;
1141 struct nlattr *attr, *sdp_attrs[NFC_SDP_ATTR_MAX+1];
1146 size_t uri_len, tlvs_len;
1147 struct hlist_head sdreq_list;
1148 struct nfc_llcp_sdp_tlv *sdreq;
1150 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1151 !info->attrs[NFC_ATTR_LLC_SDP])
1154 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1156 dev = nfc_get_device(idx);
1160 device_lock(&dev->dev);
1162 if (dev->dep_link_up == false) {
1167 local = nfc_llcp_find_local(dev);
1173 INIT_HLIST_HEAD(&sdreq_list);
1177 nla_for_each_nested(attr, info->attrs[NFC_ATTR_LLC_SDP], rem) {
1178 rc = nla_parse_nested_deprecated(sdp_attrs, NFC_SDP_ATTR_MAX,
1179 attr, nfc_sdp_genl_policy,
1187 if (!sdp_attrs[NFC_SDP_ATTR_URI])
1190 uri_len = nla_len(sdp_attrs[NFC_SDP_ATTR_URI]);
1194 uri = nla_data(sdp_attrs[NFC_SDP_ATTR_URI]);
1195 if (uri == NULL || *uri == 0)
1198 tid = local->sdreq_next_tid++;
1200 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len);
1201 if (sdreq == NULL) {
1206 tlvs_len += sdreq->tlv_len;
1208 hlist_add_head(&sdreq->node, &sdreq_list);
1211 if (hlist_empty(&sdreq_list)) {
1216 rc = nfc_llcp_send_snl_sdreq(local, &sdreq_list, tlvs_len);
1219 nfc_llcp_local_put(local);
1222 device_unlock(&dev->dev);
1224 nfc_put_device(dev);
1229 static int nfc_genl_fw_download(struct sk_buff *skb, struct genl_info *info)
1231 struct nfc_dev *dev;
1234 char firmware_name[NFC_FIRMWARE_NAME_MAXSIZE + 1];
1236 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || !info->attrs[NFC_ATTR_FIRMWARE_NAME])
1239 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1241 dev = nfc_get_device(idx);
1245 nla_strscpy(firmware_name, info->attrs[NFC_ATTR_FIRMWARE_NAME],
1246 sizeof(firmware_name));
1248 rc = nfc_fw_download(dev, firmware_name);
1250 nfc_put_device(dev);
1254 int nfc_genl_fw_download_done(struct nfc_dev *dev, const char *firmware_name,
1257 struct sk_buff *msg;
1260 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1264 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1265 NFC_CMD_FW_DOWNLOAD);
1269 if (nla_put_string(msg, NFC_ATTR_FIRMWARE_NAME, firmware_name) ||
1270 nla_put_u32(msg, NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, result) ||
1271 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
1272 goto nla_put_failure;
1274 genlmsg_end(msg, hdr);
1276 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
1286 static int nfc_genl_enable_se(struct sk_buff *skb, struct genl_info *info)
1288 struct nfc_dev *dev;
1292 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1293 !info->attrs[NFC_ATTR_SE_INDEX])
1296 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1297 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1299 dev = nfc_get_device(idx);
1303 rc = nfc_enable_se(dev, se_idx);
1305 nfc_put_device(dev);
1309 static int nfc_genl_disable_se(struct sk_buff *skb, struct genl_info *info)
1311 struct nfc_dev *dev;
1315 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1316 !info->attrs[NFC_ATTR_SE_INDEX])
1319 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1320 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1322 dev = nfc_get_device(idx);
1326 rc = nfc_disable_se(dev, se_idx);
1328 nfc_put_device(dev);
1332 static int nfc_genl_send_se(struct sk_buff *msg, struct nfc_dev *dev,
1333 u32 portid, u32 seq,
1334 struct netlink_callback *cb,
1338 struct nfc_se *se, *n;
1340 list_for_each_entry_safe(se, n, &dev->secure_elements, list) {
1341 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
1344 goto nla_put_failure;
1347 genl_dump_check_consistent(cb, hdr);
1349 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
1350 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se->idx) ||
1351 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
1352 goto nla_put_failure;
1354 genlmsg_end(msg, hdr);
1360 genlmsg_cancel(msg, hdr);
1364 static int nfc_genl_dump_ses(struct sk_buff *skb,
1365 struct netlink_callback *cb)
1367 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1368 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
1369 bool first_call = false;
1373 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
1376 cb->args[0] = (long) iter;
1379 mutex_lock(&nfc_devlist_mutex);
1381 cb->seq = nfc_devlist_generation;
1384 nfc_device_iter_init(iter);
1385 dev = nfc_device_iter_next(iter);
1391 rc = nfc_genl_send_se(skb, dev, NETLINK_CB(cb->skb).portid,
1392 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
1396 dev = nfc_device_iter_next(iter);
1399 mutex_unlock(&nfc_devlist_mutex);
1401 cb->args[1] = (long) dev;
1406 static int nfc_genl_dump_ses_done(struct netlink_callback *cb)
1408 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1411 nfc_device_iter_exit(iter);
1418 static int nfc_se_io(struct nfc_dev *dev, u32 se_idx,
1419 u8 *apdu, size_t apdu_length,
1420 se_io_cb_t cb, void *cb_context)
1425 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
1427 device_lock(&dev->dev);
1429 if (!device_is_registered(&dev->dev)) {
1439 if (!dev->ops->se_io) {
1444 se = nfc_find_se(dev, se_idx);
1450 if (se->state != NFC_SE_ENABLED) {
1455 rc = dev->ops->se_io(dev, se_idx, apdu,
1456 apdu_length, cb, cb_context);
1458 device_unlock(&dev->dev);
1462 device_unlock(&dev->dev);
1472 static void se_io_cb(void *context, u8 *apdu, size_t apdu_len, int err)
1474 struct se_io_ctx *ctx = context;
1475 struct sk_buff *msg;
1478 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1484 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1489 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, ctx->dev_idx) ||
1490 nla_put_u32(msg, NFC_ATTR_SE_INDEX, ctx->se_idx) ||
1491 nla_put(msg, NFC_ATTR_SE_APDU, apdu_len, apdu))
1492 goto nla_put_failure;
1494 genlmsg_end(msg, hdr);
1496 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
1510 static int nfc_genl_se_io(struct sk_buff *skb, struct genl_info *info)
1512 struct nfc_dev *dev;
1513 struct se_io_ctx *ctx;
1514 u32 dev_idx, se_idx;
1519 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1520 !info->attrs[NFC_ATTR_SE_INDEX] ||
1521 !info->attrs[NFC_ATTR_SE_APDU])
1524 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1525 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1527 dev = nfc_get_device(dev_idx);
1531 if (!dev->ops || !dev->ops->se_io) {
1536 apdu_len = nla_len(info->attrs[NFC_ATTR_SE_APDU]);
1537 if (apdu_len == 0) {
1542 apdu = nla_data(info->attrs[NFC_ATTR_SE_APDU]);
1548 ctx = kzalloc(sizeof(struct se_io_ctx), GFP_KERNEL);
1554 ctx->dev_idx = dev_idx;
1555 ctx->se_idx = se_idx;
1557 rc = nfc_se_io(dev, se_idx, apdu, apdu_len, se_io_cb, ctx);
1560 nfc_put_device(dev);
1564 static int nfc_genl_vendor_cmd(struct sk_buff *skb,
1565 struct genl_info *info)
1567 struct nfc_dev *dev;
1568 const struct nfc_vendor_cmd *cmd;
1569 u32 dev_idx, vid, subcmd;
1574 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1575 !info->attrs[NFC_ATTR_VENDOR_ID] ||
1576 !info->attrs[NFC_ATTR_VENDOR_SUBCMD])
1579 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1580 vid = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_ID]);
1581 subcmd = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_SUBCMD]);
1583 dev = nfc_get_device(dev_idx);
1587 if (!dev->vendor_cmds || !dev->n_vendor_cmds) {
1592 if (info->attrs[NFC_ATTR_VENDOR_DATA]) {
1593 data = nla_data(info->attrs[NFC_ATTR_VENDOR_DATA]);
1594 data_len = nla_len(info->attrs[NFC_ATTR_VENDOR_DATA]);
1595 if (data_len == 0) {
1604 for (i = 0; i < dev->n_vendor_cmds; i++) {
1605 cmd = &dev->vendor_cmds[i];
1607 if (cmd->vendor_id != vid || cmd->subcmd != subcmd)
1610 dev->cur_cmd_info = info;
1611 err = cmd->doit(dev, data, data_len);
1612 dev->cur_cmd_info = NULL;
1619 nfc_put_device(dev);
1623 /* message building helper */
1624 static inline void *nfc_hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
1627 /* since there is no private header just add the generic one */
1628 return genlmsg_put(skb, portid, seq, &nfc_genl_family, flags, cmd);
1631 static struct sk_buff *
1632 __nfc_alloc_vendor_cmd_skb(struct nfc_dev *dev, int approxlen,
1633 u32 portid, u32 seq,
1634 enum nfc_attrs attr,
1635 u32 oui, u32 subcmd, gfp_t gfp)
1637 struct sk_buff *skb;
1640 skb = nlmsg_new(approxlen + 100, gfp);
1644 hdr = nfc_hdr_put(skb, portid, seq, 0, NFC_CMD_VENDOR);
1650 if (nla_put_u32(skb, NFC_ATTR_DEVICE_INDEX, dev->idx))
1651 goto nla_put_failure;
1652 if (nla_put_u32(skb, NFC_ATTR_VENDOR_ID, oui))
1653 goto nla_put_failure;
1654 if (nla_put_u32(skb, NFC_ATTR_VENDOR_SUBCMD, subcmd))
1655 goto nla_put_failure;
1657 ((void **)skb->cb)[0] = dev;
1658 ((void **)skb->cb)[1] = hdr;
1667 struct sk_buff *__nfc_alloc_vendor_cmd_reply_skb(struct nfc_dev *dev,
1668 enum nfc_attrs attr,
1669 u32 oui, u32 subcmd,
1672 if (WARN_ON(!dev->cur_cmd_info))
1675 return __nfc_alloc_vendor_cmd_skb(dev, approxlen,
1676 dev->cur_cmd_info->snd_portid,
1677 dev->cur_cmd_info->snd_seq, attr,
1678 oui, subcmd, GFP_KERNEL);
1680 EXPORT_SYMBOL(__nfc_alloc_vendor_cmd_reply_skb);
1682 int nfc_vendor_cmd_reply(struct sk_buff *skb)
1684 struct nfc_dev *dev = ((void **)skb->cb)[0];
1685 void *hdr = ((void **)skb->cb)[1];
1687 /* clear CB data for netlink core to own from now on */
1688 memset(skb->cb, 0, sizeof(skb->cb));
1690 if (WARN_ON(!dev->cur_cmd_info)) {
1695 genlmsg_end(skb, hdr);
1696 return genlmsg_reply(skb, dev->cur_cmd_info);
1698 EXPORT_SYMBOL(nfc_vendor_cmd_reply);
1700 static const struct genl_ops nfc_genl_ops[] = {
1702 .cmd = NFC_CMD_GET_DEVICE,
1703 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1704 .doit = nfc_genl_get_device,
1705 .dumpit = nfc_genl_dump_devices,
1706 .done = nfc_genl_dump_devices_done,
1709 .cmd = NFC_CMD_DEV_UP,
1710 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1711 .doit = nfc_genl_dev_up,
1712 .flags = GENL_ADMIN_PERM,
1715 .cmd = NFC_CMD_DEV_DOWN,
1716 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1717 .doit = nfc_genl_dev_down,
1718 .flags = GENL_ADMIN_PERM,
1721 .cmd = NFC_CMD_START_POLL,
1722 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1723 .doit = nfc_genl_start_poll,
1724 .flags = GENL_ADMIN_PERM,
1727 .cmd = NFC_CMD_STOP_POLL,
1728 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1729 .doit = nfc_genl_stop_poll,
1730 .flags = GENL_ADMIN_PERM,
1733 .cmd = NFC_CMD_DEP_LINK_UP,
1734 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1735 .doit = nfc_genl_dep_link_up,
1736 .flags = GENL_ADMIN_PERM,
1739 .cmd = NFC_CMD_DEP_LINK_DOWN,
1740 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1741 .doit = nfc_genl_dep_link_down,
1742 .flags = GENL_ADMIN_PERM,
1745 .cmd = NFC_CMD_GET_TARGET,
1746 .validate = GENL_DONT_VALIDATE_STRICT |
1747 GENL_DONT_VALIDATE_DUMP_STRICT,
1748 .dumpit = nfc_genl_dump_targets,
1749 .done = nfc_genl_dump_targets_done,
1752 .cmd = NFC_CMD_LLC_GET_PARAMS,
1753 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1754 .doit = nfc_genl_llc_get_params,
1757 .cmd = NFC_CMD_LLC_SET_PARAMS,
1758 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1759 .doit = nfc_genl_llc_set_params,
1760 .flags = GENL_ADMIN_PERM,
1763 .cmd = NFC_CMD_LLC_SDREQ,
1764 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1765 .doit = nfc_genl_llc_sdreq,
1766 .flags = GENL_ADMIN_PERM,
1769 .cmd = NFC_CMD_FW_DOWNLOAD,
1770 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1771 .doit = nfc_genl_fw_download,
1772 .flags = GENL_ADMIN_PERM,
1775 .cmd = NFC_CMD_ENABLE_SE,
1776 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1777 .doit = nfc_genl_enable_se,
1778 .flags = GENL_ADMIN_PERM,
1781 .cmd = NFC_CMD_DISABLE_SE,
1782 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1783 .doit = nfc_genl_disable_se,
1784 .flags = GENL_ADMIN_PERM,
1787 .cmd = NFC_CMD_GET_SE,
1788 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1789 .dumpit = nfc_genl_dump_ses,
1790 .done = nfc_genl_dump_ses_done,
1793 .cmd = NFC_CMD_SE_IO,
1794 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1795 .doit = nfc_genl_se_io,
1796 .flags = GENL_ADMIN_PERM,
1799 .cmd = NFC_CMD_ACTIVATE_TARGET,
1800 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1801 .doit = nfc_genl_activate_target,
1802 .flags = GENL_ADMIN_PERM,
1805 .cmd = NFC_CMD_VENDOR,
1806 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1807 .doit = nfc_genl_vendor_cmd,
1808 .flags = GENL_ADMIN_PERM,
1811 .cmd = NFC_CMD_DEACTIVATE_TARGET,
1812 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1813 .doit = nfc_genl_deactivate_target,
1814 .flags = GENL_ADMIN_PERM,
1818 static struct genl_family nfc_genl_family __ro_after_init = {
1820 .name = NFC_GENL_NAME,
1821 .version = NFC_GENL_VERSION,
1822 .maxattr = NFC_ATTR_MAX,
1823 .policy = nfc_genl_policy,
1824 .module = THIS_MODULE,
1825 .ops = nfc_genl_ops,
1826 .n_ops = ARRAY_SIZE(nfc_genl_ops),
1827 .resv_start_op = NFC_CMD_DEACTIVATE_TARGET + 1,
1828 .mcgrps = nfc_genl_mcgrps,
1829 .n_mcgrps = ARRAY_SIZE(nfc_genl_mcgrps),
1833 struct urelease_work {
1834 struct work_struct w;
1838 static void nfc_urelease_event_work(struct work_struct *work)
1840 struct urelease_work *w = container_of(work, struct urelease_work, w);
1841 struct class_dev_iter iter;
1842 struct nfc_dev *dev;
1844 pr_debug("portid %d\n", w->portid);
1846 mutex_lock(&nfc_devlist_mutex);
1848 nfc_device_iter_init(&iter);
1849 dev = nfc_device_iter_next(&iter);
1852 mutex_lock(&dev->genl_data.genl_data_mutex);
1854 if (dev->genl_data.poll_req_portid == w->portid) {
1856 dev->genl_data.poll_req_portid = 0;
1859 mutex_unlock(&dev->genl_data.genl_data_mutex);
1861 dev = nfc_device_iter_next(&iter);
1864 nfc_device_iter_exit(&iter);
1866 mutex_unlock(&nfc_devlist_mutex);
1871 static int nfc_genl_rcv_nl_event(struct notifier_block *this,
1872 unsigned long event, void *ptr)
1874 struct netlink_notify *n = ptr;
1875 struct urelease_work *w;
1877 if (event != NETLINK_URELEASE || n->protocol != NETLINK_GENERIC)
1880 pr_debug("NETLINK_URELEASE event from id %d\n", n->portid);
1882 w = kmalloc(sizeof(*w), GFP_ATOMIC);
1884 INIT_WORK(&w->w, nfc_urelease_event_work);
1885 w->portid = n->portid;
1886 schedule_work(&w->w);
1893 void nfc_genl_data_init(struct nfc_genl_data *genl_data)
1895 genl_data->poll_req_portid = 0;
1896 mutex_init(&genl_data->genl_data_mutex);
1899 void nfc_genl_data_exit(struct nfc_genl_data *genl_data)
1901 mutex_destroy(&genl_data->genl_data_mutex);
1904 static struct notifier_block nl_notifier = {
1905 .notifier_call = nfc_genl_rcv_nl_event,
1909 * nfc_genl_init() - Initialize netlink interface
1911 * This initialization function registers the nfc netlink family.
1913 int __init nfc_genl_init(void)
1917 rc = genl_register_family(&nfc_genl_family);
1921 netlink_register_notifier(&nl_notifier);
1927 * nfc_genl_exit() - Deinitialize netlink interface
1929 * This exit function unregisters the nfc netlink family.
1931 void nfc_genl_exit(void)
1933 netlink_unregister_notifier(&nl_notifier);
1934 genl_unregister_family(&nfc_genl_family);