123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599 |
- /*
- * Copyright © 2001-2011 Stéphane Raimbault <stephane.raimbault@gmail.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- *
- * This library implements the Modbus protocol.
- * http://libmodbus.org/
- */
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <limits.h>
- #include <time.h>
- #include <config.h>
- #include "modbus.h"
- #include "modbus-private.h"
- /* Internal use */
- #define MSG_LENGTH_UNDEFINED -1
- /* Exported version */
- const unsigned int libmodbus_version_major = LIBMODBUS_VERSION_MAJOR;
- const unsigned int libmodbus_version_minor = LIBMODBUS_VERSION_MINOR;
- const unsigned int libmodbus_version_micro = LIBMODBUS_VERSION_MICRO;
- /* Max between RTU and TCP max adu length (so TCP) */
- #define MAX_MESSAGE_LENGTH 260
- /* 3 steps are used to parse the query */
- typedef enum {
- _STEP_FUNCTION,
- _STEP_META,
- _STEP_DATA
- } _step_t;
- const char *modbus_strerror(int errnum) {
- switch (errnum) {
- case EMBXILFUN:
- return "Illegal function";
- case EMBXILADD:
- return "Illegal data address";
- case EMBXILVAL:
- return "Illegal data value";
- case EMBXSFAIL:
- return "Slave device or server failure";
- case EMBXACK:
- return "Acknowledge";
- case EMBXSBUSY:
- return "Slave device or server is busy";
- case EMBXNACK:
- return "Negative acknowledge";
- case EMBXMEMPAR:
- return "Memory parity error";
- case EMBXGPATH:
- return "Gateway path unavailable";
- case EMBXGTAR:
- return "Target device failed to respond";
- case EMBBADCRC:
- return "Invalid CRC";
- case EMBBADDATA:
- return "Invalid data";
- case EMBBADEXC:
- return "Invalid exception code";
- case EMBMDATA:
- return "Too many data";
- default:
- return strerror(errnum);
- }
- }
- void _error_print(modbus_t *ctx, const char *context)
- {
- if (ctx->debug) {
- fprintf(stderr, "ERROR %s", modbus_strerror(errno));
- if (context != NULL) {
- fprintf(stderr, ": %s\n", context);
- } else {
- fprintf(stderr, "\n");
- }
- }
- }
- int _sleep_and_flush(modbus_t *ctx)
- {
- #ifdef _WIN32
- /* usleep doesn't exist on Windows */
- Sleep((ctx->response_timeout.tv_sec * 1000) +
- (ctx->response_timeout.tv_usec / 1000));
- #else
- /* usleep source code */
- struct timespec request, remaining;
- request.tv_sec = ctx->response_timeout.tv_sec;
- request.tv_nsec = ((long int)ctx->response_timeout.tv_usec % 1000000)
- * 1000;
- while (nanosleep(&request, &remaining) == -1 && errno == EINTR)
- request = remaining;
- #endif
- return modbus_flush(ctx);
- }
- int modbus_flush(modbus_t *ctx)
- {
- int rc = ctx->backend->flush(ctx);
- if (rc != -1 && ctx->debug) {
- printf("%d bytes flushed\n", rc);
- }
- return rc;
- }
- /* Computes the length of the expected response */
- static unsigned int compute_response_length_from_request(modbus_t *ctx, uint8_t *req)
- {
- int length;
- const int offset = ctx->backend->header_length;
- switch (req[offset]) {
- case _FC_READ_COILS:
- case _FC_READ_DISCRETE_INPUTS: {
- /* Header + nb values (code from write_bits) */
- int nb = (req[offset + 3] << 8) | req[offset + 4];
- length = 2 + (nb / 8) + ((nb % 8) ? 1 : 0);
- }
- break;
- case _FC_READ_AND_WRITE_REGISTERS:
- case _FC_READ_HOLDING_REGISTERS:
- case _FC_READ_INPUT_REGISTERS:
- /* Header + 2 * nb values */
- length = 2 + 2 * (req[offset + 3] << 8 | req[offset + 4]);
- break;
- case _FC_READ_EXCEPTION_STATUS:
- length = 3;
- break;
- case _FC_REPORT_SLAVE_ID:
- /* The response is device specific (the header provides the
- length) */
- return MSG_LENGTH_UNDEFINED;
- default:
- length = 5;
- }
- return offset + length + ctx->backend->checksum_length;
- }
- /* Sends a request/response */
- static int send_msg(modbus_t *ctx, uint8_t *msg, int msg_length)
- {
- int rc;
- int i;
- msg_length = ctx->backend->send_msg_pre(msg, msg_length);
- if (ctx->debug) {
- for (i = 0; i < msg_length; i++)
- printf("[%.2X]", msg[i]);
- printf("\n");
- }
- /* In recovery mode, the write command will be issued until to be
- successful! Disabled by default. */
- do {
- rc = ctx->backend->send(ctx, msg, msg_length);
- if (rc == -1) {
- _error_print(ctx, NULL);
- if (ctx->error_recovery & MODBUS_ERROR_RECOVERY_LINK) {
- int saved_errno = errno;
- if ((errno == EBADF || errno == ECONNRESET || errno == EPIPE)) {
- modbus_close(ctx);
- modbus_connect(ctx);
- } else {
- _sleep_and_flush(ctx);
- }
- errno = saved_errno;
- }
- }
- } while ((ctx->error_recovery & MODBUS_ERROR_RECOVERY_LINK) &&
- rc == -1);
- if (rc > 0 && rc != msg_length) {
- errno = EMBBADDATA;
- return -1;
- }
- return rc;
- }
- int modbus_send_raw_request(modbus_t *ctx, uint8_t *raw_req, int raw_req_length)
- {
- sft_t sft;
- uint8_t req[MAX_MESSAGE_LENGTH];
- int req_length;
- if (raw_req_length < 2) {
- /* The raw request must contain function and slave at least */
- errno = EINVAL;
- return -1;
- }
- sft.slave = raw_req[0];
- sft.function = raw_req[1];
- /* The t_id is left to zero */
- sft.t_id = 0;
- /* This response function only set the header so it's convenient here */
- req_length = ctx->backend->build_response_basis(&sft, req);
- if (raw_req_length > 2) {
- /* Copy data after function code */
- memcpy(req + req_length, raw_req + 2, raw_req_length - 2);
- req_length += raw_req_length - 2;
- }
- return send_msg(ctx, req, req_length);
- }
- /*
- ---------- Request Indication ----------
- | Client | ---------------------->| Server |
- ---------- Confirmation Response ----------
- */
- typedef enum {
- /* Request message on the server side */
- MSG_INDICATION,
- /* Request message on the client side */
- MSG_CONFIRMATION
- } msg_type_t;
- /* Computes the length to read after the function received */
- static uint8_t compute_meta_length_after_function(int function,
- msg_type_t msg_type)
- {
- int length;
- if (msg_type == MSG_INDICATION) {
- if (function <= _FC_WRITE_SINGLE_REGISTER) {
- length = 4;
- } else if (function == _FC_WRITE_MULTIPLE_COILS ||
- function == _FC_WRITE_MULTIPLE_REGISTERS) {
- length = 5;
- } else if (function == _FC_READ_AND_WRITE_REGISTERS) {
- length = 9;
- } else {
- /* _FC_READ_EXCEPTION_STATUS, _FC_REPORT_SLAVE_ID */
- length = 0;
- }
- } else {
- /* MSG_CONFIRMATION */
- switch (function) {
- case _FC_WRITE_SINGLE_COIL:
- case _FC_WRITE_SINGLE_REGISTER:
- case _FC_WRITE_MULTIPLE_COILS:
- case _FC_WRITE_MULTIPLE_REGISTERS:
- length = 4;
- break;
- default:
- length = 1;
- }
- }
- return length;
- }
- /* Computes the length to read after the meta information (address, count, etc) */
- static int compute_data_length_after_meta(modbus_t *ctx, uint8_t *msg,
- msg_type_t msg_type)
- {
- int function = msg[ctx->backend->header_length];
- int length;
- if (msg_type == MSG_INDICATION) {
- switch (function) {
- case _FC_WRITE_MULTIPLE_COILS:
- case _FC_WRITE_MULTIPLE_REGISTERS:
- length = msg[ctx->backend->header_length + 5];
- break;
- case _FC_READ_AND_WRITE_REGISTERS:
- length = msg[ctx->backend->header_length + 9];
- break;
- default:
- length = 0;
- }
- } else {
- /* MSG_CONFIRMATION */
- if (function <= _FC_READ_INPUT_REGISTERS ||
- function == _FC_REPORT_SLAVE_ID ||
- function == _FC_READ_AND_WRITE_REGISTERS) {
- length = msg[ctx->backend->header_length + 1];
- } else {
- length = 0;
- }
- }
- length += ctx->backend->checksum_length;
- return length;
- }
- /* Waits a response from a modbus server or a request from a modbus client.
- This function blocks if there is no replies (3 timeouts).
- The function shall return the number of received characters and the received
- message in an array of uint8_t if successful. Otherwise it shall return -1
- and errno is set to one of the values defined below:
- - ECONNRESET
- - EMBBADDATA
- - EMBUNKEXC
- - ETIMEDOUT
- - read() or recv() error codes
- */
- static int receive_msg(modbus_t *ctx, uint8_t *msg, msg_type_t msg_type)
- {
- int rc;
- fd_set rfds;
- struct timeval tv;
- struct timeval *p_tv;
- int length_to_read;
- int msg_length = 0;
- _step_t step;
- if (ctx->debug) {
- if (msg_type == MSG_INDICATION) {
- printf("Waiting for a indication...\n");
- } else {
- printf("Waiting for a confirmation...\n");
- }
- }
- /* Add a file descriptor to the set */
- FD_ZERO(&rfds);
- FD_SET(ctx->s, &rfds);
- /* We need to analyse the message step by step. At the first step, we want
- * to reach the function code because all packets contain this
- * information. */
- step = _STEP_FUNCTION;
- length_to_read = ctx->backend->header_length + 1;
- if (msg_type == MSG_INDICATION) {
- /* Wait for a message, we don't know when the message will be
- * received */
- p_tv = NULL;
- } else {
- tv.tv_sec = ctx->response_timeout.tv_sec;
- tv.tv_usec = ctx->response_timeout.tv_usec;
- p_tv = &tv;
- }
- while (length_to_read != 0) {
- rc = ctx->backend->select(ctx, &rfds, p_tv, length_to_read);
- if (rc == -1) {
- _error_print(ctx, "select");
- if (ctx->error_recovery & MODBUS_ERROR_RECOVERY_LINK) {
- int saved_errno = errno;
- if (errno == ETIMEDOUT) {
- _sleep_and_flush(ctx);
- } else if (errno == EBADF) {
- modbus_close(ctx);
- modbus_connect(ctx);
- }
- errno = saved_errno;
- }
- return -1;
- }
- rc = ctx->backend->recv(ctx, msg + msg_length, length_to_read);
- if (rc == 0) {
- errno = ECONNRESET;
- rc = -1;
- }
- if (rc == -1) {
- _error_print(ctx, "read");
- if ((ctx->error_recovery & MODBUS_ERROR_RECOVERY_LINK) &&
- (errno == ECONNRESET || errno == ECONNREFUSED ||
- errno == EBADF)) {
- int saved_errno = errno;
- modbus_close(ctx);
- modbus_connect(ctx);
- /* Could be removed by previous calls */
- errno = saved_errno;
- }
- return -1;
- }
- /* Display the hex code of each character received */
- if (ctx->debug) {
- int i;
- for (i=0; i < rc; i++)
- printf("<%.2X>", msg[msg_length + i]);
- }
- /* Sums bytes received */
- msg_length += rc;
- /* Computes remaining bytes */
- length_to_read -= rc;
- if (length_to_read == 0) {
- switch (step) {
- case _STEP_FUNCTION:
- /* Function code position */
- length_to_read = compute_meta_length_after_function(
- msg[ctx->backend->header_length],
- msg_type);
- if (length_to_read != 0) {
- step = _STEP_META;
- break;
- } /* else switches straight to the next step */
- case _STEP_META:
- length_to_read = compute_data_length_after_meta(
- ctx, msg, msg_type);
- if ((msg_length + length_to_read) > ctx->backend->max_adu_length) {
- errno = EMBBADDATA;
- _error_print(ctx, "too many data");
- return -1;
- }
- step = _STEP_DATA;
- break;
- default:
- break;
- }
- }
- if (length_to_read > 0) {
- /* If there is no character in the buffer, the allowed timeout
- interval between two consecutive bytes is defined by
- byte_timeout */
- tv.tv_sec = ctx->byte_timeout.tv_sec;
- tv.tv_usec = ctx->byte_timeout.tv_usec;
- p_tv = &tv;
- }
- }
- if (ctx->debug)
- printf("\n");
- return ctx->backend->check_integrity(ctx, msg, msg_length);
- }
- /* Receive the request from a modbus master */
- int modbus_receive(modbus_t *ctx, uint8_t *req)
- {
- return receive_msg(ctx, req, MSG_INDICATION);
- }
- /* Receives the confirmation.
- The function shall store the read response in rsp and return the number of
- values (bits or words). Otherwise, its shall return -1 and errno is set.
- The function doesn't check the confirmation is the expected response to the
- initial request.
- */
- int modbus_receive_confirmation(modbus_t *ctx, uint8_t *rsp)
- {
- return receive_msg(ctx, rsp, MSG_CONFIRMATION);
- }
- static int check_confirmation(modbus_t *ctx, uint8_t *req,
- uint8_t *rsp, int rsp_length)
- {
- int rc;
- int rsp_length_computed;
- const int offset = ctx->backend->header_length;
- if (ctx->backend->pre_check_confirmation) {
- rc = ctx->backend->pre_check_confirmation(ctx, req, rsp, rsp_length);
- if (rc == -1) {
- if (ctx->error_recovery & MODBUS_ERROR_RECOVERY_PROTOCOL) {
- _sleep_and_flush(ctx);
- }
- return -1;
- }
- }
- rsp_length_computed = compute_response_length_from_request(ctx, req);
- /* Check length */
- if (rsp_length == rsp_length_computed ||
- rsp_length_computed == MSG_LENGTH_UNDEFINED) {
- int req_nb_value;
- int rsp_nb_value;
- const int function = rsp[offset];
- /* Check function code */
- if (function != req[offset]) {
- if (ctx->debug) {
- fprintf(stderr,
- "Received function not corresponding to the request (%d != %d)\n",
- function, req[offset]);
- }
- if (ctx->error_recovery & MODBUS_ERROR_RECOVERY_PROTOCOL) {
- _sleep_and_flush(ctx);
- }
- errno = EMBBADDATA;
- return -1;
- }
- /* Check the number of values is corresponding to the request */
- switch (function) {
- case _FC_READ_COILS:
- case _FC_READ_DISCRETE_INPUTS:
- /* Read functions, 8 values in a byte (nb
- * of values in the request and byte count in
- * the response. */
- req_nb_value = (req[offset + 3] << 8) + req[offset + 4];
- req_nb_value = (req_nb_value / 8) + ((req_nb_value % 8) ? 1 : 0);
- rsp_nb_value = rsp[offset + 1];
- break;
- case _FC_READ_AND_WRITE_REGISTERS:
- case _FC_READ_HOLDING_REGISTERS:
- case _FC_READ_INPUT_REGISTERS:
- /* Read functions 1 value = 2 bytes */
- req_nb_value = (req[offset + 3] << 8) + req[offset + 4];
- rsp_nb_value = (rsp[offset + 1] / 2);
- break;
- case _FC_WRITE_MULTIPLE_COILS:
- case _FC_WRITE_MULTIPLE_REGISTERS:
- /* N Write functions */
- req_nb_value = (req[offset + 3] << 8) + req[offset + 4];
- rsp_nb_value = (rsp[offset + 3] << 8) | rsp[offset + 4];
- break;
- case _FC_REPORT_SLAVE_ID:
- /* Report slave ID (bytes received) */
- req_nb_value = rsp_nb_value = rsp[offset + 1];
- break;
- default:
- /* 1 Write functions & others */
- req_nb_value = rsp_nb_value = 1;
- }
- if (req_nb_value == rsp_nb_value) {
- rc = rsp_nb_value;
- } else {
- if (ctx->debug) {
- fprintf(stderr,
- "Quantity not corresponding to the request (%d != %d)\n",
- rsp_nb_value, req_nb_value);
- }
- if (ctx->error_recovery & MODBUS_ERROR_RECOVERY_PROTOCOL) {
- _sleep_and_flush(ctx);
- }
- errno = EMBBADDATA;
- rc = -1;
- }
- } else if (rsp_length == (offset + 2 + ctx->backend->checksum_length) &&
- req[offset] == (rsp[offset] - 0x80)) {
- /* EXCEPTION CODE RECEIVED */
- int exception_code = rsp[offset + 1];
- if (exception_code < MODBUS_EXCEPTION_MAX) {
- errno = MODBUS_ENOBASE + exception_code;
- } else {
- errno = EMBBADEXC;
- }
- _error_print(ctx, NULL);
- rc = -1;
- } else {
- if (ctx->debug) {
- fprintf(stderr,
- "Message length not corresponding to the computed length (%d != %d)\n",
- rsp_length, rsp_length_computed);
- }
- if (ctx->error_recovery & MODBUS_ERROR_RECOVERY_PROTOCOL) {
- _sleep_and_flush(ctx);
- }
- errno = EMBBADDATA;
- rc = -1;
- }
- return rc;
- }
- static int response_io_status(int address, int nb,
- uint8_t *tab_io_status,
- uint8_t *rsp, int offset)
- {
- int shift = 0;
- int byte = 0;
- int i;
- for (i = address; i < address+nb; i++) {
- byte |= tab_io_status[i] << shift;
- if (shift == 7) {
- /* Byte is full */
- rsp[offset++] = byte;
- byte = shift = 0;
- } else {
- shift++;
- }
- }
- if (shift != 0)
- rsp[offset++] = byte;
- return offset;
- }
- /* Build the exception response */
- static int response_exception(modbus_t *ctx, sft_t *sft,
- int exception_code, uint8_t *rsp)
- {
- int rsp_length;
- sft->function = sft->function + 0x80;
- rsp_length = ctx->backend->build_response_basis(sft, rsp);
- /* Positive exception code */
- rsp[rsp_length++] = exception_code;
- return rsp_length;
- }
- /* Send a response to the receive request.
- Analyses the request and constructs a response.
- If an error occurs, this function construct the response
- accordingly.
- */
- int modbus_reply(modbus_t *ctx, const uint8_t *req,
- int req_length, modbus_mapping_t *mb_mapping)
- {
- int offset = ctx->backend->header_length;
- int slave = req[offset - 1];
- int function = req[offset];
- uint16_t address = (req[offset + 1] << 8) + req[offset + 2];
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- int rsp_length = 0;
- sft_t sft;
- if (ctx->backend->filter_request(ctx, slave) == 1) {
- /* Filtered */
- return 0;
- }
- sft.slave = slave;
- sft.function = function;
- sft.t_id = ctx->backend->prepare_response_tid(req, &req_length);
- switch (function) {
- case _FC_READ_COILS: {
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- if ((address + nb) > mb_mapping->nb_bits) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in read_bits\n",
- address + nb);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- rsp[rsp_length++] = (nb / 8) + ((nb % 8) ? 1 : 0);
- rsp_length = response_io_status(address, nb,
- mb_mapping->tab_bits,
- rsp, rsp_length);
- }
- }
- break;
- case _FC_READ_DISCRETE_INPUTS: {
- /* Similar to coil status (but too many arguments to use a
- * function) */
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- if ((address + nb) > mb_mapping->nb_input_bits) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in read_input_bits\n",
- address + nb);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- rsp[rsp_length++] = (nb / 8) + ((nb % 8) ? 1 : 0);
- rsp_length = response_io_status(address, nb,
- mb_mapping->tab_input_bits,
- rsp, rsp_length);
- }
- }
- break;
- case _FC_READ_HOLDING_REGISTERS: {
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- if ((address + nb) > mb_mapping->nb_registers) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in read_registers\n",
- address + nb);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- int i;
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- rsp[rsp_length++] = nb << 1;
- for (i = address; i < address + nb; i++) {
- rsp[rsp_length++] = mb_mapping->tab_registers[i] >> 8;
- rsp[rsp_length++] = mb_mapping->tab_registers[i] & 0xFF;
- }
- }
- }
- break;
- case _FC_READ_INPUT_REGISTERS: {
- /* Similar to holding registers (but too many arguments to use a
- * function) */
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- if ((address + nb) > mb_mapping->nb_input_registers) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in read_input_registers\n",
- address + nb);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- int i;
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- rsp[rsp_length++] = nb << 1;
- for (i = address; i < address + nb; i++) {
- rsp[rsp_length++] = mb_mapping->tab_input_registers[i] >> 8;
- rsp[rsp_length++] = mb_mapping->tab_input_registers[i] & 0xFF;
- }
- }
- }
- break;
- case _FC_WRITE_SINGLE_COIL:
- if (address >= mb_mapping->nb_bits) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in write_bit\n",
- address);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- int data = (req[offset + 3] << 8) + req[offset + 4];
- if (data == 0xFF00 || data == 0x0) {
- mb_mapping->tab_bits[address] = (data) ? ON : OFF;
- memcpy(rsp, req, req_length);
- rsp_length = req_length;
- } else {
- if (ctx->debug) {
- fprintf(stderr,
- "Illegal data value %0X in write_bit request at address %0X\n",
- data, address);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_VALUE, rsp);
- }
- }
- break;
- case _FC_WRITE_SINGLE_REGISTER:
- if (address >= mb_mapping->nb_registers) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in write_register\n",
- address);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- int data = (req[offset + 3] << 8) + req[offset + 4];
- mb_mapping->tab_registers[address] = data;
- memcpy(rsp, req, req_length);
- rsp_length = req_length;
- }
- break;
- case _FC_WRITE_MULTIPLE_COILS: {
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- if ((address + nb) > mb_mapping->nb_bits) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in write_bits\n",
- address + nb);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- /* 6 = byte count */
- modbus_set_bits_from_bytes(mb_mapping->tab_bits, address, nb, &req[offset + 6]);
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- /* 4 to copy the bit address (2) and the quantity of bits */
- memcpy(rsp + rsp_length, req + rsp_length, 4);
- rsp_length += 4;
- }
- }
- break;
- case _FC_WRITE_MULTIPLE_REGISTERS: {
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- if ((address + nb) > mb_mapping->nb_registers) {
- if (ctx->debug) {
- fprintf(stderr, "Illegal data address %0X in write_registers\n",
- address + nb);
- }
- rsp_length = response_exception(
- ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- int i, j;
- for (i = address, j = 6; i < address + nb; i++, j += 2) {
- /* 6 and 7 = first value */
- mb_mapping->tab_registers[i] =
- (req[offset + j] << 8) + req[offset + j + 1];
- }
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- /* 4 to copy the address (2) and the no. of registers */
- memcpy(rsp + rsp_length, req + rsp_length, 4);
- rsp_length += 4;
- }
- }
- break;
- case _FC_REPORT_SLAVE_ID:
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- /* 2 bytes */
- rsp[rsp_length++] = 2;
- rsp[rsp_length++] = ctx->slave;
- /* Slave is ON */
- rsp[rsp_length++] = 0xFF;
- break;
- case _FC_READ_EXCEPTION_STATUS:
- if (ctx->debug) {
- fprintf(stderr, "FIXME Not implemented\n");
- }
- errno = ENOPROTOOPT;
- return -1;
- break;
- case _FC_READ_AND_WRITE_REGISTERS: {
- int nb = (req[offset + 3] << 8) + req[offset + 4];
- uint16_t address_write = (req[offset + 5] << 8) + req[offset + 6];
- int nb_write = (req[offset + 7] << 8) + req[offset + 8];
- if ((address + nb) > mb_mapping->nb_registers ||
- (address_write + nb_write) > mb_mapping->nb_registers) {
- if (ctx->debug) {
- fprintf(stderr,
- "Illegal data read address %0X or write address %0X in read_and_write_registers\n",
- address + nb, address_write + nb_write);
- }
- rsp_length = response_exception(ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS, rsp);
- } else {
- int i, j;
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- rsp[rsp_length++] = nb << 1;
- /* Write first.
- 10 and 11 are the offset of the first values to write */
- for (i = address_write, j = 10; i < address_write + nb_write; i++, j += 2) {
- mb_mapping->tab_registers[i] =
- (req[offset + j] << 8) + req[offset + j + 1];
- }
- /* and read the data for the response */
- for (i = address; i < address + nb; i++) {
- rsp[rsp_length++] = mb_mapping->tab_registers[i] >> 8;
- rsp[rsp_length++] = mb_mapping->tab_registers[i] & 0xFF;
- }
- }
- }
- break;
- default:
- rsp_length = response_exception(ctx, &sft,
- MODBUS_EXCEPTION_ILLEGAL_FUNCTION,
- rsp);
- break;
- }
- return send_msg(ctx, rsp, rsp_length);
- }
- int modbus_reply_exception(modbus_t *ctx, const uint8_t *req,
- unsigned int exception_code)
- {
- int offset = ctx->backend->header_length;
- int slave = req[offset - 1];
- int function = req[offset];
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- int rsp_length;
- int dummy_length = 99;
- sft_t sft;
- if (ctx->backend->filter_request(ctx, slave) == 1) {
- /* Filtered */
- return 0;
- }
- sft.slave = slave;
- sft.function = function + 0x80;;
- sft.t_id = ctx->backend->prepare_response_tid(req, &dummy_length);
- rsp_length = ctx->backend->build_response_basis(&sft, rsp);
- /* Positive exception code */
- if (exception_code < MODBUS_EXCEPTION_MAX) {
- rsp[rsp_length++] = exception_code;
- return send_msg(ctx, rsp, rsp_length);
- } else {
- errno = EINVAL;
- return -1;
- }
- }
- /* Reads IO status */
- static int read_io_status(modbus_t *ctx, int function,
- int addr, int nb, uint8_t *dest)
- {
- int rc;
- int req_length;
- uint8_t req[_MIN_REQ_LENGTH];
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- req_length = ctx->backend->build_request_basis(ctx, function, addr, nb, req);
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- int i, temp, bit;
- int pos = 0;
- int offset;
- int offset_end;
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- if (rc == -1)
- return -1;
- offset = ctx->backend->header_length + 2;
- offset_end = offset + rc;
- for (i = offset; i < offset_end; i++) {
- /* Shift reg hi_byte to temp */
- temp = rsp[i];
- for (bit = 0x01; (bit & 0xff) && (pos < nb);) {
- dest[pos++] = (temp & bit) ? TRUE : FALSE;
- bit = bit << 1;
- }
- }
- }
- return rc;
- }
- /* Reads the boolean status of bits and sets the array elements
- in the destination to TRUE or FALSE (single bits). */
- int modbus_read_bits(modbus_t *ctx, int addr, int nb, uint8_t *dest)
- {
- int rc;
- if (nb > MODBUS_MAX_READ_BITS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Too many bits requested (%d > %d)\n",
- nb, MODBUS_MAX_READ_BITS);
- }
- errno = EMBMDATA;
- return -1;
- }
- rc = read_io_status(ctx, _FC_READ_COILS, addr, nb, dest);
- if (rc == -1)
- return -1;
- else
- return nb;
- }
- /* Same as modbus_read_bits but reads the remote device input table */
- int modbus_read_input_bits(modbus_t *ctx, int addr, int nb, uint8_t *dest)
- {
- int rc;
- if (nb > MODBUS_MAX_READ_BITS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Too many discrete inputs requested (%d > %d)\n",
- nb, MODBUS_MAX_READ_BITS);
- }
- errno = EMBMDATA;
- return -1;
- }
- rc = read_io_status(ctx, _FC_READ_DISCRETE_INPUTS, addr, nb, dest);
- if (rc == -1)
- return -1;
- else
- return nb;
- }
- /* Reads the data from a remove device and put that data into an array */
- static int read_registers(modbus_t *ctx, int function, int addr, int nb,
- uint16_t *dest)
- {
- int rc;
- int req_length;
- uint8_t req[_MIN_REQ_LENGTH];
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- if (nb > MODBUS_MAX_READ_REGISTERS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Too many registers requested (%d > %d)\n",
- nb, MODBUS_MAX_READ_REGISTERS);
- }
- errno = EMBMDATA;
- return -1;
- }
- req_length = ctx->backend->build_request_basis(ctx, function, addr, nb, req);
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- int offset;
- int i;
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- if (rc == -1)
- return -1;
- offset = ctx->backend->header_length;
- for (i = 0; i < rc; i++) {
- /* shift reg hi_byte to temp OR with lo_byte */
- dest[i] = (rsp[offset + 2 + (i << 1)] << 8) |
- rsp[offset + 3 + (i << 1)];
- }
- }
- return rc;
- }
- /* Reads the holding registers of remote device and put the data into an
- array */
- int modbus_read_registers(modbus_t *ctx, int addr, int nb, uint16_t *dest)
- {
- int status;
- if (nb > MODBUS_MAX_READ_REGISTERS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Too many registers requested (%d > %d)\n",
- nb, MODBUS_MAX_READ_REGISTERS);
- }
- errno = EMBMDATA;
- return -1;
- }
- status = read_registers(ctx, _FC_READ_HOLDING_REGISTERS,
- addr, nb, dest);
- return status;
- }
- /* Reads the input registers of remote device and put the data into an array */
- int modbus_read_input_registers(modbus_t *ctx, int addr, int nb,
- uint16_t *dest)
- {
- int status;
- if (nb > MODBUS_MAX_READ_REGISTERS) {
- fprintf(stderr,
- "ERROR Too many input registers requested (%d > %d)\n",
- nb, MODBUS_MAX_READ_REGISTERS);
- errno = EMBMDATA;
- return -1;
- }
- status = read_registers(ctx, _FC_READ_INPUT_REGISTERS,
- addr, nb, dest);
- return status;
- }
- /* Write a value to the specified register of the remote device.
- Used by write_bit and write_register */
- static int write_single(modbus_t *ctx, int function, int addr, int value)
- {
- int rc;
- int req_length;
- uint8_t req[_MIN_REQ_LENGTH];
- req_length = ctx->backend->build_request_basis(ctx, function, addr, value, req);
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- /* Used by write_bit and write_register */
- uint8_t rsp[_MIN_REQ_LENGTH];
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- }
- return rc;
- }
- /* Turns ON or OFF a single bit of the remote device */
- int modbus_write_bit(modbus_t *ctx, int addr, int status)
- {
- return write_single(ctx, _FC_WRITE_SINGLE_COIL, addr,
- status ? 0xFF00 : 0);
- }
- /* Writes a value in one register of the remote device */
- int modbus_write_register(modbus_t *ctx, int addr, int value)
- {
- return write_single(ctx, _FC_WRITE_SINGLE_REGISTER, addr, value);
- }
- /* Write the bits of the array in the remote device */
- int modbus_write_bits(modbus_t *ctx, int addr, int nb, const uint8_t *src)
- {
- int rc;
- int i;
- int byte_count;
- int req_length;
- int bit_check = 0;
- int pos = 0;
- uint8_t req[MAX_MESSAGE_LENGTH];
- if (nb > MODBUS_MAX_WRITE_BITS) {
- if (ctx->debug) {
- fprintf(stderr, "ERROR Writing too many bits (%d > %d)\n",
- nb, MODBUS_MAX_WRITE_BITS);
- }
- errno = EMBMDATA;
- return -1;
- }
- req_length = ctx->backend->build_request_basis(ctx,
- _FC_WRITE_MULTIPLE_COILS,
- addr, nb, req);
- byte_count = (nb / 8) + ((nb % 8) ? 1 : 0);
- req[req_length++] = byte_count;
- for (i = 0; i < byte_count; i++) {
- int bit;
- bit = 0x01;
- req[req_length] = 0;
- while ((bit & 0xFF) && (bit_check++ < nb)) {
- if (src[pos++])
- req[req_length] |= bit;
- else
- req[req_length] &=~ bit;
- bit = bit << 1;
- }
- req_length++;
- }
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- }
- return rc;
- }
- /* Write the values from the array to the registers of the remote device */
- int modbus_write_registers(modbus_t *ctx, int addr, int nb, const uint16_t *src)
- {
- int rc;
- int i;
- int req_length;
- int byte_count;
- uint8_t req[MAX_MESSAGE_LENGTH];
- if (nb > MODBUS_MAX_WRITE_REGISTERS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Trying to write to too many registers (%d > %d)\n",
- nb, MODBUS_MAX_WRITE_REGISTERS);
- }
- errno = EMBMDATA;
- return -1;
- }
- req_length = ctx->backend->build_request_basis(ctx,
- _FC_WRITE_MULTIPLE_REGISTERS,
- addr, nb, req);
- byte_count = nb * 2;
- req[req_length++] = byte_count;
- for (i = 0; i < nb; i++) {
- req[req_length++] = src[i] >> 8;
- req[req_length++] = src[i] & 0x00FF;
- }
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- }
- return rc;
- }
- /* Read multiple registers from remote device to dest array and write multiple
- registers to remote device from data array. */
- int modbus_read_and_write_registers(modbus_t *ctx,
- int read_addr, int read_nb, uint16_t *dest,
- int write_addr, int write_nb, const uint16_t *data)
- {
- int rc;
- int req_length;
- int i;
- int byte_count;
- uint8_t req[MAX_MESSAGE_LENGTH];
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- if (read_nb > MODBUS_MAX_READ_REGISTERS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Too many registers requested (%d > %d)\n",
- read_nb, MODBUS_MAX_READ_REGISTERS);
- }
- errno = EMBMDATA;
- return -1;
- }
- if (write_nb > MODBUS_MAX_RW_WRITE_REGISTERS) {
- if (ctx->debug) {
- fprintf(stderr,
- "ERROR Too many registers to write (%d > %d)\n",
- write_nb, MODBUS_MAX_RW_WRITE_REGISTERS);
- }
- errno = EMBMDATA;
- return -1;
- }
- req_length = ctx->backend->build_request_basis(ctx,
- _FC_READ_AND_WRITE_REGISTERS,
- read_addr, read_nb, req);
- req[req_length++] = write_addr >> 8;
- req[req_length++] = write_addr & 0x00ff;
- req[req_length++] = write_nb >> 8;
- req[req_length++] = write_nb & 0x00ff;
- byte_count = write_nb * 2;
- req[req_length++] = byte_count;
- for (i = 0; i < write_nb; i++) {
- req[req_length++] = data[i] >> 8;
- req[req_length++] = data[i] & 0x00FF;
- }
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- int offset;
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- if (rc == -1)
- return -1;
- offset = ctx->backend->header_length;
- /* If rc is negative, the loop is jumped ! */
- for (i = 0; i < rc; i++) {
- /* shift reg hi_byte to temp OR with lo_byte */
- dest[i] = (rsp[offset + 2 + (i << 1)] << 8) |
- rsp[offset + 3 + (i << 1)];
- }
- }
- return rc;
- }
- /* Send a request to get the slave ID of the device (only available in serial
- communication). */
- int modbus_report_slave_id(modbus_t *ctx, uint8_t *dest)
- {
- int rc;
- int req_length;
- uint8_t req[_MIN_REQ_LENGTH];
- req_length = ctx->backend->build_request_basis(ctx, _FC_REPORT_SLAVE_ID,
- 0, 0, req);
- /* HACKISH, addr and count are not used */
- req_length -= 4;
- rc = send_msg(ctx, req, req_length);
- if (rc > 0) {
- int i;
- int offset;
- uint8_t rsp[MAX_MESSAGE_LENGTH];
- rc = receive_msg(ctx, rsp, MSG_CONFIRMATION);
- if (rc == -1)
- return -1;
- rc = check_confirmation(ctx, req, rsp, rc);
- if (rc == -1)
- return -1;
- offset = ctx->backend->header_length + 2;
- /* Byte count, slave id, run indicator status,
- additional data */
- for (i=0; i < rc; i++) {
- dest[i] = rsp[offset + i];
- }
- }
- return rc;
- }
- void _modbus_init_common(modbus_t *ctx)
- {
- /* Slave and socket are initialized to -1 */
- ctx->slave = -1;
- ctx->s = -1;
- ctx->debug = FALSE;
- ctx->error_recovery = MODBUS_ERROR_RECOVERY_NONE;
- ctx->response_timeout.tv_sec = 0;
- ctx->response_timeout.tv_usec = _RESPONSE_TIMEOUT;
- ctx->byte_timeout.tv_sec = 0;
- ctx->byte_timeout.tv_usec = _BYTE_TIMEOUT;
- }
- /* Define the slave number */
- int modbus_set_slave(modbus_t *ctx, int slave)
- {
- return ctx->backend->set_slave(ctx, slave);
- }
- int modbus_set_error_recovery(modbus_t *ctx,
- modbus_error_recovery_mode error_recovery)
- {
- if (error_recovery >= 0) {
- ctx->error_recovery = (uint8_t) error_recovery;
- } else {
- errno = EINVAL;
- return -1;
- }
- return 0;
- }
- void modbus_set_socket(modbus_t *ctx, int socket)
- {
- ctx->s = socket;
- }
- int modbus_get_socket(modbus_t *ctx)
- {
- return ctx->s;
- }
- /* Get the timeout interval used to wait for a response */
- void modbus_get_response_timeout(modbus_t *ctx, struct timeval *timeout)
- {
- *timeout = ctx->response_timeout;
- }
- void modbus_set_response_timeout(modbus_t *ctx, const struct timeval *timeout)
- {
- ctx->response_timeout = *timeout;
- }
- /* Get the timeout interval between two consecutive bytes of a message */
- void modbus_get_byte_timeout(modbus_t *ctx, struct timeval *timeout)
- {
- *timeout = ctx->byte_timeout;
- }
- void modbus_set_byte_timeout(modbus_t *ctx, const struct timeval *timeout)
- {
- ctx->byte_timeout = *timeout;
- }
- int modbus_get_header_length(modbus_t *ctx)
- {
- return ctx->backend->header_length;
- }
- int modbus_connect(modbus_t *ctx)
- {
- return ctx->backend->connect(ctx);
- }
- void modbus_close(modbus_t *ctx)
- {
- if (ctx == NULL)
- return;
- ctx->backend->close(ctx);
- }
- void modbus_free(modbus_t *ctx)
- {
- if (ctx == NULL)
- return;
- free(ctx->backend_data);
- free(ctx);
- }
- void modbus_set_debug(modbus_t *ctx, int boolean)
- {
- ctx->debug = boolean;
- }
- /* Allocates 4 arrays to store bits, input bits, registers and inputs
- registers. The pointers are stored in modbus_mapping structure.
- The modbus_mapping_new() function shall return the new allocated structure if
- successful. Otherwise it shall return NULL and set errno to ENOMEM. */
- modbus_mapping_t* modbus_mapping_new(int nb_bits, int nb_input_bits,
- int nb_registers, int nb_input_registers)
- {
- modbus_mapping_t *mb_mapping;
- mb_mapping = (modbus_mapping_t *)malloc(sizeof(modbus_mapping_t));
- if (mb_mapping == NULL) {
- return NULL;
- }
- /* 0X */
- mb_mapping->nb_bits = nb_bits;
- if (nb_bits == 0) {
- mb_mapping->tab_bits = NULL;
- } else {
- /* Negative number raises a POSIX error */
- mb_mapping->tab_bits =
- (uint8_t *) malloc(nb_bits * sizeof(uint8_t));
- if (mb_mapping->tab_bits == NULL) {
- free(mb_mapping);
- return NULL;
- }
- memset(mb_mapping->tab_bits, 0, nb_bits * sizeof(uint8_t));
- }
- /* 1X */
- mb_mapping->nb_input_bits = nb_input_bits;
- if (nb_input_bits == 0) {
- mb_mapping->tab_input_bits = NULL;
- } else {
- mb_mapping->tab_input_bits =
- (uint8_t *) malloc(nb_input_bits * sizeof(uint8_t));
- if (mb_mapping->tab_input_bits == NULL) {
- free(mb_mapping->tab_bits);
- free(mb_mapping);
- return NULL;
- }
- memset(mb_mapping->tab_input_bits, 0, nb_input_bits * sizeof(uint8_t));
- }
- /* 4X */
- mb_mapping->nb_registers = nb_registers;
- if (nb_registers == 0) {
- mb_mapping->tab_registers = NULL;
- } else {
- mb_mapping->tab_registers =
- (uint16_t *) malloc(nb_registers * sizeof(uint16_t));
- if (mb_mapping->tab_registers == NULL) {
- free(mb_mapping->tab_input_bits);
- free(mb_mapping->tab_bits);
- free(mb_mapping);
- return NULL;
- }
- memset(mb_mapping->tab_registers, 0, nb_registers * sizeof(uint16_t));
- }
- /* 3X */
- mb_mapping->nb_input_registers = nb_input_registers;
- if (nb_input_registers == 0) {
- mb_mapping->tab_input_registers = NULL;
- } else {
- mb_mapping->tab_input_registers =
- (uint16_t *) malloc(nb_input_registers * sizeof(uint16_t));
- if (mb_mapping->tab_input_registers == NULL) {
- free(mb_mapping->tab_registers);
- free(mb_mapping->tab_input_bits);
- free(mb_mapping->tab_bits);
- free(mb_mapping);
- return NULL;
- }
- memset(mb_mapping->tab_input_registers, 0,
- nb_input_registers * sizeof(uint16_t));
- }
- return mb_mapping;
- }
- /* Frees the 4 arrays */
- void modbus_mapping_free(modbus_mapping_t *mb_mapping)
- {
- free(mb_mapping->tab_input_registers);
- free(mb_mapping->tab_registers);
- free(mb_mapping->tab_input_bits);
- free(mb_mapping->tab_bits);
- free(mb_mapping);
- }
- #ifndef HAVE_STRLCPY
- /*
- * Function strlcpy was originally developed by
- * Todd C. Miller <Todd.Miller@courtesan.com> to simplify writing secure code.
- * See ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/strlcpy.3
- * for more information.
- *
- * Thank you Ulrich Drepper... not!
- *
- * Copy src to string dest of size dest_size. At most dest_size-1 characters
- * will be copied. Always NUL terminates (unless dest_size == 0). Returns
- * strlen(src); if retval >= dest_size, truncation occurred.
- */
- size_t strlcpy(char *dest, const char *src, size_t dest_size)
- {
- register char *d = dest;
- register const char *s = src;
- register size_t n = dest_size;
- /* Copy as many bytes as will fit */
- if (n != 0 && --n != 0) {
- do {
- if ((*d++ = *s++) == 0)
- break;
- } while (--n != 0);
- }
- /* Not enough room in dest, add NUL and traverse rest of src */
- if (n == 0) {
- if (dest_size != 0)
- *d = '\0'; /* NUL-terminate dest */
- while (*s++)
- ;
- }
- return (s - src - 1); /* count does not include NUL */
- }
- #endif
|