]> andersk Git - libfaim.git/blob - src/login.c
3e6e9cd2d04679d12d9eccb9bd30b464793e315d
[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(const char *password, unsigned char *encoded);
14
15 faim_export int aim_sendconnack(struct aim_session_t *sess,
16                                 struct aim_conn_t *conn)
17 {
18   int curbyte=0;
19   
20   struct command_tx_struct *newpacket;
21
22   if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0001, 4)))
23     return -1;
24
25   newpacket->lock = 1;
26   
27   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
28   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
29
30   newpacket->lock = 0;
31   return aim_tx_enqueue(sess, newpacket);
32 }
33
34 /*
35  * In AIM 3.5 protocol, the first stage of login is to request
36  * login from the Authorizer, passing it the screen name
37  * for verification.  If the name is invalid, a 0017/0003 
38  * is spit back, with the standard error contents.  If valid,
39  * a 0017/0007 comes back, which is the signal to send
40  * it the main login command (0017/0002).  
41  */
42 faim_export int aim_request_login(struct aim_session_t *sess,
43                                   struct aim_conn_t *conn, 
44                                   char *sn)
45 {
46   int curbyte;
47   struct command_tx_struct *newpacket;
48
49   if (!sess || !conn || !sn)
50     return -1;
51
52   /*
53    * For ICQ, we enable the ancient horrible login and stuff
54    * a key packet into the queue to make it look like we got
55    * a reply back. This is so the client doesn't know we're
56    * really not doing MD5 login.
57    *
58    * This may sound stupid, but I'm not in the best of moods and 
59    * I don't plan to keep support for this crap around much longer.
60    * Its all AOL's fault anyway, really. I hate AOL.  Really.  They
61    * always seem to be able to piss me off by doing the dumbest little
62    * things.  Like disabling MD5 logins for ICQ UINs, or adding purposefully
63    * wrong TLV lengths, or adding superfluous information to host strings,
64    * or... I'll stop.
65    *
66    */
67   if ((sn[0] >= '0') && (sn[0] <= '9')) {
68     struct command_rx_struct *newrx;
69     int i;
70
71     if (!(newrx = (struct command_rx_struct *)malloc(sizeof(struct command_rx_struct))))
72       return -1;
73     memset(newrx, 0x00, sizeof(struct command_rx_struct));
74     newrx->lock = 1; 
75     newrx->hdrtype = AIM_FRAMETYPE_OSCAR;
76     newrx->hdr.oscar.type = 0x02;
77     newrx->hdr.oscar.seqnum = 0;
78     newrx->commandlen = 10+2+1;
79     newrx->nofree = 0; 
80     if (!(newrx->data = malloc(newrx->commandlen))) {
81       free(newrx);
82       return -1;
83     }
84
85     i = aim_putsnac(newrx->data, 0x0017, 0x0007, 0x0000, 0x0000);
86     i += aimutil_put16(newrx->data+i, 0x01);
87     i += aimutil_putstr(newrx->data+i, "0", 1);
88
89     newrx->conn = conn;
90
91     newrx->next = sess->queue_incoming;
92     sess->queue_incoming = newrx;
93
94     newrx->lock = 0;
95
96     sess->flags &= ~AIM_SESS_FLAGS_SNACLOGIN;
97
98     return 0;
99   } 
100
101   sess->flags |= AIM_SESS_FLAGS_SNACLOGIN;
102
103   aim_sendconnack(sess, conn);
104
105   if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+2+2+strlen(sn))))
106     return -1;
107
108   newpacket->lock = 1;
109   
110   curbyte  = aim_putsnac(newpacket->data, 0x0017, 0x0006, 0x0000, 0x00010000);
111   curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0001, strlen(sn), sn);
112
113   newpacket->commandlen = curbyte;
114   newpacket->lock = 0;
115
116   return aim_tx_enqueue(sess, newpacket);
117 }
118
119 /*
120  * send_login(int socket, char *sn, char *password)
121  *  
122  * This is the initial login request packet.
123  *
124  * The password is encoded before transmition, as per
125  * encode_password().  See that function for their
126  * stupid method of doing it.
127  *
128  * Latest WinAIM:
129  *   clientstring = "AOL Instant Messenger (SM), version 4.3.2188/WIN32"
130  *   major2 = 0x0109
131  *   major = 0x0400
132  *   minor = 0x0003
133  *   minor2 = 0x0000
134  *   build = 0x088c
135  *   unknown = 0x00000086
136  *   lang = "en"
137  *   country = "us"
138  *   unknown4a = 0x01
139  *
140  * Latest WinAIM that libfaim can emulate without server-side buddylists:
141  *   clientstring = "AOL Instant Messenger (SM), version 3.5.1670/WIN32"
142  *   major2 = 0x0004
143  *   major =  0x0003
144  *   minor =  0x0005
145  *   minor2 = 0x0000
146  *   build =  0x0686
147  *   unknown =0x0000002a
148  *
149  */
150 faim_export int aim_send_login (struct aim_session_t *sess,
151                                 struct aim_conn_t *conn, 
152                                 char *sn, char *password, 
153                                 struct client_info_s *clientinfo,
154                                 char *key)
155 {
156   int curbyte=0;
157   struct command_tx_struct *newpacket;
158
159   if (!clientinfo || !sn || !password)
160     return -1;
161
162   if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152)))
163     return -1;
164
165   newpacket->lock = 1;
166
167   newpacket->hdr.oscar.type = (sess->flags & AIM_SESS_FLAGS_SNACLOGIN)?0x02:0x01;
168   
169   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN)
170     curbyte = aim_putsnac(newpacket->data, 0x0017, 0x0002, 0x0000, 0x00010000);
171   else {
172     curbyte  = aimutil_put16(newpacket->data, 0x0000);
173     curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
174   }
175
176   curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0001, strlen(sn), sn);
177   
178   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN) {
179     unsigned char digest[16];
180
181     aim_encode_password_md5(password, key, digest);
182     curbyte+= aim_puttlv_str(newpacket->data+curbyte, 0x0025, 16, (char *)digest);
183   } else { 
184     char *password_encoded;
185
186     password_encoded = (char *) malloc(strlen(password));
187     aim_encode_password(password, password_encoded);
188     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0002, strlen(password), password_encoded);
189     free(password_encoded);
190   }
191
192   /* XXX is clientstring required by oscar? */
193   if (strlen(clientinfo->clientstring))
194     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0003, strlen(clientinfo->clientstring), clientinfo->clientstring);
195
196   if (sess->flags & AIM_SESS_FLAGS_SNACLOGIN) {
197
198     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0016, (unsigned short)clientinfo->major2);
199     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0017, (unsigned short)clientinfo->major);
200     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0018, (unsigned short)clientinfo->minor);
201     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0019, (unsigned short)clientinfo->minor2);
202     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x001a, (unsigned short)clientinfo->build);
203   
204     curbyte += aim_puttlv_32(newpacket->data+curbyte, 0x0014, clientinfo->unknown);
205     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0009, 0x0015);
206
207   } else {
208     /* Use very specific version numbers, to further indicate the hack. */
209     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0016, 0x010a);
210     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0017, 0x0004);
211     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0018, 0x003c);
212     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0019, 0x0001);
213     curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x001a, 0x0cce);
214     curbyte += aim_puttlv_32(newpacket->data+curbyte, 0x0014, 0x00000055);
215   }
216
217   if (strlen(clientinfo->country))
218     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000f, strlen(clientinfo->country), clientinfo->country);
219   else
220     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000f, 2, "us");
221
222   if (strlen(clientinfo->lang))
223     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000e, strlen(clientinfo->lang), clientinfo->lang);
224   else
225     curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000e, 2, "en");
226   
227   newpacket->commandlen = curbyte;
228
229   newpacket->lock = 0;
230   return aim_tx_enqueue(sess, newpacket);
231 }
232
233 faim_export int aim_encode_password_md5(const char *password, const char *key, unsigned char *digest)
234 {
235   md5_state_t state;
236
237   md5_init(&state);     
238   md5_append(&state, (const md5_byte_t *)key, strlen(key));
239   md5_append(&state, (const md5_byte_t *)password, strlen(password));
240   md5_append(&state, (const md5_byte_t *)AIM_MD5_STRING, strlen(AIM_MD5_STRING));
241   md5_finish(&state, (md5_byte_t *)digest);
242
243   return 0;
244 }
245
246 /**
247  * aim_encode_password - Encode a password using old XOR method
248  * @password: incoming password
249  * @encoded: buffer to put encoded password
250  *
251  * This takes a const pointer to a (null terminated) string
252  * containing the unencoded password.  It also gets passed
253  * an already allocated buffer to store the encoded password.
254  * This buffer should be the exact length of the password without
255  * the null.  The encoded password buffer /is not %NULL terminated/.
256  *
257  * The encoding_table seems to be a fixed set of values.  We'll
258  * hope it doesn't change over time!  
259  *
260  * This is only used for the XOR method, not the better MD5 method.
261  *
262  */
263 static int aim_encode_password(const char *password, unsigned char *encoded)
264 {
265   u_char encoding_table[] = {
266 #if 0 /* old v1 table */
267     0xf3, 0xb3, 0x6c, 0x99,
268     0x95, 0x3f, 0xac, 0xb6,
269     0xc5, 0xfa, 0x6b, 0x63,
270     0x69, 0x6c, 0xc3, 0x9f
271 #else /* v2.1 table, also works for ICQ */
272     0xf3, 0x26, 0x81, 0xc4,
273     0x39, 0x86, 0xdb, 0x92,
274     0x71, 0xa3, 0xb9, 0xe6,
275     0x53, 0x7a, 0x95, 0x7c
276 #endif
277   };
278
279   int i;
280   
281   for (i = 0; i < strlen(password); i++)
282       encoded[i] = (password[i] ^ encoding_table[i]);
283
284   return 0;
285 }
286
287 /*
288  * Generate an authorization response.  
289  *
290  * You probably don't want this unless you're writing an AIM server.
291  *
292  */
293 faim_export unsigned long aim_sendauthresp(struct aim_session_t *sess, 
294                                            struct aim_conn_t *conn, 
295                                            char *sn, int errorcode,
296                                            char *errorurl, char *bosip, 
297                                            char *cookie, char *email, 
298                                            int regstatus)
299 {       
300   struct command_tx_struct *tx;
301   struct aim_tlvlist_t *tlvlist = NULL;
302
303   if (!(tx = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0004, 1152)))
304     return -1;
305   
306   tx->lock = 1;
307
308   if (sn)
309     aim_addtlvtochain_str(&tlvlist, 0x0001, sn, strlen(sn));
310   else
311     aim_addtlvtochain_str(&tlvlist, 0x0001, sess->sn, strlen(sess->sn));
312
313   if (errorcode) {
314     aim_addtlvtochain16(&tlvlist, 0x0008, errorcode);
315     aim_addtlvtochain_str(&tlvlist, 0x0004, errorurl, strlen(errorurl));
316   } else {
317     aim_addtlvtochain_str(&tlvlist, 0x0005, bosip, strlen(bosip));
318     aim_addtlvtochain_str(&tlvlist, 0x0006, cookie, AIM_COOKIELEN);
319     aim_addtlvtochain_str(&tlvlist, 0x0011, email, strlen(email));
320     aim_addtlvtochain16(&tlvlist, 0x0013, (unsigned short)regstatus);
321   }
322
323   tx->commandlen = aim_writetlvchain(tx->data, tx->commandlen, &tlvlist);
324   tx->lock = 0;
325
326   return aim_tx_enqueue(sess, tx);
327 }
328
329 /*
330  * Generate a random cookie.  (Non-client use only)
331  */
332 faim_export int aim_gencookie(unsigned char *buf)
333 {
334   int i;
335
336   srand(time(NULL));
337
338   for (i=0; i < AIM_COOKIELEN; i++)
339     buf[i] = 1+(int) (256.0*rand()/(RAND_MAX+0.0));
340
341   return i;
342 }
343
344 /*
345  * Send Server Ready.  (Non-client)
346  */
347 faim_export int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn)
348 {
349   struct command_tx_struct *tx;
350   int i = 0;
351
352   if (!(tx = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+0x22)))
353     return -1;
354
355   tx->lock = 1;
356
357   i += aim_putsnac(tx->data, 0x0001, 0x0003, 0x0000, sess->snac_nextid++);
358   
359   i += aimutil_put16(tx->data+i, 0x0001);  
360   i += aimutil_put16(tx->data+i, 0x0002);
361   i += aimutil_put16(tx->data+i, 0x0003);
362   i += aimutil_put16(tx->data+i, 0x0004);
363   i += aimutil_put16(tx->data+i, 0x0006);
364   i += aimutil_put16(tx->data+i, 0x0008);
365   i += aimutil_put16(tx->data+i, 0x0009);
366   i += aimutil_put16(tx->data+i, 0x000a);
367   i += aimutil_put16(tx->data+i, 0x000b);
368   i += aimutil_put16(tx->data+i, 0x000c);
369   i += aimutil_put16(tx->data+i, 0x0013);
370   i += aimutil_put16(tx->data+i, 0x0015);
371
372   tx->commandlen = i;
373   tx->lock = 0;
374   return aim_tx_enqueue(sess, tx);
375 }
376
377
378 /* 
379  * Send service redirect.  (Non-Client)
380  */
381 faim_export unsigned long aim_sendredirect(struct aim_session_t *sess, 
382                                            struct aim_conn_t *conn, 
383                                            unsigned short servid, 
384                                            char *ip,
385                                            char *cookie)
386 {       
387   struct command_tx_struct *tx;
388   struct aim_tlvlist_t *tlvlist = NULL;
389   int i = 0;
390
391   if (!(tx = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152)))
392     return -1;
393
394   tx->lock = 1;
395
396   i += aim_putsnac(tx->data+i, 0x0001, 0x0005, 0x0000, 0x00000000);
397   
398   aim_addtlvtochain16(&tlvlist, 0x000d, servid);
399   aim_addtlvtochain_str(&tlvlist, 0x0005, ip, strlen(ip));
400   aim_addtlvtochain_str(&tlvlist, 0x0006, cookie, AIM_COOKIELEN);
401
402   tx->commandlen = aim_writetlvchain(tx->data+i, tx->commandlen-i, &tlvlist)+i;
403   aim_freetlvchain(&tlvlist);
404
405   tx->lock = 0;
406   return aim_tx_enqueue(sess, tx);
407 }
This page took 0.053865 seconds and 3 git commands to generate.