ipa_intf.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/fs.h>
  6. #include <linux/sched.h>
  7. #include <linux/sched/signal.h>
  8. #include "ipa_i.h"
  9. #include <linux/msm_ipa.h>
  10. struct ipa3_intf {
  11. char name[IPA_RESOURCE_NAME_MAX];
  12. struct list_head link;
  13. u32 num_tx_props;
  14. u32 num_rx_props;
  15. u32 num_ext_props;
  16. struct ipa_ioc_tx_intf_prop *tx;
  17. struct ipa_ioc_rx_intf_prop *rx;
  18. struct ipa_ioc_ext_intf_prop *ext;
  19. enum ipa_client_type excp_pipe;
  20. };
  21. struct ipa3_push_msg {
  22. struct ipa_msg_meta meta;
  23. ipa_msg_free_fn callback;
  24. void *buff;
  25. struct list_head link;
  26. };
  27. struct ipa3_pull_msg {
  28. struct ipa_msg_meta meta;
  29. ipa_msg_pull_fn callback;
  30. struct list_head link;
  31. };
  32. /**
  33. * ipa3_register_intf() - register "logical" interface
  34. * @name: [in] interface name
  35. * @tx: [in] TX properties of the interface
  36. * @rx: [in] RX properties of the interface
  37. *
  38. * Register an interface and its tx and rx properties, this allows
  39. * configuration of rules from user-space
  40. *
  41. * Returns: 0 on success, negative on failure
  42. *
  43. * Note: Should not be called from atomic context
  44. */
  45. int ipa3_register_intf(const char *name, const struct ipa_tx_intf *tx,
  46. const struct ipa_rx_intf *rx)
  47. {
  48. return ipa3_register_intf_ext(name, tx, rx, NULL);
  49. }
  50. /**
  51. * ipa3_register_intf_ext() - register "logical" interface which has only
  52. * extended properties
  53. * @name: [in] interface name
  54. * @tx: [in] TX properties of the interface
  55. * @rx: [in] RX properties of the interface
  56. * @ext: [in] EXT properties of the interface
  57. *
  58. * Register an interface and its tx, rx and ext properties, this allows
  59. * configuration of rules from user-space
  60. *
  61. * Returns: 0 on success, negative on failure
  62. *
  63. * Note: Should not be called from atomic context
  64. */
  65. int ipa3_register_intf_ext(const char *name, const struct ipa_tx_intf *tx,
  66. const struct ipa_rx_intf *rx,
  67. const struct ipa_ext_intf *ext)
  68. {
  69. struct ipa3_intf *intf;
  70. u32 len;
  71. if (name == NULL || (tx == NULL && rx == NULL && ext == NULL)) {
  72. IPAERR_RL("invalid params name=%pK tx=%pK rx=%pK ext=%pK\n",
  73. name, tx, rx, ext);
  74. return -EINVAL;
  75. }
  76. if (tx && tx->num_props > IPA_NUM_PROPS_MAX) {
  77. IPAERR_RL("invalid tx num_props=%d max=%d\n", tx->num_props,
  78. IPA_NUM_PROPS_MAX);
  79. return -EINVAL;
  80. }
  81. if (rx && rx->num_props > IPA_NUM_PROPS_MAX) {
  82. IPAERR_RL("invalid rx num_props=%d max=%d\n", rx->num_props,
  83. IPA_NUM_PROPS_MAX);
  84. return -EINVAL;
  85. }
  86. if (ext && ext->num_props > IPA_NUM_PROPS_MAX) {
  87. IPAERR_RL("invalid ext num_props=%d max=%d\n", ext->num_props,
  88. IPA_NUM_PROPS_MAX);
  89. return -EINVAL;
  90. }
  91. len = sizeof(struct ipa3_intf);
  92. intf = kzalloc(len, GFP_KERNEL);
  93. if (intf == NULL)
  94. return -ENOMEM;
  95. strlcpy(intf->name, name, IPA_RESOURCE_NAME_MAX);
  96. if (tx) {
  97. intf->num_tx_props = tx->num_props;
  98. len = tx->num_props * sizeof(struct ipa_ioc_tx_intf_prop);
  99. intf->tx = kmemdup(tx->prop, len, GFP_KERNEL);
  100. if (intf->tx == NULL) {
  101. kfree(intf);
  102. return -ENOMEM;
  103. }
  104. }
  105. if (rx) {
  106. intf->num_rx_props = rx->num_props;
  107. len = rx->num_props * sizeof(struct ipa_ioc_rx_intf_prop);
  108. intf->rx = kmemdup(rx->prop, len, GFP_KERNEL);
  109. if (intf->rx == NULL) {
  110. kfree(intf->tx);
  111. kfree(intf);
  112. return -ENOMEM;
  113. }
  114. memcpy(intf->rx, rx->prop, len);
  115. }
  116. if (ext) {
  117. intf->num_ext_props = ext->num_props;
  118. len = ext->num_props * sizeof(struct ipa_ioc_ext_intf_prop);
  119. intf->ext = kmemdup(ext->prop, len, GFP_KERNEL);
  120. if (intf->ext == NULL) {
  121. kfree(intf->rx);
  122. kfree(intf->tx);
  123. kfree(intf);
  124. return -ENOMEM;
  125. }
  126. memcpy(intf->ext, ext->prop, len);
  127. }
  128. if (ext && ext->excp_pipe_valid)
  129. intf->excp_pipe = ext->excp_pipe;
  130. else
  131. intf->excp_pipe = IPA_CLIENT_APPS_LAN_CONS;
  132. mutex_lock(&ipa3_ctx->lock);
  133. list_add_tail(&intf->link, &ipa3_ctx->intf_list);
  134. mutex_unlock(&ipa3_ctx->lock);
  135. return 0;
  136. }
  137. /**
  138. * ipa3_deregister_intf() - de-register previously registered logical interface
  139. * @name: [in] interface name
  140. *
  141. * De-register a previously registered interface
  142. *
  143. * Returns: 0 on success, negative on failure
  144. *
  145. * Note: Should not be called from atomic context
  146. */
  147. int ipa3_deregister_intf(const char *name)
  148. {
  149. struct ipa3_intf *entry;
  150. struct ipa3_intf *next;
  151. int result = -EINVAL;
  152. if ((name == NULL) ||
  153. (strnlen(name, IPA_RESOURCE_NAME_MAX) == IPA_RESOURCE_NAME_MAX)) {
  154. IPAERR_RL("invalid param name=%s\n", name);
  155. return result;
  156. }
  157. mutex_lock(&ipa3_ctx->lock);
  158. list_for_each_entry_safe(entry, next, &ipa3_ctx->intf_list, link) {
  159. if (!strcmp(entry->name, name)) {
  160. list_del(&entry->link);
  161. kfree(entry->ext);
  162. kfree(entry->rx);
  163. kfree(entry->tx);
  164. kfree(entry);
  165. result = 0;
  166. break;
  167. }
  168. }
  169. mutex_unlock(&ipa3_ctx->lock);
  170. return result;
  171. }
  172. /**
  173. * ipa3_query_intf() - query logical interface properties
  174. * @lookup: [inout] interface name and number of properties
  175. *
  176. * Obtain the handle and number of tx and rx properties for the named
  177. * interface, used as part of querying the tx and rx properties for
  178. * configuration of various rules from user-space
  179. *
  180. * Returns: 0 on success, negative on failure
  181. *
  182. * Note: Should not be called from atomic context
  183. */
  184. int ipa3_query_intf(struct ipa_ioc_query_intf *lookup)
  185. {
  186. struct ipa3_intf *entry;
  187. int result = -EINVAL;
  188. if (lookup == NULL) {
  189. IPAERR_RL("invalid param lookup=%pK\n", lookup);
  190. return result;
  191. }
  192. lookup->name[IPA_RESOURCE_NAME_MAX-1] = '\0';
  193. if (strnlen(lookup->name, IPA_RESOURCE_NAME_MAX) ==
  194. IPA_RESOURCE_NAME_MAX) {
  195. IPAERR_RL("Interface name too long. (%s)\n", lookup->name);
  196. return result;
  197. }
  198. mutex_lock(&ipa3_ctx->lock);
  199. list_for_each_entry(entry, &ipa3_ctx->intf_list, link) {
  200. if (!strcmp(entry->name, lookup->name)) {
  201. lookup->num_tx_props = entry->num_tx_props;
  202. lookup->num_rx_props = entry->num_rx_props;
  203. lookup->num_ext_props = entry->num_ext_props;
  204. lookup->excp_pipe = entry->excp_pipe;
  205. result = 0;
  206. break;
  207. }
  208. }
  209. mutex_unlock(&ipa3_ctx->lock);
  210. return result;
  211. }
  212. /**
  213. * ipa3_query_intf_tx_props() - qeury TX props of an interface
  214. * @tx: [inout] interface tx attributes
  215. *
  216. * Obtain the tx properties for the specified interface
  217. *
  218. * Returns: 0 on success, negative on failure
  219. *
  220. * Note: Should not be called from atomic context
  221. */
  222. int ipa3_query_intf_tx_props(struct ipa_ioc_query_intf_tx_props *tx)
  223. {
  224. struct ipa3_intf *entry;
  225. int result = -EINVAL;
  226. if (tx == NULL) {
  227. IPAERR_RL("null args: tx\n");
  228. return result;
  229. }
  230. tx->name[IPA_RESOURCE_NAME_MAX-1] = '\0';
  231. if (strnlen(tx->name, IPA_RESOURCE_NAME_MAX) == IPA_RESOURCE_NAME_MAX) {
  232. IPAERR_RL("Interface name too long. (%s)\n", tx->name);
  233. return result;
  234. }
  235. mutex_lock(&ipa3_ctx->lock);
  236. list_for_each_entry(entry, &ipa3_ctx->intf_list, link) {
  237. if (!strcmp(entry->name, tx->name)) {
  238. /* add the entry check */
  239. if (entry->num_tx_props != tx->num_tx_props) {
  240. IPAERR("invalid entry number(%u %u)\n",
  241. entry->num_tx_props,
  242. tx->num_tx_props);
  243. mutex_unlock(&ipa3_ctx->lock);
  244. return result;
  245. }
  246. memcpy(tx->tx, entry->tx, entry->num_tx_props *
  247. sizeof(struct ipa_ioc_tx_intf_prop));
  248. result = 0;
  249. break;
  250. }
  251. }
  252. mutex_unlock(&ipa3_ctx->lock);
  253. return result;
  254. }
  255. /**
  256. * ipa3_query_intf_rx_props() - qeury RX props of an interface
  257. * @rx: [inout] interface rx attributes
  258. *
  259. * Obtain the rx properties for the specified interface
  260. *
  261. * Returns: 0 on success, negative on failure
  262. *
  263. * Note: Should not be called from atomic context
  264. */
  265. int ipa3_query_intf_rx_props(struct ipa_ioc_query_intf_rx_props *rx)
  266. {
  267. struct ipa3_intf *entry;
  268. int result = -EINVAL;
  269. if (rx == NULL) {
  270. IPAERR_RL("null args: rx\n");
  271. return result;
  272. }
  273. rx->name[IPA_RESOURCE_NAME_MAX-1] = '\0';
  274. if (strnlen(rx->name, IPA_RESOURCE_NAME_MAX) == IPA_RESOURCE_NAME_MAX) {
  275. IPAERR_RL("Interface name too long. (%s)\n", rx->name);
  276. return result;
  277. }
  278. mutex_lock(&ipa3_ctx->lock);
  279. list_for_each_entry(entry, &ipa3_ctx->intf_list, link) {
  280. if (!strcmp(entry->name, rx->name)) {
  281. /* add the entry check */
  282. if (entry->num_rx_props != rx->num_rx_props) {
  283. IPAERR("invalid entry number(%u %u)\n",
  284. entry->num_rx_props,
  285. rx->num_rx_props);
  286. mutex_unlock(&ipa3_ctx->lock);
  287. return result;
  288. }
  289. memcpy(rx->rx, entry->rx, entry->num_rx_props *
  290. sizeof(struct ipa_ioc_rx_intf_prop));
  291. result = 0;
  292. break;
  293. }
  294. }
  295. mutex_unlock(&ipa3_ctx->lock);
  296. return result;
  297. }
  298. /**
  299. * ipa3_query_intf_ext_props() - qeury EXT props of an interface
  300. * @ext: [inout] interface ext attributes
  301. *
  302. * Obtain the ext properties for the specified interface
  303. *
  304. * Returns: 0 on success, negative on failure
  305. *
  306. * Note: Should not be called from atomic context
  307. */
  308. int ipa3_query_intf_ext_props(struct ipa_ioc_query_intf_ext_props *ext)
  309. {
  310. struct ipa3_intf *entry;
  311. int result = -EINVAL;
  312. if (ext == NULL) {
  313. IPAERR_RL("invalid param ext=%pK\n", ext);
  314. return result;
  315. }
  316. mutex_lock(&ipa3_ctx->lock);
  317. list_for_each_entry(entry, &ipa3_ctx->intf_list, link) {
  318. if (!strcmp(entry->name, ext->name)) {
  319. /* add the entry check */
  320. if (entry->num_ext_props != ext->num_ext_props) {
  321. IPAERR("invalid entry number(%u %u)\n",
  322. entry->num_ext_props,
  323. ext->num_ext_props);
  324. mutex_unlock(&ipa3_ctx->lock);
  325. return result;
  326. }
  327. memcpy(ext->ext, entry->ext, entry->num_ext_props *
  328. sizeof(struct ipa_ioc_ext_intf_prop));
  329. result = 0;
  330. break;
  331. }
  332. }
  333. mutex_unlock(&ipa3_ctx->lock);
  334. return result;
  335. }
  336. static void ipa3_send_msg_free(void *buff, u32 len, u32 type)
  337. {
  338. kfree(buff);
  339. }
  340. static int wlan_msg_process(struct ipa_msg_meta *meta, void *buff)
  341. {
  342. struct ipa3_push_msg *msg_dup;
  343. struct ipa_wlan_msg_ex *event_ex_cur_con = NULL;
  344. struct ipa_wlan_msg_ex *event_ex_list = NULL;
  345. struct ipa_wlan_msg *event_ex_cur_discon = NULL;
  346. void *data_dup = NULL;
  347. struct ipa3_push_msg *entry;
  348. struct ipa3_push_msg *next;
  349. int cnt = 0, total = 0, max = 0;
  350. uint8_t mac[IPA_MAC_ADDR_SIZE];
  351. uint8_t mac2[IPA_MAC_ADDR_SIZE];
  352. if (!buff)
  353. return -EINVAL;
  354. if (meta->msg_type == WLAN_CLIENT_CONNECT_EX) {
  355. /* debug print */
  356. event_ex_cur_con = buff;
  357. for (cnt = 0; cnt < event_ex_cur_con->num_of_attribs; cnt++) {
  358. if (event_ex_cur_con->attribs[cnt].attrib_type ==
  359. WLAN_HDR_ATTRIB_MAC_ADDR) {
  360. IPADBG("%02x:%02x:%02x:%02x:%02x:%02x,(%d)\n",
  361. event_ex_cur_con->attribs[cnt].u.mac_addr[0],
  362. event_ex_cur_con->attribs[cnt].u.mac_addr[1],
  363. event_ex_cur_con->attribs[cnt].u.mac_addr[2],
  364. event_ex_cur_con->attribs[cnt].u.mac_addr[3],
  365. event_ex_cur_con->attribs[cnt].u.mac_addr[4],
  366. event_ex_cur_con->attribs[cnt].u.mac_addr[5],
  367. meta->msg_type);
  368. }
  369. }
  370. mutex_lock(&ipa3_ctx->msg_wlan_client_lock);
  371. msg_dup = kzalloc(sizeof(*msg_dup), GFP_KERNEL);
  372. if (msg_dup == NULL) {
  373. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  374. return -ENOMEM;
  375. }
  376. msg_dup->meta = *meta;
  377. if (meta->msg_len > 0 && buff) {
  378. data_dup = kmemdup(buff, meta->msg_len, GFP_KERNEL);
  379. if (data_dup == NULL) {
  380. kfree(msg_dup);
  381. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  382. return -ENOMEM;
  383. }
  384. memcpy(data_dup, buff, meta->msg_len);
  385. msg_dup->buff = data_dup;
  386. msg_dup->callback = ipa3_send_msg_free;
  387. } else {
  388. IPAERR("msg_len %d\n", meta->msg_len);
  389. kfree(msg_dup);
  390. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  391. return -ENOMEM;
  392. }
  393. list_add_tail(&msg_dup->link, &ipa3_ctx->msg_wlan_client_list);
  394. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  395. }
  396. /* remove the cache */
  397. if (meta->msg_type == WLAN_CLIENT_DISCONNECT) {
  398. /* debug print */
  399. event_ex_cur_discon = buff;
  400. IPADBG("Mac %pM, msg %d\n",
  401. event_ex_cur_discon->mac_addr,
  402. meta->msg_type);
  403. memcpy(mac2,
  404. event_ex_cur_discon->mac_addr,
  405. sizeof(mac2));
  406. mutex_lock(&ipa3_ctx->msg_wlan_client_lock);
  407. list_for_each_entry_safe(entry, next,
  408. &ipa3_ctx->msg_wlan_client_list,
  409. link) {
  410. event_ex_list = entry->buff;
  411. max = event_ex_list->num_of_attribs;
  412. for (cnt = 0; cnt < max; cnt++) {
  413. memcpy(mac,
  414. event_ex_list->attribs[cnt].u.mac_addr,
  415. sizeof(mac));
  416. if (event_ex_list->attribs[cnt].attrib_type ==
  417. WLAN_HDR_ATTRIB_MAC_ADDR) {
  418. pr_debug("%pM\n", mac);
  419. /* compare to delete one*/
  420. if (memcmp(mac2, mac,
  421. sizeof(mac)) == 0) {
  422. IPADBG("clean %d\n", total);
  423. list_del(&entry->link);
  424. kfree(entry);
  425. break;
  426. }
  427. }
  428. }
  429. total++;
  430. }
  431. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  432. }
  433. return 0;
  434. }
  435. /**
  436. * ipa3_send_msg() - Send "message" from kernel client to IPA driver
  437. * @meta: [in] message meta-data
  438. * @buff: [in] the payload for message
  439. * @callback: [in] free callback
  440. *
  441. * Client supplies the message meta-data and payload which IPA driver buffers
  442. * till read by user-space. After read from user space IPA driver invokes the
  443. * callback supplied to free the message payload. Client must not touch/free
  444. * the message payload after calling this API.
  445. *
  446. * Returns: 0 on success, negative on failure
  447. *
  448. * Note: Should not be called from atomic context
  449. */
  450. int ipa3_send_msg(struct ipa_msg_meta *meta, void *buff,
  451. ipa_msg_free_fn callback)
  452. {
  453. struct ipa3_push_msg *msg;
  454. void *data = NULL;
  455. if (meta == NULL || (buff == NULL && callback != NULL) ||
  456. (buff != NULL && callback == NULL)) {
  457. IPAERR_RL("invalid param meta=%pK buff=%pK, callback=%pK\n",
  458. meta, buff, callback);
  459. return -EINVAL;
  460. }
  461. if (meta->msg_type >= IPA_EVENT_MAX_NUM) {
  462. IPAERR_RL("unsupported message type %d\n", meta->msg_type);
  463. return -EINVAL;
  464. }
  465. msg = kzalloc(sizeof(struct ipa3_push_msg), GFP_KERNEL);
  466. if (msg == NULL)
  467. return -ENOMEM;
  468. msg->meta = *meta;
  469. if (meta->msg_len > 0 && buff) {
  470. data = kmemdup(buff, meta->msg_len, GFP_KERNEL);
  471. if (data == NULL) {
  472. kfree(msg);
  473. return -ENOMEM;
  474. }
  475. msg->buff = data;
  476. msg->callback = ipa3_send_msg_free;
  477. }
  478. mutex_lock(&ipa3_ctx->msg_lock);
  479. list_add_tail(&msg->link, &ipa3_ctx->msg_list);
  480. /* support for softap client event cache */
  481. if (wlan_msg_process(meta, buff))
  482. IPAERR_RL("wlan_msg_process failed\n");
  483. /* unlock only after process */
  484. mutex_unlock(&ipa3_ctx->msg_lock);
  485. IPA_STATS_INC_CNT(ipa3_ctx->stats.msg_w[meta->msg_type]);
  486. wake_up(&ipa3_ctx->msg_waitq);
  487. if (buff)
  488. callback(buff, meta->msg_len, meta->msg_type);
  489. return 0;
  490. }
  491. /**
  492. * ipa3_resend_wlan_msg() - Resend cached "message" to IPACM
  493. *
  494. * resend wlan client connect events to user-space
  495. *
  496. * Returns: 0 on success, negative on failure
  497. *
  498. * Note: Should not be called from atomic context
  499. */
  500. int ipa3_resend_wlan_msg(void)
  501. {
  502. struct ipa_wlan_msg_ex *event_ex_list = NULL;
  503. struct ipa3_push_msg *entry;
  504. struct ipa3_push_msg *next;
  505. int cnt = 0, total = 0;
  506. struct ipa3_push_msg *msg;
  507. void *data = NULL;
  508. IPADBG("\n");
  509. mutex_lock(&ipa3_ctx->msg_wlan_client_lock);
  510. list_for_each_entry_safe(entry, next, &ipa3_ctx->msg_wlan_client_list,
  511. link) {
  512. event_ex_list = entry->buff;
  513. for (cnt = 0; cnt < event_ex_list->num_of_attribs; cnt++) {
  514. if (event_ex_list->attribs[cnt].attrib_type ==
  515. WLAN_HDR_ATTRIB_MAC_ADDR) {
  516. IPADBG("%d-Mac %pM\n", total,
  517. event_ex_list->attribs[cnt].u.mac_addr);
  518. }
  519. }
  520. msg = kzalloc(sizeof(*msg), GFP_KERNEL);
  521. if (msg == NULL) {
  522. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  523. return -ENOMEM;
  524. }
  525. msg->meta = entry->meta;
  526. data = kmemdup(entry->buff, entry->meta.msg_len, GFP_KERNEL);
  527. if (data == NULL) {
  528. kfree(msg);
  529. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  530. return -ENOMEM;
  531. }
  532. msg->buff = data;
  533. msg->callback = ipa3_send_msg_free;
  534. mutex_lock(&ipa3_ctx->msg_lock);
  535. list_add_tail(&msg->link, &ipa3_ctx->msg_list);
  536. mutex_unlock(&ipa3_ctx->msg_lock);
  537. wake_up(&ipa3_ctx->msg_waitq);
  538. total++;
  539. }
  540. mutex_unlock(&ipa3_ctx->msg_wlan_client_lock);
  541. return 0;
  542. }
  543. /**
  544. * ipa3_register_pull_msg() - register pull message type
  545. * @meta: [in] message meta-data
  546. * @callback: [in] pull callback
  547. *
  548. * Register message callback by kernel client with IPA driver for IPA driver to
  549. * pull message on-demand.
  550. *
  551. * Returns: 0 on success, negative on failure
  552. *
  553. * Note: Should not be called from atomic context
  554. */
  555. int ipa3_register_pull_msg(struct ipa_msg_meta *meta, ipa_msg_pull_fn callback)
  556. {
  557. struct ipa3_pull_msg *msg;
  558. if (meta == NULL || callback == NULL) {
  559. IPAERR_RL("invalid param meta=%pK callback=%pK\n",
  560. meta, callback);
  561. return -EINVAL;
  562. }
  563. msg = kzalloc(sizeof(struct ipa3_pull_msg), GFP_KERNEL);
  564. if (msg == NULL)
  565. return -ENOMEM;
  566. msg->meta = *meta;
  567. msg->callback = callback;
  568. mutex_lock(&ipa3_ctx->msg_lock);
  569. list_add_tail(&msg->link, &ipa3_ctx->pull_msg_list);
  570. mutex_unlock(&ipa3_ctx->msg_lock);
  571. return 0;
  572. }
  573. /**
  574. * ipa3_deregister_pull_msg() - De-register pull message type
  575. * @meta: [in] message meta-data
  576. *
  577. * De-register "message" by kernel client from IPA driver
  578. *
  579. * Returns: 0 on success, negative on failure
  580. *
  581. * Note: Should not be called from atomic context
  582. */
  583. int ipa3_deregister_pull_msg(struct ipa_msg_meta *meta)
  584. {
  585. struct ipa3_pull_msg *entry;
  586. struct ipa3_pull_msg *next;
  587. int result = -EINVAL;
  588. if (meta == NULL) {
  589. IPAERR_RL("null arg: meta\n");
  590. return result;
  591. }
  592. mutex_lock(&ipa3_ctx->msg_lock);
  593. list_for_each_entry_safe(entry, next, &ipa3_ctx->pull_msg_list, link) {
  594. if (entry->meta.msg_len == meta->msg_len &&
  595. entry->meta.msg_type == meta->msg_type) {
  596. list_del(&entry->link);
  597. kfree(entry);
  598. result = 0;
  599. break;
  600. }
  601. }
  602. mutex_unlock(&ipa3_ctx->msg_lock);
  603. return result;
  604. }
  605. /**
  606. * ipa3_read() - read message from IPA device
  607. * @filp: [in] file pointer
  608. * @buf: [out] buffer to read into
  609. * @count: [in] size of above buffer
  610. * @f_pos: [inout] file position
  611. *
  612. * Uer-space should continually read from /dev/ipa, read wll block when there
  613. * are no messages to read. Upon return, user-space should read the ipa_msg_meta
  614. * from the start of the buffer to know what type of message was read and its
  615. * length in the remainder of the buffer. Buffer supplied must be big enough to
  616. * hold the message meta-data and the largest defined message type
  617. *
  618. * Returns: how many bytes copied to buffer
  619. *
  620. * Note: Should not be called from atomic context
  621. */
  622. ssize_t ipa3_read(struct file *filp, char __user *buf, size_t count,
  623. loff_t *f_pos)
  624. {
  625. char __user *start;
  626. struct ipa3_push_msg *msg = NULL;
  627. int ret;
  628. DEFINE_WAIT_FUNC(wait, woken_wake_function);
  629. int locked;
  630. start = buf;
  631. add_wait_queue(&ipa3_ctx->msg_waitq, &wait);
  632. while (1) {
  633. mutex_lock(&ipa3_ctx->msg_lock);
  634. locked = 1;
  635. if (!list_empty(&ipa3_ctx->msg_list)) {
  636. msg = list_first_entry(&ipa3_ctx->msg_list,
  637. struct ipa3_push_msg, link);
  638. list_del(&msg->link);
  639. }
  640. IPADBG_LOW("msg=%pK\n", msg);
  641. if (msg) {
  642. locked = 0;
  643. mutex_unlock(&ipa3_ctx->msg_lock);
  644. if (copy_to_user(buf, &msg->meta,
  645. sizeof(struct ipa_msg_meta))) {
  646. ret = -EFAULT;
  647. kfree(msg);
  648. msg = NULL;
  649. break;
  650. }
  651. buf += sizeof(struct ipa_msg_meta);
  652. count -= sizeof(struct ipa_msg_meta);
  653. if (msg->buff) {
  654. if (copy_to_user(buf, msg->buff,
  655. msg->meta.msg_len)) {
  656. ret = -EFAULT;
  657. kfree(msg);
  658. msg = NULL;
  659. break;
  660. }
  661. buf += msg->meta.msg_len;
  662. count -= msg->meta.msg_len;
  663. msg->callback(msg->buff, msg->meta.msg_len,
  664. msg->meta.msg_type);
  665. }
  666. IPA_STATS_INC_CNT(
  667. ipa3_ctx->stats.msg_r[msg->meta.msg_type]);
  668. kfree(msg);
  669. msg = NULL;
  670. }
  671. ret = -EAGAIN;
  672. if (filp->f_flags & O_NONBLOCK)
  673. break;
  674. ret = -EINTR;
  675. if (signal_pending(current))
  676. break;
  677. if (start != buf)
  678. break;
  679. locked = 0;
  680. mutex_unlock(&ipa3_ctx->msg_lock);
  681. wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
  682. }
  683. remove_wait_queue(&ipa3_ctx->msg_waitq, &wait);
  684. if (start != buf && ret != -EFAULT)
  685. ret = buf - start;
  686. if (locked)
  687. mutex_unlock(&ipa3_ctx->msg_lock);
  688. return ret;
  689. }
  690. /**
  691. * ipa3_pull_msg() - pull the specified message from client
  692. * @meta: [in] message meta-data
  693. * @buf: [out] buffer to read into
  694. * @count: [in] size of above buffer
  695. *
  696. * Populate the supplied buffer with the pull message which is fetched
  697. * from client, the message must have previously been registered with
  698. * the IPA driver
  699. *
  700. * Returns: how many bytes copied to buffer
  701. *
  702. * Note: Should not be called from atomic context
  703. */
  704. int ipa3_pull_msg(struct ipa_msg_meta *meta, char *buff, size_t count)
  705. {
  706. struct ipa3_pull_msg *entry;
  707. int result = -EINVAL;
  708. if (meta == NULL || buff == NULL || !count) {
  709. IPAERR_RL("invalid param name=%pK buff=%pK count=%zu\n",
  710. meta, buff, count);
  711. return result;
  712. }
  713. mutex_lock(&ipa3_ctx->msg_lock);
  714. list_for_each_entry(entry, &ipa3_ctx->pull_msg_list, link) {
  715. if (entry->meta.msg_len == meta->msg_len &&
  716. entry->meta.msg_type == meta->msg_type) {
  717. result = entry->callback(buff, count, meta->msg_type);
  718. break;
  719. }
  720. }
  721. mutex_unlock(&ipa3_ctx->msg_lock);
  722. return result;
  723. }