]> andersk Git - libfaim.git/blame - src/snac.c
Add -lcurses to readline check.
[libfaim.git] / src / snac.c
CommitLineData
9de3ca7e 1/*
2 *
3 * Various SNAC-related dodads...
4 *
5 * outstanding_snacs is a list of aim_snac_t structs. A SNAC should be added
6 * whenever a new SNAC is sent and it should remain in the list until the
b13c9e13 7 * response for it has been receieved.
9de3ca7e 8 *
b13c9e13 9 * cleansnacs() should be called periodically by the client in order
10 * to facilitate the aging out of unreplied-to SNACs. This can and does
11 * happen, so it should be handled.
9de3ca7e 12 *
13 */
14
37ee990e 15#define FAIM_INTERNAL
dd60ff8b 16#include <aim.h>
9de3ca7e 17
b13c9e13 18/*
19 * Called from aim_session_init() to initialize the hash.
20 */
c5ca2538 21faim_internal void aim_initsnachash(struct aim_session_t *sess)
b13c9e13 22{
23 int i;
24
25 for (i = 0; i < FAIM_SNAC_HASH_SIZE; i++) {
26 sess->snac_hash[i] = NULL;
27 faim_mutex_init(&sess->snac_hash_locks[i]);
28 }
29
30 return;
31}
32
1ea867e3 33faim_internal unsigned long aim_cachesnac(struct aim_session_t *sess,
34 const unsigned short family,
35 const unsigned short type,
36 const unsigned short flags,
37 const void *data, const int datalen)
38{
39 struct aim_snac_t snac;
40
41 snac.id = sess->snac_nextid++;
42 snac.family = family;
43 snac.type = type;
44 snac.flags = flags;
45
646c6b52 46 if (datalen) {
47 if (!(snac.data = malloc(datalen)))
48 return 0; /* er... */
49 memcpy(snac.data, data, datalen);
50 } else
51 snac.data = NULL;
1ea867e3 52
53 return aim_newsnac(sess, &snac);
54}
55
b13c9e13 56/*
57 * Clones the passed snac structure and caches it in the
58 * list/hash.
59 */
c5ca2538 60faim_internal unsigned long aim_newsnac(struct aim_session_t *sess,
61 struct aim_snac_t *newsnac)
a25832e6 62{
96f8b1ed 63 struct aim_snac_t *snac = NULL;
b13c9e13 64 int index;
65
a25832e6 66 if (!newsnac)
67 return 0;
9de3ca7e 68
17d80b55 69 if (!(snac = calloc(1, sizeof(struct aim_snac_t))))
a25832e6 70 return 0;
71 memcpy(snac, newsnac, sizeof(struct aim_snac_t));
72 snac->issuetime = time(&snac->issuetime);
73 snac->next = NULL;
b13c9e13 74
75 index = snac->id % FAIM_SNAC_HASH_SIZE;
76
77 faim_mutex_lock(&sess->snac_hash_locks[index]);
17d80b55 78 snac->next = sess->snac_hash[index];
79 sess->snac_hash[index] = snac;
b13c9e13 80 faim_mutex_unlock(&sess->snac_hash_locks[index]);
5b401785 81
a25832e6 82 return(snac->id);
83}
9de3ca7e 84
b13c9e13 85/*
86 * Finds a snac structure with the passed SNAC ID,
87 * removes it from the list/hash, and returns a pointer to it.
88 *
89 * The returned structure must be freed by the caller.
90 *
91 */
c5ca2538 92faim_internal struct aim_snac_t *aim_remsnac(struct aim_session_t *sess,
93 u_long id)
a25832e6 94{
96f8b1ed 95 struct aim_snac_t *cur = NULL;
b13c9e13 96 int index;
5b401785 97
b13c9e13 98 index = id % FAIM_SNAC_HASH_SIZE;
5b401785 99
b13c9e13 100 faim_mutex_lock(&sess->snac_hash_locks[index]);
101 if (!sess->snac_hash[index])
102 ;
96f8b1ed 103 else if (sess->snac_hash[index]->id == id) {
104 cur = sess->snac_hash[index];
105 sess->snac_hash[index] = cur->next;
b13c9e13 106 } else {
107 cur = sess->snac_hash[index];
108 while (cur->next) {
109 if (cur->next->id == id) {
110 struct aim_snac_t *tmp;
111
112 tmp = cur->next;
113 cur->next = cur->next->next;
114 cur = tmp;
115 break;
116 }
117 cur = cur->next;
a25832e6 118 }
a25832e6 119 }
b13c9e13 120 faim_mutex_unlock(&sess->snac_hash_locks[index]);
121
122 return cur;
9de3ca7e 123}
124
125/*
126 * This is for cleaning up old SNACs that either don't get replies or
127 * a reply was never received for. Garabage collection. Plain and simple.
128 *
b13c9e13 129 * maxage is the _minimum_ age in seconds to keep SNACs.
9de3ca7e 130 *
131 */
c5ca2538 132faim_internal int aim_cleansnacs(struct aim_session_t *sess,
133 int maxage)
9de3ca7e 134{
b13c9e13 135 int i;
136
137 for (i = 0; i < FAIM_SNAC_HASH_SIZE; i++) {
37ee990e 138 struct aim_snac_t *cur, **prev;
53c935f8 139 time_t curtime;
140
b13c9e13 141 faim_mutex_lock(&sess->snac_hash_locks[i]);
96f8b1ed 142 if (!sess->snac_hash[i]) {
143 faim_mutex_unlock(&sess->snac_hash_locks[i]);
144 continue;
145 }
146
147 curtime = time(NULL); /* done here in case we waited for the lock */
148
37ee990e 149 for (prev = &sess->snac_hash[i]; (cur = *prev); ) {
96f8b1ed 150 if ((curtime - cur->issuetime) > maxage) {
37ee990e 151
152 *prev = cur->next;
96f8b1ed 153
96f8b1ed 154 /* XXX should we have destructors here? */
155 if (cur->data)
156 free(cur->data);
157 free(cur);
158
37ee990e 159 } else
160 prev = &cur->next;
9de3ca7e 161 }
96f8b1ed 162
b13c9e13 163 faim_mutex_unlock(&sess->snac_hash_locks[i]);
164 }
165
9de3ca7e 166 return 0;
167}
168
c5ca2538 169faim_internal int aim_putsnac(u_char *buf, int family, int subtype, int flags, u_long snacid)
9de3ca7e 170{
171 int curbyte = 0;
172 curbyte += aimutil_put16(buf+curbyte, (u_short)(family&0xffff));
173 curbyte += aimutil_put16(buf+curbyte, (u_short)(subtype&0xffff));
174 curbyte += aimutil_put16(buf+curbyte, (u_short)(flags&0xffff));
175 curbyte += aimutil_put32(buf+curbyte, snacid);
176 return curbyte;
177}
This page took 0.081325 seconds and 5 git commands to generate.