]> andersk Git - libfaim.git/blame - faim/aim.h
Implemented chat and some chatnav. Nearly a 2000line diff.
[libfaim.git] / faim / aim.h
CommitLineData
bd71fa88 1/*
2 * Main libfaim header. Must be included in client for prototypes/macros.
3 *
4 */
5
6#ifndef __AIM_H__
7#define __AIM_H__
8
9#include <faim/faimconfig.h>
10#include <faim/aim_cbtypes.h>
11
12#include <stdio.h>
13#include <string.h>
14#include <fcntl.h>
15#include <sys/types.h>
16#include <stdlib.h>
17#include <stdarg.h>
18#include <errno.h>
19
20#ifdef _WIN32
21#include <windows.h>
22#include <time.h>
23#include <io.h>
24#else
25#include <netdb.h>
26#include <sys/socket.h>
27#include <netinet/in.h>
28#include <sys/time.h>
29#include <unistd.h>
30#endif
31
32/* Portability stuff (DMP) */
33
34#ifdef _WIN32
35#define sleep Sleep
36#define strlen(x) (int)strlen(x) /* win32 has a unsigned size_t */
37#endif
38
39#if defined(_WIN32) || (defined(mach) && defined(__APPLE__))
40#define gethostbyname2(x,y) gethostbyname(x) /* revert to IPv4 */
41#endif
42
43/*
44 * Current Maximum Length for Screen Names (not including NULL)
45 */
46#define MAXSNLEN 16
47
48/*
49 * Standard size of an AIM authorization cookie
50 */
51#define AIM_COOKIELEN 0x100
52
53/*
54 * Login info. Passes information from the Authorization
55 * stage of login to the service (BOS, etc) connection
56 * phase.
57 *
58 */
59struct aim_login_struct {
60 char screen_name[MAXSNLEN+1];
61 char *BOSIP;
62 char cookie[AIM_COOKIELEN];
63 char *email;
64 u_short regstatus;
01b59e1e 65 char *errorurl;
66 u_short errorcode;
bd71fa88 67};
68
69/*
70 * Client info. Filled in by the client and passed
71 * in to aim_login(). The information ends up
72 * getting passed to OSCAR through the initial
73 * login command.
74 *
75 * XXX: Should this be per-session? -mid
76 *
77 */
78struct client_info_s {
79 char clientstring[100]; /* arbitrary size */
80 int major;
81 int minor;
82 int build;
83 char country[3];
84 char lang[3];
85};
86
87#ifndef TRUE
88#define TRUE 1
89#define FALSE 0
90#endif
91
92/*
93 * These could be arbitrary, but its easier to use the actual AIM values
94 */
95#define AIM_CONN_TYPE_AUTH 0x0007
96#define AIM_CONN_TYPE_ADS 0x0005
97#define AIM_CONN_TYPE_BOS 0x0002
98#define AIM_CONN_TYPE_CHAT 0x000e
99#define AIM_CONN_TYPE_CHATNAV 0x000d
100
101/*
102 * Status values returned from aim_conn_new(). ORed together.
103 */
104#define AIM_CONN_STATUS_READY 0x0001
105#define AIM_CONN_STATUS_INTERNALERR 0x0002
106#define AIM_CONN_STATUS_RESOLVERR 0x0080
107#define AIM_CONN_STATUS_CONNERR 0x0040
108
109struct aim_conn_t {
110 int fd;
111 int type;
112 int seqnum;
113 int status;
114 void *priv; /* misc data the client may want to store */
115 time_t lastactivity; /* time of last transmit */
116 int forcedlatency;
117 struct aim_rxcblist_t *handlerlist;
118};
119
120/* struct for incoming commands */
121struct command_rx_struct {
122 /* byte 1 assumed to always be 0x2a */
123 char type; /* type code (byte 2) */
124 u_int seqnum; /* sequence number (bytes 3 and 4) */
125 u_int commandlen; /* total packet len - 6 (bytes 5 and 6) */
126 u_char *data; /* packet data (from 7 byte on) */
127 u_int lock; /* 0 = open, !0 = locked */
128 u_int handled; /* 0 = new, !0 = been handled */
129 struct aim_conn_t *conn; /* the connection it came in on... */
130 struct command_rx_struct *next; /* ptr to next struct in list */
131};
132
133/* struct for outgoing commands */
134struct command_tx_struct {
135 /* byte 1 assumed to be 0x2a */
136 char type; /* type/family code */
137 u_int seqnum; /* seqnum dynamically assigned on tx */
138 u_int commandlen; /* SNAC length */
139 u_char *data; /* packet data */
140 u_int lock; /* 0 = open, !0 = locked */
141 u_int sent; /* 0 = pending, !0 = has been sent */
142 struct aim_conn_t *conn;
143 struct command_tx_struct *next; /* ptr to next struct in list */
144};
145
146
147/*
148 * AIM Session: The main client-data interface.
149 *
150 */
151struct aim_session_t {
152
153 /* ---- Client Accessible ------------------------ */
154 /*
155 * Login information. See definition above.
156 *
157 */
158 struct aim_login_struct logininfo;
159
160 /*
161 * Pointer to anything the client wants to
162 * explicitly associate with this session.
163 */
164 void *aux_data;
165
166
167 /* ---- Internal Use Only ------------------------ */
168 /*
169 * Connection information
170 */
171 struct aim_conn_t conns[AIM_CONN_MAX];
172
173 /*
174 * TX/RX queues
175 */
176 struct command_tx_struct *queue_outgoing;
177 struct command_rx_struct *queue_incoming;
178
0c20631f 179 /*
180 * This is a dreadful solution to the what-room-are-we-joining
181 * problem. (There's no connection between the service
182 * request and the resulting redirect.)
183 */
184 char *pendingjoin;
185
bd71fa88 186 /*
187 * Outstanding snac handling
188 *
189 * XXX: Should these be per-connection? -mid
190 **/
191 struct aim_snac_t *outstanding_snacs;
192 u_long snac_nextid;
193};
194
195
196/*
197 * AIM User Info, Standard Form.
198 */
199struct aim_userinfo_s {
200 char sn[MAXSNLEN+1];
201 u_short warnlevel;
202 u_short idletime;
203 u_short class;
204 u_long membersince;
205 u_long onlinesince;
206 u_long sessionlen;
207};
208
0c20631f 209#define AIM_CLASS_TRIAL 0x0001
210#define AIM_CLASS_UNKNOWN2 0x0002
211#define AIM_CLASS_AOL 0x0004
212#define AIM_CLASS_UNKNOWN4 0x0008
213#define AIM_CLASS_FREE 0x0010
214#define AIM_CLASS_AWAY 0x0020
215#define AIM_CLASS_UNKNOWN40 0x0040
216#define AIM_CLASS_UNKNOWN80 0x0080
217
bd71fa88 218/*
219 * TLV handling
220 */
221
222/* Generic TLV structure. */
223struct aim_tlv_t {
224 u_short type;
225 u_short length;
226 u_char *value;
227};
228
229/* List of above. */
230struct aim_tlvlist_t {
231 struct aim_tlv_t *tlv;
232 struct aim_tlvlist_t *next;
233};
234
235/* TLV-handling functions */
236struct aim_tlvlist_t *aim_readtlvchain(u_char *buf, int maxlen);
237void aim_freetlvchain(struct aim_tlvlist_t **list);
238struct aim_tlv_t *aim_grabtlv(u_char *src);
239struct aim_tlv_t *aim_grabtlvstr(u_char *src);
240struct aim_tlv_t *aim_gettlv(struct aim_tlvlist_t *, u_short, int);
241char *aim_gettlv_str(struct aim_tlvlist_t *, u_short, int);
242int aim_puttlv (u_char *dest, struct aim_tlv_t *newtlv);
243struct aim_tlv_t *aim_createtlv(void);
244int aim_freetlv(struct aim_tlv_t **oldtlv);
245int aim_puttlv_16(u_char *, u_short, u_short);
01b59e1e 246int aim_puttlv_32(u_char *, u_short, u_long);
247int aim_puttlv_str(u_char *buf, u_short t, u_short l, u_char *v);
bd71fa88 248
249
250/*
251 * Get command from connections / Dispatch commands
252 * already in queue.
253 */
254int aim_get_command(struct aim_session_t *);
255int aim_rxdispatch(struct aim_session_t *);
256
257int aim_logoff(struct aim_session_t *);
258
259
260typedef int (*rxcallback_t)(struct aim_session_t *, struct command_rx_struct *, ...);
261int aim_register_callbacks(rxcallback_t *);
262
263u_long aim_genericreq_n(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype);
264u_long aim_genericreq_l(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_long *);
265u_long aim_genericreq_s(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_short *);
266
267/* aim_login.c */
01b59e1e 268int aim_sendconnack(struct aim_session_t *sess, struct aim_conn_t *conn);
269int aim_request_login (struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
bd71fa88 270int aim_send_login (struct aim_session_t *, struct aim_conn_t *, char *, char *, struct client_info_s *);
271int aim_encode_password(const char *, u_char *);
272
273
274struct command_rx_struct *aim_purge_rxqueue(struct command_rx_struct *queue);
275
276
277int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *command, ...);
278int aim_parse_missed_im(struct aim_session_t *, struct command_rx_struct *, ...);
279int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
280
281int aim_tx_enqueue(struct aim_session_t *, struct command_tx_struct *);
282u_int aim_get_next_txseqnum(struct aim_conn_t *);
283int aim_tx_flushqueue(struct aim_session_t *);
284int aim_tx_printqueue(struct aim_session_t *);
285int aim_tx_purgequeue(struct aim_session_t *);
286
287struct aim_rxcblist_t {
288 u_short family;
289 u_short type;
290 rxcallback_t handler;
291 u_short flags;
292 struct aim_rxcblist_t *next;
293};
294
295int aim_conn_setlatency(struct aim_conn_t *conn, int newval);
296
297int aim_conn_addhandler(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short type, rxcallback_t newhandler, u_short flags);
298rxcallback_t aim_callhandler(struct aim_conn_t *conn, u_short family, u_short type);
299int aim_clearhandlers(struct aim_conn_t *conn);
300
301/*
302 * Generic SNAC structure. Rarely if ever used.
303 */
304struct aim_snac_t {
305 u_long id;
306 u_short family;
307 u_short type;
308 u_short flags;
309 void *data;
310 time_t issuetime;
311 struct aim_snac_t *next;
312};
313u_long aim_newsnac(struct aim_session_t *, struct aim_snac_t *newsnac);
314struct aim_snac_t *aim_remsnac(struct aim_session_t *, u_long id);
315int aim_cleansnacs(struct aim_session_t *, int maxage);
316int aim_putsnac(u_char *, int, int, int, u_long);
317
318
319void aim_connrst(struct aim_session_t *);
320struct aim_conn_t *aim_conn_getnext(struct aim_session_t *);
321void aim_conn_close(struct aim_conn_t *deadconn);
322struct aim_conn_t *aim_getconn_type(struct aim_session_t *, int type);
323struct aim_conn_t *aim_newconn(struct aim_session_t *, int type, char *dest);
324int aim_conngetmaxfd(struct aim_session_t *);
325struct aim_conn_t *aim_select(struct aim_session_t *, struct timeval *);
326int aim_conn_isready(struct aim_conn_t *);
327int aim_conn_setstatus(struct aim_conn_t *, int);
328void aim_session_init(struct aim_session_t *);
329
330/* aim_misc.c */
331
332#define AIM_VISIBILITYCHANGE_PERMITADD 0x05
333#define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06
334#define AIM_VISIBILITYCHANGE_DENYADD 0x07
335#define AIM_VISIBILITYCHANGE_DENYREMOVE 0x08
336
337u_long aim_bos_setidle(struct aim_session_t *, struct aim_conn_t *, u_long);
338u_long aim_bos_changevisibility(struct aim_session_t *, struct aim_conn_t *, int, char *);
339u_long aim_bos_setbuddylist(struct aim_session_t *, struct aim_conn_t *, char *);
0c20631f 340u_long aim_bos_setprofile(struct aim_session_t *, struct aim_conn_t *, char *, char *);
bd71fa88 341u_long aim_bos_setgroupperm(struct aim_session_t *, struct aim_conn_t *, u_long);
342u_long aim_bos_clientready(struct aim_session_t *, struct aim_conn_t *);
343u_long aim_bos_reqrate(struct aim_session_t *, struct aim_conn_t *);
344u_long aim_bos_ackrateresp(struct aim_session_t *, struct aim_conn_t *);
345u_long aim_bos_setprivacyflags(struct aim_session_t *, struct aim_conn_t *, u_long);
346u_long aim_bos_reqpersonalinfo(struct aim_session_t *, struct aim_conn_t *);
347u_long aim_bos_reqservice(struct aim_session_t *, struct aim_conn_t *, u_short);
348u_long aim_bos_reqrights(struct aim_session_t *, struct aim_conn_t *);
349u_long aim_bos_reqbuddyrights(struct aim_session_t *, struct aim_conn_t *);
350u_long aim_bos_reqlocaterights(struct aim_session_t *, struct aim_conn_t *);
351u_long aim_bos_reqicbmparaminfo(struct aim_session_t *, struct aim_conn_t *);
0c20631f 352u_long aim_setversions(struct aim_session_t *sess, struct aim_conn_t *conn);
bd71fa88 353
354/* aim_rxhandlers.c */
355int aim_rxdispatch(struct aim_session_t *);
356int aim_authparse(struct aim_session_t *, struct command_rx_struct *);
357int aim_handleredirect_middle(struct aim_session_t *, struct command_rx_struct *, ...);
358int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *, ...);
359int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
360int aim_parse_generalerrs(struct aim_session_t *, struct command_rx_struct *command, ...);
01b59e1e 361int aim_parsemotd_middle(struct aim_session_t *sess, struct command_rx_struct *command, ...);
bd71fa88 362
363/* aim_im.c */
364#define AIM_IMFLAGS_AWAY 0x01 /* mark as an autoreply */
365#define AIM_IMFLAGS_ACK 0x02 /* request a receipt notice */
366
367u_long aim_send_im(struct aim_session_t *, struct aim_conn_t *, char *, u_int, char *);
368int aim_parse_incoming_im_middle(struct aim_session_t *, struct command_rx_struct *);
369u_long aim_seticbmparam(struct aim_session_t *, struct aim_conn_t *conn);
370int aim_parse_msgerror_middle(struct aim_session_t *, struct command_rx_struct *);
371
372/* aim_info.c */
373u_long aim_getinfo(struct aim_session_t *, struct aim_conn_t *, const char *);
374int aim_extractuserinfo(u_char *, struct aim_userinfo_s *);
375int aim_parse_userinfo_middle(struct aim_session_t *, struct command_rx_struct *);
376int aim_parse_oncoming_middle(struct aim_session_t *, struct command_rx_struct *);
377int aim_parse_offgoing_middle(struct aim_session_t *, struct command_rx_struct *);
378
379/* aim_auth.c */
380int aim_auth_sendcookie(struct aim_session_t *, struct aim_conn_t *, u_char *);
381u_long aim_auth_clientready(struct aim_session_t *, struct aim_conn_t *);
382u_long aim_auth_changepasswd(struct aim_session_t *, struct aim_conn_t *, char *, char *);
383
384/* aim_buddylist.c */
385u_long aim_add_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
386u_long aim_remove_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
387
388/* aim_search.c */
389u_long aim_usersearch_address(struct aim_session_t *, struct aim_conn_t *, char *);
390/* u_long aim_usersearch_name(struct aim_session_t *, struct aim_conn_t *, char *); */
391
0c20631f 392
393struct aim_chat_roominfo {
394 u_short exchange;
395 char *name;
396 u_short instance;
397};
398int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo);
399int aim_chat_parse_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command);
400int aim_chat_parse_joined(struct aim_session_t *sess, struct command_rx_struct *command);
401int aim_chat_parse_leave(struct aim_session_t *sess, struct command_rx_struct *command);
402int aim_chat_parse_incoming(struct aim_session_t *sess, struct command_rx_struct *command);
403u_long aim_chat_send_im(struct aim_session_t *sess, struct aim_conn_t *conn, char *msg);
404u_long aim_chat_join(struct aim_session_t *sess, struct aim_conn_t *conn, u_short exchange, const char *roomname);
405u_long aim_chat_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
406int aim_chat_attachname(struct aim_conn_t *conn, char *roomname);
407char *aim_chat_getname(struct aim_conn_t *conn);
408struct aim_conn_t *aim_chat_getconn(struct aim_session_t *, char *name);
409
410u_long aim_chatnav_reqrights(struct aim_session_t *sess, struct aim_conn_t *conn);
411u_long aim_chatnav_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
412
413u_long aim_chat_invite(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn, char *msg, u_short exchange, char *roomname, u_short instance);
414
415struct aim_chat_exchangeinfo {
416 u_short number;
417 char *name;
418 char *charset1;
419 char *lang1;
420 char *charset2;
421 char *lang2;
422};
423int aim_chatnav_parse_info(struct aim_session_t *sess, struct command_rx_struct *command);
424u_long aim_chatnav_createroom(struct aim_session_t *sess, struct aim_conn_t *conn, char *name, u_short exchange);
425int aim_chat_leaveroom(struct aim_session_t *sess, char *name);
426
bd71fa88 427/* aim_util.c */
428int aimutil_put8(u_char *, u_char);
429u_char aimutil_get8(u_char *buf);
430int aimutil_put16(u_char *, u_short);
431u_short aimutil_get16(u_char *);
432int aimutil_put32(u_char *, u_long);
433u_long aimutil_get32(u_char *);
434int aimutil_putstr(u_char *, const u_char *, int);
435int aimutil_tokslen(char *toSearch, int index, char dl);
436int aimutil_itemcnt(char *toSearch, char dl);
437char *aimutil_itemidx(char *toSearch, int index, char dl);
438
439#endif /* __AIM_H__ */
440
This page took 0.296789 seconds and 5 git commands to generate.