serval-dna/directory_service.c

206 lines
4.5 KiB
C
Raw Normal View History

2012-09-14 02:20:45 +00:00
#ifdef HAVE_POLL_H
2012-09-14 02:20:45 +00:00
#include <poll.h>
#endif
2012-09-14 02:20:45 +00:00
#include <stdio.h>
#include <unistd.h>
#include "constants.h"
#include "mdp_client.h"
2012-11-12 00:11:16 +00:00
#include "str.h"
2012-09-14 02:20:45 +00:00
struct item{
// simple tree structure
struct item *_left;
struct item *_right;
char key[32];
char value[128];
time_ms_t expires;
};
2012-09-14 02:20:45 +00:00
2012-11-12 00:08:24 +00:00
struct item *root=NULL;
static struct item *create_item(const char *key){
struct item *ret=calloc(1,sizeof(struct item));
strncpy(ret->key,key,sizeof(ret->key));
ret->key[sizeof(ret->key) -1]=0;
return ret;
}
static struct item *find_item(const char *key){
struct item *item = root;
while(item){
int c=strcmp(item->key, key);
if (c==0)
return item;
if (c<0){
item = item->_left;
}else{
item = item->_right;
}
}
return NULL;
}
static void add_item(char *key, char *value){
struct item *item = root, **last_ptr=&root;
while(item){
int c=strcmp(item->key, key);
if (c==0){
c=strcmp(item->value, value);
2012-11-12 00:38:08 +00:00
if (c==0){
item->expires = gettime_ms()+1200000;
return;
2012-11-12 00:38:08 +00:00
}
}
if (c<0){
last_ptr = &item->_left;
}else{
last_ptr = &item->_right;
}
item = *last_ptr;
}
*last_ptr = item = create_item(key);
strncpy(item->value,value,sizeof(item->value));
item->value[sizeof(item->value) -1]=0;
// expire after 20 minutes
item->expires = gettime_ms()+1200000;
// used by tests
fprintf(stderr, "PUBLISHED \"%s\" = \"%s\"\n", key, value);
2012-09-14 02:20:45 +00:00
}
static void add_record(int mdp_sockfd){
2012-09-14 02:20:45 +00:00
int ttl;
overlay_mdp_frame mdp;
if (overlay_mdp_recv(mdp_sockfd, &mdp, MDP_PORT_DIRECTORY, &ttl))
2012-09-14 02:20:45 +00:00
return;
if (mdp.packetTypeAndFlags&MDP_NOCRYPT){
fprintf(stderr, "Only encrypted packets will be considered for publishing\n");
return;
}
2012-09-14 02:20:45 +00:00
// make sure the payload is a NULL terminated string
mdp.in.payload[mdp.in.payload_length]=0;
char *did=(char *)mdp.in.payload;
int i=0;
while(i<mdp.in.payload_length && mdp.in.payload[i] && mdp.in.payload[i]!='|')
i++;
mdp.in.payload[i]=0;
char *name = (char *)mdp.in.payload+i+1;
char *sid = alloca_tohex_sid_t(mdp.in.src.sid);
2012-09-14 02:20:45 +00:00
// TODO check that did is a valid phone number
char url[256];
snprintf(url, sizeof(url), "sid://%s/local/%s|%s|%s", sid, did, did, name);
add_item(did, url);
}
static void respond(char *token, struct item *item, char *key){
if (!item)
return;
int c = strcmp(item->key, key);
if (c<=0)
respond(token, item->_left, key);
if (c==0 && item->expires > gettime_ms())
printf("%s|%s|\n",token,item->value);
if (c>=0)
respond(token, item->_right, key);
2012-09-14 02:20:45 +00:00
}
static void process_line(char *line){
2012-09-14 02:20:45 +00:00
char *token=line;
char *p=line;
while(*p && *p!='|') p++;
*p++=0;
char *did = p;
while(*p && *p!='|') p++;
*p++=0;
respond(token, find_item(did), did);
printf("DONE\n");
fflush(stdout);
2012-09-14 02:20:45 +00:00
}
static void resolve_request(){
2012-09-14 02:20:45 +00:00
static char line_buff[1024];
static int line_pos=0;
2012-09-27 06:57:37 +00:00
set_nonblock(STDIN_FILENO);
2012-09-14 02:20:45 +00:00
int bytes = read(STDIN_FILENO, line_buff + line_pos, sizeof(line_buff) - line_pos);
2012-09-27 06:57:37 +00:00
set_block(STDIN_FILENO);
2012-09-14 02:20:45 +00:00
int i = line_pos;
int processed=0;
line_pos+=bytes;
char *line_start=line_buff;
for (;i<line_pos;i++){
if (line_buff[i]=='\n'){
line_buff[i]=0;
if (*line_start)
process_line(line_start);
processed=i+1;
line_start = line_buff + processed;
}
}
if (processed){
// squash unprocessed data back to the start of the buffer
line_pos -= processed;
bcopy(line_buff, line_start, line_pos);
}
}
int main(int argc, char **argv){
struct pollfd fds[2];
int mdp_sockfd;
if ((mdp_sockfd = overlay_mdp_client_socket()) < 0)
return WHY("Cannot create MDP socket");
2012-09-14 02:20:45 +00:00
// bind for incoming directory updates
sid_t srcsid;
if (overlay_mdp_getmyaddr(mdp_sockfd, 0, &srcsid)) {
overlay_mdp_client_close(mdp_sockfd);
return WHY("Could not get local address");
}
if (overlay_mdp_bind(mdp_sockfd, &srcsid, MDP_PORT_DIRECTORY)) {
overlay_mdp_client_close(mdp_sockfd);
return WHY("Could not bind to MDP socket");
}
2012-09-14 02:20:45 +00:00
fds[0].fd = STDIN_FILENO;
fds[0].events = POLLIN;
fds[1].fd = mdp_sockfd;
2012-09-14 02:20:45 +00:00
fds[1].events = POLLIN;
printf("STARTED\n");
fflush(stdout);
2012-09-14 02:20:45 +00:00
while(1){
int r = poll(fds, 2, 100);
2012-09-14 02:20:45 +00:00
if (r>0){
if (fds[0].revents & POLLIN)
resolve_request();
2012-09-14 02:20:45 +00:00
if (fds[1].revents & POLLIN)
add_record(mdp_sockfd);
2012-09-14 02:20:45 +00:00
if (fds[0].revents & (POLLHUP | POLLERR))
break;
}
}
overlay_mdp_client_close(mdp_sockfd);
2012-09-14 02:20:45 +00:00
return 0;
}