APUE Learning Example Source Code
guowenxue
2019-06-26 157be0b0d4c7d4809cfcafc76235cc18388378c8
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
#include <string.h>
#include <stdbool.h>
#include "mosquitto_plugin_v2.h"
 
/*
 * Following constant come from mosquitto.h
 *
 * They are copied here to fix value of those constant at the time of MOSQ_AUTH_PLUGIN_VERSION == 2
 */
enum mosq_err_t {
    MOSQ_ERR_SUCCESS = 0,
    MOSQ_ERR_AUTH = 11,
    MOSQ_ERR_ACL_DENIED = 12
};
 
int mosquitto_auth_plugin_version(void)
{
    return MOSQ_AUTH_PLUGIN_VERSION;
}
 
int mosquitto_auth_plugin_init(void **user_data, struct mosquitto_auth_opt *auth_opts, int auth_opt_count)
{
    return MOSQ_ERR_SUCCESS;
}
 
int mosquitto_auth_plugin_cleanup(void *user_data, struct mosquitto_auth_opt *auth_opts, int auth_opt_count)
{
    return MOSQ_ERR_SUCCESS;
}
 
int mosquitto_auth_security_init(void *user_data, struct mosquitto_auth_opt *auth_opts, int auth_opt_count, bool reload)
{
    return MOSQ_ERR_SUCCESS;
}
 
int mosquitto_auth_security_cleanup(void *user_data, struct mosquitto_auth_opt *auth_opts, int auth_opt_count, bool reload)
{
    return MOSQ_ERR_SUCCESS;
}
 
int mosquitto_auth_acl_check(void *user_data, const char *clientid, const char *username, const char *topic, int access)
{
    if(!strcmp(username, "readonly") && access == MOSQ_ACL_READ){
        return MOSQ_ERR_SUCCESS;
    }else{
        return MOSQ_ERR_ACL_DENIED;
    }
}
 
int mosquitto_auth_unpwd_check(void *user_data, const char *username, const char *password)
{
    if(!strcmp(username, "test-username") && password && !strcmp(password, "cnwTICONIURW")){
        return MOSQ_ERR_SUCCESS;
    }else if(!strcmp(username, "readonly")){
        return MOSQ_ERR_SUCCESS;
    }else if(!strcmp(username, "test-username@v2")){
        return MOSQ_ERR_SUCCESS;
    }else{
        return MOSQ_ERR_AUTH;
    }
}
 
int mosquitto_auth_psk_key_get(void *user_data, const char *hint, const char *identity, char *key, int max_key_len)
{
    return MOSQ_ERR_AUTH;
}