Annotation of libaitmqtt/src/pub.c, revision 1.1.1.1.2.5

1.1       misho       1: /*************************************************************************
                      2: * (C) 2011 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.1.1.1.2.5! misho       6: * $Id: pub.c,v 1.1.1.1.2.4 2012/04/27 15:49:07 misho Exp $
1.1       misho       7: *
                      8: **************************************************************************
                      9: The ELWIX and AITNET software is distributed under the following
                     10: terms:
                     11: 
                     12: All of the documentation and software included in the ELWIX and AITNET
                     13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
                     14: 
1.1.1.1.2.1  misho      15: Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
1.1       misho      16:        by Michael Pounov <misho@elwix.org>.  All rights reserved.
                     17: 
                     18: Redistribution and use in source and binary forms, with or without
                     19: modification, are permitted provided that the following conditions
                     20: are met:
                     21: 1. Redistributions of source code must retain the above copyright
                     22:    notice, this list of conditions and the following disclaimer.
                     23: 2. Redistributions in binary form must reproduce the above copyright
                     24:    notice, this list of conditions and the following disclaimer in the
                     25:    documentation and/or other materials provided with the distribution.
                     26: 3. All advertising materials mentioning features or use of this software
                     27:    must display the following acknowledgement:
                     28: This product includes software developed by Michael Pounov <misho@elwix.org>
                     29: ELWIX - Embedded LightWeight unIX and its contributors.
                     30: 4. Neither the name of AITNET nor the names of its contributors
                     31:    may be used to endorse or promote products derived from this software
                     32:    without specific prior written permission.
                     33: 
                     34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
                     35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     44: SUCH DAMAGE.
                     45: */
                     46: #include "global.h"
                     47: 
                     48: 
                     49: /*
                     50:  * mqtt_msgPUBLISH() Create PUBLISH message
                     51:  *
                     52:  * @buf = Message buffer
                     53:  * @csTopic = Publish topic
                     54:  * @msgID = MessageID >0, if QOS != MQTT_QOS_ONCE
                     55:  * @Dup = Duplicate message
                     56:  * @QOS = QoS
                     57:  * @Retain = Retain message
                     58:  * @pData = Publish data into topic
                     59:  * @datlen = Publish data length
                     60:  * return: -1 error or >-1 message size for send
                     61:  */
                     62: int
                     63: mqtt_msgPUBLISH(mqtt_msg_t * __restrict buf, const char *csTopic, u_short msgID, 
                     64:                u_char Dup, u_char QOS, u_char Retain, const void *pData, int datlen)
                     65: {
                     66:        int siz = 0;
                     67:        struct mqtthdr *hdr;
                     68:        mqtthdr_var_t *topic;
                     69:        mqtt_len_t *mid;
                     70:        void *data;
                     71: 
                     72:        if (!buf || !csTopic)
                     73:                return -1;
                     74:        if (QOS > MQTT_QOS_EXACTLY) {
1.1.1.1.2.1  misho      75:                mqtt_SetErr(EINVAL, "Invalid QoS parameter");
1.1       misho      76:                return -1;
                     77:        }
                     78:        if (!msgID && QOS != MQTT_QOS_ONCE) {
1.1.1.1.2.1  misho      79:                mqtt_SetErr(EINVAL, "Invalid MessageID parameter must be >0");
1.1       misho      80:                return -1;
                     81:        }
                     82: 
                     83:        if (mqtt_msgRealloc(buf, MQTTMSG_MAX) == -1)
                     84:                return -1;
                     85:        else {
                     86:                hdr = (struct mqtthdr *) (buf->msg_base + siz);
                     87:                siz += sizeof(struct mqtthdr);
                     88:        }
                     89: 
                     90:        /* variable header */
                     91:        topic = (mqtthdr_var_t*) (buf->msg_base + siz);
                     92:        topic->var_sb.val = htons(strlen(csTopic));
                     93:        memcpy(topic->var_data, csTopic, ntohs(topic->var_sb.val));
                     94:        siz += MQTTHDR_VAR_SIZEOF(topic);
                     95: 
                     96:        mid = (mqtt_len_t*) (buf->msg_base + siz);
                     97:        mid->val = htons(msgID);
                     98:        siz += sizeof(mqtt_len_t);
                     99: 
                    100:        /* load with data */
                    101:        if (pData && datlen) {
                    102:                data = buf->msg_base + siz;
                    103:                memcpy(data, pData, datlen);
                    104:                siz += datlen;
                    105:        }
                    106: 
                    107:        /* fixed header */
                    108:        MQTTHDR_MSGINIT(hdr);
                    109:        hdr->mqtt_msg.type = MQTT_TYPE_PUBLISH;
                    110:        hdr->mqtt_msg.qos = QOS;
                    111:        hdr->mqtt_msg.dup = Dup ? 1 : 0;
                    112:        hdr->mqtt_msg.retain = Retain ? 1 : 0;
                    113:        *hdr->mqtt_len = mqtt_encodeLen(siz - sizeof(struct mqtthdr));
                    114: 
                    115:        return siz;
                    116: }
                    117: 
                    118: static int
                    119: _mqtt_msgPUB_(mqtt_msg_t * __restrict buf, u_char cmd, u_short msgID)
                    120: {
                    121:        int siz = 0;
                    122:        struct mqtthdr *hdr;
                    123:        mqtt_len_t *v;
                    124: 
                    125:        if (!buf)
                    126:                return -1;
                    127: 
                    128:        if (mqtt_msgRealloc(buf, sizeof(struct mqtthdr) + sizeof(mqtt_len_t)) == -1)
                    129:                return -1;
                    130:        else {
                    131:                hdr = (struct mqtthdr *) (buf->msg_base + siz);
                    132:                siz += sizeof(struct mqtthdr);
                    133:                v = (mqtt_len_t*) (buf->msg_base + siz);
                    134:                siz += sizeof(mqtt_len_t);
                    135:        }
                    136: 
                    137:        /* fixed header */
                    138:        MQTTHDR_MSGINIT(hdr);
                    139:        hdr->mqtt_msg.type = cmd;
                    140:        *hdr->mqtt_len = sizeof(mqtt_len_t);
                    141: 
                    142:        /* MessageID */
                    143:        v->val = htons(msgID);
                    144: 
                    145:        return siz;
                    146: }
                    147: 
                    148: /*
                    149:  * mqtt_msgPUBACK() Create PUBACK message
                    150:  *
                    151:  * @buf = Message buffer
                    152:  * @msgID = MessageID
                    153:  * return: -1 error or >-1 message size for send
                    154:  */
                    155: inline int
                    156: mqtt_msgPUBACK(mqtt_msg_t * __restrict buf, u_short msgID)
                    157: {
                    158:        return _mqtt_msgPUB_(buf, MQTT_TYPE_PUBACK, msgID);
                    159: }
                    160: 
                    161: /*
                    162:  * mqtt_msgPUBREC() Create PUBREC message
                    163:  *
                    164:  * @buf = Message buffer
                    165:  * @msgID = MessageID
                    166:  * return: -1 error or >-1 message size for send
                    167:  */
                    168: inline int
                    169: mqtt_msgPUBREC(mqtt_msg_t * __restrict buf, u_short msgID)
                    170: {
                    171:        return _mqtt_msgPUB_(buf, MQTT_TYPE_PUBREC, msgID);
                    172: }
                    173: 
                    174: /*
                    175:  * mqtt_msgPUBREL() Create PUBREL message
                    176:  *
                    177:  * @buf = Message buffer
                    178:  * @msgID = MessageID
                    179:  * return: -1 error or >-1 message size for send
                    180:  */
                    181: inline int
                    182: mqtt_msgPUBREL(mqtt_msg_t * __restrict buf, u_short msgID)
                    183: {
                    184:        return _mqtt_msgPUB_(buf, MQTT_TYPE_PUBREL, msgID);
                    185: }
                    186: 
                    187: /*
                    188:  * mqtt_msgPUBCOMP() Create PUBCOMP message
                    189:  *
                    190:  * @buf = Message buffer
                    191:  * @msgID = MessageID
                    192:  * return: -1 error or >-1 message size for send
                    193:  */
                    194: inline int
                    195: mqtt_msgPUBCOMP(mqtt_msg_t * __restrict buf, u_short msgID)
                    196: {
                    197:        return _mqtt_msgPUB_(buf, MQTT_TYPE_PUBCOMP, msgID);
                    198: }
                    199: 
                    200: 
                    201: /* ============= decode ============ */
                    202: 
                    203: /*
                    204:  * mqtt_readPUBLISH() Read PUBLISH message
                    205:  *
                    206:  * @buf = Message buffer
                    207:  * @psTopic = Topic
                    208:  * @topicLen = Topic length
                    209:  * @msgID = MessageID
1.1.1.1.2.5! misho     210:  * @pData = Data buffer, may be NULL
1.1.1.1.2.4  misho     211:  * return: -1 error or !=-1 allocated data buffer length
1.1       misho     212:  */
1.1.1.1.2.4  misho     213: int
1.1       misho     214: mqtt_readPUBLISH(mqtt_msg_t * __restrict buf, char * __restrict psTopic, int topicLen, 
1.1.1.1.2.4  misho     215:                u_short *msgID, void ** __restrict pData)
1.1       misho     216: {
                    217:        int len, ret;
                    218:        struct mqtthdr *hdr;
                    219:        mqtthdr_var_t *var;
                    220:        mqtt_len_t *v;
                    221:        caddr_t pos;
                    222: 
1.1.1.1.2.5! misho     223:        if (!buf || !psTopic || !msgID)
1.1.1.1.2.4  misho     224:                return -1;
1.1       misho     225: 
                    226:        hdr = _mqtt_readHEADER(buf, MQTT_TYPE_PUBLISH, &ret, &len);
                    227:        if (!hdr)
1.1.1.1.2.4  misho     228:                return -1;
1.1       misho     229:        pos = buf->msg_base + ret + 1;
                    230:        var = (mqtthdr_var_t*) pos;
                    231: 
                    232:        /* topic */
                    233:        len -= MQTTHDR_VAR_SIZEOF(var);
                    234:        if (len < 0) {
1.1.1.1.2.1  misho     235:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1.1.1.2.4  misho     236:                return -1;
1.1       misho     237:        } else {
                    238:                memset(psTopic, 0, topicLen--);
                    239:                memcpy(psTopic, var->var_data, ntohs(var->var_sb.val) > topicLen ? 
                    240:                                topicLen : ntohs(var->var_sb.val));
                    241:                pos += MQTTHDR_VAR_SIZEOF(var);
                    242:                v = (mqtt_len_t*) pos;
                    243:        }
                    244: 
                    245:        len -= sizeof(mqtt_len_t);
                    246:        if (len < 0) {
1.1.1.1.2.1  misho     247:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1.1.1.2.4  misho     248:                return -1;
1.1       misho     249:        } else {
                    250:                *msgID = ntohs(v->val);
                    251:                pos += sizeof(mqtt_len_t);
                    252:        }
                    253: 
                    254:        /* data */
                    255:        if (len < 0) {
1.1.1.1.2.1  misho     256:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1.1.1.2.4  misho     257:                return -1;
1.1.1.1.2.5! misho     258:        } else if (pData) {
1.1.1.1.2.4  misho     259:                if (!(*pData = malloc(len + 1))) {
                    260:                        LOGERR;
                    261:                        return -1;
                    262:                } else
                    263:                        ((char*) (*pData))[len] = 0;
                    264: 
                    265:                memcpy(*pData, pos, len);
1.1       misho     266:        }
                    267: 
1.1.1.1.2.4  misho     268:        return len;
1.1       misho     269: }
                    270: 
                    271: /*
                    272:  * mqtt_readPUBACK() Read PUBACK message
                    273:  *
                    274:  * @buf = Message buffer
                    275:  * return: -1 error or MessageID
                    276:  */
                    277: u_short
                    278: mqtt_readPUBACK(mqtt_msg_t * __restrict buf)
                    279: {
                    280:        int len, ret;
                    281:        struct mqtthdr *hdr;
                    282:        mqtt_len_t *v;
                    283:        caddr_t pos;
                    284: 
                    285:        hdr = _mqtt_readHEADER(buf, MQTT_TYPE_PUBACK, &ret, &len);
                    286:        if (!hdr)
                    287:                return (u_short) -1;
                    288:        if (len < sizeof(mqtt_len_t)) {
1.1.1.1.2.1  misho     289:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1       misho     290:                return (u_short) -1;
                    291:        } else {
                    292:                pos = buf->msg_base + ret + 1;
                    293:                v = (mqtt_len_t*) pos;
                    294:        }
                    295: 
                    296:        return ntohs(v->val);
                    297: }
                    298: 
                    299: /*
                    300:  * mqtt_readPUBREC() Read PUBREC message
                    301:  *
                    302:  * @buf = Message buffer
                    303:  * return: -1 error or MessageID
                    304:  */
                    305: u_short
                    306: mqtt_readPUBREC(mqtt_msg_t * __restrict buf)
                    307: {
                    308:        int len, ret;
                    309:        struct mqtthdr *hdr;
                    310:        mqtt_len_t *v;
                    311:        caddr_t pos;
                    312: 
                    313:        hdr = _mqtt_readHEADER(buf, MQTT_TYPE_PUBREC, &ret, &len);
                    314:        if (!hdr)
                    315:                return (u_short) -1;
                    316:        if (len < sizeof(mqtt_len_t)) {
1.1.1.1.2.1  misho     317:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1       misho     318:                return (u_short) -1;
                    319:        } else {
                    320:                pos = buf->msg_base + ret + 1;
                    321:                v = (mqtt_len_t*) pos;
                    322:        }
                    323: 
                    324:        return ntohs(v->val);
                    325: }
                    326: 
                    327: /*
                    328:  * mqtt_readPUBREL() Read PUBREL message
                    329:  *
                    330:  * @buf = Message buffer
                    331:  * return: -1 error or MessageID
                    332:  */
                    333: u_short
                    334: mqtt_readPUBREL(mqtt_msg_t * __restrict buf)
                    335: {
                    336:        int len, ret;
                    337:        struct mqtthdr *hdr;
                    338:        mqtt_len_t *v;
                    339:        caddr_t pos;
                    340: 
                    341:        hdr = _mqtt_readHEADER(buf, MQTT_TYPE_PUBREL, &ret, &len);
                    342:        if (!hdr)
                    343:                return (u_short) -1;
                    344:        if (len < sizeof(mqtt_len_t)) {
1.1.1.1.2.1  misho     345:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1       misho     346:                return (u_short) -1;
                    347:        } else {
                    348:                pos = buf->msg_base + ret + 1;
                    349:                v = (mqtt_len_t*) pos;
                    350:        }
                    351: 
                    352:        return ntohs(v->val);
                    353: }
                    354: 
                    355: /*
                    356:  * mqtt_readPUBCOMP() Read PUBCOMP message
                    357:  *
                    358:  * @buf = Message buffer
                    359:  * return: -1 error or MessageID
                    360:  */
                    361: u_short
                    362: mqtt_readPUBCOMP(mqtt_msg_t * __restrict buf)
                    363: {
                    364:        int len, ret;
                    365:        struct mqtthdr *hdr;
                    366:        mqtt_len_t *v;
                    367:        caddr_t pos;
                    368: 
                    369:        hdr = _mqtt_readHEADER(buf, MQTT_TYPE_PUBCOMP, &ret, &len);
                    370:        if (!hdr)
                    371:                return (u_short) -1;
                    372:        if (len < sizeof(mqtt_len_t)) {
1.1.1.1.2.1  misho     373:                mqtt_SetErr(EINVAL, "Short message length %d", len);
1.1       misho     374:                return (u_short) -1;
                    375:        } else {
                    376:                pos = buf->msg_base + ret + 1;
                    377:                v = (mqtt_len_t*) pos;
                    378:        }
                    379: 
                    380:        return ntohs(v->val);
                    381: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>