123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- * TLS module
- *
- * Copyright (C) 2005 iptelorg GmbH
- * Copyright (C) 2013 Motorola Solutions, Inc.
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- /*!
- * \file
- * \brief Kamailio TLS support :: Common functions
- * \ingroup tls
- * Module: \ref tls
- */
- #define _GNU_SOURCE 1 /* Needed for strndup */
- #include <string.h>
- #include <libgen.h>
- #include "../../mem/shm_mem.h"
- #include "../../globals.h"
- #include "../../dprint.h"
- #include "tls_mod.h"
- #include "tls_util.h"
- /*
- * Make a shared memory copy of ASCII zero terminated string
- * Return value: -1 on error
- * 0 on success
- */
- int shm_asciiz_dup(char** dest, char* val)
- {
- char* ret;
- int len;
- if (!val) {
- *dest = NULL;
- return 0;
- }
- len = strlen(val);
- ret = shm_malloc(len + 1);
- if (!ret) {
- ERR("No memory left\n");
- return -1;
- }
- memcpy(ret, val, len + 1);
- *dest = ret;
- return 0;
- }
- /*
- * Delete old TLS configuration that is not needed anymore
- */
- void collect_garbage(void)
- {
- tls_domains_cfg_t *prev, *cur, *next;
- /* Make sure we do not run two garbage collectors
- * at the same time
- */
- lock_get(tls_domains_cfg_lock);
- /* Skip the current configuration, garbage starts
- * with the 2nd element on the list
- */
- prev = *tls_domains_cfg;
- cur = (*tls_domains_cfg)->next;
- while(cur) {
- next = cur->next;
- if (atomic_get(&cur->ref_count) == 0) {
- /* Not referenced by any existing connection */
- prev->next = cur->next;
- tls_free_cfg(cur);
- } else {
- /* Only update prev if we didn't remove cur */
- prev = cur;
- }
- cur = next;
- }
- lock_release(tls_domains_cfg_lock);
- }
|