X-Git-Url: http://andersk.mit.edu/gitweb/libfaim.git/blobdiff_plain/78b3fb1309a7d926cb58b8322923feedd1ba47ef..225174938751264d2d11d880ca820a66961c694c:/utils/faimtest/faimtest.c diff --git a/utils/faimtest/faimtest.c b/utils/faimtest/faimtest.c index 511a8a2..687ca7c 100644 --- a/utils/faimtest/faimtest.c +++ b/utils/faimtest/faimtest.c @@ -74,6 +74,14 @@ int faimtest_directim_connect(struct aim_session_t *sess, struct command_rx_stru int faimtest_directim_incoming(struct aim_session_t *sess, struct command_rx_struct *command, ...); int faimtest_directim_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...); int faimtest_directim_typing(struct aim_session_t *sess, struct command_rx_struct *command, ...); +#define FILESUPPORT +#ifdef FILESUPPORT +int faimtest_getfile_filereq(struct aim_session_t *sess, struct command_rx_struct *command, ...); +int faimtest_getfile_filesend(struct aim_session_t *sess, struct command_rx_struct *command, ...); +int faimtest_getfile_complete(struct aim_session_t *sess, struct command_rx_struct *command, ...); +int faimtest_getfile_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...); +#endif + int faimtest_parse_ratechange(struct aim_session_t *sess, struct command_rx_struct *command, ...); int faimtest_parse_evilnotify(struct aim_session_t *sess, struct command_rx_struct *command, ...); int faimtest_parse_msgerr(struct aim_session_t *sess, struct command_rx_struct *command, ...); @@ -108,6 +116,8 @@ static char *msgerrreasons[] = { "Not while on AOL"}; static int msgerrreasonslen = 25; +static char *screenname,*password,*server=NULL; + int faimtest_reportinterval(struct aim_session_t *sess, struct command_rx_struct *command, ...) { if (command->data) { @@ -117,16 +127,81 @@ int faimtest_reportinterval(struct aim_session_t *sess, struct command_rx_struct return 1; } -static char *screenname,*password,*server=NULL; +int faimtest_flapversion(struct aim_session_t *sess, struct command_rx_struct *command, ...) +{ + + printf("faimtest: using FLAP version %u\n", aimutil_get32(command->data)); + +#if 0 + /* + * This is an alternate location for starting the login process. + */ + /* XXX should do more checking to make sure its really the right AUTH conn */ + if (command->conn->type == AIM_CONN_TYPE_AUTH) { + /* do NOT send a connack/flapversion, request_login will send it if needed */ + aim_request_login(sess, command->conn, screenname); + printf("faimtest: login request sent\n"); + } +#endif + + return 1; +} + +/* + * This is a frivilous callback. You don't need it. I only used it for + * debugging non-blocking connects. + * + * If packets are sent to a conn before its fully connected, they + * will be queued and then transmitted when the connection completes. + * + */ +int faimtest_conncomplete(struct aim_session_t *sess, struct command_rx_struct *command, ...) +{ + va_list ap; + struct aim_conn_t *conn; + + va_start(ap, command); + conn = va_arg(ap, struct aim_conn_t *); + va_end(ap); + + if (conn) + printf("faimtest: connection on %d completed\n", conn->fd); + + return 1; +} + +#ifdef _WIN32 +/* + * This is really all thats needed to link against libfaim on win32. + * + * Note that this particular version of faimtest has never been tested + * on win32, but I'm fairly sure it should. + */ +int initwsa(void) +{ + WORD wVersionRequested; + WSADATA wsaData; + + wVersionRequested = MAKEWORD(2,2); + return WSAStartup(wVersionRequested, &wsaData); +} +#endif /* _WIN32 */ int main(void) { struct aim_session_t aimsess; struct aim_conn_t *authconn = NULL, *waitingconn = NULL; int keepgoing = 1; + char *proxy, *proxyusername, *proxypass; + + char *listingpath; int selstat = 0; +#ifdef FILESUPPORT + FILE *listingfile; +#endif + if ( !(screenname = getenv("SCREENNAME")) || !(password = getenv("PASSWORD"))) { @@ -136,7 +211,45 @@ int main(void) server = getenv("AUTHSERVER"); - aim_session_init(&aimsess); + proxy = getenv("SOCKSPROXY"); + proxyusername = getenv("SOCKSNAME"); + proxypass = getenv("SOCKSPASS"); + +#ifdef FILESUPPORT + listingpath = getenv("LISTINGPATH"); +#endif + +#ifdef _WIN32 + if (initwsa() != 0) { + printf("faimtest: could not initialize windows sockets\n"); + return -1; + } +#endif /* _WIN32 */ + + /* Pass zero as flags if you want blocking connects */ + aim_session_init(&aimsess, AIM_SESS_FLAGS_NONBLOCKCONNECT); + +#ifdef FILESUPPORT + if(listingpath) { + char *listingname; + if(!(listingname = (char *)calloc(1, strlen(listingpath)+strlen("/listing.txt")))) { + perror("listingname calloc."); + exit(-1); + } + sprintf(listingname, "%s/listing.txt", listingpath); + if( (listingfile = fopen(listingname, "r")) == NULL) { + printf("Couldn't open %s... bombing.\n", listingname); + exit(-1); + } + + aim_oft_registerlisting(&aimsess, listingfile, listingpath); + + free(listingname); + } +#endif + + if (proxy) + aim_setupproxy(&aimsess, proxy, proxyusername, proxypass); authconn = aim_newconn(&aimsess, AIM_CONN_TYPE_AUTH, server?server:FAIM_LOGIN_SERVER); @@ -152,14 +265,15 @@ int main(void) return -1; } + aim_conn_addhandler(&aimsess, authconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0); + aim_conn_addhandler(&aimsess, authconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0); aim_conn_addhandler(&aimsess, authconn, 0x0017, 0x0007, faimtest_parse_login, 0); - aim_conn_addhandler(&aimsess, authconn, 0x0017, 0x0003, faimtest_parse_authresp, 0); - - aim_sendconnack(&aimsess, authconn); - aim_request_login(&aimsess, authconn, screenname); + aim_conn_addhandler(&aimsess, authconn, 0x0017, 0x0003, faimtest_parse_authresp, 0); aim_conn_addhandler(&aimsess, authconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_DEBUGCONN_CONNECT, faimtest_debugconn_connect, 0); + /* If the connection is in progress, this will just be queued */ + aim_request_login(&aimsess, authconn, screenname); printf("faimtest: login request sent\n"); while (keepgoing) { @@ -180,16 +294,21 @@ int main(void) case 2: /* incoming data pending */ if (waitingconn->type == AIM_CONN_TYPE_RENDEZVOUS_OUT) { if (aim_handlerendconnect(&aimsess, waitingconn) < 0) { - printf("connection error (rend)\n"); + printf("connection error (rend out)\n"); } } else { if (aim_get_command(&aimsess, waitingconn) >= 0) { aim_rxdispatch(&aimsess); } else { - printf("connection error\n"); - aim_conn_kill(&aimsess, &waitingconn); + printf("connection error (type 0x%04x:0x%04x)\n", waitingconn->type, waitingconn->subtype); + if(waitingconn->type == AIM_CONN_TYPE_RENDEZVOUS) { + /* we should have callbacks for all these, else the library will do the conn_kill for us. */ + printf("connection error: rendezvous connection. you forgot register a disconnect callback, right?\n"); + } + else + aim_conn_kill(&aimsess, &waitingconn); if (!aim_getconn_type(&aimsess, AIM_CONN_TYPE_BOS)) { - printf("major connetion error\n"); + printf("major connection error\n"); keepgoing = 0; } } @@ -236,7 +355,7 @@ int faimtest_rateresp(struct aim_session_t *sess, struct command_rx_struct *comm aim_bos_reqrights(sess, command->conn); /* set group permissions -- all user classes */ - aim_bos_setgroupperm(sess, command->conn, AIM_CLASS_ALLUSERS); + aim_bos_setgroupperm(sess, command->conn, AIM_FLAG_ALLUSERS); aim_bos_setprivacyflags(sess, command->conn, AIM_PRIVFLAGS_ALLOWIDLE|AIM_PRIVFLAGS_ALLOWMEMBERSINCE); break; @@ -281,9 +400,7 @@ int faimtest_serverready(struct aim_session_t *sess, struct command_rx_struct *c aim_chat_clientready(sess, command->conn); break; - case AIM_CONN_TYPE_RENDEZVOUS: /* this is an overloaded function?? - mid */ - aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, faimtest_directim_incoming, 0); - aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMDISCONNECT, faimtest_directim_disconnect, 0); + case AIM_CONN_TYPE_RENDEZVOUS: /* empty */ break; default: @@ -293,13 +410,13 @@ int faimtest_serverready(struct aim_session_t *sess, struct command_rx_struct *c } int faimtest_parse_buddyrights(struct aim_session_t *sess, struct command_rx_struct *command, ...) -{ +{ va_list ap; unsigned short maxbuddies, maxwatchers; va_start(ap, command); - maxbuddies = va_arg(ap, unsigned short); - maxwatchers = va_arg(ap, unsigned short); + maxbuddies = va_arg(ap, int); + maxwatchers = va_arg(ap, int); va_end(ap); printf("faimtest: buddy list rights: Max buddies = %d / Max watchers = %d\n", maxbuddies, maxwatchers); @@ -313,8 +430,8 @@ int faimtest_bosrights(struct aim_session_t *sess, struct command_rx_struct *com va_list ap; va_start(ap, command); - maxpermits = va_arg(ap, unsigned short); - maxdenies = va_arg(ap, unsigned short); + maxpermits = va_arg(ap, int); + maxdenies = va_arg(ap, int); va_end(ap); printf("faimtest: BOS rights: Max permit = %d / Max deny = %d\n", maxpermits, maxdenies); @@ -360,11 +477,13 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct struct aim_conn_t *tstconn; /* Open a connection to the Auth */ tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, ip); - if ( (tstconn==NULL) || (tstconn->status >= AIM_CONN_STATUS_RESOLVERR) ) + if ( (tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR) ) fprintf(stderr, "faimtest: unable to reconnect with authorizer\n"); - else + else { + aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0); /* Send the cookie to the Auth */ aim_auth_sendcookie(sess, tstconn, cookie); + } } break; @@ -372,7 +491,7 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct { struct aim_conn_t *tstconn = NULL; tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHATNAV, ip); - if ( (tstconn==NULL) || (tstconn->status >= AIM_CONN_STATUS_RESOLVERR)) { + if ( (tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) { fprintf(stderr, "faimtest: unable to connect to chatnav server\n"); if (tstconn) aim_conn_kill(sess, &tstconn); return 1; @@ -382,6 +501,7 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_GEN, AIM_CB_SPECIAL_DEFAULT, aim_parse_unknown, 0); #endif aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0); + aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0); aim_auth_sendcookie(sess, tstconn, cookie); fprintf(stderr, "\achatnav: connected\n"); } @@ -394,7 +514,7 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct roomname = va_arg(ap, char *); tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHAT, ip); - if ( (tstconn==NULL) || (tstconn->status >= AIM_CONN_STATUS_RESOLVERR)) + if ( (tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) { fprintf(stderr, "faimtest: unable to connect to chat server\n"); if (tstconn) aim_conn_kill(sess, &tstconn); @@ -408,6 +528,7 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct aim_chat_attachname(tstconn, roomname); aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0); + aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0); aim_auth_sendcookie(sess, tstconn, cookie); } break; @@ -448,10 +569,11 @@ int faimtest_parse_authresp(struct aim_session_t *sess, struct command_rx_struct bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, sess->logininfo.BOSIP); if (bosconn == NULL) { fprintf(stderr, "faimtest: could not connect to BOS: internal error\n"); - } else if (bosconn->status != 0) { + } else if (bosconn->status & AIM_CONN_STATUS_CONNERR) { fprintf(stderr, "faimtest: could not connect to BOS\n"); aim_conn_kill(sess, &bosconn); } else { + aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0); aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, faimtest_bosrights, 0); aim_conn_addhandler(sess, bosconn, 0x0001, 0x0007, faimtest_rateresp, 0); /* rate info */ aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ACK, AIM_CB_ACK_ACK, NULL, 0); @@ -482,6 +604,27 @@ int faimtest_parse_authresp(struct aim_session_t *sess, struct command_rx_struct return 1; } +static void printuserflags(unsigned short flags) +{ + if (flags & AIM_FLAG_UNCONFIRMED) + printf("UNCONFIRMED "); + if (flags & AIM_FLAG_ADMINISTRATOR) + printf("ADMINISTRATOR "); + if (flags & AIM_FLAG_AOL) + printf("AOL "); + if (flags & AIM_FLAG_OSCAR_PAY) + printf("OSCAR_PAY "); + if (flags & AIM_FLAG_FREE) + printf("FREE "); + if (flags & AIM_FLAG_AWAY) + printf("AWAY "); + if (flags & AIM_FLAG_UNKNOWN40) + printf("ICQ? "); + if (flags & AIM_FLAG_UNKNOWN80) + printf("UNKNOWN80 "); + return; +} + int faimtest_parse_userinfo(struct aim_session_t *sess, struct command_rx_struct *command, ...) { struct aim_userinfo_s *userinfo; @@ -494,37 +637,13 @@ int faimtest_parse_userinfo(struct aim_session_t *sess, struct command_rx_struct userinfo = va_arg(ap, struct aim_userinfo_s *); prof_encoding = va_arg(ap, char *); prof = va_arg(ap, char *); - inforeq = va_arg(ap, unsigned short); + inforeq = va_arg(ap, int); va_end(ap); printf("faimtest: userinfo: sn: %s\n", userinfo->sn); printf("faimtest: userinfo: warnlevel: 0x%04x\n", userinfo->warnlevel); - printf("faimtest: userinfo: class: 0x%04x = ", userinfo->class); - - /* - * 00000000 (binary) - * 1 Trial - * 2 Unknown - * 3 AOL - * 4 Unknown - * 5 Free - * - * ORed together. - * - */ - - if (userinfo->class & 0x0001) - printf("TRIAL "); - if (userinfo->class & 0x0002) - printf("ADMINISTRATOR "); - if (userinfo->class & 0x0004) - printf("AOL "); - if (userinfo->class & 0x0008) - printf("OSCAR_PAY "); - if (userinfo->class & 0x0010) - printf("FREE "); - if (userinfo->class & 0x0040) - printf("ICQ? "); + printf("faimtest: userinfo: flags: 0x%04x = ", userinfo->flags); + printuserflags(userinfo->flags); printf("\n"); printf("faimtest: userinfo: membersince: %lu\n", userinfo->membersince); @@ -551,7 +670,7 @@ int faimtest_parse_userinfo(struct aim_session_t *sess, struct command_rx_struct * char * srcsn the source name * char * msg message * int warnlevel warning/evil level - * int class user class + * int flags flags * ulong membersince time_t of date of signup * ulong onsince time_t of date of singon * int idletime min (sec?) idle @@ -574,25 +693,21 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str char *msg = NULL; u_int icbmflags = 0; char *tmpstr = NULL; - u_short flag1, flag2; + unsigned short flag1, flag2; userinfo = va_arg(ap, struct aim_userinfo_s *); msg = va_arg(ap, char *); icbmflags = va_arg(ap, u_int); - flag1 = va_arg(ap, u_short); - flag2 = va_arg(ap, u_short); + flag1 = va_arg(ap, int); + flag2 = va_arg(ap, int); va_end(ap); printf("faimtest: icbm: sn = \"%s\"\n", userinfo->sn); printf("faimtest: icbm: warnlevel = 0x%04x\n", userinfo->warnlevel); - printf("faimtest: icbm: class = 0x%04x ", userinfo->class); - if (userinfo->class & 0x0010) - printf("(FREE) "); - if (userinfo->class & 0x0001) - printf("(TRIAL) "); - if (userinfo->class & 0x0004) - printf("(AOL) "); + printf("faimtest: icbm: flags = 0x%04x = ", userinfo->flags); + printuserflags(userinfo->flags); printf("\n"); + printf("faimtest: icbm: membersince = %lu\n", userinfo->membersince); printf("faimtest: icbm: onlinesince = %lu\n", userinfo->onlinesince); printf("faimtest: icbm: idletime = 0x%04x\n", userinfo->idletime); @@ -636,6 +751,12 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str } else if (strstr(tmpstr, "anonwarn")) { printf("faimtest: icbm: sending anon warning\n"); aim_send_warning(sess, command->conn, userinfo->sn, AIM_WARN_ANON); + } else if (strstr(tmpstr, "setdirectoryinfo")) { + printf("faimtest: icbm: sending backwards profile data\n"); + aim_setdirectoryinfo(sess, command->conn, "tsrif", "elddim", "tsal", "nediam", "emankcin", "teerts", "ytic", "etats", "piz", 0, 1); + } else if (strstr(tmpstr, "setinterests")) { + printf("faimtest: icbm: setting fun interests\n"); + aim_setuserinterests(sess, command->conn, "interest1", "interest2", "interest3", "interest4", "interest5", 1); } else if (!strncmp(tmpstr, "open chatnav", 12)) { aim_bos_reqservice(sess, command->conn, AIM_CONN_TYPE_CHATNAV); //aim_chat_join(sess, command->conn, "thishereisaname2_chat85"); @@ -655,7 +776,6 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str } else if (!strncmp(tmpstr, "open directim", 13)) { struct aim_conn_t *newconn; newconn = aim_directim_initiate(sess, command->conn, NULL, userinfo->sn); - //aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINITIATE, faimtest_directim_initiate, 0); } else if (!strncmp(tmpstr, "reqsendmsg", 10)) { aim_send_im(sess, command->conn, "vaxherder", 0, "sendmsg 7900"); } else if (!strncmp(tmpstr, "sendmsg", 7)) { @@ -687,7 +807,7 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str struct aim_userinfo_s *userinfo; unsigned short reqclass; - reqclass = va_arg(ap, unsigned short); + reqclass = va_arg(ap, int); switch (reqclass) { case AIM_CAPS_VOICE: { userinfo = va_arg(ap, struct aim_userinfo_s *); @@ -695,14 +815,10 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str printf("faimtest: voice invitation: source sn = %s\n", userinfo->sn); printf("faimtest: voice invitation: \twarnlevel = 0x%04x\n", userinfo->warnlevel); - printf("faimtest: voice invitation: \tclass = 0x%04x ", userinfo->class); - if (userinfo->class & 0x0010) - printf("(FREE) "); - if (userinfo->class & 0x0001) - printf("(TRIAL) "); - if (userinfo->class & 0x0004) - printf("(AOL) "); + printf("faimtest: voice invitation: \tclass = 0x%04x = ", userinfo->flags); + printuserflags(userinfo->flags); printf("\n"); + /* we dont get membersince on chat invites! */ printf("faimtest: voice invitation: \tonlinesince = %lu\n", userinfo->onlinesince); printf("faimtest: voice invitation: \tidletime = 0x%04x\n", userinfo->idletime); @@ -710,8 +826,33 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str break; } case AIM_CAPS_GETFILE: { - printf("faimtset: get file!\n"); +#ifdef FILESUPPORT + char *ip, *cookie; + struct aim_conn_t *newconn; + + userinfo = va_arg(ap, struct aim_userinfo_s *); + ip = va_arg(ap, char *); + cookie = va_arg(ap, char *); + va_end(ap); + + printf("faimtest: get file request from %s (at %s)\n", userinfo->sn, ip); + + sleep(1); + + if( (newconn = aim_accepttransfer(sess, command->conn, userinfo->sn, cookie, ip, sess->oft.listing, reqclass)) == NULL ) { + printf("faimtest: getfile: requestconn: apparent error in accepttransfer\n"); + break; + } + + aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEFILEREQ, faimtest_getfile_filereq, 0); + aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEFILESEND, faimtest_getfile_filesend, 0); + aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILECOMPLETE, faimtest_getfile_complete, 0); + aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEDISCONNECT, faimtest_getfile_disconnect, 0); + + printf("faimtest: getfile connect succeeded, handlers added.\n"); + break; +#endif } case AIM_CAPS_SENDFILE: { printf("faimtest: send file!\n"); @@ -730,14 +871,10 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str printf("faimtest: chat invitation: source sn = %s\n", userinfo->sn); printf("faimtest: chat invitation: \twarnlevel = 0x%04x\n", userinfo->warnlevel); - printf("faimtest: chat invitation: \tclass = 0x%04x ", userinfo->class); - if (userinfo->class & 0x0010) - printf("(FREE) "); - if (userinfo->class & 0x0001) - printf("(TRIAL) "); - if (userinfo->class & 0x0004) - printf("(AOL) "); + printf("faimtest: chat invitation: \tclass = 0x%04x = ", userinfo->flags); + printuserflags(userinfo->flags); printf("\n"); + /* we dont get membersince on chat invites! */ printf("faimtest: chat invitation: \tonlinesince = %lu\n", userinfo->onlinesince); printf("faimtest: chat invitation: \tidletime = 0x%04x\n", userinfo->idletime); @@ -775,10 +912,10 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMDISCONNECT, faimtest_directim_disconnect, 0); aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, faimtest_directim_typing, 0); - aim_send_im_direct(sess, newconn, "goodday"); - printf("faimtest: OFT: DirectIM: connected to %s\n", userinfo->sn); + aim_send_im_direct(sess, newconn, "goodday"); + break; } default: @@ -791,14 +928,13 @@ int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_str return 1; } -#if 0 int faimtest_directim_initiate(struct aim_session_t *sess, struct command_rx_struct *command, ...) { va_list ap; struct aim_directim_priv *priv; struct aim_conn_t *newconn; - ap = va_start(ap, command); + va_start(ap, command); newconn = va_arg(ap, struct aim_conn_t *); va_end(ap); @@ -816,14 +952,13 @@ int faimtest_directim_initiate(struct aim_session_t *sess, struct command_rx_str return 1; } -#endif int faimtest_directim_connect(struct aim_session_t *sess, struct command_rx_struct *command, ...) { va_list ap; struct aim_directim_priv *priv; - ap = va_start(ap, command); + va_start(ap, command); priv = va_arg(ap, struct aim_directim_priv *); va_end(ap); @@ -839,7 +974,7 @@ int faimtest_directim_incoming(struct aim_session_t *sess, struct command_rx_str char *sn = NULL, *msg = NULL; struct aim_conn_t *conn; - ap = va_start(ap, command); + va_start(ap, command); conn = va_arg(ap, struct aim_conn_t *); sn = va_arg(ap, char *); msg = va_arg(ap, char *); @@ -873,7 +1008,18 @@ int faimtest_directim_incoming(struct aim_session_t *sess, struct command_rx_str int faimtest_directim_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...) { - printf("faimtest: directim_disconnect\n"); + va_list ap; + struct aim_conn_t *conn; + char *sn; + + va_start(ap, command); + conn = va_arg(ap, struct aim_conn_t *); + sn = va_arg(ap, char *); + va_end(ap); + + printf("faimtest: directim: disconnected from %s\n", sn); + + aim_conn_kill(sess, &conn); return 1; } @@ -882,7 +1028,7 @@ int faimtest_directim_typing(struct aim_session_t *sess, struct command_rx_struc va_list ap; char *sn; - ap = va_start(ap, command); + va_start(ap, command); sn = va_arg(ap, char *); va_end(ap); @@ -925,16 +1071,16 @@ int faimtest_parse_oncoming(struct aim_session_t *sess, struct command_rx_struct userinfo = va_arg(ap, struct aim_userinfo_s *); va_end(ap); - printf("\n%s is now online (class: %04x = %s%s%s%s%s%s%s%s) (caps = 0x%04x)\n", - userinfo->sn, userinfo->class, - (userinfo->class&AIM_CLASS_TRIAL)?" TRIAL":"", - (userinfo->class&AIM_CLASS_ADMINISTRATOR)?" ADMINISTRATOR":"", - (userinfo->class&AIM_CLASS_AOL)?" AOL":"", - (userinfo->class&AIM_CLASS_OSCAR_PAY)?" OSCAR_PAY":"", - (userinfo->class&AIM_CLASS_FREE)?" FREE":"", - (userinfo->class&AIM_CLASS_AWAY)?" AWAY":"", - (userinfo->class&AIM_CLASS_UNKNOWN40)?" UNKNOWN40":"", - (userinfo->class&AIM_CLASS_UNKNOWN80)?" UNKNOWN80":"", + printf("\n%s is now online (flags: %04x = %s%s%s%s%s%s%s%s) (caps = 0x%04x)\n", + userinfo->sn, userinfo->flags, + (userinfo->flags&AIM_FLAG_UNCONFIRMED)?" UNCONFIRMED":"", + (userinfo->flags&AIM_FLAG_ADMINISTRATOR)?" ADMINISTRATOR":"", + (userinfo->flags&AIM_FLAG_AOL)?" AOL":"", + (userinfo->flags&AIM_FLAG_OSCAR_PAY)?" OSCAR_PAY":"", + (userinfo->flags&AIM_FLAG_FREE)?" FREE":"", + (userinfo->flags&AIM_FLAG_AWAY)?" AWAY":"", + (userinfo->flags&AIM_FLAG_UNKNOWN40)?" UNKNOWN40":"", + (userinfo->flags&AIM_FLAG_UNKNOWN80)?" UNKNOWN80":"", userinfo->capabilities); return 1; } @@ -968,7 +1114,7 @@ int faimtest_parse_motd(struct aim_session_t *sess, struct command_rx_struct *co va_list ap; va_start(ap, command); - id = va_arg(ap, unsigned short); + id = va_arg(ap, int); msg = va_arg(ap, char *); va_end(ap); @@ -986,7 +1132,7 @@ int faimtest_parse_msgerr(struct aim_session_t *sess, struct command_rx_struct * va_start(ap, command); destsn = va_arg(ap, char *); - reason = va_arg(ap, unsigned short); + reason = va_arg(ap, int); va_end(ap); printf("faimtest: message to %s bounced (reason 0x%04x: %s)\n", destsn, reason, (reasonsn, reason, (reasonconn->priv); @@ -1162,45 +1308,63 @@ int faimtest_chat_incomingmsg(struct aim_session_t *sess, struct command_rx_stru int faimtest_chatnav_info(struct aim_session_t *sess, struct command_rx_struct *command, ...) { - u_short type; + unsigned short type; va_list ap; - ap = va_start(ap, command); - type = va_arg(ap, u_short); + va_start(ap, command); + type = va_arg(ap, int); - switch(type) - { - case 0x0002: - { - int maxrooms; - struct aim_chat_exchangeinfo *exchanges; - int exchangecount,i = 0; - - maxrooms = va_arg(ap, u_char); - exchangecount = va_arg(ap, int); - exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); - va_end(ap); - - printf("faimtest: chat info: Chat Rights:\n"); - printf("faimtest: chat info: \tMax Concurrent Rooms: %d\n", maxrooms); - - printf("faimtest: chat info: \tExchange List: (%d total)\n", exchangecount); - while (i < exchangecount) - { - printf("faimtest: chat info: \t\t%x: %s (%s/%s)\n", - exchanges[i].number, - exchanges[i].name, - exchanges[i].charset1, - exchanges[i].lang1); - i++; - } - - } - break; - default: - va_end(ap); - printf("faimtest: chatnav info: unknown type (%04x)\n", type); + switch(type) { + case 0x0002: { + int maxrooms; + struct aim_chat_exchangeinfo *exchanges; + int exchangecount,i = 0; + + maxrooms = va_arg(ap, int); + exchangecount = va_arg(ap, int); + exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); + va_end(ap); + + printf("faimtest: chat info: Chat Rights:\n"); + printf("faimtest: chat info: \tMax Concurrent Rooms: %d\n", maxrooms); + + printf("faimtest: chat info: \tExchange List: (%d total)\n", exchangecount); + while (i < exchangecount) { + printf("faimtest: chat info: \t\t%x: %s (%s/%s)\n", + exchanges[i].number, + exchanges[i].name, + exchanges[i].charset1, + exchanges[i].lang1); + i++; } + + } + break; + case 0x0008: { + char *fqcn, *name, *ck; + unsigned short instance, flags, maxmsglen, maxoccupancy, unknown; + unsigned char createperms; + unsigned long createtime; + + fqcn = va_arg(ap, char *); + instance = va_arg(ap, int); + flags = va_arg(ap, int); + createtime = va_arg(ap, unsigned long); + maxmsglen = va_arg(ap, int); + maxoccupancy = va_arg(ap, int); + createperms = va_arg(ap, int); + unknown = va_arg(ap, int); + name = va_arg(ap, char *); + ck = va_arg(ap, char *); + va_end(ap); + + printf("faimtest: recieved room create reply for %s\n", fqcn); + } + break; + default: + va_end(ap); + printf("faimtest: chatnav info: unknown type (%04x)\n", type); + } return 1; } @@ -1210,8 +1374,8 @@ int faimtest_parse_connerr(struct aim_session_t *sess, struct command_rx_struct unsigned short code; char *msg = NULL; - ap = va_start(ap, command); - code = va_arg(ap, unsigned short); + va_start(ap, command); + code = va_arg(ap, int); msg = va_arg(ap, char *); va_end(ap); @@ -1246,8 +1410,8 @@ int faimtest_parse_msgack(struct aim_session_t *sess, struct command_rx_struct * unsigned short type; char *sn = NULL; - ap = va_start(ap, command); - type = va_arg(ap, unsigned short); + va_start(ap, command); + type = va_arg(ap, int); sn = va_arg(ap, char *); va_end(ap); @@ -1256,6 +1420,102 @@ int faimtest_parse_msgack(struct aim_session_t *sess, struct command_rx_struct * return 1; } +#ifdef FILESUPPORT +int faimtest_getfile_filereq(struct aim_session_t *ses, struct command_rx_struct *command, ...) +{ + va_list ap; + struct aim_conn_t *oftconn; + struct aim_fileheader_t *fh; + char *cookie; + + va_start(ap, command); + oftconn = va_arg(ap, struct aim_conn_t *); + fh = va_arg(ap, struct aim_fileheader_t *); + cookie = va_arg(ap, char *); + va_end(ap); + + printf("faimtest: request for file %s.\n", fh->name); + + return 1; +} + + +int faimtest_getfile_filesend(struct aim_session_t *sess, struct command_rx_struct *command, ...) +{ + va_list ap; + struct aim_conn_t *oftconn; + struct aim_fileheader_t *fh; + char *path, *cookie; + + FILE *file; + + va_start(ap, command); + oftconn = va_arg(ap, struct aim_conn_t *); + fh = va_arg(ap, struct aim_fileheader_t *); + cookie = va_arg(ap, char *); + va_end(ap); + + printf("faimtest: sending file %s.\n", fh->name); + + if( (path = (char *)calloc(1, strlen(sess->oft.listingdir) +strlen(fh->name)+2)) == NULL) { + perror("calloc:"); + printf("faimtest: error in calloc of path\n"); + return 0; /* XXX: no idea what winaim expects here =) */ + } + + snprintf(path, strlen(sess->oft.listingdir)+strlen(fh->name)+2, "%s/%s", sess->oft.listingdir, fh->name); + + + if( (file = fopen(path, "r")) == NULL) { + printf("faimtest: getfile_send fopen failed for %s. damn.\n", path); + return 0; + } + + if (aim_getfile_send(oftconn, file, fh) == -1) { + printf("faimtest: getfile_send failed. damn.\n"); + } else { + printf("faimtest: looks like getfile went clean\n"); + } + + free(fh); + return 1; +} + +int faimtest_getfile_complete(struct aim_session_t *sess, struct command_rx_struct *command, ...) +{ + va_list ap; + struct aim_conn_t *conn; + struct aim_fileheader_t *fh; + + va_start(ap, command); + conn = va_arg(ap, struct aim_conn_t *); + fh = va_arg(ap, struct aim_fileheader_t *); + va_end(ap); + + printf("faimtest: completed file transfer for %s.\n", fh->name); + + /* aim_conn_kill(sess, &conn); */ /* we'll let winaim close the conn */ + return 1; +} + +int faimtest_getfile_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...) +{ + va_list ap; + struct aim_conn_t *conn; + char *sn; + + va_start(ap, command); + conn = va_arg(ap, struct aim_conn_t *); + sn = va_arg(ap, char *); + va_end(ap); + + aim_conn_kill(sess, &conn); + + printf("faimtest: getfile: disconnected from %s\n", sn); + return 1; +} +#endif + int faimtest_parse_ratechange(struct aim_session_t *sess, struct command_rx_struct *command, ...) { va_list ap; @@ -1267,7 +1527,7 @@ int faimtest_parse_ratechange(struct aim_session_t *sess, struct command_rx_stru printf("faimtest: ratechange: %lu\n", newrate); - return (1); + return 1; } int faimtest_parse_evilnotify(struct aim_session_t *sess, struct command_rx_struct *command, ...)