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
|
/*
* Copyright (C) 2001 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
* GNUTLS 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.
*
* GNUTLS 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 <defines.h>
#include "gnutls_int.h"
#include "gnutls_errors.h"
#include "gnutls_auth.h"
/* The functions here are used in order for authentication algorithms
* to be able to retrieve the needed credentials eg public and private
* key etc.
*/
/* This clears the whole linked list */
int gnutls_clear_creds( GNUTLS_STATE state) {
AUTH_CRED * ccred, *ncred;
if (state->gnutls_key->cred!=NULL) { /* begining of the list */
ccred = state->gnutls_key->cred;
while(ccred!=NULL) {
ncred = ccred->next;
if (ccred!=NULL) gnutls_free(ccred);
ccred = ncred;
}
state->gnutls_key->cred = NULL;
}
return 0;
}
/*
* This creates a linked list of the form:
* { algorithm, credentials, pointer to next }
*/
int gnutls_set_kx_cred( GNUTLS_STATE state, int kx, void* cred) {
AUTH_CRED * ccred, *pcred;
int exists=0;
if (state->gnutls_key->cred==NULL) { /* begining of the list */
state->gnutls_key->cred = gnutls_malloc(sizeof(AUTH_CRED));
if (state->gnutls_key->cred == NULL) return GNUTLS_E_MEMORY_ERROR;
/* copy credentials localy */
state->gnutls_key->cred->credentials = cred;
state->gnutls_key->cred->next = NULL;
state->gnutls_key->cred->algorithm = kx;
} else {
ccred = state->gnutls_key->cred;
while(ccred!=NULL) {
if (ccred->algorithm==kx) {
exists=1;
break;
}
pcred = ccred;
ccred = ccred->next;
}
if (exists==0) { /* new entry */
pcred->next = gnutls_malloc(sizeof(AUTH_CRED));
if (pcred->next == NULL) return GNUTLS_E_MEMORY_ERROR;
ccred = pcred->next;
/* copy credentials localy */
ccred->credentials = cred;
ccred->next = NULL;
ccred->algorithm = kx;
} else { /* modify existing entry */
gnutls_free(ccred->credentials);
ccred->credentials = cred;
}
}
return 0;
}
/*
* This returns an pointer to the linked list. Don't
* free that!!!
*/
void *_gnutls_get_kx_cred( GNUTLS_KEY key, int kx, int *err) {
AUTH_CRED * ccred;
ccred = key->cred;
while(ccred!=NULL) {
if (ccred->algorithm==kx) {
break;
}
ccred = ccred->next;
}
if (ccred==NULL) {
if (err!=NULL) *err=-1;
return NULL;
}
if (err!=NULL) *err=0;
return ccred->credentials;
}
|