aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_list.c
blob: 940281378bd184d6d3052ec74671f474485c231b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/* plugins/kdb/ldap/ldap_util/kdb5_ldap_list.c */
/* Copyright (c) 2004-2005, Novell, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   * Redistributions of source code must retain the above copyright notice,
 *       this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *   * The copyright holder's name is not used to endorse or promote products
 *       derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

/*
 * Miscellaneous functions for managing the string and integer lists
 */

#include <k5-int.h>
#include "kdb5_ldap_list.h"

/*
 * Counts the number of entries in the given array of strings
 */
int
list_count_str_array(char **list)
{
    int i = 0;

    if (list == NULL)
        return 0;

    for (i = 0; *list != NULL; list++) {
        i++;
    }

    return i;
}


/*
 * Counts the number of entries in the given array of integers
 */
int
list_count_int_array(int *list)
{
    int i = 0;

    if (list == NULL)
        return 0;

    for (i = 0; *list != END_OF_LIST; list++) {
        i++;
    }

    return i;
}


/*
 * Frees the entries in a given list and not the list pointer
 */
void
krb5_free_list_entries(char **list)
{
    if (list == NULL)
        return;
    for (; *list != NULL; list++) {
        free(*list);
        *list = NULL;
    }

    return;
}


/*
 * Tokenize the given string based on the delimiter provided
 * and return the result as a list
 */
krb5_error_code
krb5_parse_list(char *buffer, char *delimiter, char **list)
{
    char *str = NULL;
    char *token = NULL;
    char *ptrptr = NULL;
    char **plist = list;
    krb5_error_code retval = 0;
    int count = 0;

    if ((buffer == NULL) || (list == NULL) || (delimiter == NULL)) {
        return EINVAL;
    }

    str = strdup(buffer);
    if (str == NULL)
        return ENOMEM;

    token = strtok_r(str, delimiter, &ptrptr);
    for (count = 1; ((token != NULL) && (count < MAX_LIST_ENTRIES));
         plist++, count++) {
        *plist = strdup(token);
        if (*plist == NULL) {
            retval = ENOMEM;
            goto cleanup;
        }
        token = strtok_r(NULL, delimiter, &ptrptr);
    }
    *plist = NULL;

cleanup:
    if (str) {
        free(str);
        str = NULL;
    }
    if (retval)
        krb5_free_list_entries(list);

    return retval;
}


int
compare_int(const void *m1, const void *m2)
{
    int mi1 = *(const int *)m1;
    int mi2 = *(const int *)m2;

    return (mi1 - mi2);
}


/*
 * Modifies the destination list to contain or not to contain the
 * entries present in the source list, depending on the mode
 * (ADD or DELETE).
 */
void
list_modify_str_array(char ***destlist, const char **sourcelist, int mode)
{
    char **dlist = NULL, **tmplist = NULL;
    const char **slist = NULL;
    int dcount = 0, scount = 0, copycount = 0;

    if ((destlist == NULL) || (*destlist == NULL) || (sourcelist == NULL))
        return;

    /* We need to add every entry present in the source list to
     * the destination list */
    if (mode == LIST_MODE_ADD) {
        /* Traverse throught the end of destlist for appending */
        for (dlist = *destlist, dcount = 0; *dlist != NULL;
             dlist++, dcount++) {
            ;   /* NULL statement */
        }
        /* Count the number of entries in the source list */
        for (slist = sourcelist, scount = 0; *slist != NULL;
             slist++, scount++) {
            ;   /* NULL statement */
        }
        /* Reset the slist pointer to the start of source list */
        slist = sourcelist;

        /* Now append the source list to the existing destlist */
        if ((dcount + scount) < MAX_LIST_ENTRIES)
            copycount = scount;
        else
            /* Leave the last entry for list terminator(=NULL) */
            copycount = (MAX_LIST_ENTRIES -1) - dcount;

        memcpy(dlist, slist, (sizeof(char *) * copycount));
        dlist += copycount;
        *dlist = NULL;
    } else if (mode == LIST_MODE_DELETE) {
        /* We need to delete every entry present in the source list
         * from the destination list */
        for (slist = sourcelist; *slist != NULL; slist++) {
            for (dlist = *destlist; *dlist != NULL; dlist++) {
                /* DN is case insensitive string */
                if (strcasecmp(*dlist, *slist) == 0) {
                    free(*dlist);
                    /* Advance the rest of the entries by one */
                    for (tmplist = dlist; *tmplist != NULL; tmplist++) {
                        *tmplist = *(tmplist+1);
                    }
                    break;
                }
            }
        }
    }

    return;
}


/*
 * Modifies the destination list to contain or not to contain the
 * entries present in the source list, depending on the mode
 * (ADD or DELETE). where the list is array of integers.
 */
int
list_modify_int_array(int *destlist, const int *sourcelist, int mode)
{
    int *dlist = NULL, *tmplist = NULL;
    const int *slist = NULL;
    int dcount = 0, scount = 0, copycount = 0;
    int tcount = 0;

    if ((destlist == NULL) || (sourcelist == NULL))
        return 0;

    /* We need to add every entry present in the source list to the
     * destination list */
    if (mode == LIST_MODE_ADD) {
        /* Traverse throught the end of destlist for appending */
        for (dlist = destlist, dcount = 0; *dlist != END_OF_LIST;
             dlist++, dcount++)
            ;   /* NULL statement */

        /* Count the number of entries in the source list */
        for (slist = sourcelist, scount = 0; *slist != END_OF_LIST;
             slist++, scount++)
            ;   /* NULL statement */

        /* Reset the slist pointer to the start of source list */
        slist = sourcelist;

        /* Now append the source list to the existing destlist */
        if ((dcount + scount) < MAX_LIST_ENTRIES)
            copycount = scount;
        else
            /* Leave the last entry for list terminator(=NULL) */
            copycount = (MAX_LIST_ENTRIES -1) - dcount;

        memcpy(dlist, slist, (sizeof(int) * copycount));
        dlist += copycount;
        *dlist = END_OF_LIST;
        tcount = dcount + copycount;
    } else if (mode == LIST_MODE_DELETE) {
        /* We need to delete every entry present in the source list from
         * the destination list */
        for (slist = sourcelist; *slist != END_OF_LIST; slist++) {
            for (dlist = destlist; *dlist != END_OF_LIST; dlist++) {
                if (*dlist == *slist) {
                    /* Advance the rest of the entries by one */
                    for (tmplist = dlist; *tmplist != END_OF_LIST; tmplist++) {
                        *tmplist = *(tmplist+1);
                    }
                    break;
                }
            }
        }
        /* count the number of entries */
        for (dlist = destlist, tcount = 0; *dlist != END_OF_LIST; dlist++) {
            tcount++;
        }
    }

    return tcount;
}