utils: remove duplicate string replacement function
[siplcs.git] / src / core / sipe-utils.c
blobab4659f7548efd941cd88bf5565aab19b2f1f817
1 /**
2 * @file sipe-utils.c
4 * pidgin-sipe
6 * Copyright (C) 2009-2013 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <ctype.h>
28 #include <glib.h>
30 #include "sipe-backend.h"
31 #include "sipe-core.h" /* to ensure same API for backends */
32 #include "sipe-core-private.h"
33 #include "sipe-utils.h"
34 #include "uuid.h"
36 /* Generate 16 random bits */
37 #define RANDOM16BITS (rand() & 0xFFFF)
39 gchar *gencallid(void)
41 return g_strdup_printf("%04Xg%04Xa%04Xi%04Xm%04Xt%04Xb%04Xx%04Xx",
42 RANDOM16BITS, RANDOM16BITS, RANDOM16BITS,
43 RANDOM16BITS, RANDOM16BITS, RANDOM16BITS,
44 RANDOM16BITS, RANDOM16BITS);
47 gchar *gentag(void)
49 return g_strdup_printf("%04d%04d", RANDOM16BITS, RANDOM16BITS);
52 gchar *genconfid(void)
54 return g_strdup_printf("%04X%04X%04X%04X%04X%04X%04X%04X",
55 RANDOM16BITS, RANDOM16BITS, RANDOM16BITS,
56 RANDOM16BITS, RANDOM16BITS, RANDOM16BITS,
57 RANDOM16BITS, RANDOM16BITS);
60 gchar *get_contact(const struct sipe_core_private *sipe_private)
62 return g_strdup(sipe_private->contact);
65 gchar *parse_from(const gchar *hdr)
67 gchar *from;
68 const gchar *tmp, *tmp2 = hdr;
70 if (!hdr) return NULL;
71 SIPE_DEBUG_INFO("parsing address out of %s", hdr);
72 tmp = strchr(hdr, '<');
74 /* i hate the different SIP UA behaviours... */
75 if (tmp) { /* sip address in <...> */
76 tmp2 = tmp + 1;
77 tmp = strchr(tmp2, '>');
78 if (tmp) {
79 from = g_strndup(tmp2, tmp - tmp2);
80 } else {
81 SIPE_DEBUG_INFO_NOFORMAT("found < without > in From");
82 return NULL;
84 } else {
85 tmp = strchr(tmp2, ';');
86 if (tmp) {
87 from = g_strndup(tmp2, tmp - tmp2);
88 } else {
89 from = g_strdup(tmp2);
92 SIPE_DEBUG_INFO("got %s", from);
93 return from;
96 gchar *sip_uri_from_name(const gchar *name)
98 return(g_strdup_printf("sip:%s", name));
101 gchar *sip_uri(const gchar *string)
103 return(strstr(string, "sip:") ? g_strdup(string) : sip_uri_from_name(string));
106 static gchar *escape_uri_part(const gchar *in, guint len)
108 gchar *escaped = NULL;
110 if (len) {
111 gchar *s;
113 /* reserve space for worst case, i.e. every character needs escaping */
114 escaped = s = g_malloc(3 * len + 1);
115 while (len--) {
116 gchar c = *in++;
118 /* only allow ASCII characters */
119 if (!isascii(c)) {
120 g_free(escaped);
121 return(NULL);
125 * RFC 3986 Appendix A
127 * authority = [ userinfo "@" ] host [ ":" port ]
128 * userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
129 * host = IP-literal / IPv4address / reg-name
130 * reg-name = *( unreserved / pct-encoded / sub-delims )
131 * pct-encoded = "%" HEXDIG HEXDIG
132 * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
134 * Escape everything that isn't in "unreserved"
136 if (isalnum(c) ||
137 (c == '.') ||
138 (c == '-') ||
139 (c == '_') ||
140 (c == '~')) {
141 *s++ = c;
142 } else {
143 sprintf(s, "%%%1X%1X", c / 16, c % 16);
144 s += 3;
147 *s = '\0';
150 return(escaped);
153 gchar *sip_uri_if_valid(const gchar *string)
155 /* strip possible sip: prefix */
156 const gchar *uri = sipe_get_no_sip_uri(string);
157 const gchar *at;
158 gchar *result = NULL;
160 /* only XXX@YYY is valid */
161 if (uri && ((at = strchr(uri, '@')) != NULL)) {
162 gchar *userinfo = escape_uri_part(uri, at - uri);
164 if (userinfo) {
165 gchar *host = escape_uri_part(at + 1, strlen(at + 1));
167 if (host) {
168 /* name is valid for URI, convert it */
169 result = g_strdup_printf("sip:%s@%s",
170 userinfo,
171 host);
172 g_free(host);
174 g_free(userinfo);
178 return(result);
181 const gchar *sipe_get_no_sip_uri(const gchar *sip_uri)
183 #define SIP_PREFIX "sip:"
185 if (!sip_uri) return NULL;
187 if (g_str_has_prefix(sip_uri, SIP_PREFIX)) {
188 return(sip_uri + strlen(SIP_PREFIX));
189 } else {
190 return sip_uri;
194 gchar *
195 get_epid(struct sipe_core_private *sipe_private)
197 if (!sipe_private->epid) {
198 gchar *self_sip_uri = sip_uri_self(sipe_private);
199 sipe_private->epid = sipe_get_epid(self_sip_uri,
200 g_get_host_name(),
201 sipe_backend_network_ip_address(SIPE_CORE_PUBLIC));
202 g_free(self_sip_uri);
204 return g_strdup(sipe_private->epid);
207 gchar *get_uuid(struct sipe_core_private *sipe_private)
209 gchar *epid = get_epid(sipe_private);
210 gchar *uuid = generateUUIDfromEPID(epid);
211 g_free(epid);
212 return(uuid);
216 guint
217 sipe_get_pub_instance(struct sipe_core_private *sipe_private,
218 int publication_key)
220 unsigned res = 0;
221 gchar *epid = get_epid(sipe_private);
223 sscanf(epid, "%08x", &res);
224 g_free(epid);
226 if (publication_key == SIPE_PUB_DEVICE) {
227 /* as is */
228 } else if (publication_key == SIPE_PUB_STATE_MACHINE) { /* First hexadecimal digit is 0x3 */
229 res = (res >> 4) | 0x30000000;
230 } else if (publication_key == SIPE_PUB_STATE_USER) {
231 res = 0x20000000; /* fixed */
232 } else if (publication_key == SIPE_PUB_STATE_CALENDAR) { /* First hexadecimal digit is 0x4 */
233 res = (res >> 4) | 0x40000000;
234 } else if (publication_key == SIPE_PUB_STATE_CALENDAR_OOF) { /* First hexadecimal digit is 0x5 */
235 res = (res >> 4) | 0x50000000;
236 } else if (publication_key == SIPE_PUB_CALENDAR_DATA ||
237 publication_key == SIPE_PUB_NOTE_OOF)
238 { /* First hexadecimal digit is 0x4 */
239 unsigned calendar_id = 0;
240 char *mail_hash = sipe_get_epid(sipe_private->email, "", "");
242 sscanf(mail_hash, "%08x", &calendar_id);
243 g_free(mail_hash);
244 res = (calendar_id >> 4) | 0x40000000;
245 } else if (publication_key == SIPE_PUB_STATE_PHONE_VOIP) { /* First hexadecimal digit is 0x8 */
246 res = (res >> 4) | 0x80000000;
249 return res;
252 gboolean
253 sipe_is_bad_alias(const char *uri,
254 const char *alias)
256 char *uri_alias;
257 gboolean result = FALSE;
259 if (!uri) return FALSE;
260 if (!alias) return TRUE;
262 if (g_str_has_prefix(alias, "sip:") || g_str_has_prefix(alias, "sips:")) return TRUE;
264 /* check if alias is just SIP URI but without 'sip:' prefix */
265 uri_alias = sip_uri_from_name(alias);
266 if (sipe_strcase_equal(uri, uri_alias)) {
267 result = TRUE;
269 g_free(uri_alias);
271 return result;
274 gboolean
275 is_empty(const char *st)
277 if (!st || strlen(st) == 0)
279 return TRUE;
281 /* suspecious leading or trailing staces */
282 else if (isspace((unsigned char) *st) ||
283 isspace((unsigned char) *(st + strlen(st) - 1)))
285 /* to not modify original string */
286 char *dup = g_strdup(st);
287 if (strlen(g_strstrip(dup)) == 0) {
288 g_free(dup);
289 return TRUE;
291 g_free(dup);
293 return FALSE;
296 void sipe_utils_message_debug(const gchar *type,
297 const gchar *header,
298 const gchar *body,
299 gboolean sending)
301 if (sipe_backend_debug_enabled()) {
302 GString *str = g_string_new("");
303 GTimeVal currtime;
304 gchar *time_str;
305 const char *marker = sending ?
306 ">>>>>>>>>>" :
307 "<<<<<<<<<<";
308 gchar *tmp;
310 g_get_current_time(&currtime);
311 time_str = g_time_val_to_iso8601(&currtime);
312 g_string_append_printf(str, "\nMESSAGE START %s %s - %s\n", marker, type, time_str);
313 g_string_append(str, tmp = sipe_utils_str_replace(header, "\r\n", "\n"));
314 g_free(tmp);
315 g_string_append(str, "\n");
316 if (body) {
317 g_string_append(str, tmp = sipe_utils_str_replace(body, "\r\n", "\n"));
318 g_free(tmp);
319 g_string_append(str, "\n");
321 g_string_append_printf(str, "MESSAGE END %s %s - %s", marker, type, time_str);
322 g_free(time_str);
323 SIPE_DEBUG_INFO_NOFORMAT(str->str);
324 g_string_free(str, TRUE);
328 gboolean
329 sipe_strequal(const gchar *left, const gchar *right)
331 #if GLIB_CHECK_VERSION(2,16,0)
332 return (g_strcmp0(left, right) == 0);
333 #else
334 return ((left == NULL && right == NULL) ||
335 (left != NULL && right != NULL && strcmp(left, right) == 0));
336 #endif
339 gboolean
340 sipe_strcase_equal(const gchar *left, const gchar *right)
342 return ((left == NULL && right == NULL) ||
343 (left != NULL && right != NULL && g_ascii_strcasecmp(left, right) == 0));
346 gint sipe_strcompare(gconstpointer a, gconstpointer b)
348 #if GLIB_CHECK_VERSION(2,16,0)
349 return (g_strcmp0(a, b));
350 #else
351 if (!a)
352 return -(a != b);
353 if (!b)
354 return a != b;
355 return strcmp(a, b);
356 #endif
359 time_t
360 sipe_utils_str_to_time(const gchar *timestamp)
362 GTimeVal time;
363 gboolean success = FALSE;
365 /* g_time_val_from_iso8601() warns about NULL pointer */
366 if (timestamp) {
367 guint len;
369 /* We have to make sure that the ISO8601 contains a time zone offset,
370 otherwise the time is interpreted as local time, not UTC!
371 @TODO: is there a better way to check this? */
372 if (((len = strlen(timestamp)) > 0) &&
373 isdigit(timestamp[len-1])) {
374 gchar *tmp = g_strdup_printf("%sZ", timestamp);
375 success = g_time_val_from_iso8601(tmp, &time);
376 g_free(tmp);
377 } else {
378 success = g_time_val_from_iso8601(timestamp, &time);
382 if (!success) {
383 SIPE_DEBUG_ERROR("sipe_utils_str_to_time: failed to parse ISO8601 string '%s'",
384 timestamp ? timestamp : "");
385 time.tv_sec = 0;
388 return time.tv_sec;
391 gchar *
392 sipe_utils_time_to_str(time_t timestamp)
394 GTimeVal time = { timestamp, 0 };
395 return g_time_val_to_iso8601(&time);
398 size_t
399 hex_str_to_buff(const char *hex_str, guint8 **buff)
401 char two_digits[3];
402 size_t length;
403 size_t i;
405 if (!buff) return 0;
406 if (!hex_str) return 0;
408 length = strlen(hex_str)/2;
409 *buff = (unsigned char *)g_malloc(length);
410 for (i = 0; i < length; i++) {
411 two_digits[0] = hex_str[i * 2];
412 two_digits[1] = hex_str[i * 2 + 1];
413 two_digits[2] = '\0';
414 (*buff)[i] = (unsigned char)strtoul(two_digits, NULL, 16);
417 return length;
420 char *
421 buff_to_hex_str(const guint8 *buff, const size_t buff_len)
423 char *res;
424 size_t i, j;
426 if (!buff) return NULL;
428 res = g_malloc(buff_len * 2 + 1);
429 for (i = 0, j = 0; i < buff_len; i++, j+=2) {
430 sprintf(&res[j], "%02X", buff[i]);
432 res[j] = '\0';
433 return res;
436 gboolean
437 sipe_utils_parse_lines(GSList **list, gchar **lines, gchar *delimiter)
439 int i;
440 gchar **parts;
441 gchar *dummy;
442 gchar *dummy2;
443 gchar *tmp;
445 for(i = 0; lines[i] && strlen(lines[i]) > 2; i++) {
446 parts = g_strsplit(lines[i], delimiter, 2);
447 if(!parts[0] || !parts[1]) {
448 g_strfreev(parts);
449 return FALSE;
451 dummy = parts[1];
452 dummy2 = 0;
453 while(*dummy==' ' || *dummy=='\t') dummy++;
454 dummy2 = g_strdup(dummy);
455 while(lines[i+1] && (lines[i+1][0]==' ' || lines[i+1][0]=='\t')) {
456 i++;
457 dummy = lines[i];
458 while(*dummy==' ' || *dummy=='\t') dummy++;
459 tmp = g_strdup_printf("%s %s",dummy2, dummy);
460 g_free(dummy2);
461 dummy2 = tmp;
463 *list = sipe_utils_nameval_add(*list, parts[0], dummy2);
464 g_free(dummy2);
465 g_strfreev(parts);
468 return TRUE;
471 GSList*
472 sipe_utils_nameval_add(GSList* list, const gchar *name, const gchar *value)
474 struct sipnameval *element = g_new0(struct sipnameval,1);
476 /* SANITY CHECK: the calling code must be fixed if this happens! */
477 if (!value) {
478 SIPE_DEBUG_ERROR("sipe_utils_nameval_add: NULL value for %s",
479 name);
480 value = "";
483 element->name = g_strdup(name);
484 element->value = g_strdup(value);
485 return g_slist_append(list, element);
488 void
489 sipe_utils_nameval_free(GSList *list) {
490 struct sipnameval *elem;
491 while(list) {
492 elem = list->data;
493 list = g_slist_remove(list,elem);
494 g_free(elem->name);
495 g_free(elem->value);
496 g_free(elem);
500 const gchar *
501 sipe_utils_nameval_find(const GSList *list, const gchar *name)
503 return sipe_utils_nameval_find_instance (list, name, 0);
506 const gchar *
507 sipe_utils_nameval_find_instance(const GSList *list, const gchar *name, int which)
509 const GSList *tmp;
510 struct sipnameval *elem;
511 int i = 0;
512 tmp = list;
513 while(tmp) {
514 elem = tmp->data;
515 // OCS2005 can send the same header in either all caps or mixed case
516 if (sipe_strcase_equal(elem->name, name)) {
517 if (i == which) {
518 return elem->value;
520 i++;
522 tmp = g_slist_next(tmp);
524 return NULL;
527 gchar *sipe_utils_str_replace(const gchar *string,
528 const gchar *delimiter,
529 const gchar *replacement)
531 gchar **split;
532 gchar *result;
534 if (!string || !delimiter || !replacement) return NULL;
536 split = g_strsplit(string, delimiter, 0);
537 result = g_strjoinv(replacement, split);
538 g_strfreev(split);
540 return result;
543 void sipe_utils_shrink_buffer(struct sipe_transport_connection *conn,
544 const gchar *unread)
546 conn->buffer_used -= unread - conn->buffer;
547 /* string terminator is not included in buffer_used */
548 memmove(conn->buffer, unread, conn->buffer_used + 1);
551 gboolean sipe_utils_ip_is_private(const char *ip)
553 return g_str_has_prefix(ip, "10.") ||
554 g_str_has_prefix(ip, "172.16.") ||
555 g_str_has_prefix(ip, "192.168.");
558 gchar *sipe_utils_presence_key(const gchar *uri)
560 return g_strdup_printf("<presence><%s>", uri);
563 gchar *
564 sipe_utils_uri_unescape(const gchar *string)
566 gchar *unescaped;
567 gchar *tmp;
569 if (!string)
570 return NULL;
572 #if GLIB_CHECK_VERSION(2,16,0)
573 unescaped = g_uri_unescape_string(string, NULL);
574 #else
575 // based on libpurple/util.c:purple_url_decode()
577 GString *buf = g_string_new(NULL);
578 size_t len = strlen(string);
579 char hex[3];
581 hex[2] = '\0';
583 while (len--) {
584 gchar c = *string++;
586 if ((len >= 2) && (c == '%')) {
587 strncpy(hex, string, 2);
588 c = strtol(hex, NULL, 16);
590 string += 2;
591 len -= 2;
594 g_string_append_c(buf, c);
597 unescaped = g_string_free(buf, FALSE);
599 #endif
600 if (unescaped && !g_utf8_validate(unescaped, -1, (const gchar **)&tmp))
601 *tmp = '\0';
603 return unescaped;
606 GSList *sipe_utils_slist_insert_unique_sorted(GSList *list,
607 gpointer data,
608 GCompareFunc func,
609 GDestroyNotify destroy)
611 if (g_slist_find_custom(list, data, func)) {
612 /* duplicate */
613 if (destroy)
614 (*destroy)(data);
615 return(list);
616 } else {
617 /* unique: list takes ownership of "data" */
618 return(g_slist_insert_sorted(list, data, func));
622 void sipe_utils_slist_free_full(GSList *list,
623 GDestroyNotify free)
625 #if GLIB_CHECK_VERSION(2,28,0)
626 g_slist_free_full(list, free);
627 #else
628 GSList *entry = list;
629 while (entry) {
630 (*free)(entry->data);
631 entry = entry->next;
633 g_slist_free(list);
634 #endif
638 Local Variables:
639 mode: c
640 c-file-style: "bsd"
641 indent-tabs-mode: t
642 tab-width: 8
643 End: