6 * Copyright (C) 2009-2012 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
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"
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
);
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
)
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 <...> */
77 tmp
= strchr(tmp2
, '>');
79 from
= g_strndup(tmp2
, tmp
- tmp2
);
81 SIPE_DEBUG_INFO_NOFORMAT("found < without > in From");
85 tmp
= strchr(tmp2
, ';');
87 from
= g_strndup(tmp2
, tmp
- tmp2
);
89 from
= g_strdup(tmp2
);
92 SIPE_DEBUG_INFO("got %s", 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 /* can't use g_uri_escape_string as it requires glib-2.0 >= 2.16.0 :-( */
107 gchar
*sip_uri_if_valid(const gchar
*string
)
109 /* strip possible sip: prefix */
110 const gchar
*s
= sipe_get_no_sip_uri(string
);
111 if (!s
) return(NULL
);
113 /* scan string for invalid URI characters */
126 /* name is valid for URI, convert it */
127 return(sip_uri(string
));
130 const gchar
*sipe_get_no_sip_uri(const gchar
*sip_uri
)
132 #define SIP_PREFIX "sip:"
134 if (!sip_uri
) return NULL
;
136 if (g_str_has_prefix(sip_uri
, SIP_PREFIX
)) {
137 return(sip_uri
+ strlen(SIP_PREFIX
));
144 get_epid(struct sipe_core_private
*sipe_private
)
146 if (!sipe_private
->epid
) {
147 gchar
*self_sip_uri
= sip_uri_self(sipe_private
);
148 sipe_private
->epid
= sipe_get_epid(self_sip_uri
,
150 sipe_backend_network_ip_address(SIPE_CORE_PUBLIC
));
151 g_free(self_sip_uri
);
153 return g_strdup(sipe_private
->epid
);
156 gchar
*get_uuid(struct sipe_core_private
*sipe_private
)
158 gchar
*epid
= get_epid(sipe_private
);
159 gchar
*uuid
= generateUUIDfromEPID(epid
);
166 sipe_get_pub_instance(struct sipe_core_private
*sipe_private
,
170 gchar
*epid
= get_epid(sipe_private
);
172 sscanf(epid
, "%08x", &res
);
175 if (publication_key
== SIPE_PUB_DEVICE
) {
177 } else if (publication_key
== SIPE_PUB_STATE_MACHINE
) { /* First hexadecimal digit is 0x3 */
178 res
= (res
>> 4) | 0x30000000;
179 } else if (publication_key
== SIPE_PUB_STATE_USER
) {
180 res
= 0x20000000; /* fixed */
181 } else if (publication_key
== SIPE_PUB_STATE_CALENDAR
) { /* First hexadecimal digit is 0x4 */
182 res
= (res
>> 4) | 0x40000000;
183 } else if (publication_key
== SIPE_PUB_STATE_CALENDAR_OOF
) { /* First hexadecimal digit is 0x5 */
184 res
= (res
>> 4) | 0x50000000;
185 } else if (publication_key
== SIPE_PUB_CALENDAR_DATA
||
186 publication_key
== SIPE_PUB_NOTE_OOF
)
187 { /* First hexadecimal digit is 0x4 */
188 unsigned calendar_id
= 0;
189 char *mail_hash
= sipe_get_epid(sipe_private
->email
, "", "");
191 sscanf(mail_hash
, "%08x", &calendar_id
);
193 res
= (calendar_id
>> 4) | 0x40000000;
194 } else if (publication_key
== SIPE_PUB_STATE_PHONE_VOIP
) { /* First hexadecimal digit is 0x8 */
195 res
= (res
>> 4) | 0x80000000;
202 sipe_is_bad_alias(const char *uri
,
206 gboolean result
= FALSE
;
208 if (!uri
) return FALSE
;
209 if (!alias
) return TRUE
;
211 if (g_str_has_prefix(alias
, "sip:") || g_str_has_prefix(alias
, "sips:")) return TRUE
;
213 /* check if alias is just SIP URI but without 'sip:' prefix */
214 uri_alias
= sip_uri_from_name(alias
);
215 if (sipe_strcase_equal(uri
, uri_alias
)) {
224 is_empty(const char *st
)
226 if (!st
|| strlen(st
) == 0)
230 /* suspecious leading or trailing staces */
231 else if (isspace((unsigned char) *st
) ||
232 isspace((unsigned char) *(st
+ strlen(st
) - 1)))
234 /* to not modify original string */
235 char *dup
= g_strdup(st
);
236 if (strlen(g_strstrip(dup
)) == 0) {
245 /** Returns newly allocated string. Must be g_free()'d */
247 replace(const char *st
,
254 if (!st
) return NULL
;
256 res
= g_strjoinv(replace
, tmp
= g_strsplit(st
, search
, -1));
261 void sipe_utils_message_debug(const gchar
*type
,
266 if (sipe_backend_debug_enabled()) {
267 GString
*str
= g_string_new("");
270 const char *marker
= sending
?
275 g_get_current_time(&currtime
);
276 time_str
= g_time_val_to_iso8601(&currtime
);
277 g_string_append_printf(str
, "\nMESSAGE START %s %s - %s\n", marker
, type
, time_str
);
278 g_string_append(str
, tmp
= replace(header
, "\r\n", "\n"));
280 g_string_append(str
, "\n");
282 g_string_append(str
, tmp
= replace(body
, "\r\n", "\n"));
284 g_string_append(str
, "\n");
286 g_string_append_printf(str
, "MESSAGE END %s %s - %s", marker
, type
, time_str
);
288 SIPE_DEBUG_INFO_NOFORMAT(str
->str
);
289 g_string_free(str
, TRUE
);
294 sipe_strequal(const gchar
*left
, const gchar
*right
)
296 #if GLIB_CHECK_VERSION(2,16,0)
297 return (g_strcmp0(left
, right
) == 0);
299 return ((left
== NULL
&& right
== NULL
) ||
300 (left
!= NULL
&& right
!= NULL
&& strcmp(left
, right
) == 0));
305 sipe_strcase_equal(const gchar
*left
, const gchar
*right
)
307 return ((left
== NULL
&& right
== NULL
) ||
308 (left
!= NULL
&& right
!= NULL
&& g_ascii_strcasecmp(left
, right
) == 0));
311 gint
sipe_strcompare(gconstpointer a
, gconstpointer b
)
313 #if GLIB_CHECK_VERSION(2,16,0)
314 return (g_strcmp0(a
, b
));
325 sipe_utils_str_to_time(const gchar
*timestamp
)
330 /* We have to make sure that the ISO8601 contains a time zone offset,
331 otherwise the time is interpreted as local time, not UTC!
332 @TODO: is there a better way to check this? */
333 if (timestamp
&& (len
= strlen(timestamp
) > 0) &&
334 isdigit(timestamp
[len
- 1])) {
335 gchar
*tmp
= g_strdup_printf("%sZ", timestamp
);
336 g_time_val_from_iso8601(tmp
, &time
);
339 g_time_val_from_iso8601(timestamp
, &time
);
345 sipe_utils_time_to_str(time_t timestamp
)
347 GTimeVal time
= { timestamp
, 0 };
348 return g_time_val_to_iso8601(&time
);
352 hex_str_to_buff(const char *hex_str
, guint8
**buff
)
359 if (!hex_str
) return 0;
361 length
= strlen(hex_str
)/2;
362 *buff
= (unsigned char *)g_malloc(length
);
363 for (i
= 0; i
< length
; i
++) {
364 two_digits
[0] = hex_str
[i
* 2];
365 two_digits
[1] = hex_str
[i
* 2 + 1];
366 two_digits
[2] = '\0';
367 (*buff
)[i
] = (unsigned char)strtoul(two_digits
, NULL
, 16);
374 buff_to_hex_str(const guint8
*buff
, const size_t buff_len
)
379 if (!buff
) return NULL
;
381 res
= g_malloc(buff_len
* 2 + 1);
382 for (i
= 0, j
= 0; i
< buff_len
; i
++, j
+=2) {
383 sprintf(&res
[j
], "%02X", buff
[i
]);
390 sipe_utils_parse_lines(GSList
**list
, gchar
**lines
, gchar
*delimiter
)
398 for(i
= 0; lines
[i
] && strlen(lines
[i
]) > 2; i
++) {
399 parts
= g_strsplit(lines
[i
], delimiter
, 2);
400 if(!parts
[0] || !parts
[1]) {
406 while(*dummy
==' ' || *dummy
=='\t') dummy
++;
407 dummy2
= g_strdup(dummy
);
408 while(lines
[i
+1] && (lines
[i
+1][0]==' ' || lines
[i
+1][0]=='\t')) {
411 while(*dummy
==' ' || *dummy
=='\t') dummy
++;
412 tmp
= g_strdup_printf("%s %s",dummy2
, dummy
);
416 *list
= sipe_utils_nameval_add(*list
, parts
[0], dummy2
);
425 sipe_utils_nameval_add(GSList
* list
, const gchar
*name
, const gchar
*value
)
427 struct sipnameval
*element
= g_new0(struct sipnameval
,1);
429 /* SANITY CHECK: the calling code must be fixed if this happens! */
431 SIPE_DEBUG_ERROR("sipe_utils_nameval_add: NULL value for %s",
436 element
->name
= g_strdup(name
);
437 element
->value
= g_strdup(value
);
438 return g_slist_append(list
, element
);
442 sipe_utils_nameval_free(GSList
*list
) {
443 struct sipnameval
*elem
;
446 list
= g_slist_remove(list
,elem
);
454 sipe_utils_nameval_find(const GSList
*list
, const gchar
*name
)
456 return sipe_utils_nameval_find_instance (list
, name
, 0);
460 sipe_utils_nameval_find_instance(const GSList
*list
, const gchar
*name
, int which
)
463 struct sipnameval
*elem
;
468 // OCS2005 can send the same header in either all caps or mixed case
469 if (sipe_strcase_equal(elem
->name
, name
)) {
475 tmp
= g_slist_next(tmp
);
480 gchar
*sipe_utils_str_replace(const gchar
*string
,
481 const gchar
*delimiter
,
482 const gchar
*replacement
)
487 if (!string
|| !delimiter
|| !replacement
) return NULL
;
489 split
= g_strsplit(string
, delimiter
, 0);
490 result
= g_strjoinv(replacement
, split
);
496 void sipe_utils_shrink_buffer(struct sipe_transport_connection
*conn
,
499 conn
->buffer_used
-= unread
- conn
->buffer
;
500 /* string terminator is not included in buffer_used */
501 memmove(conn
->buffer
, unread
, conn
->buffer_used
+ 1);
504 gboolean
sipe_utils_ip_is_private(const char *ip
)
506 return g_str_has_prefix(ip
, "10.") ||
507 g_str_has_prefix(ip
, "172.16.") ||
508 g_str_has_prefix(ip
, "192.168.");
511 gchar
*sipe_utils_presence_key(const gchar
*uri
)
513 return g_strdup_printf("<presence><%s>", uri
);
516 gchar
*sipe_utils_subscription_key(const gchar
*event
,
521 if (!is_empty(event
)) {
522 if (!g_ascii_strcasecmp(event
, "presence")) {
523 /* Subscription is identified by <presence><uri> key */
524 key
= sipe_utils_presence_key(uri
);
526 /* Subscription is identified by <event> key */
527 key
= g_strdup_printf("<%s>", event
);
535 sipe_utils_uri_unescape(const gchar
*string
)
543 #if GLIB_CHECK_VERSION(2,16,0)
544 unescaped
= g_uri_unescape_string(string
, NULL
);
546 // based on libpurple/util.c:purple_url_decode()
548 GString
*buf
= g_string_new(NULL
);
549 size_t len
= strlen(string
);
557 if ((len
>= 2) && (c
== '%')) {
558 strncpy(hex
, string
, 2);
559 c
= strtol(hex
, NULL
, 16);
565 g_string_append_c(buf
, c
);
568 unescaped
= g_string_free(buf
, FALSE
);
571 if (unescaped
&& !g_utf8_validate(unescaped
, -1, (const gchar
**)&tmp
))
578 * Only appends if no such value already stored.
582 slist_insert_unique_sorted(GSList
*list
, gpointer data
, GCompareFunc func
) {
584 if (!g_slist_find_custom(list
, data
, func
)) {
585 res
= g_slist_insert_sorted(list
, data
, func
);