1 // SPDX-License-Identifier: GPL-2.0-or-later 1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 2 /* 3 * Copyright (C) 2011 Instituto Nokia de Tecno 3 * Copyright (C) 2011 Instituto Nokia de Tecnologia 4 * 4 * 5 * Authors: 5 * Authors: 6 * Lauro Ramos Venancio <lauro.venancio@ope 6 * Lauro Ramos Venancio <lauro.venancio@openbossa.org> 7 * Aloisio Almeida Jr <aloisio.almeida@open 7 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org> 8 * 8 * 9 * Vendor commands implementation based on net 9 * Vendor commands implementation based on net/wireless/nl80211.c 10 * which is: 10 * which is: 11 * 11 * 12 * Copyright 2006-2010 Johannes Berg <johanne 12 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> 13 * Copyright 2013-2014 Intel Mobile Communica 13 * Copyright 2013-2014 Intel Mobile Communications GmbH 14 */ 14 */ 15 15 16 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fm 16 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__ 17 17 18 #include <net/genetlink.h> 18 #include <net/genetlink.h> 19 #include <linux/nfc.h> 19 #include <linux/nfc.h> 20 #include <linux/slab.h> 20 #include <linux/slab.h> 21 21 22 #include "nfc.h" 22 #include "nfc.h" 23 #include "llcp.h" 23 #include "llcp.h" 24 24 25 static const struct genl_multicast_group nfc_g 25 static const struct genl_multicast_group nfc_genl_mcgrps[] = { 26 { .name = NFC_GENL_MCAST_EVENT_NAME, } 26 { .name = NFC_GENL_MCAST_EVENT_NAME, }, 27 }; 27 }; 28 28 29 static struct genl_family nfc_genl_family; 29 static struct genl_family nfc_genl_family; 30 static const struct nla_policy nfc_genl_policy 30 static const struct nla_policy nfc_genl_policy[NFC_ATTR_MAX + 1] = { 31 [NFC_ATTR_DEVICE_INDEX] = { .type = NL 31 [NFC_ATTR_DEVICE_INDEX] = { .type = NLA_U32 }, 32 [NFC_ATTR_DEVICE_NAME] = { .type = NLA 32 [NFC_ATTR_DEVICE_NAME] = { .type = NLA_STRING, 33 .len = NFC_DEV 33 .len = NFC_DEVICE_NAME_MAXSIZE }, 34 [NFC_ATTR_PROTOCOLS] = { .type = NLA_U 34 [NFC_ATTR_PROTOCOLS] = { .type = NLA_U32 }, 35 [NFC_ATTR_TARGET_INDEX] = { .type = NL 35 [NFC_ATTR_TARGET_INDEX] = { .type = NLA_U32 }, 36 [NFC_ATTR_COMM_MODE] = { .type = NLA_U 36 [NFC_ATTR_COMM_MODE] = { .type = NLA_U8 }, 37 [NFC_ATTR_RF_MODE] = { .type = NLA_U8 37 [NFC_ATTR_RF_MODE] = { .type = NLA_U8 }, 38 [NFC_ATTR_DEVICE_POWERED] = { .type = 38 [NFC_ATTR_DEVICE_POWERED] = { .type = NLA_U8 }, 39 [NFC_ATTR_IM_PROTOCOLS] = { .type = NL 39 [NFC_ATTR_IM_PROTOCOLS] = { .type = NLA_U32 }, 40 [NFC_ATTR_TM_PROTOCOLS] = { .type = NL 40 [NFC_ATTR_TM_PROTOCOLS] = { .type = NLA_U32 }, 41 [NFC_ATTR_LLC_PARAM_LTO] = { .type = N 41 [NFC_ATTR_LLC_PARAM_LTO] = { .type = NLA_U8 }, 42 [NFC_ATTR_LLC_PARAM_RW] = { .type = NL 42 [NFC_ATTR_LLC_PARAM_RW] = { .type = NLA_U8 }, 43 [NFC_ATTR_LLC_PARAM_MIUX] = { .type = 43 [NFC_ATTR_LLC_PARAM_MIUX] = { .type = NLA_U16 }, 44 [NFC_ATTR_LLC_SDP] = { .type = NLA_NES 44 [NFC_ATTR_LLC_SDP] = { .type = NLA_NESTED }, 45 [NFC_ATTR_FIRMWARE_NAME] = { .type = N 45 [NFC_ATTR_FIRMWARE_NAME] = { .type = NLA_STRING, 46 .len = NF 46 .len = NFC_FIRMWARE_NAME_MAXSIZE }, 47 [NFC_ATTR_SE_INDEX] = { .type = NLA_U3 47 [NFC_ATTR_SE_INDEX] = { .type = NLA_U32 }, 48 [NFC_ATTR_SE_APDU] = { .type = NLA_BIN 48 [NFC_ATTR_SE_APDU] = { .type = NLA_BINARY }, 49 [NFC_ATTR_VENDOR_ID] = { .type = NLA_U 49 [NFC_ATTR_VENDOR_ID] = { .type = NLA_U32 }, 50 [NFC_ATTR_VENDOR_SUBCMD] = { .type = N 50 [NFC_ATTR_VENDOR_SUBCMD] = { .type = NLA_U32 }, 51 [NFC_ATTR_VENDOR_DATA] = { .type = NLA 51 [NFC_ATTR_VENDOR_DATA] = { .type = NLA_BINARY }, 52 52 53 }; 53 }; 54 54 55 static const struct nla_policy nfc_sdp_genl_po 55 static const struct nla_policy nfc_sdp_genl_policy[NFC_SDP_ATTR_MAX + 1] = { 56 [NFC_SDP_ATTR_URI] = { .type = NLA_STR 56 [NFC_SDP_ATTR_URI] = { .type = NLA_STRING, 57 .len = U8_MAX - 57 .len = U8_MAX - 4 }, 58 [NFC_SDP_ATTR_SAP] = { .type = NLA_U8 58 [NFC_SDP_ATTR_SAP] = { .type = NLA_U8 }, 59 }; 59 }; 60 60 61 static int nfc_genl_send_target(struct sk_buff 61 static int nfc_genl_send_target(struct sk_buff *msg, struct nfc_target *target, 62 struct netlink 62 struct netlink_callback *cb, int flags) 63 { 63 { 64 void *hdr; 64 void *hdr; 65 65 66 hdr = genlmsg_put(msg, NETLINK_CB(cb-> 66 hdr = genlmsg_put(msg, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq, 67 &nfc_genl_family, fl 67 &nfc_genl_family, flags, NFC_CMD_GET_TARGET); 68 if (!hdr) 68 if (!hdr) 69 return -EMSGSIZE; 69 return -EMSGSIZE; 70 70 71 genl_dump_check_consistent(cb, hdr); 71 genl_dump_check_consistent(cb, hdr); 72 72 73 if (nla_put_u32(msg, NFC_ATTR_TARGET_I 73 if (nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target->idx) || 74 nla_put_u32(msg, NFC_ATTR_PROTOCOL 74 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, target->supported_protocols) || 75 nla_put_u16(msg, NFC_ATTR_TARGET_S 75 nla_put_u16(msg, NFC_ATTR_TARGET_SENS_RES, target->sens_res) || 76 nla_put_u8(msg, NFC_ATTR_TARGET_SE 76 nla_put_u8(msg, NFC_ATTR_TARGET_SEL_RES, target->sel_res)) 77 goto nla_put_failure; 77 goto nla_put_failure; 78 if (target->nfcid1_len > 0 && 78 if (target->nfcid1_len > 0 && 79 nla_put(msg, NFC_ATTR_TARGET_NFCID 79 nla_put(msg, NFC_ATTR_TARGET_NFCID1, target->nfcid1_len, 80 target->nfcid1)) 80 target->nfcid1)) 81 goto nla_put_failure; 81 goto nla_put_failure; 82 if (target->sensb_res_len > 0 && 82 if (target->sensb_res_len > 0 && 83 nla_put(msg, NFC_ATTR_TARGET_SENSB 83 nla_put(msg, NFC_ATTR_TARGET_SENSB_RES, target->sensb_res_len, 84 target->sensb_res)) 84 target->sensb_res)) 85 goto nla_put_failure; 85 goto nla_put_failure; 86 if (target->sensf_res_len > 0 && 86 if (target->sensf_res_len > 0 && 87 nla_put(msg, NFC_ATTR_TARGET_SENSF 87 nla_put(msg, NFC_ATTR_TARGET_SENSF_RES, target->sensf_res_len, 88 target->sensf_res)) 88 target->sensf_res)) 89 goto nla_put_failure; 89 goto nla_put_failure; 90 90 91 if (target->is_iso15693) { 91 if (target->is_iso15693) { 92 if (nla_put_u8(msg, NFC_ATTR_T 92 if (nla_put_u8(msg, NFC_ATTR_TARGET_ISO15693_DSFID, 93 target->iso1569 93 target->iso15693_dsfid) || 94 nla_put(msg, NFC_ATTR_TARG 94 nla_put(msg, NFC_ATTR_TARGET_ISO15693_UID, 95 sizeof(target->iso 95 sizeof(target->iso15693_uid), target->iso15693_uid)) 96 goto nla_put_failure; 96 goto nla_put_failure; 97 } 97 } 98 98 99 genlmsg_end(msg, hdr); 99 genlmsg_end(msg, hdr); 100 return 0; 100 return 0; 101 101 102 nla_put_failure: 102 nla_put_failure: 103 genlmsg_cancel(msg, hdr); 103 genlmsg_cancel(msg, hdr); 104 return -EMSGSIZE; 104 return -EMSGSIZE; 105 } 105 } 106 106 107 static struct nfc_dev *__get_device_from_cb(st 107 static struct nfc_dev *__get_device_from_cb(struct netlink_callback *cb) 108 { 108 { 109 const struct genl_dumpit_info *info = 109 const struct genl_dumpit_info *info = genl_dumpit_info(cb); 110 struct nfc_dev *dev; 110 struct nfc_dev *dev; 111 u32 idx; 111 u32 idx; 112 112 113 if (!info->info.attrs[NFC_ATTR_DEVICE_ !! 113 if (!info->attrs[NFC_ATTR_DEVICE_INDEX]) 114 return ERR_PTR(-EINVAL); 114 return ERR_PTR(-EINVAL); 115 115 116 idx = nla_get_u32(info->info.attrs[NFC !! 116 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 117 117 118 dev = nfc_get_device(idx); 118 dev = nfc_get_device(idx); 119 if (!dev) 119 if (!dev) 120 return ERR_PTR(-ENODEV); 120 return ERR_PTR(-ENODEV); 121 121 122 return dev; 122 return dev; 123 } 123 } 124 124 125 static int nfc_genl_dump_targets(struct sk_buf 125 static int nfc_genl_dump_targets(struct sk_buff *skb, 126 struct netlin 126 struct netlink_callback *cb) 127 { 127 { 128 int i = cb->args[0]; 128 int i = cb->args[0]; 129 struct nfc_dev *dev = (struct nfc_dev 129 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1]; 130 int rc; 130 int rc; 131 131 132 if (!dev) { 132 if (!dev) { 133 dev = __get_device_from_cb(cb) 133 dev = __get_device_from_cb(cb); 134 if (IS_ERR(dev)) 134 if (IS_ERR(dev)) 135 return PTR_ERR(dev); 135 return PTR_ERR(dev); 136 136 137 cb->args[1] = (long) dev; 137 cb->args[1] = (long) dev; 138 } 138 } 139 139 140 device_lock(&dev->dev); 140 device_lock(&dev->dev); 141 141 142 cb->seq = dev->targets_generation; 142 cb->seq = dev->targets_generation; 143 143 144 while (i < dev->n_targets) { 144 while (i < dev->n_targets) { 145 rc = nfc_genl_send_target(skb, 145 rc = nfc_genl_send_target(skb, &dev->targets[i], cb, 146 NLM_ 146 NLM_F_MULTI); 147 if (rc < 0) 147 if (rc < 0) 148 break; 148 break; 149 149 150 i++; 150 i++; 151 } 151 } 152 152 153 device_unlock(&dev->dev); 153 device_unlock(&dev->dev); 154 154 155 cb->args[0] = i; 155 cb->args[0] = i; 156 156 157 return skb->len; 157 return skb->len; 158 } 158 } 159 159 160 static int nfc_genl_dump_targets_done(struct n 160 static int nfc_genl_dump_targets_done(struct netlink_callback *cb) 161 { 161 { 162 struct nfc_dev *dev = (struct nfc_dev 162 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1]; 163 163 164 if (dev) 164 if (dev) 165 nfc_put_device(dev); 165 nfc_put_device(dev); 166 166 167 return 0; 167 return 0; 168 } 168 } 169 169 170 int nfc_genl_targets_found(struct nfc_dev *dev 170 int nfc_genl_targets_found(struct nfc_dev *dev) 171 { 171 { 172 struct sk_buff *msg; 172 struct sk_buff *msg; 173 void *hdr; 173 void *hdr; 174 174 175 dev->genl_data.poll_req_portid = 0; 175 dev->genl_data.poll_req_portid = 0; 176 176 177 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 177 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); 178 if (!msg) 178 if (!msg) 179 return -ENOMEM; 179 return -ENOMEM; 180 180 181 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 181 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 182 NFC_EVENT_TARGETS_FO 182 NFC_EVENT_TARGETS_FOUND); 183 if (!hdr) 183 if (!hdr) 184 goto free_msg; 184 goto free_msg; 185 185 186 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 186 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 187 goto nla_put_failure; 187 goto nla_put_failure; 188 188 189 genlmsg_end(msg, hdr); 189 genlmsg_end(msg, hdr); 190 190 191 return genlmsg_multicast(&nfc_genl_fam 191 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC); 192 192 193 nla_put_failure: 193 nla_put_failure: 194 free_msg: 194 free_msg: 195 nlmsg_free(msg); 195 nlmsg_free(msg); 196 return -EMSGSIZE; 196 return -EMSGSIZE; 197 } 197 } 198 198 199 int nfc_genl_target_lost(struct nfc_dev *dev, 199 int nfc_genl_target_lost(struct nfc_dev *dev, u32 target_idx) 200 { 200 { 201 struct sk_buff *msg; 201 struct sk_buff *msg; 202 void *hdr; 202 void *hdr; 203 203 204 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 204 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 205 if (!msg) 205 if (!msg) 206 return -ENOMEM; 206 return -ENOMEM; 207 207 208 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 208 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 209 NFC_EVENT_TARGET_LOS 209 NFC_EVENT_TARGET_LOST); 210 if (!hdr) 210 if (!hdr) 211 goto free_msg; 211 goto free_msg; 212 212 213 if (nla_put_string(msg, NFC_ATTR_DEVIC 213 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) || 214 nla_put_u32(msg, NFC_ATTR_TARGET_I 214 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx)) 215 goto nla_put_failure; 215 goto nla_put_failure; 216 216 217 genlmsg_end(msg, hdr); 217 genlmsg_end(msg, hdr); 218 218 219 genlmsg_multicast(&nfc_genl_family, ms 219 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 220 220 221 return 0; 221 return 0; 222 222 223 nla_put_failure: 223 nla_put_failure: 224 free_msg: 224 free_msg: 225 nlmsg_free(msg); 225 nlmsg_free(msg); 226 return -EMSGSIZE; 226 return -EMSGSIZE; 227 } 227 } 228 228 229 int nfc_genl_tm_activated(struct nfc_dev *dev, 229 int nfc_genl_tm_activated(struct nfc_dev *dev, u32 protocol) 230 { 230 { 231 struct sk_buff *msg; 231 struct sk_buff *msg; 232 void *hdr; 232 void *hdr; 233 233 234 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 234 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 235 if (!msg) 235 if (!msg) 236 return -ENOMEM; 236 return -ENOMEM; 237 237 238 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 238 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 239 NFC_EVENT_TM_ACTIVAT 239 NFC_EVENT_TM_ACTIVATED); 240 if (!hdr) 240 if (!hdr) 241 goto free_msg; 241 goto free_msg; 242 242 243 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 243 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 244 goto nla_put_failure; 244 goto nla_put_failure; 245 if (nla_put_u32(msg, NFC_ATTR_TM_PROTO 245 if (nla_put_u32(msg, NFC_ATTR_TM_PROTOCOLS, protocol)) 246 goto nla_put_failure; 246 goto nla_put_failure; 247 247 248 genlmsg_end(msg, hdr); 248 genlmsg_end(msg, hdr); 249 249 250 genlmsg_multicast(&nfc_genl_family, ms 250 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 251 251 252 return 0; 252 return 0; 253 253 254 nla_put_failure: 254 nla_put_failure: 255 free_msg: 255 free_msg: 256 nlmsg_free(msg); 256 nlmsg_free(msg); 257 return -EMSGSIZE; 257 return -EMSGSIZE; 258 } 258 } 259 259 260 int nfc_genl_tm_deactivated(struct nfc_dev *de 260 int nfc_genl_tm_deactivated(struct nfc_dev *dev) 261 { 261 { 262 struct sk_buff *msg; 262 struct sk_buff *msg; 263 void *hdr; 263 void *hdr; 264 264 265 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 265 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 266 if (!msg) 266 if (!msg) 267 return -ENOMEM; 267 return -ENOMEM; 268 268 269 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 269 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 270 NFC_EVENT_TM_DEACTIV 270 NFC_EVENT_TM_DEACTIVATED); 271 if (!hdr) 271 if (!hdr) 272 goto free_msg; 272 goto free_msg; 273 273 274 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 274 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 275 goto nla_put_failure; 275 goto nla_put_failure; 276 276 277 genlmsg_end(msg, hdr); 277 genlmsg_end(msg, hdr); 278 278 279 genlmsg_multicast(&nfc_genl_family, ms 279 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 280 280 281 return 0; 281 return 0; 282 282 283 nla_put_failure: 283 nla_put_failure: 284 free_msg: 284 free_msg: 285 nlmsg_free(msg); 285 nlmsg_free(msg); 286 return -EMSGSIZE; 286 return -EMSGSIZE; 287 } 287 } 288 288 289 static int nfc_genl_setup_device_added(struct 289 static int nfc_genl_setup_device_added(struct nfc_dev *dev, struct sk_buff *msg) 290 { 290 { 291 if (nla_put_string(msg, NFC_ATTR_DEVIC 291 if (nla_put_string(msg, NFC_ATTR_DEVICE_NAME, nfc_device_name(dev)) || 292 nla_put_u32(msg, NFC_ATTR_DEVICE_I 292 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) || 293 nla_put_u32(msg, NFC_ATTR_PROTOCOL 293 nla_put_u32(msg, NFC_ATTR_PROTOCOLS, dev->supported_protocols) || 294 nla_put_u8(msg, NFC_ATTR_DEVICE_PO 294 nla_put_u8(msg, NFC_ATTR_DEVICE_POWERED, dev->dev_up) || 295 nla_put_u8(msg, NFC_ATTR_RF_MODE, 295 nla_put_u8(msg, NFC_ATTR_RF_MODE, dev->rf_mode)) 296 return -1; 296 return -1; 297 return 0; 297 return 0; 298 } 298 } 299 299 300 int nfc_genl_device_added(struct nfc_dev *dev) 300 int nfc_genl_device_added(struct nfc_dev *dev) 301 { 301 { 302 struct sk_buff *msg; 302 struct sk_buff *msg; 303 void *hdr; 303 void *hdr; 304 304 305 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 305 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 306 if (!msg) 306 if (!msg) 307 return -ENOMEM; 307 return -ENOMEM; 308 308 309 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 309 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 310 NFC_EVENT_DEVICE_ADD 310 NFC_EVENT_DEVICE_ADDED); 311 if (!hdr) 311 if (!hdr) 312 goto free_msg; 312 goto free_msg; 313 313 314 if (nfc_genl_setup_device_added(dev, m 314 if (nfc_genl_setup_device_added(dev, msg)) 315 goto nla_put_failure; 315 goto nla_put_failure; 316 316 317 genlmsg_end(msg, hdr); 317 genlmsg_end(msg, hdr); 318 318 319 genlmsg_multicast(&nfc_genl_family, ms 319 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 320 320 321 return 0; 321 return 0; 322 322 323 nla_put_failure: 323 nla_put_failure: 324 free_msg: 324 free_msg: 325 nlmsg_free(msg); 325 nlmsg_free(msg); 326 return -EMSGSIZE; 326 return -EMSGSIZE; 327 } 327 } 328 328 329 int nfc_genl_device_removed(struct nfc_dev *de 329 int nfc_genl_device_removed(struct nfc_dev *dev) 330 { 330 { 331 struct sk_buff *msg; 331 struct sk_buff *msg; 332 void *hdr; 332 void *hdr; 333 333 334 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 334 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 335 if (!msg) 335 if (!msg) 336 return -ENOMEM; 336 return -ENOMEM; 337 337 338 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 338 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 339 NFC_EVENT_DEVICE_REM 339 NFC_EVENT_DEVICE_REMOVED); 340 if (!hdr) 340 if (!hdr) 341 goto free_msg; 341 goto free_msg; 342 342 343 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 343 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 344 goto nla_put_failure; 344 goto nla_put_failure; 345 345 346 genlmsg_end(msg, hdr); 346 genlmsg_end(msg, hdr); 347 347 348 genlmsg_multicast(&nfc_genl_family, ms 348 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 349 349 350 return 0; 350 return 0; 351 351 352 nla_put_failure: 352 nla_put_failure: 353 free_msg: 353 free_msg: 354 nlmsg_free(msg); 354 nlmsg_free(msg); 355 return -EMSGSIZE; 355 return -EMSGSIZE; 356 } 356 } 357 357 358 int nfc_genl_llc_send_sdres(struct nfc_dev *de 358 int nfc_genl_llc_send_sdres(struct nfc_dev *dev, struct hlist_head *sdres_list) 359 { 359 { 360 struct sk_buff *msg; 360 struct sk_buff *msg; 361 struct nlattr *sdp_attr, *uri_attr; 361 struct nlattr *sdp_attr, *uri_attr; 362 struct nfc_llcp_sdp_tlv *sdres; 362 struct nfc_llcp_sdp_tlv *sdres; 363 struct hlist_node *n; 363 struct hlist_node *n; 364 void *hdr; 364 void *hdr; 365 int rc = -EMSGSIZE; 365 int rc = -EMSGSIZE; 366 int i; 366 int i; 367 367 368 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 368 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 369 if (!msg) 369 if (!msg) 370 return -ENOMEM; 370 return -ENOMEM; 371 371 372 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 372 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 373 NFC_EVENT_LLC_SDRES) 373 NFC_EVENT_LLC_SDRES); 374 if (!hdr) 374 if (!hdr) 375 goto free_msg; 375 goto free_msg; 376 376 377 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 377 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 378 goto nla_put_failure; 378 goto nla_put_failure; 379 379 380 sdp_attr = nla_nest_start_noflag(msg, 380 sdp_attr = nla_nest_start_noflag(msg, NFC_ATTR_LLC_SDP); 381 if (sdp_attr == NULL) { 381 if (sdp_attr == NULL) { 382 rc = -ENOMEM; 382 rc = -ENOMEM; 383 goto nla_put_failure; 383 goto nla_put_failure; 384 } 384 } 385 385 386 i = 1; 386 i = 1; 387 hlist_for_each_entry_safe(sdres, n, sd 387 hlist_for_each_entry_safe(sdres, n, sdres_list, node) { 388 pr_debug("uri: %s, sap: %d\n", 388 pr_debug("uri: %s, sap: %d\n", sdres->uri, sdres->sap); 389 389 390 uri_attr = nla_nest_start_nofl 390 uri_attr = nla_nest_start_noflag(msg, i++); 391 if (uri_attr == NULL) { 391 if (uri_attr == NULL) { 392 rc = -ENOMEM; 392 rc = -ENOMEM; 393 goto nla_put_failure; 393 goto nla_put_failure; 394 } 394 } 395 395 396 if (nla_put_u8(msg, NFC_SDP_AT 396 if (nla_put_u8(msg, NFC_SDP_ATTR_SAP, sdres->sap)) 397 goto nla_put_failure; 397 goto nla_put_failure; 398 398 399 if (nla_put_string(msg, NFC_SD 399 if (nla_put_string(msg, NFC_SDP_ATTR_URI, sdres->uri)) 400 goto nla_put_failure; 400 goto nla_put_failure; 401 401 402 nla_nest_end(msg, uri_attr); 402 nla_nest_end(msg, uri_attr); 403 403 404 hlist_del(&sdres->node); 404 hlist_del(&sdres->node); 405 405 406 nfc_llcp_free_sdp_tlv(sdres); 406 nfc_llcp_free_sdp_tlv(sdres); 407 } 407 } 408 408 409 nla_nest_end(msg, sdp_attr); 409 nla_nest_end(msg, sdp_attr); 410 410 411 genlmsg_end(msg, hdr); 411 genlmsg_end(msg, hdr); 412 412 413 return genlmsg_multicast(&nfc_genl_fam 413 return genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC); 414 414 415 nla_put_failure: 415 nla_put_failure: 416 free_msg: 416 free_msg: 417 nlmsg_free(msg); 417 nlmsg_free(msg); 418 418 419 nfc_llcp_free_sdp_tlv_list(sdres_list) 419 nfc_llcp_free_sdp_tlv_list(sdres_list); 420 420 421 return rc; 421 return rc; 422 } 422 } 423 423 424 int nfc_genl_se_added(struct nfc_dev *dev, u32 424 int nfc_genl_se_added(struct nfc_dev *dev, u32 se_idx, u16 type) 425 { 425 { 426 struct sk_buff *msg; 426 struct sk_buff *msg; 427 void *hdr; 427 void *hdr; 428 428 429 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 429 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 430 if (!msg) 430 if (!msg) 431 return -ENOMEM; 431 return -ENOMEM; 432 432 433 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 433 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 434 NFC_EVENT_SE_ADDED); 434 NFC_EVENT_SE_ADDED); 435 if (!hdr) 435 if (!hdr) 436 goto free_msg; 436 goto free_msg; 437 437 438 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 438 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) || 439 nla_put_u32(msg, NFC_ATTR_SE_INDEX 439 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) || 440 nla_put_u8(msg, NFC_ATTR_SE_TYPE, 440 nla_put_u8(msg, NFC_ATTR_SE_TYPE, type)) 441 goto nla_put_failure; 441 goto nla_put_failure; 442 442 443 genlmsg_end(msg, hdr); 443 genlmsg_end(msg, hdr); 444 444 445 genlmsg_multicast(&nfc_genl_family, ms 445 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 446 446 447 return 0; 447 return 0; 448 448 449 nla_put_failure: 449 nla_put_failure: 450 free_msg: 450 free_msg: 451 nlmsg_free(msg); 451 nlmsg_free(msg); 452 return -EMSGSIZE; 452 return -EMSGSIZE; 453 } 453 } 454 454 455 int nfc_genl_se_removed(struct nfc_dev *dev, u 455 int nfc_genl_se_removed(struct nfc_dev *dev, u32 se_idx) 456 { 456 { 457 struct sk_buff *msg; 457 struct sk_buff *msg; 458 void *hdr; 458 void *hdr; 459 459 460 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 460 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 461 if (!msg) 461 if (!msg) 462 return -ENOMEM; 462 return -ENOMEM; 463 463 464 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 464 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 465 NFC_EVENT_SE_REMOVED 465 NFC_EVENT_SE_REMOVED); 466 if (!hdr) 466 if (!hdr) 467 goto free_msg; 467 goto free_msg; 468 468 469 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 469 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) || 470 nla_put_u32(msg, NFC_ATTR_SE_INDEX 470 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx)) 471 goto nla_put_failure; 471 goto nla_put_failure; 472 472 473 genlmsg_end(msg, hdr); 473 genlmsg_end(msg, hdr); 474 474 475 genlmsg_multicast(&nfc_genl_family, ms 475 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 476 476 477 return 0; 477 return 0; 478 478 479 nla_put_failure: 479 nla_put_failure: 480 free_msg: 480 free_msg: 481 nlmsg_free(msg); 481 nlmsg_free(msg); 482 return -EMSGSIZE; 482 return -EMSGSIZE; 483 } 483 } 484 484 485 int nfc_genl_se_transaction(struct nfc_dev *de 485 int nfc_genl_se_transaction(struct nfc_dev *dev, u8 se_idx, 486 struct nfc_evt_tra 486 struct nfc_evt_transaction *evt_transaction) 487 { 487 { 488 struct nfc_se *se; 488 struct nfc_se *se; 489 struct sk_buff *msg; 489 struct sk_buff *msg; 490 void *hdr; 490 void *hdr; 491 491 492 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 492 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 493 if (!msg) 493 if (!msg) 494 return -ENOMEM; 494 return -ENOMEM; 495 495 496 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 496 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 497 NFC_EVENT_SE_TRANSAC 497 NFC_EVENT_SE_TRANSACTION); 498 if (!hdr) 498 if (!hdr) 499 goto free_msg; 499 goto free_msg; 500 500 501 se = nfc_find_se(dev, se_idx); 501 se = nfc_find_se(dev, se_idx); 502 if (!se) 502 if (!se) 503 goto free_msg; 503 goto free_msg; 504 504 505 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 505 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) || 506 nla_put_u32(msg, NFC_ATTR_SE_INDEX 506 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) || 507 nla_put_u8(msg, NFC_ATTR_SE_TYPE, 507 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type) || 508 nla_put(msg, NFC_ATTR_SE_AID, evt_ 508 nla_put(msg, NFC_ATTR_SE_AID, evt_transaction->aid_len, 509 evt_transaction->aid) || 509 evt_transaction->aid) || 510 nla_put(msg, NFC_ATTR_SE_PARAMS, e 510 nla_put(msg, NFC_ATTR_SE_PARAMS, evt_transaction->params_len, 511 evt_transaction->params)) 511 evt_transaction->params)) 512 goto nla_put_failure; 512 goto nla_put_failure; 513 513 514 /* evt_transaction is no more used */ 514 /* evt_transaction is no more used */ 515 devm_kfree(&dev->dev, evt_transaction) 515 devm_kfree(&dev->dev, evt_transaction); 516 516 517 genlmsg_end(msg, hdr); 517 genlmsg_end(msg, hdr); 518 518 519 genlmsg_multicast(&nfc_genl_family, ms 519 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 520 520 521 return 0; 521 return 0; 522 522 523 nla_put_failure: 523 nla_put_failure: 524 free_msg: 524 free_msg: 525 /* evt_transaction is no more used */ 525 /* evt_transaction is no more used */ 526 devm_kfree(&dev->dev, evt_transaction) 526 devm_kfree(&dev->dev, evt_transaction); 527 nlmsg_free(msg); 527 nlmsg_free(msg); 528 return -EMSGSIZE; 528 return -EMSGSIZE; 529 } 529 } 530 530 531 int nfc_genl_se_connectivity(struct nfc_dev *d 531 int nfc_genl_se_connectivity(struct nfc_dev *dev, u8 se_idx) 532 { 532 { 533 const struct nfc_se *se; !! 533 struct nfc_se *se; 534 struct sk_buff *msg; 534 struct sk_buff *msg; 535 void *hdr; 535 void *hdr; 536 536 537 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 537 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 538 if (!msg) 538 if (!msg) 539 return -ENOMEM; 539 return -ENOMEM; 540 540 541 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 541 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 542 NFC_EVENT_SE_CONNECT 542 NFC_EVENT_SE_CONNECTIVITY); 543 if (!hdr) 543 if (!hdr) 544 goto free_msg; 544 goto free_msg; 545 545 546 se = nfc_find_se(dev, se_idx); 546 se = nfc_find_se(dev, se_idx); 547 if (!se) 547 if (!se) 548 goto free_msg; 548 goto free_msg; 549 549 550 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 550 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) || 551 nla_put_u32(msg, NFC_ATTR_SE_INDEX 551 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se_idx) || 552 nla_put_u8(msg, NFC_ATTR_SE_TYPE, 552 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type)) 553 goto nla_put_failure; 553 goto nla_put_failure; 554 554 555 genlmsg_end(msg, hdr); 555 genlmsg_end(msg, hdr); 556 556 557 genlmsg_multicast(&nfc_genl_family, ms 557 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 558 558 559 return 0; 559 return 0; 560 560 561 nla_put_failure: 561 nla_put_failure: 562 free_msg: 562 free_msg: 563 nlmsg_free(msg); 563 nlmsg_free(msg); 564 return -EMSGSIZE; 564 return -EMSGSIZE; 565 } 565 } 566 566 567 static int nfc_genl_send_device(struct sk_buff 567 static int nfc_genl_send_device(struct sk_buff *msg, struct nfc_dev *dev, 568 u32 portid, u3 568 u32 portid, u32 seq, 569 struct netlink 569 struct netlink_callback *cb, 570 int flags) 570 int flags) 571 { 571 { 572 void *hdr; 572 void *hdr; 573 573 574 hdr = genlmsg_put(msg, portid, seq, &n 574 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags, 575 NFC_CMD_GET_DEVICE); 575 NFC_CMD_GET_DEVICE); 576 if (!hdr) 576 if (!hdr) 577 return -EMSGSIZE; 577 return -EMSGSIZE; 578 578 579 if (cb) 579 if (cb) 580 genl_dump_check_consistent(cb, 580 genl_dump_check_consistent(cb, hdr); 581 581 582 if (nfc_genl_setup_device_added(dev, m 582 if (nfc_genl_setup_device_added(dev, msg)) 583 goto nla_put_failure; 583 goto nla_put_failure; 584 584 585 genlmsg_end(msg, hdr); 585 genlmsg_end(msg, hdr); 586 return 0; 586 return 0; 587 587 588 nla_put_failure: 588 nla_put_failure: 589 genlmsg_cancel(msg, hdr); 589 genlmsg_cancel(msg, hdr); 590 return -EMSGSIZE; 590 return -EMSGSIZE; 591 } 591 } 592 592 593 static int nfc_genl_dump_devices(struct sk_buf 593 static int nfc_genl_dump_devices(struct sk_buff *skb, 594 struct netlin 594 struct netlink_callback *cb) 595 { 595 { 596 struct class_dev_iter *iter = (struct 596 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0]; 597 struct nfc_dev *dev = (struct nfc_dev 597 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1]; 598 bool first_call = false; 598 bool first_call = false; 599 599 600 if (!iter) { 600 if (!iter) { 601 first_call = true; 601 first_call = true; 602 iter = kmalloc(sizeof(struct c 602 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL); 603 if (!iter) 603 if (!iter) 604 return -ENOMEM; 604 return -ENOMEM; 605 cb->args[0] = (long) iter; 605 cb->args[0] = (long) iter; 606 } 606 } 607 607 608 mutex_lock(&nfc_devlist_mutex); 608 mutex_lock(&nfc_devlist_mutex); 609 609 610 cb->seq = nfc_devlist_generation; 610 cb->seq = nfc_devlist_generation; 611 611 612 if (first_call) { 612 if (first_call) { 613 nfc_device_iter_init(iter); 613 nfc_device_iter_init(iter); 614 dev = nfc_device_iter_next(ite 614 dev = nfc_device_iter_next(iter); 615 } 615 } 616 616 617 while (dev) { 617 while (dev) { 618 int rc; 618 int rc; 619 619 620 rc = nfc_genl_send_device(skb, 620 rc = nfc_genl_send_device(skb, dev, NETLINK_CB(cb->skb).portid, 621 cb-> 621 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI); 622 if (rc < 0) 622 if (rc < 0) 623 break; 623 break; 624 624 625 dev = nfc_device_iter_next(ite 625 dev = nfc_device_iter_next(iter); 626 } 626 } 627 627 628 mutex_unlock(&nfc_devlist_mutex); 628 mutex_unlock(&nfc_devlist_mutex); 629 629 630 cb->args[1] = (long) dev; 630 cb->args[1] = (long) dev; 631 631 632 return skb->len; 632 return skb->len; 633 } 633 } 634 634 635 static int nfc_genl_dump_devices_done(struct n 635 static int nfc_genl_dump_devices_done(struct netlink_callback *cb) 636 { 636 { 637 struct class_dev_iter *iter = (struct 637 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0]; 638 638 639 if (iter) { !! 639 nfc_device_iter_exit(iter); 640 nfc_device_iter_exit(iter); !! 640 kfree(iter); 641 kfree(iter); << 642 } << 643 641 644 return 0; 642 return 0; 645 } 643 } 646 644 647 int nfc_genl_dep_link_up_event(struct nfc_dev 645 int nfc_genl_dep_link_up_event(struct nfc_dev *dev, u32 target_idx, 648 u8 comm_mode, u 646 u8 comm_mode, u8 rf_mode) 649 { 647 { 650 struct sk_buff *msg; 648 struct sk_buff *msg; 651 void *hdr; 649 void *hdr; 652 650 653 pr_debug("DEP link is up\n"); 651 pr_debug("DEP link is up\n"); 654 652 655 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 653 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); 656 if (!msg) 654 if (!msg) 657 return -ENOMEM; 655 return -ENOMEM; 658 656 659 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 657 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, NFC_CMD_DEP_LINK_UP); 660 if (!hdr) 658 if (!hdr) 661 goto free_msg; 659 goto free_msg; 662 660 663 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 661 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 664 goto nla_put_failure; 662 goto nla_put_failure; 665 if (rf_mode == NFC_RF_INITIATOR && 663 if (rf_mode == NFC_RF_INITIATOR && 666 nla_put_u32(msg, NFC_ATTR_TARGET_I 664 nla_put_u32(msg, NFC_ATTR_TARGET_INDEX, target_idx)) 667 goto nla_put_failure; 665 goto nla_put_failure; 668 if (nla_put_u8(msg, NFC_ATTR_COMM_MODE 666 if (nla_put_u8(msg, NFC_ATTR_COMM_MODE, comm_mode) || 669 nla_put_u8(msg, NFC_ATTR_RF_MODE, 667 nla_put_u8(msg, NFC_ATTR_RF_MODE, rf_mode)) 670 goto nla_put_failure; 668 goto nla_put_failure; 671 669 672 genlmsg_end(msg, hdr); 670 genlmsg_end(msg, hdr); 673 671 674 dev->dep_link_up = true; 672 dev->dep_link_up = true; 675 673 676 genlmsg_multicast(&nfc_genl_family, ms 674 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC); 677 675 678 return 0; 676 return 0; 679 677 680 nla_put_failure: 678 nla_put_failure: 681 free_msg: 679 free_msg: 682 nlmsg_free(msg); 680 nlmsg_free(msg); 683 return -EMSGSIZE; 681 return -EMSGSIZE; 684 } 682 } 685 683 686 int nfc_genl_dep_link_down_event(struct nfc_de 684 int nfc_genl_dep_link_down_event(struct nfc_dev *dev) 687 { 685 { 688 struct sk_buff *msg; 686 struct sk_buff *msg; 689 void *hdr; 687 void *hdr; 690 688 691 pr_debug("DEP link is down\n"); 689 pr_debug("DEP link is down\n"); 692 690 693 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 691 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); 694 if (!msg) 692 if (!msg) 695 return -ENOMEM; 693 return -ENOMEM; 696 694 697 hdr = genlmsg_put(msg, 0, 0, &nfc_genl 695 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 698 NFC_CMD_DEP_LINK_DOW 696 NFC_CMD_DEP_LINK_DOWN); 699 if (!hdr) 697 if (!hdr) 700 goto free_msg; 698 goto free_msg; 701 699 702 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 700 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 703 goto nla_put_failure; 701 goto nla_put_failure; 704 702 705 genlmsg_end(msg, hdr); 703 genlmsg_end(msg, hdr); 706 704 707 genlmsg_multicast(&nfc_genl_family, ms 705 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC); 708 706 709 return 0; 707 return 0; 710 708 711 nla_put_failure: 709 nla_put_failure: 712 free_msg: 710 free_msg: 713 nlmsg_free(msg); 711 nlmsg_free(msg); 714 return -EMSGSIZE; 712 return -EMSGSIZE; 715 } 713 } 716 714 717 static int nfc_genl_get_device(struct sk_buff 715 static int nfc_genl_get_device(struct sk_buff *skb, struct genl_info *info) 718 { 716 { 719 struct sk_buff *msg; 717 struct sk_buff *msg; 720 struct nfc_dev *dev; 718 struct nfc_dev *dev; 721 u32 idx; 719 u32 idx; 722 int rc = -ENOBUFS; 720 int rc = -ENOBUFS; 723 721 724 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 722 if (!info->attrs[NFC_ATTR_DEVICE_INDEX]) 725 return -EINVAL; 723 return -EINVAL; 726 724 727 idx = nla_get_u32(info->attrs[NFC_ATTR 725 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 728 726 729 dev = nfc_get_device(idx); 727 dev = nfc_get_device(idx); 730 if (!dev) 728 if (!dev) 731 return -ENODEV; 729 return -ENODEV; 732 730 733 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GF 731 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 734 if (!msg) { 732 if (!msg) { 735 rc = -ENOMEM; 733 rc = -ENOMEM; 736 goto out_putdev; 734 goto out_putdev; 737 } 735 } 738 736 739 rc = nfc_genl_send_device(msg, dev, in 737 rc = nfc_genl_send_device(msg, dev, info->snd_portid, info->snd_seq, 740 NULL, 0); 738 NULL, 0); 741 if (rc < 0) 739 if (rc < 0) 742 goto out_free; 740 goto out_free; 743 741 744 nfc_put_device(dev); 742 nfc_put_device(dev); 745 743 746 return genlmsg_reply(msg, info); 744 return genlmsg_reply(msg, info); 747 745 748 out_free: 746 out_free: 749 nlmsg_free(msg); 747 nlmsg_free(msg); 750 out_putdev: 748 out_putdev: 751 nfc_put_device(dev); 749 nfc_put_device(dev); 752 return rc; 750 return rc; 753 } 751 } 754 752 755 static int nfc_genl_dev_up(struct sk_buff *skb 753 static int nfc_genl_dev_up(struct sk_buff *skb, struct genl_info *info) 756 { 754 { 757 struct nfc_dev *dev; 755 struct nfc_dev *dev; 758 int rc; 756 int rc; 759 u32 idx; 757 u32 idx; 760 758 761 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 759 if (!info->attrs[NFC_ATTR_DEVICE_INDEX]) 762 return -EINVAL; 760 return -EINVAL; 763 761 764 idx = nla_get_u32(info->attrs[NFC_ATTR 762 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 765 763 766 dev = nfc_get_device(idx); 764 dev = nfc_get_device(idx); 767 if (!dev) 765 if (!dev) 768 return -ENODEV; 766 return -ENODEV; 769 767 770 rc = nfc_dev_up(dev); 768 rc = nfc_dev_up(dev); 771 769 772 nfc_put_device(dev); 770 nfc_put_device(dev); 773 return rc; 771 return rc; 774 } 772 } 775 773 776 static int nfc_genl_dev_down(struct sk_buff *s 774 static int nfc_genl_dev_down(struct sk_buff *skb, struct genl_info *info) 777 { 775 { 778 struct nfc_dev *dev; 776 struct nfc_dev *dev; 779 int rc; 777 int rc; 780 u32 idx; 778 u32 idx; 781 779 782 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 780 if (!info->attrs[NFC_ATTR_DEVICE_INDEX]) 783 return -EINVAL; 781 return -EINVAL; 784 782 785 idx = nla_get_u32(info->attrs[NFC_ATTR 783 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 786 784 787 dev = nfc_get_device(idx); 785 dev = nfc_get_device(idx); 788 if (!dev) 786 if (!dev) 789 return -ENODEV; 787 return -ENODEV; 790 788 791 rc = nfc_dev_down(dev); 789 rc = nfc_dev_down(dev); 792 790 793 nfc_put_device(dev); 791 nfc_put_device(dev); 794 return rc; 792 return rc; 795 } 793 } 796 794 797 static int nfc_genl_start_poll(struct sk_buff 795 static int nfc_genl_start_poll(struct sk_buff *skb, struct genl_info *info) 798 { 796 { 799 struct nfc_dev *dev; 797 struct nfc_dev *dev; 800 int rc; 798 int rc; 801 u32 idx; 799 u32 idx; 802 u32 im_protocols = 0, tm_protocols = 0 800 u32 im_protocols = 0, tm_protocols = 0; 803 801 804 pr_debug("Poll start\n"); 802 pr_debug("Poll start\n"); 805 803 806 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 804 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 807 ((!info->attrs[NFC_ATTR_IM_PROTOCO 805 ((!info->attrs[NFC_ATTR_IM_PROTOCOLS] && 808 !info->attrs[NFC_ATTR_PROTOCOLS] 806 !info->attrs[NFC_ATTR_PROTOCOLS]) && 809 !info->attrs[NFC_ATTR_TM_PROTOCO 807 !info->attrs[NFC_ATTR_TM_PROTOCOLS])) 810 return -EINVAL; 808 return -EINVAL; 811 809 812 idx = nla_get_u32(info->attrs[NFC_ATTR 810 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 813 811 814 if (info->attrs[NFC_ATTR_TM_PROTOCOLS] 812 if (info->attrs[NFC_ATTR_TM_PROTOCOLS]) 815 tm_protocols = nla_get_u32(inf 813 tm_protocols = nla_get_u32(info->attrs[NFC_ATTR_TM_PROTOCOLS]); 816 814 817 if (info->attrs[NFC_ATTR_IM_PROTOCOLS] 815 if (info->attrs[NFC_ATTR_IM_PROTOCOLS]) 818 im_protocols = nla_get_u32(inf 816 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_IM_PROTOCOLS]); 819 else if (info->attrs[NFC_ATTR_PROTOCOL 817 else if (info->attrs[NFC_ATTR_PROTOCOLS]) 820 im_protocols = nla_get_u32(inf 818 im_protocols = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]); 821 819 822 dev = nfc_get_device(idx); 820 dev = nfc_get_device(idx); 823 if (!dev) 821 if (!dev) 824 return -ENODEV; 822 return -ENODEV; 825 823 826 mutex_lock(&dev->genl_data.genl_data_m 824 mutex_lock(&dev->genl_data.genl_data_mutex); 827 825 828 rc = nfc_start_poll(dev, im_protocols, 826 rc = nfc_start_poll(dev, im_protocols, tm_protocols); 829 if (!rc) 827 if (!rc) 830 dev->genl_data.poll_req_portid 828 dev->genl_data.poll_req_portid = info->snd_portid; 831 829 832 mutex_unlock(&dev->genl_data.genl_data 830 mutex_unlock(&dev->genl_data.genl_data_mutex); 833 831 834 nfc_put_device(dev); 832 nfc_put_device(dev); 835 return rc; 833 return rc; 836 } 834 } 837 835 838 static int nfc_genl_stop_poll(struct sk_buff * 836 static int nfc_genl_stop_poll(struct sk_buff *skb, struct genl_info *info) 839 { 837 { 840 struct nfc_dev *dev; 838 struct nfc_dev *dev; 841 int rc; 839 int rc; 842 u32 idx; 840 u32 idx; 843 841 844 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 842 if (!info->attrs[NFC_ATTR_DEVICE_INDEX]) 845 return -EINVAL; 843 return -EINVAL; 846 844 847 idx = nla_get_u32(info->attrs[NFC_ATTR 845 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 848 846 849 dev = nfc_get_device(idx); 847 dev = nfc_get_device(idx); 850 if (!dev) 848 if (!dev) 851 return -ENODEV; 849 return -ENODEV; 852 850 853 device_lock(&dev->dev); 851 device_lock(&dev->dev); 854 852 855 if (!dev->polling) { 853 if (!dev->polling) { 856 device_unlock(&dev->dev); 854 device_unlock(&dev->dev); 857 nfc_put_device(dev); 855 nfc_put_device(dev); 858 return -EINVAL; 856 return -EINVAL; 859 } 857 } 860 858 861 device_unlock(&dev->dev); 859 device_unlock(&dev->dev); 862 860 863 mutex_lock(&dev->genl_data.genl_data_m 861 mutex_lock(&dev->genl_data.genl_data_mutex); 864 862 865 if (dev->genl_data.poll_req_portid != 863 if (dev->genl_data.poll_req_portid != info->snd_portid) { 866 rc = -EBUSY; 864 rc = -EBUSY; 867 goto out; 865 goto out; 868 } 866 } 869 867 870 rc = nfc_stop_poll(dev); 868 rc = nfc_stop_poll(dev); 871 dev->genl_data.poll_req_portid = 0; 869 dev->genl_data.poll_req_portid = 0; 872 870 873 out: 871 out: 874 mutex_unlock(&dev->genl_data.genl_data 872 mutex_unlock(&dev->genl_data.genl_data_mutex); 875 nfc_put_device(dev); 873 nfc_put_device(dev); 876 return rc; 874 return rc; 877 } 875 } 878 876 879 static int nfc_genl_activate_target(struct sk_ 877 static int nfc_genl_activate_target(struct sk_buff *skb, struct genl_info *info) 880 { 878 { 881 struct nfc_dev *dev; 879 struct nfc_dev *dev; 882 u32 device_idx, target_idx, protocol; 880 u32 device_idx, target_idx, protocol; 883 int rc; 881 int rc; 884 882 885 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 883 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 886 !info->attrs[NFC_ATTR_TARGET_INDEX 884 !info->attrs[NFC_ATTR_TARGET_INDEX] || 887 !info->attrs[NFC_ATTR_PROTOCOLS]) 885 !info->attrs[NFC_ATTR_PROTOCOLS]) 888 return -EINVAL; 886 return -EINVAL; 889 887 890 device_idx = nla_get_u32(info->attrs[N 888 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 891 889 892 dev = nfc_get_device(device_idx); 890 dev = nfc_get_device(device_idx); 893 if (!dev) 891 if (!dev) 894 return -ENODEV; 892 return -ENODEV; 895 893 896 target_idx = nla_get_u32(info->attrs[N 894 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]); 897 protocol = nla_get_u32(info->attrs[NFC 895 protocol = nla_get_u32(info->attrs[NFC_ATTR_PROTOCOLS]); 898 896 899 nfc_deactivate_target(dev, target_idx, 897 nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP); 900 rc = nfc_activate_target(dev, target_i 898 rc = nfc_activate_target(dev, target_idx, protocol); 901 899 902 nfc_put_device(dev); 900 nfc_put_device(dev); 903 return rc; 901 return rc; 904 } 902 } 905 903 906 static int nfc_genl_deactivate_target(struct s 904 static int nfc_genl_deactivate_target(struct sk_buff *skb, 907 struct g 905 struct genl_info *info) 908 { 906 { 909 struct nfc_dev *dev; 907 struct nfc_dev *dev; 910 u32 device_idx, target_idx; 908 u32 device_idx, target_idx; 911 int rc; 909 int rc; 912 910 913 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 911 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 914 !info->attrs[NFC_ATTR_TARGET_INDEX 912 !info->attrs[NFC_ATTR_TARGET_INDEX]) 915 return -EINVAL; 913 return -EINVAL; 916 914 917 device_idx = nla_get_u32(info->attrs[N 915 device_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 918 916 919 dev = nfc_get_device(device_idx); 917 dev = nfc_get_device(device_idx); 920 if (!dev) 918 if (!dev) 921 return -ENODEV; 919 return -ENODEV; 922 920 923 target_idx = nla_get_u32(info->attrs[N 921 target_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]); 924 922 925 rc = nfc_deactivate_target(dev, target 923 rc = nfc_deactivate_target(dev, target_idx, NFC_TARGET_MODE_SLEEP); 926 924 927 nfc_put_device(dev); 925 nfc_put_device(dev); 928 return rc; 926 return rc; 929 } 927 } 930 928 931 static int nfc_genl_dep_link_up(struct sk_buff 929 static int nfc_genl_dep_link_up(struct sk_buff *skb, struct genl_info *info) 932 { 930 { 933 struct nfc_dev *dev; 931 struct nfc_dev *dev; 934 int rc, tgt_idx; 932 int rc, tgt_idx; 935 u32 idx; 933 u32 idx; 936 u8 comm; 934 u8 comm; 937 935 938 pr_debug("DEP link up\n"); 936 pr_debug("DEP link up\n"); 939 937 940 if (!info->attrs[NFC_ATTR_DEVICE_INDEX 938 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 941 !info->attrs[NFC_ATTR_COMM_MODE]) 939 !info->attrs[NFC_ATTR_COMM_MODE]) 942 return -EINVAL; 940 return -EINVAL; 943 941 944 idx = nla_get_u32(info->attrs[NFC_ATTR 942 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 945 if (!info->attrs[NFC_ATTR_TARGET_INDEX 943 if (!info->attrs[NFC_ATTR_TARGET_INDEX]) 946 tgt_idx = NFC_TARGET_IDX_ANY; 944 tgt_idx = NFC_TARGET_IDX_ANY; 947 else 945 else 948 tgt_idx = nla_get_u32(info->at 946 tgt_idx = nla_get_u32(info->attrs[NFC_ATTR_TARGET_INDEX]); 949 947 950 comm = nla_get_u8(info->attrs[NFC_ATTR 948 comm = nla_get_u8(info->attrs[NFC_ATTR_COMM_MODE]); 951 949 952 if (comm != NFC_COMM_ACTIVE && comm != 950 if (comm != NFC_COMM_ACTIVE && comm != NFC_COMM_PASSIVE) 953 return -EINVAL; 951 return -EINVAL; 954 952 955 dev = nfc_get_device(idx); 953 dev = nfc_get_device(idx); 956 if (!dev) 954 if (!dev) 957 return -ENODEV; 955 return -ENODEV; 958 956 959 rc = nfc_dep_link_up(dev, tgt_idx, com 957 rc = nfc_dep_link_up(dev, tgt_idx, comm); 960 958 961 nfc_put_device(dev); 959 nfc_put_device(dev); 962 960 963 return rc; 961 return rc; 964 } 962 } 965 963 966 static int nfc_genl_dep_link_down(struct sk_bu 964 static int nfc_genl_dep_link_down(struct sk_buff *skb, struct genl_info *info) 967 { 965 { 968 struct nfc_dev *dev; 966 struct nfc_dev *dev; 969 int rc; 967 int rc; 970 u32 idx; 968 u32 idx; 971 969 972 if (!info->attrs[NFC_ATTR_DEVICE_INDEX !! 970 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || >> 971 !info->attrs[NFC_ATTR_TARGET_INDEX]) 973 return -EINVAL; 972 return -EINVAL; 974 973 975 idx = nla_get_u32(info->attrs[NFC_ATTR 974 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 976 975 977 dev = nfc_get_device(idx); 976 dev = nfc_get_device(idx); 978 if (!dev) 977 if (!dev) 979 return -ENODEV; 978 return -ENODEV; 980 979 981 rc = nfc_dep_link_down(dev); 980 rc = nfc_dep_link_down(dev); 982 981 983 nfc_put_device(dev); 982 nfc_put_device(dev); 984 return rc; 983 return rc; 985 } 984 } 986 985 987 static int nfc_genl_send_params(struct sk_buff 986 static int nfc_genl_send_params(struct sk_buff *msg, 988 struct nfc_llc 987 struct nfc_llcp_local *local, 989 u32 portid, u3 988 u32 portid, u32 seq) 990 { 989 { 991 void *hdr; 990 void *hdr; 992 991 993 hdr = genlmsg_put(msg, portid, seq, &n 992 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, 0, 994 NFC_CMD_LLC_GET_PARA 993 NFC_CMD_LLC_GET_PARAMS); 995 if (!hdr) 994 if (!hdr) 996 return -EMSGSIZE; 995 return -EMSGSIZE; 997 996 998 if (nla_put_u32(msg, NFC_ATTR_DEVICE_I 997 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, local->dev->idx) || 999 nla_put_u8(msg, NFC_ATTR_LLC_PARAM 998 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_LTO, local->lto) || 1000 nla_put_u8(msg, NFC_ATTR_LLC_PARA 999 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_RW, local->rw) || 1001 nla_put_u16(msg, NFC_ATTR_LLC_PAR 1000 nla_put_u16(msg, NFC_ATTR_LLC_PARAM_MIUX, be16_to_cpu(local->miux))) 1002 goto nla_put_failure; 1001 goto nla_put_failure; 1003 1002 1004 genlmsg_end(msg, hdr); 1003 genlmsg_end(msg, hdr); 1005 return 0; 1004 return 0; 1006 1005 1007 nla_put_failure: 1006 nla_put_failure: 1008 genlmsg_cancel(msg, hdr); 1007 genlmsg_cancel(msg, hdr); 1009 return -EMSGSIZE; 1008 return -EMSGSIZE; 1010 } 1009 } 1011 1010 1012 static int nfc_genl_llc_get_params(struct sk_ 1011 static int nfc_genl_llc_get_params(struct sk_buff *skb, struct genl_info *info) 1013 { 1012 { 1014 struct nfc_dev *dev; 1013 struct nfc_dev *dev; 1015 struct nfc_llcp_local *local; 1014 struct nfc_llcp_local *local; 1016 int rc = 0; 1015 int rc = 0; 1017 struct sk_buff *msg = NULL; 1016 struct sk_buff *msg = NULL; 1018 u32 idx; 1017 u32 idx; 1019 1018 1020 if (!info->attrs[NFC_ATTR_DEVICE_INDE !! 1019 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || >> 1020 !info->attrs[NFC_ATTR_FIRMWARE_NAME]) 1021 return -EINVAL; 1021 return -EINVAL; 1022 1022 1023 idx = nla_get_u32(info->attrs[NFC_ATT 1023 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1024 1024 1025 dev = nfc_get_device(idx); 1025 dev = nfc_get_device(idx); 1026 if (!dev) 1026 if (!dev) 1027 return -ENODEV; 1027 return -ENODEV; 1028 1028 1029 device_lock(&dev->dev); 1029 device_lock(&dev->dev); 1030 1030 1031 local = nfc_llcp_find_local(dev); 1031 local = nfc_llcp_find_local(dev); 1032 if (!local) { 1032 if (!local) { 1033 rc = -ENODEV; 1033 rc = -ENODEV; 1034 goto exit; 1034 goto exit; 1035 } 1035 } 1036 1036 1037 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, G 1037 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 1038 if (!msg) { 1038 if (!msg) { 1039 rc = -ENOMEM; 1039 rc = -ENOMEM; 1040 goto put_local; !! 1040 goto exit; 1041 } 1041 } 1042 1042 1043 rc = nfc_genl_send_params(msg, local, 1043 rc = nfc_genl_send_params(msg, local, info->snd_portid, info->snd_seq); 1044 1044 1045 put_local: << 1046 nfc_llcp_local_put(local); << 1047 << 1048 exit: 1045 exit: 1049 device_unlock(&dev->dev); 1046 device_unlock(&dev->dev); 1050 1047 1051 nfc_put_device(dev); 1048 nfc_put_device(dev); 1052 1049 1053 if (rc < 0) { 1050 if (rc < 0) { 1054 if (msg) 1051 if (msg) 1055 nlmsg_free(msg); 1052 nlmsg_free(msg); 1056 1053 1057 return rc; 1054 return rc; 1058 } 1055 } 1059 1056 1060 return genlmsg_reply(msg, info); 1057 return genlmsg_reply(msg, info); 1061 } 1058 } 1062 1059 1063 static int nfc_genl_llc_set_params(struct sk_ 1060 static int nfc_genl_llc_set_params(struct sk_buff *skb, struct genl_info *info) 1064 { 1061 { 1065 struct nfc_dev *dev; 1062 struct nfc_dev *dev; 1066 struct nfc_llcp_local *local; 1063 struct nfc_llcp_local *local; 1067 u8 rw = 0; 1064 u8 rw = 0; 1068 u16 miux = 0; 1065 u16 miux = 0; 1069 u32 idx; 1066 u32 idx; 1070 int rc = 0; 1067 int rc = 0; 1071 1068 1072 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1069 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 1073 (!info->attrs[NFC_ATTR_LLC_PARAM_ 1070 (!info->attrs[NFC_ATTR_LLC_PARAM_LTO] && 1074 !info->attrs[NFC_ATTR_LLC_PARAM_ 1071 !info->attrs[NFC_ATTR_LLC_PARAM_RW] && 1075 !info->attrs[NFC_ATTR_LLC_PARAM_ 1072 !info->attrs[NFC_ATTR_LLC_PARAM_MIUX])) 1076 return -EINVAL; 1073 return -EINVAL; 1077 1074 1078 if (info->attrs[NFC_ATTR_LLC_PARAM_RW 1075 if (info->attrs[NFC_ATTR_LLC_PARAM_RW]) { 1079 rw = nla_get_u8(info->attrs[N 1076 rw = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_RW]); 1080 1077 1081 if (rw > LLCP_MAX_RW) 1078 if (rw > LLCP_MAX_RW) 1082 return -EINVAL; 1079 return -EINVAL; 1083 } 1080 } 1084 1081 1085 if (info->attrs[NFC_ATTR_LLC_PARAM_MI 1082 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX]) { 1086 miux = nla_get_u16(info->attr 1083 miux = nla_get_u16(info->attrs[NFC_ATTR_LLC_PARAM_MIUX]); 1087 1084 1088 if (miux > LLCP_MAX_MIUX) 1085 if (miux > LLCP_MAX_MIUX) 1089 return -EINVAL; 1086 return -EINVAL; 1090 } 1087 } 1091 1088 1092 idx = nla_get_u32(info->attrs[NFC_ATT 1089 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1093 1090 1094 dev = nfc_get_device(idx); 1091 dev = nfc_get_device(idx); 1095 if (!dev) 1092 if (!dev) 1096 return -ENODEV; 1093 return -ENODEV; 1097 1094 1098 device_lock(&dev->dev); 1095 device_lock(&dev->dev); 1099 1096 1100 local = nfc_llcp_find_local(dev); 1097 local = nfc_llcp_find_local(dev); 1101 if (!local) { 1098 if (!local) { 1102 rc = -ENODEV; 1099 rc = -ENODEV; 1103 goto exit; 1100 goto exit; 1104 } 1101 } 1105 1102 1106 if (info->attrs[NFC_ATTR_LLC_PARAM_LT 1103 if (info->attrs[NFC_ATTR_LLC_PARAM_LTO]) { 1107 if (dev->dep_link_up) { 1104 if (dev->dep_link_up) { 1108 rc = -EINPROGRESS; 1105 rc = -EINPROGRESS; 1109 goto put_local; !! 1106 goto exit; 1110 } 1107 } 1111 1108 1112 local->lto = nla_get_u8(info- 1109 local->lto = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_LTO]); 1113 } 1110 } 1114 1111 1115 if (info->attrs[NFC_ATTR_LLC_PARAM_RW 1112 if (info->attrs[NFC_ATTR_LLC_PARAM_RW]) 1116 local->rw = rw; 1113 local->rw = rw; 1117 1114 1118 if (info->attrs[NFC_ATTR_LLC_PARAM_MI 1115 if (info->attrs[NFC_ATTR_LLC_PARAM_MIUX]) 1119 local->miux = cpu_to_be16(miu 1116 local->miux = cpu_to_be16(miux); 1120 1117 1121 put_local: << 1122 nfc_llcp_local_put(local); << 1123 << 1124 exit: 1118 exit: 1125 device_unlock(&dev->dev); 1119 device_unlock(&dev->dev); 1126 1120 1127 nfc_put_device(dev); 1121 nfc_put_device(dev); 1128 1122 1129 return rc; 1123 return rc; 1130 } 1124 } 1131 1125 1132 static int nfc_genl_llc_sdreq(struct sk_buff 1126 static int nfc_genl_llc_sdreq(struct sk_buff *skb, struct genl_info *info) 1133 { 1127 { 1134 struct nfc_dev *dev; 1128 struct nfc_dev *dev; 1135 struct nfc_llcp_local *local; 1129 struct nfc_llcp_local *local; 1136 struct nlattr *attr, *sdp_attrs[NFC_S 1130 struct nlattr *attr, *sdp_attrs[NFC_SDP_ATTR_MAX+1]; 1137 u32 idx; 1131 u32 idx; 1138 u8 tid; 1132 u8 tid; 1139 char *uri; 1133 char *uri; 1140 int rc = 0, rem; 1134 int rc = 0, rem; 1141 size_t uri_len, tlvs_len; 1135 size_t uri_len, tlvs_len; 1142 struct hlist_head sdreq_list; 1136 struct hlist_head sdreq_list; 1143 struct nfc_llcp_sdp_tlv *sdreq; 1137 struct nfc_llcp_sdp_tlv *sdreq; 1144 1138 1145 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1139 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 1146 !info->attrs[NFC_ATTR_LLC_SDP]) 1140 !info->attrs[NFC_ATTR_LLC_SDP]) 1147 return -EINVAL; 1141 return -EINVAL; 1148 1142 1149 idx = nla_get_u32(info->attrs[NFC_ATT 1143 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1150 1144 1151 dev = nfc_get_device(idx); 1145 dev = nfc_get_device(idx); 1152 if (!dev) 1146 if (!dev) 1153 return -ENODEV; 1147 return -ENODEV; 1154 1148 1155 device_lock(&dev->dev); 1149 device_lock(&dev->dev); 1156 1150 1157 if (dev->dep_link_up == false) { 1151 if (dev->dep_link_up == false) { 1158 rc = -ENOLINK; 1152 rc = -ENOLINK; 1159 goto exit; 1153 goto exit; 1160 } 1154 } 1161 1155 1162 local = nfc_llcp_find_local(dev); 1156 local = nfc_llcp_find_local(dev); 1163 if (!local) { 1157 if (!local) { 1164 rc = -ENODEV; 1158 rc = -ENODEV; 1165 goto exit; 1159 goto exit; 1166 } 1160 } 1167 1161 1168 INIT_HLIST_HEAD(&sdreq_list); 1162 INIT_HLIST_HEAD(&sdreq_list); 1169 1163 1170 tlvs_len = 0; 1164 tlvs_len = 0; 1171 1165 1172 nla_for_each_nested(attr, info->attrs 1166 nla_for_each_nested(attr, info->attrs[NFC_ATTR_LLC_SDP], rem) { 1173 rc = nla_parse_nested_depreca 1167 rc = nla_parse_nested_deprecated(sdp_attrs, NFC_SDP_ATTR_MAX, 1174 1168 attr, nfc_sdp_genl_policy, 1175 1169 info->extack); 1176 1170 1177 if (rc != 0) { 1171 if (rc != 0) { 1178 rc = -EINVAL; 1172 rc = -EINVAL; 1179 goto put_local; !! 1173 goto exit; 1180 } 1174 } 1181 1175 1182 if (!sdp_attrs[NFC_SDP_ATTR_U 1176 if (!sdp_attrs[NFC_SDP_ATTR_URI]) 1183 continue; 1177 continue; 1184 1178 1185 uri_len = nla_len(sdp_attrs[N 1179 uri_len = nla_len(sdp_attrs[NFC_SDP_ATTR_URI]); 1186 if (uri_len == 0) 1180 if (uri_len == 0) 1187 continue; 1181 continue; 1188 1182 1189 uri = nla_data(sdp_attrs[NFC_ 1183 uri = nla_data(sdp_attrs[NFC_SDP_ATTR_URI]); 1190 if (uri == NULL || *uri == 0) 1184 if (uri == NULL || *uri == 0) 1191 continue; 1185 continue; 1192 1186 1193 tid = local->sdreq_next_tid++ 1187 tid = local->sdreq_next_tid++; 1194 1188 1195 sdreq = nfc_llcp_build_sdreq_ 1189 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len); 1196 if (sdreq == NULL) { 1190 if (sdreq == NULL) { 1197 rc = -ENOMEM; 1191 rc = -ENOMEM; 1198 goto put_local; !! 1192 goto exit; 1199 } 1193 } 1200 1194 1201 tlvs_len += sdreq->tlv_len; 1195 tlvs_len += sdreq->tlv_len; 1202 1196 1203 hlist_add_head(&sdreq->node, 1197 hlist_add_head(&sdreq->node, &sdreq_list); 1204 } 1198 } 1205 1199 1206 if (hlist_empty(&sdreq_list)) { 1200 if (hlist_empty(&sdreq_list)) { 1207 rc = -EINVAL; 1201 rc = -EINVAL; 1208 goto put_local; !! 1202 goto exit; 1209 } 1203 } 1210 1204 1211 rc = nfc_llcp_send_snl_sdreq(local, & 1205 rc = nfc_llcp_send_snl_sdreq(local, &sdreq_list, tlvs_len); 1212 << 1213 put_local: << 1214 nfc_llcp_local_put(local); << 1215 << 1216 exit: 1206 exit: 1217 device_unlock(&dev->dev); 1207 device_unlock(&dev->dev); 1218 1208 1219 nfc_put_device(dev); 1209 nfc_put_device(dev); 1220 1210 1221 return rc; 1211 return rc; 1222 } 1212 } 1223 1213 1224 static int nfc_genl_fw_download(struct sk_buf 1214 static int nfc_genl_fw_download(struct sk_buff *skb, struct genl_info *info) 1225 { 1215 { 1226 struct nfc_dev *dev; 1216 struct nfc_dev *dev; 1227 int rc; 1217 int rc; 1228 u32 idx; 1218 u32 idx; 1229 char firmware_name[NFC_FIRMWARE_NAME_ 1219 char firmware_name[NFC_FIRMWARE_NAME_MAXSIZE + 1]; 1230 1220 1231 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1221 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || !info->attrs[NFC_ATTR_FIRMWARE_NAME]) 1232 return -EINVAL; 1222 return -EINVAL; 1233 1223 1234 idx = nla_get_u32(info->attrs[NFC_ATT 1224 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1235 1225 1236 dev = nfc_get_device(idx); 1226 dev = nfc_get_device(idx); 1237 if (!dev) 1227 if (!dev) 1238 return -ENODEV; 1228 return -ENODEV; 1239 1229 1240 nla_strscpy(firmware_name, info->attr 1230 nla_strscpy(firmware_name, info->attrs[NFC_ATTR_FIRMWARE_NAME], 1241 sizeof(firmware_name)); 1231 sizeof(firmware_name)); 1242 1232 1243 rc = nfc_fw_download(dev, firmware_na 1233 rc = nfc_fw_download(dev, firmware_name); 1244 1234 1245 nfc_put_device(dev); 1235 nfc_put_device(dev); 1246 return rc; 1236 return rc; 1247 } 1237 } 1248 1238 1249 int nfc_genl_fw_download_done(struct nfc_dev 1239 int nfc_genl_fw_download_done(struct nfc_dev *dev, const char *firmware_name, 1250 u32 result) 1240 u32 result) 1251 { 1241 { 1252 struct sk_buff *msg; 1242 struct sk_buff *msg; 1253 void *hdr; 1243 void *hdr; 1254 1244 1255 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, G !! 1245 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 1256 if (!msg) 1246 if (!msg) 1257 return -ENOMEM; 1247 return -ENOMEM; 1258 1248 1259 hdr = genlmsg_put(msg, 0, 0, &nfc_gen 1249 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 1260 NFC_CMD_FW_DOWNLOAD 1250 NFC_CMD_FW_DOWNLOAD); 1261 if (!hdr) 1251 if (!hdr) 1262 goto free_msg; 1252 goto free_msg; 1263 1253 1264 if (nla_put_string(msg, NFC_ATTR_FIRM 1254 if (nla_put_string(msg, NFC_ATTR_FIRMWARE_NAME, firmware_name) || 1265 nla_put_u32(msg, NFC_ATTR_FIRMWAR 1255 nla_put_u32(msg, NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, result) || 1266 nla_put_u32(msg, NFC_ATTR_DEVICE_ 1256 nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx)) 1267 goto nla_put_failure; 1257 goto nla_put_failure; 1268 1258 1269 genlmsg_end(msg, hdr); 1259 genlmsg_end(msg, hdr); 1270 1260 1271 genlmsg_multicast(&nfc_genl_family, m !! 1261 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 1272 1262 1273 return 0; 1263 return 0; 1274 1264 1275 nla_put_failure: 1265 nla_put_failure: 1276 free_msg: 1266 free_msg: 1277 nlmsg_free(msg); 1267 nlmsg_free(msg); 1278 return -EMSGSIZE; 1268 return -EMSGSIZE; 1279 } 1269 } 1280 1270 1281 static int nfc_genl_enable_se(struct sk_buff 1271 static int nfc_genl_enable_se(struct sk_buff *skb, struct genl_info *info) 1282 { 1272 { 1283 struct nfc_dev *dev; 1273 struct nfc_dev *dev; 1284 int rc; 1274 int rc; 1285 u32 idx, se_idx; 1275 u32 idx, se_idx; 1286 1276 1287 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1277 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 1288 !info->attrs[NFC_ATTR_SE_INDEX]) 1278 !info->attrs[NFC_ATTR_SE_INDEX]) 1289 return -EINVAL; 1279 return -EINVAL; 1290 1280 1291 idx = nla_get_u32(info->attrs[NFC_ATT 1281 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1292 se_idx = nla_get_u32(info->attrs[NFC_ 1282 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]); 1293 1283 1294 dev = nfc_get_device(idx); 1284 dev = nfc_get_device(idx); 1295 if (!dev) 1285 if (!dev) 1296 return -ENODEV; 1286 return -ENODEV; 1297 1287 1298 rc = nfc_enable_se(dev, se_idx); 1288 rc = nfc_enable_se(dev, se_idx); 1299 1289 1300 nfc_put_device(dev); 1290 nfc_put_device(dev); 1301 return rc; 1291 return rc; 1302 } 1292 } 1303 1293 1304 static int nfc_genl_disable_se(struct sk_buff 1294 static int nfc_genl_disable_se(struct sk_buff *skb, struct genl_info *info) 1305 { 1295 { 1306 struct nfc_dev *dev; 1296 struct nfc_dev *dev; 1307 int rc; 1297 int rc; 1308 u32 idx, se_idx; 1298 u32 idx, se_idx; 1309 1299 1310 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1300 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 1311 !info->attrs[NFC_ATTR_SE_INDEX]) 1301 !info->attrs[NFC_ATTR_SE_INDEX]) 1312 return -EINVAL; 1302 return -EINVAL; 1313 1303 1314 idx = nla_get_u32(info->attrs[NFC_ATT 1304 idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1315 se_idx = nla_get_u32(info->attrs[NFC_ 1305 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]); 1316 1306 1317 dev = nfc_get_device(idx); 1307 dev = nfc_get_device(idx); 1318 if (!dev) 1308 if (!dev) 1319 return -ENODEV; 1309 return -ENODEV; 1320 1310 1321 rc = nfc_disable_se(dev, se_idx); 1311 rc = nfc_disable_se(dev, se_idx); 1322 1312 1323 nfc_put_device(dev); 1313 nfc_put_device(dev); 1324 return rc; 1314 return rc; 1325 } 1315 } 1326 1316 1327 static int nfc_genl_send_se(struct sk_buff *m 1317 static int nfc_genl_send_se(struct sk_buff *msg, struct nfc_dev *dev, 1328 u32 portid, u 1318 u32 portid, u32 seq, 1329 struct netlin 1319 struct netlink_callback *cb, 1330 int flags) 1320 int flags) 1331 { 1321 { 1332 void *hdr; 1322 void *hdr; 1333 struct nfc_se *se, *n; 1323 struct nfc_se *se, *n; 1334 1324 1335 list_for_each_entry_safe(se, n, &dev- 1325 list_for_each_entry_safe(se, n, &dev->secure_elements, list) { 1336 hdr = genlmsg_put(msg, portid 1326 hdr = genlmsg_put(msg, portid, seq, &nfc_genl_family, flags, 1337 NFC_CMD_GET 1327 NFC_CMD_GET_SE); 1338 if (!hdr) 1328 if (!hdr) 1339 goto nla_put_failure; 1329 goto nla_put_failure; 1340 1330 1341 if (cb) 1331 if (cb) 1342 genl_dump_check_consi 1332 genl_dump_check_consistent(cb, hdr); 1343 1333 1344 if (nla_put_u32(msg, NFC_ATTR 1334 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, dev->idx) || 1345 nla_put_u32(msg, NFC_ATTR 1335 nla_put_u32(msg, NFC_ATTR_SE_INDEX, se->idx) || 1346 nla_put_u8(msg, NFC_ATTR_ 1336 nla_put_u8(msg, NFC_ATTR_SE_TYPE, se->type)) 1347 goto nla_put_failure; 1337 goto nla_put_failure; 1348 1338 1349 genlmsg_end(msg, hdr); 1339 genlmsg_end(msg, hdr); 1350 } 1340 } 1351 1341 1352 return 0; 1342 return 0; 1353 1343 1354 nla_put_failure: 1344 nla_put_failure: 1355 genlmsg_cancel(msg, hdr); 1345 genlmsg_cancel(msg, hdr); 1356 return -EMSGSIZE; 1346 return -EMSGSIZE; 1357 } 1347 } 1358 1348 1359 static int nfc_genl_dump_ses(struct sk_buff * 1349 static int nfc_genl_dump_ses(struct sk_buff *skb, 1360 struct netli 1350 struct netlink_callback *cb) 1361 { 1351 { 1362 struct class_dev_iter *iter = (struct 1352 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0]; 1363 struct nfc_dev *dev = (struct nfc_dev 1353 struct nfc_dev *dev = (struct nfc_dev *) cb->args[1]; 1364 bool first_call = false; 1354 bool first_call = false; 1365 1355 1366 if (!iter) { 1356 if (!iter) { 1367 first_call = true; 1357 first_call = true; 1368 iter = kmalloc(sizeof(struct 1358 iter = kmalloc(sizeof(struct class_dev_iter), GFP_KERNEL); 1369 if (!iter) 1359 if (!iter) 1370 return -ENOMEM; 1360 return -ENOMEM; 1371 cb->args[0] = (long) iter; 1361 cb->args[0] = (long) iter; 1372 } 1362 } 1373 1363 1374 mutex_lock(&nfc_devlist_mutex); 1364 mutex_lock(&nfc_devlist_mutex); 1375 1365 1376 cb->seq = nfc_devlist_generation; 1366 cb->seq = nfc_devlist_generation; 1377 1367 1378 if (first_call) { 1368 if (first_call) { 1379 nfc_device_iter_init(iter); 1369 nfc_device_iter_init(iter); 1380 dev = nfc_device_iter_next(it 1370 dev = nfc_device_iter_next(iter); 1381 } 1371 } 1382 1372 1383 while (dev) { 1373 while (dev) { 1384 int rc; 1374 int rc; 1385 1375 1386 rc = nfc_genl_send_se(skb, de 1376 rc = nfc_genl_send_se(skb, dev, NETLINK_CB(cb->skb).portid, 1387 cb- 1377 cb->nlh->nlmsg_seq, cb, NLM_F_MULTI); 1388 if (rc < 0) 1378 if (rc < 0) 1389 break; 1379 break; 1390 1380 1391 dev = nfc_device_iter_next(it 1381 dev = nfc_device_iter_next(iter); 1392 } 1382 } 1393 1383 1394 mutex_unlock(&nfc_devlist_mutex); 1384 mutex_unlock(&nfc_devlist_mutex); 1395 1385 1396 cb->args[1] = (long) dev; 1386 cb->args[1] = (long) dev; 1397 1387 1398 return skb->len; 1388 return skb->len; 1399 } 1389 } 1400 1390 1401 static int nfc_genl_dump_ses_done(struct netl 1391 static int nfc_genl_dump_ses_done(struct netlink_callback *cb) 1402 { 1392 { 1403 struct class_dev_iter *iter = (struct 1393 struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0]; 1404 1394 1405 if (iter) { !! 1395 nfc_device_iter_exit(iter); 1406 nfc_device_iter_exit(iter); !! 1396 kfree(iter); 1407 kfree(iter); << 1408 } << 1409 1397 1410 return 0; 1398 return 0; 1411 } 1399 } 1412 1400 1413 static int nfc_se_io(struct nfc_dev *dev, u32 1401 static int nfc_se_io(struct nfc_dev *dev, u32 se_idx, 1414 u8 *apdu, size_t apdu_le 1402 u8 *apdu, size_t apdu_length, 1415 se_io_cb_t cb, void *cb_ 1403 se_io_cb_t cb, void *cb_context) 1416 { 1404 { 1417 struct nfc_se *se; 1405 struct nfc_se *se; 1418 int rc; 1406 int rc; 1419 1407 1420 pr_debug("%s se index %d\n", dev_name 1408 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx); 1421 1409 1422 device_lock(&dev->dev); 1410 device_lock(&dev->dev); 1423 1411 1424 if (!device_is_registered(&dev->dev)) 1412 if (!device_is_registered(&dev->dev)) { 1425 rc = -ENODEV; 1413 rc = -ENODEV; 1426 goto error; 1414 goto error; 1427 } 1415 } 1428 1416 1429 if (!dev->dev_up) { 1417 if (!dev->dev_up) { 1430 rc = -ENODEV; 1418 rc = -ENODEV; 1431 goto error; 1419 goto error; 1432 } 1420 } 1433 1421 1434 if (!dev->ops->se_io) { 1422 if (!dev->ops->se_io) { 1435 rc = -EOPNOTSUPP; 1423 rc = -EOPNOTSUPP; 1436 goto error; 1424 goto error; 1437 } 1425 } 1438 1426 1439 se = nfc_find_se(dev, se_idx); 1427 se = nfc_find_se(dev, se_idx); 1440 if (!se) { 1428 if (!se) { 1441 rc = -EINVAL; 1429 rc = -EINVAL; 1442 goto error; 1430 goto error; 1443 } 1431 } 1444 1432 1445 if (se->state != NFC_SE_ENABLED) { 1433 if (se->state != NFC_SE_ENABLED) { 1446 rc = -ENODEV; 1434 rc = -ENODEV; 1447 goto error; 1435 goto error; 1448 } 1436 } 1449 1437 1450 rc = dev->ops->se_io(dev, se_idx, apd 1438 rc = dev->ops->se_io(dev, se_idx, apdu, 1451 apdu_length, cb, cb_c 1439 apdu_length, cb, cb_context); 1452 1440 1453 device_unlock(&dev->dev); << 1454 return rc; << 1455 << 1456 error: 1441 error: 1457 device_unlock(&dev->dev); 1442 device_unlock(&dev->dev); 1458 kfree(cb_context); << 1459 return rc; 1443 return rc; 1460 } 1444 } 1461 1445 1462 struct se_io_ctx { 1446 struct se_io_ctx { 1463 u32 dev_idx; 1447 u32 dev_idx; 1464 u32 se_idx; 1448 u32 se_idx; 1465 }; 1449 }; 1466 1450 1467 static void se_io_cb(void *context, u8 *apdu, 1451 static void se_io_cb(void *context, u8 *apdu, size_t apdu_len, int err) 1468 { 1452 { 1469 struct se_io_ctx *ctx = context; 1453 struct se_io_ctx *ctx = context; 1470 struct sk_buff *msg; 1454 struct sk_buff *msg; 1471 void *hdr; 1455 void *hdr; 1472 1456 1473 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, G 1457 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); 1474 if (!msg) { 1458 if (!msg) { 1475 kfree(ctx); 1459 kfree(ctx); 1476 return; 1460 return; 1477 } 1461 } 1478 1462 1479 hdr = genlmsg_put(msg, 0, 0, &nfc_gen 1463 hdr = genlmsg_put(msg, 0, 0, &nfc_genl_family, 0, 1480 NFC_CMD_SE_IO); 1464 NFC_CMD_SE_IO); 1481 if (!hdr) 1465 if (!hdr) 1482 goto free_msg; 1466 goto free_msg; 1483 1467 1484 if (nla_put_u32(msg, NFC_ATTR_DEVICE_ 1468 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, ctx->dev_idx) || 1485 nla_put_u32(msg, NFC_ATTR_SE_INDE 1469 nla_put_u32(msg, NFC_ATTR_SE_INDEX, ctx->se_idx) || 1486 nla_put(msg, NFC_ATTR_SE_APDU, ap 1470 nla_put(msg, NFC_ATTR_SE_APDU, apdu_len, apdu)) 1487 goto nla_put_failure; 1471 goto nla_put_failure; 1488 1472 1489 genlmsg_end(msg, hdr); 1473 genlmsg_end(msg, hdr); 1490 1474 1491 genlmsg_multicast(&nfc_genl_family, m 1475 genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); 1492 1476 1493 kfree(ctx); 1477 kfree(ctx); 1494 1478 1495 return; 1479 return; 1496 1480 1497 nla_put_failure: 1481 nla_put_failure: 1498 free_msg: 1482 free_msg: 1499 nlmsg_free(msg); 1483 nlmsg_free(msg); 1500 kfree(ctx); 1484 kfree(ctx); 1501 1485 1502 return; 1486 return; 1503 } 1487 } 1504 1488 1505 static int nfc_genl_se_io(struct sk_buff *skb 1489 static int nfc_genl_se_io(struct sk_buff *skb, struct genl_info *info) 1506 { 1490 { 1507 struct nfc_dev *dev; 1491 struct nfc_dev *dev; 1508 struct se_io_ctx *ctx; 1492 struct se_io_ctx *ctx; 1509 u32 dev_idx, se_idx; 1493 u32 dev_idx, se_idx; 1510 u8 *apdu; 1494 u8 *apdu; 1511 size_t apdu_len; 1495 size_t apdu_len; 1512 int rc; << 1513 1496 1514 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1497 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 1515 !info->attrs[NFC_ATTR_SE_INDEX] | 1498 !info->attrs[NFC_ATTR_SE_INDEX] || 1516 !info->attrs[NFC_ATTR_SE_APDU]) 1499 !info->attrs[NFC_ATTR_SE_APDU]) 1517 return -EINVAL; 1500 return -EINVAL; 1518 1501 1519 dev_idx = nla_get_u32(info->attrs[NFC 1502 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1520 se_idx = nla_get_u32(info->attrs[NFC_ 1503 se_idx = nla_get_u32(info->attrs[NFC_ATTR_SE_INDEX]); 1521 1504 1522 dev = nfc_get_device(dev_idx); 1505 dev = nfc_get_device(dev_idx); 1523 if (!dev) 1506 if (!dev) 1524 return -ENODEV; 1507 return -ENODEV; 1525 1508 1526 if (!dev->ops || !dev->ops->se_io) { !! 1509 if (!dev->ops || !dev->ops->se_io) 1527 rc = -EOPNOTSUPP; !! 1510 return -ENOTSUPP; 1528 goto put_dev; << 1529 } << 1530 1511 1531 apdu_len = nla_len(info->attrs[NFC_AT 1512 apdu_len = nla_len(info->attrs[NFC_ATTR_SE_APDU]); 1532 if (apdu_len == 0) { !! 1513 if (apdu_len == 0) 1533 rc = -EINVAL; !! 1514 return -EINVAL; 1534 goto put_dev; << 1535 } << 1536 1515 1537 apdu = nla_data(info->attrs[NFC_ATTR_ 1516 apdu = nla_data(info->attrs[NFC_ATTR_SE_APDU]); 1538 if (!apdu) { !! 1517 if (!apdu) 1539 rc = -EINVAL; !! 1518 return -EINVAL; 1540 goto put_dev; << 1541 } << 1542 1519 1543 ctx = kzalloc(sizeof(struct se_io_ctx 1520 ctx = kzalloc(sizeof(struct se_io_ctx), GFP_KERNEL); 1544 if (!ctx) { !! 1521 if (!ctx) 1545 rc = -ENOMEM; !! 1522 return -ENOMEM; 1546 goto put_dev; << 1547 } << 1548 1523 1549 ctx->dev_idx = dev_idx; 1524 ctx->dev_idx = dev_idx; 1550 ctx->se_idx = se_idx; 1525 ctx->se_idx = se_idx; 1551 1526 1552 rc = nfc_se_io(dev, se_idx, apdu, apd !! 1527 return nfc_se_io(dev, se_idx, apdu, apdu_len, se_io_cb, ctx); 1553 << 1554 put_dev: << 1555 nfc_put_device(dev); << 1556 return rc; << 1557 } 1528 } 1558 1529 1559 static int nfc_genl_vendor_cmd(struct sk_buff 1530 static int nfc_genl_vendor_cmd(struct sk_buff *skb, 1560 struct genl_in 1531 struct genl_info *info) 1561 { 1532 { 1562 struct nfc_dev *dev; 1533 struct nfc_dev *dev; 1563 const struct nfc_vendor_cmd *cmd; !! 1534 struct nfc_vendor_cmd *cmd; 1564 u32 dev_idx, vid, subcmd; 1535 u32 dev_idx, vid, subcmd; 1565 u8 *data; 1536 u8 *data; 1566 size_t data_len; 1537 size_t data_len; 1567 int i, err; 1538 int i, err; 1568 1539 1569 if (!info->attrs[NFC_ATTR_DEVICE_INDE 1540 if (!info->attrs[NFC_ATTR_DEVICE_INDEX] || 1570 !info->attrs[NFC_ATTR_VENDOR_ID] 1541 !info->attrs[NFC_ATTR_VENDOR_ID] || 1571 !info->attrs[NFC_ATTR_VENDOR_SUBC 1542 !info->attrs[NFC_ATTR_VENDOR_SUBCMD]) 1572 return -EINVAL; 1543 return -EINVAL; 1573 1544 1574 dev_idx = nla_get_u32(info->attrs[NFC 1545 dev_idx = nla_get_u32(info->attrs[NFC_ATTR_DEVICE_INDEX]); 1575 vid = nla_get_u32(info->attrs[NFC_ATT 1546 vid = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_ID]); 1576 subcmd = nla_get_u32(info->attrs[NFC_ 1547 subcmd = nla_get_u32(info->attrs[NFC_ATTR_VENDOR_SUBCMD]); 1577 1548 1578 dev = nfc_get_device(dev_idx); 1549 dev = nfc_get_device(dev_idx); 1579 if (!dev) !! 1550 if (!dev || !dev->vendor_cmds || !dev->n_vendor_cmds) 1580 return -ENODEV; 1551 return -ENODEV; 1581 1552 1582 if (!dev->vendor_cmds || !dev->n_vend << 1583 err = -ENODEV; << 1584 goto put_dev; << 1585 } << 1586 << 1587 if (info->attrs[NFC_ATTR_VENDOR_DATA] 1553 if (info->attrs[NFC_ATTR_VENDOR_DATA]) { 1588 data = nla_data(info->attrs[N 1554 data = nla_data(info->attrs[NFC_ATTR_VENDOR_DATA]); 1589 data_len = nla_len(info->attr 1555 data_len = nla_len(info->attrs[NFC_ATTR_VENDOR_DATA]); 1590 if (data_len == 0) { !! 1556 if (data_len == 0) 1591 err = -EINVAL; !! 1557 return -EINVAL; 1592 goto put_dev; << 1593 } << 1594 } else { 1558 } else { 1595 data = NULL; 1559 data = NULL; 1596 data_len = 0; 1560 data_len = 0; 1597 } 1561 } 1598 1562 1599 for (i = 0; i < dev->n_vendor_cmds; i 1563 for (i = 0; i < dev->n_vendor_cmds; i++) { 1600 cmd = &dev->vendor_cmds[i]; 1564 cmd = &dev->vendor_cmds[i]; 1601 1565 1602 if (cmd->vendor_id != vid || 1566 if (cmd->vendor_id != vid || cmd->subcmd != subcmd) 1603 continue; 1567 continue; 1604 1568 1605 dev->cur_cmd_info = info; 1569 dev->cur_cmd_info = info; 1606 err = cmd->doit(dev, data, da 1570 err = cmd->doit(dev, data, data_len); 1607 dev->cur_cmd_info = NULL; 1571 dev->cur_cmd_info = NULL; 1608 goto put_dev; !! 1572 return err; 1609 } 1573 } 1610 1574 1611 err = -EOPNOTSUPP; !! 1575 return -EOPNOTSUPP; 1612 << 1613 put_dev: << 1614 nfc_put_device(dev); << 1615 return err; << 1616 } 1576 } 1617 1577 1618 /* message building helper */ 1578 /* message building helper */ 1619 static inline void *nfc_hdr_put(struct sk_buf 1579 static inline void *nfc_hdr_put(struct sk_buff *skb, u32 portid, u32 seq, 1620 int flags, u8 1580 int flags, u8 cmd) 1621 { 1581 { 1622 /* since there is no private header j 1582 /* since there is no private header just add the generic one */ 1623 return genlmsg_put(skb, portid, seq, 1583 return genlmsg_put(skb, portid, seq, &nfc_genl_family, flags, cmd); 1624 } 1584 } 1625 1585 1626 static struct sk_buff * 1586 static struct sk_buff * 1627 __nfc_alloc_vendor_cmd_skb(struct nfc_dev *de 1587 __nfc_alloc_vendor_cmd_skb(struct nfc_dev *dev, int approxlen, 1628 u32 portid, u32 se 1588 u32 portid, u32 seq, 1629 enum nfc_attrs att 1589 enum nfc_attrs attr, 1630 u32 oui, u32 subcm 1590 u32 oui, u32 subcmd, gfp_t gfp) 1631 { 1591 { 1632 struct sk_buff *skb; 1592 struct sk_buff *skb; 1633 void *hdr; 1593 void *hdr; 1634 1594 1635 skb = nlmsg_new(approxlen + 100, gfp) 1595 skb = nlmsg_new(approxlen + 100, gfp); 1636 if (!skb) 1596 if (!skb) 1637 return NULL; 1597 return NULL; 1638 1598 1639 hdr = nfc_hdr_put(skb, portid, seq, 0 1599 hdr = nfc_hdr_put(skb, portid, seq, 0, NFC_CMD_VENDOR); 1640 if (!hdr) { 1600 if (!hdr) { 1641 kfree_skb(skb); 1601 kfree_skb(skb); 1642 return NULL; 1602 return NULL; 1643 } 1603 } 1644 1604 1645 if (nla_put_u32(skb, NFC_ATTR_DEVICE_ 1605 if (nla_put_u32(skb, NFC_ATTR_DEVICE_INDEX, dev->idx)) 1646 goto nla_put_failure; 1606 goto nla_put_failure; 1647 if (nla_put_u32(skb, NFC_ATTR_VENDOR_ 1607 if (nla_put_u32(skb, NFC_ATTR_VENDOR_ID, oui)) 1648 goto nla_put_failure; 1608 goto nla_put_failure; 1649 if (nla_put_u32(skb, NFC_ATTR_VENDOR_ 1609 if (nla_put_u32(skb, NFC_ATTR_VENDOR_SUBCMD, subcmd)) 1650 goto nla_put_failure; 1610 goto nla_put_failure; 1651 1611 1652 ((void **)skb->cb)[0] = dev; 1612 ((void **)skb->cb)[0] = dev; 1653 ((void **)skb->cb)[1] = hdr; 1613 ((void **)skb->cb)[1] = hdr; 1654 1614 1655 return skb; 1615 return skb; 1656 1616 1657 nla_put_failure: 1617 nla_put_failure: 1658 kfree_skb(skb); 1618 kfree_skb(skb); 1659 return NULL; 1619 return NULL; 1660 } 1620 } 1661 1621 1662 struct sk_buff *__nfc_alloc_vendor_cmd_reply_ 1622 struct sk_buff *__nfc_alloc_vendor_cmd_reply_skb(struct nfc_dev *dev, 1663 1623 enum nfc_attrs attr, 1664 1624 u32 oui, u32 subcmd, 1665 1625 int approxlen) 1666 { 1626 { 1667 if (WARN_ON(!dev->cur_cmd_info)) 1627 if (WARN_ON(!dev->cur_cmd_info)) 1668 return NULL; 1628 return NULL; 1669 1629 1670 return __nfc_alloc_vendor_cmd_skb(dev 1630 return __nfc_alloc_vendor_cmd_skb(dev, approxlen, 1671 dev 1631 dev->cur_cmd_info->snd_portid, 1672 dev 1632 dev->cur_cmd_info->snd_seq, attr, 1673 oui 1633 oui, subcmd, GFP_KERNEL); 1674 } 1634 } 1675 EXPORT_SYMBOL(__nfc_alloc_vendor_cmd_reply_sk 1635 EXPORT_SYMBOL(__nfc_alloc_vendor_cmd_reply_skb); 1676 1636 1677 int nfc_vendor_cmd_reply(struct sk_buff *skb) 1637 int nfc_vendor_cmd_reply(struct sk_buff *skb) 1678 { 1638 { 1679 struct nfc_dev *dev = ((void **)skb-> 1639 struct nfc_dev *dev = ((void **)skb->cb)[0]; 1680 void *hdr = ((void **)skb->cb)[1]; 1640 void *hdr = ((void **)skb->cb)[1]; 1681 1641 1682 /* clear CB data for netlink core to 1642 /* clear CB data for netlink core to own from now on */ 1683 memset(skb->cb, 0, sizeof(skb->cb)); 1643 memset(skb->cb, 0, sizeof(skb->cb)); 1684 1644 1685 if (WARN_ON(!dev->cur_cmd_info)) { 1645 if (WARN_ON(!dev->cur_cmd_info)) { 1686 kfree_skb(skb); 1646 kfree_skb(skb); 1687 return -EINVAL; 1647 return -EINVAL; 1688 } 1648 } 1689 1649 1690 genlmsg_end(skb, hdr); 1650 genlmsg_end(skb, hdr); 1691 return genlmsg_reply(skb, dev->cur_cm 1651 return genlmsg_reply(skb, dev->cur_cmd_info); 1692 } 1652 } 1693 EXPORT_SYMBOL(nfc_vendor_cmd_reply); 1653 EXPORT_SYMBOL(nfc_vendor_cmd_reply); 1694 1654 1695 static const struct genl_ops nfc_genl_ops[] = 1655 static const struct genl_ops nfc_genl_ops[] = { 1696 { 1656 { 1697 .cmd = NFC_CMD_GET_DEVICE, 1657 .cmd = NFC_CMD_GET_DEVICE, 1698 .validate = GENL_DONT_VALIDAT 1658 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1699 .doit = nfc_genl_get_device, 1659 .doit = nfc_genl_get_device, 1700 .dumpit = nfc_genl_dump_devic 1660 .dumpit = nfc_genl_dump_devices, 1701 .done = nfc_genl_dump_devices 1661 .done = nfc_genl_dump_devices_done, 1702 }, 1662 }, 1703 { 1663 { 1704 .cmd = NFC_CMD_DEV_UP, 1664 .cmd = NFC_CMD_DEV_UP, 1705 .validate = GENL_DONT_VALIDAT 1665 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1706 .doit = nfc_genl_dev_up, 1666 .doit = nfc_genl_dev_up, 1707 .flags = GENL_ADMIN_PERM, << 1708 }, 1667 }, 1709 { 1668 { 1710 .cmd = NFC_CMD_DEV_DOWN, 1669 .cmd = NFC_CMD_DEV_DOWN, 1711 .validate = GENL_DONT_VALIDAT 1670 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1712 .doit = nfc_genl_dev_down, 1671 .doit = nfc_genl_dev_down, 1713 .flags = GENL_ADMIN_PERM, << 1714 }, 1672 }, 1715 { 1673 { 1716 .cmd = NFC_CMD_START_POLL, 1674 .cmd = NFC_CMD_START_POLL, 1717 .validate = GENL_DONT_VALIDAT 1675 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1718 .doit = nfc_genl_start_poll, 1676 .doit = nfc_genl_start_poll, 1719 .flags = GENL_ADMIN_PERM, << 1720 }, 1677 }, 1721 { 1678 { 1722 .cmd = NFC_CMD_STOP_POLL, 1679 .cmd = NFC_CMD_STOP_POLL, 1723 .validate = GENL_DONT_VALIDAT 1680 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1724 .doit = nfc_genl_stop_poll, 1681 .doit = nfc_genl_stop_poll, 1725 .flags = GENL_ADMIN_PERM, << 1726 }, 1682 }, 1727 { 1683 { 1728 .cmd = NFC_CMD_DEP_LINK_UP, 1684 .cmd = NFC_CMD_DEP_LINK_UP, 1729 .validate = GENL_DONT_VALIDAT 1685 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1730 .doit = nfc_genl_dep_link_up, 1686 .doit = nfc_genl_dep_link_up, 1731 .flags = GENL_ADMIN_PERM, << 1732 }, 1687 }, 1733 { 1688 { 1734 .cmd = NFC_CMD_DEP_LINK_DOWN, 1689 .cmd = NFC_CMD_DEP_LINK_DOWN, 1735 .validate = GENL_DONT_VALIDAT 1690 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1736 .doit = nfc_genl_dep_link_dow 1691 .doit = nfc_genl_dep_link_down, 1737 .flags = GENL_ADMIN_PERM, << 1738 }, 1692 }, 1739 { 1693 { 1740 .cmd = NFC_CMD_GET_TARGET, 1694 .cmd = NFC_CMD_GET_TARGET, 1741 .validate = GENL_DONT_VALIDAT 1695 .validate = GENL_DONT_VALIDATE_STRICT | 1742 GENL_DONT_VALIDAT 1696 GENL_DONT_VALIDATE_DUMP_STRICT, 1743 .dumpit = nfc_genl_dump_targe 1697 .dumpit = nfc_genl_dump_targets, 1744 .done = nfc_genl_dump_targets 1698 .done = nfc_genl_dump_targets_done, 1745 }, 1699 }, 1746 { 1700 { 1747 .cmd = NFC_CMD_LLC_GET_PARAMS 1701 .cmd = NFC_CMD_LLC_GET_PARAMS, 1748 .validate = GENL_DONT_VALIDAT 1702 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1749 .doit = nfc_genl_llc_get_para 1703 .doit = nfc_genl_llc_get_params, 1750 }, 1704 }, 1751 { 1705 { 1752 .cmd = NFC_CMD_LLC_SET_PARAMS 1706 .cmd = NFC_CMD_LLC_SET_PARAMS, 1753 .validate = GENL_DONT_VALIDAT 1707 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1754 .doit = nfc_genl_llc_set_para 1708 .doit = nfc_genl_llc_set_params, 1755 .flags = GENL_ADMIN_PERM, << 1756 }, 1709 }, 1757 { 1710 { 1758 .cmd = NFC_CMD_LLC_SDREQ, 1711 .cmd = NFC_CMD_LLC_SDREQ, 1759 .validate = GENL_DONT_VALIDAT 1712 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1760 .doit = nfc_genl_llc_sdreq, 1713 .doit = nfc_genl_llc_sdreq, 1761 .flags = GENL_ADMIN_PERM, << 1762 }, 1714 }, 1763 { 1715 { 1764 .cmd = NFC_CMD_FW_DOWNLOAD, 1716 .cmd = NFC_CMD_FW_DOWNLOAD, 1765 .validate = GENL_DONT_VALIDAT 1717 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1766 .doit = nfc_genl_fw_download, 1718 .doit = nfc_genl_fw_download, 1767 .flags = GENL_ADMIN_PERM, << 1768 }, 1719 }, 1769 { 1720 { 1770 .cmd = NFC_CMD_ENABLE_SE, 1721 .cmd = NFC_CMD_ENABLE_SE, 1771 .validate = GENL_DONT_VALIDAT 1722 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1772 .doit = nfc_genl_enable_se, 1723 .doit = nfc_genl_enable_se, 1773 .flags = GENL_ADMIN_PERM, << 1774 }, 1724 }, 1775 { 1725 { 1776 .cmd = NFC_CMD_DISABLE_SE, 1726 .cmd = NFC_CMD_DISABLE_SE, 1777 .validate = GENL_DONT_VALIDAT 1727 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1778 .doit = nfc_genl_disable_se, 1728 .doit = nfc_genl_disable_se, 1779 .flags = GENL_ADMIN_PERM, << 1780 }, 1729 }, 1781 { 1730 { 1782 .cmd = NFC_CMD_GET_SE, 1731 .cmd = NFC_CMD_GET_SE, 1783 .validate = GENL_DONT_VALIDAT 1732 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1784 .dumpit = nfc_genl_dump_ses, 1733 .dumpit = nfc_genl_dump_ses, 1785 .done = nfc_genl_dump_ses_don 1734 .done = nfc_genl_dump_ses_done, 1786 }, 1735 }, 1787 { 1736 { 1788 .cmd = NFC_CMD_SE_IO, 1737 .cmd = NFC_CMD_SE_IO, 1789 .validate = GENL_DONT_VALIDAT 1738 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1790 .doit = nfc_genl_se_io, 1739 .doit = nfc_genl_se_io, 1791 .flags = GENL_ADMIN_PERM, << 1792 }, 1740 }, 1793 { 1741 { 1794 .cmd = NFC_CMD_ACTIVATE_TARGE 1742 .cmd = NFC_CMD_ACTIVATE_TARGET, 1795 .validate = GENL_DONT_VALIDAT 1743 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1796 .doit = nfc_genl_activate_tar 1744 .doit = nfc_genl_activate_target, 1797 .flags = GENL_ADMIN_PERM, << 1798 }, 1745 }, 1799 { 1746 { 1800 .cmd = NFC_CMD_VENDOR, 1747 .cmd = NFC_CMD_VENDOR, 1801 .validate = GENL_DONT_VALIDAT 1748 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1802 .doit = nfc_genl_vendor_cmd, 1749 .doit = nfc_genl_vendor_cmd, 1803 .flags = GENL_ADMIN_PERM, << 1804 }, 1750 }, 1805 { 1751 { 1806 .cmd = NFC_CMD_DEACTIVATE_TAR 1752 .cmd = NFC_CMD_DEACTIVATE_TARGET, 1807 .validate = GENL_DONT_VALIDAT 1753 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, 1808 .doit = nfc_genl_deactivate_t 1754 .doit = nfc_genl_deactivate_target, 1809 .flags = GENL_ADMIN_PERM, << 1810 }, 1755 }, 1811 }; 1756 }; 1812 1757 1813 static struct genl_family nfc_genl_family __r 1758 static struct genl_family nfc_genl_family __ro_after_init = { 1814 .hdrsize = 0, 1759 .hdrsize = 0, 1815 .name = NFC_GENL_NAME, 1760 .name = NFC_GENL_NAME, 1816 .version = NFC_GENL_VERSION, 1761 .version = NFC_GENL_VERSION, 1817 .maxattr = NFC_ATTR_MAX, 1762 .maxattr = NFC_ATTR_MAX, 1818 .policy = nfc_genl_policy, 1763 .policy = nfc_genl_policy, 1819 .module = THIS_MODULE, 1764 .module = THIS_MODULE, 1820 .ops = nfc_genl_ops, 1765 .ops = nfc_genl_ops, 1821 .n_ops = ARRAY_SIZE(nfc_genl_ops), 1766 .n_ops = ARRAY_SIZE(nfc_genl_ops), 1822 .resv_start_op = NFC_CMD_DEACTIVATE_T << 1823 .mcgrps = nfc_genl_mcgrps, 1767 .mcgrps = nfc_genl_mcgrps, 1824 .n_mcgrps = ARRAY_SIZE(nfc_genl_mcgrp 1768 .n_mcgrps = ARRAY_SIZE(nfc_genl_mcgrps), 1825 }; 1769 }; 1826 1770 1827 1771 1828 struct urelease_work { 1772 struct urelease_work { 1829 struct work_struct w; 1773 struct work_struct w; 1830 u32 portid; 1774 u32 portid; 1831 }; 1775 }; 1832 1776 1833 static void nfc_urelease_event_work(struct wo 1777 static void nfc_urelease_event_work(struct work_struct *work) 1834 { 1778 { 1835 struct urelease_work *w = container_o 1779 struct urelease_work *w = container_of(work, struct urelease_work, w); 1836 struct class_dev_iter iter; 1780 struct class_dev_iter iter; 1837 struct nfc_dev *dev; 1781 struct nfc_dev *dev; 1838 1782 1839 pr_debug("portid %d\n", w->portid); 1783 pr_debug("portid %d\n", w->portid); 1840 1784 1841 mutex_lock(&nfc_devlist_mutex); 1785 mutex_lock(&nfc_devlist_mutex); 1842 1786 1843 nfc_device_iter_init(&iter); 1787 nfc_device_iter_init(&iter); 1844 dev = nfc_device_iter_next(&iter); 1788 dev = nfc_device_iter_next(&iter); 1845 1789 1846 while (dev) { 1790 while (dev) { 1847 mutex_lock(&dev->genl_data.ge 1791 mutex_lock(&dev->genl_data.genl_data_mutex); 1848 1792 1849 if (dev->genl_data.poll_req_p 1793 if (dev->genl_data.poll_req_portid == w->portid) { 1850 nfc_stop_poll(dev); 1794 nfc_stop_poll(dev); 1851 dev->genl_data.poll_r 1795 dev->genl_data.poll_req_portid = 0; 1852 } 1796 } 1853 1797 1854 mutex_unlock(&dev->genl_data. 1798 mutex_unlock(&dev->genl_data.genl_data_mutex); 1855 1799 1856 dev = nfc_device_iter_next(&i 1800 dev = nfc_device_iter_next(&iter); 1857 } 1801 } 1858 1802 1859 nfc_device_iter_exit(&iter); 1803 nfc_device_iter_exit(&iter); 1860 1804 1861 mutex_unlock(&nfc_devlist_mutex); 1805 mutex_unlock(&nfc_devlist_mutex); 1862 1806 1863 kfree(w); 1807 kfree(w); 1864 } 1808 } 1865 1809 1866 static int nfc_genl_rcv_nl_event(struct notif 1810 static int nfc_genl_rcv_nl_event(struct notifier_block *this, 1867 unsigned lon 1811 unsigned long event, void *ptr) 1868 { 1812 { 1869 struct netlink_notify *n = ptr; 1813 struct netlink_notify *n = ptr; 1870 struct urelease_work *w; 1814 struct urelease_work *w; 1871 1815 1872 if (event != NETLINK_URELEASE || n->p 1816 if (event != NETLINK_URELEASE || n->protocol != NETLINK_GENERIC) 1873 goto out; 1817 goto out; 1874 1818 1875 pr_debug("NETLINK_URELEASE event from 1819 pr_debug("NETLINK_URELEASE event from id %d\n", n->portid); 1876 1820 1877 w = kmalloc(sizeof(*w), GFP_ATOMIC); 1821 w = kmalloc(sizeof(*w), GFP_ATOMIC); 1878 if (w) { 1822 if (w) { 1879 INIT_WORK(&w->w, nfc_urelease 1823 INIT_WORK(&w->w, nfc_urelease_event_work); 1880 w->portid = n->portid; 1824 w->portid = n->portid; 1881 schedule_work(&w->w); 1825 schedule_work(&w->w); 1882 } 1826 } 1883 1827 1884 out: 1828 out: 1885 return NOTIFY_DONE; 1829 return NOTIFY_DONE; 1886 } 1830 } 1887 1831 1888 void nfc_genl_data_init(struct nfc_genl_data 1832 void nfc_genl_data_init(struct nfc_genl_data *genl_data) 1889 { 1833 { 1890 genl_data->poll_req_portid = 0; 1834 genl_data->poll_req_portid = 0; 1891 mutex_init(&genl_data->genl_data_mute 1835 mutex_init(&genl_data->genl_data_mutex); 1892 } 1836 } 1893 1837 1894 void nfc_genl_data_exit(struct nfc_genl_data 1838 void nfc_genl_data_exit(struct nfc_genl_data *genl_data) 1895 { 1839 { 1896 mutex_destroy(&genl_data->genl_data_m 1840 mutex_destroy(&genl_data->genl_data_mutex); 1897 } 1841 } 1898 1842 1899 static struct notifier_block nl_notifier = { 1843 static struct notifier_block nl_notifier = { 1900 .notifier_call = nfc_genl_rcv_nl_eve 1844 .notifier_call = nfc_genl_rcv_nl_event, 1901 }; 1845 }; 1902 1846 1903 /** 1847 /** 1904 * nfc_genl_init() - Initialize netlink inter 1848 * nfc_genl_init() - Initialize netlink interface 1905 * 1849 * 1906 * This initialization function registers the 1850 * This initialization function registers the nfc netlink family. 1907 */ 1851 */ 1908 int __init nfc_genl_init(void) 1852 int __init nfc_genl_init(void) 1909 { 1853 { 1910 int rc; 1854 int rc; 1911 1855 1912 rc = genl_register_family(&nfc_genl_f 1856 rc = genl_register_family(&nfc_genl_family); 1913 if (rc) 1857 if (rc) 1914 return rc; 1858 return rc; 1915 1859 1916 netlink_register_notifier(&nl_notifie 1860 netlink_register_notifier(&nl_notifier); 1917 1861 1918 return 0; 1862 return 0; 1919 } 1863 } 1920 1864 1921 /** 1865 /** 1922 * nfc_genl_exit() - Deinitialize netlink int 1866 * nfc_genl_exit() - Deinitialize netlink interface 1923 * 1867 * 1924 * This exit function unregisters the nfc net 1868 * This exit function unregisters the nfc netlink family. 1925 */ 1869 */ 1926 void nfc_genl_exit(void) 1870 void nfc_genl_exit(void) 1927 { 1871 { 1928 netlink_unregister_notifier(&nl_notif 1872 netlink_unregister_notifier(&nl_notifier); 1929 genl_unregister_family(&nfc_genl_fami 1873 genl_unregister_family(&nfc_genl_family); 1930 } 1874 } 1931 1875
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.