ARM: ux500: Purge UIB framework when booting with ATAGs
[linux-2.6/btrfs-unstable.git] / net / nfc / netlink.c
blob68063b2025da2750519dac5a652cdbbea36dac74
1 /*
2 * Copyright (C) 2011 Instituto Nokia de Tecnologia
4 * Authors:
5 * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the
20 * Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
26 #include <net/genetlink.h>
27 #include <linux/nfc.h>
28 #include <linux/slab.h>
30 #include "nfc.h"
31 #include "llcp.h"
33 static struct genl_multicast_group nfc_genl_event_mcgrp = {
34 .name = NFC_GENL_MCAST_EVENT_NAME,
37 static struct genl_family nfc_genl_family = {
38 .id = GENL_ID_GENERATE,
39 .hdrsize = 0,
40 .name = NFC_GENL_NAME,
41 .version = NFC_GENL_VERSION,
42 .maxattr = NFC_ATTR_MAX,
45 static const struct nla_policy nfc_genl_policy[NFC_ATTR_MAX + 1] = {
46 [NFC_ATTR_DEVICE_INDEX] = { .type = NLA_U32 },
47 [NFC_ATTR_DEVICE_NAME] = { .type = NLA_STRING,
48 .len = NFC_DEVICE_NAME_MAXSIZE },
49 [NFC_ATTR_PROTOCOLS] = { .type = NLA_U32 },
50 [NFC_ATTR_COMM_MODE] = { .type = NLA_U8 },
51 [NFC_ATTR_RF_MODE] = { .type = NLA_U8 },
52 [NFC_ATTR_DEVICE_POWERED] = { .type = NLA_U8 },
53 [NFC_ATTR_IM_PROTOCOLS] = { .type = NLA_U32 },
54 [NFC_ATTR_TM_PROTOCOLS] = { .type = NLA_U32 },
55 [NFC_ATTR_LLC_PARAM_LTO] = { .type = NLA_U8 },
56 [NFC_ATTR_LLC_PARAM_RW] = { .type = NLA_U8 },
57 [NFC_ATTR_LLC_PARAM_MIUX] = { .type = NLA_U16 },
58 [NFC_ATTR_LLC_SDP] = { .type = NLA_NESTED },
59 [NFC_ATTR_FIRMWARE_NAME] = { .type = NLA_STRING,
60 .len = NFC_FIRMWARE_NAME_MAXSIZE },
63 static const struct nla_policy nfc_sdp_genl_policy[NFC_SDP_ATTR_MAX + 1] = {
64 [NFC_SDP_ATTR_URI] = { .type = NLA_STRING },
65 [NFC_SDP_ATTR_SAP] = { .type = NLA_U8 },
68 static int nfc_genl_send_target(struct sk_buff *msg, struct nfc_target *target,
69 struct netlink_callback *cb, int flags)
71 void *hdr;
73 hdr = genlmsg_put(msg, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
74 &nfc_genl_family, flags, NFC_CMD_GET_TARGET);
75 if (!hdr)
76 return -EMSGSIZE;
78 genl_dump_check_consistent(cb, hdr, &nfc_genl_family);
80 if (nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target->idx) ||
81 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, target->supported_protocols) ||
82 nla_put_u16(msg, NFC_ATTR_TARGET_SENS_RES, target->sens_res) ||
83 nla_put_u8(msg, NFC_ATTR_TARGET_SEL_RES, target->sel_res))
84 goto nla_put_failure;
85 if (target->nfcid1_len > 0 &&
86 nla_put(msg, NFC_ATTR_TARGET_NFCID1, target->nfcid1_len,
87 target->nfcid1))
88 goto nla_put_failure;
89 if (target->sensb_res_len > 0 &&
90 nla_put(msg, NFC_ATTR_TARGET_SENSB_RES, target->sensb_res_len,
91 target->sensb_res))
92 goto nla_put_failure;
93 if (target->sensf_res_len > 0 &&
94 nla_put(msg, NFC_ATTR_TARGET_SENSF_RES, target->sensf_res_len,
95 target->sensf_res))
96 goto nla_put_failure;
98 return genlmsg_end(msg, hdr);
100 nla_put_failure:
101 genlmsg_cancel(msg, hdr);
102 return -EMSGSIZE;
105 static struct nfc_dev *__get_device_from_cb(struct netlink_callback *cb)
107 struct nfc_dev *dev;
108 int rc;
109 u32 idx;
111 rc = nlmsg_parse(cb->nlh, GENL_HDRLEN + nfc_genl_family.hdrsize,
112 nfc_genl_family.attrbuf,
113 nfc_genl_family.maxattr,
114 nfc_genl_policy);
115 if (rc < 0)
116 return ERR_PTR(rc);
118 if (!nfc_genl_family.attrbuf[NFC_ATTR_DEVICE_INDEX])
119 return ERR_PTR(-EINVAL);
121 idx = nla_get_u32(nfc_genl_family.attrbuf[NFC_ATTR_DEVICE_INDEX]);
123 dev = nfc_get_device(idx);
124 if (!dev)
125 return ERR_PTR(-ENODEV);
127 return dev;
130 static int nfc_genl_dump_targets(struct sk_buff *skb,
131 struct netlink_callback *cb)
133 int i = cb->args[0];
134 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
135 int rc;
137 if (!dev) {
138 dev = __get_device_from_cb(cb);
139 if (IS_ERR(dev))
140 return PTR_ERR(dev);
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,
151 NLM_F_MULTI);
152 if (rc < 0)
153 break;
155 i++;
158 device_unlock(&dev->dev);
160 cb->args[0] = i;
162 return skb->len;
165 static int nfc_genl_dump_targets_done(struct netlink_callback *cb)
167 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
169 if (dev)
170 nfc_put_device(dev);
172 return 0;
175 int nfc_genl_targets_found(struct nfc_dev *dev)
177 struct sk_buff *msg;
178 void *hdr;
180 dev->genl_data.poll_req_portid = 0;
182 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
183 if (!msg)
184 return -ENOMEM;
186 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
187 NFC_EVENT_TARGETS_FOUND);
188 if (!hdr)
189 goto free_msg;
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(msg, 0, nfc_genl_event_mcgrp.id, GFP_ATOMIC);
198 nla_put_failure:
199 genlmsg_cancel(msg, hdr);
200 free_msg:
201 nlmsg_free(msg);
202 return -EMSGSIZE;
205 int nfc_genl_target_lost(struct nfc_dev *dev, u32 target_idx)
207 struct sk_buff *msg;
208 void *hdr;
210 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
211 if (!msg)
212 return -ENOMEM;
214 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
215 NFC_EVENT_TARGET_LOST);
216 if (!hdr)
217 goto free_msg;
219 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
220 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
221 goto nla_put_failure;
223 genlmsg_end(msg, hdr);
225 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
227 return 0;
229 nla_put_failure:
230 genlmsg_cancel(msg, hdr);
231 free_msg:
232 nlmsg_free(msg);
233 return -EMSGSIZE;
236 int nfc_genl_tm_activated(struct nfc_dev *dev, u32 protocol)
238 struct sk_buff *msg;
239 void *hdr;
241 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
242 if (!msg)
243 return -ENOMEM;
245 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
246 NFC_EVENT_TM_ACTIVATED);
247 if (!hdr)
248 goto free_msg;
250 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
251 goto nla_put_failure;
252 if (nla_put_u32(msg, NFC_ATTR_TM_PROTOCOLS, protocol))
253 goto nla_put_failure;
255 genlmsg_end(msg, hdr);
257 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
259 return 0;
261 nla_put_failure:
262 genlmsg_cancel(msg, hdr);
263 free_msg:
264 nlmsg_free(msg);
265 return -EMSGSIZE;
268 int nfc_genl_tm_deactivated(struct nfc_dev *dev)
270 struct sk_buff *msg;
271 void *hdr;
273 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
274 if (!msg)
275 return -ENOMEM;
277 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
278 NFC_EVENT_TM_DEACTIVATED);
279 if (!hdr)
280 goto free_msg;
282 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
283 goto nla_put_failure;
285 genlmsg_end(msg, hdr);
287 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
289 return 0;
291 nla_put_failure:
292 genlmsg_cancel(msg, hdr);
293 free_msg:
294 nlmsg_free(msg);
295 return -EMSGSIZE;
298 int nfc_genl_device_added(struct nfc_dev *dev)
300 struct sk_buff *msg;
301 void *hdr;
303 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
304 if (!msg)
305 return -ENOMEM;
307 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
308 NFC_EVENT_DEVICE_ADDED);
309 if (!hdr)
310 goto free_msg;
312 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
313 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
314 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) ||
315 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up))
316 goto nla_put_failure;
318 genlmsg_end(msg, hdr);
320 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
322 return 0;
324 nla_put_failure:
325 genlmsg_cancel(msg, hdr);
326 free_msg:
327 nlmsg_free(msg);
328 return -EMSGSIZE;
331 int nfc_genl_device_removed(struct nfc_dev *dev)
333 struct sk_buff *msg;
334 void *hdr;
336 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
337 if (!msg)
338 return -ENOMEM;
340 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
341 NFC_EVENT_DEVICE_REMOVED);
342 if (!hdr)
343 goto free_msg;
345 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
346 goto nla_put_failure;
348 genlmsg_end(msg, hdr);
350 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
352 return 0;
354 nla_put_failure:
355 genlmsg_cancel(msg, hdr);
356 free_msg:
357 nlmsg_free(msg);
358 return -EMSGSIZE;
361 int nfc_genl_llc_send_sdres(struct nfc_dev *dev, struct hlist_head *sdres_list)
363 struct sk_buff *msg;
364 struct nlattr *sdp_attr, *uri_attr;
365 struct nfc_llcp_sdp_tlv *sdres;
366 struct hlist_node *n;
367 void *hdr;
368 int rc = -EMSGSIZE;
369 int i;
371 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
372 if (!msg)
373 return -ENOMEM;
375 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
376 NFC_EVENT_LLC_SDRES);
377 if (!hdr)
378 goto free_msg;
380 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
381 goto nla_put_failure;
383 sdp_attr = nla_nest_start(msg, NFC_ATTR_LLC_SDP);
384 if (sdp_attr == NULL) {
385 rc = -ENOMEM;
386 goto nla_put_failure;
389 i = 1;
390 hlist_for_each_entry_safe(sdres, n, sdres_list, node) {
391 pr_debug("uri: %s, sap: %d\n", sdres->uri, sdres->sap);
393 uri_attr = nla_nest_start(msg, i++);
394 if (uri_attr == NULL) {
395 rc = -ENOMEM;
396 goto nla_put_failure;
399 if (nla_put_u8(msg, NFC_SDP_ATTR_SAP, sdres->sap))
400 goto nla_put_failure;
402 if (nla_put_string(msg, NFC_SDP_ATTR_URI, sdres->uri))
403 goto nla_put_failure;
405 nla_nest_end(msg, uri_attr);
407 hlist_del(&sdres->node);
409 nfc_llcp_free_sdp_tlv(sdres);
412 nla_nest_end(msg, sdp_attr);
414 genlmsg_end(msg, hdr);
416 return genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_ATOMIC);
418 nla_put_failure:
419 genlmsg_cancel(msg, hdr);
421 free_msg:
422 nlmsg_free(msg);
424 nfc_llcp_free_sdp_tlv_list(sdres_list);
426 return rc;
429 int nfc_genl_se_added(struct nfc_dev *dev, u32 se_idx, u16 type)
431 struct sk_buff *msg;
432 void *hdr;
434 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
435 if (!msg)
436 return -ENOMEM;
438 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
439 NFC_EVENT_SE_ADDED);
440 if (!hdr)
441 goto free_msg;
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(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
452 return 0;
454 nla_put_failure:
455 genlmsg_cancel(msg, hdr);
456 free_msg:
457 nlmsg_free(msg);
458 return -EMSGSIZE;
461 int nfc_genl_se_removed(struct nfc_dev *dev, u32 se_idx)
463 struct sk_buff *msg;
464 void *hdr;
466 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
467 if (!msg)
468 return -ENOMEM;
470 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
471 NFC_EVENT_SE_REMOVED);
472 if (!hdr)
473 goto free_msg;
475 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
476 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx))
477 goto nla_put_failure;
479 genlmsg_end(msg, hdr);
481 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
483 return 0;
485 nla_put_failure:
486 genlmsg_cancel(msg, hdr);
487 free_msg:
488 nlmsg_free(msg);
489 return -EMSGSIZE;
492 static int nfc_genl_send_device(struct sk_buff *msg, struct nfc_dev *dev,
493 u32 portid, u32 seq,
494 struct netlink_callback *cb,
495 int flags)
497 void *hdr;
499 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
500 NFC_CMD_GET_DEVICE);
501 if (!hdr)
502 return -EMSGSIZE;
504 if (cb)
505 genl_dump_check_consistent(cb, hdr, &nfc_genl_family);
507 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) ||
508 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
509 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) ||
510 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up) ||
511 nla_put_u8(msg, NFC_ATTR_RF_MODE, dev->rf_mode))
512 goto nla_put_failure;
514 return genlmsg_end(msg, hdr);
516 nla_put_failure:
517 genlmsg_cancel(msg, hdr);
518 return -EMSGSIZE;
521 static int nfc_genl_dump_devices(struct sk_buff *skb,
522 struct netlink_callback *cb)
524 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
525 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
526 bool first_call = false;
528 if (!iter) {
529 first_call = true;
530 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
531 if (!iter)
532 return -ENOMEM;
533 cb->args[0] = (long) iter;
536 mutex_lock(&nfc_devlist_mutex);
538 cb->seq = nfc_devlist_generation;
540 if (first_call) {
541 nfc_device_iter_init(iter);
542 dev = nfc_device_iter_next(iter);
545 while (dev) {
546 int rc;
548 rc = nfc_genl_send_device(skb, dev, NETLINK_CB(cb->skb).portid,
549 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
550 if (rc < 0)
551 break;
553 dev = nfc_device_iter_next(iter);
556 mutex_unlock(&nfc_devlist_mutex);
558 cb->args[1] = (long) dev;
560 return skb->len;
563 static int nfc_genl_dump_devices_done(struct netlink_callback *cb)
565 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
567 nfc_device_iter_exit(iter);
568 kfree(iter);
570 return 0;
573 int nfc_genl_dep_link_up_event(struct nfc_dev *dev, u32 target_idx,
574 u8 comm_mode, u8 rf_mode)
576 struct sk_buff *msg;
577 void *hdr;
579 pr_debug("DEP link is up\n");
581 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
582 if (!msg)
583 return -ENOMEM;
585 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, NFC_CMD_DEP_LINK_UP);
586 if (!hdr)
587 goto free_msg;
589 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
590 goto nla_put_failure;
591 if (rf_mode == NFC_RF_INITIATOR &&
592 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx))
593 goto nla_put_failure;
594 if (nla_put_u8(msg, NFC_ATTR_COMM_MODE, comm_mode) ||
595 nla_put_u8(msg, NFC_ATTR_RF_MODE, rf_mode))
596 goto nla_put_failure;
598 genlmsg_end(msg, hdr);
600 dev->dep_link_up = true;
602 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_ATOMIC);
604 return 0;
606 nla_put_failure:
607 genlmsg_cancel(msg, hdr);
608 free_msg:
609 nlmsg_free(msg);
610 return -EMSGSIZE;
613 int nfc_genl_dep_link_down_event(struct nfc_dev *dev)
615 struct sk_buff *msg;
616 void *hdr;
618 pr_debug("DEP link is down\n");
620 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
621 if (!msg)
622 return -ENOMEM;
624 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
625 NFC_CMD_DEP_LINK_DOWN);
626 if (!hdr)
627 goto free_msg;
629 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
630 goto nla_put_failure;
632 genlmsg_end(msg, hdr);
634 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_ATOMIC);
636 return 0;
638 nla_put_failure:
639 genlmsg_cancel(msg, hdr);
640 free_msg:
641 nlmsg_free(msg);
642 return -EMSGSIZE;
645 static int nfc_genl_get_device(struct sk_buff *skb, struct genl_info *info)
647 struct sk_buff *msg;
648 struct nfc_dev *dev;
649 u32 idx;
650 int rc = -ENOBUFS;
652 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
653 return -EINVAL;
655 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
657 dev = nfc_get_device(idx);
658 if (!dev)
659 return -ENODEV;
661 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
662 if (!msg) {
663 rc = -ENOMEM;
664 goto out_putdev;
667 rc = nfc_genl_send_device(msg, dev, info->snd_portid, info->snd_seq,
668 NULL, 0);
669 if (rc < 0)
670 goto out_free;
672 nfc_put_device(dev);
674 return genlmsg_reply(msg, info);
676 out_free:
677 nlmsg_free(msg);
678 out_putdev:
679 nfc_put_device(dev);
680 return rc;
683 static int nfc_genl_dev_up(struct sk_buff *skb, struct genl_info *info)
685 struct nfc_dev *dev;
686 int rc;
687 u32 idx;
689 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
690 return -EINVAL;
692 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
694 dev = nfc_get_device(idx);
695 if (!dev)
696 return -ENODEV;
698 rc = nfc_dev_up(dev);
700 nfc_put_device(dev);
701 return rc;
704 static int nfc_genl_dev_down(struct sk_buff *skb, struct genl_info *info)
706 struct nfc_dev *dev;
707 int rc;
708 u32 idx;
710 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
711 return -EINVAL;
713 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
715 dev = nfc_get_device(idx);
716 if (!dev)
717 return -ENODEV;
719 rc = nfc_dev_down(dev);
721 nfc_put_device(dev);
722 return rc;
725 static int nfc_genl_start_poll(struct sk_buff *skb, struct genl_info *info)
727 struct nfc_dev *dev;
728 int rc;
729 u32 idx;
730 u32 im_protocols = 0, tm_protocols = 0;
732 pr_debug("Poll start\n");
734 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
735 ((!info->attrs[NFC_ATTR_IM_PROTOCOLS] &&
736 !info->attrs[NFC_ATTR_PROTOCOLS]) &&
737 !info->attrs[NFC_ATTR_TM_PROTOCOLS]))
738 return -EINVAL;
740 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
742 if (info->attrs[NFC_ATTR_TM_PROTOCOLS])
743 tm_protocols = nla_get_u32(info->attrs[NFC_ATTR_TM_PROTOCOLS]);
745 if (info->attrs[NFC_ATTR_IM_PROTOCOLS])
746 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_IM_PROTOCOLS]);
747 else if (info->attrs[NFC_ATTR_PROTOCOLS])
748 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]);
750 dev = nfc_get_device(idx);
751 if (!dev)
752 return -ENODEV;
754 mutex_lock(&dev->genl_data.genl_data_mutex);
756 rc = nfc_start_poll(dev, im_protocols, tm_protocols);
757 if (!rc)
758 dev->genl_data.poll_req_portid = info->snd_portid;
760 mutex_unlock(&dev->genl_data.genl_data_mutex);
762 nfc_put_device(dev);
763 return rc;
766 static int nfc_genl_stop_poll(struct sk_buff *skb, struct genl_info *info)
768 struct nfc_dev *dev;
769 int rc;
770 u32 idx;
772 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
773 return -EINVAL;
775 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
777 dev = nfc_get_device(idx);
778 if (!dev)
779 return -ENODEV;
781 device_lock(&dev->dev);
783 if (!dev->polling) {
784 device_unlock(&dev->dev);
785 return -EINVAL;
788 device_unlock(&dev->dev);
790 mutex_lock(&dev->genl_data.genl_data_mutex);
792 if (dev->genl_data.poll_req_portid != info->snd_portid) {
793 rc = -EBUSY;
794 goto out;
797 rc = nfc_stop_poll(dev);
798 dev->genl_data.poll_req_portid = 0;
800 out:
801 mutex_unlock(&dev->genl_data.genl_data_mutex);
802 nfc_put_device(dev);
803 return rc;
806 static int nfc_genl_dep_link_up(struct sk_buff *skb, struct genl_info *info)
808 struct nfc_dev *dev;
809 int rc, tgt_idx;
810 u32 idx;
811 u8 comm;
813 pr_debug("DEP link up\n");
815 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
816 !info->attrs[NFC_ATTR_COMM_MODE])
817 return -EINVAL;
819 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
820 if (!info->attrs[NFC_ATTR_TARGET_INDEX])
821 tgt_idx = NFC_TARGET_IDX_ANY;
822 else
823 tgt_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]);
825 comm = nla_get_u8(info->attrs[NFC_ATTR_COMM_MODE]);
827 if (comm != NFC_COMM_ACTIVE && comm != NFC_COMM_PASSIVE)
828 return -EINVAL;
830 dev = nfc_get_device(idx);
831 if (!dev)
832 return -ENODEV;
834 rc = nfc_dep_link_up(dev, tgt_idx, comm);
836 nfc_put_device(dev);
838 return rc;
841 static int nfc_genl_dep_link_down(struct sk_buff *skb, struct genl_info *info)
843 struct nfc_dev *dev;
844 int rc;
845 u32 idx;
847 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
848 return -EINVAL;
850 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
852 dev = nfc_get_device(idx);
853 if (!dev)
854 return -ENODEV;
856 rc = nfc_dep_link_down(dev);
858 nfc_put_device(dev);
859 return rc;
862 static int nfc_genl_send_params(struct sk_buff *msg,
863 struct nfc_llcp_local *local,
864 u32 portid, u32 seq)
866 void *hdr;
868 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, 0,
869 NFC_CMD_LLC_GET_PARAMS);
870 if (!hdr)
871 return -EMSGSIZE;
873 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, local->dev->idx) ||
874 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_LTO, local->lto) ||
875 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_RW, local->rw) ||
876 nla_put_u16(msg, NFC_ATTR_LLC_PARAM_MIUX, be16_to_cpu(local->miux)))
877 goto nla_put_failure;
879 return genlmsg_end(msg, hdr);
881 nla_put_failure:
883 genlmsg_cancel(msg, hdr);
884 return -EMSGSIZE;
887 static int nfc_genl_llc_get_params(struct sk_buff *skb, struct genl_info *info)
889 struct nfc_dev *dev;
890 struct nfc_llcp_local *local;
891 int rc = 0;
892 struct sk_buff *msg = NULL;
893 u32 idx;
895 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
896 return -EINVAL;
898 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
900 dev = nfc_get_device(idx);
901 if (!dev)
902 return -ENODEV;
904 device_lock(&dev->dev);
906 local = nfc_llcp_find_local(dev);
907 if (!local) {
908 rc = -ENODEV;
909 goto exit;
912 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
913 if (!msg) {
914 rc = -ENOMEM;
915 goto exit;
918 rc = nfc_genl_send_params(msg, local, info->snd_portid, info->snd_seq);
920 exit:
921 device_unlock(&dev->dev);
923 nfc_put_device(dev);
925 if (rc < 0) {
926 if (msg)
927 nlmsg_free(msg);
929 return rc;
932 return genlmsg_reply(msg, info);
935 static int nfc_genl_llc_set_params(struct sk_buff *skb, struct genl_info *info)
937 struct nfc_dev *dev;
938 struct nfc_llcp_local *local;
939 u8 rw = 0;
940 u16 miux = 0;
941 u32 idx;
942 int rc = 0;
944 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
945 (!info->attrs[NFC_ATTR_LLC_PARAM_LTO] &&
946 !info->attrs[NFC_ATTR_LLC_PARAM_RW] &&
947 !info->attrs[NFC_ATTR_LLC_PARAM_MIUX]))
948 return -EINVAL;
950 if (info->attrs[NFC_ATTR_LLC_PARAM_RW]) {
951 rw = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_RW]);
953 if (rw > LLCP_MAX_RW)
954 return -EINVAL;
957 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX]) {
958 miux = nla_get_u16(info->attrs[NFC_ATTR_LLC_PARAM_MIUX]);
960 if (miux > LLCP_MAX_MIUX)
961 return -EINVAL;
964 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
966 dev = nfc_get_device(idx);
967 if (!dev)
968 return -ENODEV;
970 device_lock(&dev->dev);
972 local = nfc_llcp_find_local(dev);
973 if (!local) {
974 nfc_put_device(dev);
975 rc = -ENODEV;
976 goto exit;
979 if (info->attrs[NFC_ATTR_LLC_PARAM_LTO]) {
980 if (dev->dep_link_up) {
981 rc = -EINPROGRESS;
982 goto exit;
985 local->lto = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_LTO]);
988 if (info->attrs[NFC_ATTR_LLC_PARAM_RW])
989 local->rw = rw;
991 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX])
992 local->miux = cpu_to_be16(miux);
994 exit:
995 device_unlock(&dev->dev);
997 nfc_put_device(dev);
999 return rc;
1002 static int nfc_genl_llc_sdreq(struct sk_buff *skb, struct genl_info *info)
1004 struct nfc_dev *dev;
1005 struct nfc_llcp_local *local;
1006 struct nlattr *attr, *sdp_attrs[NFC_SDP_ATTR_MAX+1];
1007 u32 idx;
1008 u8 tid;
1009 char *uri;
1010 int rc = 0, rem;
1011 size_t uri_len, tlvs_len;
1012 struct hlist_head sdreq_list;
1013 struct nfc_llcp_sdp_tlv *sdreq;
1015 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1016 !info->attrs[NFC_ATTR_LLC_SDP])
1017 return -EINVAL;
1019 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1021 dev = nfc_get_device(idx);
1022 if (!dev) {
1023 rc = -ENODEV;
1024 goto exit;
1027 device_lock(&dev->dev);
1029 if (dev->dep_link_up == false) {
1030 rc = -ENOLINK;
1031 goto exit;
1034 local = nfc_llcp_find_local(dev);
1035 if (!local) {
1036 nfc_put_device(dev);
1037 rc = -ENODEV;
1038 goto exit;
1041 INIT_HLIST_HEAD(&sdreq_list);
1043 tlvs_len = 0;
1045 nla_for_each_nested(attr, info->attrs[NFC_ATTR_LLC_SDP], rem) {
1046 rc = nla_parse_nested(sdp_attrs, NFC_SDP_ATTR_MAX, attr,
1047 nfc_sdp_genl_policy);
1049 if (rc != 0) {
1050 rc = -EINVAL;
1051 goto exit;
1054 if (!sdp_attrs[NFC_SDP_ATTR_URI])
1055 continue;
1057 uri_len = nla_len(sdp_attrs[NFC_SDP_ATTR_URI]);
1058 if (uri_len == 0)
1059 continue;
1061 uri = nla_data(sdp_attrs[NFC_SDP_ATTR_URI]);
1062 if (uri == NULL || *uri == 0)
1063 continue;
1065 tid = local->sdreq_next_tid++;
1067 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len);
1068 if (sdreq == NULL) {
1069 rc = -ENOMEM;
1070 goto exit;
1073 tlvs_len += sdreq->tlv_len;
1075 hlist_add_head(&sdreq->node, &sdreq_list);
1078 if (hlist_empty(&sdreq_list)) {
1079 rc = -EINVAL;
1080 goto exit;
1083 rc = nfc_llcp_send_snl_sdreq(local, &sdreq_list, tlvs_len);
1084 exit:
1085 device_unlock(&dev->dev);
1087 nfc_put_device(dev);
1089 return rc;
1092 static int nfc_genl_fw_download(struct sk_buff *skb, struct genl_info *info)
1094 struct nfc_dev *dev;
1095 int rc;
1096 u32 idx;
1097 char firmware_name[NFC_FIRMWARE_NAME_MAXSIZE + 1];
1099 if (!info->attrs[NFC_ATTR_DEVICE_INDEX])
1100 return -EINVAL;
1102 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1104 dev = nfc_get_device(idx);
1105 if (!dev)
1106 return -ENODEV;
1108 nla_strlcpy(firmware_name, info->attrs[NFC_ATTR_FIRMWARE_NAME],
1109 sizeof(firmware_name));
1111 rc = nfc_fw_download(dev, firmware_name);
1113 nfc_put_device(dev);
1114 return rc;
1117 int nfc_genl_fw_download_done(struct nfc_dev *dev, const char *firmware_name,
1118 u32 result)
1120 struct sk_buff *msg;
1121 void *hdr;
1123 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1124 if (!msg)
1125 return -ENOMEM;
1127 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0,
1128 NFC_CMD_FW_DOWNLOAD);
1129 if (!hdr)
1130 goto free_msg;
1132 if (nla_put_string(msg, NFC_ATTR_FIRMWARE_NAME, firmware_name) ||
1133 nla_put_u32(msg, NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, result) ||
1134 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx))
1135 goto nla_put_failure;
1137 genlmsg_end(msg, hdr);
1139 genlmsg_multicast(msg, 0, nfc_genl_event_mcgrp.id, GFP_KERNEL);
1141 return 0;
1143 nla_put_failure:
1144 genlmsg_cancel(msg, hdr);
1145 free_msg:
1146 nlmsg_free(msg);
1147 return -EMSGSIZE;
1150 static int nfc_genl_enable_se(struct sk_buff *skb, struct genl_info *info)
1152 struct nfc_dev *dev;
1153 int rc;
1154 u32 idx, se_idx;
1156 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1157 !info->attrs[NFC_ATTR_SE_INDEX])
1158 return -EINVAL;
1160 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1161 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1163 dev = nfc_get_device(idx);
1164 if (!dev)
1165 return -ENODEV;
1167 rc = nfc_enable_se(dev, se_idx);
1169 nfc_put_device(dev);
1170 return rc;
1173 static int nfc_genl_disable_se(struct sk_buff *skb, struct genl_info *info)
1175 struct nfc_dev *dev;
1176 int rc;
1177 u32 idx, se_idx;
1179 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] ||
1180 !info->attrs[NFC_ATTR_SE_INDEX])
1181 return -EINVAL;
1183 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]);
1184 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]);
1186 dev = nfc_get_device(idx);
1187 if (!dev)
1188 return -ENODEV;
1190 rc = nfc_disable_se(dev, se_idx);
1192 nfc_put_device(dev);
1193 return rc;
1196 static int nfc_genl_send_se(struct sk_buff *msg, struct nfc_dev *dev,
1197 u32 portid, u32 seq,
1198 struct netlink_callback *cb,
1199 int flags)
1201 void *hdr;
1202 struct nfc_se *se, *n;
1204 list_for_each_entry_safe(se, n, &dev->secure_elements, list) {
1205 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags,
1206 NFC_CMD_GET_SE);
1207 if (!hdr)
1208 goto nla_put_failure;
1210 if (cb)
1211 genl_dump_check_consistent(cb, hdr, &nfc_genl_family);
1213 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) ||
1214 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se->idx) ||
1215 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type))
1216 goto nla_put_failure;
1218 if (genlmsg_end(msg, hdr) < 0)
1219 goto nla_put_failure;
1222 return 0;
1224 nla_put_failure:
1225 genlmsg_cancel(msg, hdr);
1226 return -EMSGSIZE;
1229 static int nfc_genl_dump_ses(struct sk_buff *skb,
1230 struct netlink_callback *cb)
1232 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1233 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1];
1234 bool first_call = false;
1236 if (!iter) {
1237 first_call = true;
1238 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL);
1239 if (!iter)
1240 return -ENOMEM;
1241 cb->args[0] = (long) iter;
1244 mutex_lock(&nfc_devlist_mutex);
1246 cb->seq = nfc_devlist_generation;
1248 if (first_call) {
1249 nfc_device_iter_init(iter);
1250 dev = nfc_device_iter_next(iter);
1253 while (dev) {
1254 int rc;
1256 rc = nfc_genl_send_se(skb, dev, NETLINK_CB(cb->skb).portid,
1257 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI);
1258 if (rc < 0)
1259 break;
1261 dev = nfc_device_iter_next(iter);
1264 mutex_unlock(&nfc_devlist_mutex);
1266 cb->args[1] = (long) dev;
1268 return skb->len;
1271 static int nfc_genl_dump_ses_done(struct netlink_callback *cb)
1273 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
1275 nfc_device_iter_exit(iter);
1276 kfree(iter);
1278 return 0;
1281 static struct genl_ops nfc_genl_ops[] = {
1283 .cmd = NFC_CMD_GET_DEVICE,
1284 .doit = nfc_genl_get_device,
1285 .dumpit = nfc_genl_dump_devices,
1286 .done = nfc_genl_dump_devices_done,
1287 .policy = nfc_genl_policy,
1290 .cmd = NFC_CMD_DEV_UP,
1291 .doit = nfc_genl_dev_up,
1292 .policy = nfc_genl_policy,
1295 .cmd = NFC_CMD_DEV_DOWN,
1296 .doit = nfc_genl_dev_down,
1297 .policy = nfc_genl_policy,
1300 .cmd = NFC_CMD_START_POLL,
1301 .doit = nfc_genl_start_poll,
1302 .policy = nfc_genl_policy,
1305 .cmd = NFC_CMD_STOP_POLL,
1306 .doit = nfc_genl_stop_poll,
1307 .policy = nfc_genl_policy,
1310 .cmd = NFC_CMD_DEP_LINK_UP,
1311 .doit = nfc_genl_dep_link_up,
1312 .policy = nfc_genl_policy,
1315 .cmd = NFC_CMD_DEP_LINK_DOWN,
1316 .doit = nfc_genl_dep_link_down,
1317 .policy = nfc_genl_policy,
1320 .cmd = NFC_CMD_GET_TARGET,
1321 .dumpit = nfc_genl_dump_targets,
1322 .done = nfc_genl_dump_targets_done,
1323 .policy = nfc_genl_policy,
1326 .cmd = NFC_CMD_LLC_GET_PARAMS,
1327 .doit = nfc_genl_llc_get_params,
1328 .policy = nfc_genl_policy,
1331 .cmd = NFC_CMD_LLC_SET_PARAMS,
1332 .doit = nfc_genl_llc_set_params,
1333 .policy = nfc_genl_policy,
1336 .cmd = NFC_CMD_LLC_SDREQ,
1337 .doit = nfc_genl_llc_sdreq,
1338 .policy = nfc_genl_policy,
1341 .cmd = NFC_CMD_FW_DOWNLOAD,
1342 .doit = nfc_genl_fw_download,
1343 .policy = nfc_genl_policy,
1346 .cmd = NFC_CMD_ENABLE_SE,
1347 .doit = nfc_genl_enable_se,
1348 .policy = nfc_genl_policy,
1351 .cmd = NFC_CMD_DISABLE_SE,
1352 .doit = nfc_genl_disable_se,
1353 .policy = nfc_genl_policy,
1356 .cmd = NFC_CMD_GET_SE,
1357 .dumpit = nfc_genl_dump_ses,
1358 .done = nfc_genl_dump_ses_done,
1359 .policy = nfc_genl_policy,
1364 struct urelease_work {
1365 struct work_struct w;
1366 int portid;
1369 static void nfc_urelease_event_work(struct work_struct *work)
1371 struct urelease_work *w = container_of(work, struct urelease_work, w);
1372 struct class_dev_iter iter;
1373 struct nfc_dev *dev;
1375 pr_debug("portid %d\n", w->portid);
1377 mutex_lock(&nfc_devlist_mutex);
1379 nfc_device_iter_init(&iter);
1380 dev = nfc_device_iter_next(&iter);
1382 while (dev) {
1383 mutex_lock(&dev->genl_data.genl_data_mutex);
1385 if (dev->genl_data.poll_req_portid == w->portid) {
1386 nfc_stop_poll(dev);
1387 dev->genl_data.poll_req_portid = 0;
1390 mutex_unlock(&dev->genl_data.genl_data_mutex);
1392 dev = nfc_device_iter_next(&iter);
1395 nfc_device_iter_exit(&iter);
1397 mutex_unlock(&nfc_devlist_mutex);
1399 kfree(w);
1402 static int nfc_genl_rcv_nl_event(struct notifier_block *this,
1403 unsigned long event, void *ptr)
1405 struct netlink_notify *n = ptr;
1406 struct urelease_work *w;
1408 if (event != NETLINK_URELEASE || n->protocol != NETLINK_GENERIC)
1409 goto out;
1411 pr_debug("NETLINK_URELEASE event from id %d\n", n->portid);
1413 w = kmalloc(sizeof(*w), GFP_ATOMIC);
1414 if (w) {
1415 INIT_WORK((struct work_struct *) w, nfc_urelease_event_work);
1416 w->portid = n->portid;
1417 schedule_work((struct work_struct *) w);
1420 out:
1421 return NOTIFY_DONE;
1424 void nfc_genl_data_init(struct nfc_genl_data *genl_data)
1426 genl_data->poll_req_portid = 0;
1427 mutex_init(&genl_data->genl_data_mutex);
1430 void nfc_genl_data_exit(struct nfc_genl_data *genl_data)
1432 mutex_destroy(&genl_data->genl_data_mutex);
1435 static struct notifier_block nl_notifier = {
1436 .notifier_call = nfc_genl_rcv_nl_event,
1440 * nfc_genl_init() - Initialize netlink interface
1442 * This initialization function registers the nfc netlink family.
1444 int __init nfc_genl_init(void)
1446 int rc;
1448 rc = genl_register_family_with_ops(&nfc_genl_family, nfc_genl_ops,
1449 ARRAY_SIZE(nfc_genl_ops));
1450 if (rc)
1451 return rc;
1453 rc = genl_register_mc_group(&nfc_genl_family, &nfc_genl_event_mcgrp);
1455 netlink_register_notifier(&nl_notifier);
1457 return rc;
1461 * nfc_genl_exit() - Deinitialize netlink interface
1463 * This exit function unregisters the nfc netlink family.
1465 void nfc_genl_exit(void)
1467 netlink_unregister_notifier(&nl_notifier);
1468 genl_unregister_family(&nfc_genl_family);