version 1.1.2.19, 2011/12/14 13:15:35
|
version 1.1.2.30, 2012/01/24 10:18:45
|
Line 1
|
Line 1
|
#include "global.h" |
#include "global.h" |
#include "rtlm.h" |
#include "rtlm.h" |
|
#include "utils.h" |
#include "mqttd.h" |
#include "mqttd.h" |
|
|
|
|
|
static void *startSession(sched_task_t *task); |
|
|
|
|
static inline struct tagSession * |
static inline struct tagSession * |
initSession(int sock, ait_val_t * __restrict v) |
initSession(int sock, ait_val_t * __restrict v) |
{ |
{ |
struct tagSession *sess = NULL; |
struct tagSession *sess = NULL; |
const char *str; |
const char *str; |
|
|
FTRACE(5); | ioTRACE(5); |
|
|
if (!v) |
if (!v) |
return NULL; |
return NULL; |
|
|
sess = malloc(sizeof(struct tagSession)); |
sess = malloc(sizeof(struct tagSession)); |
if (!sess) { |
if (!sess) { |
VERB(3) syslog(LOG_ERR, "Error:: in malloc #%d - %s", errno, strerror(errno)); | ioDEBUG(3, "Error:: in malloc #%d - %s", errno, strerror(errno)); |
io_freeVar(v); |
io_freeVar(v); |
return NULL; |
return NULL; |
} else |
} else |
Line 28 initSession(int sock, ait_val_t * __restrict v)
|
Line 32 initSession(int sock, ait_val_t * __restrict v)
|
else |
else |
sess->sess_retry = strtol(str, NULL, 0); |
sess->sess_retry = strtol(str, NULL, 0); |
|
|
sess->sess_buf = mqtt_msgAlloc(0); | sess->sess_buf = mqtt_msgAlloc(USHRT_MAX); |
if (!sess->sess_buf) { |
if (!sess->sess_buf) { |
VERB(3) syslog(LOG_ERR, "Error:: in msgAlloc #%d - %s", mqtt_GetErrno(), mqtt_GetError()); | ioDEBUG(3, "Error:: in msgAlloc #%d - %s", mqtt_GetErrno(), mqtt_GetError()); |
free(sess); |
free(sess); |
io_freeVar(v); |
io_freeVar(v); |
return NULL; |
return NULL; |
Line 43 initSession(int sock, ait_val_t * __restrict v)
|
Line 47 initSession(int sock, ait_val_t * __restrict v)
|
} |
} |
|
|
static void |
static void |
finiSession(struct tagSession *sess) | finiSession(struct tagSession *sess, int preservSock) |
{ |
{ |
register int i; |
|
struct tagStore *store; |
struct tagStore *store; |
|
|
FTRACE(5); | ioTRACE(5); |
|
|
if (!sess) |
if (!sess) |
return; |
return; |
|
|
for (i = 0; i < MQTT_QOS_RESERVED; i++) | if (call.FiniSessPUB) |
while ((store = SLIST_FIRST(&sess->sess_store[i]))) { | call.FiniSessPUB(&cfg, pub, sess->sess_cid, sess->sess_user, "%"); |
SLIST_REMOVE_HEAD(&sess->sess_store[i], st_node); | |
free(store); | |
} | |
|
|
|
while ((store = SLIST_FIRST(&sess->sess_sndqueue))) { |
|
SLIST_REMOVE_HEAD(&sess->sess_sndqueue, st_node); |
|
free(store); |
|
} |
|
|
if (sess->sess_will.msg) |
if (sess->sess_will.msg) |
free(sess->sess_will.msg); |
free(sess->sess_will.msg); |
if (sess->sess_will.topic) |
if (sess->sess_will.topic) |
free(sess->sess_will.topic); |
free(sess->sess_will.topic); |
|
|
if (sess->sess_sock > STDERR_FILENO) { | if (sess->sess_sock > STDERR_FILENO && !preservSock) |
shutdown(sess->sess_sock, SHUT_RDWR); | srv_Close(sess->sess_sock); |
close(sess->sess_sock); | |
} | |
|
|
mqtt_msgFree(&sess->sess_buf, 42); |
mqtt_msgFree(&sess->sess_buf, 42); |
|
|
free(sess); |
free(sess); |
} |
} |
|
|
|
static void |
|
stopSession(struct tagSession *sess) |
|
{ |
|
mqtt_msg_t msg = { NULL, 0 }; |
|
int ret; |
|
|
|
ioTRACE(4); |
|
|
|
assert(sess); |
|
|
|
pthread_mutex_lock(&mtx_sess); |
|
TAILQ_REMOVE(&Sessions, sess, sess_node); |
|
pthread_mutex_unlock(&mtx_sess); |
|
|
|
ret = mqtt_msgDISCONNECT(&msg); |
|
if ((ret = send(sess->sess_sock, msg.msg_base, ret, 0)) == -1) |
|
ioDEBUG(3, "Error:: send(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
|
else { |
|
ioDEBUG(5, "Sended %d bytes for disconnect", ret); |
|
free(msg.msg_base); |
|
memset(&msg, 0, sizeof msg); |
|
} |
|
|
|
ioDEBUG(1, "Close socket=%d", sess->sess_sock); |
|
finiSession(sess, 0); |
|
|
|
call.LOG(logg, "Session %s stopped from %s for user %s.\n", sess->sess_cid, |
|
sess->sess_addr, sess->sess_user); |
|
} |
|
|
|
static int |
|
KASession(struct tagSession *sess) |
|
{ |
|
mqtt_msg_t msg = { NULL, 0 }; |
|
int ret; |
|
struct pollfd pfd; |
|
|
|
ioTRACE(4); |
|
|
|
assert(sess); |
|
|
|
/* ping request */ |
|
ret = mqtt_msgPINGREQ(&msg); |
|
if ((ret = send(sess->sess_sock, msg.msg_base, ret, 0)) == -1) { |
|
ioDEBUG(3, "Error:: send(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
|
return -1; |
|
} else { |
|
ioDEBUG(5, "Sended %d bytes for ping request", ret); |
|
free(msg.msg_base); |
|
memset(&msg, 0, sizeof msg); |
|
} |
|
|
|
pfd.fd = sess->sess_sock; |
|
pfd.events = POLLIN | POLLPRI; |
|
if ((ret = poll(&pfd, 1, sess->sess_ka * 1000)) == -1 || |
|
pfd.revents & (POLLERR | POLLHUP | POLLNVAL)) { |
|
ioDEBUG(3, "Error:: poll(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
|
return -1; |
|
} else if (!ret) { |
|
ioDEBUG(5, "Warning:: Session is abandoned ... must be disconnect!"); |
|
return 1; |
|
} |
|
/* receive & decode packet */ |
|
if (recv(sess->sess_sock, sess->sess_buf->msg_base, sess->sess_buf->msg_len, 0) == -1) { |
|
ioDEBUG(3, "Error:: recv(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
|
return -1; |
|
} |
|
if (mqtt_readPINGRESP(sess->sess_buf)) { |
|
ioDEBUG(5, "Warning:: Session is broken, not hear ping response ... must be disconnect!"); |
|
return 2; |
|
} |
|
|
|
/* Keep Alive is OK! */ |
|
return 0; |
|
} |
|
|
static void * |
static void * |
thrSession(struct tagSession *sess) |
thrSession(struct tagSession *sess) |
{ |
{ |
void thrClean(struct tagSession *sess) | mqtt_msg_t msg = { NULL, 0 }; |
{ | int ret, locKill = 42; |
pthread_mutex_lock(&mtx_sess); | struct pollfd pfd; |
TAILQ_REMOVE(&Sessions, sess, sess_node); | struct mqtthdr *hdr; |
pthread_mutex_unlock(&mtx_sess); | ait_val_t *v; |
VERB(1) syslog(LOG_DEBUG, "Close socket=%d", sess->sess_sock); | struct tagStore *store; |
finiSession(sess); | |
} | |
|
|
pthread_cleanup_push((void(*)(void*)) thrClean, sess); | pthread_cleanup_push((void(*)(void*)) stopSession, sess); |
| ioTRACE(2); |
|
|
FTRACE(2); | pfd.fd = sess->sess_sock; |
| pfd.events = POLLIN | POLLPRI; |
| while (!Kill && locKill) { |
| if ((ret = poll(&pfd, 1, sess->sess_ka * 1000)) == -1 || |
| pfd.revents & (POLLERR | POLLHUP | POLLNVAL)) { |
| ioDEBUG(3, "Error:: poll(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
| break; |
| } else if (!ret && (ret = KASession(sess))) { |
| call.LOG(logg, "Session %s keep-alive missing from %s for user %s ...\n", |
| sess->sess_cid, sess->sess_addr, sess->sess_user); |
| break; |
| } |
| /* receive & decode packet */ |
| if ((ret = recv(sess->sess_sock, sess->sess_buf->msg_base, sess->sess_buf->msg_len, 0)) == -1) { |
| ioDEBUG(3, "Error:: recv(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
| break; |
| } else if (!ret) { |
| ioDEBUG(4, "Session %s EOF received.", sess->sess_cid); |
| break; |
| } else |
| hdr = (struct mqtthdr*) sess->sess_buf->msg_base; |
|
|
pthread_cleanup_pop(42); | /* dispatch message type */ |
| switch (hdr->mqtt_msg.type) { |
| case MQTT_TYPE_CONNECT: |
| ioDEBUG(5, "Exec CONNECT session"); |
| pthread_mutex_lock(&mtx_sess); |
| TAILQ_REMOVE(&Sessions, sess, sess_node); |
| pthread_mutex_unlock(&mtx_sess); |
| |
| if (call.FiniSessPUB) |
| call.FiniSessPUB(&cfg, pub, sess->sess_cid, sess->sess_user, "%"); |
| |
| while ((store = SLIST_FIRST(&sess->sess_sndqueue))) { |
| SLIST_REMOVE_HEAD(&sess->sess_sndqueue, st_node); |
| free(store); |
| } |
| |
| if (sess->sess_will.msg) |
| free(sess->sess_will.msg); |
| if (sess->sess_will.topic) |
| free(sess->sess_will.topic); |
| |
| if ((v = io_allocVar())) { |
| AIT_SET_STR(v, sess->sess_addr); |
| if (!schedEvent(root, startSession, v, (u_long) sess->sess_sock, sess, ret)) |
| io_freeVar(v); |
| } else |
| ioLIBERR(mqtt); |
| |
| locKill ^= locKill; |
| continue; |
| case MQTT_TYPE_DISCONNECT: |
| ioDEBUG(5, "Exec DISCONNECT session"); |
| pthread_mutex_lock(&mtx_sess); |
| TAILQ_REMOVE(&Sessions, sess, sess_node); |
| pthread_mutex_unlock(&mtx_sess); |
| |
| finiSession(sess, 0); |
| locKill ^= locKill; |
| continue; |
| case MQTT_TYPE_PUBLISH: |
| ioDEBUG(5, "Work in progress ..."); |
| break; |
| case MQTT_TYPE_PUBREL: |
| break; |
| case MQTT_TYPE_SUBSCRIBE: |
| break; |
| case MQTT_TYPE_UNSUBSCRIBE: |
| break; |
| case MQTT_TYPE_PINGREQ: |
| break; |
| default: |
| ioDEBUG(5, "Error:: Session %s, wrong command %d - DISCARDED", |
| sess->sess_cid, hdr->mqtt_msg.type); |
| break; |
| } |
| } |
| |
| pthread_cleanup_pop(locKill); |
pthread_exit(NULL); |
pthread_exit(NULL); |
} |
} |
|
|
Line 101 startSession(sched_task_t *task)
|
Line 256 startSession(sched_task_t *task)
|
mqtt_msg_t msg = { NULL, 0 }, buf = { basebuf, sizeof basebuf }; |
mqtt_msg_t msg = { NULL, 0 }, buf = { basebuf, sizeof basebuf }; |
mqtthdr_connflgs_t flg; |
mqtthdr_connflgs_t flg; |
mqtthdr_connack_t cack; |
mqtthdr_connack_t cack; |
struct tagSession *sess = NULL; | struct tagSession *s, *sess = NULL; |
int ret; |
int ret; |
pthread_attr_t attr; |
pthread_attr_t attr; |
|
|
FTRACE(4); | ioTRACE(4); |
|
|
sess = initSession(TASK_FD(task), TASK_ARG(task)); | assert(task); |
if (!sess) { | |
io_freeVar(TASK_ARG(task)); | |
close(TASK_FD(task)); | |
return NULL; | |
} | |
|
|
/* receive & decode packet */ | ioDEBUG(3, "task_Data=%p", TASK_DATA(task)); |
if (recv(sess->sess_sock, buf.msg_base, buf.msg_len, 0) == -1) { | if (!TASK_DATA(task)) { |
VERB(3) syslog(LOG_ERR, "Error:: recv(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); | sess = initSession(TASK_FD(task), TASK_ARG(task)); |
finiSession(sess); | if (!sess) { |
return NULL; | io_freeVar(TASK_ARG(task)); |
| close(TASK_FD(task)); |
| return NULL; |
| } |
| |
| /* receive & decode packet */ |
| if (recv(sess->sess_sock, buf.msg_base, buf.msg_len, 0) == -1) { |
| ioDEBUG(3, "Error:: recv(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
| finiSession(sess, 0); |
| return NULL; |
| } |
| } else { |
| sess = TASK_DATA(task); |
| buf.msg_len = TASK_DATLEN(task) > sizeof basebuf ? sizeof basebuf : TASK_DATLEN(task); |
| ioDEBUG(3, "debug:: sock=%d s=%p sbuf=%p sbl=%d ret=%d\n", sess->sess_sock, sess->sess_buf, sess->sess_buf->msg_base, (int) sess->sess_buf->msg_len, (int) TASK_DATLEN(task)); |
| memcpy(buf.msg_base, sess->sess_buf->msg_base, buf.msg_len); |
} |
} |
|
|
cack = mqtt_readCONNECT(&buf, &sess->sess_ka, sess->sess_cid, sizeof sess->sess_cid, |
cack = mqtt_readCONNECT(&buf, &sess->sess_ka, sess->sess_cid, sizeof sess->sess_cid, |
sess->sess_user, sizeof sess->sess_user, sess->sess_pass, sizeof sess->sess_pass, |
sess->sess_user, sizeof sess->sess_user, sess->sess_pass, sizeof sess->sess_pass, |
&sess->sess_will.topic, &sess->sess_will.msg); |
&sess->sess_will.topic, &sess->sess_will.msg); |
ret = cack.retcode; |
ret = cack.retcode; |
flg.flags = cack.reserved; |
flg.flags = cack.reserved; |
if (flg.reserved) { |
if (flg.reserved) { |
VERB(3) syslog(LOG_ERR, "Error:: in MQTT protocol #%d - %s", mqtt_GetErrno(), mqtt_GetError()); | ioDEBUG(3, "Error:: in MQTT protocol #%d - %s", mqtt_GetErrno(), mqtt_GetError()); |
goto end; |
goto end; |
} else { |
} else { |
sess->sess_clean = flg.clean_sess; |
sess->sess_clean = flg.clean_sess; |
Line 137 startSession(sched_task_t *task)
|
Line 303 startSession(sched_task_t *task)
|
|
|
/* check online table for user */ |
/* check online table for user */ |
if (call.LoginACC(&cfg, acc, sess->sess_user, sess->sess_pass) < 1) { |
if (call.LoginACC(&cfg, acc, sess->sess_user, sess->sess_pass) < 1) { |
VERB(1) syslog(LOG_WARNING, "Login:: DENIED for username %s and password %s", | ioDEBUG(0, "Login:: DENIED for username %s and password %s", |
sess->sess_user, sess->sess_pass); |
sess->sess_user, sess->sess_pass); |
|
ret = MQTT_RETCODE_DENIED; |
goto end; |
goto end; |
} else | } else { |
VERB(1) syslog(LOG_WARNING, "Login:: ALLOWED for username %s ...", sess->sess_user); | ioDEBUG(1, "Login:: ALLOWED for username %s ...", sess->sess_user); |
| ret = MQTT_RETCODE_ACCEPTED; |
| } |
| if (call.FiniSessPUB(&cfg, pub, sess->sess_cid, sess->sess_user, "%") > 0) { |
| ioDEBUG(2, "Old session %s should be disconnect!", sess->sess_cid); |
| TAILQ_FOREACH(s, &Sessions, sess_node) |
| if (!strcmp(s->sess_cid, sess->sess_cid)) { |
| /* found stale session & disconnect it! */ |
| stopSession(s); |
| break; |
| } |
| } |
| if (call.InitSessPUB(&cfg, pub, sess->sess_cid, sess->sess_user, sess->sess_addr, |
| sess->sess_will.flag, sess->sess_will.topic, sess->sess_will.msg, |
| sess->sess_will.qos, sess->sess_will.retain) == -1) { |
| ioDEBUG(0, "Session %s DENIED for username %s", sess->sess_cid, sess->sess_user); |
| ret = MQTT_RETCODE_DENIED; |
| goto end; |
| } else { |
| ioDEBUG(0, "Session %s from %s and username %s is started", |
| sess->sess_cid, sess->sess_addr, sess->sess_user); |
| ret = MQTT_RETCODE_ACCEPTED; |
| } |
|
|
ret = mqtt_msgCONNACK(&msg, ret); |
ret = mqtt_msgCONNACK(&msg, ret); |
if ((ret = send(sess->sess_sock, msg.msg_base, ret, 0)) == -1) { |
if ((ret = send(sess->sess_sock, msg.msg_base, ret, 0)) == -1) { |
VERB(3) syslog(LOG_ERR, "Error:: send(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); | ioDEBUG(3, "Error:: send(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
finiSession(sess); | finiSession(sess, 0); |
return NULL; |
return NULL; |
} else { |
} else { |
VERB(5) ioLOGGER(LOG_DEBUG, "Sended %d bytes", ret); | ioDEBUG(5, "Sended %d bytes", ret); |
free(msg.msg_base); |
free(msg.msg_base); |
msg.msg_len = 0; | memset(&msg, 0, sizeof msg); |
} |
} |
|
|
/* Start session thread OK ... */ |
/* Start session thread OK ... */ |
Line 163 startSession(sched_task_t *task)
|
Line 352 startSession(sched_task_t *task)
|
pthread_create(&sess->sess_tid, &attr, (void*(*)(void*)) thrSession, sess); |
pthread_create(&sess->sess_tid, &attr, (void*(*)(void*)) thrSession, sess); |
pthread_mutex_unlock(&mtx_sess); |
pthread_mutex_unlock(&mtx_sess); |
|
|
VERB(1) ioLOGGER(LOG_DEBUG, "ConnID=%s(%s) for %s login OK!", | call.LOG(logg, "Session %s started from %s for user %s (timeout=%d) OK!\n", sess->sess_cid, |
sess->sess_cid, sess->sess_user, sess->sess_addr); | sess->sess_addr, sess->sess_user, sess->sess_ka); |
|
|
pthread_attr_destroy(&attr); |
pthread_attr_destroy(&attr); |
return NULL; |
return NULL; |
end: /* close client connection */ |
end: /* close client connection */ |
ret = mqtt_msgCONNACK(&msg, ret); |
ret = mqtt_msgCONNACK(&msg, ret); |
if ((ret = send(sess->sess_sock, msg.msg_base, ret, 0)) == -1) { |
if ((ret = send(sess->sess_sock, msg.msg_base, ret, 0)) == -1) { |
VERB(3) syslog(LOG_ERR, "Error:: send(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); | ioDEBUG(3, "Error:: send(%d) #%d - %s", sess->sess_sock, errno, strerror(errno)); |
} else { |
} else { |
VERB(5) ioLOGGER(LOG_DEBUG, "Sended %d bytes", ret); | ioDEBUG(5, "Sended %d bytes", ret); |
free(msg.msg_base); |
free(msg.msg_base); |
msg.msg_len = 0; | memset(&msg, 0, sizeof msg); |
} |
} |
|
|
VERB(1) ioLOGGER(LOG_DEBUG, "Close client %s with socket=%d", sess->sess_addr, sess->sess_sock); | ioDEBUG(1, "Close client %s with socket=%d", sess->sess_addr, sess->sess_sock); |
finiSession(sess); | finiSession(sess, 0); |
return NULL; |
return NULL; |
} |
} |
|
|
Line 188 end: /* close client connection */
|
Line 377 end: /* close client connection */
|
static void * |
static void * |
thrSched(void *arg __unused) |
thrSched(void *arg __unused) |
{ |
{ |
FTRACE(1); |
|
struct tagSession *sess; |
struct tagSession *sess; |
|
|
schedRun(root, (intptr_t*) &Kill); | ioTRACE(1); |
|
|
|
schedRun(root, &Kill); |
|
|
TAILQ_FOREACH(sess, &Sessions, sess_node) |
TAILQ_FOREACH(sess, &Sessions, sess_node) |
if (sess->sess_tid) |
if (sess->sess_tid) |
pthread_cancel(sess->sess_tid); |
pthread_cancel(sess->sess_tid); |
|
ioDEBUG(5, "EXIT from Scheduler thread !!!"); |
pthread_exit(NULL); |
pthread_exit(NULL); |
} |
} |
|
|
Line 207 Run(int sock)
|
Line 398 Run(int sock)
|
int cli; |
int cli; |
pthread_t tid; |
pthread_t tid; |
ait_val_t *v; |
ait_val_t *v; |
|
char str[STRSIZ]; |
|
|
FTRACE(1); | ioTRACE(1); |
|
|
if (pthread_create(&tid, NULL, thrSched, NULL)) { |
if (pthread_create(&tid, NULL, thrSched, NULL)) { |
syslog(LOG_ERR, "Error:: thread scheduler #%d - %s", errno, strerror(errno)); | ioSYSERR(0); |
return -1; |
return -1; |
} else |
} else |
pthread_detach(tid); |
pthread_detach(tid); |
VERB(2) ioLOGGER(LOG_DEBUG, "Run scheduler management thread"); | ioDEBUG(2, "Run scheduler management thread"); |
|
|
if (listen(sock, SOMAXCONN) == -1) { |
if (listen(sock, SOMAXCONN) == -1) { |
syslog(LOG_ERR, "Error:: listen(%d) #%d - %s\n", sock, errno, strerror(errno)); | ioSYSERR(0); |
pthread_cancel(tid); | |
return -1; |
return -1; |
} |
} |
|
|
while (!Kill) { |
while (!Kill) { |
if ((cli = accept(sock, &sa.sa, &sslen)) == -1) { |
if ((cli = accept(sock, &sa.sa, &sslen)) == -1) { |
syslog(LOG_ERR, "Error:: accept() #%d - %s", errno, strerror(errno)); | if (!Kill) |
continue; | continue; |
| ioSYSERR(0); |
| break; |
} |
} |
v = io_allocVar(); |
v = io_allocVar(); |
if (!v) { |
if (!v) { |
ioLIBERR(mqtt); |
ioLIBERR(mqtt); |
break; |
break; |
} else | } else { |
io_n2addr(&sa, v); | memset(str, 0, sizeof str); |
VERB(1) ioLOGGER(LOG_DEBUG, "Connected client with socket=%d from %s:%d", cli, | snprintf(str, sizeof str, "%s:%hu", io_n2addr(&sa, v), io_n2port(&sa)); |
AIT_GET_STR(v), io_n2port(&sa)); | AIT_SET_STR(v, str); |
| } |
| ioDEBUG(1, "Connected client with socket=%d from %s", cli, AIT_GET_STR(v)); |
|
|
if (!schedRead(root, startSession, v, cli)) { | if (!schedRead(root, startSession, v, cli, NULL, 0)) { |
io_freeVar(v); |
io_freeVar(v); |
close(cli); |
close(cli); |
VERB(1) ioLOGGER(LOG_DEBUG, "Terminated client with socket=%d", cli); | ioDEBUG(1, "Terminated client with socket=%d", cli); |
} |
} |
} |
} |
|
|