X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fivac.git;a=blobdiff_plain;f=src%2Fivac.c;h=43b7ef6545f23cc5826ae92ffd8971de08093ce1;hp=82b9a7c7c56b9c3364a9d1c108e610bfb0189c34;hb=eb0f685570bbc4e1f0f97d6d1bad5a905a1e036f;hpb=da2c28e700faec39bab322b103fe0298c52fbda7 diff --git a/src/ivac.c b/src/ivac.c index 82b9a7c..43b7ef6 100644 --- a/src/ivac.c +++ b/src/ivac.c @@ -21,6 +21,8 @@ * */ +// #define USE_NCURSES + #include "ivac.h" int main(int argc,char **argv) { @@ -28,10 +30,21 @@ int main(int argc,char **argv) { /* TESTING BY NOW */ t_ivac ivac; + int i; + + if(argc!=2) { + printf("\nusage: %s \n\n",argv[0]); + return ERROR; + } - /* set username (futur: read from config or entered later) */ - strcpy(ivac.username,"hackbard"); - memset(&ivac.console[0][0],0,IVAC_CONSOLE_LEN*IVAC_CONSOLE_STRING_LEN); + /* set username */ + strncpy(ivac.username,argv[1],CHAR_USERNAME); + /* clear challenger struct */ + for(i=0;inet)); input_shutdown(&(ivac->input)); event_stop(&(ivac->event)); - display_shutdown(&(ivac->display)); + // display_shutdown(&(ivac->display)); return SUCCESS; } @@ -161,29 +172,41 @@ int ivac_event_cb(t_event *event,void *ptr) { t_ivac *ivac; int channel; + char c_str[IVAC_CONSOLE_STRING_LEN]; ivac=(t_ivac *)ptr; + /* incoming connection -- first contact => send info */ if(FD_ISSET(ivac->net.l_fd,&(event->rfds))) { - /* manage incoming + send info */ channel=network_manage_incoming(&(ivac->net)); - event_math(ivac->net.connection[channel].fd,event,READ,ADD); - ivac_send_info(channel,ivac); + if(channel==N_E_ACCEPT) + sprintf(c_str,"accept failed"); + else if(channel==N_E_MAXC) + sprintf(c_str,"maximum connections reached"); + else { + sprintf(c_str,"connection from %s port %d on channel %d", + ivac->net.connection[channel].ip, + ivac->net.connection[channel].port,channel); + ivac_add_to_monitor(ivac,c_str); + event_math(ivac->net.connection[channel].fd,event,READ,ADD); + ivac_send_info(channel,ivac); + } + ivac_display_content(ivac); } - /* receive info */ - for(channel=0;channelnet.connection[channel].status&C_ESTABL) + /* wait for user info */ + for(channel=0;channelnet.connection[channel].status&C_ESTABL) { + /* remote is sending info */ if(FD_ISSET(ivac->net.connection[channel].fd,&(event->rfds))) ivac_receive_info(channel,ivac); + } + } /* user interaction */ if(FD_ISSET(0,&(event->rfds))) input_get_event(&(ivac->input),ivac_parse_command,ivac); - /* display ivac gui */ - ivac_display_content(ivac); - return SUCCESS; } @@ -197,46 +220,143 @@ int ivac_regular_cb(t_event *event,void *ptr) { int ivac_parse_command(t_input *input,void *ptr) { t_ivac *ivac; - int channel,i; + int i,j,k; int len; - char *data,valid=0; + int channel; + char *data,valid; char c_str[IVAC_CONSOLE_STRING_LEN]; + char arg[IVAC_ARG_COUNT][IVAC_ARG_LEN]; ivac=(t_ivac *)ptr; data=input->content; - i=input->c_count-1; - memset(c_str,0,IVAC_CONSOLE_STRING_LEN); + valid=0; + + /* refresh prompt content only! */ + ivac_display_prompt_content(ivac); /* parse command routines */ + if(data[input->c_count-1]=='\n') { + + /* delete console string + args */ + memset(c_str,0,IVAC_CONSOLE_STRING_LEN); + for(j=0;j='0')&&(arg[1][0]<='9')) channel=atoi(arg[1]); + else channel=-1; + if(!(strncmp(arg[1],"name",4))) { + strncpy(ivac->username,arg[2],CHAR_USERNAME); + sprintf(c_str,"changed username to %s",ivac->username); + } + else if((channel>=0)&&(channelnet),channel,arg[2],atoi(arg[3])); + if(i==N_E_IN_USE) + sprintf(c_str,"channel %02d: connection in use",channel); + if(i==N_SUCCESS) + sprintf(c_str,"channel %02d: set connection info",channel); + } else snprintf(c_str,IVAC_CONSOLE_STRING_LEN,"unknown argument: '%s'", + arg[1]); + } + if(!(strncmp(arg[0],"connect",7))) { + valid=1; + if((arg[1][0]>='0')&&(arg[1][0]<='9')) channel=atoi(arg[1]); + else channel=-1; + if((channel>=0)&&(channelnet),channel); + if(i==N_E_IN_USE) + sprintf(c_str,"channel %02d: connection in use",channel); + else if(i==N_E_NO_INFO) + sprintf(c_str,"channel %02d: channel not configured",channel); + else { + sprintf(c_str,"channel %02d: connected to %s:%d",channel, + ivac->net.connection[channel].ip, + ivac->net.connection[channel].port); + event_math(ivac->net.connection[channel].fd,&(ivac->event),READ,ADD); + ivac_send_info(channel,ivac); } - break; - default: - break; + } + else sprintf(c_str,"invalid argument: '%s'",arg[1]); + } + if(!(strncmp(arg[0],"close",5))) { + valid=1; + if((arg[1][0]>='0')&&(arg[1][0]<='9')) channel=atoi(arg[1]); + else channel=-1; + if((channel>=0)&&(channelnet),channel); + if(i==N_E_NC) + sprintf(c_str,"channel %02d: no active connection",channel); + else + sprintf(c_str,"channel %02d: connection closed",channel); + } + else sprintf(c_str,"invalid argument: '%s'",arg[1]); } - - if(!valid) { - snprintf(c_str,IVAC_CONSOLE_STRING_LEN-1,"unknown command: '%s...'\n", - data); - ivac_add_to_monitor(ivac,c_str); + if(!(strncmp(arg[0],"select",6))) { + valid=1; + if((arg[1][0]>='0')&&(arg[1][0]<='9')) channel=atoi(arg[1]); + else channel=-1; + if((channel>=0)&&(channelnet),channel); + sprintf(c_str,"selected channel %d",channel); + } + else if(arg[1][0]='*') { + network_select(&(ivac->net),MAX_CONNECTIONS); + strcpy(c_str,"selected all channels"); + } + else sprintf(c_str,"invalid argument: '%s'",arg[1]); + } + if(!(strncmp(arg[0],"deselect",8))) { + valid=1; + if((arg[1][0]>='0')&&(arg[1][0]<='9')) channel=atoi(arg[1]); + else channel=-1; + if((channel>=0)&&(channelnet),channel); + sprintf(c_str,"deselected channel %d",channel); + } + else if(arg[1][0]='*') { + network_deselect(&(ivac->net),MAX_CONNECTIONS); + strcpy(c_str,"deselected all channels"); + } + else sprintf(c_str,"invalid argument: '%s'",arg[1]); } + if(!valid) + snprintf(c_str,IVAC_CONSOLE_STRING_LEN,"unknown command: '%s'",arg[0]); + + /* call network functions */ + network_manage_connection(&(ivac->net)); + + /* add console string to console buffer */ + ivac_add_to_monitor(ivac,c_str); + + /* refresh whole display content */ + ivac_display_content(ivac); + /* delete content buffer + reset counter */ - memset(input->content,0,input->c_count); + memset(input->content,0,input->c_count-1); input->c_count=0; } @@ -246,6 +366,7 @@ int ivac_parse_command(t_input *input,void *ptr) { int ivac_display_head(t_display *display) { +#ifdef USE_NCURSES int x,y; move(0,0); @@ -256,53 +377,93 @@ int ivac_display_head(t_display *display) { move(2,0); for(x=0;xmax_x;x++) addch('#'); refresh(); +#else + puts("#########################################################"); + puts("##### ivac - - Copyright (C) 2004 Frank Zirkelbach #####"); + puts("#########################################################"); +#endif return SUCCESS; } int ivac_display_box(t_display *display) { - + +#ifdef USE_NCURSES int x,y; for(y=IVAC_PROMPT_LEN;ymax_y-IVAC_PROMPT_LEN;y++) { mvaddch(y,0,'#'); mvaddch(y,display->max_x-1,'#'); } +#endif return SUCCESS; } int ivac_display_box_content(t_ivac *ivac) { + int channel; + + /* prepare challenger names */ + for(channel=0;channelchallenger[channel].name[0]==0) + strcpy(ivac->challenger[channel].name,""); + +#ifdef USE_NCURSES +#else + for(channel=0;channelnet.connection[channel].status&C_INFO_A) + printf("channel %02d: ip:%s port:%d status: %02x - name: %s\n",channel, + ivac->net.connection[channel].ip, + ivac->net.connection[channel].port, + ivac->net.connection[channel].status, + ivac->challenger[channel].name); + } +#endif return SUCCESS; } int ivac_display_console(t_display *display) { - + +#ifdef USE_NCURSES int x,y; move(display->max_y-IVAC_CONSOLE_LEN-IVAC_PROMPT_LEN-1,0); - for(x=0;xmax_x;x++) addch('#'); + for(x=0;xmax_x;x++) addch('#'); +#endif return SUCCESS; } int ivac_display_console_content(t_ivac *ivac) { - int x,y,len; +#ifdef USE_NCURSES + int x,y; + int len; + for(y=0;yconsole[y]); move(ivac->display.max_y-IVAC_CONSOLE_LEN-IVAC_PROMPT_LEN+y,2); - for(x=0;xconsole[y][x]); + for(x=0;xconsole[y][x]>' ')||(ivac->console[y][x]<='~')) + ?ivac->console[y][x]:' '); + for(x=len;xconsole[i]); +#endif return SUCCESS; } int ivac_display_prompt(t_display *display) { +#ifdef USE_NCURSES int x,y; move(display->max_y-3,0); @@ -312,12 +473,14 @@ int ivac_display_prompt(t_display *display) { move(display->max_y-1,0); for(x=0;xmax_x;x++) addch('#'); refresh(); +#endif return SUCCESS; } int ivac_display_prompt_content(t_ivac *ivac) { +#ifdef USE_NCURSES int x,y; /* delete old command */ @@ -329,6 +492,10 @@ int ivac_display_prompt_content(t_ivac *ivac) { for(x=0;xinput.c_count;x++) mvaddch(ivac->display.max_y-2,x+12,ivac->input.content[x]); refresh(); +#else + printf("%c",ivac->input.content[ivac->input.c_count-1]); + fflush(NULL); +#endif return SUCCESS; } @@ -373,7 +540,6 @@ int ivac_add_to_monitor(t_ivac *ivac,char *msg) { for(i=0;iconsole[i],ivac->console[i+1],IVAC_CONSOLE_STRING_LEN); memcpy(ivac->console[IVAC_CONSOLE_LEN-1],msg,IVAC_CONSOLE_STRING_LEN); - ivac_display_console_content(ivac); return SUCCESS; }