Move AAA server methods out of tr_idp.[ch] into their own files
[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
42 static int tr_aaa_server_destructor(void *obj)
43 {
44   TR_AAA_SERVER *aaa=talloc_get_type_abort(obj, TR_AAA_SERVER);
45   if (aaa->hostname!=NULL)
46     tr_free_name(aaa->hostname);
47   return 0;
48 }
49
50 TR_AAA_SERVER *tr_aaa_server_new(TALLOC_CTX *mem_ctx, TR_NAME *hostname)
51 {
52   TR_AAA_SERVER *aaa=talloc(mem_ctx, TR_AAA_SERVER);
53   if (aaa!=NULL) {
54     aaa->next=NULL;
55     aaa->hostname=hostname;
56     talloc_set_destructor((void *)aaa, tr_aaa_server_destructor);
57   }
58   return aaa;
59 }
60
61 void tr_aaa_server_free(TR_AAA_SERVER *aaa)
62 {
63   talloc_free(aaa);
64 }
65
66 TR_AAA_SERVER_ITER *tr_aaa_server_iter_new(TALLOC_CTX *mem_ctx)
67 {
68   return talloc(mem_ctx, TR_AAA_SERVER_ITER);
69 }
70
71 void tr_aaa_server_iter_free(TR_AAA_SERVER_ITER *iter)
72 {
73   talloc_free(iter);
74 }
75
76 TR_AAA_SERVER *tr_aaa_server_iter_first(TR_AAA_SERVER_ITER *iter, TR_AAA_SERVER *aaa)
77 {
78   iter->this=aaa;
79   return iter->this;
80 }
81
82 TR_AAA_SERVER *tr_aaa_server_iter_next(TR_AAA_SERVER_ITER *iter)
83 {
84   if (iter->this!=NULL) {
85     iter->this=iter->this->next;
86   }
87   return iter->this;
88 }
89
90 TR_NAME *tr_aaa_server_get_hostname(TR_AAA_SERVER *aaa)
91 {
92   return aaa->hostname;
93 }
94
95 /**
96  * Set the hostname for a AAA server
97  *
98  * Takes ownership of the TR_NAME. Does nothing if aaa is null.
99  *
100  * @param aaa
101  * @param hostname
102  */
103 void tr_aaa_server_set_hostname(TR_AAA_SERVER *aaa, TR_NAME *hostname)
104 {
105   if (aaa == NULL)
106     return;
107
108   if (aaa->hostname != NULL) {
109     tr_free_name(aaa->hostname);
110   }
111
112   aaa->hostname = hostname;
113 }
114
115 int tr_aaa_server_get_port(TR_AAA_SERVER *aaa)
116 {
117   return aaa->port;
118 }
119
120 /**
121  * Set the port for a AAA server
122  *
123  * If port is outside the range 1-65535, uses the standard TID port (12309).
124  * Does nothing if aaa is null.
125  *
126  * @param aaa
127  * @param port
128  */
129 void tr_aaa_server_set_port(TR_AAA_SERVER *aaa, int port)
130 {
131   if (aaa == NULL)
132     return;
133
134   if ((port <= 0) || (port > 65535))
135     port = TID_PORT;
136
137   aaa->port = port;
138 }
139
140