Attempt to route TID requests using routing table. Unstable.
[trust_router.git] / common / tr_name.c
1 /*
2  * Copyright (c) 2012, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <stdlib.h>
36 #include <string.h>
37
38 #include <trust_router/tr_name.h>
39
40 void tr_free_name (TR_NAME *name)
41 {
42   if (name->buf) {
43     free (name->buf);
44     name->buf = NULL;
45   }
46   
47   free(name);
48 }
49
50 TR_NAME *tr_new_name (char *name) 
51 {
52   TR_NAME *new;
53
54   if (new = malloc(sizeof(TR_NAME))) { 
55     new->len = strlen(name);
56     if (new->buf = malloc((new->len)+1)) {
57       strcpy(new->buf, name);
58     } else {
59       free(new);
60       new=NULL;
61     }
62   }
63   return new;
64 }
65
66 TR_NAME *tr_dup_name (TR_NAME *from) 
67 {
68   TR_NAME *to;
69
70   if (!from) {
71     return NULL;
72   }
73
74   if (NULL != (to = malloc(sizeof(TR_NAME)))) {
75     to->len = from->len;
76     if (NULL != (to->buf = malloc(to->len+1))) {
77       strncpy(to->buf, from->buf, from->len);
78       to->buf[to->len] = 0;     /* NULL terminate for debugging printf()s */
79     }
80   }
81   return to;
82 }
83
84 int tr_name_cmp(TR_NAME *one, TR_NAME *two)
85 {
86   int len=one->len;
87   int cmp=0;
88
89   if (two->len<one->len)
90     len=two->len; /* len now min(one->len,two->len) */
91
92   cmp=strncmp(one->buf, two->buf, len);
93   if (cmp==0) {
94     if (one->len<two->len)
95       return -1;
96     else if (one->len==two->len)
97       return 0;
98     else
99       return 1;
100   }
101   return cmp;
102 }
103
104 void tr_name_strlcat(char *dest, const TR_NAME *src, size_t len)
105 {
106   size_t used_len;
107   if (src->len >= len)
108     used_len = len-1;
109   else used_len = src->len;
110   if (used_len > 0)
111     strncat(dest, src->buf, used_len);
112   else dest[0] = '\0';
113 }
114
115   
116 char * tr_name_strdup(TR_NAME *src)
117 {
118   char *s = calloc(src->len+1, 1);
119   if (s) {
120     memcpy(s, src->buf, src->len);
121     s[src->len] = '\0';
122   }
123   return s;
124 }
125