strongswan/src/charon/network/sender.c

153 lines
3.4 KiB
C
Raw Normal View History

2005-11-07 12:07:56 +00:00
/*
2006-07-07 08:49:06 +00:00
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
2005-11-07 12:07:56 +00:00
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
2005-11-07 12:07:56 +00:00
#include <stdlib.h>
2005-11-07 12:07:56 +00:00
#include "sender.h"
2005-11-29 10:25:07 +00:00
#include <daemon.h>
#include <network/socket.h>
#include <processing/jobs/callback_job.h>
#include <threading/thread.h>
#include <threading/condvar.h>
#include <threading/mutex.h>
2005-12-06 16:04:39 +00:00
2005-11-24 11:30:19 +00:00
typedef struct private_sender_t private_sender_t;
2005-11-07 12:07:56 +00:00
/**
2005-12-06 16:04:39 +00:00
* Private data of a sender_t object.
2005-11-07 12:07:56 +00:00
*/
2005-11-24 11:30:19 +00:00
struct private_sender_t {
2005-11-07 12:07:56 +00:00
/**
2005-12-06 16:04:39 +00:00
* Public part of a sender_t object.
2005-11-07 12:07:56 +00:00
*/
sender_t public;
/**
* Sender threads job.
*/
callback_job_t *job;
/**
* The packets are stored in a linked list
*/
linked_list_t *list;
/**
* mutex to synchronize access to list
*/
mutex_t *mutex;
2005-11-07 12:07:56 +00:00
/**
* condvar to signal for packets added to list
*/
condvar_t *got;
/**
* condvar to signal for packets sent
*/
condvar_t *sent;
2005-11-07 12:07:56 +00:00
};
METHOD(sender_t, send_, void,
private_sender_t *this, packet_t *packet)
{
host_t *src, *dst;
src = packet->get_source(packet);
dst = packet->get_destination(packet);
DBG1(DBG_NET, "sending packet: from %#H to %#H", src, dst);
this->mutex->lock(this->mutex);
this->list->insert_last(this->list, packet);
this->got->signal(this->got);
this->mutex->unlock(this->mutex);
}
2005-11-07 12:07:56 +00:00
/**
* Job callback function to send packets
2005-11-07 12:07:56 +00:00
*/
static job_requeue_t send_packets(private_sender_t * this)
2005-11-07 12:07:56 +00:00
{
packet_t *packet;
bool oldstate;
this->mutex->lock(this->mutex);
while (this->list->get_count(this->list) == 0)
2005-11-07 12:07:56 +00:00
{
/* add cleanup handler, wait for packet, remove cleanup handler */
thread_cleanup_push((thread_cleanup_t)this->mutex->unlock, this->mutex);
oldstate = thread_cancelability(TRUE);
this->got->wait(this->got, this->mutex);
thread_cancelability(oldstate);
thread_cleanup_pop(FALSE);
2005-11-07 12:07:56 +00:00
}
this->list->remove_first(this->list, (void**)&packet);
this->sent->signal(this->sent);
this->mutex->unlock(this->mutex);
charon->socket->send(charon->socket, packet);
packet->destroy(packet);
return JOB_REQUEUE_DIRECT;
2005-11-07 12:07:56 +00:00
}
METHOD(sender_t, destroy, void,
private_sender_t *this)
2005-11-07 12:07:56 +00:00
{
/* send all packets in the queue */
this->mutex->lock(this->mutex);
while (this->list->get_count(this->list))
{
this->sent->wait(this->sent, this->mutex);
}
this->mutex->unlock(this->mutex);
2008-11-05 12:24:36 +00:00
this->job->cancel(this->job);
this->list->destroy(this->list);
this->got->destroy(this->got);
this->sent->destroy(this->sent);
this->mutex->destroy(this->mutex);
free(this);
2005-11-07 12:07:56 +00:00
}
/*
2005-12-06 16:04:39 +00:00
* Described in header.
*/
2005-11-07 12:07:56 +00:00
sender_t * sender_create()
{
private_sender_t *this;
INIT(this,
.public = {
.send = _send_,
.destroy = _destroy,
},
.list = linked_list_create(),
.mutex = mutex_create(MUTEX_TYPE_DEFAULT),
.got = condvar_create(CONDVAR_TYPE_DEFAULT),
.sent = condvar_create(CONDVAR_TYPE_DEFAULT),
.job = callback_job_create((callback_job_cb_t)send_packets,
this, NULL, NULL),
);
charon->processor->queue_job(charon->processor, (job_t*)this->job);
return &this->public;
2005-11-07 12:07:56 +00:00
}