mosquitto/src/security_default.c

813 lines
19 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2011-2015 Roger Light <roger@atchoo.org>
2014-05-07 22:27:00 +00:00
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
http://www.eclipse.org/legal/epl-v10.html
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
Contributors:
Roger Light - initial implementation and documentation.
*/
2015-04-29 20:37:47 +00:00
#include "config.h"
2014-05-07 22:27:00 +00:00
#include <stdio.h>
#include <string.h>
2015-04-29 20:37:47 +00:00
#include "mosquitto_broker.h"
#include "memory_mosq.h"
2014-05-07 22:27:00 +00:00
#include "util_mosq.h"
static int aclfile__parse(struct mosquitto_db *db);
static int unpwd__file_parse(struct mosquitto_db *db);
static int acl__cleanup(struct mosquitto_db *db, bool reload);
static int unpwd__cleanup(struct mosquitto__unpwd **unpwd, bool reload);
static int psk__file_parse(struct mosquitto_db *db);
2014-05-07 22:27:00 +00:00
#ifdef WITH_TLS
static int pw__digest(const char *password, const unsigned char *salt, unsigned int salt_len, unsigned char *hash, unsigned int *hash_len);
static int base64__decode(char *in, unsigned char **decoded, unsigned int *decoded_len);
2014-05-07 22:27:00 +00:00
#endif
int mosquitto_security_init_default(struct mosquitto_db *db, bool reload)
{
int rc;
/* Load username/password data if required. */
if(db->config->password_file){
rc = unpwd__file_parse(db);
2014-05-07 22:27:00 +00:00
if(rc){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error opening password file \"%s\".", db->config->password_file);
2014-05-07 22:27:00 +00:00
return rc;
}
}
/* Load acl data if required. */
if(db->config->acl_file){
rc = aclfile__parse(db);
2014-05-07 22:27:00 +00:00
if(rc){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error opening acl file \"%s\".", db->config->acl_file);
2014-05-07 22:27:00 +00:00
return rc;
}
}
/* Load psk data if required. */
if(db->config->psk_file){
rc = psk__file_parse(db);
2014-05-07 22:27:00 +00:00
if(rc){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error opening psk file \"%s\".", db->config->psk_file);
2014-05-07 22:27:00 +00:00
return rc;
}
}
return MOSQ_ERR_SUCCESS;
}
int mosquitto_security_cleanup_default(struct mosquitto_db *db, bool reload)
{
int rc;
rc = acl__cleanup(db, reload);
2014-05-07 22:27:00 +00:00
if(rc != MOSQ_ERR_SUCCESS) return rc;
rc = unpwd__cleanup(&db->unpwd, reload);
2014-05-07 22:27:00 +00:00
if(rc != MOSQ_ERR_SUCCESS) return rc;
return unpwd__cleanup(&db->psk_id, reload);
2014-05-07 22:27:00 +00:00
}
int add__acl(struct mosquitto_db *db, const char *user, const char *topic, int access)
2014-05-07 22:27:00 +00:00
{
struct mosquitto__acl_user *acl_user=NULL, *user_tail;
struct mosquitto__acl *acl, *acl_tail;
2014-05-07 22:27:00 +00:00
char *local_topic;
bool new_user = false;
if(!db || !topic) return MOSQ_ERR_INVAL;
local_topic = mosquitto__strdup(topic);
2014-05-07 22:27:00 +00:00
if(!local_topic){
return MOSQ_ERR_NOMEM;
}
if(db->acl_list){
user_tail = db->acl_list;
while(user_tail){
if(user == NULL){
if(user_tail->username == NULL){
acl_user = user_tail;
break;
}
}else if(user_tail->username && !strcmp(user_tail->username, user)){
acl_user = user_tail;
break;
}
user_tail = user_tail->next;
}
}
if(!acl_user){
acl_user = mosquitto__malloc(sizeof(struct mosquitto__acl_user));
2014-05-07 22:27:00 +00:00
if(!acl_user){
mosquitto__free(local_topic);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
new_user = true;
if(user){
acl_user->username = mosquitto__strdup(user);
2014-05-07 22:27:00 +00:00
if(!acl_user->username){
mosquitto__free(local_topic);
mosquitto__free(acl_user);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
}else{
acl_user->username = NULL;
}
acl_user->next = NULL;
acl_user->acl = NULL;
}
acl = mosquitto__malloc(sizeof(struct mosquitto__acl));
2014-05-26 20:23:19 +00:00
if(!acl){
mosquitto__free(local_topic);
2014-05-26 20:23:19 +00:00
return MOSQ_ERR_NOMEM;
}
2014-05-07 22:27:00 +00:00
acl->access = access;
acl->topic = local_topic;
acl->next = NULL;
acl->ccount = 0;
acl->ucount = 0;
2014-05-07 22:27:00 +00:00
/* Add acl to user acl list */
if(acl_user->acl){
acl_tail = acl_user->acl;
while(acl_tail->next){
acl_tail = acl_tail->next;
}
acl_tail->next = acl;
}else{
acl_user->acl = acl;
}
if(new_user){
/* Add to end of list */
if(db->acl_list){
user_tail = db->acl_list;
while(user_tail->next){
user_tail = user_tail->next;
}
user_tail->next = acl_user;
}else{
db->acl_list = acl_user;
}
}
return MOSQ_ERR_SUCCESS;
}
int add__acl_pattern(struct mosquitto_db *db, const char *topic, int access)
2014-05-07 22:27:00 +00:00
{
struct mosquitto__acl *acl, *acl_tail;
2014-05-07 22:27:00 +00:00
char *local_topic;
char *s;
2014-05-07 22:27:00 +00:00
if(!db || !topic) return MOSQ_ERR_INVAL;
local_topic = mosquitto__strdup(topic);
2014-05-07 22:27:00 +00:00
if(!local_topic){
return MOSQ_ERR_NOMEM;
}
acl = mosquitto__malloc(sizeof(struct mosquitto__acl));
2014-05-26 20:23:19 +00:00
if(!acl){
mosquitto__free(local_topic);
2014-05-26 20:23:19 +00:00
return MOSQ_ERR_NOMEM;
}
2014-05-07 22:27:00 +00:00
acl->access = access;
acl->topic = local_topic;
acl->next = NULL;
acl->ccount = 0;
s = local_topic;
while(s){
s = strstr(s, "%c");
if(s){
acl->ccount++;
s+=2;
}
}
acl->ucount = 0;
s = local_topic;
while(s){
s = strstr(s, "%u");
if(s){
acl->ucount++;
s+=2;
}
}
2014-05-07 22:27:00 +00:00
if(db->acl_patterns){
acl_tail = db->acl_patterns;
while(acl_tail->next){
acl_tail = acl_tail->next;
}
acl_tail->next = acl;
}else{
db->acl_patterns = acl;
}
return MOSQ_ERR_SUCCESS;
}
int mosquitto_acl_check_default(struct mosquitto_db *db, struct mosquitto *context, const char *topic, int access)
{
char *local_acl;
struct mosquitto__acl *acl_root;
2014-05-07 22:27:00 +00:00
bool result;
int i;
int len, tlen, clen, ulen;
char *s;
if(!db || !context || !topic) return MOSQ_ERR_INVAL;
if(!db->acl_list && !db->acl_patterns) return MOSQ_ERR_SUCCESS;
if(context->bridge) return MOSQ_ERR_SUCCESS;
if(!context->acl_list && !db->acl_patterns) return MOSQ_ERR_ACL_DENIED;
if(context->acl_list){
acl_root = context->acl_list->acl;
}else{
acl_root = NULL;
}
/* Loop through all ACLs for this client. */
while(acl_root){
/* Loop through the topic looking for matches to this ACL. */
/* If subscription starts with $, acl_root->topic must also start with $. */
if(topic[0] == '$' && acl_root->topic[0] != '$'){
acl_root = acl_root->next;
continue;
}
mosquitto_topic_matches_sub(acl_root->topic, topic, &result);
if(result){
if(access & acl_root->access){
/* And access is allowed. */
return MOSQ_ERR_SUCCESS;
}
}
acl_root = acl_root->next;
}
acl_root = db->acl_patterns;
/* Loop through all pattern ACLs. */
clen = strlen(context->id);
while(acl_root){
tlen = strlen(acl_root->topic);
if(acl_root->ucount && !context->username){
acl_root = acl_root->next;
2014-05-07 22:27:00 +00:00
continue;
}
if(context->username){
ulen = strlen(context->username);
len = tlen + acl_root->ccount*(clen-2) + acl_root->ucount*(ulen-2);
}else{
ulen = 0;
len = tlen + acl_root->ccount*(clen-2);
}
2014-05-07 22:27:00 +00:00
local_acl = malloc(len+1);
if(!local_acl) return 1; // FIXME
s = local_acl;
for(i=0; i<tlen; i++){
if(i<tlen-1 && acl_root->topic[i] == '%'){
if(acl_root->topic[i+1] == 'c'){
i++;
strncpy(s, context->id, clen);
s+=clen;
continue;
}else if(context->username && acl_root->topic[i+1] == 'u'){
2014-05-07 22:27:00 +00:00
i++;
strncpy(s, context->username, ulen);
s+=ulen;
continue;
}
}
s[0] = acl_root->topic[i];
s++;
}
local_acl[len] = '\0';
mosquitto_topic_matches_sub(local_acl, topic, &result);
mosquitto__free(local_acl);
2014-05-07 22:27:00 +00:00
if(result){
if(access & acl_root->access){
/* And access is allowed. */
return MOSQ_ERR_SUCCESS;
}
}
acl_root = acl_root->next;
}
return MOSQ_ERR_ACL_DENIED;
}
static int aclfile__parse(struct mosquitto_db *db)
2014-05-07 22:27:00 +00:00
{
FILE *aclfile;
char buf[1024];
char *token;
char *user = NULL;
char *topic;
char *access_s;
int access;
int rc;
int slen;
int topic_pattern;
char *saveptr = NULL;
if(!db || !db->config) return MOSQ_ERR_INVAL;
if(!db->config->acl_file) return MOSQ_ERR_SUCCESS;
aclfile = mosquitto__fopen(db->config->acl_file, "rt");
2014-05-07 22:27:00 +00:00
if(!aclfile){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to open acl_file \"%s\".", db->config->acl_file);
2014-05-07 22:27:00 +00:00
return 1;
}
// topic [read|write] <topic>
// user <user>
while(fgets(buf, 1024, aclfile)){
slen = strlen(buf);
while(slen > 0 && (buf[slen-1] == 10 || buf[slen-1] == 13)){
buf[slen-1] = '\0';
slen = strlen(buf);
}
if(buf[0] == '#'){
continue;
}
token = strtok_r(buf, " ", &saveptr);
if(token){
if(!strcmp(token, "topic") || !strcmp(token, "pattern")){
if(!strcmp(token, "topic")){
topic_pattern = 0;
}else{
topic_pattern = 1;
}
access_s = strtok_r(NULL, " ", &saveptr);
if(!access_s){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Empty topic in acl_file.");
if(user) mosquitto__free(user);
2014-05-07 22:27:00 +00:00
fclose(aclfile);
return MOSQ_ERR_INVAL;
}
token = strtok_r(NULL, "", &saveptr);
2014-05-07 22:27:00 +00:00
if(token){
topic = token;
/* Ignore duplicate spaces */
while(topic[0] == ' '){
topic++;
}
2014-05-07 22:27:00 +00:00
}else{
topic = access_s;
access_s = NULL;
}
if(access_s){
if(!strcmp(access_s, "read")){
access = MOSQ_ACL_READ;
}else if(!strcmp(access_s, "write")){
access = MOSQ_ACL_WRITE;
}else if(!strcmp(access_s, "readwrite")){
access = MOSQ_ACL_READ | MOSQ_ACL_WRITE;
2014-05-07 22:27:00 +00:00
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Invalid topic access type \"%s\" in acl_file.", access_s);
if(user) mosquitto__free(user);
2014-05-07 22:27:00 +00:00
fclose(aclfile);
return MOSQ_ERR_INVAL;
}
}else{
access = MOSQ_ACL_READ | MOSQ_ACL_WRITE;
}
if(topic_pattern == 0){
rc = add__acl(db, user, topic, access);
2014-05-07 22:27:00 +00:00
}else{
rc = add__acl_pattern(db, topic, access);
2014-05-07 22:27:00 +00:00
}
if(rc){
fclose(aclfile);
return rc;
}
}else if(!strcmp(token, "user")){
token = strtok_r(NULL, "", &saveptr);
2014-05-07 22:27:00 +00:00
if(token){
/* Ignore duplicate spaces */
while(token[0] == ' '){
token++;
}
if(user) mosquitto__free(user);
user = mosquitto__strdup(token);
2014-05-07 22:27:00 +00:00
if(!user){
fclose(aclfile);
return MOSQ_ERR_NOMEM;
}
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Missing username in acl_file.");
if(user) mosquitto__free(user);
2014-05-07 22:27:00 +00:00
fclose(aclfile);
return 1;
}
}
}
}
if(user) mosquitto__free(user);
2014-05-07 22:27:00 +00:00
fclose(aclfile);
return MOSQ_ERR_SUCCESS;
}
static void free__acl(struct mosquitto__acl *acl)
2014-05-07 22:27:00 +00:00
{
if(!acl) return;
if(acl->next){
free__acl(acl->next);
2014-05-07 22:27:00 +00:00
}
if(acl->topic){
mosquitto__free(acl->topic);
2014-05-07 22:27:00 +00:00
}
mosquitto__free(acl);
2014-05-07 22:27:00 +00:00
}
static int acl__cleanup(struct mosquitto_db *db, bool reload)
2014-05-07 22:27:00 +00:00
{
struct mosquitto *context, *ctxt_tmp;
struct mosquitto__acl_user *user_tail;
2014-05-07 22:27:00 +00:00
if(!db) return MOSQ_ERR_INVAL;
if(!db->acl_list) return MOSQ_ERR_SUCCESS;
/* As we're freeing ACLs, we must clear context->acl_list to ensure no
* invalid memory accesses take place later.
* This *requires* the ACLs to be reapplied after acl__cleanup()
2014-05-07 22:27:00 +00:00
* is called if we are reloading the config. If this is not done, all
* access will be denied to currently connected clients.
*/
HASH_ITER(hh_id, db->contexts_by_id, context, ctxt_tmp){
context->acl_list = NULL;
2014-05-07 22:27:00 +00:00
}
while(db->acl_list){
user_tail = db->acl_list->next;
free__acl(db->acl_list->acl);
2014-05-07 22:27:00 +00:00
if(db->acl_list->username){
mosquitto__free(db->acl_list->username);
2014-05-07 22:27:00 +00:00
}
mosquitto__free(db->acl_list);
2014-05-07 22:27:00 +00:00
db->acl_list = user_tail;
}
if(db->acl_patterns){
free__acl(db->acl_patterns);
2014-05-07 22:27:00 +00:00
db->acl_patterns = NULL;
}
return MOSQ_ERR_SUCCESS;
}
static int pwfile__parse(const char *file, struct mosquitto__unpwd **root)
2014-05-07 22:27:00 +00:00
{
FILE *pwfile;
struct mosquitto__unpwd *unpwd;
2014-05-07 22:27:00 +00:00
char buf[256];
char *username, *password;
int len;
char *saveptr = NULL;
pwfile = mosquitto__fopen(file, "rt");
2014-05-07 22:27:00 +00:00
if(!pwfile){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to open pwfile \"%s\".", file);
2014-05-07 22:27:00 +00:00
return 1;
}
while(!feof(pwfile)){
if(fgets(buf, 256, pwfile)){
username = strtok_r(buf, ":", &saveptr);
if(username){
unpwd = mosquitto__calloc(1, sizeof(struct mosquitto__unpwd));
2014-05-07 22:27:00 +00:00
if(!unpwd){
fclose(pwfile);
return MOSQ_ERR_NOMEM;
}
unpwd->username = mosquitto__strdup(username);
2014-05-07 22:27:00 +00:00
if(!unpwd->username){
mosquitto__free(unpwd);
2014-05-07 22:27:00 +00:00
fclose(pwfile);
return MOSQ_ERR_NOMEM;
}
len = strlen(unpwd->username);
while(unpwd->username[len-1] == 10 || unpwd->username[len-1] == 13){
unpwd->username[len-1] = '\0';
len = strlen(unpwd->username);
}
password = strtok_r(NULL, ":", &saveptr);
if(password){
unpwd->password = mosquitto__strdup(password);
2014-05-07 22:27:00 +00:00
if(!unpwd->password){
fclose(pwfile);
mosquitto__free(unpwd->username);
mosquitto__free(unpwd);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
len = strlen(unpwd->password);
while(len && (unpwd->password[len-1] == 10 || unpwd->password[len-1] == 13)){
unpwd->password[len-1] = '\0';
len = strlen(unpwd->password);
}
}
HASH_ADD_KEYPTR(hh, *root, unpwd->username, strlen(unpwd->username), unpwd);
}
}
}
fclose(pwfile);
return MOSQ_ERR_SUCCESS;
}
static int unpwd__file_parse(struct mosquitto_db *db)
2014-05-07 22:27:00 +00:00
{
int rc;
#ifdef WITH_TLS
struct mosquitto__unpwd *u, *tmp;
2014-05-07 22:27:00 +00:00
char *token;
unsigned char *salt;
unsigned int salt_len;
unsigned char *password;
unsigned int password_len;
#endif
if(!db || !db->config) return MOSQ_ERR_INVAL;
if(!db->config->password_file) return MOSQ_ERR_SUCCESS;
rc = pwfile__parse(db->config->password_file, &db->unpwd);
2014-05-07 22:27:00 +00:00
#ifdef WITH_TLS
if(rc) return rc;
HASH_ITER(hh, db->unpwd, u, tmp){
/* Need to decode password into hashed data + salt. */
if(u->password){
token = strtok(u->password, "$");
if(token && !strcmp(token, "6")){
token = strtok(NULL, "$");
if(token){
rc = base64__decode(token, &salt, &salt_len);
2014-05-07 22:27:00 +00:00
if(rc){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to decode password salt for user %s.", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
u->salt = salt;
u->salt_len = salt_len;
token = strtok(NULL, "$");
if(token){
rc = base64__decode(token, &password, &password_len);
2014-05-07 22:27:00 +00:00
if(rc){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to decode password for user %s.", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
mosquitto__free(u->password);
2014-05-07 22:27:00 +00:00
u->password = (char *)password;
u->password_len = password_len;
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Invalid password hash for user %s.", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Invalid password hash for user %s.", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Invalid password hash for user %s.", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
}
}
#endif
return rc;
}
static int psk__file_parse(struct mosquitto_db *db)
2014-05-07 22:27:00 +00:00
{
int rc;
struct mosquitto__unpwd *u, *tmp;
2014-05-07 22:27:00 +00:00
if(!db || !db->config) return MOSQ_ERR_INVAL;
/* We haven't been asked to parse a psk file. */
if(!db->config->psk_file) return MOSQ_ERR_SUCCESS;
rc = pwfile__parse(db->config->psk_file, &db->psk_id);
2014-05-07 22:27:00 +00:00
if(rc) return rc;
HASH_ITER(hh, db->psk_id, u, tmp){
/* Check for hex only digits */
if(!u->password){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Empty psk for identity \"%s\".", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
if(strspn(u->password, "0123456789abcdefABCDEF") < strlen(u->password)){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: psk for identity \"%s\" contains non-hexadecimal characters.", u->username);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_INVAL;
}
}
return MOSQ_ERR_SUCCESS;
}
int mosquitto_unpwd_check_default(struct mosquitto_db *db, const char *username, const char *password)
{
struct mosquitto__unpwd *u, *tmp;
2014-05-07 22:27:00 +00:00
#ifdef WITH_TLS
unsigned char hash[EVP_MAX_MD_SIZE];
unsigned int hash_len;
int rc;
#endif
if(!db) return MOSQ_ERR_INVAL;
2014-05-07 22:27:00 +00:00
if(!db->unpwd) return MOSQ_ERR_SUCCESS;
if(!username) return MOSQ_ERR_INVAL; /* Check must be made only after checking db->unpwd. */
2014-05-07 22:27:00 +00:00
HASH_ITER(hh, db->unpwd, u, tmp){
if(!strcmp(u->username, username)){
if(u->password){
if(password){
#ifdef WITH_TLS
rc = pw__digest(password, u->salt, u->salt_len, hash, &hash_len);
2014-05-07 22:27:00 +00:00
if(rc == MOSQ_ERR_SUCCESS){
if(hash_len == u->password_len && !memcmp(u->password, hash, hash_len)){
return MOSQ_ERR_SUCCESS;
}else{
return MOSQ_ERR_AUTH;
}
}else{
return rc;
}
#else
if(!strcmp(u->password, password)){
return MOSQ_ERR_SUCCESS;
}
#endif
}else{
return MOSQ_ERR_AUTH;
}
}else{
return MOSQ_ERR_SUCCESS;
}
}
}
return MOSQ_ERR_AUTH;
}
static int unpwd__cleanup(struct mosquitto__unpwd **root, bool reload)
2014-05-07 22:27:00 +00:00
{
struct mosquitto__unpwd *u, *tmp;
2014-05-07 22:27:00 +00:00
if(!root) return MOSQ_ERR_INVAL;
HASH_ITER(hh, *root, u, tmp){
HASH_DEL(*root, u);
if(u->password) mosquitto__free(u->password);
if(u->username) mosquitto__free(u->username);
2014-05-07 22:27:00 +00:00
#ifdef WITH_TLS
if(u->salt) mosquitto__free(u->salt);
2014-05-07 22:27:00 +00:00
#endif
mosquitto__free(u);
2014-05-07 22:27:00 +00:00
}
*root = NULL;
return MOSQ_ERR_SUCCESS;
}
/* Apply security settings after a reload.
* Includes:
* - Disconnecting anonymous users if appropriate
* - Disconnecting users with invalid passwords
* - Reapplying ACLs
*/
int mosquitto_security_apply_default(struct mosquitto_db *db)
{
struct mosquitto *context, *ctxt_tmp;
struct mosquitto__acl_user *acl_user_tail;
2014-05-07 22:27:00 +00:00
bool allow_anonymous;
if(!db) return MOSQ_ERR_INVAL;
allow_anonymous = db->config->allow_anonymous;
HASH_ITER(hh_id, db->contexts_by_id, context, ctxt_tmp){
/* Check for anonymous clients when allow_anonymous is false */
if(!allow_anonymous && !context->username){
context->state = mosq_cs_disconnecting;
2014-07-08 22:07:19 +00:00
do_disconnect(db, context);
continue;
}
/* Check for connected clients that are no longer authorised */
if(mosquitto_unpwd_check_default(db, context->username, context->password) != MOSQ_ERR_SUCCESS){
context->state = mosq_cs_disconnecting;
2014-07-08 22:07:19 +00:00
do_disconnect(db, context);
continue;
}
/* Check for ACLs and apply to user. */
if(db->acl_list){
acl_user_tail = db->acl_list;
while(acl_user_tail){
if(acl_user_tail->username){
if(context->username){
if(!strcmp(acl_user_tail->username, context->username)){
context->acl_list = acl_user_tail;
break;
2014-05-07 22:27:00 +00:00
}
}
}else{
if(!context->username){
context->acl_list = acl_user_tail;
break;
2014-05-07 22:27:00 +00:00
}
}
acl_user_tail = acl_user_tail->next;
2014-05-07 22:27:00 +00:00
}
}
}
return MOSQ_ERR_SUCCESS;
}
int mosquitto_psk_key_get_default(struct mosquitto_db *db, const char *hint, const char *identity, char *key, int max_key_len)
{
struct mosquitto__unpwd *u, *tmp;
2014-05-07 22:27:00 +00:00
if(!db || !hint || !identity || !key) return MOSQ_ERR_INVAL;
if(!db->psk_id) return MOSQ_ERR_AUTH;
HASH_ITER(hh, db->psk_id, u, tmp){
if(!strcmp(u->username, identity)){
strncpy(key, u->password, max_key_len);
return MOSQ_ERR_SUCCESS;
}
}
return MOSQ_ERR_AUTH;
}
#ifdef WITH_TLS
int pw__digest(const char *password, const unsigned char *salt, unsigned int salt_len, unsigned char *hash, unsigned int *hash_len)
2014-05-07 22:27:00 +00:00
{
const EVP_MD *digest;
EVP_MD_CTX context;
digest = EVP_get_digestbyname("sha512");
if(!digest){
// FIXME fprintf(stderr, "Error: Unable to create openssl digest.\n");
return 1;
}
EVP_MD_CTX_init(&context);
EVP_DigestInit_ex(&context, digest, NULL);
EVP_DigestUpdate(&context, password, strlen(password));
EVP_DigestUpdate(&context, salt, salt_len);
/* hash is assumed to be EVP_MAX_MD_SIZE bytes long. */
EVP_DigestFinal_ex(&context, hash, hash_len);
EVP_MD_CTX_cleanup(&context);
return MOSQ_ERR_SUCCESS;
}
int base64__decode(char *in, unsigned char **decoded, unsigned int *decoded_len)
2014-05-07 22:27:00 +00:00
{
BIO *bmem, *b64;
b64 = BIO_new(BIO_f_base64());
BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
bmem = BIO_new(BIO_s_mem());
b64 = BIO_push(b64, bmem);
BIO_write(bmem, in, strlen(in));
if(BIO_flush(bmem) != 1){
2014-06-27 21:59:50 +00:00
BIO_free_all(b64);
2014-05-07 22:27:00 +00:00
return 1;
}
*decoded = calloc(strlen(in), 1);
*decoded_len = BIO_read(b64, *decoded, strlen(in));
2014-06-27 21:59:50 +00:00
BIO_free_all(b64);
2014-05-07 22:27:00 +00:00
return 0;
}
#endif