2 * Copyright (C) 2005-2012 Free Software Foundation, Inc.
4 * Author: Nikos Mavrogiannopoulos
6 * This file is part of GnuTLS.
8 * The GnuTLS is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>
23 /* Functions for manipulating the PSK credentials. */
25 #include <gnutls_int.h>
26 #include <gnutls_errors.h>
28 #include <gnutls_state.h>
32 #include <auth/psk_passwd.h>
33 #include <gnutls_num.h>
34 #include <gnutls_helper.h>
35 #include <gnutls_datum.h>
39 * gnutls_psk_free_client_credentials:
40 * @sc: is a #gnutls_psk_client_credentials_t structure.
42 * This structure is complex enough to manipulate directly thus this
43 * helper function is provided in order to free (deallocate) it.
46 gnutls_psk_free_client_credentials (gnutls_psk_client_credentials_t sc
)
48 _gnutls_free_datum (&sc
->username
);
49 _gnutls_free_datum (&sc
->key
);
54 * gnutls_psk_allocate_client_credentials:
55 * @sc: is a pointer to a #gnutls_psk_server_credentials_t structure.
57 * This structure is complex enough to manipulate directly thus this
58 * helper function is provided in order to allocate it.
60 * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
61 * an error code is returned.
64 gnutls_psk_allocate_client_credentials (gnutls_psk_client_credentials_t
* sc
)
66 *sc
= gnutls_calloc (1, sizeof (psk_client_credentials_st
));
69 return GNUTLS_E_MEMORY_ERROR
;
75 * gnutls_psk_set_client_credentials:
76 * @res: is a #gnutls_psk_client_credentials_t structure.
77 * @username: is the user's zero-terminated userid
78 * @key: is the user's key
79 * @flags: indicate the format of the key, either
80 * %GNUTLS_PSK_KEY_RAW or %GNUTLS_PSK_KEY_HEX.
82 * This function sets the username and password, in a
83 * gnutls_psk_client_credentials_t structure. Those will be used in
84 * PSK authentication. @username should be an ASCII string or UTF-8
85 * strings prepared using the "SASLprep" profile of "stringprep". The
86 * key can be either in raw byte format or in Hex format (without the
89 * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
90 * an error code is returned.
93 gnutls_psk_set_client_credentials (gnutls_psk_client_credentials_t res
,
95 const gnutls_datum_t
* key
,
96 gnutls_psk_key_flags flags
)
100 if (username
== NULL
|| key
== NULL
|| key
->data
== NULL
)
103 return GNUTLS_E_INVALID_REQUEST
;
106 ret
= _gnutls_set_datum (&res
->username
, username
, strlen (username
));
110 if (flags
== GNUTLS_PSK_KEY_RAW
)
112 if (_gnutls_set_datum (&res
->key
, key
->data
, key
->size
) < 0)
115 ret
= GNUTLS_E_MEMORY_ERROR
;
122 size
= res
->key
.size
= key
->size
/ 2;
123 res
->key
.data
= gnutls_malloc (size
);
124 if (res
->key
.data
== NULL
)
127 ret
= GNUTLS_E_MEMORY_ERROR
;
131 ret
= gnutls_hex_decode (key
, (char *) res
->key
.data
, &size
);
132 res
->key
.size
= (unsigned int) size
;
144 _gnutls_free_datum (&res
->username
);
150 * gnutls_psk_free_server_credentials:
151 * @sc: is a #gnutls_psk_server_credentials_t structure.
153 * This structure is complex enough to manipulate directly thus this
154 * helper function is provided in order to free (deallocate) it.
157 gnutls_psk_free_server_credentials (gnutls_psk_server_credentials_t sc
)
159 gnutls_free (sc
->password_file
);
164 * gnutls_psk_allocate_server_credentials:
165 * @sc: is a pointer to a #gnutls_psk_server_credentials_t structure.
167 * This structure is complex enough to manipulate directly thus this
168 * helper function is provided in order to allocate it.
170 * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
171 * an error code is returned.
174 gnutls_psk_allocate_server_credentials (gnutls_psk_server_credentials_t
* sc
)
176 *sc
= gnutls_calloc (1, sizeof (psk_server_cred_st
));
179 return GNUTLS_E_MEMORY_ERROR
;
186 * gnutls_psk_set_server_credentials_file:
187 * @res: is a #gnutls_psk_server_credentials_t structure.
188 * @password_file: is the PSK password file (passwd.psk)
190 * This function sets the password file, in a
191 * #gnutls_psk_server_credentials_t structure. This password file
192 * holds usernames and keys and will be used for PSK authentication.
194 * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
195 * an error code is returned.
198 gnutls_psk_set_server_credentials_file (gnutls_psk_server_credentials_t
199 res
, const char *password_file
)
202 if (password_file
== NULL
)
205 return GNUTLS_E_INVALID_REQUEST
;
208 /* Check if the files can be opened */
209 if (_gnutls_file_exists (password_file
) != 0)
212 return GNUTLS_E_FILE_ERROR
;
215 res
->password_file
= gnutls_strdup (password_file
);
216 if (res
->password_file
== NULL
)
219 return GNUTLS_E_MEMORY_ERROR
;
226 * gnutls_psk_set_server_credentials_hint:
227 * @res: is a #gnutls_psk_server_credentials_t structure.
228 * @hint: is the PSK identity hint string
230 * This function sets the identity hint, in a
231 * #gnutls_psk_server_credentials_t structure. This hint is sent to
232 * the client to help it chose a good PSK credential (i.e., username
235 * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
236 * an error code is returned.
241 gnutls_psk_set_server_credentials_hint (gnutls_psk_server_credentials_t res
,
244 res
->hint
= gnutls_strdup (hint
);
245 if (res
->hint
== NULL
)
248 return GNUTLS_E_MEMORY_ERROR
;
255 * gnutls_psk_set_server_credentials_function:
256 * @cred: is a #gnutls_psk_server_credentials_t structure.
257 * @func: is the callback function
259 * This function can be used to set a callback to retrieve the user's PSK credentials.
260 * The callback's function form is:
261 * int (*callback)(gnutls_session_t, const char* username,
262 * gnutls_datum_t* key);
264 * @username contains the actual username.
265 * The @key must be filled in using the gnutls_malloc().
267 * In case the callback returned a negative number then gnutls will
268 * assume that the username does not exist.
270 * The callback function will only be called once per handshake. The
271 * callback function should return 0 on success, while -1 indicates
275 gnutls_psk_set_server_credentials_function (gnutls_psk_server_credentials_t
277 gnutls_psk_server_credentials_function
280 cred
->pwd_callback
= func
;
284 * gnutls_psk_set_client_credentials_function:
285 * @cred: is a #gnutls_psk_server_credentials_t structure.
286 * @func: is the callback function
288 * This function can be used to set a callback to retrieve the username and
289 * password for client PSK authentication.
290 * The callback's function form is:
291 * int (*callback)(gnutls_session_t, char** username,
292 * gnutls_datum_t* key);
294 * The @username and @key->data must be allocated using gnutls_malloc().
295 * @username should be ASCII strings or UTF-8 strings prepared using
296 * the "SASLprep" profile of "stringprep".
298 * The callback function will be called once per handshake.
300 * The callback function should return 0 on success.
301 * -1 indicates an error.
304 gnutls_psk_set_client_credentials_function (gnutls_psk_client_credentials_t
306 gnutls_psk_client_credentials_function
309 cred
->get_function
= func
;
314 * gnutls_psk_server_get_username:
315 * @session: is a gnutls session
317 * This should only be called in case of PSK authentication and in
320 * Returns: the username of the peer, or %NULL in case of an error.
323 gnutls_psk_server_get_username (gnutls_session_t session
)
325 psk_auth_info_t info
;
327 CHECK_AUTH (GNUTLS_CRD_PSK
, NULL
);
329 info
= _gnutls_get_auth_info (session
);
333 if (info
->username
[0] != 0)
334 return info
->username
;
340 * gnutls_psk_client_get_hint:
341 * @session: is a gnutls session
343 * The PSK identity hint may give the client help in deciding which
344 * username to use. This should only be called in case of PSK
345 * authentication and in case of a client.
347 * Returns: the identity hint of the peer, or %NULL in case of an error.
352 gnutls_psk_client_get_hint (gnutls_session_t session
)
354 psk_auth_info_t info
;
356 CHECK_AUTH (GNUTLS_CRD_PSK
, NULL
);
358 info
= _gnutls_get_auth_info (session
);
362 if (info
->hint
[0] != 0)
370 * @hex_data: contain the encoded data
371 * @result: the place where decoded data will be copied
372 * @result_size: holds the size of the result
374 * This function will decode the given encoded data, using the hex
375 * encoding used by PSK password files.
377 * Note that hex_data should be null terminated.
379 * Returns: %GNUTLS_E_SHORT_MEMORY_BUFFER if the buffer given is not
380 * long enough, or 0 on success.
383 gnutls_hex_decode (const gnutls_datum_t
* hex_data
, void *result
,
384 size_t * result_size
)
389 _gnutls_hex2bin ((char*)hex_data
->data
, hex_data
->size
, (uint8_t *) result
,
399 * @data: contain the raw data
400 * @result: the place where hex data will be copied
401 * @result_size: holds the size of the result
403 * This function will convert the given data to printable data, using
404 * the hex encoding, as used in the PSK password files.
406 * Returns: %GNUTLS_E_SHORT_MEMORY_BUFFER if the buffer given is not
407 * long enough, or 0 on success.
410 gnutls_hex_encode (const gnutls_datum_t
* data
, char *result
,
411 size_t * result_size
)
413 size_t res
= data
->size
+ data
->size
+ 1;
415 if (*result_size
< res
)
418 return GNUTLS_E_SHORT_MEMORY_BUFFER
;
421 _gnutls_bin2hex (data
->data
, data
->size
, result
, *result_size
, NULL
);
428 * gnutls_psk_set_server_dh_params:
429 * @res: is a gnutls_psk_server_credentials_t structure
430 * @dh_params: is a structure that holds Diffie-Hellman parameters.
432 * This function will set the Diffie-Hellman parameters for an
433 * anonymous server to use. These parameters will be used in
434 * Diffie-Hellman exchange with PSK cipher suites.
437 gnutls_psk_set_server_dh_params (gnutls_psk_server_credentials_t res
,
438 gnutls_dh_params_t dh_params
)
440 res
->dh_params
= dh_params
;
444 * gnutls_psk_set_server_params_function:
445 * @res: is a #gnutls_certificate_credentials_t structure
446 * @func: is the function to be called
448 * This function will set a callback in order for the server to get
449 * the Diffie-Hellman parameters for PSK authentication. The callback
450 * should return %GNUTLS_E_SUCCESS (0) on success.
453 gnutls_psk_set_server_params_function (gnutls_psk_server_credentials_t res
,
454 gnutls_params_function
* func
)
456 res
->params_func
= func
;
459 #endif /* ENABLE_PSK */