2008-09-01 15:59:54 +02:00
|
|
|
/****************************************************************************
|
2014-06-29 02:07:02 +02:00
|
|
|
* net/devif/devif_callback.c
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
2015-05-28 20:01:38 +02:00
|
|
|
* Copyright (C) 2008-2009, 2015 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#if defined(CONFIG_NET)
|
|
|
|
|
2009-12-15 15:53:45 +01:00
|
|
|
#include <stdint.h>
|
2008-09-01 15:59:54 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <debug.h>
|
2014-07-22 02:46:47 +02:00
|
|
|
#include <assert.h>
|
2008-09-01 15:59:54 +02:00
|
|
|
|
2014-06-24 16:53:28 +02:00
|
|
|
#include <nuttx/net/netconfig.h>
|
2014-07-05 00:38:51 +02:00
|
|
|
#include <nuttx/net/net.h>
|
2014-06-24 17:28:44 +02:00
|
|
|
#include <nuttx/net/netdev.h>
|
2008-09-01 15:59:54 +02:00
|
|
|
|
2015-05-29 19:01:03 +02:00
|
|
|
#include "netdev/netdev.h"
|
2014-06-29 02:07:02 +02:00
|
|
|
#include "devif/devif.h"
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-29 20:59:34 +02:00
|
|
|
static struct devif_callback_s g_cbprealloc[CONFIG_NET_NACTIVESOCKETS];
|
|
|
|
static FAR struct devif_callback_s *g_cbfreelist = NULL;
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-06-29 02:36:09 +02:00
|
|
|
* Function: devif_callback_init
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2014-04-12 20:13:01 +02:00
|
|
|
* Configure the pre-allocated callback structures into a free list.
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called with interrupts disabled.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-29 02:36:09 +02:00
|
|
|
void devif_callback_init(void)
|
2008-09-01 15:59:54 +02:00
|
|
|
{
|
|
|
|
int i;
|
2015-05-28 20:01:38 +02:00
|
|
|
|
2008-09-01 15:59:54 +02:00
|
|
|
for (i = 0; i < CONFIG_NET_NACTIVESOCKETS; i++)
|
|
|
|
{
|
2015-05-28 20:01:38 +02:00
|
|
|
g_cbprealloc[i].nxtconn = g_cbfreelist;
|
|
|
|
g_cbfreelist = &g_cbprealloc[i];
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-06-29 02:36:09 +02:00
|
|
|
* Function: devif_callback_alloc
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Allocate a callback container from the free list.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called with interrupts disabled.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
FAR struct devif_callback_s *
|
|
|
|
devif_callback_alloc(FAR struct net_driver_s *dev,
|
|
|
|
FAR struct devif_callback_s **list)
|
2008-09-01 15:59:54 +02:00
|
|
|
{
|
2014-06-29 20:59:34 +02:00
|
|
|
FAR struct devif_callback_s *ret;
|
2014-06-26 22:23:21 +02:00
|
|
|
net_lock_t save;
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
/* Check the head of the free list */
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
save = net_lock();
|
2008-09-01 15:59:54 +02:00
|
|
|
ret = g_cbfreelist;
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
/* Remove the next instance from the head of the free list */
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
g_cbfreelist = ret->nxtconn;
|
2014-06-29 20:59:34 +02:00
|
|
|
memset(ret, 0, sizeof(struct devif_callback_s));
|
2008-09-01 15:59:54 +02:00
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
/* Add the newly allocated instance to the head of the device event
|
|
|
|
* list.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (dev)
|
|
|
|
{
|
2015-05-29 19:01:03 +02:00
|
|
|
/* Verify that the device is valid */
|
|
|
|
|
|
|
|
if (!netdev_verify(dev))
|
|
|
|
{
|
|
|
|
/* No.. release the callback structure and fail */
|
|
|
|
|
|
|
|
devif_callback_free(NULL, NULL, list);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
ret->nxtdev = dev->d_devcb;
|
|
|
|
dev->d_devcb = ret;
|
|
|
|
}
|
|
|
|
|
2008-09-01 15:59:54 +02:00
|
|
|
/* Add the newly allocated instance to the head of the specified list */
|
|
|
|
|
|
|
|
if (list)
|
|
|
|
{
|
2015-05-28 20:01:38 +02:00
|
|
|
ret->nxtconn = *list;
|
|
|
|
*list = ret;
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
else
|
|
|
|
{
|
2009-09-15 17:44:14 +02:00
|
|
|
nlldbg("Failed to allocate callback\n");
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
net_unlock(save);
|
2008-09-01 15:59:54 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-06-29 02:36:09 +02:00
|
|
|
* Function: devif_callback_free
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return a callback container to the free list.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called with interrupts disabled.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
void devif_callback_free(FAR struct net_driver_s *dev,
|
|
|
|
FAR struct devif_callback_s *cb,
|
2014-06-29 20:59:34 +02:00
|
|
|
FAR struct devif_callback_s **list)
|
2008-09-01 15:59:54 +02:00
|
|
|
{
|
2014-06-29 20:59:34 +02:00
|
|
|
FAR struct devif_callback_s *prev;
|
|
|
|
FAR struct devif_callback_s *curr;
|
2014-06-26 22:23:21 +02:00
|
|
|
net_lock_t save;
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
if (cb)
|
|
|
|
{
|
2014-06-26 22:23:21 +02:00
|
|
|
save = net_lock();
|
2014-01-13 19:04:01 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
/* Check for double freed callbacks */
|
|
|
|
|
|
|
|
curr = g_cbfreelist;
|
|
|
|
|
|
|
|
while (curr != NULL)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(cb != curr);
|
2015-05-28 20:01:38 +02:00
|
|
|
curr = curr->nxtconn;
|
2014-01-13 19:04:01 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-29 19:01:03 +02:00
|
|
|
/* Remove the callback structure from the device notification list if
|
|
|
|
* it is supposed to be in the device notification list AND if the
|
|
|
|
* device pointer is still valid.
|
|
|
|
*/
|
2015-05-28 20:01:38 +02:00
|
|
|
|
2015-05-29 19:01:03 +02:00
|
|
|
if (dev && netdev_verify(dev))
|
2015-05-28 20:01:38 +02:00
|
|
|
{
|
2015-05-29 19:01:03 +02:00
|
|
|
/* Find the callback structure in the device event list */
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
for (prev = NULL, curr = dev->d_devcb;
|
|
|
|
curr && curr != cb;
|
|
|
|
prev = curr, curr = curr->nxtdev);
|
|
|
|
|
|
|
|
/* Remove the structure from the device event list */
|
|
|
|
|
|
|
|
DEBUGASSERT(curr);
|
|
|
|
if (curr)
|
|
|
|
{
|
|
|
|
if (prev)
|
|
|
|
{
|
|
|
|
prev->nxtdev = cb->nxtdev;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dev->d_devcb = cb->nxtdev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-29 19:01:03 +02:00
|
|
|
/* Remove the callback structure from the data notification list if
|
|
|
|
* it is supposed to be in the data notification list.
|
|
|
|
*/
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
if (list)
|
|
|
|
{
|
2015-05-29 19:01:03 +02:00
|
|
|
/* Find the callback structure in the connection event list */
|
|
|
|
|
2008-09-01 15:59:54 +02:00
|
|
|
for (prev = NULL, curr = *list;
|
|
|
|
curr && curr != cb;
|
2015-05-28 20:01:38 +02:00
|
|
|
prev = curr, curr = curr->nxtconn);
|
2008-09-01 15:59:54 +02:00
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
/* Remove the structure from the connection event list */
|
2008-09-01 15:59:54 +02:00
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
DEBUGASSERT(curr);
|
2008-09-01 15:59:54 +02:00
|
|
|
if (curr)
|
|
|
|
{
|
|
|
|
if (prev)
|
|
|
|
{
|
2015-05-28 20:01:38 +02:00
|
|
|
prev->nxtconn = cb->nxtconn;
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-05-28 20:01:38 +02:00
|
|
|
*list = cb->nxtconn;
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put the structure into the free list */
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
cb->nxtconn = g_cbfreelist;
|
2008-09-01 15:59:54 +02:00
|
|
|
g_cbfreelist = cb;
|
2014-06-26 22:23:21 +02:00
|
|
|
net_unlock(save);
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-05-28 20:01:38 +02:00
|
|
|
* Function: devif_conn_event
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2015-05-28 20:01:38 +02:00
|
|
|
* Execute a list of callbacks using the packet event chain.
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
2015-05-27 19:39:44 +02:00
|
|
|
* Input parameters:
|
|
|
|
* dev - The network device state structure associated with the network
|
|
|
|
* device that initiated the callback event.
|
|
|
|
* pvconn - Holds a reference to the TCP connection structure or the UDP
|
|
|
|
* port structure. May be NULL if the even is not related to a TCP
|
|
|
|
* connection or UDP port.
|
2015-05-28 20:01:38 +02:00
|
|
|
* flags - The bit set of events to be notified.
|
|
|
|
* list - The list to traverse in performing the notifications
|
2015-05-27 19:39:44 +02:00
|
|
|
*
|
|
|
|
* Returned value:
|
|
|
|
* The updated flags as modified by the callback functions.
|
|
|
|
*
|
2008-09-01 15:59:54 +02:00
|
|
|
* Assumptions:
|
2015-05-27 19:39:44 +02:00
|
|
|
* This function is called with the network locked.
|
2008-09-01 15:59:54 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
uint16_t devif_conn_event(FAR struct net_driver_s *dev, void *pvconn,
|
|
|
|
uint16_t flags, FAR struct devif_callback_s *list)
|
2008-09-01 15:59:54 +02:00
|
|
|
{
|
2014-06-29 20:59:34 +02:00
|
|
|
FAR struct devif_callback_s *next;
|
2014-06-26 22:23:21 +02:00
|
|
|
net_lock_t save;
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
/* Loop for each callback in the list and while there are still events
|
|
|
|
* set in the flags set.
|
|
|
|
*/
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
save = net_lock();
|
2008-09-01 15:59:54 +02:00
|
|
|
while (list && flags)
|
|
|
|
{
|
|
|
|
/* Save the pointer to the next callback in the lists. This is done
|
|
|
|
* because the callback action might delete the entry pointed to by
|
|
|
|
* list.
|
|
|
|
*/
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
next = list->nxtconn;
|
2008-09-01 15:59:54 +02:00
|
|
|
|
|
|
|
/* Check if this callback handles any of the events in the flag set */
|
|
|
|
|
|
|
|
if (list->event && (flags & list->flags) != 0)
|
|
|
|
{
|
|
|
|
/* Yes.. perform the callback. Actions perform by the callback
|
|
|
|
* may delete the current list entry or add a new list entry to
|
|
|
|
* beginning of the list (which will be ignored on this pass)
|
|
|
|
*/
|
|
|
|
|
2009-09-15 17:44:14 +02:00
|
|
|
nllvdbg("Call event=%p with flags=%04x\n", list->event, flags);
|
2009-06-17 01:23:31 +02:00
|
|
|
flags = list->event(dev, pvconn, list->priv, flags);
|
2008-09-01 15:59:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up for the next time through the loop */
|
|
|
|
|
|
|
|
list = next;
|
|
|
|
}
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
net_unlock(save);
|
2008-09-01 15:59:54 +02:00
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2015-05-28 20:01:38 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Function: devif_dev_event
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Execute a list of callbacks using the device event chain.
|
|
|
|
*
|
|
|
|
* Input parameters:
|
|
|
|
* dev - The network device state structure associated with the network
|
|
|
|
* device that initiated the callback event.
|
|
|
|
* pvconn - Holds a reference to the TCP connection structure or the UDP
|
|
|
|
* port structure. May be NULL if the even is not related to a TCP
|
|
|
|
* connection or UDP port.
|
|
|
|
* flags - The bit set of events to be notified.
|
|
|
|
*
|
|
|
|
* Returned value:
|
|
|
|
* The updated flags as modified by the callback functions.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called with the network locked.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
uint16_t devif_dev_event(FAR struct net_driver_s *dev, void *pvconn,
|
|
|
|
uint16_t flags)
|
|
|
|
{
|
|
|
|
FAR struct devif_callback_s *cb;
|
|
|
|
FAR struct devif_callback_s *next;
|
|
|
|
net_lock_t save;
|
|
|
|
|
|
|
|
/* Loop for each callback in the list and while there are still events
|
|
|
|
* set in the flags set.
|
|
|
|
*/
|
|
|
|
|
|
|
|
save = net_lock();
|
|
|
|
for (cb = dev->d_devcb; cb != NULL && flags != 0; cb = next)
|
|
|
|
{
|
|
|
|
/* Save the pointer to the next callback in the lists. This is done
|
|
|
|
* because the callback action might delete the entry pointed to by
|
|
|
|
* list.
|
|
|
|
*/
|
|
|
|
|
|
|
|
next = cb->nxtdev;
|
|
|
|
|
|
|
|
/* Check if this callback handles any of the events in the flag set */
|
|
|
|
|
|
|
|
if (cb->event && (flags & cb->flags) != 0)
|
|
|
|
{
|
|
|
|
/* Yes.. perform the callback. Actions perform by the callback
|
|
|
|
* may delete the current list entry or add a new list entry to
|
|
|
|
* beginning of the list (which will be ignored on this pass)
|
|
|
|
*/
|
|
|
|
|
|
|
|
nllvdbg("Call event=%p with flags=%04x\n", cb->event, flags);
|
|
|
|
flags = cb->event(dev, pvconn, cb->priv, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up for the next time through the loop */
|
|
|
|
|
|
|
|
cb = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
net_unlock(save);
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2008-09-01 15:59:54 +02:00
|
|
|
#endif /* CONFIG_NET */
|