Work with new hostname parsing and improve error reports
[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 #include <tr_inet_util.h>
43
44 static int tr_aaa_server_destructor(void *obj)
45 {
46   TR_AAA_SERVER *aaa=talloc_get_type_abort(obj, TR_AAA_SERVER);
47   if (aaa->hostname!=NULL)
48     tr_free_name(aaa->hostname);
49   return 0;
50 }
51
52 TR_AAA_SERVER *tr_aaa_server_new(TALLOC_CTX *mem_ctx)
53 {
54   TR_AAA_SERVER *aaa=talloc(mem_ctx, TR_AAA_SERVER);
55   if (aaa!=NULL) {
56     aaa->next=NULL;
57     aaa->hostname = NULL;
58     tr_aaa_server_set_port(aaa, 0); /* go through setter to guarantee consistent default */
59     talloc_set_destructor((void *)aaa, tr_aaa_server_destructor);
60   }
61   return aaa;
62 }
63
64 void tr_aaa_server_free(TR_AAA_SERVER *aaa)
65 {
66   talloc_free(aaa);
67 }
68
69 TR_NAME *tr_aaa_server_get_hostname(TR_AAA_SERVER *aaa)
70 {
71   return aaa->hostname;
72 }
73
74 /**
75  * Set the hostname for a AAA server
76  *
77  * Takes ownership of the TR_NAME. Does nothing if aaa is null.
78  *
79  * @param aaa
80  * @param hostname
81  */
82 void tr_aaa_server_set_hostname(TR_AAA_SERVER *aaa, TR_NAME *hostname)
83 {
84   if (aaa == NULL)
85     return;
86
87   if (aaa->hostname != NULL) {
88     tr_free_name(aaa->hostname);
89   }
90
91   aaa->hostname = hostname;
92 }
93
94 int tr_aaa_server_get_port(TR_AAA_SERVER *aaa)
95 {
96   return aaa->port;
97 }
98
99 /**
100  * Set the port for a AAA server
101  *
102  * If port is 0, uses the standard TID port (12309). Other invalid values are stored
103  * as-is.
104  *
105  * Does nothing if aaa is null.
106  *
107  * @param aaa
108  * @param port
109  */
110 void tr_aaa_server_set_port(TR_AAA_SERVER *aaa, int port)
111 {
112   if (aaa == NULL)
113     return;
114
115   if (port == 0)
116     port = TID_PORT;
117
118   aaa->port = port;
119 }
120
121 /**
122  * Allocate a AAA server record and fill it in by parsing a hostname:port string
123  *
124  * If hostname or port are invalid, hostname will be empty and port will be -1.
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   char *hostname;
133   int port;
134
135   if (aaa == NULL)
136     goto failed;
137
138   hostname = tr_parse_host(tmp_ctx, s, &port);
139   if (NULL == hostname) {
140     hostname = "";
141     port = -1;
142   }
143
144   tr_aaa_server_set_hostname(aaa, tr_new_name(hostname));
145   if (tr_aaa_server_get_hostname(aaa) == NULL)
146     goto failed;
147
148   tr_aaa_server_set_port(aaa, port); /* port = 0 uses default TID port */
149   talloc_steal(mem_ctx, aaa); /*put this in the caller's context */
150   goto succeeded;
151
152 failed:
153   aaa = NULL; /* talloc will free the memory if it was allocated */
154
155 succeeded:
156   talloc_free(tmp_ctx);
157   return aaa;
158 }
159
160 TR_AAA_SERVER_ITER *tr_aaa_server_iter_new(TALLOC_CTX *mem_ctx)
161 {
162   return talloc(mem_ctx, TR_AAA_SERVER_ITER);
163 }
164
165 void tr_aaa_server_iter_free(TR_AAA_SERVER_ITER *iter)
166 {
167   talloc_free(iter);
168 }
169
170 TR_AAA_SERVER *tr_aaa_server_iter_first(TR_AAA_SERVER_ITER *iter, TR_AAA_SERVER *aaa)
171 {
172   iter->this=aaa;
173   return iter->this;
174 }
175
176 TR_AAA_SERVER *tr_aaa_server_iter_next(TR_AAA_SERVER_ITER *iter)
177 {
178   if (iter->this!=NULL) {
179     iter->this=iter->this->next;
180   }
181   return iter->this;
182 }