123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- /*
- * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /**
- * DOC: defines driver functions interfacing with linux kernel
- */
- #include <qdf_util.h>
- #include <wlan_objmgr_psoc_obj.h>
- #include <wlan_objmgr_global_obj.h>
- #include <wlan_objmgr_pdev_obj.h>
- #include <wlan_objmgr_vdev_obj.h>
- #include <wlan_objmgr_peer_obj.h>
- #include <wlan_p2p_public_struct.h>
- #include <wlan_p2p_ucfg_api.h>
- #include <wlan_policy_mgr_api.h>
- #include <wlan_utility.h>
- #include <wlan_osif_priv.h>
- #include "wlan_cfg80211.h"
- #include "wlan_cfg80211_p2p.h"
- #define MAX_NO_OF_2_4_CHANNELS 14
- #define MAX_OFFCHAN_TIME_FOR_DNBS 150
- /**
- * wlan_p2p_rx_callback() - Callback for rx mgmt frame
- * @user_data: pointer to soc object
- * @rx_frame: RX mgmt frame information
- *
- * This callback will be used to rx frames in os interface.
- *
- * Return: None
- */
- static void wlan_p2p_rx_callback(void *user_data,
- struct p2p_rx_mgmt_frame *rx_frame)
- {
- struct wlan_objmgr_psoc *psoc;
- struct wlan_objmgr_vdev *vdev;
- struct vdev_osif_priv *osif_priv;
- struct wireless_dev *wdev;
- osif_debug("user data:%pK, vdev id:%d, rssi:%d, buf:%pK, len:%d",
- user_data, rx_frame->vdev_id, rx_frame->rx_rssi,
- rx_frame->buf, rx_frame->frame_len);
- psoc = user_data;
- if (!psoc) {
- osif_err("psoc is null");
- return;
- }
- vdev = wlan_objmgr_get_vdev_by_id_from_psoc(psoc,
- rx_frame->vdev_id, WLAN_P2P_ID);
- if (!vdev) {
- osif_err("vdev is null");
- return;
- }
- osif_priv = wlan_vdev_get_ospriv(vdev);
- if (!osif_priv) {
- osif_err("osif_priv is null");
- goto fail;
- }
- wdev = osif_priv->wdev;
- if (!wdev) {
- osif_err("wdev is null");
- goto fail;
- }
- osif_debug("Indicate frame over nl80211, vdev id:%d, idx:%d",
- rx_frame->vdev_id, wdev->netdev->ifindex);
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
- cfg80211_rx_mgmt(wdev, rx_frame->rx_freq, rx_frame->rx_rssi * 100,
- rx_frame->buf, rx_frame->frame_len,
- NL80211_RXMGMT_FLAG_ANSWERED);
- #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0))
- cfg80211_rx_mgmt(wdev, rx_frame->rx_freq, rx_frame->rx_rssi * 100,
- rx_frame->buf, rx_frame->frame_len,
- NL80211_RXMGMT_FLAG_ANSWERED, GFP_ATOMIC);
- #else
- cfg80211_rx_mgmt(wdev, rx_frame->rx_freq, rx_frame->rx_rssi * 100,
- rx_frame->buf, rx_frame->frame_len, GFP_ATOMIC);
- #endif /* LINUX_VERSION_CODE */
- fail:
- wlan_objmgr_vdev_release_ref(vdev, WLAN_P2P_ID);
- }
- /**
- * wlan_p2p_action_tx_cnf_callback() - Callback for tx confirmation
- * @user_data: pointer to soc object
- * @tx_cnf: tx confirmation information
- *
- * This callback will be used to give tx mgmt frame confirmation to
- * os interface.
- *
- * Return: None
- */
- static void wlan_p2p_action_tx_cnf_callback(void *user_data,
- struct p2p_tx_cnf *tx_cnf)
- {
- struct wlan_objmgr_psoc *psoc;
- struct wlan_objmgr_vdev *vdev;
- struct vdev_osif_priv *osif_priv;
- struct wireless_dev *wdev;
- bool is_success;
- osif_debug("user data:%pK, action cookie:%llx, buf:%pK, len:%d, tx status:%d",
- user_data, tx_cnf->action_cookie, tx_cnf->buf,
- tx_cnf->buf_len, tx_cnf->status);
- psoc = user_data;
- if (!psoc) {
- osif_err("psoc is null");
- return;
- }
- vdev = wlan_objmgr_get_vdev_by_id_from_psoc(psoc,
- tx_cnf->vdev_id, WLAN_P2P_ID);
- if (!vdev) {
- osif_err("vdev is null");
- return;
- }
- osif_priv = wlan_vdev_get_ospriv(vdev);
- if (!osif_priv) {
- osif_err("osif_priv is null");
- goto fail;
- }
- wdev = osif_priv->wdev;
- if (!wdev) {
- osif_err("wireless dev is null");
- goto fail;
- }
- is_success = tx_cnf->status ? false : true;
- cfg80211_mgmt_tx_status(
- wdev,
- tx_cnf->action_cookie,
- tx_cnf->buf, tx_cnf->buf_len,
- is_success, GFP_KERNEL);
- fail:
- wlan_objmgr_vdev_release_ref(vdev, WLAN_P2P_ID);
- }
- #ifdef FEATURE_P2P_LISTEN_OFFLOAD
- /**
- * wlan_p2p_lo_event_callback() - Callback for listen offload event
- * @user_data: pointer to soc object
- * @p2p_lo_event: listen offload event information
- *
- * This callback will be used to give listen offload event to os interface.
- *
- * Return: None
- */
- static void wlan_p2p_lo_event_callback(void *user_data,
- struct p2p_lo_event *p2p_lo_event)
- {
- struct wlan_objmgr_psoc *psoc;
- struct wlan_objmgr_vdev *vdev;
- struct vdev_osif_priv *osif_priv;
- struct wireless_dev *wdev;
- struct sk_buff *vendor_event;
- osif_debug("user data:%pK, vdev id:%d, reason code:%d",
- user_data, p2p_lo_event->vdev_id,
- p2p_lo_event->reason_code);
- psoc = user_data;
- if (!psoc) {
- osif_err("psoc is null");
- return;
- }
- vdev = wlan_objmgr_get_vdev_by_id_from_psoc(psoc,
- p2p_lo_event->vdev_id, WLAN_P2P_ID);
- if (!vdev) {
- osif_err("vdev is null");
- return;
- }
- osif_priv = wlan_vdev_get_ospriv(vdev);
- if (!osif_priv) {
- osif_err("osif_priv is null");
- goto fail;
- }
- wdev = osif_priv->wdev;
- if (!wdev) {
- osif_err("wireless dev is null");
- goto fail;
- }
- vendor_event = cfg80211_vendor_event_alloc(wdev->wiphy, NULL,
- sizeof(uint32_t) + NLMSG_HDRLEN,
- QCA_NL80211_VENDOR_SUBCMD_P2P_LO_EVENT_INDEX,
- GFP_KERNEL);
- if (!vendor_event) {
- osif_err("cfg80211_vendor_event_alloc failed");
- goto fail;
- }
- if (nla_put_u32(vendor_event,
- QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_STOP_REASON,
- p2p_lo_event->reason_code)) {
- osif_err("nla put failed");
- kfree_skb(vendor_event);
- goto fail;
- }
- cfg80211_vendor_event(vendor_event, GFP_KERNEL);
- fail:
- wlan_objmgr_vdev_release_ref(vdev, WLAN_P2P_ID);
- }
- static inline void wlan_p2p_init_lo_event(struct p2p_start_param *start_param,
- struct wlan_objmgr_psoc *psoc)
- {
- start_param->lo_event_cb = wlan_p2p_lo_event_callback;
- start_param->lo_event_cb_data = psoc;
- }
- #else
- static inline void wlan_p2p_init_lo_event(struct p2p_start_param *start_param,
- struct wlan_objmgr_psoc *psoc)
- {
- }
- #endif /* FEATURE_P2P_LISTEN_OFFLOAD */
- /**
- * wlan_p2p_event_callback() - Callback for P2P event
- * @user_data: pointer to soc object
- * @p2p_event: p2p event information
- *
- * This callback will be used to give p2p event to os interface.
- *
- * Return: None
- */
- static void wlan_p2p_event_callback(void *user_data,
- struct p2p_event *p2p_event)
- {
- struct wlan_objmgr_psoc *psoc;
- struct wlan_objmgr_vdev *vdev;
- struct ieee80211_channel *chan;
- struct vdev_osif_priv *osif_priv;
- struct wireless_dev *wdev;
- osif_debug("user data:%pK, vdev id:%d, event type:%d",
- user_data, p2p_event->vdev_id, p2p_event->roc_event);
- psoc = user_data;
- if (!psoc) {
- osif_err("psoc is null");
- return;
- }
- vdev = wlan_objmgr_get_vdev_by_id_from_psoc(psoc,
- p2p_event->vdev_id, WLAN_P2P_ID);
- if (!vdev) {
- osif_err("vdev is null");
- return;
- }
- osif_priv = wlan_vdev_get_ospriv(vdev);
- if (!osif_priv) {
- osif_err("osif_priv is null");
- goto fail;
- }
- wdev = osif_priv->wdev;
- if (!wdev) {
- osif_err("wireless dev is null");
- goto fail;
- }
- chan = ieee80211_get_channel(wdev->wiphy,
- wlan_chan_to_freq(p2p_event->chan));
- if (!chan) {
- osif_err("channel conversion failed");
- goto fail;
- }
- if (p2p_event->roc_event == ROC_EVENT_READY_ON_CHAN) {
- cfg80211_ready_on_channel(wdev,
- p2p_event->cookie, chan,
- p2p_event->duration, GFP_KERNEL);
- } else if (p2p_event->roc_event == ROC_EVENT_COMPLETED) {
- cfg80211_remain_on_channel_expired(wdev,
- p2p_event->cookie, chan, GFP_KERNEL);
- } else {
- osif_err("Invalid p2p event");
- }
- fail:
- wlan_objmgr_vdev_release_ref(vdev, WLAN_P2P_ID);
- }
- QDF_STATUS p2p_psoc_enable(struct wlan_objmgr_psoc *psoc)
- {
- struct p2p_start_param start_param;
- if (!psoc) {
- osif_err("psoc null");
- return QDF_STATUS_E_INVAL;
- }
- start_param.rx_cb = wlan_p2p_rx_callback;
- start_param.rx_cb_data = psoc;
- start_param.event_cb = wlan_p2p_event_callback;
- start_param.event_cb_data = psoc;
- start_param.tx_cnf_cb = wlan_p2p_action_tx_cnf_callback;
- start_param.tx_cnf_cb_data = psoc;
- wlan_p2p_init_lo_event(&start_param, psoc);
- return ucfg_p2p_psoc_start(psoc, &start_param);
- }
- QDF_STATUS p2p_psoc_disable(struct wlan_objmgr_psoc *psoc)
- {
- if (!psoc) {
- osif_err("psoc null");
- return QDF_STATUS_E_INVAL;
- }
- return ucfg_p2p_psoc_stop(psoc);
- }
- int wlan_cfg80211_roc(struct wlan_objmgr_vdev *vdev,
- struct ieee80211_channel *chan, uint32_t duration,
- uint64_t *cookie)
- {
- struct p2p_roc_req roc_req = {0};
- struct wlan_objmgr_psoc *psoc;
- uint8_t vdev_id;
- bool ok;
- int ret;
- if (!vdev) {
- osif_err("invalid vdev object");
- return -EINVAL;
- }
- if (!chan) {
- osif_err("invalid channel");
- return -EINVAL;
- }
- psoc = wlan_vdev_get_psoc(vdev);
- vdev_id = wlan_vdev_get_id(vdev);
- if (!psoc) {
- osif_err("psoc handle is NULL");
- return -EINVAL;
- }
- roc_req.chan = (uint32_t)wlan_freq_to_chan(chan->center_freq);
- roc_req.duration = duration;
- roc_req.vdev_id = (uint32_t)vdev_id;
- ret = policy_mgr_is_chan_ok_for_dnbs(psoc, roc_req.chan, &ok);
- if (QDF_IS_STATUS_ERROR(ret)) {
- osif_err("policy_mgr_is_chan_ok_for_dnbs():ret:%d",
- ret);
- return -EINVAL;
- }
- if (!ok) {
- osif_err("channel%d not OK for DNBS", roc_req.chan);
- return -EINVAL;
- }
- return qdf_status_to_os_return(
- ucfg_p2p_roc_req(psoc, &roc_req, cookie));
- }
- int wlan_cfg80211_cancel_roc(struct wlan_objmgr_vdev *vdev,
- uint64_t cookie)
- {
- struct wlan_objmgr_psoc *psoc;
- if (!vdev) {
- osif_err("invalid vdev object");
- return -EINVAL;
- }
- psoc = wlan_vdev_get_psoc(vdev);
- if (!psoc) {
- osif_err("psoc handle is NULL");
- return -EINVAL;
- }
- return qdf_status_to_os_return(
- ucfg_p2p_roc_cancel_req(psoc, cookie));
- }
- int wlan_cfg80211_mgmt_tx(struct wlan_objmgr_vdev *vdev,
- struct ieee80211_channel *chan, bool offchan,
- unsigned int wait,
- const uint8_t *buf, uint32_t len, bool no_cck,
- bool dont_wait_for_ack, uint64_t *cookie)
- {
- struct p2p_mgmt_tx mgmt_tx = {0};
- struct wlan_objmgr_psoc *psoc;
- uint8_t vdev_id;
- uint32_t channel = 0;
- if (!vdev) {
- osif_err("invalid vdev object");
- return -EINVAL;
- }
- if (chan)
- channel = (uint32_t)wlan_freq_to_chan(chan->center_freq);
- else
- osif_debug("NULL chan, set channel to 0");
- psoc = wlan_vdev_get_psoc(vdev);
- vdev_id = wlan_vdev_get_id(vdev);
- if (!psoc) {
- osif_err("psoc handle is NULL");
- return -EINVAL;
- }
- /**
- * When offchannel time is more than MAX_OFFCHAN_TIME_FOR_DNBS,
- * allow offchannel only if Do_Not_Switch_Channel is not set.
- */
- if (wait > MAX_OFFCHAN_TIME_FOR_DNBS) {
- int ret;
- bool ok;
- ret = policy_mgr_is_chan_ok_for_dnbs(psoc, channel, &ok);
- if (QDF_IS_STATUS_ERROR(ret)) {
- osif_err("policy_mgr_is_chan_ok_for_dnbs():ret:%d",
- ret);
- return -EINVAL;
- }
- if (!ok) {
- osif_err("Rejecting mgmt_tx for channel:%d as DNSC is set",
- channel);
- return -EINVAL;
- }
- }
- mgmt_tx.vdev_id = (uint32_t)vdev_id;
- mgmt_tx.chan = channel;
- mgmt_tx.wait = wait;
- mgmt_tx.len = len;
- mgmt_tx.no_cck = (uint32_t)no_cck;
- mgmt_tx.dont_wait_for_ack = (uint32_t)dont_wait_for_ack;
- mgmt_tx.off_chan = (uint32_t)offchan;
- mgmt_tx.buf = buf;
- return qdf_status_to_os_return(
- ucfg_p2p_mgmt_tx(psoc, &mgmt_tx, cookie));
- }
- int wlan_cfg80211_mgmt_tx_cancel(struct wlan_objmgr_vdev *vdev,
- uint64_t cookie)
- {
- struct wlan_objmgr_psoc *psoc;
- if (!vdev) {
- osif_err("invalid vdev object");
- return -EINVAL;
- }
- psoc = wlan_vdev_get_psoc(vdev);
- if (!psoc) {
- osif_err("psoc handle is NULL");
- return -EINVAL;
- }
- return qdf_status_to_os_return(
- ucfg_p2p_mgmt_tx_cancel(psoc, vdev, cookie));
- }
|