]> andersk Git - libfaim.git/blob - src/login.c
6b06863dda35791bdf2398922919546f75c103a5
[libfaim.git] / src / login.c
1 /*
2  *  aim_login.c
3  *
4  *  This contains all the functions needed to actually login.
5  *
6  */
7
8 #define FAIM_INTERNAL
9 #include <aim.h>
10
11 #include "md5.h"
12
13 static int aim_encode_password_md5(const char *password, const char *key, md5_byte_t *digest);
14 static int aim_encode_password(const char *password, unsigned char *encoded);
15
16 faim_export int aim_sendconnack(struct aim_session_t *sess,
17                                 struct aim_conn_t *conn)
18 {
19   int curbyte=0;
20   
21   struct command_tx_struct *newpacket;
22
23   if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0001, 4)))
24     return -1;
25
26   newpacket->lock = 1;
27   
28   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
29   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
30
31   newpacket->lock = 0;
32   return aim_tx_enqueue(sess, newpacket);
33 }
34
35 /*
36  * In AIM 3.5 protocol, the first stage of login is to request
37  * login from the Authorizer, passing it the screen name
38  * for verification.  If the name is invalid, a 0017/0003 
39  * is spit back, with the standard error contents.  If valid,
40  * a 0017/0007 comes back, which is the signal to send
41  * it the main login command (0017/0002).  
42  */
43 faim_export int aim_request_login(struct aim_session_t *sess,
44                                   struct aim_conn_t *conn, 
45                                   char *sn)
46 {
47   int curbyte;
48   struct command_tx_struct *newpacket;
49
50   if (!sess || !conn || !sn)
51     return -1;
52
53   /*
54    * For ICQ, we enable the ancient horrible login and stuff
55    * a key packet into the queue to make it look like we got
56    * a reply back. This is so the client doesn't know we're
57    * really not doing MD5 login.
58    *
59    * This may sound stupid, but I'm not in the best of moods and 
60    * I don't plan to keep support for this crap around much longer.
61    * Its all AOL's fault anyway, really. I hate AOL.  Really.  They
62    * always seem to be able to piss me off by doing the dumbest little
63    * things.  Like disabling MD5 logins for ICQ UINs, or adding purposefully
64    * wrong TLV lengths, or adding superfluous information to host strings,
65    * or... I'll stop.
66    *
67    */
68   if ((sn[0] >= '0') && (sn[0] <= '9')) {
69     struct command_rx_struct *newrx;
70     int i;
71
72     if (!(newrx = (struct command_rx_struct *)malloc(sizeof(struct command_rx_struct))))
73       return -1;
74     memset(newrx, 0x00, sizeof(struct command_rx_struct));
75     newrx->lock = 1; 
76     newrx->hdrtype = AIM_FRAMETYPE_OSCAR;
77     newrx->hdr.oscar.type = 0x02;
78     newrx->hdr.oscar.seqnum = 0;
79     newrx->commandlen = 10+2+1;
80     newrx->nofree = 0; 
81     if (!(newrx->data = malloc(newrx->commandlen))) {
82       free(newrx);
83       return -1;
84     }
85
86     i = aim_putsnac(newrx->data, 0x0017, 0x0007, 0x0000, 0x0000);
87     i += aimutil_put16(newrx->data+i, 0x01);
88     i += aimutil_putstr(newrx->data+i, "0", 1);
89
90     newrx->conn = conn;
91
92     newrx->next = sess->queue_incoming;
93     sess->queue_incoming = newrx;
94
95     newrx->lock = 0;
96
97     sess->flags &= ~AIM_SESS_FLAGS_SNACLOGIN;
98
99     return 0;
100   } 
101
102   sess->flags |= AIM_SESS_FLAGS_SNACLOGIN;
103
104   aim_sendconnack(sess, conn);
105
106   if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+2+2+strlen(sn))))
107     return -1;
108
109   newpacket->lock = 1;
110   
111   curbyte  = aim_putsnac(newpacket->data, 0x0017, 0x0006, 0x0000, 0x00010000);
112   curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0001, strlen(sn), sn);
113
114   newpacket->commandlen = curbyte;
115   newpacket->lock = 0;
116
117   return aim_tx_enqueue(sess, newpacket);
118 }
119
120 /*
121  * send_login(int socket, char *sn, char *password)
122  *  
123  * This is the initial login request packet.
124  *
125  * The password is encoded before transmition, as per
126  * encode_password().  See that function for their
127  * stupid method of doing it.
128  *
129  * Latest WinAIM:
130  *   clientstring = "AOL Instant Messenger (SM), version 4.3.2188/WIN32"
131  *   major2 = 0x0109
132  *   major = 0x0400
133  *   minor = 0x0003
134  *   minor2 = 0x0000
135  *   build = 0x088c
136  *   unknown = 0x00000086
137  *   lang = "en"
138  *   country = "us"
139  *   unknown4a = 0x01
140  *
141  * Latest WinAIM that libfaim can emulate without server-side buddylists:
142  *   clientstring = "AOL Instant Messenger (SM), version 3.5.1670/WIN32"
143  *   major2 = 0x0004
144  *   major =  0x0003
145  *   minor =  0x0005
146  *   minor2 = 0x0000
147  *   build =  0x0686
148  *   unknown =0x0000002a
149  *
150  */
151 faim_export int aim_send_login (struct aim_session_t *sess,
152                                 struct aim_conn_t *conn, 
153                                 char *sn, char *password, 
154                                 struct client_info_s *clientinfo,
155                                 char *key)
156 {
157   int curbyte=0;
158   struct command_tx_struct *newpacket;
159
160   if (!clientinfo || !sn || !password)
161     return -1;
162
163   if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152)))
164     return -1;
165
166   newpacket->lock = 1;
167
168   newpacket->hdr.oscar.type = (sess->flags & AIM_SESS_FLAGS_SNACLOGIN)?0x02:0x01;
169   
170   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN)
171     curbyte = aim_putsnac(newpacket->data, 0x0017, 0x0002, 0x0000, 0x00010000);
172   else {
173     curbyte  = aimutil_put16(newpacket->data, 0x0000);
174     curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
175   }
176
177   curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0001, strlen(sn), sn);
178   
179   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN) {
180     md5_byte_t digest[16];
181
182     aim_encode_password_md5(password, key, digest);
183     curbyte+= aim_puttlv_str(newpacket->data+curbyte, 0x0025, 16, (char *)digest);
184   } else { 
185     char *password_encoded;
186
187     password_encoded = (char *) malloc(strlen(password));
188     aim_encode_password(password, password_encoded);
189     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0002, strlen(password), password_encoded);
190     free(password_encoded);
191   }
192
193   /* XXX is clientstring required by oscar? */
194   if (strlen(clientinfo->clientstring))
195     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0003, strlen(clientinfo->clientstring), clientinfo->clientstring);
196
197   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN) {
198
199     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0016, (unsigned short)clientinfo->major2);
200     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0017, (unsigned short)clientinfo->major);
201     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0018, (unsigned short)clientinfo->minor);
202     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0019, (unsigned short)clientinfo->minor2);
203     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x001a, (unsigned short)clientinfo->build);
204   
205     curbyte += aim_puttlv_32(newpacket->data+curbyte, 0x0014, clientinfo->unknown);
206     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0009, 0x0015);
207
208   } else {
209     /* Use very specific version numbers, to further indicate the hack. */
210     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0016, 0x010a);
211     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0017, 0x0004);
212     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0018, 0x003c);
213     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0019, 0x0001);
214     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x001a, 0x0cce);
215     curbyte += aim_puttlv_32(newpacket->data+curbyte, 0x0014, 0x00000055);
216   }
217
218   if (strlen(clientinfo->country))
219     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000f, strlen(clientinfo->country), clientinfo->country);
220   else
221     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000f, 2, "us");
222
223   if (strlen(clientinfo->lang))
224     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000e, strlen(clientinfo->lang), clientinfo->lang);
225   else
226     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000e, 2, "en");
227   
228   newpacket->commandlen = curbyte;
229
230   newpacket->lock = 0;
231   return aim_tx_enqueue(sess, newpacket);
232 }
233
234 static int aim_encode_password_md5(const char *password, const char *key, md5_byte_t *digest)
235 {
236   md5_state_t state;
237
238   md5_init(&state);     
239   md5_append(&state, (const md5_byte_t *)key, strlen(key));
240   md5_append(&state, (const md5_byte_t *)password, strlen(password));
241   md5_append(&state, (const md5_byte_t *)AIM_MD5_STRING, strlen(AIM_MD5_STRING));
242   md5_finish(&state, (md5_byte_t *)digest);
243
244   return 0;
245 }
246
247 /**
248  * aim_encode_password - Encode a password using old XOR method
249  * @password: incoming password
250  * @encoded: buffer to put encoded password
251  *
252  * This takes a const pointer to a (null terminated) string
253  * containing the unencoded password.  It also gets passed
254  * an already allocated buffer to store the encoded password.
255  * This buffer should be the exact length of the password without
256  * the null.  The encoded password buffer /is not %NULL terminated/.
257  *
258  * The encoding_table seems to be a fixed set of values.  We'll
259  * hope it doesn't change over time!  
260  *
261  * This is only used for the XOR method, not the better MD5 method.
262  *
263  */
264 static int aim_encode_password(const char *password, unsigned char *encoded)
265 {
266   u_char encoding_table[] = {
267 #if 0 /* old v1 table */
268     0xf3, 0xb3, 0x6c, 0x99,
269     0x95, 0x3f, 0xac, 0xb6,
270     0xc5, 0xfa, 0x6b, 0x63,
271     0x69, 0x6c, 0xc3, 0x9f
272 #else /* v2.1 table, also works for ICQ */
273     0xf3, 0x26, 0x81, 0xc4,
274     0x39, 0x86, 0xdb, 0x92,
275     0x71, 0xa3, 0xb9, 0xe6,
276     0x53, 0x7a, 0x95, 0x7c
277 #endif
278   };
279
280   int i;
281   
282   for (i = 0; i < strlen(password); i++)
283       encoded[i] = (password[i] ^ encoding_table[i]);
284
285   return 0;
286 }
287
288 /*
289  * This is sent back as a general response to the login command.
290  * It can be either an error or a success, depending on the
291  * precense of certain TLVs.  
292  *
293  * The client should check the value passed as errorcode. If
294  * its nonzero, there was an error.
295  *
296  */
297 faim_internal int aim_authparse(struct aim_session_t *sess, 
298                                 struct command_rx_struct *command)
299 {
300   struct aim_tlvlist_t *tlvlist;
301   int ret = 1;
302   rxcallback_t userfunc = NULL;
303   char *sn = NULL, *bosip = NULL, *errurl = NULL, *email = NULL;
304   unsigned char *cookie = NULL;
305   int errorcode = 0, regstatus = 0;
306   int latestbuild = 0, latestbetabuild = 0;
307   char *latestrelease = NULL, *latestbeta = NULL;
308   char *latestreleaseurl = NULL, *latestbetaurl = NULL;
309   char *latestreleaseinfo = NULL, *latestbetainfo = NULL;
310
311   /*
312    * Read block of TLVs.  All further data is derived
313    * from what is parsed here.
314    *
315    * For SNAC login, there's a 17/3 SNAC header in front.
316    *
317    */
318   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN)
319     tlvlist = aim_readtlvchain(command->data+10, command->commandlen-10);
320   else
321     tlvlist = aim_readtlvchain(command->data, command->commandlen);
322
323   /*
324    * No matter what, we should have a screen name.
325    */
326   memset(sess->sn, 0, sizeof(sess->sn));
327   if (aim_gettlv(tlvlist, 0x0001, 1)) {
328     sn = aim_gettlv_str(tlvlist, 0x0001, 1);
329     strncpy(sess->sn, sn, sizeof(sess->sn));
330   }
331
332   /*
333    * Check for an error code.  If so, we should also
334    * have an error url.
335    */
336   if (aim_gettlv(tlvlist, 0x0008, 1)) 
337     errorcode = aim_gettlv16(tlvlist, 0x0008, 1);
338   if (aim_gettlv(tlvlist, 0x0004, 1))
339     errurl = aim_gettlv_str(tlvlist, 0x0004, 1);
340
341   /*
342    * BOS server address.
343    */
344   if (aim_gettlv(tlvlist, 0x0005, 1))
345     bosip = aim_gettlv_str(tlvlist, 0x0005, 1);
346
347   /*
348    * Authorization cookie.
349    */
350   if (aim_gettlv(tlvlist, 0x0006, 1)) {
351     struct aim_tlv_t *tmptlv;
352
353     tmptlv = aim_gettlv(tlvlist, 0x0006, 1);
354
355     if ((cookie = malloc(tmptlv->length)))
356       memcpy(cookie, tmptlv->value, tmptlv->length);
357   }
358
359   /*
360    * The email address attached to this account
361    *   Not available for ICQ logins.
362    */
363   if (aim_gettlv(tlvlist, 0x0011, 1))
364     email = aim_gettlv_str(tlvlist, 0x0011, 1);
365
366   /*
367    * The registration status.  (Not real sure what it means.)
368    *   Not available for ICQ logins.
369    *
370    *   1 = No disclosure
371    *   2 = Limited disclosure
372    *   3 = Full disclosure
373    *
374    * This has to do with whether your email address is available
375    * to other users or not.  AFAIK, this feature is no longer used.
376    *
377    */
378   if (aim_gettlv(tlvlist, 0x0013, 1))
379     regstatus = aim_gettlv16(tlvlist, 0x0013, 1);
380
381   if (aim_gettlv(tlvlist, 0x0040, 1))
382     latestbetabuild = aim_gettlv32(tlvlist, 0x0040, 1);
383   if (aim_gettlv(tlvlist, 0x0041, 1))
384     latestbetaurl = aim_gettlv_str(tlvlist, 0x0041, 1);
385   if (aim_gettlv(tlvlist, 0x0042, 1))
386     latestbetainfo = aim_gettlv_str(tlvlist, 0x0042, 1);
387   if (aim_gettlv(tlvlist, 0x0043, 1))
388     latestbeta = aim_gettlv_str(tlvlist, 0x0043, 1);
389   if (aim_gettlv(tlvlist, 0x0048, 1))
390     ; /* no idea what this is */
391
392   if (aim_gettlv(tlvlist, 0x0044, 1))
393     latestbuild = aim_gettlv32(tlvlist, 0x0044, 1);
394   if (aim_gettlv(tlvlist, 0x0045, 1))
395     latestreleaseurl = aim_gettlv_str(tlvlist, 0x0045, 1);
396   if (aim_gettlv(tlvlist, 0x0046, 1))
397     latestreleaseinfo = aim_gettlv_str(tlvlist, 0x0046, 1);
398   if (aim_gettlv(tlvlist, 0x0047, 1))
399     latestrelease = aim_gettlv_str(tlvlist, 0x0047, 1);
400   if (aim_gettlv(tlvlist, 0x0049, 1))
401     ; /* no idea what this is */
402
403
404   if ((userfunc = aim_callhandler(sess, command->conn, 0x0017, 0x0003)))
405     ret = userfunc(sess, command, sn, errorcode, errurl, regstatus, email, bosip, cookie, latestrelease, latestbuild, latestreleaseurl, latestreleaseinfo, latestbeta, latestbetabuild, latestbetaurl, latestbetainfo);
406
407
408   if (sn)
409     free(sn);
410   if (bosip)
411     free(bosip);
412   if (errurl)
413     free(errurl);
414   if (email)
415     free(email);
416   if (cookie)
417     free(cookie);
418   if (latestrelease)
419     free(latestrelease);
420   if (latestreleaseurl)
421     free(latestreleaseurl);
422   if (latestbeta)
423     free(latestbeta);
424   if (latestbetaurl)
425     free(latestbetaurl);
426   if (latestreleaseinfo)
427     free(latestreleaseinfo);
428   if (latestbetainfo)
429     free(latestbetainfo);
430
431   aim_freetlvchain(&tlvlist);
432
433   return ret;
434 }
435
436 /*
437  * Middle handler for 0017/0007 SNACs.  Contains the auth key prefixed
438  * by only its length in a two byte word.
439  *
440  * Calls the client, which should then use the value to call aim_send_login.
441  *
442  */
443 faim_internal int aim_authkeyparse(struct aim_session_t *sess, struct command_rx_struct *command)
444 {
445   unsigned char *key;
446   int keylen;
447   int ret = 1;
448   rxcallback_t userfunc;
449
450   keylen = aimutil_get16(command->data+10);
451   if (!(key = malloc(keylen+1)))
452     return ret;
453   memcpy(key, command->data+12, keylen);
454   key[keylen] = '\0';
455   
456   if ((userfunc = aim_callhandler(sess, command->conn, 0x0017, 0x0007)))
457     ret = userfunc(sess, command, (char *)key);
458
459   free(key);  
460
461   return ret;
462 }
463
464 /*
465  * Generate an authorization response.  
466  *
467  * You probably don't want this unless you're writing an AIM server.
468  *
469  */
470 faim_export unsigned long aim_sendauthresp(struct aim_session_t *sess, 
471                                            struct aim_conn_t *conn, 
472                                            char *sn, int errorcode,
473                                            char *errorurl, char *bosip, 
474                                            char *cookie, char *email, 
475                                            int regstatus)
476 {       
477   struct command_tx_struct *tx;
478   struct aim_tlvlist_t *tlvlist = NULL;
479
480   if (!(tx = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0004, 1152)))
481     return -1;
482   
483   tx->lock = 1;
484
485   if (sn)
486     aim_addtlvtochain_str(&tlvlist, 0x0001, sn, strlen(sn));
487   else
488     aim_addtlvtochain_str(&tlvlist, 0x0001, sess->sn, strlen(sess->sn));
489
490   if (errorcode) {
491     aim_addtlvtochain16(&tlvlist, 0x0008, errorcode);
492     aim_addtlvtochain_str(&tlvlist, 0x0004, errorurl, strlen(errorurl));
493   } else {
494     aim_addtlvtochain_str(&tlvlist, 0x0005, bosip, strlen(bosip));
495     aim_addtlvtochain_str(&tlvlist, 0x0006, cookie, AIM_COOKIELEN);
496     aim_addtlvtochain_str(&tlvlist, 0x0011, email, strlen(email));
497     aim_addtlvtochain16(&tlvlist, 0x0013, (unsigned short)regstatus);
498   }
499
500   tx->commandlen = aim_writetlvchain(tx->data, tx->commandlen, &tlvlist);
501   tx->lock = 0;
502
503   return aim_tx_enqueue(sess, tx);
504 }
505
506 /*
507  * Generate a random cookie.  (Non-client use only)
508  */
509 faim_export int aim_gencookie(unsigned char *buf)
510 {
511   int i;
512
513   srand(time(NULL));
514
515   for (i=0; i < AIM_COOKIELEN; i++)
516     buf[i] = 1+(int) (256.0*rand()/(RAND_MAX+0.0));
517
518   return i;
519 }
520
521 /*
522  * Send Server Ready.  (Non-client)
523  */
524 faim_export int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn)
525 {
526   struct command_tx_struct *tx;
527   int i = 0;
528
529   if (!(tx = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+0x22)))
530     return -1;
531
532   tx->lock = 1;
533
534   i += aim_putsnac(tx->data, 0x0001, 0x0003, 0x0000, sess->snac_nextid++);
535   
536   i += aimutil_put16(tx->data+i, 0x0001);  
537   i += aimutil_put16(tx->data+i, 0x0002);
538   i += aimutil_put16(tx->data+i, 0x0003);
539   i += aimutil_put16(tx->data+i, 0x0004);
540   i += aimutil_put16(tx->data+i, 0x0006);
541   i += aimutil_put16(tx->data+i, 0x0008);
542   i += aimutil_put16(tx->data+i, 0x0009);
543   i += aimutil_put16(tx->data+i, 0x000a);
544   i += aimutil_put16(tx->data+i, 0x000b);
545   i += aimutil_put16(tx->data+i, 0x000c);
546   i += aimutil_put16(tx->data+i, 0x0013);
547   i += aimutil_put16(tx->data+i, 0x0015);
548
549   tx->commandlen = i;
550   tx->lock = 0;
551   return aim_tx_enqueue(sess, tx);
552 }
553
554
555 /* 
556  * Send service redirect.  (Non-Client)
557  */
558 faim_export unsigned long aim_sendredirect(struct aim_session_t *sess, 
559                                            struct aim_conn_t *conn, 
560                                            unsigned short servid, 
561                                            char *ip,
562                                            char *cookie)
563 {       
564   struct command_tx_struct *tx;
565   struct aim_tlvlist_t *tlvlist = NULL;
566   int i = 0;
567
568   if (!(tx = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152)))
569     return -1;
570
571   tx->lock = 1;
572
573   i += aim_putsnac(tx->data+i, 0x0001, 0x0005, 0x0000, 0x00000000);
574   
575   aim_addtlvtochain16(&tlvlist, 0x000d, servid);
576   aim_addtlvtochain_str(&tlvlist, 0x0005, ip, strlen(ip));
577   aim_addtlvtochain_str(&tlvlist, 0x0006, cookie, AIM_COOKIELEN);
578
579   tx->commandlen = aim_writetlvchain(tx->data+i, tx->commandlen-i, &tlvlist)+i;
580   aim_freetlvchain(&tlvlist);
581
582   tx->lock = 0;
583   return aim_tx_enqueue(sess, tx);
584 }
This page took 0.067603 seconds and 3 git commands to generate.