OMAP3: SR: Remove redundant defines
[linux-ginger.git] / drivers / staging / otus / wrap_sec.c
blob0f780bacc598fbf5dd10a6b8c989ed4bb3b9eb4b
1 /*
2 * Copyright (c) 2007-2008 Atheros Communications Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 /* */
17 /* Module Name : wrap_sec.c */
18 /* */
19 /* Abstract */
20 /* This module contains wrapper functions for CENC. */
21 /* */
22 /* NOTES */
23 /* Platform dependent. */
24 /* */
25 /************************************************************************/
27 #include "oal_dt.h"
28 #include "usbdrv.h"
30 #include <linux/netlink.h>
31 #include <net/iw_handler.h>
33 #ifdef ZM_ENABLE_CENC
34 extern int zfLnxCencSendMsg(struct sock *netlink_sk, u_int8_t *msg, int len);
36 u16_t zfLnxCencAsocNotify(zdev_t* dev, u16_t* macAddr, u8_t* body, u16_t bodySize, u16_t port)
38 struct usbdrv_private *macp = (struct usbdrv_private *)dev->priv;
39 struct zydas_cenc_sta_info cenc_info;
40 //struct sock *netlink_sk;
41 u8_t ie_len;
42 int ii;
44 /* Create NETLINK socket */
45 //netlink_sk = netlink_kernel_create(NETLINK_USERSOCK, NULL);
47 if (macp->netlink_sk == NULL)
49 printk(KERN_ERR "NETLINK Socket is NULL\n");
50 return -1;
53 memset(&cenc_info, 0, sizeof(cenc_info));
55 //memcpy(cenc_info.gsn, vap->iv_cencmsk_keys.wk_txiv, ZM_CENC_IV_LEN);
56 zfiWlanQueryGSN(dev, cenc_info.gsn, port);
57 cenc_info.datalen += ZM_CENC_IV_LEN;
58 ie_len = body[1] + 2;
59 memcpy(cenc_info.wie, body, ie_len);
60 cenc_info.datalen += ie_len;
62 memcpy(cenc_info.sta_mac, macAddr, 6);
63 cenc_info.msg_type = ZM_CENC_WAI_REQUEST;
64 cenc_info.datalen += 6 + 2;
66 printk(KERN_ERR "===== zfwCencSendMsg, bodySize: %d =====\n", bodySize);
68 for(ii = 0; ii < bodySize; ii++)
70 printk(KERN_ERR "%02x ", body[ii]);
72 if ((ii & 0xf) == 0xf)
74 printk(KERN_ERR "\n");
78 zfLnxCencSendMsg(macp->netlink_sk, (u8_t *)&cenc_info, cenc_info.datalen+4);
80 /* Close NETLINK socket */
81 //sock_release(netlink_sk);
83 return 0;
85 #endif //ZM_ENABLE_CENC
87 u8_t zfwCencHandleBeaconProbrespon(zdev_t* dev, u8_t *pWIEc,
88 u8_t *pPeerSSIDc, u8_t *pPeerAddrc)
90 return 0;
93 u8_t zfwGetPktEncExemptionActionType(zdev_t* dev, zbuf_t* buf)
95 return ZM_ENCRYPTION_EXEMPT_NO_EXEMPTION;
98 void copyToIntTxBuffer(zdev_t* dev, zbuf_t* buf, u8_t* src,
99 u16_t offset, u16_t length)
101 u16_t i;
103 for(i=0; i<length;i++)
105 //zmw_tx_buf_writeb(dev, buf, offset+i, src[i]);
106 *(u8_t*)((u8_t*)buf->data+offset+i) = src[i];
110 u16_t zfwStaAddIeWpaRsn(zdev_t* dev, zbuf_t* buf, u16_t offset, u8_t frameType)
112 struct usbdrv_private *macp = dev->ml_priv;
113 //zm_msg1_mm(ZM_LV_0, "CWY - add wpaie content Length : ", macp->supIe[1]);
114 if (macp->supIe[1] != 0)
116 copyToIntTxBuffer(dev, buf, macp->supIe, offset, macp->supIe[1]+2);
117 //memcpy(buf->data[offset], macp->supIe, macp->supIe[1]+2);
118 offset += (macp->supIe[1]+2);
121 return offset;
124 /* Leave an empty line below to remove warning message on some compiler */