Open Modbus TCP Specifications
Open Modbus TCP Specifications
140798915.doc
3/29/99
Contents
Contents............................................................................................................................................................2 1. Status of this specification............................................................................................................................3 2. Overview.......................................................................................................................................................3 3. Conformance class summary.......................................................................................................................5 4. Protocol structure.........................................................................................................................................7 5. Protocol reference by conformance class.....................................................................................................8 6. Exception codes..........................................................................................................................................17 Appendices.....................................................................................................................................................18 A. Client and Server Implementation Guidance...........................................................................................18 B. Data Encoding for non-word data.............................................................................................................21
140798915.doc
3/29/99
2. Overview
MODBUS/TCP is a variant of the MODBUS family of simple, vendor-neutral communication protocols intended for supervision and control of automation equipment. Specifically, it covers the use of MODBUS messaging in an Intranet or Internet environment using the TCP/IP protocols. The most common use of the protocols at this time are for Ethernet attachment of PLCs, I/O modules, and gateways to other simple field buses or I/O networks. The MODBUS/TCP protocol is being published as a (de-facto) automation standard. Since MODBUS is already widely known, there should be little information in this document which could not be obtained elsewhere. However, an attempt has been made to clarify which functions within MODBUS have value for interoperability of general automation equipment, and which parts are baggage from the alternate use of MODBUS as a programming protocol for PLCs. This is done below by grouping supported message types into conformance classes which differentiate between those messages which are universally implemented and those which are optional, particularly those specific to devices such as PLCs.
2.1 Connection-oriented
In MODBUS, data transactions are traditionally stateless, making them highly resistant to disruption from noise and yet requiring minimal recovery information to be maintained at either end. Programming operations, on the other hand, expect a connection-oriented approach. This was achieved on the simpler variants by an exclusive login token, and on the Modbus Plus variant by explicit Program Path capabilities which maintained a duplex association until explicitly broken down. MODBUS/TCP handles both situations. A connection is easily recognized at the protocol level, and a single connection may carry multiple independent transactions. In addition, TCP allows a very large number of concurrent connections, so in most cases it is the choice of the initiator whether to reconnect as required or re-use a long-lived connection.
140798915.doc
3/29/99
Developers familiar with MODBUS may wonder why the connection-oriented TCP protocol is used rather than the datagram-oriented UDP. The main reason is to keep control of an individual transaction by enclosing it in a connection which can be identified, supervised, and canceled without requiring specific action on the part of the client and server applications. This gives the mechanism a wide tolerance to network performance changes, and allows security features such as firewalls and proxies to be easily added. Similar reasoning was used by the original developers of the World Wide Web when they chose to implement a minimal Web query as a single transaction using TCP on well-known port 80.
The distinction between inputs and outputs, and between bit-addressable and word-addressable data items, do not imply any application behavior. It is perfectly acceptable, and very common, to regard all four tables as overlaying one another, if this is the most natural interpretation on the target machine in question. For each of the primary tables, the protocol allows individual selection of 65536 data items, and the operations of read or write of those items are designed to span multiple consecutive data items up to a data size limit which is dependent on the transaction function code. There is no assumption that the data items represent a true contiguous array of data, although that is the interpretation used by most simple PLCs The read and write general reference function codes are defined to carry a 32 bit reference number, and could be used to allow direct access to data items within a VERY large space. Today there are no PLC devices which take advantage of that. One potential source of confusion is the relationship between the reference numbers used in MODBUS functions, and the register numbers used in Modicon PLCs. For historical reasons, user reference numbers were expressed as decimal numbers with a starting offset of 1. However MODBUS uses the more natural software interpretation of an unsigned integer index starting at zero. So a modbus message requesting the read of a register at offset 0 would return the value known to the application programmer as found in register 4:00001 (memory type 4 = output register, reference 00001)
140798915.doc
3/29/99
3.1 Class 0
This is the minimum useful set of functions, for both a MASTER and a SLAVE. read multiple registers (fc 3) write multiple registers (fc 16)
3.2 Class 1
This is the additional set of functions which is commonly implemented and interoperable. As explained before, many slaves choose to treat input, output, discrete and register as equivalent. read coils (fc 1) read input discretes (fc 2) read input registers (fc 4) write coil (fc 5) write single register (fc 6)
140798915.doc
3/29/99
read exception status (fc 7) This function typically has a different meaning for each slave family
3.3 Class 2
These are the data transfer functions needed for routine operations such as HMI and supervision force multiple coils (fc 15) read general reference (fc 20) This function has the ability to handle multiple simultaneous requests, and can accept a reference number of 32 bits. Current 584 and 984 PLCs only use this function to accept references of type 6 (extended register files). This function would be the most appropriate to extend to handle large register spaces and data items which currently lack reference numbers such as unlocated variables. write general reference (fc 21) This function has the ability to handle multiple simultaneous requests, and can accept a reference number of 32 bits. Current 584 and 984 PLCs only use this function to accept references of type 6 (extended register files). This function would be the most appropriate to extend to handle large register spaces and data items which currently lack reference numbers such as unlocated variables. mask write register (fc 22) read/write registers (fc 23) This function allows the input of a range of registers and the output of a range of registers as a single transaction. It is the most efficient way, using MODBUS, to perform a regular exchange of a state image such as with an I/O module. Thus a high performance but versatile data collection device might choose to implement functions 3, 16 and 23 to combine rapid regular exchange of data (23) with the ability to perform on-demand interrogations or updates of particular data items (3 and 16) read FIFO queue (fc 24) A somewhat specialized function, intended to allow the transfer of data from a table structured as a FIFO (for use with the FIN and FOUT function blocks on the 584/984) to a host computer. Useful in certain types of event logging applications
140798915.doc
3/29/99
poll (484) (fc 10) get comm event counters (Modbus) (fc 11) get comm event log (Modbus) (fc 12) program (584/984) (fc 13) poll (584/984) (fc 14) report slave ID (fc 17) program (884/u84) (fc 18) reset comm link (884/u84) (fc 19) program (ConCept) (fc 40) firmware replacement (fc 125) program (584/984) (fc 126) report local address (Modbus) (fc 127)
4. Protocol structure
This section describes the general form of encapsulation of a MODBUS request or response when carried on the MODBUS/TCP network. It is important to note that the structure of the request and response body, from the function code to the end of the data portion, have EXACTLY the same layout and meaning as in the other MODBUS variants, such as MODBUS serial port - ASCII encoding MODBUS serial port - RTU (binary) encoding MODBUS PLUS network - data path The only differences in these other cases are the form of any framing sequence, error check pattern, and address interpretation. All requests are sent via TCP on registered port 502. Requests are normally sent in half-duplex fashion on a given connection. That is, there is no benefit in sending additional requests on a single connection while a response is outstanding. Devices which wish to obtain high peak transfer rates are instead encouraged to establish multiple TCP connections to the same target However some existing client devices are known to attempt to pipeline requests. Design techniques which allow a server to accommodate this behavior are described in Appendix A. The MODBUS slave address field is replaced by a single byte Unit Identifier which may be used to communicate via devices such as bridges and gateways which use a single IP address to support multiple independent end units. The request and response are prefixed by six bytes as follows byte 0: transaction identifier - copied by server - usually 0 byte 1: transaction identifier - copied by server - usually 0
140798915.doc
3/29/99
protocol identifier = 0 protocol identifier = 0 length field (upper byte) = 0 (since all messages are smaller than 256) length field (lower byte) = number of bytes following
byte 6: unit identifier (previously slave address) byte 7: MODBUS function code byte 8 on: data as needed So an example transaction read 1 register at offset 4 from UI 9 returning a value of 5 would be request: 00 00 00 00 00 06 09 03 00 04 00 01
response: 00 00 00 00 00 05 09 03 02 00 05 See later section for examples of the use of each of the function codes in conformance classes 0-2 Designers familiar with MODBUS should note that the CRC-16 or LRC check fields are NOT needed in MODBUS/TCP. The TCP/IP and link layer (eg. Ethernet) checksum mechanisms instead are used to verify accurate delivery of the packet.
140798915.doc
3/29/99
Byte 1-2: Byte 3-4: Response Byte 0: Byte 1: Byte 2-(B+1): Exceptions Byte 0: Byte 1: Example
Read 1 register at reference 0 (40001 in Modicon 984) resulting in value 1234 hex 03 00 00 00 01 => 03 02 12 34
140798915.doc
3/29/99
Byte 0: Byte 1-2: Byte 3-4: Response Byte 0: Byte 1: Byte 2-(B+1): Exceptions Byte 0: Byte 1: Example
FC = 01 Byte count of response (B=(bit count+7)/8) Bit values (least significant bit is first coil!)
Read 1 coil at reference 0 (00001 in Modicon 984) resulting in value 1 01 00 00 00 01 => 01 01 01 Note that the format of the return data is not consistent with a big-endian architecture. Note also that this request can be very computation-intensive on the slave if the request calls for multiple words and they are not aligned on 16-bit boundaries.
140798915.doc
10
3/29/99
140798915.doc
11
3/29/99
Byte 0: Byte 1-2: Byte 3-4: Response Byte 0: Byte 1-2: Byte 3-4: Exceptions Byte 0: Byte 1: Example
Write 1 register at reference 0 (40001 in Modicon 984) of value 1234 hex 06 00 00 12 34 => 06 00 00 12 34
5.3 Class 2 commands detail 5.3.1 Force multiple coils (FC 15)
140798915.doc
12
3/29/99
Request Byte 0: Byte 1-2: Byte 3-4: Byte 5: Byte 6-(B+5): Response Byte 0: Byte 1-2: Byte 3-4: Exceptions Byte 0: Byte 1: Example Write 3 coils at reference 0 (00001 in Modicon 984) to values 0,0,1 0F 00 00 00 03 01 04 => 0F 00 00 00 03 Note that the format of the input data is not consistent with a big-endian architecture. Note also that this request can be very computation-intensive on the slave if the request calls for multiple words and they are not aligned on 16-bit boundaries. FC = 8F (hex) exception code = 01 or 02 FC = 0F (hex) Reference number Bit count FC = 0F (hex) Reference number Bit count (1-800) Byte count (B = (bit count + 7)/8) Data to be written (least significant bit = first coil)
140798915.doc
13
3/29/99
Read 1 extended register at reference 1:2 (File 1 offset 2 in Modicon 984) resulting in value 1234 hex 14 07 06 00 01 00 02 00 01 (future) Read 1 register at reference 0 returning 1234 hex, and 2 registers at reference 5 returning 5678 and 9abc hex 14 0E 04 00 00 00 00 00 01 04 00 00 00 05 00 02 => 14 0A 03 04 12 34 05 04 56 78 9A BC Note that the transfer size limits are difficult to define in a mathematical formula. Broadly, the message sizes for request and response are each limited to 256 bytes for buffer size reasons, and the aggregate size of the individual request and response data frames must be considered. Exception type 04 will be generated if the slave is unwilling to process the message because the response would be too large. => 14 04 03 06 12 34
140798915.doc
14
3/29/99
Byte 1: Example
exception code = 01 or 02 or 03 or 04
Write 1 extended register at reference 1:2 (File 1 offset 2 in Modicon 984) to value 1234 hex 15 09 06 00 01 00 02 00 01 12 34 => (future) Write 1 register at reference 0 to value 1234 hex, and 2 registers at reference 5 to values 5678 and 9abc hex 15 14 04 00 00 00 00 00 01 12 34 04 00 00 00 05 00 02 56 78 9A BC 15 14 04 00 00 00 00 00 01 12 34 04 00 00 00 05 00 02 56 78 9A BC Note that the transfer size limits are difficult to define in a mathematical formula. Broadly, the message sizes for request and response are each limited to 256 bytes for buffer size reasons, and the aggregate size of the individual request and response data frames must be considered. Exception type 04 will be generated if the slave is unwilling to process the message because the response would be too large. 15 09 06 00 01 00 02 00 01 12 34
140798915.doc
15
3/29/99
Byte 5-6: Byte 7-8: Byte 9: Byte 10-(B+9): Response Byte 0: Byte 1: Byte 2-(B+1) Exceptions Byte 0: Byte 1: Example
Reference number for write Word count for write (1-100) Byte count (B = 2 x word count for write) Register values
Write 1 register at reference 3 (40004 in Modicon 984) of value 0123 hex and read 2 registers at reference 0 returning values 0004 and 5678 hex 17 00 00 00 02 00 03 00 01 02 01 23 => 17 04 00 04 56 78 Note that if the register ranges for writing and reading overlap, the results are undefined. Some devices implement the write before the read, but others implement the read before the write.
140798915.doc
16
3/29/99
All in all, this should be considered a limited subset of fn 16 - read multiple registers, since the latter can be used to perform all of the required functionality.
6. Exception codes
There is a defined set of exception codes to be returned by slaves in the event of problems. Note that masters may send out commands speculatively, and use the success or exception codes received to determine which MODBUS commands the device is willing to respond to and to determine the size of the various data regions available on the slave. All exceptions are signaled by adding 0x80 to the function code of the request, and following this byte by a single reason byte for example as follows 03 12 34 00 01 => 83 02 request read 1 register at index 0x1234 response exception type 2 - illegal data address The list of exceptions follows 01 ILLEGAL FUNCTlON The function code received in the query is not an allowable action for the slave. This may be because the function code is only applicable to newer controllers, and was not implemented in the unit selected. It could also indicate that the slave is in the wrong state to process a request of this type, for example because it is unconfigured and is being asked to return register values. 02 ILLEGAL DATA ADDRESS The data address received in the query is not an allowable address for the slave. More specifically, the combination of reference number and transfer length is invalid. For a controller with 100 registers, a request with offset 96 and length 4 would succeed, a request with offset 96 and length 5 will generate exception 02. 03 ILLEGAL DATA VALUE A value contained in the query data field is not an allowable value for the slave. This indicates a fault in the structure of the remainder of a complex request, such as that the implied length is incorrect. It specifically does NOT mean that a data item submitted for storage in a register has a value outside the expectation of the application program, since the MODBUS protocol is unaware of the significance of any particular value of any particular register. 04 ILLEGAL RESPONSE LENGTH Indicates that the request as framed would generate a response whose size exceeds the available MODBUS data size. Used only by functions generating a multi-part response, such as functions 20 and 21. 05 ACKNOWLEDGE Specialized use in conjunction with programming commands 06 SLAVE DEVlCE BUSY Specialized use in conjunction with programming commands 07 NEGATlVE ACKNOWLEDGE
140798915.doc
17
3/29/99
Specialized use in conjunction with programming commands 08 MEMORY PARlTY ERROR Specialized use in conjunction with function codes 20 and 21, to indicate that the extended file area failed to pass a consistency check. 0A GATEWAY PATH UNAVAILABLE Specialized use in conjunction with Modbus Plus gateways, indicates that the gateway was unable to allocate a Modbus Plus PATH to use to process the request. Usually means that the gateway is misconfigured. 0B GATEWAY TARGET DEVICE FAILED TO RESPOND Specialized use in conjunction with Modbus Plus gateways, indicates that no response was obtained from the target device. Usually means that the device is not present on the network.
140798915.doc
18
3/29/99
other clients. A time of 1 second is suggested as the maximum period to leave a connection open at the client. In the event of a timeout waiting for a response, issue a unilateral close of the connection, open up a new one, and resubmit the request. This technique allows the client control of retry timing which is superior to that provided by default by TCP. It also allows for alternate fallback strategies, such as submitting the request to an alternate IP address, using a totally independent communication network, in case of failure of a network infrastructure component.
140798915.doc
19
3/29/99
Generate the MODBUS/TCP prefix for the response, copying the transaction identifier field from bytes 0 and 1 of the request, and recalculating the length field. Submit the response, including the MODBUS/TCP prefix, as a single buffer for transmission on the connection, using send() Go back and wait for the next 6 byte prefix record. Eventually, when the client elects to close the connection, the recv() of the 6 byte prefix will fail. An orderly close will usually result in a recv() with a zero return byte count. A force close may generate an error return from the recv(). In either case, close the connection and cancel the current thread.
140798915.doc
20
3/29/99
See if the application response information is available, if it is, build up the response packet, and send it using send(), exactly as for the multithreaded case. Set the state to new request It is possible to optimize performance by combining the multiple select() calls into a single call on a percycle basis, without affecting the functional structure of the application.
140798915.doc
21
3/29/99
The most efficient method of transporting bulk information of any type over MODBUS us to use function codes 3 (read registers), 16 (write registers), or possibly 23 (read/write registers). Although these functions are defined in terms of their operation on 16-bit registers, they can be used to move any type of information from one machine to another, so long as that information can be represented as a contiguous block of 16-bit words. The original MODBUS-capable PLCs were specialized computers using a big-endian architecture. Most modern PLCs are based on commodity microprocessors using a little-endian architecture. The fact that MODBUS is used to exchange data potentially between these two architectures introduces some subtleties which can trap the unwary. Almost all data types other than the primitive discrete bit and 16 bit register were introduced after the adoption of little-endian microprocessors. Therefore the representation on MODBUS of these data types follows the little-endian model, meaning First register bits 15 - 0 = bits 15 - 0 of data item Second register bits 15 - 0 = bits 31 - 16 of data item Third register bits 15 - 0 = bits 47 - 32 of data item etc. etc.
140798915.doc
22
3/29/99
In particular, note that the IEC-1131 numbering convention for bits within a word is from 0 (least significant) to 15 (most significant), which is the opposite of the discrete numbering.
140798915.doc
23
3/29/99
DINT 32-bit quantity. Bits 15 - 0 of first register = bits 15 - 0 of DINT Bits 15 - 0 of second register = bits 31 - 16 of DINT INT Bits 15 - 0 of register = bits 15 - 0 of INT REAL 32-bit Intel single precision real Bits 15 - 0 of first register = bits 15 - 0 of REAL (bits 15 - 0 of significand) Bits 15 - 0 of second register = bits 31 - 16 of REAL (exponent + bits 23 - 16 of significand) UDINT 32-bit quantity. Bits 15 - 0 of first register = bits 15 - 0 of UDINT Bits 15 - 0 of second register = bits 31 - 16 of UDINT UINT Bits 15 - 0 of register = bits 15 - 0 of INT For any others, see the appropriate IEC-1131 programming manuals
140798915.doc
24
3/29/99