1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2011 Instituto Nokia de Tecnologia
6 * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
9 * Vendor commands implementation based on net/wireless/nl80211.c
12 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
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 genlmsg_end(msg, hdr);
103 genlmsg_cancel(msg, hdr);
107 static struct nfc_dev *__get_device_from_cb(struct netlink_callback *cb)
109 const struct genl_dumpit_info *info = genl_dumpit_info(cb);
113 if (!info->info.attrs[NFC_ATTR_DEVICE_INDEX])
114 return ERR_PTR(-EINVAL);
116 idx = nla_get_u32(info->info.attrs[NFC_ATTR_DEVICE_INDEX]);
118 dev = nfc_get_device(idx);
120 return ERR_PTR(-ENODEV);
125 static int nfc_genl_dump_targets(struct sk_buff *skb,
126 struct netlink_callback *cb)
129 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
133 dev = __get_device_from_cb(cb);
137 cb->args[1] = (long) dev;
140 device_lock(&dev->dev);
142 cb->seq = dev->targets_generation;
144 while (i < dev->n_targets) {
145 rc = nfc_genl_send_target(skb, &dev->targets[i], cb,
153 device_unlock(&dev->dev);
160 static int nfc_genl_dump_targets_done(struct netlink_callback *cb)
162 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
170 int nfc_genl_targets_found(struct nfc_dev *dev)
175 dev->genl_data.poll_req_portid = 0;
177 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
181 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
182 NFC_EVENT_TARGETS_FOUND);
186 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
187 goto nla_put_failure;
189 genlmsg_end(msg, hdr);
191 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
199 int nfc_genl_target_lost(struct nfc_dev *dev, u32 target_idx)
204 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
208 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
209 NFC_EVENT_TARGET_LOST);
213 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
214 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
215 goto nla_put_failure;
217 genlmsg_end(msg, hdr);
219 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
229 int nfc_genl_tm_activated(struct nfc_dev *dev, u32 protocol)
234 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
238 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
239 NFC_EVENT_TM_ACTIVATED);
243 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
244 goto nla_put_failure;
245 if (nla_put_u32(msg, NFC_ATTR_TM_PROTOCOLS, protocol))
246 goto nla_put_failure;
248 genlmsg_end(msg, hdr);
250 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
260 int nfc_genl_tm_deactivated(struct nfc_dev *dev)
265 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
269 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
270 NFC_EVENT_TM_DEACTIVATED);
274 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
275 goto nla_put_failure;
277 genlmsg_end(msg, hdr);
279 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
289 static int nfc_genl_setup_device_added(struct nfc_dev *dev, struct sk_buff *msg)
291 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
292 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
293 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) ||
294 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up) ||
295 nla_put_u8(msg, NFC_ATTR_RF_MODE, dev->rf_mode))
300 int nfc_genl_device_added(struct nfc_dev *dev)
305 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
309 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
310 NFC_EVENT_DEVICE_ADDED);
314 if (nfc_genl_setup_device_added(dev, msg))
315 goto nla_put_failure;
317 genlmsg_end(msg, hdr);
319 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
329 int nfc_genl_device_removed(struct nfc_dev *dev)
334 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
338 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
339 NFC_EVENT_DEVICE_REMOVED);
343 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
344 goto nla_put_failure;
346 genlmsg_end(msg, hdr);
348 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
358 int nfc_genl_llc_send_sdres(struct nfc_dev *dev, struct hlist_head *sdres_list)
361 struct nlattr *sdp_attr, *uri_attr;
362 struct nfc_llcp_sdp_tlv *sdres;
363 struct hlist_node *n;
368 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
372 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
373 NFC_EVENT_LLC_SDRES);
377 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
378 goto nla_put_failure;
380 sdp_attr = nla_nest_start_noflag(msg, NFC_ATTR_LLC_SDP);
381 if (sdp_attr == NULL) {
383 goto nla_put_failure;
387 hlist_for_each_entry_safe(sdres, n, sdres_list, node) {
388 pr_debug("uri: %s, sap: %d\n", sdres->uri, sdres->sap);
390 uri_attr = nla_nest_start_noflag(msg, i++);
391 if (uri_attr == NULL) {
393 goto nla_put_failure;
396 if (nla_put_u8(msg, NFC_SDP_ATTR_SAP, sdres->sap))
397 goto nla_put_failure;
399 if (nla_put_string(msg, NFC_SDP_ATTR_URI, sdres->uri))
400 goto nla_put_failure;
402 nla_nest_end(msg, uri_attr);
404 hlist_del(&sdres->node);
406 nfc_llcp_free_sdp_tlv(sdres);
409 nla_nest_end(msg, sdp_attr);
411 genlmsg_end(msg, hdr);
413 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
419 nfc_llcp_free_sdp_tlv_list(sdres_list);
424 int nfc_genl_se_added(struct nfc_dev *dev, u32 se_idx, u16 type)
429 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
433 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
438 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
439 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
440 nla_put_u8(msg, NFC_ATTR_SE_TYPE, type))
441 goto nla_put_failure;
443 genlmsg_end(msg, hdr);
445 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
455 int nfc_genl_se_removed(struct nfc_dev *dev, u32 se_idx)
460 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
464 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
465 NFC_EVENT_SE_REMOVED);
469 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
470 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx))
471 goto nla_put_failure;
473 genlmsg_end(msg, hdr);
475 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
485 int nfc_genl_se_transaction(struct nfc_dev *dev, u8 se_idx,
486 struct nfc_evt_transaction *evt_transaction)
492 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
496 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
497 NFC_EVENT_SE_TRANSACTION);
501 se = nfc_find_se(dev, se_idx);
505 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
506 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
507 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type) ||
508 nla_put(msg, NFC_ATTR_SE_AID, evt_transaction->aid_len,
509 evt_transaction->aid) ||
510 nla_put(msg, NFC_ATTR_SE_PARAMS, evt_transaction->params_len,
511 evt_transaction->params))
512 goto nla_put_failure;
514 /* evt_transaction is no more used */
515 devm_kfree(&dev->dev, evt_transaction);
517 genlmsg_end(msg, hdr);
519 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
525 /* evt_transaction is no more used */
526 devm_kfree(&dev->dev, evt_transaction);
531 int nfc_genl_se_connectivity(struct nfc_dev *dev, u8 se_idx)
533 const struct nfc_se *se;
537 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
541 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
542 NFC_EVENT_SE_CONNECTIVITY);
546 se = nfc_find_se(dev, se_idx);
550 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
551 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) ||
552 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
553 goto nla_put_failure;
555 genlmsg_end(msg, hdr);
557 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
567 static int nfc_genl_send_device(struct sk_buff *msg, struct nfc_dev *dev,
569 struct netlink_callback *cb,
574 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
580 genl_dump_check_consistent(cb, hdr);
582 if (nfc_genl_setup_device_added(dev, msg))
583 goto nla_put_failure;
585 genlmsg_end(msg, hdr);
589 genlmsg_cancel(msg, hdr);
593 static int nfc_genl_dump_devices(struct sk_buff *skb,
594 struct netlink_callback *cb)
596 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
597 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
598 bool first_call = false;
602 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
605 cb->args[0] = (long) iter;
608 mutex_lock(&nfc_devlist_mutex);
610 cb->seq = nfc_devlist_generation;
613 nfc_device_iter_init(iter);
614 dev = nfc_device_iter_next(iter);
620 rc = nfc_genl_send_device(skb, dev, NETLINK_CB(cb->skb).portid,
621 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
625 dev = nfc_device_iter_next(iter);
628 mutex_unlock(&nfc_devlist_mutex);
630 cb->args[1] = (long) dev;
635 static int nfc_genl_dump_devices_done(struct netlink_callback *cb)
637 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
640 nfc_device_iter_exit(iter);
647 int nfc_genl_dep_link_up_event(struct nfc_dev *dev, u32 target_idx,
648 u8 comm_mode, u8 rf_mode)
653 pr_debug("DEP link is up\n");
655 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
659 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, NFC_CMD_DEP_LINK_UP);
663 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
664 goto nla_put_failure;
665 if (rf_mode == NFC_RF_INITIATOR &&
666 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
667 goto nla_put_failure;
668 if (nla_put_u8(msg, NFC_ATTR_COMM_MODE, comm_mode) ||
669 nla_put_u8(msg, NFC_ATTR_RF_MODE, rf_mode))
670 goto nla_put_failure;
672 genlmsg_end(msg, hdr);
674 dev->dep_link_up = true;
676 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
686 int nfc_genl_dep_link_down_event(struct nfc_dev *dev)
691 pr_debug("DEP link is down\n");
693 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
697 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
698 NFC_CMD_DEP_LINK_DOWN);
702 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
703 goto nla_put_failure;
705 genlmsg_end(msg, hdr);
707 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
717 static int nfc_genl_get_device(struct sk_buff *skb, struct genl_info *info)
724 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
727 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
729 dev = nfc_get_device(idx);
733 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
739 rc = nfc_genl_send_device(msg, dev, info->snd_portid, info->snd_seq,
746 return genlmsg_reply(msg, info);
755 static int nfc_genl_dev_up(struct sk_buff *skb, struct genl_info *info)
761 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
764 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
766 dev = nfc_get_device(idx);
770 rc = nfc_dev_up(dev);
776 static int nfc_genl_dev_down(struct sk_buff *skb, struct genl_info *info)
782 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
785 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
787 dev = nfc_get_device(idx);
791 rc = nfc_dev_down(dev);
797 static int nfc_genl_start_poll(struct sk_buff *skb, struct genl_info *info)
802 u32 im_protocols = 0, tm_protocols = 0;
804 pr_debug("Poll start\n");
806 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
807 ((!info->attrs[NFC_ATTR_IM_PROTOCOLS] &&
808 !info->attrs[NFC_ATTR_PROTOCOLS]) &&
809 !info->attrs[NFC_ATTR_TM_PROTOCOLS]))
812 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
814 if (info->attrs[NFC_ATTR_TM_PROTOCOLS])
815 tm_protocols = nla_get_u32(info->attrs[NFC_ATTR_TM_PROTOCOLS]);
817 if (info->attrs[NFC_ATTR_IM_PROTOCOLS])
818 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_IM_PROTOCOLS]);
819 else if (info->attrs[NFC_ATTR_PROTOCOLS])
820 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
822 dev = nfc_get_device(idx);
826 mutex_lock(&dev->genl_data.genl_data_mutex);
828 rc = nfc_start_poll(dev, im_protocols, tm_protocols);
830 dev->genl_data.poll_req_portid = info->snd_portid;
832 mutex_unlock(&dev->genl_data.genl_data_mutex);
838 static int nfc_genl_stop_poll(struct sk_buff *skb, struct genl_info *info)
844 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
847 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
849 dev = nfc_get_device(idx);
853 device_lock(&dev->dev);
856 device_unlock(&dev->dev);
861 device_unlock(&dev->dev);
863 mutex_lock(&dev->genl_data.genl_data_mutex);
865 if (dev->genl_data.poll_req_portid != info->snd_portid) {
870 rc = nfc_stop_poll(dev);
871 dev->genl_data.poll_req_portid = 0;
874 mutex_unlock(&dev->genl_data.genl_data_mutex);
879 static int nfc_genl_activate_target(struct sk_buff *skb, struct genl_info *info)
882 u32 device_idx, target_idx, protocol;
885 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
886 !info->attrs[NFC_ATTR_TARGET_INDEX] ||
887 !info->attrs[NFC_ATTR_PROTOCOLS])
890 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
892 dev = nfc_get_device(device_idx);
896 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
897 protocol = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
899 nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP);
900 rc = nfc_activate_target(dev, target_idx, protocol);
906 static int nfc_genl_deactivate_target(struct sk_buff *skb,
907 struct genl_info *info)
910 u32 device_idx, target_idx;
913 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
914 !info->attrs[NFC_ATTR_TARGET_INDEX])
917 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
919 dev = nfc_get_device(device_idx);
923 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
925 rc = nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP);
931 static int nfc_genl_dep_link_up(struct sk_buff *skb, struct genl_info *info)
938 pr_debug("DEP link up\n");
940 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
941 !info->attrs[NFC_ATTR_COMM_MODE])
944 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
945 if (!info->attrs[NFC_ATTR_TARGET_INDEX])
946 tgt_idx = NFC_TARGET_IDX_ANY;
948 tgt_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
950 comm = nla_get_u8(info->attrs[NFC_ATTR_COMM_MODE]);
952 if (comm != NFC_COMM_ACTIVE && comm != NFC_COMM_PASSIVE)
955 dev = nfc_get_device(idx);
959 rc = nfc_dep_link_up(dev, tgt_idx, comm);
966 static int nfc_genl_dep_link_down(struct sk_buff *skb, struct genl_info *info)
972 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
973 !info->attrs[NFC_ATTR_TARGET_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);
1009 genlmsg_cancel(msg, hdr);
1013 static int nfc_genl_llc_get_params(struct sk_buff *skb, struct genl_info *info)
1015 struct nfc_dev *dev;
1016 struct nfc_llcp_local *local;
1018 struct sk_buff *msg = NULL;
1021 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1022 !info->attrs[NFC_ATTR_FIRMWARE_NAME])
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 nfc_llcp_local_put(local);
1051 device_unlock(&dev->dev);
1053 nfc_put_device(dev);
1062 return genlmsg_reply(msg, info);
1065 static int nfc_genl_llc_set_params(struct sk_buff *skb, struct genl_info *info)
1067 struct nfc_dev *dev;
1068 struct nfc_llcp_local *local;
1074 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1075 (!info->attrs[NFC_ATTR_LLC_PARAM_LTO] &&
1076 !info->attrs[NFC_ATTR_LLC_PARAM_RW] &&
1077 !info->attrs[NFC_ATTR_LLC_PARAM_MIUX]))
1080 if (info->attrs[NFC_ATTR_LLC_PARAM_RW]) {
1081 rw = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_RW]);
1083 if (rw > LLCP_MAX_RW)
1087 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX]) {
1088 miux = nla_get_u16(info->attrs[NFC_ATTR_LLC_PARAM_MIUX]);
1090 if (miux > LLCP_MAX_MIUX)
1094 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1096 dev = nfc_get_device(idx);
1100 device_lock(&dev->dev);
1102 local = nfc_llcp_find_local(dev);
1108 if (info->attrs[NFC_ATTR_LLC_PARAM_LTO]) {
1109 if (dev->dep_link_up) {
1114 local->lto = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_LTO]);
1117 if (info->attrs[NFC_ATTR_LLC_PARAM_RW])
1120 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX])
1121 local->miux = cpu_to_be16(miux);
1124 nfc_llcp_local_put(local);
1127 device_unlock(&dev->dev);
1129 nfc_put_device(dev);
1134 static int nfc_genl_llc_sdreq(struct sk_buff *skb, struct genl_info *info)
1136 struct nfc_dev *dev;
1137 struct nfc_llcp_local *local;
1138 struct nlattr *attr, *sdp_attrs[NFC_SDP_ATTR_MAX+1];
1143 size_t uri_len, tlvs_len;
1144 struct hlist_head sdreq_list;
1145 struct nfc_llcp_sdp_tlv *sdreq;
1147 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1148 !info->attrs[NFC_ATTR_LLC_SDP])
1151 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1153 dev = nfc_get_device(idx);
1157 device_lock(&dev->dev);
1159 if (dev->dep_link_up == false) {
1164 local = nfc_llcp_find_local(dev);
1170 INIT_HLIST_HEAD(&sdreq_list);
1174 nla_for_each_nested(attr, info->attrs[NFC_ATTR_LLC_SDP], rem) {
1175 rc = nla_parse_nested_deprecated(sdp_attrs, NFC_SDP_ATTR_MAX,
1176 attr, nfc_sdp_genl_policy,
1184 if (!sdp_attrs[NFC_SDP_ATTR_URI])
1187 uri_len = nla_len(sdp_attrs[NFC_SDP_ATTR_URI]);
1191 uri = nla_data(sdp_attrs[NFC_SDP_ATTR_URI]);
1192 if (uri == NULL || *uri == 0)
1195 tid = local->sdreq_next_tid++;
1197 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len);
1198 if (sdreq == NULL) {
1203 tlvs_len += sdreq->tlv_len;
1205 hlist_add_head(&sdreq->node, &sdreq_list);
1208 if (hlist_empty(&sdreq_list)) {
1213 rc = nfc_llcp_send_snl_sdreq(local, &sdreq_list, tlvs_len);
1216 nfc_llcp_local_put(local);
1219 device_unlock(&dev->dev);
1221 nfc_put_device(dev);
1226 static int nfc_genl_fw_download(struct sk_buff *skb, struct genl_info *info)
1228 struct nfc_dev *dev;
1231 char firmware_name[NFC_FIRMWARE_NAME_MAXSIZE + 1];
1233 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || !info->attrs[NFC_ATTR_FIRMWARE_NAME])
1236 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1238 dev = nfc_get_device(idx);
1242 nla_strscpy(firmware_name, info->attrs[NFC_ATTR_FIRMWARE_NAME],
1243 sizeof(firmware_name));
1245 rc = nfc_fw_download(dev, firmware_name);
1247 nfc_put_device(dev);
1251 int nfc_genl_fw_download_done(struct nfc_dev *dev, const char *firmware_name,
1254 struct sk_buff *msg;
1257 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1261 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1262 NFC_CMD_FW_DOWNLOAD);
1266 if (nla_put_string(msg, NFC_ATTR_FIRMWARE_NAME, firmware_name) ||
1267 nla_put_u32(msg, NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, result) ||
1268 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
1269 goto nla_put_failure;
1271 genlmsg_end(msg, hdr);
1273 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC);
1283 static int nfc_genl_enable_se(struct sk_buff *skb, struct genl_info *info)
1285 struct nfc_dev *dev;
1289 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1290 !info->attrs[NFC_ATTR_SE_INDEX])
1293 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1294 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1296 dev = nfc_get_device(idx);
1300 rc = nfc_enable_se(dev, se_idx);
1302 nfc_put_device(dev);
1306 static int nfc_genl_disable_se(struct sk_buff *skb, struct genl_info *info)
1308 struct nfc_dev *dev;
1312 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1313 !info->attrs[NFC_ATTR_SE_INDEX])
1316 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1317 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1319 dev = nfc_get_device(idx);
1323 rc = nfc_disable_se(dev, se_idx);
1325 nfc_put_device(dev);
1329 static int nfc_genl_send_se(struct sk_buff *msg, struct nfc_dev *dev,
1330 u32 portid, u32 seq,
1331 struct netlink_callback *cb,
1335 struct nfc_se *se, *n;
1337 list_for_each_entry_safe(se, n, &dev->secure_elements, list) {
1338 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
1341 goto nla_put_failure;
1344 genl_dump_check_consistent(cb, hdr);
1346 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
1347 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se->idx) ||
1348 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
1349 goto nla_put_failure;
1351 genlmsg_end(msg, hdr);
1357 genlmsg_cancel(msg, hdr);
1361 static int nfc_genl_dump_ses(struct sk_buff *skb,
1362 struct netlink_callback *cb)
1364 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1365 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
1366 bool first_call = false;
1370 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
1373 cb->args[0] = (long) iter;
1376 mutex_lock(&nfc_devlist_mutex);
1378 cb->seq = nfc_devlist_generation;
1381 nfc_device_iter_init(iter);
1382 dev = nfc_device_iter_next(iter);
1388 rc = nfc_genl_send_se(skb, dev, NETLINK_CB(cb->skb).portid,
1389 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
1393 dev = nfc_device_iter_next(iter);
1396 mutex_unlock(&nfc_devlist_mutex);
1398 cb->args[1] = (long) dev;
1403 static int nfc_genl_dump_ses_done(struct netlink_callback *cb)
1405 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1408 nfc_device_iter_exit(iter);
1415 static int nfc_se_io(struct nfc_dev *dev, u32 se_idx,
1416 u8 *apdu, size_t apdu_length,
1417 se_io_cb_t cb, void *cb_context)
1422 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
1424 device_lock(&dev->dev);
1426 if (!device_is_registered(&dev->dev)) {
1436 if (!dev->ops->se_io) {
1441 se = nfc_find_se(dev, se_idx);
1447 if (se->state != NFC_SE_ENABLED) {
1452 rc = dev->ops->se_io(dev, se_idx, apdu,
1453 apdu_length, cb, cb_context);
1455 device_unlock(&dev->dev);
1459 device_unlock(&dev->dev);
1469 static void se_io_cb(void *context, u8 *apdu, size_t apdu_len, int err)
1471 struct se_io_ctx *ctx = context;
1472 struct sk_buff *msg;
1475 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1481 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1486 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, ctx->dev_idx) ||
1487 nla_put_u32(msg, NFC_ATTR_SE_INDEX, ctx->se_idx) ||
1488 nla_put(msg, NFC_ATTR_SE_APDU, apdu_len, apdu))
1489 goto nla_put_failure;
1491 genlmsg_end(msg, hdr);
1493 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL);
1507 static int nfc_genl_se_io(struct sk_buff *skb, struct genl_info *info)
1509 struct nfc_dev *dev;
1510 struct se_io_ctx *ctx;
1511 u32 dev_idx, se_idx;
1516 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1517 !info->attrs[NFC_ATTR_SE_INDEX] ||
1518 !info->attrs[NFC_ATTR_SE_APDU])
1521 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1522 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1524 dev = nfc_get_device(dev_idx);
1528 if (!dev->ops || !dev->ops->se_io) {
1533 apdu_len = nla_len(info->attrs[NFC_ATTR_SE_APDU]);
1534 if (apdu_len == 0) {
1539 apdu = nla_data(info->attrs[NFC_ATTR_SE_APDU]);
1545 ctx = kzalloc(sizeof(struct se_io_ctx), GFP_KERNEL);
1551 ctx->dev_idx = dev_idx;
1552 ctx->se_idx = se_idx;
1554 rc = nfc_se_io(dev, se_idx, apdu, apdu_len, se_io_cb, ctx);
1557 nfc_put_device(dev);
1561 static int nfc_genl_vendor_cmd(struct sk_buff *skb,
1562 struct genl_info *info)
1564 struct nfc_dev *dev;
1565 const struct nfc_vendor_cmd *cmd;
1566 u32 dev_idx, vid, subcmd;
1571 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1572 !info->attrs[NFC_ATTR_VENDOR_ID] ||
1573 !info->attrs[NFC_ATTR_VENDOR_SUBCMD])
1576 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1577 vid = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_ID]);
1578 subcmd = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_SUBCMD]);
1580 dev = nfc_get_device(dev_idx);
1584 if (!dev->vendor_cmds || !dev->n_vendor_cmds) {
1589 if (info->attrs[NFC_ATTR_VENDOR_DATA]) {
1590 data = nla_data(info->attrs[NFC_ATTR_VENDOR_DATA]);
1591 data_len = nla_len(info->attrs[NFC_ATTR_VENDOR_DATA]);
1592 if (data_len == 0) {
1601 for (i = 0; i < dev->n_vendor_cmds; i++) {
1602 cmd = &dev->vendor_cmds[i];
1604 if (cmd->vendor_id != vid || cmd->subcmd != subcmd)
1607 dev->cur_cmd_info = info;
1608 err = cmd->doit(dev, data, data_len);
1609 dev->cur_cmd_info = NULL;
1616 nfc_put_device(dev);
1620 /* message building helper */
1621 static inline void *nfc_hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
1624 /* since there is no private header just add the generic one */
1625 return genlmsg_put(skb, portid, seq, &nfc_genl_family, flags, cmd);
1628 static struct sk_buff *
1629 __nfc_alloc_vendor_cmd_skb(struct nfc_dev *dev, int approxlen,
1630 u32 portid, u32 seq,
1631 enum nfc_attrs attr,
1632 u32 oui, u32 subcmd, gfp_t gfp)
1634 struct sk_buff *skb;
1637 skb = nlmsg_new(approxlen + 100, gfp);
1641 hdr = nfc_hdr_put(skb, portid, seq, 0, NFC_CMD_VENDOR);
1647 if (nla_put_u32(skb, NFC_ATTR_DEVICE_INDEX, dev->idx))
1648 goto nla_put_failure;
1649 if (nla_put_u32(skb, NFC_ATTR_VENDOR_ID, oui))
1650 goto nla_put_failure;
1651 if (nla_put_u32(skb, NFC_ATTR_VENDOR_SUBCMD, subcmd))
1652 goto nla_put_failure;
1654 ((void **)skb->cb)[0] = dev;
1655 ((void **)skb->cb)[1] = hdr;
1664 struct sk_buff *__nfc_alloc_vendor_cmd_reply_skb(struct nfc_dev *dev,
1665 enum nfc_attrs attr,
1666 u32 oui, u32 subcmd,
1669 if (WARN_ON(!dev->cur_cmd_info))
1672 return __nfc_alloc_vendor_cmd_skb(dev, approxlen,
1673 dev->cur_cmd_info->snd_portid,
1674 dev->cur_cmd_info->snd_seq, attr,
1675 oui, subcmd, GFP_KERNEL);
1677 EXPORT_SYMBOL(__nfc_alloc_vendor_cmd_reply_skb);
1679 int nfc_vendor_cmd_reply(struct sk_buff *skb)
1681 struct nfc_dev *dev = ((void **)skb->cb)[0];
1682 void *hdr = ((void **)skb->cb)[1];
1684 /* clear CB data for netlink core to own from now on */
1685 memset(skb->cb, 0, sizeof(skb->cb));
1687 if (WARN_ON(!dev->cur_cmd_info)) {
1692 genlmsg_end(skb, hdr);
1693 return genlmsg_reply(skb, dev->cur_cmd_info);
1695 EXPORT_SYMBOL(nfc_vendor_cmd_reply);
1697 static const struct genl_ops nfc_genl_ops[] = {
1699 .cmd = NFC_CMD_GET_DEVICE,
1700 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1701 .doit = nfc_genl_get_device,
1702 .dumpit = nfc_genl_dump_devices,
1703 .done = nfc_genl_dump_devices_done,
1706 .cmd = NFC_CMD_DEV_UP,
1707 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1708 .doit = nfc_genl_dev_up,
1709 .flags = GENL_ADMIN_PERM,
1712 .cmd = NFC_CMD_DEV_DOWN,
1713 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1714 .doit = nfc_genl_dev_down,
1715 .flags = GENL_ADMIN_PERM,
1718 .cmd = NFC_CMD_START_POLL,
1719 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1720 .doit = nfc_genl_start_poll,
1721 .flags = GENL_ADMIN_PERM,
1724 .cmd = NFC_CMD_STOP_POLL,
1725 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1726 .doit = nfc_genl_stop_poll,
1727 .flags = GENL_ADMIN_PERM,
1730 .cmd = NFC_CMD_DEP_LINK_UP,
1731 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1732 .doit = nfc_genl_dep_link_up,
1733 .flags = GENL_ADMIN_PERM,
1736 .cmd = NFC_CMD_DEP_LINK_DOWN,
1737 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1738 .doit = nfc_genl_dep_link_down,
1739 .flags = GENL_ADMIN_PERM,
1742 .cmd = NFC_CMD_GET_TARGET,
1743 .validate = GENL_DONT_VALIDATE_STRICT |
1744 GENL_DONT_VALIDATE_DUMP_STRICT,
1745 .dumpit = nfc_genl_dump_targets,
1746 .done = nfc_genl_dump_targets_done,
1749 .cmd = NFC_CMD_LLC_GET_PARAMS,
1750 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1751 .doit = nfc_genl_llc_get_params,
1754 .cmd = NFC_CMD_LLC_SET_PARAMS,
1755 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1756 .doit = nfc_genl_llc_set_params,
1757 .flags = GENL_ADMIN_PERM,
1760 .cmd = NFC_CMD_LLC_SDREQ,
1761 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1762 .doit = nfc_genl_llc_sdreq,
1763 .flags = GENL_ADMIN_PERM,
1766 .cmd = NFC_CMD_FW_DOWNLOAD,
1767 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1768 .doit = nfc_genl_fw_download,
1769 .flags = GENL_ADMIN_PERM,
1772 .cmd = NFC_CMD_ENABLE_SE,
1773 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1774 .doit = nfc_genl_enable_se,
1775 .flags = GENL_ADMIN_PERM,
1778 .cmd = NFC_CMD_DISABLE_SE,
1779 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1780 .doit = nfc_genl_disable_se,
1781 .flags = GENL_ADMIN_PERM,
1784 .cmd = NFC_CMD_GET_SE,
1785 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1786 .dumpit = nfc_genl_dump_ses,
1787 .done = nfc_genl_dump_ses_done,
1790 .cmd = NFC_CMD_SE_IO,
1791 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1792 .doit = nfc_genl_se_io,
1793 .flags = GENL_ADMIN_PERM,
1796 .cmd = NFC_CMD_ACTIVATE_TARGET,
1797 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1798 .doit = nfc_genl_activate_target,
1799 .flags = GENL_ADMIN_PERM,
1802 .cmd = NFC_CMD_VENDOR,
1803 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1804 .doit = nfc_genl_vendor_cmd,
1805 .flags = GENL_ADMIN_PERM,
1808 .cmd = NFC_CMD_DEACTIVATE_TARGET,
1809 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
1810 .doit = nfc_genl_deactivate_target,
1811 .flags = GENL_ADMIN_PERM,
1815 static struct genl_family nfc_genl_family __ro_after_init = {
1817 .name = NFC_GENL_NAME,
1818 .version = NFC_GENL_VERSION,
1819 .maxattr = NFC_ATTR_MAX,
1820 .policy = nfc_genl_policy,
1821 .module = THIS_MODULE,
1822 .ops = nfc_genl_ops,
1823 .n_ops = ARRAY_SIZE(nfc_genl_ops),
1824 .resv_start_op = NFC_CMD_DEACTIVATE_TARGET + 1,
1825 .mcgrps = nfc_genl_mcgrps,
1826 .n_mcgrps = ARRAY_SIZE(nfc_genl_mcgrps),
1830 struct urelease_work {
1831 struct work_struct w;
1835 static void nfc_urelease_event_work(struct work_struct *work)
1837 struct urelease_work *w = container_of(work, struct urelease_work, w);
1838 struct class_dev_iter iter;
1839 struct nfc_dev *dev;
1841 pr_debug("portid %d\n", w->portid);
1843 mutex_lock(&nfc_devlist_mutex);
1845 nfc_device_iter_init(&iter);
1846 dev = nfc_device_iter_next(&iter);
1849 mutex_lock(&dev->genl_data.genl_data_mutex);
1851 if (dev->genl_data.poll_req_portid == w->portid) {
1853 dev->genl_data.poll_req_portid = 0;
1856 mutex_unlock(&dev->genl_data.genl_data_mutex);
1858 dev = nfc_device_iter_next(&iter);
1861 nfc_device_iter_exit(&iter);
1863 mutex_unlock(&nfc_devlist_mutex);
1868 static int nfc_genl_rcv_nl_event(struct notifier_block *this,
1869 unsigned long event, void *ptr)
1871 struct netlink_notify *n = ptr;
1872 struct urelease_work *w;
1874 if (event != NETLINK_URELEASE || n->protocol != NETLINK_GENERIC)
1877 pr_debug("NETLINK_URELEASE event from id %d\n", n->portid);
1879 w = kmalloc(sizeof(*w), GFP_ATOMIC);
1881 INIT_WORK(&w->w, nfc_urelease_event_work);
1882 w->portid = n->portid;
1883 schedule_work(&w->w);
1890 void nfc_genl_data_init(struct nfc_genl_data *genl_data)
1892 genl_data->poll_req_portid = 0;
1893 mutex_init(&genl_data->genl_data_mutex);
1896 void nfc_genl_data_exit(struct nfc_genl_data *genl_data)
1898 mutex_destroy(&genl_data->genl_data_mutex);
1901 static struct notifier_block nl_notifier = {
1902 .notifier_call = nfc_genl_rcv_nl_event,
1906 * nfc_genl_init() - Initialize netlink interface
1908 * This initialization function registers the nfc netlink family.
1910 int __init nfc_genl_init(void)
1914 rc = genl_register_family(&nfc_genl_family);
1918 netlink_register_notifier(&nl_notifier);
1924 * nfc_genl_exit() - Deinitialize netlink interface
1926 * This exit function unregisters the nfc netlink family.
1928 void nfc_genl_exit(void)
1930 netlink_unregister_notifier(&nl_notifier);
1931 genl_unregister_family(&nfc_genl_family);