summaryrefslogtreecommitdiff
path: root/src/server_configuration_struct.c
blob: 7f88275dd42aa175aed3893c18d5961c3fd3e4ee (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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
/*
 * active port forwarder - software for secure forwarding
 * Copyright (C) 2003-2007 jeremian <jeremian [at] poczta.fm>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 */

#include <config.h>

#include <stdlib.h>
#include <string.h>
#include <assert.h>

#include "string_functions.h"
#include "server_configuration_struct.h"

/*
 * Function name: ServerConfiguration_new
 * Description: Create and initialize new ServerConfiguration structure.
 * Returns: Pointer to newly created ServerConfiguration structure.
 */

ServerConfiguration*
ServerConfiguration_new()
{
  ServerConfiguration* tmp = calloc(1, sizeof(ServerConfiguration));
  assert(tmp != NULL);
  if (tmp == NULL) {
    return NULL;
  }
  return tmp;
}

/*
 * Function name: ServerConfiguration_free
 * Description: Free the memory allocated for ServerConfiguration structure.
 * Arguments: sc - pointer to pointer to ServerConfiguration structure
 */

void
ServerConfiguration_free(ServerConfiguration** sc)
{
  int i;
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  assert((*sc) != NULL);
  if ((*sc) == NULL) {
    return;
  }
  if ((*sc)->certificateFile) {
    free((*sc)->certificateFile);
    (*sc)->certificateFile = NULL;
  }
  if ((*sc)->cacertificateFile) {
    free((*sc)->cacertificateFile);
    (*sc)->cacertificateFile = NULL;
  }
  if ((*sc)->cacertificatePath) {
    free((*sc)->cacertificatePath);
    (*sc)->cacertificatePath = NULL;
  }
  if ((*sc)->sCertificateDepth) {
    free((*sc)->sCertificateDepth);
    (*sc)->sCertificateDepth = NULL;
  }
  if ((*sc)->keysFile) {
    free((*sc)->keysFile);
    (*sc)->keysFile = NULL;
  }
  if ((*sc)->dateFormat) {
    free((*sc)->dateFormat);
    (*sc)->dateFormat = NULL;
  }
  if ((*sc)->realmsTable) {
    for (i = 0; i < (*sc)->realmsNumber; ++i) {
      if ((*sc)->realmsTable[i]) {
        ServerRealm_free(&((*sc)->realmsTable[i]));
      }
    }
    free((*sc)->realmsTable);
    (*sc)->realmsTable = NULL;
  }
  free((*sc));
  (*sc) = NULL;
}

/*
 * Function name: ServerConfiguration_set_certificateFile
 * Description: Set certificate filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            certificateFile - certificate filename
 */

void
ServerConfiguration_set_certificateFile(ServerConfiguration* sc, char* certificateFile)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  string_cp(&(sc->certificateFile), certificateFile);
}

/*
 * Function name: ServerConfiguration_set_cacertificateFile
 * Description: Set CA certificate filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            certificateFile - CA certificate filename
 */

void
ServerConfiguration_set_cacertificateFile(ServerConfiguration* sc, char* cacertificateFile)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  string_cp(&(sc->cacertificateFile), cacertificateFile);
}

/*
 * Function name: ServerConfiguration_set_cacertificatePath
 * Description: Set CA certificate filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            cacertificateFile - CA certificate path
 */

void
ServerConfiguration_set_cacertificatePath(ServerConfiguration* sc, char* cacertificatePath)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  string_cp(&(sc->cacertificatePath), cacertificatePath);
}

void
ServerConfiguration_set_sCertificateDepth(ServerConfiguration* sc, char* sCertificateDepth)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  string_cp(&(sc->sCertificateDepth), sCertificateDepth);
}
void
ServerConfiguration_set_certificateDepth(ServerConfiguration* sc, int certificateDepth)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  sc->certificateDepth = certificateDepth;
}

/*
 * Function name: ServerConfiguration_set_keysFile
 * Description: Set keys filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            keysFile - keys filename
 */

void
ServerConfiguration_set_keysFile(ServerConfiguration* sc, char* keysFile)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  string_cp(&(sc->keysFile), keysFile);
}

/*
 * Function name: ServerConfiguration_set_dateFormat
 * Description: Set format of the date string.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            dateFormat - format of the date string
 */

void
ServerConfiguration_set_dateFormat(ServerConfiguration* sc, char* dateFormat)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  string_cp(&(sc->dateFormat), dateFormat);
}

/*
 * Function name: ServerConfiguration_set_realmsNumber
 * Description: Set number of realms.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            realmsNumber - number of realms
 */

void
ServerConfiguration_set_realmsNumber(ServerConfiguration* sc, int realmsNumber)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  sc->realmsNumber = realmsNumber;
}

/*
 * Function name: ServerConfiguration_set_startTime
 * Description: Set start time of the server.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            startTime - start time of the server
 */

void
ServerConfiguration_set_startTime(ServerConfiguration* sc, time_t startTime)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  sc->startTime = startTime;
}

/*
 * Function name: ServerConfiguration_set_realmsTable
 * Description: Set table of realms.
 * Arguments: sc - pointer to ServerConfiguration structure
 *            realmsTable - table of realms
 */

void
ServerConfiguration_set_realmsTable(ServerConfiguration* sc, ServerRealm** realmsTable)
{
  int i;
  assert(sc != NULL);
  if (sc == NULL) {
    return;
  }
  if (sc->realmsTable) {
    for (i = 0; i < sc->realmsNumber; ++i) {
      if (sc->realmsTable[i]) {
        ServerRealm_free(&(sc->realmsTable[i]));
      }
    }
    free(sc->realmsTable);
    sc->realmsTable = NULL;
  }
  sc->realmsTable = realmsTable;
}

/*
 * Function name: ServerConfiguration_get_certificateFile
 * Description: Get certificate filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: Certificate filename.
 */

char*
ServerConfiguration_get_certificateFile(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->certificateFile;
}

/*
 * Function name: ServerConfiguration_get_cacertificateFile
 * Description: Get CA certificate filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: CA Certificate filename.
 */

char*
ServerConfiguration_get_cacertificateFile(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->cacertificateFile;
}

/*
 * Function name: ServerConfiguration_get_cacertificatePath
 * Description: Get CA certificate path
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: CA Certificate path.
 */

char*
ServerConfiguration_get_cacertificatePath(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->cacertificatePath;
}

char*
ServerConfiguration_get_sCertificateDepth(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->sCertificateDepth;
}

int
ServerConfiguration_get_certificateDepth(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return -1;
  }
  return sc->certificateDepth;
}

/*
 * Function name: ServerConfiguration_get_keysFile
 * Description: Get keys filename.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: Keys filename.
 */

char*
ServerConfiguration_get_keysFile(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->keysFile;
}

/*
 * Function name: ServerConfiguration_get_dateFormat
 * Description: Get format of the date string.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: Format of the date string.
 */

char*
ServerConfiguration_get_dateFormat(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->dateFormat;
}

/*
 * Function name: ServerConfiguration_get_realmsNumber
 * Description: Get number of realms.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: Number of realms.
 */

int
ServerConfiguration_get_realmsNumber(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return -1;
  }
  return sc->realmsNumber;
}

/*
 * Function name: ServerConfiguration_get_startTime
 * Description: Get start time of the server.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: Start time of the server.
 */

time_t
ServerConfiguration_get_startTime(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return 0;
  }
  return sc->startTime;
}

/*
 * Function name: ServerConfiguration_get_realmsTable
 * Description: Get table of realms.
 * Arguments: sc - pointer to ServerConfiguration structure
 * Returns: Table of realms.
 */

ServerRealm**
ServerConfiguration_get_realmsTable(ServerConfiguration* sc)
{
  assert(sc != NULL);
  if (sc == NULL) {
    return NULL;
  }
  return sc->realmsTable;
}