summaryrefslogtreecommitdiff
path: root/accel-pptpd
diff options
context:
space:
mode:
authorKozlov Dmitry <dima@server>2010-09-01 19:29:43 +0400
committerKozlov Dmitry <dima@server>2010-09-01 19:29:43 +0400
commit2b63c6e6e368d6ea39584a70ddb81a88e0924c47 (patch)
tree790cc5d46e691b4b920170b7dfde40d3c6ec4be6 /accel-pptpd
parent5bac5a2edb7bc7639c853fd0f7109dcddb7c4cee (diff)
downloadaccel-ppp-2b63c6e6e368d6ea39584a70ddb81a88e0924c47.tar.gz
accel-ppp-2b63c6e6e368d6ea39584a70ddb81a88e0924c47.zip
rewriting triton library ...
Diffstat (limited to 'accel-pptpd')
-rw-r--r--accel-pptpd/CMakeLists.txt4
-rw-r--r--accel-pptpd/ipcp_opt_ipaddr.c2
-rw-r--r--accel-pptpd/main.c82
-rw-r--r--accel-pptpd/ppp.c26
-rw-r--r--accel-pptpd/ppp.h5
-rw-r--r--accel-pptpd/ppp_ccp.c4
-rw-r--r--accel-pptpd/ppp_fsm.c18
-rw-r--r--accel-pptpd/ppp_ipcp.c4
-rw-r--r--accel-pptpd/ppp_lcp.c4
-rw-r--r--accel-pptpd/pptp.c91
-rw-r--r--accel-pptpd/triton/CMakeLists.txt5
-rw-r--r--accel-pptpd/triton/conf_file.c54
-rw-r--r--accel-pptpd/triton/conf_file.h16
-rw-r--r--accel-pptpd/triton/loader.c47
-rw-r--r--accel-pptpd/triton/log.c34
-rw-r--r--accel-pptpd/triton/md.c65
-rw-r--r--accel-pptpd/triton/spinlock.h6
-rw-r--r--accel-pptpd/triton/timer.c80
-rw-r--r--accel-pptpd/triton/triton.c104
-rw-r--r--accel-pptpd/triton/triton.h61
-rw-r--r--accel-pptpd/triton/triton_p.h45
21 files changed, 421 insertions, 336 deletions
diff --git a/accel-pptpd/CMakeLists.txt b/accel-pptpd/CMakeLists.txt
index 5e42403..d68cbe9 100644
--- a/accel-pptpd/CMakeLists.txt
+++ b/accel-pptpd/CMakeLists.txt
@@ -1,12 +1,12 @@
PROJECT (pptpd)
cmake_minimum_required(VERSION 2.6)
-SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
+SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -fvisibility=hidden -D_GNU_SOURCE")
ADD_SUBDIRECTORY(triton)
ADD_EXECUTABLE(pptpd
- pptpd.c
+ main.c
pptp.c
log.c
ppp.c
diff --git a/accel-pptpd/ipcp_opt_ipaddr.c b/accel-pptpd/ipcp_opt_ipaddr.c
index 8eae84b..206c2e6 100644
--- a/accel-pptpd/ipcp_opt_ipaddr.c
+++ b/accel-pptpd/ipcp_opt_ipaddr.c
@@ -12,7 +12,7 @@ static void ipaddr_free(struct ppp_ipcp_t *ipcp, struct ipcp_option_t *opt);
static int ipaddr_send_conf_req(struct ppp_ipcp_t *ipcp, struct ipcp_option_t *opt, uint8_t *ptr);
static int ipaddr_send_conf_nak(struct ppp_ipcp_t *ipcp, struct ipcp_option_t *opt, uint8_t *ptr);
static int ipaddr_recv_conf_req(struct ppp_ipcp_t *ipcp, struct ipcp_option_t *opt, uint8_t *ptr);
-static int ipaddr_recv_conf_ack(struct ppp_ipcp_t *ipcp, struct ipcp_option_t *opt, uint8_t *ptr);
+//static int ipaddr_recv_conf_ack(struct ppp_ipcp_t *ipcp, struct ipcp_option_t *opt, uint8_t *ptr);
static void ipaddr_print(void (*print)(const char *fmt,...),struct ipcp_option_t*, uint8_t *ptr);
struct ipaddr_option_t
diff --git a/accel-pptpd/main.c b/accel-pptpd/main.c
index ff74305..90f206d 100644
--- a/accel-pptpd/main.c
+++ b/accel-pptpd/main.c
@@ -1,17 +1,82 @@
+#include <signal.h>
+#include <string.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <sys/stat.h>
+
#include "triton/triton.h"
-#include "log.h"
void sigterm(int num)
{
- triton_terminate();
}
int main(int argc,char **argv)
{
+ int i;
+ int daemon=0;
+ char *pid_file=NULL;
+ char *conf_file=NULL;
sigset_t set;
- log_init(stdout,4,0);
+ if (argc<2)
+ goto usage;
+
+ for(i=1; i<argc; i++)
+ {
+ if (!strcmp(argv[i],"-d"))
+ daemon=1;
+ else if (!strcmp(argv[i],"-p"))
+ {
+ if (i==argc-1)
+ goto usage;
+ pid_file=argv[++i];
+ }
+ else if (!strcmp(argv[i],"-c"))
+ {
+ if (i==argc-1)
+ goto usage;
+ conf_file=argv[++i];
+ }
+ }
+
+ if (!conf_file)
+ goto usage;
+
+ if (triton_init(conf_file))
+ return EXIT_FAILURE;
- triton_init();
+ if (daemon)
+ {
+ pid_t pid=fork();
+ if (pid>0)
+ _exit(EXIT_SUCCESS);
+ if (pid<0)
+ {
+ perror("fork");
+ return EXIT_FAILURE;
+ }
+ if (setsid()<0)
+ return EXIT_FAILURE;
+ pid=fork();
+ if (pid)
+ _exit(0);
+ umask(0);
+ chdir("/");
+ close(STDIN_FILENO);
+ close(STDOUT_FILENO);
+ close(STDERR_FILENO);
+ }
+
+ if (pid_file)
+ {
+ FILE *f=fopen("pid_file","w");
+ if (f)
+ {
+ fprintf(f,"%i",getpid());
+ fclose(f);
+ }
+ }
+
triton_run();
signal(SIGTERM,sigterm);
@@ -23,7 +88,16 @@ int main(int argc,char **argv)
sigdelset(&set, SIGBUS);
sigsuspend(&set);
+
+ triton_terminate();
return EXIT_SUCCESS;
+usage:
+ printf("usage: pptpd [-d] [-p <file>] -c <file>\
+ where:\
+ -d - daemon mode\
+ -p - write pid to <file>\
+ -c - config file\n");
+ return EXIT_FAILURE;
}
diff --git a/accel-pptpd/ppp.c b/accel-pptpd/ppp.c
index 518f757..b438871 100644
--- a/accel-pptpd/ppp.c
+++ b/accel-pptpd/ppp.c
@@ -25,8 +25,8 @@ struct layer_node_t
struct list_head items;
};
-static void ppp_chan_read(struct triton_md_handler_t*);
-static void ppp_unit_read(struct triton_md_handler_t*);
+static int ppp_chan_read(struct triton_md_handler_t*);
+static int ppp_unit_read(struct triton_md_handler_t*);
static void init_layers(struct ppp_t *);
static void start_first_layer(struct ppp_t *);
@@ -103,10 +103,10 @@ int establish_ppp(struct ppp_t *ppp)
ppp->chan_hnd.fd=ppp->chan_fd;
ppp->chan_hnd.read=ppp_chan_read;
- ppp->chan_hnd.twait=-1;
+ //ppp->chan_hnd.twait=-1;
ppp->unit_hnd.fd=ppp->unit_fd;
ppp->unit_hnd.read=ppp_unit_read;
- ppp->unit_hnd.twait=-1;
+ //ppp->unit_hnd.twait=-1;
triton_md_register_handler(&ppp->chan_hnd);
triton_md_register_handler(&ppp->unit_hnd);
@@ -142,7 +142,7 @@ void destablish_ppp(struct ppp_t *ppp)
log_debug("ppp destablished\n");
- if (ppp->events.finished) ppp->events.finished(ppp);
+ ppp->ctrl->finished(ppp);
}
void print_buf(uint8_t *buf,int size)
@@ -179,7 +179,7 @@ int ppp_unit_send(struct ppp_t *ppp, void *data, int size)
return n;
}
-static void ppp_chan_read(struct triton_md_handler_t*h)
+static int ppp_chan_read(struct triton_md_handler_t*h)
{
struct ppp_t *ppp=container_of(h,typeof(*ppp),chan_hnd);
struct ppp_handler_t *ppp_h;
@@ -193,7 +193,7 @@ static void ppp_chan_read(struct triton_md_handler_t*h)
if (ppp->chan_buf_size<2)
{
log_error("ppp_chan_read: short read %i\n",ppp->chan_buf_size);
- return;
+ return 0;
}
proto=ntohs(*(uint16_t*)ppp->chan_buf);
@@ -202,14 +202,15 @@ static void ppp_chan_read(struct triton_md_handler_t*h)
if (ppp_h->proto==proto)
{
ppp_h->recv(ppp_h);
- return;
+ return 0;
}
}
log_warn("ppp_chan_read: discarding unknown packet %x\n",proto);
+ return 0;
}
-static void ppp_unit_read(struct triton_md_handler_t*h)
+static int ppp_unit_read(struct triton_md_handler_t*h)
{
struct ppp_t *ppp=container_of(h,typeof(*ppp),unit_hnd);
struct ppp_handler_t *ppp_h;
@@ -223,7 +224,7 @@ static void ppp_unit_read(struct triton_md_handler_t*h)
if (ppp->unit_buf_size<2)
{
log_error("ppp_chan_read: short read %i\n",ppp->unit_buf_size);
- return;
+ return 0;
}
proto=ntohs(*(uint16_t*)ppp->unit_buf);
@@ -232,11 +233,12 @@ static void ppp_unit_read(struct triton_md_handler_t*h)
if (ppp_h->proto==proto)
{
ppp_h->recv(ppp_h);
- return;
+ return 0;
}
}
log_warn("ppp_chan_read: discarding unknown packet %x\n",proto);
+ return 0;
}
void ppp_layer_started(struct ppp_t *ppp, struct ppp_layer_data_t *d)
@@ -250,7 +252,7 @@ void ppp_layer_started(struct ppp_t *ppp, struct ppp_layer_data_t *d)
if (n->entry.next==&ppp->layers)
{
- if (ppp->events.started) ppp->events.started(ppp);
+ ppp->ctrl->started(ppp);
}else
{
n=list_entry(n->entry.next,typeof(*n),entry);
diff --git a/accel-pptpd/ppp.h b/accel-pptpd/ppp.h
index 39a0d41..6dd05be 100644
--- a/accel-pptpd/ppp.h
+++ b/accel-pptpd/ppp.h
@@ -52,8 +52,9 @@
struct ppp_t;
-struct ppp_events_t
+struct ppp_ctrl_t
{
+ struct triton_ctx_t *ctx;
void (*started)(struct ppp_t*);
void (*finished)(struct ppp_t*);
};
@@ -71,7 +72,7 @@ struct ppp_t
char *chan_name;
- struct ppp_events_t events;
+ struct ppp_ctrl_t *ctrl;
int log:1;
diff --git a/accel-pptpd/ppp_ccp.c b/accel-pptpd/ppp_ccp.c
index 3c8c5cd..4bceb5b 100644
--- a/accel-pptpd/ppp_ccp.c
+++ b/accel-pptpd/ppp_ccp.c
@@ -528,14 +528,14 @@ static void ccp_recv(struct ppp_handler_t*h)
ppp_fsm_recv_conf_rej(&ccp->fsm);
break;
case TERMREQ:
- term_msg=strndup((uint8_t*)(hdr+1),ntohs(hdr->len));
+ term_msg=strndup((char*)(hdr+1),ntohs(hdr->len));
log_debug("recv [CCP TermReq id=%x \"%s\"]\n",hdr->id,term_msg);
free(term_msg);
ppp_fsm_recv_term_req(&ccp->fsm);
ppp_terminate(ccp->ppp);
break;
case TERMACK:
- term_msg=strndup((uint8_t*)(hdr+1),ntohs(hdr->len));
+ term_msg=strndup((char*)(hdr+1),ntohs(hdr->len));
log_debug("recv [CCP TermAck id=%x \"%s\"]\n",hdr->id,term_msg);
free(term_msg);
ppp_fsm_recv_term_ack(&ccp->fsm);
diff --git a/accel-pptpd/ppp_fsm.c b/accel-pptpd/ppp_fsm.c
index 41436eb..72a42d0 100644
--- a/accel-pptpd/ppp_fsm.c
+++ b/accel-pptpd/ppp_fsm.c
@@ -29,10 +29,7 @@ static int restart_timer_func(struct triton_timer_t*t);
void ppp_fsm_init(struct ppp_fsm_t *layer)
{
layer->fsm_state=FSM_Initial;
- layer->restart_timer.active=0;
- layer->restart_timer.pd=layer;
- layer->restart_timer.expire=restart_timer_func;
- layer->restart_timer.period=3000;
+ //layer->restart_timer.active=0;
layer->restart_counter=0;
layer->max_terminate=2;
layer->max_configure=10;
@@ -461,20 +458,20 @@ void send_term_ack(struct ppp_fsm_t *layer)
static void init_req_counter(struct ppp_fsm_t *layer,int timeout)
{
- triton_timer_del(&layer->restart_timer);
+ //triton_timer_del(&layer->restart_timer);
layer->restart_timer.expire_tv.tv_sec=0;
- triton_timer_add(&layer->restart_timer);
+ //triton_timer_add(&layer->restart_timer);
layer->restart_counter=timeout;
}
static void zero_req_counter(struct ppp_fsm_t *layer)
{
- triton_timer_del(&layer->restart_timer);
+ //triton_timer_del(&layer->restart_timer);
layer->restart_timer.expire_tv.tv_sec=0;
- triton_timer_add(&layer->restart_timer);
+ //triton_timer_add(&layer->restart_timer);
layer->restart_counter=0;
}
-static int restart_timer_func(struct triton_timer_t*t)
+/*static int restart_timer_func(struct triton_timer_t*t)
{
struct ppp_fsm_t *layer=(struct ppp_fsm_t *)t->pd;
@@ -486,4 +483,5 @@ static int restart_timer_func(struct triton_timer_t*t)
ppp_fsm_timeout1(layer);
return 0;
-}
+}*/
+
diff --git a/accel-pptpd/ppp_ipcp.c b/accel-pptpd/ppp_ipcp.c
index fc25230..ad552bd 100644
--- a/accel-pptpd/ppp_ipcp.c
+++ b/accel-pptpd/ppp_ipcp.c
@@ -519,14 +519,14 @@ static void ipcp_recv(struct ppp_handler_t*h)
ppp_fsm_recv_conf_rej(&ipcp->fsm);
break;
case TERMREQ:
- term_msg=strndup((uint8_t*)(hdr+1),ntohs(hdr->len));
+ term_msg=strndup((char*)(hdr+1),ntohs(hdr->len));
log_debug("recv [IPCP TermReq id=%x \"%s\"]\n",hdr->id,term_msg);
free(term_msg);
ppp_fsm_recv_term_req(&ipcp->fsm);
ppp_terminate(ipcp->ppp);
break;
case TERMACK:
- term_msg=strndup((uint8_t*)(hdr+1),ntohs(hdr->len));
+ term_msg=strndup((char*)(hdr+1),ntohs(hdr->len));
log_debug("recv [IPCP TermAck id=%x \"%s\"]\n",hdr->id,term_msg);
free(term_msg);
ppp_fsm_recv_term_ack(&ipcp->fsm);
diff --git a/accel-pptpd/ppp_lcp.c b/accel-pptpd/ppp_lcp.c
index dbc819a..1f0431a 100644
--- a/accel-pptpd/ppp_lcp.c
+++ b/accel-pptpd/ppp_lcp.c
@@ -532,14 +532,14 @@ static void lcp_recv(struct ppp_handler_t*h)
ppp_fsm_recv_conf_rej(&lcp->fsm);
break;
case TERMREQ:
- term_msg=strndup((uint8_t*)(hdr+1),ntohs(hdr->len));
+ term_msg=strndup((char*)(hdr+1),ntohs(hdr->len));
log_debug("recv [LCP TermReq id=%x \"%s\"]\n",hdr->id,term_msg);
free(term_msg);
ppp_fsm_recv_term_req(&lcp->fsm);
ppp_terminate(lcp->ppp);
break;
case TERMACK:
- term_msg=strndup((uint8_t*)(hdr+1),ntohs(hdr->len));
+ term_msg=strndup((char*)(hdr+1),ntohs(hdr->len));
log_debug("recv [LCP TermAck id=%x \"%s\"]\n",hdr->id,term_msg);
free(term_msg);
ppp_fsm_recv_term_ack(&lcp->fsm);
diff --git a/accel-pptpd/pptp.c b/accel-pptpd/pptp.c
index a261b19..1ec35c8 100644
--- a/accel-pptpd/pptp.c
+++ b/accel-pptpd/pptp.c
@@ -50,20 +50,22 @@ struct pptp_conn_t
int out_size;
int out_pos;
+ struct ppp_ctrl_t ctrl;
struct ppp_t ppp;
};
-static void pptp_read(struct triton_md_handler_t *h);
-static void pptp_write(struct triton_md_handler_t *h);
+static int pptp_read(struct triton_md_handler_t *h);
+static int pptp_write(struct triton_md_handler_t *h);
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 disconnect(struct pptp_conn_t *conn)
{
- close(conn->hnd.fd);
triton_md_unregister_handler(&conn->hnd);
- free(conn);
+ close(conn->hnd.fd);
+ conn->hnd.fd=-1;
+ triton_unregister_ctx(&conn->ctx);
}
static int post_msg(struct pptp_conn_t *conn,void *buf,int size)
@@ -125,7 +127,7 @@ static int pptp_stop_ctrl_conn_rqst(struct pptp_conn_t *conn)
ppp_terminate(&conn->ppp);
conn->state=STATE_FIN;
- conn->hnd.twait=1000;
+ //conn->hnd.twait=1000;
return send_pptp_stop_ctrl_conn_rply(conn,PPTP_CONN_STOP_OK,0);
}
@@ -258,14 +260,16 @@ static int pptp_out_call_rqst(struct pptp_conn_t *conn)
conn->ppp.fd=pptp_sock;
conn->ppp.chan_name=strdup(inet_ntoa(dst_addr.sa_addr.pptp.sin_addr));
- conn->ppp.events.started=ppp_started;
- conn->ppp.events.finished=ppp_finished;
+ conn->ppp.ctrl=&conn->ctrl;
+ conn->ctrl.ctx=&conn->ctx;
+ conn->ctrl.started=ppp_started;
+ conn->ctrl.finished=ppp_finished;
if (establish_ppp(&conn->ppp))
{
close(pptp_sock);
send_pptp_stop_ctrl_conn_rqst(conn,0,0);
conn->state=STATE_FIN;
- conn->hnd.twait=1000;
+ //conn->hnd.twait=1000;
}else conn->state=STATE_PPP;
return 0;
@@ -286,7 +290,7 @@ static int process_packet(struct pptp_conn_t *conn)
return 0;
}
-static void pptp_read(struct triton_md_handler_t *h)
+static int pptp_read(struct triton_md_handler_t *h)
{
struct pptp_conn_t *conn=container_of(h,typeof(*conn),hnd);
struct pptp_header *hdr=(struct pptp_header *)conn->in_buf;
@@ -295,9 +299,8 @@ static void pptp_read(struct triton_md_handler_t *h)
n=read(h->fd,conn->in_buf,PPTP_CTRL_SIZE_MAX-conn->in_size);
if (n<=0)
{
- if (errno==EAGAIN) return;
- disconnect(conn);
- return;
+ if (errno==EAGAIN) return 0;
+ goto drop;
}
conn->in_size+=n;
if (conn->in_size>=sizeof(*hdr))
@@ -312,25 +315,25 @@ static void pptp_read(struct triton_md_handler_t *h)
conn->in_size=0;
}
}
- h->twait=TIMEOUT;
- return;
+ //h->twait=TIMEOUT;
+ return 0;
drop:
disconnect(conn);
- return;
+ return 1;
}
-static void pptp_write(struct triton_md_handler_t *h)
+static int pptp_write(struct triton_md_handler_t *h)
{
struct pptp_conn_t *conn=container_of(h,typeof(*conn),hnd);
int n=write(h->fd,conn->out_buf+conn->out_pos,conn->out_size-conn->out_pos);
if (n<0)
{
- if (errno==EINTR) n=0;
+ if (errno==EAGAIN) n=0;
else
{
log_debug("post_msg: failed to write socket %i\n",errno);
disconnect(conn);
- return;
+ return 1;
}
}
@@ -341,12 +344,27 @@ static void pptp_write(struct triton_md_handler_t *h)
conn->out_size=0;
triton_md_disable_handler(h,MD_MODE_WRITE);
}
- h->twait=TIMEOUT;
+ return 0;
+ //h->twait=TIMEOUT;
}
static void pptp_timeout(struct triton_md_handler_t *h)
{
}
-
+static void pptp_close(struct triton_ctx_t *ctx)
+{
+ struct pptp_conn_t *conn=container_of(ctx,typeof(*conn),ctx);
+ if (conn->state==STATE_PPP)
+ ppp_terminate(&conn->ppp);
+ else
+ disconnect(conn);
+}
+static void pptp_free(struct triton_ctx_t *ctx)
+{
+ struct pptp_conn_t *conn=container_of(ctx,typeof(*conn),ctx);
+ free(conn->in_buf);
+ free(conn->out_buf);
+ free(conn);
+}
static void ppp_started(struct ppp_t *ppp)
{
log_msg("ppp_started\n");
@@ -359,11 +377,17 @@ static void ppp_finished(struct ppp_t *ppp)
close(conn->ppp.fd);
send_pptp_stop_ctrl_conn_rqst(conn,0,0);
conn->state=STATE_FIN;
- conn->hnd.twait=1000;
+ //conn->hnd.twait=1000;
}
//==================================
+struct pptp_serv_t
+{
+ struct triton_ctx_t ctx;
+ struct triton_md_handler_t hnd;
+};
+
static int pptp_connect(struct triton_md_handler_t *h)
{
struct sockaddr_in addr;
@@ -373,7 +397,7 @@ static int pptp_connect(struct triton_md_handler_t *h)
while(1)
{
- sock=accept(f->fd,(struct sockaddr *)&addr,&size);
+ sock=accept(h->fd,(struct sockaddr *)&addr,&size);
if (sock<0)
{
if (errno==EAGAIN)
@@ -383,10 +407,11 @@ static int pptp_connect(struct triton_md_handler_t *h)
}
conn=malloc(sizeof(*conn));
memset(conn,0,sizeof(*conn));
- conn->hnd.fd=fd;
+ conn->hnd.fd=sock;
conn->hnd.read=pptp_read;
conn->hnd.write=pptp_write;
- conn->hnd.close=pptp_close;
+ conn->ctx.close=pptp_close;
+ conn->ctx.free=pptp_free;
conn->hnd.ctx=&conn->ctx;
conn->in_buf=malloc(PPTP_CTRL_SIZE_MAX);
conn->out_buf=malloc(PPTP_CTRL_SIZE_MAX);
@@ -397,29 +422,23 @@ static int pptp_connect(struct triton_md_handler_t *h)
}
return 0;
}
-static void pptp_serv_close(struct triton_md_handler_t *h)
+static void pptp_serv_close(struct triton_ctx_t *ctx)
{
- triton_md_unregister_handler(h);
- close(h->fd);
+ struct pptp_serv_t *s=container_of(ctx,typeof(*s),ctx);
+ triton_md_unregister_handler(&s->hnd);
+ close(s->hnd.fd);
}
-struct pptp_serv_t
-{
- struct triton_context_t ctx;
- struct triton_md_handler_t hnd;
-};
-
static struct pptp_serv_t serv=
{
.hnd.read=pptp_connect,
- .hnd.close=pptp_serv_close,
+ .ctx.close=pptp_serv_close,
.hnd.ctx=&serv.ctx,
};
void __init pptp_init()
{
struct sockaddr_in addr;
- socklen_t size;
serv.hnd.fd=socket (PF_INET, SOCK_STREAM, 0);
if (serv.hnd.fd<0)
@@ -442,7 +461,7 @@ void __init pptp_init()
{
log_error("pptp: failed to listen socket\n");
close(serv.hnd.fd);
- return -1;
+ return;
}
triton_register_ctx(&serv.ctx);
diff --git a/accel-pptpd/triton/CMakeLists.txt b/accel-pptpd/triton/CMakeLists.txt
index f2de017..a531438 100644
--- a/accel-pptpd/triton/CMakeLists.txt
+++ b/accel-pptpd/triton/CMakeLists.txt
@@ -1,10 +1,11 @@
SET(target triton)
SET(sources_c
md.c
- conf_file.c
timer.c
- options.c
+ triton.c
+ conf_file.c
loader.c
+ log.c
)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
diff --git a/accel-pptpd/triton/conf_file.c b/accel-pptpd/triton/conf_file.c
index 3ddb649..026c4d3 100644
--- a/accel-pptpd/triton/conf_file.c
+++ b/accel-pptpd/triton/conf_file.c
@@ -3,14 +3,13 @@
#include <unistd.h>
#include <stdlib.h>
-#include "conf_file.h"
#include "triton_p.h"
struct sect_t
{
struct list_head entry;
- struct conf_file_sect_t *sect;
+ struct conf_sect_t *sect;
};
static LIST_HEAD(sections);
@@ -18,22 +17,22 @@ static LIST_HEAD(sections);
static char* skip_space(char *str);
static char* skip_word(char *str);
-static struct conf_file_sect_t *find_sect(const char *name);
-static struct conf_file_sect_t *create_sect(const char *name);
-static void sect_add_item(struct conf_file_sect_t *sect,const char *name,const char *val);
-static struct option_t *find_item(struct conf_file_sect_t *,const char *name);
+static struct conf_sect_t *find_sect(const char *name);
+static struct conf_sect_t *create_sect(const char *name);
+static void sect_add_item(struct conf_sect_t *sect,const char *name,const char *val);
+static struct conf_option_t *find_item(struct conf_sect_t *,const char *name);
-void conf_file_load(const char *fname)
+int conf_load(const char *fname)
{
char *buf,*str,*str2;
char *path0,*path;
int cur_line=0;
- static struct conf_file_sect_t *cur_sect=NULL;
+ static struct conf_sect_t *cur_sect=NULL;
FILE *f=fopen(fname,"r");
if (!f)
{
- perror("triton: open conf file");
- return;
+ perror("conf_file: open");
+ return -1;
}
buf=(char*)malloc(1024);
@@ -62,7 +61,7 @@ void conf_file_load(const char *fname)
strcat(path,str+1);
str=path;
}*/
- conf_file_load(str);
+ conf_load(str);
continue;
}
if (*str=='[')
@@ -71,8 +70,8 @@ void conf_file_load(const char *fname)
if (*str2!=']')
{
//L1:
- printf("triton: sintax error in conf file %s line %i\n",fname,cur_line);
- return;
+ fprintf(stderr,"conf_file:%s:%i: sintax error\n",fname,cur_line);
+ return -1;
}
*str2=0;
cur_sect=find_sect(str);
@@ -81,8 +80,8 @@ void conf_file_load(const char *fname)
}
if (!cur_sect)
{
- printf("triton: no section opened in conf file %s line %i\n",fname,cur_line);
- return;
+ fprintf(stderr,"conf_file:%s:%i: no section opened\n",fname,cur_line);
+ return -1;
}
str2=skip_word(str);
if (*str2==' ')
@@ -98,7 +97,7 @@ void conf_file_load(const char *fname)
if (*str2 && *(str2+1) && *str2=='$' && *(str2+1)=='{')
{
char *s;
- struct option_t *opt;
+ struct conf_option_t *opt;
for (s=str2+2; *s && *s!='}'; s++);
if (*s=='}')
{
@@ -108,8 +107,8 @@ void conf_file_load(const char *fname)
opt=find_item(cur_sect,str2);
if (!opt)
{
- printf("triton: parent option not found int conf file %s line %i\n",fname,cur_line);
- return;
+ fprintf(stderr,"conf_file:%s:%i: parent option not found\n",fname,cur_line);
+ return -1;
}
str2=opt->val;
}
@@ -121,6 +120,8 @@ void conf_file_load(const char *fname)
free(path);
free(path0);
fclose(f);
+
+ return 0;
}
static char* skip_space(char *str)
@@ -134,7 +135,7 @@ static char* skip_word(char *str)
return str;
}
-static struct conf_file_sect_t *find_sect(const char *name)
+static struct conf_sect_t *find_sect(const char *name)
{
struct sect_t *s;
list_for_each_entry(s,&sections,entry)
@@ -144,11 +145,11 @@ static struct conf_file_sect_t *find_sect(const char *name)
return NULL;
}
-static struct conf_file_sect_t *create_sect(const char *name)
+static struct conf_sect_t *create_sect(const char *name)
{
struct sect_t *s=(struct sect_t *)malloc(sizeof(struct sect_t));
- s->sect=(struct conf_file_sect_t*)malloc(sizeof(struct conf_file_sect_t));
+ s->sect=(struct conf_sect_t*)malloc(sizeof(struct conf_sect_t));
s->sect->name=(char*)strdup(name);
INIT_LIST_HEAD(&s->sect->items);
@@ -157,9 +158,9 @@ static struct conf_file_sect_t *create_sect(const char *name)
return s->sect;
}
-static void sect_add_item(struct conf_file_sect_t *sect,const char *name,const char *val)
+static void sect_add_item(struct conf_sect_t *sect,const char *name,const char *val)
{
- struct option_t *opt=(struct option_t *)malloc(sizeof(struct option_t));
+ struct conf_option_t *opt=(struct conf_option_t *)malloc(sizeof(struct conf_option_t));
opt->name=(char*)strdup(name);
opt->val=val?(char*)strdup(val):NULL;
@@ -167,9 +168,9 @@ static void sect_add_item(struct conf_file_sect_t *sect,const char *name,const c
list_add_tail(&opt->entry,&sect->items);
}
-static struct option_t *find_item(struct conf_file_sect_t *sect,const char *name)
+static struct conf_option_t *find_item(struct conf_sect_t *sect,const char *name)
{
- struct option_t *opt;
+ struct conf_option_t *opt;
list_for_each_entry(opt,&sect->items,entry)
{
if (strcmp(opt->name,name)==0)
@@ -179,7 +180,8 @@ static struct option_t *find_item(struct conf_file_sect_t *sect,const char *name
return NULL;
}
-struct conf_file_sect_t *conf_file_get_section(const char *name)
+struct conf_sect_t *conf_file_get_section(const char *name)
{
return find_sect(name);
}
+
diff --git a/accel-pptpd/triton/conf_file.h b/accel-pptpd/triton/conf_file.h
deleted file mode 100644
index 47ade31..0000000
--- a/accel-pptpd/triton/conf_file.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef CONF_FILE_H
-#define CONF_FILE_H
-
-#include "list.h"
-
-struct conf_file_sect_t
-{
- const char *name;
-
- struct list_head items;
-};
-
-void conf_file_load(const char *fname);
-struct conf_file_sect_t *conf_file_get_section(const char *name);
-
-#endif
diff --git a/accel-pptpd/triton/loader.c b/accel-pptpd/triton/loader.c
index 33d4831..a390f0a 100644
--- a/accel-pptpd/triton/loader.c
+++ b/accel-pptpd/triton/loader.c
@@ -4,52 +4,5 @@
#include <stdio.h>
#include <pthread.h>
-#include "conf_file.h"
#include "triton_p.h"
-void md_init(void);
-void event_init(void);
-void timer_init(void);
-
-struct thread_arg_t
-{
- int (*post_init)(void*);
- void *arg;
-};
-
-void *thread(struct thread_arg_t *arg)
-{
- printf("triton: starting new thread\n");
- #ifdef USE_CORO
- coroutine_init();
- #endif
- md_init();
- event_init();
- timer_init();
-
- arg->post_init(arg->arg);
-
- free(arg);
-
- //conf_file_load(cf_name);
- #ifdef USE_CORO
- schedule();
- #else
- md_run();
- #endif
-
- return NULL;
-}
-
-int triton_init(const char *conf_file)
-{
- return 0;
-}
-int triton_run(int (*post_init)(void*),void *arg)
-{
- pthread_t thr;
- struct thread_arg_t *thr_arg=malloc(sizeof(*thr_arg));
- thr_arg->post_init=post_init;
- thr_arg->arg=arg;
- return pthread_create(&thr,NULL,(void*(*)(void*))thread,thr_arg);
-}
diff --git a/accel-pptpd/triton/log.c b/accel-pptpd/triton/log.c
new file mode 100644
index 0000000..39a9cb1
--- /dev/null
+++ b/accel-pptpd/triton/log.c
@@ -0,0 +1,34 @@
+#include <stdio.h>
+
+#include "triton_p.h"
+
+static FILE *f_error;
+static FILE *f_debug;
+
+int log_init(void)
+{
+ char *log_error=conf_get_opt("core","log_error");
+ char *log_debug=conf_get_opt("core","log_debug");
+
+ if (log_error)
+ {
+ f_error=fopen(log_error,"a");
+ if (!f_error)
+ {
+ perror("log:log_error:open");
+ return -1;
+ }
+ }
+ if (log_debug)
+ {
+ f_debug=fopen(log_debug,"a");
+ if (!f_debug)
+ {
+ perror("log:log_debug:open");
+ return -1;
+ }
+ }
+
+ return 0;
+}
+
diff --git a/accel-pptpd/triton/md.c b/accel-pptpd/triton/md.c
index 3080c5a..50e969c 100644
--- a/accel-pptpd/triton/md.c
+++ b/accel-pptpd/triton/md.c
@@ -3,6 +3,7 @@
#include <sys/time.h>
#include <signal.h>
#include <string.h>
+#include <errno.h>
#include "triton_p.h"
@@ -12,9 +13,9 @@ static int epoll_fd;
static struct epoll_event *epoll_events;
static pthread_t md_thr;
-static void* md_thread(void *arg)
+static void* md_thread(void *arg);
-int md_init()
+int md_init(void)
{
epoll_fd=epoll_create(1);
if (epoll_fd<0)
@@ -34,40 +35,42 @@ int md_init()
}
void md_run()
{
- pthread_create(&md_thr,md_thread,NULL);
+ pthread_create(&md_thr,NULL,md_thread,NULL);
}
void md_terminate()
{
- pthread_join(&md_thr);
+ pthread_cancel(md_thr);
+ pthread_join(md_thr,NULL);
}
static void* md_thread(void *arg)
{
int i,n,r;
struct triton_md_handler_t *h;
-
- n=epoll_wait(epoll_fd,epoll_events,MAX_EVENTS,-1);
- if (n<0)
- {
- if (errno!=EINTR)
- perror("epoll_wait");
- continue;
- }
- if (n==0)
- return;
-
- for(i=0; i<n; i++)
+
+ while(1)
{
- h=(struct triton_md_handler_t*)epoll_events[i].data.ptr;
- spin_lock(&h->ctx->lock);
- h->trig_epoll_events=epoll_events[i].events;
- list_add_tail(&h->entry2,&h->ctx->pending_handlers);
- h->pending=1;
- r=triton_queue_ctx(h->ctx);
- spin_unlock(&h->ctx->lock);
- if (r)
- triton_thread_wakeup(ctx->thread);
+ n=epoll_wait(epoll_fd,epoll_events,max_events,-1);
+ if (n<0)
+ {
+ if (errno!=EINTR)
+ perror("epoll_wait");
+ continue;
+ }
+
+ for(i=0; i<n; i++)
+ {
+ h=(struct triton_md_handler_t*)epoll_events[i].data.ptr;
+ spin_lock(&h->ctx->lock);
+ h->trig_epoll_events=epoll_events[i].events;
+ list_add_tail(&h->entry2,&h->ctx->pending_handlers);
+ h->pending=1;
+ r=triton_queue_ctx(h->ctx);
+ spin_unlock(&h->ctx->lock);
+ if (r)
+ triton_thread_wakeup(h->ctx->thread);
+ }
}
}
@@ -76,17 +79,17 @@ void triton_md_register_handler(struct triton_md_handler_t *h)
h->epoll_event.data.ptr=h;
if (!h->ctx)
h->ctx=default_ctx;
- pthread_mutex_lock(&h->ctx->lock);
+ spin_lock(&h->ctx->lock);
list_add_tail(&h->entry,&h->ctx->handlers);
- pthread_mutex_unlock(&h->ctx->lock);
+ spin_unlock(&h->ctx->lock);
}
void triton_md_unregister_handler(struct triton_md_handler_t *h)
{
- pthread_mutex_lock(&h->ctx->lock);
+ spin_lock(&h->ctx->lock);
list_del(&h->entry);
if (h->pending)
list_del(&h->entry2);
- pthread_lock_unlock(&h->ctx->lock);
+ spin_unlock(&h->ctx->lock);
}
int triton_md_enable_handler(struct triton_md_handler_t *h, int mode)
{
@@ -109,7 +112,9 @@ int triton_md_enable_handler(struct triton_md_handler_t *h, int mode)
}
int triton_md_disable_handler(struct triton_md_handler_t *h,int mode)
{
- if (h->epoll_events.events)
+ int r;
+
+ if (!h->epoll_event.events)
return -1;
if (mode&MD_MODE_READ)
diff --git a/accel-pptpd/triton/spinlock.h b/accel-pptpd/triton/spinlock.h
index a75e29c..7da93f8 100644
--- a/accel-pptpd/triton/spinlock.h
+++ b/accel-pptpd/triton/spinlock.h
@@ -2,15 +2,17 @@
#define __TRITON_SPINLOCK_H
#ifdef USE_SPINLOCK
-typedef spinlock_t unsigned char;
+typedef unsigned char spinlock_t;
#define spin_lock(l) {while(__sync_lock_test_and_set(l,1);}
#define spin_unlock(l) __sync_lock_release(l)
#define SPINLOCK_INITIALIZER 0
#else
-typedef spinlock_t pthread_mutex_t;
+#include <pthread.h>
+typedef pthread_mutex_t spinlock_t;
#define spin_lock(l) pthread_mutex_lock(l)
#define spin_unlock(l) pthread_mutex_unlock(l)
#define SPINLOCK_INITIALIZER PTHREAD_MUTEX_INITIALIZER
+#define spinlock_init(l) pthread_mutex_init(l,NULL)
#endif
#endif
diff --git a/accel-pptpd/triton/timer.c b/accel-pptpd/triton/timer.c
index 57270f6..3adbde5 100644
--- a/accel-pptpd/triton/timer.c
+++ b/accel-pptpd/triton/timer.c
@@ -4,22 +4,19 @@
#include <sys/epoll.h>
#include <sys/timerfd.h>
#include <string.h>
+#include <errno.h>
+#include <unistd.h>
#include "triton_p.h"
-static pthread_thread_t timer_thr;
-static void *timer_thread(void *arg);
-
-static spinlock_t timers_lock=SPINLOCK_INITIALIZER;
-static LIST_HEAD(timers);
-
-extern int max_events;
-static epoll_fd;
+int max_events=128;
+static int epoll_fd;
static struct epoll_event *epoll_events;
-static void tv_add(struct timeval *tv,int msec);
+static pthread_t timer_thr;
+static void *timer_thread(void *arg);
-void timer_init(void)
+int timer_init(void)
{
epoll_fd=epoll_create(1);
if (epoll_fd<0)
@@ -34,6 +31,8 @@ void timer_init(void)
fprintf(stderr,"cann't allocate memory\n");
return -1;
}
+
+ return 0;
}
void timer_run(void)
@@ -43,8 +42,8 @@ void timer_run(void)
void timer_terminate(void)
{
- pthread_cancel(&timer_thr);
- pthread_join(&timer_thr);
+ pthread_cancel(timer_thr);
+ pthread_join(timer_thr,NULL);
}
void *timer_thread(void *arg)
@@ -52,43 +51,44 @@ void *timer_thread(void *arg)
int i,n,r;
struct triton_timer_t *t;
- n=epoll_wait(epoll_fd,epoll_events,MAX_EVENTS,-1);
- if (n<0)
+ while(1)
{
- if (errno!=EINTR)
- perror("epoll_wait");
- continue;
- }
- if (n==0)
- return;
-
- for(i=0; i<n; i++)
- {
- t=(struct triton_md_handler_t*)epoll_events[i].data.ptr;
- spin_lock(&t->ctx->lock);
- list_add_tail(&t->entry2,&t->ctx->pending_timers);
- t->pending=1;
- r=triton_queue_ctx(t->ctx);
- spin_unlock(&t->ctx->lock);
- if (r)
- triton_thread_wakeup(ctx->thread);
+ n=epoll_wait(epoll_fd,epoll_events,max_events,-1);
+ if (n<0)
+ {
+ if (errno!=EINTR)
+ perror("epoll_wait");
+ continue;
+ }
+
+ for(i=0; i<n; i++)
+ {
+ t=(struct triton_timer_t*)epoll_events[i].data.ptr;
+ spin_lock(&t->ctx->lock);
+ list_add_tail(&t->entry2,&t->ctx->pending_timers);
+ t->pending=1;
+ r=triton_queue_ctx(t->ctx);
+ spin_unlock(&t->ctx->lock);
+ if (r)
+ triton_thread_wakeup(t->ctx->thread);
+ }
}
}
-int triton_timer_add(struct triton_timer_t *t)
+int triton_timer_add(struct triton_timer_t *t, int abs_time)
{
t->epoll_event.data.ptr=t;
t->epoll_event.events=EPOLLIN|EPOLLET;
if (!t->ctx)
t->ctx=default_ctx;
- t->fd=timerfd_create(CLOCK_MONOTONIC,0);
+ t->fd=timerfd_create(CLOCK_MONOTONIC,TFD_NONBLOCK);
if (t->fd<0)
{
fprintf(stderr,"timer: timerfd_create failed: %s\n",strerror(errno));
return -1;
}
- if (triton_timer_mod(t))
+ if (triton_timer_mod(t,abs_time))
{
close(t->fd);
return -1;
@@ -110,10 +110,8 @@ int triton_timer_add(struct triton_timer_t *t)
return 0;
}
-int triton_timer_mod(struct triton_timer_t *t)
+int triton_timer_mod(struct triton_timer_t *t,int abs_time)
{
- int flags;
-
struct itimerspec ts=
{
.it_value.tv_sec=t->expire_tv.tv_sec,
@@ -123,13 +121,9 @@ int triton_timer_mod(struct triton_timer_t *t)
};
if (t->expire_tv.tv_sec==0 && t->expire_tv.tv_usec==0)
- {
- ts.it_value=ts.interval;
- flags=0;
- }else
- flags=TFD_TIMER_ABSTIME;
+ ts.it_value=ts.it_interval;
- if (timerfd_settime(t->fd,flags,&ts,NULL))
+ if (timerfd_settime(t->fd,abs_time?TFD_TIMER_ABSTIME:0,&ts,NULL))
{
fprintf(stderr,"timer: timerfd_settime failed: %s\n",strerror(errno));
return -1;
diff --git a/accel-pptpd/triton/triton.c b/accel-pptpd/triton/triton.c
index 23a69c6..e4fa117 100644
--- a/accel-pptpd/triton/triton.c
+++ b/accel-pptpd/triton/triton.c
@@ -1,4 +1,8 @@
#include <signal.h>
+#include <errno.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
#include "triton_p.h"
@@ -6,19 +10,19 @@ int thread_count=64;
static spinlock_t threads_lock=SPINLOCK_INITIALIZER;
static LIST_HEAD(threads);
-static int threads_count;
+static LIST_HEAD(sleep_threads);
-static spinlock_t ctx_queue_lock=SPINLOCK_INITIALIZER;
static LIST_HEAD(ctx_queue);
static spinlock_t ctx_list_lock=SPINLOCK_INITIALIZER;
static LIST_HEAD(ctx_list);
struct triton_ctx_t *default_ctx;
+static int terminate;
void triton_thread_wakeup(struct triton_thread_t *thread)
{
- pthread_kill(&thread->thread,SIGUSR1);
+ pthread_kill(thread->thread,SIGUSR1);
}
static void* triton_thread(struct triton_thread_t *thread)
@@ -36,19 +40,11 @@ static void* triton_thread(struct triton_thread_t *thread)
{
sigwait(&set,&sig);
- if (thread->terminate)
- return NULL;
-
cont:
- if (thread->ctx->close)
+ if (thread->ctx->need_close)
{
- list_for_each_entry(h,&thread->ctx->handlers,entry)
- if (h->close)
- h->close(h);
- list_for_each_entry(t,&thread->ctx->timers,entry)
- if (t->close)
- t->close(t);
- thread->ctx->close=0;
+ thread->ctx->close(thread->ctx);
+ thread->ctx->need_close=0;
}
while (1)
@@ -56,15 +52,15 @@ cont:
spin_lock(&thread->ctx->lock);
if (!list_empty(&thread->ctx->pending_timers))
{
- t=list_entry(thread->ctx->pending_timers.next);
+ t=list_entry(thread->ctx->pending_timers.next,typeof(*t),entry2);
list_del(&t->entry2);
spin_unlock(&thread->ctx->lock);
if (t->expire(t))
continue;
}
- if (!list_empty(&thread->ctx->pending_events))
+ if (!list_empty(&thread->ctx->pending_handlers))
{
- h=list_entry(thread->ctx->pending_events.next);
+ h=list_entry(thread->ctx->pending_handlers.next,typeof(*h),entry2);
list_del(&h->entry2);
h->pending=0;
spin_unlock(&thread->ctx->lock);
@@ -73,7 +69,7 @@ cont:
if (h->read)
if (h->read(h))
continue;
- if (h->trig_epoll_events&(EPOLLOUT|EPOLLERR|EPOLLHUP))
+ if (h->trig_epoll_events&(EPOLLOUT))
if (h->write)
if (h->write(h))
continue;
@@ -82,6 +78,8 @@ cont:
}
thread->ctx->thread=NULL;
spin_unlock(&thread->ctx->lock);
+ if (thread->ctx->need_free)
+ thread->ctx->free(thread->ctx);
thread->ctx=NULL;
break;
}
@@ -89,18 +87,21 @@ cont:
spin_lock(&threads_lock);
if (!list_empty(&ctx_queue))
{
- thread->ctx=list_entry(ctx_queue.next);
+ thread->ctx=list_entry(ctx_queue.next,typeof(*thread->ctx),entry2);
list_del(&thread->ctx->entry2);
spin_unlock(&threads_lock);
spin_lock(&thread->ctx->lock);
- ctx->thread=thread;
- ctx->queue=0;
+ thread->ctx->thread=thread;
+ thread->ctx->queued=0;
spin_unlock(&thread->ctx->lock);
goto cont;
}else
{
- list_add(&thread->entry,&threads);
+ if (!terminate)
+ list_add(&thread->entry2,&sleep_threads);
spin_unlock(&threads_lock);
+ if (terminate)
+ return NULL;
}
}
}
@@ -110,21 +111,18 @@ struct triton_thread_t *create_thread()
struct triton_thread_t *thread=malloc(sizeof(*thread));
memset(thread,0,sizeof(*thread));
- pthread_mutex_init(&thread->lock);
- pthread_cond_init(&thread->cond);
- pthread_create(&thread->thread,NULL,md_thread,thread);
- ++threads_count;
+ pthread_create(&thread->thread,NULL,(void*(*)(void*))triton_thread,thread);
return thread;
}
-void triton_queue_ctx(struct triton_ctx_t *ctx)
+int triton_queue_ctx(struct triton_ctx_t *ctx)
{
if (ctx->thread || ctx->queued)
return 0;
spin_lock(&threads_lock);
- if (list_empty(&threads))
+ if (list_empty(&sleep_threads))
{
list_add_tail(&ctx->entry2,&ctx_queue);
spin_unlock(&threads_lock);
@@ -132,8 +130,8 @@ void triton_queue_ctx(struct triton_ctx_t *ctx)
return 0;
}
- ctx->thread=list_entry(threads.next);
- list_del(&ctx->thread->entry);
+ ctx->thread=list_entry(sleep_threads.next,typeof(*ctx->thread),entry2);
+ list_del(&ctx->thread->entry2);
spin_unlock(&threads_lock);
return 1;
@@ -141,7 +139,7 @@ void triton_queue_ctx(struct triton_ctx_t *ctx)
void triton_register_ctx(struct triton_ctx_t *ctx)
{
- pthread_mutex_init(&ctx->lock);
+ spinlock_init(&ctx->lock);
INIT_LIST_HEAD(&ctx->handlers);
INIT_LIST_HEAD(&ctx->timers);
INIT_LIST_HEAD(&ctx->pending_handlers);
@@ -154,12 +152,13 @@ void triton_register_ctx(struct triton_ctx_t *ctx)
void triton_unregister_ctx(struct triton_ctx_t *ctx)
{
+ ctx->need_free=1;
spin_lock(&ctx_list_lock);
- list_add_tail(&ctx->entry,&ctx_list);
+ list_del(&ctx->entry);
spin_unlock(&ctx_list_lock);
}
-int triton_init()
+int triton_init(const char *conf_file)
{
default_ctx=malloc(sizeof(*default_ctx));
if (!default_ctx)
@@ -169,10 +168,19 @@ int triton_init()
}
triton_register_ctx(default_ctx);
+ if (conf_load(conf_file))
+ return -1;
+
+ if (log_init())
+ return -1;
+
if (md_init())
return -1;
+
if (timer_init())
return -1;
+
+ return 0;
}
void triton_run()
@@ -180,11 +188,13 @@ void triton_run()
struct triton_thread_t *t;
int i;
- for(i=0;i<max_threads;i++)
+ for(i=0;i<thread_count;i++)
{
t=create_thread();
list_add_tail(&t->entry,&threads);
+ list_add_tail(&t->entry2,&sleep_threads);
}
+
md_run();
timer_run();
}
@@ -192,17 +202,29 @@ void triton_run()
void triton_terminate()
{
struct triton_ctx_t *ctx;
- pthread_mutex_lock(&ctx_list_lock);
+ struct triton_thread_t *t;
+
+ md_terminate();
+ timer_terminate();
+
+ spin_lock(&ctx_list_lock);
list_for_each_entry(ctx,&ctx_list,entry)
{
- pthread_mutex_lock(&ctx->lock);
- ctx->close=1;
+ spin_lock(&ctx->lock);
+ ctx->need_close=1;
triton_queue_ctx(ctx);
- pthread_mutex_unlock(&ctx->lock);
+ spin_unlock(&ctx->lock);
}
- pthread_mutex_unlock(&ctx_list_lock);
+ spin_unlock(&ctx_list_lock);
- timer_terminate();
- md_terminate();
+ spin_lock(&threads_lock);
+ terminate=1;
+ spin_unlock(&threads_lock);
+
+ list_for_each_entry(t,&threads,entry)
+ triton_thread_wakeup(t);
+
+ list_for_each_entry(t,&threads,entry)
+ pthread_join(t->thread,NULL);
}
diff --git a/accel-pptpd/triton/triton.h b/accel-pptpd/triton/triton.h
index 0e9b73b..7364021 100644
--- a/accel-pptpd/triton/triton.h
+++ b/accel-pptpd/triton/triton.h
@@ -5,11 +5,13 @@
#include <pthread.h>
#include <sys/epoll.h>
-#include <triton.h>
+#include "list.h"
+#include "spinlock.h"
struct triton_thread_t
{
struct list_head entry;
+ struct list_head entry2;
pthread_t thread;
int terminate:1;
struct triton_ctx_t *ctx;
@@ -23,11 +25,15 @@ struct triton_ctx_t
struct list_head handlers;
struct list_head timers;
- triton_thread_t *thread;
+ struct triton_thread_t *thread;
struct list_head pending_handlers;
struct list_head pending_timers;
int queued:1;
- int close:1;
+ int need_close:1;
+ int need_free:1;
+
+ void (*close)(struct triton_ctx_t*);
+ void (*free)(struct triton_ctx_t*);
};
struct triton_md_handler_t
@@ -38,7 +44,7 @@ struct triton_md_handler_t
struct list_head entry2;
struct triton_ctx_t *ctx;
struct epoll_event epoll_event;
- uint32_t trig_epoll_event;
+ uint32_t trig_epoll_events;
int pending:1;
//=========
@@ -48,14 +54,16 @@ struct triton_md_handler_t
int (*read)(struct triton_md_handler_t *);
int (*write)(struct triton_md_handler_t *);
- void (*close)(struct triton_md_handler_t *);
//=========
};
struct triton_timer_t
{
struct list_head entry;
- int active;
+ struct list_head entry2;
+ struct epoll_event epoll_event;
+ struct triton_ctx_t *ctx;
+ int fd;
int pending:1;
struct timeval expire_tv;
@@ -63,28 +71,36 @@ struct triton_timer_t
int (*expire)(struct triton_timer_t *);
};
+struct conf_option_t
+{
+ struct list_head entry;
+
+ char *name;
+ char *val;
+};
+
+struct conf_sect_t
+{
+ const char *name;
+ struct list_head items;
+};
+
+void triton_register_ctx(struct triton_ctx_t *);
+void triton_unregister_ctx(struct triton_ctx_t *);
+
#define MD_MODE_READ 1
#define MD_MODE_WRITE 2
void triton_md_register_handler(struct triton_md_handler_t *h);
void triton_md_unregister_handler(struct triton_md_handler_t *h);
-void triton_md_enable_handler(struct triton_md_handler_t *h, int mode);
-void triton_md_disable_handler(struct triton_md_handler_t *h,int mode);
-void triton_md_set_timeout(struct triton_md_handler_t *h, int msec);
+int triton_md_enable_handler(struct triton_md_handler_t *h, int mode);
+int triton_md_disable_handler(struct triton_md_handler_t *h,int mode);
-void triton_timer_add(struct triton_timer_t*);
+int triton_timer_add(struct triton_timer_t*,int abs_time);
+int triton_timer_mod(struct triton_timer_t*,int abs_time);
void triton_timer_del(struct triton_timer_t*);
-typedef void (*triton_ss_func)(void);
-void triton_timer_single_shot1(int twait,triton_ss_func,int argc,...);
-void triton_timer_single_shot2(struct timeval *shot_tv,triton_ss_func,int argc,...);
-void triton_timer_single_shot3(int tv_sec,int tv_usec,triton_ss_func,int argc,...);
-
-int triton_get_int_option(const char *str);
-const char* triton_get_str_option(const char *str);
-double triton_get_double_option(const char *str);
-
-void triton_terminate(void);
-void triton_process_events(void);
+struct conf_sect_t *conf_get_section(const char *name);
+char *conf_get_opt(const char *sect, const char *name);
#define TRITON_OK 0
#define TRITON_ERR_NOCOMP -1
@@ -96,6 +112,7 @@ void triton_process_events(void);
#define TRITON_ERR_BUSY -5
int triton_init(const char *conf_file);
-int triton_run(int (*post_init)(void*),void *arg);
+void triton_run(void);
+void triton_terminate(void);
#endif
diff --git a/accel-pptpd/triton/triton_p.h b/accel-pptpd/triton/triton_p.h
index fae4848..e10c7a8 100644
--- a/accel-pptpd/triton/triton_p.h
+++ b/accel-pptpd/triton/triton_p.h
@@ -4,39 +4,16 @@
#include "triton.h"
#include "list.h"
-#include <stdarg.h>
-
-#define MAX_ARGS 32
-
-struct option_t
-{
- struct list_head entry;
-
- char *name;
- char *val;
-};
-
-struct timer_t
-{
- struct list_head entry;
- int del;
- struct triton_timer_t *timer;
-};
-
-struct timer_single_shot_t
-{
- struct list_head entry;
-
- struct timeval expire_tv;
- int arg_cnt;
- void *args;
- triton_ss_func ss_func;
-};
-
-extern void md_run();
-extern void md_terminate();
-extern void timer_run();
-extern void timer_terminate();
-extern struct triton_ctx_t *default_ctx;
+int log_init(void);
+int md_init();
+void md_run();
+void md_terminate();
+int timer_init();
+void timer_run();
+void timer_terminate();
+struct triton_ctx_t *default_ctx;
+int triton_queue_ctx(struct triton_ctx_t*);
+void triton_thread_wakeup(struct triton_thread_t*);
+int conf_load(const char *fname);
#endif