Fri, 19 Sep 2008 14:46:41 +0000
2008.09.19 - ccpaging <ccpaging(at)gmail.com>
* Rewrite buddy modify info, there is a ticket for this problem
* Use ship32 to trans action code between request packet and reply packet process
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
1 | /** |
|
15087
78879d4adf13
[gaim-migrate @ 17807]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
14672
diff
changeset
|
2 | * @file packet_parse.c |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
3 | * |
| 15884 | 4 | * purple |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
5 | * |
| 15884 | 6 | * Purple is the legal property of its developers, whose names are too numerous |
|
15087
78879d4adf13
[gaim-migrate @ 17807]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
14672
diff
changeset
|
7 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
78879d4adf13
[gaim-migrate @ 17807]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
14672
diff
changeset
|
8 | * source distribution. |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
9 | * |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
10 | * This program is free software; you can redistribute it and/or modify |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
11 | * it under the terms of the GNU General Public License as published by |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
12 | * the Free Software Foundation; either version 2 of the License, or |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
13 | * (at your option) any later version. |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
14 | * |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
15 | * This program is distributed in the hope that it will be useful, |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
18 | * GNU General Public License for more details. |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
19 | * |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
20 | * You should have received a copy of the GNU General Public License |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
21 | * along with this program; if not, write to the Free Software |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18213
diff
changeset
|
22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
23 | */ |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
24 | |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
25 | #include <string.h> |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
26 | |
|
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
27 | #include "packet_parse.h" |
| 23190 | 28 | #include "debug.h" |
| 29 | ||
| 30 | /*------------------------------------------------PUT------------------------------------------------*/ | |
| 31 | ||
| 32 | /* note: | |
| 33 | * 1, in these functions, 'b' stands for byte, 'w' stands for word, 'dw' stands for double word. | |
| 34 | * 2, we use '*cursor' and 'buf' as two addresses to calculate the length. | |
|
23193
384ba35bfa8f
patch-05-reconnect-and-code-cleanup
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23192
diff
changeset
|
35 | * 3, change '0' to '1', if want to get more info about the packet parsing. */ |
| 23190 | 36 | |
| 37 | #if 0 | |
| 38 | #define PARSER_DEBUG | |
| 39 | #endif | |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
40 | |
|
24337
09fc304dae73
2008.09.19 - ccpaging <ccpaging(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
24314
diff
changeset
|
41 | /* read one byte from buf, |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
42 | * return the number of bytes read if succeeds, otherwise return -1 */ |
| 23190 | 43 | gint qq_get8(guint8 *b, guint8 *buf) |
| 44 | { | |
| 45 | guint8 b_dest; | |
| 46 | memcpy(&b_dest, buf, sizeof(b_dest)); | |
| 47 | *b = b_dest; | |
| 23192 | 48 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
49 | purple_debug_info("QQ", "[DBG][get8] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
50 | purple_debug_info("QQ", "[DBG][get8] b_dest 0x%2x, *b 0x%02x\n", b_dest, *b); |
| 23192 | 51 | #endif |
| 23190 | 52 | return sizeof(b_dest); |
| 53 | } | |
| 54 | ||
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
55 | |
|
24337
09fc304dae73
2008.09.19 - ccpaging <ccpaging(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
24314
diff
changeset
|
56 | /* read two bytes as "guint16" from buf, |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
57 | * return the number of bytes read if succeeds, otherwise return -1 */ |
| 23190 | 58 | gint qq_get16(guint16 *w, guint8 *buf) |
| 59 | { | |
| 60 | guint16 w_dest; | |
| 61 | memcpy(&w_dest, buf, sizeof(w_dest)); | |
| 62 | *w = g_ntohs(w_dest); | |
| 23192 | 63 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
64 | purple_debug_info("QQ", "[DBG][get16] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
65 | purple_debug_info("QQ", "[DBG][get16] w_dest 0x%04x, *w 0x%04x\n", w_dest, *w); |
| 23192 | 66 | #endif |
| 23190 | 67 | return sizeof(w_dest); |
| 68 | } | |
| 69 | ||
|
24337
09fc304dae73
2008.09.19 - ccpaging <ccpaging(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
24314
diff
changeset
|
70 | /* read four bytes as "guint32" from buf, |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
71 | * return the number of bytes read if succeeds, otherwise return -1 */ |
| 23190 | 72 | gint qq_get32(guint32 *dw, guint8 *buf) |
| 73 | { | |
| 74 | guint32 dw_dest; | |
| 75 | memcpy(&dw_dest, buf, sizeof(dw_dest)); | |
| 76 | *dw = g_ntohl(dw_dest); | |
| 23192 | 77 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
78 | purple_debug_info("QQ", "[DBG][get32] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
79 | purple_debug_info("QQ", "[DBG][get32] dw_dest 0x%08x, *dw 0x%08x\n", dw_dest, *dw); |
| 23192 | 80 | #endif |
| 23190 | 81 | return sizeof(dw_dest); |
| 82 | } | |
| 83 | ||
|
23950
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
84 | gint qq_getIP(struct in_addr *ip, guint8 *buf) |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
85 | { |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
86 | memcpy(ip, buf, sizeof(struct in_addr)); |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
87 | return sizeof(struct in_addr); |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
88 | } |
| 23190 | 89 | |
|
24337
09fc304dae73
2008.09.19 - ccpaging <ccpaging(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
24314
diff
changeset
|
90 | /* read datalen bytes from buf, |
| 23190 | 91 | * return the number of bytes read if succeeds, otherwise return -1 */ |
| 92 | gint qq_getdata(guint8 *data, gint datalen, guint8 *buf) | |
| 93 | { | |
| 94 | memcpy(data, buf, datalen); | |
| 23192 | 95 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
96 | purple_debug_info("QQ", "[DBG][getdata] buf %p\n", (void *)buf); |
| 23192 | 97 | #endif |
| 23190 | 98 | return datalen; |
| 99 | } | |
| 100 | ||
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
101 | |
|
18213
a41e5c44f9af
A patch from o_sukhodolsky to fix a compiler warning in the QQ code. I've
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
102 | /* read four bytes as "time_t" from buf, |
|
a41e5c44f9af
A patch from o_sukhodolsky to fix a compiler warning in the QQ code. I've
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
103 | * return the number of bytes read if succeeds, otherwise return -1 |
|
a41e5c44f9af
A patch from o_sukhodolsky to fix a compiler warning in the QQ code. I've
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
104 | * This function is a wrapper around read_packet_dw() to avoid casting. */ |
| 23190 | 105 | gint qq_getime(time_t *t, guint8 *buf) |
| 106 | { | |
| 107 | guint32 dw_dest; | |
| 108 | memcpy(&dw_dest, buf, sizeof(dw_dest)); | |
| 23192 | 109 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
110 | purple_debug_info("QQ", "[DBG][getime] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
111 | purple_debug_info("QQ", "[DBG][getime] dw_dest before 0x%08x\n", dw_dest); |
| 23192 | 112 | #endif |
| 23190 | 113 | dw_dest = g_ntohl(dw_dest); |
| 23192 | 114 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
115 | purple_debug_info("QQ", "[DBG][getime] dw_dest after 0x%08x\n", dw_dest); |
| 23192 | 116 | #endif |
| 23190 | 117 | memcpy(t, &dw_dest, sizeof(dw_dest)); |
| 118 | return sizeof(dw_dest); | |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
119 | } |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
120 | |
| 23190 | 121 | /*------------------------------------------------PUT------------------------------------------------*/ |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
122 | /* pack one byte into buf |
|
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
123 | * return the number of bytes packed, otherwise return -1 */ |
| 23190 | 124 | gint qq_put8(guint8 *buf, guint8 b) |
| 125 | { | |
| 126 | memcpy(buf, &b, sizeof(b)); | |
| 23192 | 127 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
128 | purple_debug_info("QQ", "[DBG][put8] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
129 | purple_debug_info("QQ", "[DBG][put8] b 0x%02x\n", b); |
| 23192 | 130 | #endif |
| 23190 | 131 | return sizeof(b); |
| 132 | } | |
| 133 | ||
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
134 | |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
135 | /* pack two bytes as "guint16" into buf |
|
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
136 | * return the number of bytes packed, otherwise return -1 */ |
| 23190 | 137 | gint qq_put16(guint8 *buf, guint16 w) |
| 138 | { | |
| 139 | guint16 w_porter; | |
| 140 | w_porter = g_htons(w); | |
| 23192 | 141 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
142 | purple_debug_info("QQ", "[DBG][put16] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
143 | purple_debug_info("QQ", "[DBG][put16] w 0x%04x, w_porter 0x%04x\n", w, w_porter); |
| 23192 | 144 | #endif |
| 23190 | 145 | memcpy(buf, &w_porter, sizeof(w_porter)); |
| 146 | return sizeof(w_porter); | |
| 147 | } | |
| 148 | ||
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
149 | |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
150 | /* pack four bytes as "guint32" into buf |
|
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
151 | * return the number of bytes packed, otherwise return -1 */ |
| 23190 | 152 | gint qq_put32(guint8 *buf, guint32 dw) |
| 153 | { | |
| 154 | guint32 dw_porter; | |
| 155 | dw_porter = g_htonl(dw); | |
| 23192 | 156 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
157 | purple_debug_info("QQ", "[DBG][put32] buf %p\n", (void *)buf); |
|
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
158 | purple_debug_info("QQ", "[DBG][put32] dw 0x%08x, dw_porter 0x%08x\n", dw, dw_porter); |
| 23192 | 159 | #endif |
| 23190 | 160 | memcpy(buf, &dw_porter, sizeof(dw_porter)); |
| 161 | return sizeof(dw_porter); | |
| 162 | } | |
| 163 | ||
|
23950
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
164 | gint qq_putIP(guint8* buf, struct in_addr *ip) |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
165 | { |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
166 | memcpy(buf, ip, sizeof(struct in_addr)); |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
167 | return sizeof(struct in_addr); |
|
a974649cdb89
2008.08.02 - csyfek <csyfek(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
23193
diff
changeset
|
168 | } |
|
13932
4d131bd2b40f
[gaim-migrate @ 16340]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
diff
changeset
|
169 | |
|
14083
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
170 | /* pack datalen bytes into buf |
|
2b68bb18a66c
[gaim-migrate @ 16618]
Mark Huetsch <markhuetsch@users.sourceforge.net>
parents:
13932
diff
changeset
|
171 | * return the number of bytes packed, otherwise return -1 */ |
| 23192 | 172 | gint qq_putdata(guint8 *buf, const guint8 *data, const int datalen) |
| 23190 | 173 | { |
|
24337
09fc304dae73
2008.09.19 - ccpaging <ccpaging(at)gmail.com>
SHiNE CsyFeK <csyfek@gmail.com>
parents:
24314
diff
changeset
|
174 | memcpy(buf, data, datalen); |
| 23192 | 175 | #ifdef PARSER_DEBUG |
|
24314
587e97c2b707
merge of 'd01a6b8ccfad536e692fa159a02583625596c4f5'
Daniel Atallah <datallah@pidgin.im>
parents:
24300
diff
changeset
|
176 | purple_debug_info("QQ", "[DBG][putdata] buf %p\n", (void *)buf); |
| 23192 | 177 | #endif |
| 23190 | 178 | return datalen; |
| 179 | } |