summaryrefslogtreecommitdiff
path: root/accel-pptpd
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2010-08-27 15:00:28 +0400
committerDmitry Kozlov <xeb@mail.ru>2010-08-27 15:00:28 +0400
commit9857527f8f1fe124cdd5e66180351f0661e22dd6 (patch)
tree640a04fe8c22a1839e51bec8b4dcddda175270a8 /accel-pptpd
parent14763d00a0777b7a27eb49eb5f91ac802c05ecb5 (diff)
downloadaccel-ppp-9857527f8f1fe124cdd5e66180351f0661e22dd6.tar.gz
accel-ppp-9857527f8f1fe124cdd5e66180351f0661e22dd6.zip
rewriting triton library ...
Diffstat (limited to 'accel-pptpd')
-rw-r--r--accel-pptpd/pptp.c48
-rw-r--r--accel-pptpd/triton/md.c10
-rw-r--r--accel-pptpd/triton/timer.c265
3 files changed, 68 insertions, 255 deletions
diff --git a/accel-pptpd/pptp.c b/accel-pptpd/pptp.c
index 23514722..a261b195 100644
--- a/accel-pptpd/pptp.c
+++ b/accel-pptpd/pptp.c
@@ -40,11 +40,13 @@ struct pptp_conn_t
{
struct triton_ctx_t ctx;
struct triton_md_handler_t hnd;
+ struct triton_timer_t timeout_timer;
+ struct triton_timer_t echo_timer;
int state;
- u_int8_t *in_buf;
+ uint8_t *in_buf;
int in_size;
- u_int8_t *out_buf;
+ uint8_t *out_buf;
int out_size;
int out_pos;
@@ -57,45 +59,6 @@ static void pptp_timeout(struct triton_md_handler_t *h);
static void ppp_started(struct ppp_t *);
static void ppp_finished(struct ppp_t *);
-static void ctrl_read(struct triton_md_handler_t *h)
-{
- struct pptp_conn_t *conn;
-
- int fd;
- int n=read(h->fd,&fd,sizeof(fd));
- if (n!=4)
- {
- log_error("too short message from controlling thread\n");
- return;
- }
-
- conn=malloc(sizeof(*conn));
- memset(conn,0,sizeof(*conn));
- conn->in_buf=malloc(PPTP_CTRL_SIZE_MAX);
- conn->out_buf=malloc(PPTP_CTRL_SIZE_MAX);
- conn->hnd.fd=fd;
- conn->hnd.twait=TIMEOUT;
- conn->hnd.read=pptp_read;
- conn->hnd.write=pptp_write;
- conn->hnd.timeout=pptp_timeout;
-
- triton_md_register_handler(&conn->hnd);
- triton_md_enable_handler(&conn->hnd,MD_MODE_READ);
-}
-
-int ctrl_init(struct ctrl_thread_t*ctrl)
-{
- struct triton_md_handler_t *h=malloc(sizeof(*h));
- memset(h,0,sizeof(*h));
- h->fd=ctrl->pipe_fd[0];
- h->twait=-1;
- h->read=ctrl_read;
- triton_md_register_handler(h);
- triton_md_enable_handler(h,MD_MODE_READ);
-
- return 0;
-}
-
static void disconnect(struct pptp_conn_t *conn)
{
close(conn->hnd.fd);
@@ -432,6 +395,7 @@ static int pptp_connect(struct triton_md_handler_t *h)
triton_md_register_handler(&conn->hnd);
triton_md_enable_handler(&conn->hnd,MD_MODE_READ);
}
+ return 0;
}
static void pptp_serv_close(struct triton_md_handler_t *h)
{
@@ -452,7 +416,7 @@ static struct pptp_serv_t serv=
.hnd.ctx=&serv.ctx,
};
-void __constructor pptp_init()
+void __init pptp_init()
{
struct sockaddr_in addr;
socklen_t size;
diff --git a/accel-pptpd/triton/md.c b/accel-pptpd/triton/md.c
index ac0fe00f..4570347f 100644
--- a/accel-pptpd/triton/md.c
+++ b/accel-pptpd/triton/md.c
@@ -48,6 +48,11 @@ void md_run()
pthread_create(&md_thr,md_thread,NULL);
}
+void md_terminate()
+{
+ pthread_join(&md_thr);
+}
+
static void* md_thread(void *arg)
{
int max_fd=0,t;
@@ -78,11 +83,6 @@ static void* md_thread(void *arg)
}
}
-void md_terminate()
-{
-
-}
-
void triton_md_register_handler(struct triton_md_handler_t *h)
{
h->epoll_event.data.ptr=h;
diff --git a/accel-pptpd/triton/timer.c b/accel-pptpd/triton/timer.c
index 2fa4be88..662ee7a5 100644
--- a/accel-pptpd/triton/timer.c
+++ b/accel-pptpd/triton/timer.c
@@ -5,245 +5,94 @@
#include "triton_p.h"
-static __thread struct list_head timers;
-static __thread struct list_head timers_ss;
-static __thread int in_timer;
+static pthread_thread_t timer_thr;
-asm(".hidden timer_prepare");
-asm(".hidden timer_check");
-asm(".hidden timer_init");
+static pthread_mutex_t timers_lock=PTHREAD_MUTEX_INITIALIZER;
+static LIST_HEAD(timers);
+
+static timespec expire_ts;
+static pthread_cond_t cond=PTHREAD_COND_INITIALIZER;
static void tv_add(struct timeval *tv,int msec);
void timer_init(void)
{
- INIT_LIST_HEAD(&timers);
- INIT_LIST_HEAD(&timers_ss);
- in_timer=0;
}
-void triton_timer_add(struct triton_timer_t*tt)
+void timer_run(void)
{
- struct timer_t *t=(struct timer_t *)malloc(sizeof(struct timer_t));
-
- if (!tt->expire_tv.tv_sec)
- {
- gettimeofday(&tt->expire_tv,NULL);
- tv_add(&tt->expire_tv,tt->period);
- }
- t->del=0;
- t->timer=tt;
- tt->active=1;
-
- list_add_tail(&t->entry,&timers);
+ pthread_create(&timer_thr,NULL,timer_thread,NULL);
}
-void triton_timer_del(struct triton_timer_t*tt)
-{
- struct timer_t *t;
- list_for_each_entry(t,&timers,entry)
- {
- if (t->timer==tt)
- {
- tt->active=0;
- if (in_timer)
- {
- t->del=1;
- }else
- {
- list_del(&t->entry);
- free(t);
- }
- return;
- }
- }
-}
-void triton_timer_single_shot1(int twait,triton_ss_func func,int arg_cnt,...)
-{
- struct timeval tv;
- struct timer_single_shot_t *t=(struct timer_single_shot_t *)malloc(sizeof(struct timer_single_shot_t));
-
- memset(t,0,sizeof(*t));
-
- gettimeofday(&tv,NULL);
-
- tv_add(&tv,twait);
-
- t->ss_func=func;
- t->expire_tv=tv;//(struct timeval){tv.tv_sec+twait/1000,tv.tv_usec+(twait%1000)*1000000};
- if (arg_cnt)
- {
- va_list p;
- va_start(p,arg_cnt);
- t->arg_cnt=arg_cnt;
- t->args=malloc(arg_cnt*sizeof(long));
- #ifdef BROKEN_GCC
- for(i=0; i<arg_cnt; i++)
- *((long*)t->args+i)=va_arg(p,long);
- #else
- memcpy(t->args,p,arg_cnt*sizeof(long));
- #endif
- va_end(p);
- }
-
- list_add_tail(&t->entry,&timers_ss);
-}
-void triton_timer_single_shot2(struct timeval *tv,triton_ss_func func,int arg_cnt,...)
-{
- struct timer_single_shot_t *t=(struct timer_single_shot_t *)malloc(sizeof(struct timer_single_shot_t));
-
- memset(t,0,sizeof(*t));
-
- t->ss_func=func;
- t->expire_tv=*tv;//(struct timeval){tv.tv_sec+twait/1000,tv.tv_usec+(twait%1000)*1000000};
- if (arg_cnt)
- {
- va_list p;
- va_start(p,arg_cnt);
- t->arg_cnt=arg_cnt;
- t->args=malloc(arg_cnt*sizeof(long));
- #ifdef BROKEN_GCC
- for(i=0; i<arg_cnt; i++)
- *((long*)t->args+i)=va_arg(p,long);
- #else
- memcpy(t->args,p,arg_cnt*sizeof(long));
- #endif
- va_end(p);
- }
-
- list_add_tail(&t->entry,&timers_ss);
-}
-void triton_timer_single_shot3(int tv_sec,int tv_usec,triton_ss_func func,int arg_cnt,...)
+void timer_terminate(void)
{
- struct timer_single_shot_t *t=(struct timer_single_shot_t *)malloc(sizeof(struct timer_single_shot_t));
-
- memset(t,0,sizeof(*t));
-
- t->ss_func=func;
- t->expire_tv.tv_sec=tv_sec;
- t->expire_tv.tv_usec=tv_usec;
- if (arg_cnt)
- {
- va_list p;
- va_start(p,arg_cnt);
- t->arg_cnt=arg_cnt;
- t->args=malloc(arg_cnt*sizeof(long));
- #ifdef BROKEN_GCC
- for(i=0; i<arg_cnt; i++)
- *((int*)t->args+i)=va_arg(p,long);
- #else
- memcpy(t->args,p,arg_cnt*sizeof(long));
- #endif
- va_end(p);
- }
-
- list_add_tail(&t->entry,&timers_ss);
+ pthread_cancel(&timer_thr);
+ pthread_join(&timer_thr);
}
-int timer_prepare(struct timeval *tv)
+void *timer_thread(void *arg)
{
- struct timer_t *t;
- struct timer_single_shot_t *ss_t;
-
- int twait=-1,twait0;
+ struct triton_timer_t *t;
+ struct timeval tv;
- list_for_each_entry(t,&timers,entry)
+ pthread_mutex_lock(&timers_lock);
+ while(1)
{
- twait0=(t->timer->expire_tv.tv_sec-tv->tv_sec)*1000+
- (t->timer->expire_tv.tv_usec-tv->tv_usec)/1000;
- if (twait0<0) twait0=0;
- if (twait0>=0 && (twait==-1 || twait0<twait))
- twait=twait0;
- }
+ if (expire_ts.tv_sec)
+ pthread_cond_timedwait(&cond,&timers_lock,&expire_ts);
+ else
+ pthread_cond_wait(&cond,&timers_lock);
- if (twait)
- {
- list_for_each_entry(ss_t,&timers_ss,entry)
+ gettimeofday(&tv,NULL);
+ while(1)
{
- twait0=(ss_t->expire_tv.tv_sec-tv->tv_sec)*1000+
- (ss_t->expire_tv.tv_usec-tv->tv_usec)/1000;
- if (twait0<0) twait0=0;
- if (twait0>=0 && (twait==-1 || twait0<twait))
- twait=twait0;
- }
- }
-
- return twait;
-}
-
-
-void timer_check(struct timeval *tv)
-{
- struct timer_t *t;
- struct timer_single_shot_t *ss_t;
- struct list_head *p1,*p2;
- int twait0;
-
- in_timer=1;
-
- list_for_each_safe(p1,p2,&timers)
- {
- t=list_entry(p1,struct timer_t,entry);
- if (t->del) continue;
- twait0=(t->timer->expire_tv.tv_sec-tv->tv_sec)*1000+
- (t->timer->expire_tv.tv_usec-tv->tv_usec)/1000;
- if (twait0<=0)
- {
- if (!t->timer->expire(t->timer))
+ if (list_empty(&timers))
{
- t->timer->active=0;
- list_del(&t->entry);
- free(t);
- continue;
+ expire_ts.tv_sec=0;
+ break;
}
- if (t->timer->period)
+ t=list_entry(timers.next,typeof(*t),entry);
+ if (t->expire_tv.tv_sec>tv.tv_sec || (t->expire_tv.tv_sec==tv.tv_sec && t->expire_tv.tv_usec>=tv.tv_usec))
{
- tv_add(&t->timer->expire_tv,t->timer->period);
+ expire_ts.tv_sec=t->expire_tv.tv_sec;
+ expire_ts.tv_nsec=t->expire_tv.tv_usec*1000;
+ break;
}
+ list_del(&t->entry3);
+ pthread_mutex_lock(&t->ctx->lock);
+ t->pending=1;
+ list_add_tail(&t->entry2,&t->ctx->pending_timers);
+ triton_queue_ctx(&t->ctx);
+ pthread_mutex_unlock(&t->ctx->lock);
}
}
+}
- list_for_each_safe(p1,p2,&timers_ss)
- {
- ss_t=list_entry(p1,struct timer_single_shot_t,entry);
- twait0=(ss_t->expire_tv.tv_sec-tv->tv_sec)*1000+
- (ss_t->expire_tv.tv_usec-tv->tv_usec)/1000;
- if (twait0<=0)
- {
- list_del(&ss_t->entry);
- if (ss_t->arg_cnt)
- {
- //args_p=&ss_t->args;
- //memcpy(pp+ARG_OFFSET,ss_t->args,ss_t->arg_cnt*sizeof(int));
- //__builtin_apply(ss_t->ss_func,pp,ARG_OFFSET+ss_t->arg_cnt*sizeof(int));
- dyn_call(ss_t->ss_func,ss_t->arg_cnt,ss_t->args);
- free(ss_t->args);
- }else ss_t->ss_func();
- free(ss_t);
- }
- }
-
- list_for_each_safe(p1,p2,&timers)
+void triton_timer_add(struct triton_timer_t *t)
+{
+ struct triton_timer_t *t1;
+ pthread_mutex_lock(&timers_lock);
+ list_for_each_entry(t1,&timers,entry3)
{
- t=list_entry(p1,struct timer_t,entry);
- if (t->del)
- {
- list_del(&t->entry);
- t->timer->active=0;
- free(t);
- }
+ if (t->expire_tv.tv_sec<t1.expire_tv.tv_sec || (t->expire_tv.tv_sec==t1->expire_tv.tv_sec && t->expire_tv.tv_usec<t1->expire_tv.tv_usec))
+ break;
}
- in_timer=0;
+ list_add_tail(&t->entry3,&t1->entry3);
+ pthread_mutex_unlock(&timers_lock);
}
-
-static void tv_add(struct timeval *tv,int msec)
+void triton_timer_del(struct triton_timer_t *t)
{
- tv->tv_sec+=msec/1000;
- tv->tv_usec+=(msec%1000)*1000;
- if (tv->tv_usec>=1000000)
+ pthread_mutex_lock(&timers_lock);
+ pthread_mutex_lock(&t->ctx->lock);
+ if (t->pending)
+ list_del(&t->entry2);
+ else
{
- tv->tv_sec++;
- tv->tv_usec-=1000000;
+ list_del(&t->entry3);
+ if (t->expire_tv.tv_sec<expire_ts.tv_sec || (t->expire_tv.tv_sec==expire_ts.tv_sec && t->expire_tv.tv_usec<expire_ts.tv_nsec/1000))
+ pthread_cond_signal(&cond);
}
+ pthread_mutex_unlock(&t->ctx->lock);
+ pthread_mutex_unlock(&timers_lock);
}