1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
|
/**
* @file tlv.c MSN TLV functions
*
* purple
*
* Purple is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include "tlv.h"
#include "msnutils.h"
static msn_tlv_t *
createtlv(guint8 type, guint8 length, guint8 *value)
{
msn_tlv_t *ret;
ret = g_new(msn_tlv_t, 1);
ret->type = type;
ret->length = length;
ret->value = value;
return ret;
}
static void
freetlv(msn_tlv_t *oldtlv)
{
g_free(oldtlv->value);
g_free(oldtlv);
}
GSList *
msn_tlvlist_read(const char *bs, size_t bs_len)
{
GSList *list = NULL;
while (bs_len > 0) {
guint8 type, length;
msn_tlv_t *tlv;
if (bs_len == 3 && *bs == 0) {
/* Padding to multiple of 4 */
break;
} else if (bs_len == 2 && *bs == 0) {
/* Padding to multiple of 4 */
break;
} else if (bs_len == 1) {
if (*bs == 0) {
/* Padding to multiple of 4 */
break;
} else {
/* TLV is not small enough to fit here */
msn_tlvlist_free(list);
return NULL;
}
}
type = msn_pop8(bs);
length = msn_pop8(bs);
bs_len -= 2;
if (length > bs_len) {
msn_tlvlist_free(list);
return NULL;
}
tlv = createtlv(type, length, NULL);
if (length > 0) {
tlv->value = g_memdup(bs, length);
if (!tlv->value) {
freetlv(tlv);
msn_tlvlist_free(list);
return NULL;
}
}
bs_len -= length;
bs += length;
list = g_slist_prepend(list, tlv);
}
return g_slist_reverse(list);
}
GSList *
msn_tlvlist_copy(GSList *orig)
{
GSList *new = NULL;
msn_tlv_t *tlv;
while (orig != NULL) {
tlv = orig->data;
msn_tlvlist_add_raw(&new, tlv->type, tlv->length, (const char *)tlv->value);
orig = orig->next;
}
return new;
}
gboolean
msn_tlvlist_equal(GSList *one, GSList *two)
{
while (one && two) {
msn_tlv_t *a = one->data;
msn_tlv_t *b = two->data;
if (a->type != b->type)
return FALSE;
else if (a->length != b->length)
return FALSE;
else if (!a->value && b->value)
return FALSE;
else if (a->value && !b->value)
return FALSE;
else if (a->value && b->value && memcmp(a->value, b->value, a->length) != 0)
return FALSE;
one = one->next;
two = two->next;
}
return one == two;
}
void
msn_tlvlist_free(GSList *list)
{
while (list != NULL) {
freetlv(list->data);
list = g_slist_delete_link(list, list);
}
}
int
msn_tlvlist_count(GSList *list)
{
return g_slist_length(list);
}
size_t
msn_tlvlist_size(GSList *list)
{
int size;
if (list == NULL)
return 0;
for (size = 0; list; list = list->next)
size += (2 + ((msn_tlv_t *)list->data)->length);
return size;
}
int
msn_tlvlist_add_raw(GSList **list, const guint8 type, const guint8 length, const char *value)
{
msn_tlv_t *tlv;
if (list == NULL)
return 0;
tlv = createtlv(type, length, NULL);
if (length > 0)
tlv->value = g_memdup(value, length);
*list = g_slist_append(*list, tlv);
return tlv->length;
}
int
msn_tlvlist_add_8(GSList **list, const guint8 type, const guint8 value)
{
char v8[1];
msn_write8(v8, value);
return msn_tlvlist_add_raw(list, type, 1, v8);
}
int
msn_tlvlist_add_16(GSList **list, const guint8 type, const guint16 value)
{
char v16[2];
msn_write16be(v16, value);
return msn_tlvlist_add_raw(list, type, 2, v16);
}
int
msn_tlvlist_add_32(GSList **list, const guint8 type, const guint32 value)
{
char v32[4];
msn_write32be(v32, value);
return msn_tlvlist_add_raw(list, type, 4, v32);
}
int
msn_tlvlist_add_str(GSList **list, const guint8 type, const char *value)
{
return msn_tlvlist_add_raw(list, type, strlen(value), value);
}
int
msn_tlvlist_add_empty(GSList **list, const guint8 type)
{
return msn_tlvlist_add_raw(list, type, 0, NULL);
}
int
msn_tlvlist_add_tlv(GSList **list, const msn_tlv_t *tlv)
{
return msn_tlvlist_add_raw(list, tlv->type, tlv->length, (const char *)tlv->value);
}
int
msn_tlvlist_replace_raw(GSList **list, const guint8 type, const guint8 length, const char *value)
{
GSList *cur;
msn_tlv_t *tlv;
if (list == NULL)
return 0;
for (cur = *list; cur != NULL; cur = cur->next) {
tlv = cur->data;
if (tlv->type == type)
break;
}
if (cur == NULL)
/* TLV does not exist, so add a new one */
return msn_tlvlist_add_raw(list, type, length, value);
g_free(tlv->value);
tlv->length = length;
if (length > 0) {
tlv->value = g_memdup(value, length);
} else
tlv->value = NULL;
return length;
}
int
msn_tlvlist_replace_str(GSList **list, const guint8 type, const char *str)
{
return msn_tlvlist_replace_raw(list, type, strlen(str), str);
}
int
msn_tlvlist_replace_empty(GSList **list, const guint8 type)
{
return msn_tlvlist_replace_raw(list, type, 0, NULL);
}
int
msn_tlvlist_replace_8(GSList **list, const guint8 type, const guint8 value)
{
char v8[1];
msn_write8(v8, value);
return msn_tlvlist_replace_raw(list, type, 1, v8);
}
int
msn_tlvlist_replace_32(GSList **list, const guint8 type, const guint32 value)
{
char v32[4];
msn_write32be(v32, value);
return msn_tlvlist_replace_raw(list, type, 4, v32);
}
int
msn_tlvlist_replace_tlv(GSList **list, const msn_tlv_t *tlv)
{
return msn_tlvlist_replace_raw(list, tlv->type, tlv->length, (const char *)tlv->value);
}
void
msn_tlvlist_remove(GSList **list, const guint8 type)
{
GSList *cur, *next;
msn_tlv_t *tlv;
if (list == NULL || *list == NULL)
return;
cur = *list;
while (cur != NULL) {
tlv = cur->data;
next = cur->next;
if (tlv->type == type) {
/* Delete this TLV */
*list = g_slist_delete_link(*list, cur);
g_free(tlv->value);
g_free(tlv);
}
cur = next;
}
}
char *
msn_tlvlist_write(GSList *list, size_t *out_len)
{
char *buf;
char *tmp;
size_t bytes_left;
size_t total_len;
tmp = buf = g_malloc(256);
bytes_left = total_len = 256;
for (; list; list = g_slist_next(list)) {
msn_tlv_t *tlv = (msn_tlv_t *)list->data;
if (G_UNLIKELY(tlv->length + 2 > bytes_left)) {
buf = g_realloc(buf, total_len + 256);
bytes_left += 256;
total_len += 256;
tmp = buf + (total_len - bytes_left);
}
msn_push8(tmp, tlv->type);
msn_push8(tmp, tlv->length);
memcpy(tmp, tlv->value, tlv->length);
tmp += tlv->length;
bytes_left -= (tlv->length + 2);
}
/* Align length to multiple of 4 */
total_len = total_len - bytes_left;
bytes_left = 4 - total_len % 4;
if (bytes_left != 4)
memset(tmp, 0, bytes_left);
else
bytes_left = 0;
*out_len = total_len + bytes_left;
return buf;
}
msn_tlv_t *
msn_tlv_gettlv(GSList *list, const guint8 type, const int nth)
{
msn_tlv_t *tlv;
int i;
for (i = 0; list != NULL; list = list->next) {
tlv = list->data;
if (tlv->type == type)
i++;
if (i >= nth)
return tlv;
}
return NULL;
}
int
msn_tlv_getlength(GSList *list, const guint8 type, const int nth)
{
msn_tlv_t *tlv;
tlv = msn_tlv_gettlv(list, type, nth);
if (tlv == NULL)
return -1;
return tlv->length;
}
char *
msn_tlv_getvalue_as_string(msn_tlv_t *tlv)
{
char *ret;
ret = g_malloc(tlv->length + 1);
memcpy(ret, tlv->value, tlv->length);
ret[tlv->length] = '\0';
return ret;
}
char *
msn_tlv_getstr(GSList *list, const guint8 type, const int nth)
{
msn_tlv_t *tlv;
tlv = msn_tlv_gettlv(list, type, nth);
if (tlv == NULL)
return NULL;
return msn_tlv_getvalue_as_string(tlv);
}
guint8
msn_tlv_get8(GSList *list, const guint8 type, const int nth)
{
msn_tlv_t *tlv;
tlv = msn_tlv_gettlv(list, type, nth);
if (tlv == NULL)
return 0; /* erm */
return msn_read8((const char *)tlv->value);
}
guint16
msn_tlv_get16(GSList *list, const guint8 type, const int nth)
{
msn_tlv_t *tlv;
tlv = msn_tlv_gettlv(list, type, nth);
if (tlv == NULL)
return 0; /* erm */
return msn_read16be((const char *)tlv->value);
}
guint32
msn_tlv_get32(GSList *list, const guint8 type, const int nth)
{
msn_tlv_t *tlv;
tlv = msn_tlv_gettlv(list, type, nth);
if (tlv == NULL)
return 0; /* erm */
return msn_read32be((const char *)tlv->value);
}
|