Factor out hostname parsing for reuse
[trust_router.git] / common / tr_aaa_server.c
1 /*
2  * Copyright (c) 2012-2018, 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
36 #include <talloc.h>
37
38 #include <tr_name_internal.h>
39 #include <tr_aaa_server.h>
40 #include <trust_router/tid.h>
41 #include <tr_util.h>
42
43 static int tr_aaa_server_destructor(void *obj)
44 {
45   TR_AAA_SERVER *aaa=talloc_get_type_abort(obj, TR_AAA_SERVER);
46   if (aaa->hostname!=NULL)
47     tr_free_name(aaa->hostname);
48   return 0;
49 }
50
51 TR_AAA_SERVER *tr_aaa_server_new(TALLOC_CTX *mem_ctx)
52 {
53   TR_AAA_SERVER *aaa=talloc(mem_ctx, TR_AAA_SERVER);
54   if (aaa!=NULL) {
55     aaa->next=NULL;
56     aaa->hostname = NULL;
57     tr_aaa_server_set_port(aaa, 0); /* go through setter to guarantee consistent default */
58     talloc_set_destructor((void *)aaa, tr_aaa_server_destructor);
59   }
60   return aaa;
61 }
62
63 void tr_aaa_server_free(TR_AAA_SERVER *aaa)
64 {
65   talloc_free(aaa);
66 }
67
68 TR_NAME *tr_aaa_server_get_hostname(TR_AAA_SERVER *aaa)
69 {
70   return aaa->hostname;
71 }
72
73 /**
74  * Set the hostname for a AAA server
75  *
76  * Takes ownership of the TR_NAME. Does nothing if aaa is null.
77  *
78  * @param aaa
79  * @param hostname
80  */
81 void tr_aaa_server_set_hostname(TR_AAA_SERVER *aaa, TR_NAME *hostname)
82 {
83   if (aaa == NULL)
84     return;
85
86   if (aaa->hostname != NULL) {
87     tr_free_name(aaa->hostname);
88   }
89
90   aaa->hostname = hostname;
91 }
92
93 int tr_aaa_server_get_port(TR_AAA_SERVER *aaa)
94 {
95   return aaa->port;
96 }
97
98 /**
99  * Set the port for a AAA server
100  *
101  * If port is 0, uses the standard TID port (12309). Other invalid values are stored
102  * as-is.
103  *
104  * Does nothing if aaa is null.
105  *
106  * @param aaa
107  * @param port
108  */
109 void tr_aaa_server_set_port(TR_AAA_SERVER *aaa, int port)
110 {
111   if (aaa == NULL)
112     return;
113
114   if (port == 0)
115     port = TID_PORT;
116
117   aaa->port = port;
118 }
119
120 /**
121  * Allocate a AAA server record and fill it in by parsing a hostname:port string
122  *
123  * Does not validate hostname or port values. The port will be -1 if the port
124  * could not be parsed properly.
125  *
126  * @return newly allocated TR_AAA_SERVER in the mem_ctx context, or NULL on error
127  */
128 TR_AAA_SERVER *tr_aaa_server_from_string(TALLOC_CTX *mem_ctx, const char *s)
129 {
130   TALLOC_CTX *tmp_ctx = talloc_new(NULL);
131   TR_AAA_SERVER *aaa = tr_aaa_server_new(tmp_ctx);
132
133   if (aaa == NULL)
134     goto failed;
135
136   tr_aaa_server_set_hostname(aaa, tr_parse_hostname(s));
137   if (tr_aaa_server_get_hostname(aaa) == NULL)
138     goto failed;
139
140   tr_aaa_server_set_port(aaa, tr_parse_port(s));
141   talloc_steal(mem_ctx, aaa); /*put this in the caller's context */
142   goto succeeded;
143
144 failed:
145   aaa = NULL; /* talloc will free the memory if it was allocated */
146
147 succeeded:
148   talloc_free(tmp_ctx);
149   return aaa;
150 }
151
152 TR_AAA_SERVER_ITER *tr_aaa_server_iter_new(TALLOC_CTX *mem_ctx)
153 {
154   return talloc(mem_ctx, TR_AAA_SERVER_ITER);
155 }
156
157 void tr_aaa_server_iter_free(TR_AAA_SERVER_ITER *iter)
158 {
159   talloc_free(iter);
160 }
161
162 TR_AAA_SERVER *tr_aaa_server_iter_first(TR_AAA_SERVER_ITER *iter, TR_AAA_SERVER *aaa)
163 {
164   iter->this=aaa;
165   return iter->this;
166 }
167
168 TR_AAA_SERVER *tr_aaa_server_iter_next(TR_AAA_SERVER_ITER *iter)
169 {
170   if (iter->this!=NULL) {
171     iter->this=iter->this->next;
172   }
173   return iter->this;
174 }