Mercurial > pidgin
annotate src/protocols/oscar/ft.c @ 8077:abee07bc573f
[gaim-migrate @ 8776]
I didn't mean to commit this.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 11 Jan 2004 21:43:43 +0000 |
parents | 504d98d14c25 |
children | ab0750ac5154 |
rev | line source |
---|---|
2086 | 1 /* |
4617 | 2 * Oscar File transfer (OFT) and Oscar Direct Connect (ODC). |
3 * (ODC is also referred to as DirectIM and IM Image.) | |
4 * | |
5 * There are a few static helper functions at the top, then | |
6 * ODC stuff, then ft stuff. | |
7 * | |
8 * I feel like this is a good place to explain OFT, so I'm going to | |
9 * do just that. Each OFT packet has a header type. I guess this | |
10 * is pretty similar to the subtype of a SNAC packet. The type | |
11 * basically tells the other client the meaning of the OFT packet. | |
12 * There are two distinct types of file transfer, which I usually | |
13 * call "sendfile" and "getfile." Sendfile is when you send a file | |
14 * to another AIM user. Getfile is when you share a group of files, | |
15 * and other users request that you send them the files. | |
16 * | |
17 * A typical sendfile file transfer goes like this: | |
18 * 1) Sender sends a channel 2 ICBM telling the other user that | |
19 * we want to send them a file. At the same time, we open a | |
20 * listener socket (this should be done before sending the | |
21 * ICBM) on some port, and wait for them to connect to us. | |
22 * The ICBM we sent should contain our IP address and the port | |
23 * number that we're listening on. | |
24 * 2) The receiver connects to the sender on the given IP address | |
25 * and port. After the connection is established, the receiver | |
5146 | 26 * sends an ICBM signifying that we are ready and waiting. |
4617 | 27 * 3) The sender sends an OFT PROMPT message over the OFT |
28 * connection. | |
29 * 4) The receiver of the file sends back an exact copy of this | |
30 * OFT packet, except the cookie is filled in with the cookie | |
31 * from the ICBM. I think this might be an attempt to verify | |
32 * that the user that is connected is actually the guy that | |
33 * we sent the ICBM to. Oh, I've been calling this the ACK. | |
34 * 5) The sender starts sending raw data across the connection | |
35 * until the entire file has been sent. | |
36 * 6) The receiver knows the file is finished because the sender | |
37 * sent the file size in an earlier OFT packet. So then the | |
5146 | 38 * receiver sends the DONE thingy (after filling in the |
39 * "received" checksum and size) and closes the connection. | |
2086 | 40 */ |
41 | |
42 #define FAIM_INTERNAL | |
5415 | 43 #ifdef HAVE_CONFIG_H |
44 #include <config.h> | |
45 #endif | |
46 | |
2086 | 47 #include <aim.h> |
48 | |
49 #ifndef _WIN32 | |
5927 | 50 #include <stdio.h> |
2086 | 51 #include <netdb.h> |
52 #include <sys/socket.h> | |
53 #include <netinet/in.h> | |
4617 | 54 #include <sys/utsname.h> /* for aim_odc_initiate */ |
3630 | 55 #include <arpa/inet.h> /* for inet_ntoa */ |
8074 | 56 #include <sys/types.h> /* for UINT_MAX */ |
3960 | 57 #define G_DIR_SEPARATOR '/' |
3646
bfd8df165f32
[gaim-migrate @ 3770]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
58 #endif |
bfd8df165f32
[gaim-migrate @ 3770]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
59 |
bfd8df165f32
[gaim-migrate @ 3770]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
60 #ifdef _WIN32 |
3630 | 61 #include "win32dep.h" |
62 #endif | |
2086 | 63 |
4617 | 64 struct aim_odc_intdata { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
65 fu8_t cookie[8]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
66 char sn[MAXSNLEN+1]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
67 char ip[22]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
68 }; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
69 |
4617 | 70 /** |
71 * Convert the directory separator from / (0x2f) to ^A (0x01) | |
72 * | |
73 * @param name The filename to convert. | |
74 */ | |
75 static void aim_oft_dirconvert_tostupid(char *name) | |
76 { | |
77 while (name[0]) { | |
78 if (name[0] == 0x01) | |
79 name[0] = G_DIR_SEPARATOR; | |
80 name++; | |
81 } | |
82 } | |
83 | |
84 /** | |
85 * Convert the directory separator from ^A (0x01) to / (0x2f) | |
86 * | |
87 * @param name The filename to convert. | |
88 */ | |
89 static void aim_oft_dirconvert_fromstupid(char *name) | |
90 { | |
91 while (name[0]) { | |
92 if (name[0] == G_DIR_SEPARATOR) | |
93 name[0] = 0x01; | |
94 name++; | |
95 } | |
96 } | |
97 | |
98 /** | |
99 * Calculate oft checksum of buffer | |
100 * | |
101 * Prevcheck should be 0xFFFF0000 when starting a checksum of a file. The | |
102 * checksum is kind of a rolling checksum thing, so each time you get bytes | |
103 * of a file you just call this puppy and it updates the checksum. You can | |
104 * calculate the checksum of an entire file by calling this in a while or a | |
105 * for loop, or something. | |
106 * | |
107 * Thanks to Graham Booker for providing this improved checksum routine, | |
108 * which is simpler and should be more accurate than Josh Myer's original | |
109 * code. -- wtm | |
110 * | |
111 * This algorithim works every time I have tried it. The other fails | |
112 * sometimes. So, AOL who thought this up? It has got to be the weirdest | |
113 * checksum I have ever seen. | |
114 * | |
115 * @param buffer Buffer of data to checksum. Man I'd like to buff her... | |
116 * @param bufsize Size of buffer. | |
117 * @param prevcheck Previous checksum. | |
118 */ | |
4763 | 119 faim_export fu32_t aim_oft_checksum_chunk(const fu8_t *buffer, int bufferlen, fu32_t prevcheck) |
4617 | 120 { |
121 fu32_t check = (prevcheck >> 16) & 0xffff, oldcheck; | |
122 int i; | |
123 unsigned short val; | |
124 | |
125 for (i=0; i<bufferlen; i++) { | |
126 oldcheck = check; | |
127 if (i&1) | |
128 val = buffer[i]; | |
129 else | |
130 val = buffer[i] << 8; | |
131 check -= val; | |
132 /* | |
133 * The following appears to be necessary.... It happens | |
134 * every once in a while and the checksum doesn't fail. | |
135 */ | |
136 if (check > oldcheck) | |
137 check--; | |
138 } | |
139 check = ((check & 0x0000ffff) + (check >> 16)); | |
140 check = ((check & 0x0000ffff) + (check >> 16)); | |
141 return check << 16; | |
142 } | |
143 | |
4650 | 144 faim_export fu32_t aim_oft_checksum_file(char *filename) { |
145 FILE *fd; | |
146 fu32_t checksum = 0xffff0000; | |
147 | |
148 if ((fd = fopen(filename, "rb"))) { | |
149 int bytes; | |
4763 | 150 fu8_t buffer[1024]; |
4650 | 151 |
152 while ((bytes = fread(buffer, 1, 1024, fd))) | |
153 checksum = aim_oft_checksum_chunk(buffer, bytes, checksum); | |
154 fclose(fd); | |
155 } | |
156 | |
157 return checksum; | |
158 } | |
159 | |
2086 | 160 /** |
4617 | 161 * Create a listening socket on a given port. |
162 * | |
163 * XXX - Give the client author the responsibility of setting up a | |
164 * listener, then we no longer have a libfaim problem with broken | |
165 * solaris *innocent smile* -- jbm | |
2086 | 166 * |
4617 | 167 * @param portnum The port number to bind to. |
168 * @return The file descriptor of the listening socket. | |
169 */ | |
170 static int listenestablish(fu16_t portnum) | |
171 { | |
172 #if HAVE_GETADDRINFO | |
173 int listenfd; | |
174 const int on = 1; | |
175 struct addrinfo hints, *res, *ressave; | |
176 char serv[5]; | |
177 | |
178 snprintf(serv, sizeof(serv), "%d", portnum); | |
179 memset(&hints, 0, sizeof(struct addrinfo)); | |
180 hints.ai_flags = AI_PASSIVE; | |
181 hints.ai_family = AF_UNSPEC; | |
182 hints.ai_socktype = SOCK_STREAM; | |
183 if (getaddrinfo(NULL /* any IP */, serv, &hints, &res) != 0) { | |
184 perror("getaddrinfo"); | |
185 return -1; | |
186 } | |
187 ressave = res; | |
188 do { | |
189 listenfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol); | |
190 if (listenfd < 0) | |
191 continue; | |
192 setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)); | |
193 if (bind(listenfd, res->ai_addr, res->ai_addrlen) == 0) | |
194 break; /* success */ | |
195 close(listenfd); | |
196 } while ( (res = res->ai_next) ); | |
197 | |
198 if (!res) | |
199 return -1; | |
200 | |
201 freeaddrinfo(ressave); | |
202 #else | |
203 int listenfd; | |
204 const int on = 1; | |
205 struct sockaddr_in sockin; | |
206 | |
207 if ((listenfd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { | |
208 perror("socket"); | |
209 return -1; | |
210 } | |
211 | |
212 if (setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, (char *)&on, sizeof(on)) != 0) { | |
213 perror("setsockopt"); | |
214 close(listenfd); | |
215 return -1; | |
216 } | |
217 | |
218 memset(&sockin, 0, sizeof(struct sockaddr_in)); | |
219 sockin.sin_family = AF_INET; | |
220 sockin.sin_port = htons(portnum); | |
221 | |
222 if (bind(listenfd, (struct sockaddr *)&sockin, sizeof(struct sockaddr_in)) != 0) { | |
223 perror("bind"); | |
224 close(listenfd); | |
225 return -1; | |
226 } | |
227 #endif | |
228 | |
229 if (listen(listenfd, 4) != 0) { | |
230 perror("listen"); | |
231 close(listenfd); | |
232 return -1; | |
233 } | |
234 fcntl(listenfd, F_SETFL, O_NONBLOCK); | |
235 | |
236 return listenfd; | |
237 } | |
238 | |
239 /** | |
240 * After establishing a listening socket, this is called to accept a connection. It | |
241 * clones the conn used by the listener, and passes both of these to a signal handler. | |
242 * The signal handler should close the listener conn and keep track of the new conn, | |
243 * since this is what is used for file transfers and what not. | |
244 * | |
245 * @param sess The session. | |
246 * @param cur The conn the incoming connection is on. | |
247 * @return Return 0 if no errors, otherwise return the error number. | |
2086 | 248 */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
249 faim_export int aim_handlerendconnect(aim_session_t *sess, aim_conn_t *cur) |
4617 | 250 { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
251 int acceptfd = 0; |
4617 | 252 struct sockaddr addr; |
253 socklen_t addrlen = sizeof(addr); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
254 int ret = 0; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
255 aim_conn_t *newconn; |
4617 | 256 char ip[20]; |
257 int port; | |
2086 | 258 |
4617 | 259 if ((acceptfd = accept(cur->fd, &addr, &addrlen)) == -1) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
260 return 0; /* not an error */ |
2086 | 261 |
7342 | 262 if ((addr.sa_family != AF_INET) && (addr.sa_family != AF_INET6)) { /* just in case IPv6 really is happening */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
263 close(acceptfd); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
264 aim_conn_close(cur); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
265 return -1; |
4617 | 266 } |
267 | |
268 strncpy(ip, inet_ntoa(((struct sockaddr_in *)&addr)->sin_addr), sizeof(ip)); | |
269 port = ntohs(((struct sockaddr_in *)&addr)->sin_port); | |
2086 | 270 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
271 if (!(newconn = aim_cloneconn(sess, cur))) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
272 close(acceptfd); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
273 aim_conn_close(cur); |
4617 | 274 return -ENOMEM; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
275 } |
2086 | 276 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
277 newconn->type = AIM_CONN_TYPE_RENDEZVOUS; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
278 newconn->fd = acceptfd; |
2086 | 279 |
4617 | 280 if (newconn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
281 aim_rxcallback_t userfunc; |
4617 | 282 struct aim_odc_intdata *priv; |
2086 | 283 |
4617 | 284 priv = (struct aim_odc_intdata *)(newconn->internal = cur->internal); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
285 cur->internal = NULL; |
4617 | 286 snprintf(priv->ip, sizeof(priv->ip), "%s:%u", ip, port); |
2086 | 287 |
4617 | 288 if ((userfunc = aim_callhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIM_ESTABLISHED))) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
289 ret = userfunc(sess, NULL, newconn, cur); |
2086 | 290 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
291 } else if (newconn->subtype == AIM_CONN_SUBTYPE_OFT_GETFILE) { |
4617 | 292 } else if (newconn->subtype == AIM_CONN_SUBTYPE_OFT_SENDFILE) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
293 aim_rxcallback_t userfunc; |
2086 | 294 |
4617 | 295 if ((userfunc = aim_callhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_ESTABLISHED))) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
296 ret = userfunc(sess, NULL, newconn, cur); |
3630 | 297 |
4617 | 298 } else { |
299 faimdprintf(sess, 1,"Got a connection on a listener that's not rendezvous. Closing connection.\n"); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
300 aim_conn_close(newconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
301 ret = -1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
302 } |
2086 | 303 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
304 return ret; |
2086 | 305 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
306 |
2086 | 307 /** |
4617 | 308 * Send client-to-client typing notification over an established direct connection. |
2086 | 309 * |
4617 | 310 * @param sess The session. |
311 * @param conn The already-connected ODC connection. | |
4870 | 312 * @param typing If 0x0002, sends a "typing" message, 0x0001 sends "typed," and |
313 * 0x0000 sends "stopped." | |
4617 | 314 * @return Return 0 if no errors, otherwise return the error number. |
2086 | 315 */ |
4617 | 316 faim_export int aim_odc_send_typing(aim_session_t *sess, aim_conn_t *conn, int typing) |
2086 | 317 { |
4617 | 318 struct aim_odc_intdata *intdata = (struct aim_odc_intdata *)conn->internal; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
319 aim_frame_t *fr; |
3952 | 320 aim_bstream_t *hdrbs; |
321 fu8_t *hdr; | |
322 int hdrlen = 0x44; | |
2086 | 323 |
3952 | 324 if (!sess || !conn || (conn->type != AIM_CONN_TYPE_RENDEZVOUS)) |
325 return -EINVAL; | |
2086 | 326 |
4870 | 327 if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_OFT, 0x0001, 0))) |
3952 | 328 return -ENOMEM; |
329 memcpy(fr->hdr.rend.magic, "ODC2", 4); | |
330 fr->hdr.rend.hdrlen = hdrlen; | |
2086 | 331 |
3952 | 332 if (!(hdr = calloc(1, hdrlen))) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
333 aim_frame_destroy(fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
334 return -ENOMEM; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
335 } |
3952 | 336 |
337 hdrbs = &(fr->data); | |
338 aim_bstream_init(hdrbs, hdr, hdrlen); | |
2086 | 339 |
3952 | 340 aimbs_put16(hdrbs, 0x0006); |
341 aimbs_put16(hdrbs, 0x0000); | |
342 aimbs_putraw(hdrbs, intdata->cookie, 8); | |
343 aimbs_put16(hdrbs, 0x0000); | |
344 aimbs_put16(hdrbs, 0x0000); | |
345 aimbs_put16(hdrbs, 0x0000); | |
346 aimbs_put16(hdrbs, 0x0000); | |
347 aimbs_put32(hdrbs, 0x00000000); | |
348 aimbs_put16(hdrbs, 0x0000); | |
349 aimbs_put16(hdrbs, 0x0000); | |
350 aimbs_put16(hdrbs, 0x0000); | |
2086 | 351 |
4870 | 352 if (typing == 0x0002) |
353 aimbs_put16(hdrbs, 0x0002 | 0x0008); | |
354 else if (typing == 0x0001) | |
355 aimbs_put16(hdrbs, 0x0002 | 0x0004); | |
356 else | |
357 aimbs_put16(hdrbs, 0x0002); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
358 |
3952 | 359 aimbs_put16(hdrbs, 0x0000); |
360 aimbs_put16(hdrbs, 0x0000); | |
361 aimbs_putraw(hdrbs, sess->sn, strlen(sess->sn)); | |
4617 | 362 |
3952 | 363 aim_bstream_setpos(hdrbs, 52); /* bleeehh */ |
2086 | 364 |
3952 | 365 aimbs_put8(hdrbs, 0x00); |
366 aimbs_put16(hdrbs, 0x0000); | |
367 aimbs_put16(hdrbs, 0x0000); | |
368 aimbs_put16(hdrbs, 0x0000); | |
369 aimbs_put16(hdrbs, 0x0000); | |
370 aimbs_put16(hdrbs, 0x0000); | |
371 aimbs_put16(hdrbs, 0x0000); | |
372 aimbs_put16(hdrbs, 0x0000); | |
373 aimbs_put8(hdrbs, 0x00); | |
2086 | 374 |
3952 | 375 /* end of hdr */ |
2086 | 376 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
377 aim_tx_enqueue(sess, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
378 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
379 return 0; |
4617 | 380 } |
2086 | 381 |
2993 | 382 /** |
4617 | 383 * Send client-to-client IM over an established direct connection. |
384 * Call this just like you would aim_send_im, to send a directim. | |
2993 | 385 * |
4617 | 386 * @param sess The session. |
387 * @param conn The already-connected ODC connection. | |
388 * @param msg Null-terminated string to send. | |
389 * @param len The length of the message to send, including binary data. | |
390 * @param encoding 0 for ascii, 2 for Unicode, 3 for ISO 8859-1. | |
4870 | 391 * @param isawaymsg 0 if this is not an auto-response, 1 if it is. |
4617 | 392 * @return Return 0 if no errors, otherwise return the error number. |
2993 | 393 */ |
4870 | 394 faim_export int aim_odc_send_im(aim_session_t *sess, aim_conn_t *conn, const char *msg, int len, int encoding, int isawaymsg) |
2993 | 395 { |
396 aim_frame_t *fr; | |
3952 | 397 aim_bstream_t *hdrbs; |
4617 | 398 struct aim_odc_intdata *intdata = (struct aim_odc_intdata *)conn->internal; |
3952 | 399 int hdrlen = 0x44; |
400 fu8_t *hdr; | |
2993 | 401 |
4617 | 402 if (!sess || !conn || (conn->type != AIM_CONN_TYPE_RENDEZVOUS) || !msg) |
403 return -EINVAL; | |
2993 | 404 |
4875 | 405 if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_OFT, 0x01, 0))) |
4617 | 406 return -ENOMEM; |
2993 | 407 |
3952 | 408 memcpy(fr->hdr.rend.magic, "ODC2", 4); |
409 fr->hdr.rend.hdrlen = hdrlen; | |
4617 | 410 |
3952 | 411 if (!(hdr = calloc(1, hdrlen + len))) { |
2993 | 412 aim_frame_destroy(fr); |
413 return -ENOMEM; | |
414 } | |
3952 | 415 |
416 hdrbs = &(fr->data); | |
417 aim_bstream_init(hdrbs, hdr, hdrlen + len); | |
418 | |
419 aimbs_put16(hdrbs, 0x0006); | |
420 aimbs_put16(hdrbs, 0x0000); | |
421 aimbs_putraw(hdrbs, intdata->cookie, 8); | |
422 aimbs_put16(hdrbs, 0x0000); | |
423 aimbs_put16(hdrbs, 0x0000); | |
424 aimbs_put16(hdrbs, 0x0000); | |
425 aimbs_put16(hdrbs, 0x0000); | |
426 aimbs_put32(hdrbs, len); | |
427 aimbs_put16(hdrbs, encoding); | |
428 aimbs_put16(hdrbs, 0x0000); | |
429 aimbs_put16(hdrbs, 0x0000); | |
4617 | 430 |
4870 | 431 /* flags - used for typing notification and to mark if this is an away message */ |
432 aimbs_put16(hdrbs, 0x0000 | isawaymsg); | |
3952 | 433 |
434 aimbs_put16(hdrbs, 0x0000); | |
435 aimbs_put16(hdrbs, 0x0000); | |
436 aimbs_putraw(hdrbs, sess->sn, strlen(sess->sn)); | |
437 | |
438 aim_bstream_setpos(hdrbs, 52); /* bleeehh */ | |
439 | |
440 aimbs_put8(hdrbs, 0x00); | |
441 aimbs_put16(hdrbs, 0x0000); | |
442 aimbs_put16(hdrbs, 0x0000); | |
443 aimbs_put16(hdrbs, 0x0000); | |
444 aimbs_put16(hdrbs, 0x0000); | |
445 aimbs_put16(hdrbs, 0x0000); | |
446 aimbs_put16(hdrbs, 0x0000); | |
447 aimbs_put16(hdrbs, 0x0000); | |
448 aimbs_put8(hdrbs, 0x00); | |
4617 | 449 |
2993 | 450 /* end of hdr2 */ |
4617 | 451 |
452 #if 0 /* XXX - this is how you send buddy icon info... */ | |
453 aimbs_put16(hdrbs, 0x0008); | |
454 aimbs_put16(hdrbs, 0x000c); | |
455 aimbs_put16(hdrbs, 0x0000); | |
456 aimbs_put16(hdrbs, 0x1466); | |
457 aimbs_put16(hdrbs, 0x0001); | |
458 aimbs_put16(hdrbs, 0x2e0f); | |
459 aimbs_put16(hdrbs, 0x393e); | |
460 aimbs_put16(hdrbs, 0xcac8); | |
2993 | 461 #endif |
3952 | 462 aimbs_putraw(hdrbs, msg, len); |
4617 | 463 |
2993 | 464 aim_tx_enqueue(sess, fr); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
465 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
466 return 0; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
467 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
468 |
2086 | 469 /** |
4617 | 470 * Get the screen name of the peer of a direct connection. |
471 * | |
472 * @param conn The ODC connection. | |
473 * @return The screen name of the dude, or NULL if there was an anomaly. | |
2086 | 474 */ |
4617 | 475 faim_export const char *aim_odc_getsn(aim_conn_t *conn) |
476 { | |
477 struct aim_odc_intdata *intdata; | |
3630 | 478 |
4617 | 479 if (!conn || !conn->internal) |
3952 | 480 return NULL; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
481 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
482 if ((conn->type != AIM_CONN_TYPE_RENDEZVOUS) || |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
483 (conn->subtype != AIM_CONN_SUBTYPE_OFT_DIRECTIM)) |
3952 | 484 return NULL; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
485 |
4617 | 486 intdata = (struct aim_odc_intdata *)conn->internal; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
487 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
488 return intdata->sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
489 } |
2086 | 490 |
491 /** | |
4617 | 492 * Find the conn of a direct connection with the given buddy. |
493 * | |
494 * @param sess The session. | |
495 * @param sn The screen name of the buddy whose direct connection you want to find. | |
496 * @return The conn for the direct connection with the given buddy, or NULL if no | |
497 * connection was found. | |
498 */ | |
499 faim_export aim_conn_t *aim_odc_getconn(aim_session_t *sess, const char *sn) | |
500 { | |
501 aim_conn_t *cur; | |
502 struct aim_odc_intdata *intdata; | |
503 | |
504 if (!sess || !sn || !strlen(sn)) | |
505 return NULL; | |
506 | |
507 for (cur = sess->connlist; cur; cur = cur->next) { | |
508 if ((cur->type == AIM_CONN_TYPE_RENDEZVOUS) && (cur->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM)) { | |
509 intdata = cur->internal; | |
510 if (!aim_sncmp(intdata->sn, sn)) | |
511 return cur; | |
512 } | |
513 } | |
514 | |
515 return NULL; | |
516 } | |
517 | |
518 /** | |
519 * For those times when we want to open up the direct connection channel ourselves. | |
520 * | |
521 * You'll want to set up some kind of watcher on this socket. | |
522 * When the state changes, call aim_handlerendconnection with | |
523 * the connection returned by this. aim_handlerendconnection | |
524 * will accept the pending connection and stop listening. | |
525 * | |
526 * @param sess The session | |
527 * @param sn The screen name to connect to. | |
528 * @return The new connection. | |
529 */ | |
530 faim_export aim_conn_t *aim_odc_initiate(aim_session_t *sess, const char *sn) | |
531 { | |
532 aim_conn_t *newconn; | |
533 aim_msgcookie_t *cookie; | |
534 struct aim_odc_intdata *priv; | |
535 int listenfd; | |
536 fu16_t port = 4443; | |
537 fu8_t localip[4]; | |
538 fu8_t ck[8]; | |
539 | |
540 if (aim_util_getlocalip(localip) == -1) | |
541 return NULL; | |
542 | |
543 if ((listenfd = listenestablish(port)) == -1) | |
544 return NULL; | |
545 | |
546 aim_im_sendch2_odcrequest(sess, ck, sn, localip, port); | |
547 | |
548 cookie = (aim_msgcookie_t *)calloc(1, sizeof(aim_msgcookie_t)); | |
549 memcpy(cookie->cookie, ck, 8); | |
550 cookie->type = AIM_COOKIETYPE_OFTIM; | |
551 | |
552 /* this one is for the cookie */ | |
553 priv = (struct aim_odc_intdata *)calloc(1, sizeof(struct aim_odc_intdata)); | |
554 | |
555 memcpy(priv->cookie, ck, 8); | |
556 strncpy(priv->sn, sn, sizeof(priv->sn)); | |
557 cookie->data = priv; | |
558 aim_cachecookie(sess, cookie); | |
559 | |
560 /* XXX - switch to aim_cloneconn()? */ | |
561 if (!(newconn = aim_newconn(sess, AIM_CONN_TYPE_LISTENER, NULL))) { | |
562 close(listenfd); | |
563 return NULL; | |
564 } | |
565 | |
566 /* this one is for the conn */ | |
567 priv = (struct aim_odc_intdata *)calloc(1, sizeof(struct aim_odc_intdata)); | |
568 | |
569 memcpy(priv->cookie, ck, 8); | |
570 strncpy(priv->sn, sn, sizeof(priv->sn)); | |
571 | |
572 newconn->fd = listenfd; | |
573 newconn->subtype = AIM_CONN_SUBTYPE_OFT_DIRECTIM; | |
574 newconn->internal = priv; | |
575 newconn->lastactivity = time(NULL); | |
576 | |
577 return newconn; | |
578 } | |
579 | |
580 /** | |
581 * Connect directly to the given buddy for directim. | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
582 * |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
583 * This is a wrapper for aim_newconn. |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
584 * |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
585 * If addr is NULL, the socket is not created, but the connection is |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
586 * allocated and setup to connect. |
2086 | 587 * |
4617 | 588 * @param sess The Godly session. |
589 * @param sn The screen name we're connecting to. I hope it's a girl... | |
590 * @param addr Address to connect to. | |
591 * @return The new connection. | |
2086 | 592 */ |
4617 | 593 faim_export aim_conn_t *aim_odc_connect(aim_session_t *sess, const char *sn, const char *addr, const fu8_t *cookie) |
594 { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
595 aim_conn_t *newconn; |
4617 | 596 struct aim_odc_intdata *intdata; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
597 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
598 if (!sess || !sn) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
599 return NULL; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
600 |
5146 | 601 if (!(intdata = calloc(1, sizeof(struct aim_odc_intdata)))) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
602 return NULL; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
603 memcpy(intdata->cookie, cookie, 8); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
604 strncpy(intdata->sn, sn, sizeof(intdata->sn)); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
605 if (addr) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
606 strncpy(intdata->ip, addr, sizeof(intdata->ip)); |
2086 | 607 |
4617 | 608 /* XXX - verify that non-blocking connects actually work */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
609 if (!(newconn = aim_newconn(sess, AIM_CONN_TYPE_RENDEZVOUS, addr))) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
610 free(intdata); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
611 return NULL; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
612 } |
2086 | 613 |
4617 | 614 newconn->internal = intdata; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
615 newconn->subtype = AIM_CONN_SUBTYPE_OFT_DIRECTIM; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
616 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
617 return newconn; |
4617 | 618 } |
2086 | 619 |
620 /** | |
4826 | 621 * Sometimes you just don't know with these kinds of people. |
622 * | |
623 * @param sess The session. | |
624 * @param conn The ODC connection of the incoming data. | |
625 * @param frr The frame allocated for the incoming data. | |
626 * @param bs It stands for "bologna sandwich." | |
627 * @return Return 0 if no errors, otherwise return the error number. | |
628 */ | |
629 static int handlehdr_odc(aim_session_t *sess, aim_conn_t *conn, aim_frame_t *frr, aim_bstream_t *bs) | |
630 { | |
631 aim_frame_t fr; | |
4870 | 632 int ret = 0; |
4826 | 633 aim_rxcallback_t userfunc; |
634 fu32_t payloadlength; | |
635 fu16_t flags, encoding; | |
636 char *snptr = NULL; | |
637 | |
638 fr.conn = conn; | |
639 | |
640 /* AAA - ugly */ | |
641 aim_bstream_setpos(bs, 20); | |
642 payloadlength = aimbs_get32(bs); | |
643 | |
644 aim_bstream_setpos(bs, 24); | |
645 encoding = aimbs_get16(bs); | |
646 | |
647 aim_bstream_setpos(bs, 30); | |
648 flags = aimbs_get16(bs); | |
649 | |
650 aim_bstream_setpos(bs, 36); | |
651 /* XXX - create an aimbs_getnullstr function? */ | |
4913 | 652 snptr = aimbs_getstr(bs, 32); /* Next 32 bytes contain the sn, padded with null chars */ |
4826 | 653 |
654 faimdprintf(sess, 2, "faim: OFT frame: handlehdr_odc: %04x / %04x / %s\n", payloadlength, flags, snptr); | |
655 | |
4870 | 656 if (flags & 0x0008) { |
657 if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING))) | |
658 ret = userfunc(sess, &fr, snptr, 2); | |
659 } else if (flags & 0x0004) { | |
660 if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING))) | |
661 ret = userfunc(sess, &fr, snptr, 1); | |
662 } else { | |
4826 | 663 if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING))) |
664 ret = userfunc(sess, &fr, snptr, 0); | |
4870 | 665 } |
4826 | 666 |
8076 | 667 /* Is the second half of this really needed? I'm skeptical. */ |
8000 | 668 if ((payloadlength != 0) && (payloadlength != UINT_MAX)) { |
4870 | 669 char *msg; |
4826 | 670 int recvd = 0; |
4870 | 671 int i, isawaymsg; |
672 | |
673 isawaymsg = flags & 0x0001; | |
4826 | 674 |
4895 | 675 if (!(msg = calloc(1, payloadlength+1))) { |
676 free(snptr); | |
4870 | 677 return -ENOMEM; |
4895 | 678 } |
4870 | 679 |
4826 | 680 while (payloadlength - recvd) { |
681 if (payloadlength - recvd >= 1024) | |
4870 | 682 i = aim_recv(conn->fd, &msg[recvd], 1024); |
4826 | 683 else |
4870 | 684 i = aim_recv(conn->fd, &msg[recvd], payloadlength - recvd); |
4826 | 685 if (i <= 0) { |
686 free(msg); | |
4895 | 687 free(snptr); |
4826 | 688 return -1; |
689 } | |
690 recvd = recvd + i; | |
691 if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER))) | |
4870 | 692 ret = userfunc(sess, &fr, snptr, (double)recvd / payloadlength); |
4826 | 693 } |
694 | |
4870 | 695 if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING))) |
696 ret = userfunc(sess, &fr, snptr, msg, payloadlength, encoding, isawaymsg); | |
4826 | 697 |
698 free(msg); | |
699 } | |
700 | |
4895 | 701 free(snptr); |
702 | |
4870 | 703 return ret; |
4826 | 704 } |
705 | |
5146 | 706 faim_export struct aim_oft_info *aim_oft_createinfo(aim_session_t *sess, const fu8_t *cookie, const char *sn, const char *ip, fu16_t port, fu32_t size, fu32_t modtime, char *filename) |
707 { | |
708 struct aim_oft_info *new; | |
709 | |
710 if (!sess) | |
711 return NULL; | |
712 | |
713 if (!(new = (struct aim_oft_info *)calloc(1, sizeof(struct aim_oft_info)))) | |
714 return NULL; | |
715 | |
716 new->sess = sess; | |
717 if (cookie) | |
718 memcpy(new->cookie, cookie, 8); | |
719 if (ip) | |
720 new->clientip = strdup(ip); | |
721 if (sn) | |
722 new->sn = strdup(sn); | |
723 new->port = port; | |
724 new->fh.totfiles = 1; | |
725 new->fh.filesleft = 1; | |
726 new->fh.totparts = 1; | |
727 new->fh.partsleft = 1; | |
728 new->fh.totsize = size; | |
729 new->fh.size = size; | |
730 new->fh.modtime = modtime; | |
731 new->fh.checksum = 0xffff0000; | |
732 new->fh.rfrcsum = 0xffff0000; | |
733 new->fh.rfcsum = 0xffff0000; | |
734 new->fh.recvcsum = 0xffff0000; | |
735 strncpy(new->fh.idstring, "OFT_Windows ICBMFT V1.1 32", 31); | |
736 if (filename) | |
737 strncpy(new->fh.name, filename, 63); | |
738 | |
739 new->next = sess->oft_info; | |
740 sess->oft_info = new; | |
741 | |
742 return new; | |
743 } | |
744 | |
745 /** | |
746 * Remove the given oft_info struct from the oft_info linked list, and | |
747 * then free its memory. | |
748 * | |
749 * @param sess The session. | |
750 * @param oft_info The aim_oft_info struct that we're destroying. | |
751 * @return Return 0 if no errors, otherwise return the error number. | |
752 */ | |
753 faim_export int aim_oft_destroyinfo(struct aim_oft_info *oft_info) | |
754 { | |
755 aim_session_t *sess; | |
756 | |
757 if (!oft_info || !(sess = oft_info->sess)) | |
758 return -EINVAL; | |
759 | |
760 if (sess->oft_info && (sess->oft_info == oft_info)) { | |
761 sess->oft_info = sess->oft_info->next; | |
762 } else { | |
763 struct aim_oft_info *cur; | |
764 for (cur=sess->oft_info; (cur->next && (cur->next!=oft_info)); cur=cur->next); | |
765 if (cur->next) | |
766 cur->next = cur->next->next; | |
767 } | |
768 | |
769 free(oft_info->sn); | |
770 free(oft_info->proxyip); | |
771 free(oft_info->clientip); | |
772 free(oft_info->verifiedip); | |
773 free(oft_info); | |
774 | |
775 return 0; | |
776 } | |
777 | |
4826 | 778 /** |
4617 | 779 * Creates a listener socket so the other dude can connect to us. |
2086 | 780 * |
4617 | 781 * You'll want to set up some kind of watcher on this socket. |
782 * When the state changes, call aim_handlerendconnection with | |
783 * the connection returned by this. aim_handlerendconnection | |
784 * will accept the pending connection and stop listening. | |
2086 | 785 * |
4617 | 786 * @param sess The session. |
5146 | 787 * @param oft_info File transfer information associated with this |
788 * connection. | |
789 * @return Return 0 if no errors, otherwise return the error number. | |
2086 | 790 */ |
5146 | 791 faim_export int aim_sendfile_listen(aim_session_t *sess, struct aim_oft_info *oft_info) |
2086 | 792 { |
4617 | 793 int listenfd; |
2086 | 794 |
5146 | 795 if (!oft_info) |
796 return -EINVAL; | |
2086 | 797 |
5146 | 798 if ((listenfd = listenestablish(oft_info->port)) == -1) |
799 return 1; | |
800 | |
801 if (!(oft_info->conn = aim_newconn(sess, AIM_CONN_TYPE_LISTENER, NULL))) { | |
4617 | 802 close(listenfd); |
5146 | 803 return -ENOMEM; |
3952 | 804 } |
3630 | 805 |
5146 | 806 oft_info->conn->fd = listenfd; |
807 oft_info->conn->subtype = AIM_CONN_SUBTYPE_OFT_SENDFILE; | |
808 oft_info->conn->lastactivity = time(NULL); | |
3952 | 809 |
5146 | 810 return 0; |
4617 | 811 } |
3630 | 812 |
4617 | 813 /** |
814 * Extract an &aim_fileheader_t from the given buffer. | |
815 * | |
816 * @param bs The should be from an incoming rendezvous packet. | |
817 * @return A pointer to new struct on success, or NULL on error. | |
818 */ | |
819 static struct aim_fileheader_t *aim_oft_getheader(aim_bstream_t *bs) | |
820 { | |
821 struct aim_fileheader_t *fh; | |
3630 | 822 |
4617 | 823 if (!(fh = calloc(1, sizeof(struct aim_fileheader_t)))) |
824 return NULL; | |
3630 | 825 |
4617 | 826 /* The bstream should be positioned after the hdrtype. */ |
827 aimbs_getrawbuf(bs, fh->bcookie, 8); | |
828 fh->encrypt = aimbs_get16(bs); | |
829 fh->compress = aimbs_get16(bs); | |
830 fh->totfiles = aimbs_get16(bs); | |
831 fh->filesleft = aimbs_get16(bs); | |
832 fh->totparts = aimbs_get16(bs); | |
833 fh->partsleft = aimbs_get16(bs); | |
834 fh->totsize = aimbs_get32(bs); | |
835 fh->size = aimbs_get32(bs); | |
836 fh->modtime = aimbs_get32(bs); | |
837 fh->checksum = aimbs_get32(bs); | |
838 fh->rfrcsum = aimbs_get32(bs); | |
839 fh->rfsize = aimbs_get32(bs); | |
840 fh->cretime = aimbs_get32(bs); | |
841 fh->rfcsum = aimbs_get32(bs); | |
842 fh->nrecvd = aimbs_get32(bs); | |
843 fh->recvcsum = aimbs_get32(bs); | |
844 aimbs_getrawbuf(bs, fh->idstring, 32); | |
845 fh->flags = aimbs_get8(bs); | |
846 fh->lnameoffset = aimbs_get8(bs); | |
847 fh->lsizeoffset = aimbs_get8(bs); | |
848 aimbs_getrawbuf(bs, fh->dummy, 69); | |
849 aimbs_getrawbuf(bs, fh->macfileinfo, 16); | |
850 fh->nencode = aimbs_get16(bs); | |
851 fh->nlanguage = aimbs_get16(bs); | |
852 aimbs_getrawbuf(bs, fh->name, 64); /* XXX - filenames longer than 64B */ | |
2086 | 853 |
4617 | 854 return fh; |
855 } | |
3630 | 856 |
4617 | 857 /** |
858 * Fills a buffer with network-order fh data | |
859 * | |
860 * @param bs A bstream to fill -- automatically initialized | |
861 * @param fh A struct aim_fileheader_t to get data from. | |
862 * @return Return non-zero on error. | |
863 */ | |
864 static int aim_oft_buildheader(aim_bstream_t *bs, struct aim_fileheader_t *fh) | |
865 { | |
866 fu8_t *hdr; | |
3630 | 867 |
4617 | 868 if (!bs || !fh) |
869 return -EINVAL; | |
3952 | 870 |
4617 | 871 if (!(hdr = (unsigned char *)calloc(1, 0x100 - 8))) |
872 return -ENOMEM; | |
3630 | 873 |
4617 | 874 aim_bstream_init(bs, hdr, 0x100 - 8); |
875 aimbs_putraw(bs, fh->bcookie, 8); | |
876 aimbs_put16(bs, fh->encrypt); | |
877 aimbs_put16(bs, fh->compress); | |
878 aimbs_put16(bs, fh->totfiles); | |
879 aimbs_put16(bs, fh->filesleft); | |
880 aimbs_put16(bs, fh->totparts); | |
881 aimbs_put16(bs, fh->partsleft); | |
882 aimbs_put32(bs, fh->totsize); | |
883 aimbs_put32(bs, fh->size); | |
884 aimbs_put32(bs, fh->modtime); | |
885 aimbs_put32(bs, fh->checksum); | |
886 aimbs_put32(bs, fh->rfrcsum); | |
887 aimbs_put32(bs, fh->rfsize); | |
888 aimbs_put32(bs, fh->cretime); | |
889 aimbs_put32(bs, fh->rfcsum); | |
890 aimbs_put32(bs, fh->nrecvd); | |
891 aimbs_put32(bs, fh->recvcsum); | |
892 aimbs_putraw(bs, fh->idstring, 32); | |
893 aimbs_put8(bs, fh->flags); | |
894 aimbs_put8(bs, fh->lnameoffset); | |
895 aimbs_put8(bs, fh->lsizeoffset); | |
896 aimbs_putraw(bs, fh->dummy, 69); | |
897 aimbs_putraw(bs, fh->macfileinfo, 16); | |
898 aimbs_put16(bs, fh->nencode); | |
899 aimbs_put16(bs, fh->nlanguage); | |
900 aimbs_putraw(bs, fh->name, 64); /* XXX - filenames longer than 64B */ | |
3952 | 901 |
4617 | 902 return 0; |
903 } | |
2086 | 904 |
4617 | 905 /** |
906 * Create an OFT packet based on the given information, and send it on its merry way. | |
907 * | |
908 * @param sess The session. | |
5146 | 909 * @param type The subtype of the OFT packet we're sending. |
910 * @param oft_info The aim_oft_info struct with the connection and OFT | |
911 * info we're sending. | |
4617 | 912 * @return Return 0 if no errors, otherwise return the error number. |
913 */ | |
5146 | 914 faim_export int aim_oft_sendheader(aim_session_t *sess, fu16_t type, struct aim_oft_info *oft_info) |
4617 | 915 { |
5146 | 916 aim_frame_t *fr; |
2086 | 917 |
5146 | 918 if (!sess || !oft_info || !oft_info->conn || (oft_info->conn->type != AIM_CONN_TYPE_RENDEZVOUS)) |
4617 | 919 return -EINVAL; |
920 | |
5146 | 921 #if 0 |
4617 | 922 /* |
923 * If you are receiving a file, the cookie should be null, if you are sending a | |
924 * file, the cookie should be the same as the one used in the ICBM negotiation | |
925 * SNACs. | |
926 */ | |
3952 | 927 fh->lnameoffset = 0x1a; |
928 fh->lsizeoffset = 0x10; | |
2086 | 929 |
4617 | 930 /* apparently 0 is ASCII, 2 is UCS-2 */ |
931 /* it is likely that 3 is ISO 8859-1 */ | |
4826 | 932 /* I think "nlanguage" might be the same thing as "subenc" in im.c */ |
3952 | 933 fh->nencode = 0x0000; |
934 fh->nlanguage = 0x0000; | |
5146 | 935 #endif |
4617 | 936 |
5146 | 937 aim_oft_dirconvert_tostupid(oft_info->fh.name); |
2086 | 938 |
5146 | 939 if (!(fr = aim_tx_new(sess, oft_info->conn, AIM_FRAMETYPE_OFT, type, 0))) |
940 return -ENOMEM; | |
941 | |
942 if (aim_oft_buildheader(&fr->data, &oft_info->fh) == -1) { | |
943 aim_frame_destroy(fr); | |
4617 | 944 return -ENOMEM; |
3952 | 945 } |
2086 | 946 |
5146 | 947 memcpy(fr->hdr.rend.magic, "OFT2", 4); |
948 fr->hdr.rend.hdrlen = aim_bstream_curpos(&fr->data); | |
2086 | 949 |
5146 | 950 aim_tx_enqueue(sess, fr); |
3952 | 951 |
952 return 0; | |
2086 | 953 } |
954 | |
955 /** | |
4617 | 956 * Handle incoming data on a rendezvous connection. This is analogous to the |
957 * consumesnac function in rxhandlers.c, and I really think this should probably | |
958 * be in rxhandlers.c as well, but I haven't finished cleaning everything up yet. | |
959 * | |
960 * @param sess The session. | |
961 * @param fr The frame allocated for the incoming data. | |
962 * @return Return 0 if the packet was handled correctly, otherwise return the | |
963 * error number. | |
3771 | 964 */ |
3952 | 965 faim_internal int aim_rxdispatch_rendezvous(aim_session_t *sess, aim_frame_t *fr) |
2086 | 966 { |
3952 | 967 aim_conn_t *conn = fr->conn; |
4617 | 968 int ret = 1; |
2086 | 969 |
4617 | 970 if (conn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) { |
971 if (fr->hdr.rend.type == 0x0001) | |
972 ret = handlehdr_odc(sess, conn, fr, &fr->data); | |
973 else | |
974 faimdprintf(sess, 0, "faim: ODC directim frame unknown, type is %04x\n", fr->hdr.rend.type); | |
2086 | 975 |
4826 | 976 } else { |
4617 | 977 aim_rxcallback_t userfunc; |
978 struct aim_fileheader_t *header = aim_oft_getheader(&fr->data); | |
979 aim_oft_dirconvert_fromstupid(header->name); /* XXX - This should be client-side */ | |
3771 | 980 |
4617 | 981 if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_OFT, fr->hdr.rend.type))) |
982 ret = userfunc(sess, fr, conn, header->bcookie, header); | |
983 | |
984 free(header); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
985 } |
4617 | 986 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
987 if (ret == -1) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
988 aim_conn_close(conn); |
2086 | 989 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
990 return ret; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
991 } |