/* Copyright (c) 2020-2021 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 and Eclipse Distribution License v1.0 which accompany this distribution. The Eclipse Public License is available at https://www.eclipse.org/legal/epl-2.0/ and the Eclipse Distribution License is available at http://www.eclipse.org/org/documents/edl-v10.php. SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause Contributors: Roger Light - initial implementation and documentation. */ #include #include #include #include #include "mosquitto.h" #include "mosquitto_ctrl.h" #include "get_password.h" #include "password_mosq.h" #include "dynamic_security.h" int dynsec_client__create(int argc, char *argv[], cJSON *j_command) { char *username = NULL, *password = NULL, *clientid = NULL; char prompt[200], verify_prompt[200]; char password_buf[200]; int rc; int i; bool request_password = true; if(argc == 0){ return MOSQ_ERR_INVAL; } username = argv[0]; for(i=1; i= 2){ username = argv[0]; password = argv[1]; }else{ return MOSQ_ERR_INVAL; } for(i=2; ivaluestring, username)){ if(dynsec_auth__pw_hash(&client, password, client.pw.password_hash, sizeof(client.pw.password_hash), true) != MOSQ_ERR_SUCCESS){ fprintf(stderr, "Error: Problem generating password hash.\n"); cJSON_Delete(j_tree); return MOSQ_ERR_UNKNOWN; } if(base64__encode(client.pw.password_hash, sizeof(client.pw.password_hash), &pw_buf) != MOSQ_ERR_SUCCESS){ fprintf(stderr, "Error: Problem generating password hash.\n"); cJSON_Delete(j_tree); free(pw_buf); free(salt_buf); return MOSQ_ERR_UNKNOWN; } if(base64__encode(client.pw.salt, client.pw.salt_len, &salt_buf) != MOSQ_ERR_SUCCESS){ fprintf(stderr, "Error: Problem generating password hash.\n"); cJSON_Delete(j_tree); free(pw_buf); free(salt_buf); return MOSQ_ERR_UNKNOWN; } j_password = cJSON_CreateString(pw_buf); if(j_password == NULL){ fprintf(stderr, "Error: Out of memory.\n"); cJSON_Delete(j_tree); free(pw_buf); free(salt_buf); return MOSQ_ERR_NOMEM; } j_salt = cJSON_CreateString(salt_buf); if(j_salt == NULL){ fprintf(stderr, "Error: Out of memory.\n"); cJSON_Delete(j_password); cJSON_Delete(j_tree); free(pw_buf); free(salt_buf); return MOSQ_ERR_NOMEM; } j_iterations = cJSON_CreateNumber(client.pw.iterations); if(j_iterations == NULL){ fprintf(stderr, "Error: Out of memory.\n"); cJSON_Delete(j_password); cJSON_Delete(j_salt); cJSON_Delete(j_tree); free(pw_buf); free(salt_buf); return MOSQ_ERR_NOMEM; } cJSON_ReplaceItemInObject(j_client, "password", j_password); cJSON_ReplaceItemInObject(j_client, "salt", j_salt); cJSON_ReplaceItemInObject(j_client, "iterations", j_iterations); free(pw_buf); free(salt_buf); json_str = cJSON_Print(j_tree); cJSON_Delete(j_tree); if(json_str == NULL){ fprintf(stderr, "Error: Out of memory.\n"); return MOSQ_ERR_NOMEM; } fptr = fopen(file, "wb"); if(fptr == NULL){ fprintf(stderr, "Error: Unable to write to %s.\n", file); free(json_str); return MOSQ_ERR_UNKNOWN; } fprintf(fptr, "%s", json_str); free(json_str); fclose(fptr); return MOSQ_ERR_SUCCESS; } } } } fprintf(stderr, "Error: Client %s not found.\n", username); return MOSQ_ERR_SUCCESS; } int dynsec_client__set_password(int argc, char *argv[], cJSON *j_command) { char *username = NULL, *password = NULL; char prompt[200], verify_prompt[200]; char password_buf[200]; int rc; if(argc == 2){ username = argv[0]; password = argv[1]; }else if(argc == 1){ username = argv[0]; snprintf(prompt, sizeof(prompt), "New password for %s: ", username); snprintf(verify_prompt, sizeof(verify_prompt), "Reenter password for %s: ", username); rc = get_password(prompt, verify_prompt, false, password_buf, sizeof(password_buf)); if(rc){ return -1; } password = password_buf; }else{ return MOSQ_ERR_INVAL; } if(cJSON_AddStringToObject(j_command, "command", "setClientPassword") == NULL || cJSON_AddStringToObject(j_command, "username", username) == NULL || cJSON_AddStringToObject(j_command, "password", password) == NULL ){ return MOSQ_ERR_NOMEM; }else{ return MOSQ_ERR_SUCCESS; } } int dynsec_client__get(int argc, char *argv[], cJSON *j_command) { char *username = NULL; if(argc == 1){ username = argv[0]; }else{ return MOSQ_ERR_INVAL; } if(cJSON_AddStringToObject(j_command, "command", "getClient") == NULL || cJSON_AddStringToObject(j_command, "username", username) == NULL ){ return MOSQ_ERR_NOMEM; }else{ return MOSQ_ERR_SUCCESS; } } int dynsec_client__add_remove_role(int argc, char *argv[], cJSON *j_command, const char *command) { char *username = NULL, *rolename = NULL; int priority = -1; if(argc == 2){ username = argv[0]; rolename = argv[1]; }else if(argc == 3){ username = argv[0]; rolename = argv[1]; priority = atoi(argv[2]); }else{ return MOSQ_ERR_INVAL; } if(cJSON_AddStringToObject(j_command, "command", command) == NULL || cJSON_AddStringToObject(j_command, "username", username) == NULL || cJSON_AddStringToObject(j_command, "rolename", rolename) == NULL || (priority != -1 && cJSON_AddIntToObject(j_command, "priority", priority) == NULL) ){ return MOSQ_ERR_NOMEM; }else{ return MOSQ_ERR_SUCCESS; } } int dynsec_client__list_all(int argc, char *argv[], cJSON *j_command) { int count = -1, offset = -1; if(argc == 0){ /* All clients */ }else if(argc == 1){ count = atoi(argv[0]); }else if(argc == 2){ count = atoi(argv[0]); offset = atoi(argv[1]); }else{ return MOSQ_ERR_INVAL; } if(cJSON_AddStringToObject(j_command, "command", "listClients") == NULL || (count > 0 && cJSON_AddIntToObject(j_command, "count", count) == NULL) || (offset > 0 && cJSON_AddIntToObject(j_command, "offset", offset) == NULL) ){ return MOSQ_ERR_NOMEM; }else{ return MOSQ_ERR_SUCCESS; } }