summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2012-10-20 03:07:27 -0400
committerSimo Sorce <simo@redhat.com>2013-01-10 12:24:59 -0500
commit918b2a5a91f1c551d48f4bffed2a28c36fdb4be1 (patch)
tree090b1dfb4b592a5187e986c08f5645feef88c51c /src/util
parentc63415eabb1dc595c60760fb1df7fa7cfd1d3200 (diff)
downloadsssd-918b2a5a91f1c551d48f4bffed2a28c36fdb4be1.tar.gz
sssd-918b2a5a91f1c551d48f4bffed2a28c36fdb4be1.tar.xz
sssd-918b2a5a91f1c551d48f4bffed2a28c36fdb4be1.zip
Add authtok utility functions.
These functions allow handling of auth tokens in a completely opaque way, with clear semantics and accessor fucntions that guarantee consistency, proper access to data and error conditions.
Diffstat (limited to 'src/util')
-rw-r--r--src/util/authtok.c202
-rw-r--r--src/util/authtok.h180
2 files changed, 382 insertions, 0 deletions
diff --git a/src/util/authtok.c b/src/util/authtok.c
new file mode 100644
index 000000000..684b07622
--- /dev/null
+++ b/src/util/authtok.c
@@ -0,0 +1,202 @@
+/*
+ SSSD - auth utils
+
+ Copyright (C) Simo Sorce <simo@redhat.com> 2012
+
+ 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 3 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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "authtok.h"
+
+enum sss_authtok_type sss_authtok_get_type(struct sss_auth_token *tok)
+{
+ return tok->type;
+}
+
+size_t sss_authtok_get_size(struct sss_auth_token *tok)
+{
+ switch (tok->type) {
+ case SSS_AUTHTOK_TYPE_PASSWORD:
+ case SSS_AUTHTOK_TYPE_CCFILE:
+ return tok->length;
+ case SSS_AUTHTOK_TYPE_EMPTY:
+ return 0;
+ }
+
+ return EINVAL;
+}
+
+uint8_t *sss_authtok_get_data(struct sss_auth_token *tok)
+{
+ return tok->data;
+}
+
+errno_t sss_authtok_get_password(struct sss_auth_token *tok,
+ const char **pwd, size_t *len)
+{
+ switch (tok->type) {
+ case SSS_AUTHTOK_TYPE_EMPTY:
+ return ENOENT;
+ case SSS_AUTHTOK_TYPE_PASSWORD:
+ *pwd = (const char *)tok->data;
+ if (len) {
+ *len = tok->length - 1;
+ }
+ return EOK;
+ case SSS_AUTHTOK_TYPE_CCFILE:
+ return EACCES;
+ }
+
+ return EINVAL;
+}
+
+errno_t sss_authtok_get_ccfile(struct sss_auth_token *tok,
+ const char **ccfile, size_t *len)
+{
+ switch (tok->type) {
+ case SSS_AUTHTOK_TYPE_EMPTY:
+ return ENOENT;
+ case SSS_AUTHTOK_TYPE_CCFILE:
+ *ccfile = (const char *)tok->data;
+ if (len) {
+ *len = tok->length - 1;
+ }
+ return EOK;
+ case SSS_AUTHTOK_TYPE_PASSWORD:
+ return EACCES;
+ }
+
+ return EINVAL;
+}
+
+static errno_t sss_authtok_set_string(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ enum sss_authtok_type type,
+ const char *context_name,
+ const char *str, size_t len)
+{
+ size_t size;
+
+ if (len == 0) {
+ len = strlen(str);
+ } else {
+ while (len > 0 && str[len - 1] == '\0') len--;
+ }
+
+ if (len == 0) {
+ /* we do not allow zero length typed tokens */
+ return EINVAL;
+ }
+
+ size = len + 1;
+
+ tok->data = talloc_named(mem_ctx, size, context_name);
+ if (!tok->data) {
+ return ENOMEM;
+ }
+ memcpy(tok->data, str, len);
+ tok->data[len] = '\0';
+ tok->type = type;
+ tok->length = size;
+
+ return EOK;
+
+}
+
+void sss_authtok_set_empty(struct sss_auth_token *tok)
+{
+ switch (tok->type) {
+ case SSS_AUTHTOK_TYPE_EMPTY:
+ return;
+ case SSS_AUTHTOK_TYPE_PASSWORD:
+ safezero(tok->data, tok->length);
+ break;
+ case SSS_AUTHTOK_TYPE_CCFILE:
+ break;
+ }
+
+ tok->type = SSS_AUTHTOK_TYPE_EMPTY;
+ talloc_zfree(tok->data);
+ tok->length = 0;
+}
+
+errno_t sss_authtok_set_password(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ const char *password, size_t len)
+{
+ sss_authtok_set_empty(tok);
+
+ return sss_authtok_set_string(mem_ctx, tok,
+ SSS_AUTHTOK_TYPE_PASSWORD,
+ "password", password, len);
+}
+
+errno_t sss_authtok_set_ccfile(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ const char *ccfile, size_t len)
+{
+ sss_authtok_set_empty(tok);
+
+ return sss_authtok_set_string(mem_ctx, tok,
+ SSS_AUTHTOK_TYPE_CCFILE,
+ "ccfile", ccfile, len);
+}
+
+errno_t sss_authtok_set(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ enum sss_authtok_type type,
+ uint8_t *data, size_t len)
+{
+ switch (type) {
+ case SSS_AUTHTOK_TYPE_PASSWORD:
+ return sss_authtok_set_password(mem_ctx, tok, (const char *)data, len);
+ case SSS_AUTHTOK_TYPE_CCFILE:
+ return sss_authtok_set_ccfile(mem_ctx, tok, (const char *)data, len);
+ case SSS_AUTHTOK_TYPE_EMPTY:
+ sss_authtok_set_empty(tok);
+ return EOK;
+ }
+
+ return EINVAL;
+}
+
+errno_t sss_authtok_copy(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *src,
+ struct sss_auth_token *dst)
+{
+ sss_authtok_set_empty(dst);
+
+ if (src->type == SSS_AUTHTOK_TYPE_EMPTY) {
+ return EOK;
+ }
+
+ dst->data = talloc_memdup(mem_ctx, src->data, src->length);
+ if (!dst->data) {
+ return ENOMEM;
+ }
+ dst->length = src->length;
+ dst->type = src->type;
+
+ return EOK;
+}
+
+void sss_authtok_wipe_password(struct sss_auth_token *tok)
+{
+ if (tok->type != SSS_AUTHTOK_TYPE_PASSWORD) {
+ return;
+ }
+
+ safezero(tok->data, tok->length);
+}
+
diff --git a/src/util/authtok.h b/src/util/authtok.h
new file mode 100644
index 000000000..21cfe4a1c
--- /dev/null
+++ b/src/util/authtok.h
@@ -0,0 +1,180 @@
+/*
+ SSSD - auth utils
+
+ Copyright (C) Simo Sorce <simo@redhat.com> 2012
+
+ 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 3 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, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __AUTHTOK_H__
+#define __AUTHTOK_H__
+
+#include "util/util.h"
+#include "sss_client/sss_cli.h"
+
+/* Auth token structure,
+ * please never use directly.
+ * Use sss_authtok_* accesor functions instead
+ */
+struct sss_auth_token {
+ enum sss_authtok_type type;
+ uint8_t *data;
+ size_t length;
+};
+
+/**
+ * @brief Returns the token type
+ *
+ * @param tok A pointer to an sss_auth_token
+ *
+ * @return A sss_authtok_type (empty, password, ...)
+ */
+enum sss_authtok_type sss_authtok_get_type(struct sss_auth_token *tok);
+
+/**
+ * @brief Returns the token size
+ *
+ * @param tok A pointer to an sss_auth_token
+ *
+ * @return The current size of the token payload
+ */
+size_t sss_authtok_get_size(struct sss_auth_token *tok);
+
+/**
+ * @brief Get the data buffer
+ *
+ * @param tok A pointer to an sss_auth_token
+ *
+ * @return A pointer to the token payload
+ */
+uint8_t *sss_authtok_get_data(struct sss_auth_token *tok);
+
+/**
+ * @brief Returns a const string if the auth token is of type
+ SSS_AUTHTOK_TYPE_PASSWORD, otherwise it returns an error
+ *
+ * @param tok A pointer to an sss_auth_token
+ * @param pwd A pointer to a const char *, that will point to a null
+ * terminated string
+ * @param len The length of the password string
+ *
+ * @return EOK on success
+ * ENOENT if the token is empty
+ * EACCESS if the token is not a password token
+ */
+errno_t sss_authtok_get_password(struct sss_auth_token *tok,
+ const char **pwd, size_t *len);
+
+/**
+ * @brief Set a password into a an auth token, replacing any previous data
+ *
+ * @param mem_ctx A memory context use to allocate the internal data
+ * @param tok A pointer to a sss_auth_token structure to change
+ * @param password A string
+ * @param len The length of the string or, if 0 is passed,
+ * then strlen(password) will be used internally.
+ *
+ * @return EOK on success
+ * ENOMEM on error
+ */
+errno_t sss_authtok_set_password(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ const char *password, size_t len);
+
+/**
+ * @brief Returns a const string if the auth token is of type
+ SSS_AUTHTOK_TYPE_CCFILE, otherwise it returns an error
+ *
+ * @param tok A pointer to an sss_auth_token
+ * @param ccfile A pointer to a const char *, that will point to a null
+ * terminated string
+ * @param len The length of the string
+ *
+ * @return EOK on success
+ * ENOENT if the token is empty
+ * EACCESS if the token is not a password token
+ */
+errno_t sss_authtok_get_ccfile(struct sss_auth_token *tok,
+ const char **ccfile, size_t *len);
+
+/**
+ * @brief Set a cc file name into a an auth token, replacing any previous data
+ *
+ * @param mem_ctx A memory context use to allocate the internal data
+ * @param tok A pointer to a sss_auth_token structure to change
+ * @param ccfile A null terminated string
+ * @param len The length of the string
+ *
+ * @return EOK on success
+ * ENOMEM on error
+ */
+errno_t sss_authtok_set_ccfile(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ const char *ccfile, size_t len);
+
+/**
+ * @brief Resets an auth token to the empty status
+ *
+ * @param tok A pointer to a sss_auth_token structure to reset
+ *
+ * NOTE: This function uses safezero() on the payload if the type
+ * is SSS_AUTHTOK_TYPE_PASSWORD
+ */
+void sss_authtok_set_empty(struct sss_auth_token *tok);
+
+/**
+ * @brief Set an auth token by type, replacing any previous data
+ *
+ * @param mem_ctx A memory context use to allocate the internal data
+ * @param tok A pointer to a sss_auth_token structure to change
+ * @param type A valid authtok type
+ * @param ccfile A data pointer
+ * @param len The length of the data
+ *
+ * @return EOK on success
+ * ENOMEM or EINVAL on error
+ */
+errno_t sss_authtok_set(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *tok,
+ enum sss_authtok_type type,
+ uint8_t *data, size_t len);
+
+/**
+ * @brief Copy an auth token from source to destination
+ *
+ * @param mem_ctx The memory context to use for allocations on dst
+ * @param src The source auth token
+ * @param dst The destination auth token
+ *
+ * @return EOK on success
+ * ENOMEM on error
+ */
+errno_t sss_authtok_copy(TALLOC_CTX *mem_ctx,
+ struct sss_auth_token *src,
+ struct sss_auth_token *dst);
+
+/**
+ * @brief Uses safezero to wipe the password from memory if the
+ * authtoken contains a password, otherwise does nothing.
+ *
+ * @param tok A pointer to a sss_auth_token structure to change
+ *
+ * NOTE: This function should only be used in destructors or similar
+ * functions where freing the actual string is unsafe and where it can
+ * be guaranteed that the auth token will not be used anymore.
+ * Use sss_authtok_set_empty() in normal circumstances.
+ */
+void sss_authtok_wipe_password(struct sss_auth_token *tok);
+
+#endif /* __AUTHTOK_H__ */