
Do not compile most of service_table.c and client_table.c if --disable-gena is used. Do not compile urlconfig.c if --disable-webserver is used. Adding new UPNP_HAVE_xxx variables in upnpconfig.h and upnpconfig.h.in.
331 lines
9.1 KiB
C
331 lines
9.1 KiB
C
/*******************************************************************************
|
|
*
|
|
* Copyright (c) 2000-2003 Intel Corporation
|
|
* All rights reserved.
|
|
* Copyright (c) 2012 France Telecom All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* - 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.
|
|
* - Neither name of Intel Corporation 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 INTEL 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.
|
|
*
|
|
******************************************************************************/
|
|
|
|
/************************************************************************
|
|
* Purpose: This file defines the functions for clients. It defines
|
|
* functions for adding and removing clients to and from the client table,
|
|
* adding and accessing subscription and other attributes pertaining to the
|
|
* client
|
|
************************************************************************/
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
#include "client_table.h"
|
|
|
|
|
|
#ifdef INCLUDE_CLIENT_APIS
|
|
#if EXCLUDE_GENA == 0
|
|
|
|
#include <stdlib.h> /* for calloc(), free() */
|
|
|
|
|
|
struct SClientSubscription {
|
|
int m_renewEventId;
|
|
UpnpString *m_SID;
|
|
UpnpString *m_actualSID;
|
|
UpnpString *m_eventURL;
|
|
struct SClientSubscription *m_next;
|
|
};
|
|
|
|
|
|
/** Constructor */
|
|
ClientSubscription *UpnpClientSubscription_new()
|
|
{
|
|
struct SClientSubscription *p = calloc(1, sizeof (struct SClientSubscription));
|
|
#if 0
|
|
p->renewEventId = 0;
|
|
#endif
|
|
p->m_SID = UpnpString_new();
|
|
p->m_actualSID = UpnpString_new();
|
|
p->m_eventURL = UpnpString_new();
|
|
p->m_next = NULL;
|
|
|
|
return (ClientSubscription *)p;
|
|
}
|
|
|
|
|
|
/** Destructor */
|
|
void UpnpClientSubscription_delete(ClientSubscription *p)
|
|
{
|
|
struct SClientSubscription *q = (struct SClientSubscription *)p;
|
|
|
|
if (!q) return;
|
|
|
|
q->m_renewEventId = 0;
|
|
|
|
UpnpString_delete(q->m_SID);
|
|
q->m_SID = NULL;
|
|
|
|
UpnpString_delete(q->m_actualSID);
|
|
q->m_actualSID = NULL;
|
|
|
|
UpnpString_delete(q->m_eventURL);
|
|
q->m_eventURL = NULL;
|
|
|
|
q->m_next = NULL;
|
|
|
|
free(p);
|
|
}
|
|
|
|
|
|
/** Copy Constructor */
|
|
ClientSubscription *UpnpClientSubscription_dup(const ClientSubscription *p)
|
|
{
|
|
ClientSubscription *q = UpnpClientSubscription_new();
|
|
|
|
UpnpClientSubscription_assign(q, p);
|
|
|
|
return q;
|
|
}
|
|
|
|
|
|
/** Assignment operator */
|
|
void UpnpClientSubscription_assign(ClientSubscription *q, const ClientSubscription *p)
|
|
{
|
|
if (q != p) {
|
|
/* Do not copy RenewEventId */
|
|
((struct SClientSubscription *)q)->m_renewEventId = -1;
|
|
UpnpClientSubscription_set_SID(q, UpnpClientSubscription_get_SID(p));
|
|
UpnpClientSubscription_set_ActualSID(q, UpnpClientSubscription_get_ActualSID(p));
|
|
UpnpClientSubscription_set_EventURL(q, UpnpClientSubscription_get_EventURL(p));
|
|
/* Do not copy m_next */
|
|
((struct SClientSubscription *)q)->m_next = NULL;
|
|
}
|
|
}
|
|
|
|
|
|
int UpnpClientSubscription_get_RenewEventId(const ClientSubscription *p)
|
|
{
|
|
return ((struct SClientSubscription *)p)->m_renewEventId;
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_set_RenewEventId(ClientSubscription *p, int n)
|
|
{
|
|
((struct SClientSubscription *)p)->m_renewEventId = n;
|
|
}
|
|
|
|
|
|
const UpnpString *UpnpClientSubscription_get_SID(const ClientSubscription *p)
|
|
{
|
|
return ((struct SClientSubscription *)p)->m_SID;
|
|
}
|
|
|
|
const char *UpnpClientSubscription_get_SID_cstr(const ClientSubscription *p)
|
|
{
|
|
return UpnpString_get_String(UpnpClientSubscription_get_SID(p));
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_set_SID(ClientSubscription *p, const UpnpString *s)
|
|
{
|
|
UpnpString_delete(((struct SClientSubscription *)p)->m_SID);
|
|
((struct SClientSubscription *)p)->m_SID = UpnpString_dup(s);
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_strcpy_SID(ClientSubscription *p, const char *s)
|
|
{
|
|
UpnpString_delete(((struct SClientSubscription *)p)->m_SID);
|
|
((struct SClientSubscription *)p)->m_SID = UpnpString_new();
|
|
UpnpString_set_String(((struct SClientSubscription *)p)->m_SID, s);
|
|
}
|
|
|
|
|
|
|
|
const UpnpString *UpnpClientSubscription_get_ActualSID(const ClientSubscription *p)
|
|
{
|
|
return ((struct SClientSubscription *)p)->m_actualSID;
|
|
}
|
|
|
|
|
|
const char *UpnpClientSubscription_get_ActualSID_cstr(const ClientSubscription *p)
|
|
{
|
|
return UpnpString_get_String(UpnpClientSubscription_get_ActualSID(p));
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_set_ActualSID(ClientSubscription *p, const UpnpString *s)
|
|
{
|
|
UpnpString_delete(((struct SClientSubscription *)p)->m_actualSID);
|
|
((struct SClientSubscription *)p)->m_actualSID = UpnpString_dup(s);
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_strcpy_ActualSID(ClientSubscription *p, const char *s)
|
|
{
|
|
UpnpString_delete(((struct SClientSubscription *)p)->m_actualSID);
|
|
((struct SClientSubscription *)p)->m_actualSID = UpnpString_new();
|
|
UpnpString_set_String(((struct SClientSubscription *)p)->m_actualSID, s);
|
|
}
|
|
|
|
|
|
const UpnpString *UpnpClientSubscription_get_EventURL(const ClientSubscription *p)
|
|
{
|
|
return ((struct SClientSubscription *)p)->m_eventURL;
|
|
}
|
|
|
|
|
|
const char *UpnpClientSubscription_get_EventURL_cstr(const ClientSubscription *p)
|
|
{
|
|
return UpnpString_get_String(UpnpClientSubscription_get_EventURL(p));
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_set_EventURL(ClientSubscription *p, const UpnpString *s)
|
|
{
|
|
UpnpString_delete(((struct SClientSubscription *)p)->m_eventURL);
|
|
((struct SClientSubscription *)p)->m_eventURL = UpnpString_dup(s);
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_strcpy_EventURL(ClientSubscription *p, const char *s)
|
|
{
|
|
UpnpString_delete(((struct SClientSubscription *)p)->m_eventURL);
|
|
((struct SClientSubscription *)p)->m_eventURL = UpnpString_new();
|
|
UpnpString_set_String(((struct SClientSubscription *)p)->m_eventURL, s);
|
|
}
|
|
|
|
|
|
ClientSubscription *UpnpClientSubscription_get_Next(const ClientSubscription *p)
|
|
{
|
|
return (ClientSubscription *)(((struct SClientSubscription *)p)->m_next);
|
|
}
|
|
|
|
|
|
void UpnpClientSubscription_set_Next(ClientSubscription *p, ClientSubscription *q)
|
|
{
|
|
((struct SClientSubscription *)p)->m_next = (struct SClientSubscription *)q;
|
|
}
|
|
|
|
|
|
void free_client_subscription(ClientSubscription *sub)
|
|
{
|
|
upnp_timeout *event;
|
|
ThreadPoolJob tempJob;
|
|
if (sub) {
|
|
int renewEventId = UpnpClientSubscription_get_RenewEventId(sub);
|
|
UpnpClientSubscription_strcpy_ActualSID(sub, "");
|
|
UpnpClientSubscription_strcpy_EventURL(sub, "");
|
|
if (renewEventId != -1) {
|
|
/* do not remove timer event of copy */
|
|
/* invalid timer event id */
|
|
if (TimerThreadRemove(&gTimerThread, renewEventId, &tempJob) == 0) {
|
|
event = (upnp_timeout *)tempJob.arg;
|
|
free_upnp_timeout(event);
|
|
}
|
|
}
|
|
UpnpClientSubscription_set_RenewEventId(sub, -1);
|
|
}
|
|
}
|
|
|
|
|
|
void freeClientSubList(ClientSubscription *list)
|
|
{
|
|
ClientSubscription *next;
|
|
while (list) {
|
|
free_client_subscription(list);
|
|
next = UpnpClientSubscription_get_Next(list);
|
|
UpnpClientSubscription_delete(list);
|
|
list = next;
|
|
}
|
|
}
|
|
|
|
|
|
void RemoveClientSubClientSID(ClientSubscription **head, const UpnpString *sid)
|
|
{
|
|
ClientSubscription *finger = *head;
|
|
ClientSubscription *previous = NULL;
|
|
int found = 0;
|
|
while (finger) {
|
|
found = !strcmp(
|
|
UpnpString_get_String(sid),
|
|
UpnpClientSubscription_get_SID_cstr(finger));
|
|
if (found) {
|
|
if (previous) {
|
|
UpnpClientSubscription_set_Next(previous,
|
|
UpnpClientSubscription_get_Next(finger));
|
|
} else {
|
|
*head = UpnpClientSubscription_get_Next(finger);
|
|
}
|
|
UpnpClientSubscription_set_Next(finger, NULL);
|
|
freeClientSubList(finger);
|
|
finger = NULL;
|
|
} else {
|
|
previous = finger;
|
|
finger = UpnpClientSubscription_get_Next(finger);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
ClientSubscription *GetClientSubClientSID(ClientSubscription *head, const UpnpString *sid)
|
|
{
|
|
ClientSubscription *next = head;
|
|
int found = 0;
|
|
while (next) {
|
|
found = !strcmp(
|
|
UpnpClientSubscription_get_SID_cstr(next),
|
|
UpnpString_get_String(sid));
|
|
if(found) {
|
|
break;
|
|
} else {
|
|
next = UpnpClientSubscription_get_Next(next);
|
|
}
|
|
}
|
|
|
|
return next;
|
|
}
|
|
|
|
|
|
ClientSubscription *GetClientSubActualSID(ClientSubscription *head, token *sid)
|
|
{
|
|
ClientSubscription *next = head;
|
|
while (next) {
|
|
if (!memcmp(
|
|
UpnpClientSubscription_get_ActualSID_cstr(next),
|
|
sid->buff, sid->size)) {
|
|
break;
|
|
} else {
|
|
next = UpnpClientSubscription_get_Next(next);
|
|
}
|
|
}
|
|
|
|
return next;
|
|
}
|
|
|
|
#endif /* EXCLUDE_GENA */
|
|
#endif /* INCLUDE_CLIENT_APIS */
|
|
|