12941b349ecdc1bba0d13e8d62769fe37c941cc5
[trust_router.git] / common / tr_gss_names.c
1 /*
2  * Copyright (c) 2016, 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 <talloc.h>
36
37 #include <tr_gss_names.h>
38
39 static int tr_gss_names_destructor(void *obj)
40 {
41   TR_GSS_NAMES *gss_names=talloc_get_type_abort(obj, TR_GSS_NAMES);
42   int ii=0;
43
44   for (ii=0; ii<TR_MAX_GSS_NAMES; ii++) {
45     if (gss_names->names[ii]!=NULL)
46       tr_free_name(gss_names->names[ii]);
47   }
48   return 0;
49 }
50 TR_GSS_NAMES *tr_gss_names_new(TALLOC_CTX *mem_ctx)
51 {
52   TR_GSS_NAMES *gn=talloc(mem_ctx, TR_GSS_NAMES);
53   int ii=0;
54
55   if (gn!=NULL) {
56     for (ii=0; ii<TR_MAX_GSS_NAMES; ii++)
57       gn->names[ii]=NULL;
58     talloc_set_destructor((void *)gn, tr_gss_names_destructor);
59   }
60   return gn;
61 }
62
63 void tr_gss_names_free(TR_GSS_NAMES *gn)
64 {
65   talloc_free(gn);
66 }
67
68 /* returns 0 on success */
69 int tr_gss_names_add(TR_GSS_NAMES *gn, TR_NAME *new)
70 {
71   int ii=0;
72
73   for (ii=0; ii<TR_MAX_GSS_NAMES; ii++) {
74     if (gn->names[ii]==NULL)
75       break;
76   }
77   if (ii!=TR_MAX_GSS_NAMES) {
78     gn->names[ii]=new;
79     return 0;
80   } else
81     return -1;
82 }
83
84 int tr_gss_names_matches(TR_GSS_NAMES *gn, TR_NAME *name)
85 {
86   int ii=0;
87
88   if (!gn)
89     return 0;
90
91   for (ii=0; ii<TR_MAX_GSS_NAMES; ii++) {
92     if ((gn->names[ii]!=NULL) &&
93         (0==tr_name_cmp(gn->names[ii], name)))
94       return 1;
95   }
96   return 0;
97 }
98
99 /* iterators */
100 TR_GSS_NAMES_ITER *tr_gss_names_iter_new(TALLOC_CTX *mem_ctx)
101 {
102   TR_GSS_NAMES_ITER *iter=talloc(mem_ctx, TR_GSS_NAMES_ITER);
103   if (iter!=NULL) {
104     iter->gn=NULL;
105     iter->ii=0;
106   }
107   return iter;
108 }
109
110 TR_NAME *tr_gss_names_iter_first(TR_GSS_NAMES_ITER *iter, TR_GSS_NAMES *gn)
111 {
112   iter->gn=gn;
113   iter->ii=-1;
114   return tr_gss_names_iter_next(iter);
115 }
116
117 TR_NAME *tr_gss_names_iter_next(TR_GSS_NAMES_ITER *iter)
118 {
119   for (iter->ii++;
120        (iter->ii < TR_MAX_GSS_NAMES) && (iter->gn->names[iter->ii]==NULL);
121        iter->ii++) { }
122
123   if (iter->ii<TR_MAX_GSS_NAMES)
124     return iter->gn->names[iter->ii];
125   
126   return NULL;
127 }
128
129 void tr_gss_names_iter_free(TR_GSS_NAMES_ITER *iter)
130 {
131   talloc_free(iter);
132 }