Code

frontend/parser: Made clear that parser modes are flags.
[sysdb.git] / src / include / frontend / proto.h
index c006c49afef15284c98d7da909b5654c8217952b..3819e3f07ce953309c73265a8f81c82a9fd5e924 100644 (file)
@@ -40,6 +40,8 @@ extern "C" {
  * message body depends on the message type. Both, the message type and length
  * are stored in an unsigned 32bit integer in network byte-order.
  *
+ * Any strings in the message body may not include a zero byte.
+ *
  *                  1               3               4               6
  *  0               6               2               8               4
  * +-------------------------------+-------------------------------+
@@ -51,6 +53,10 @@ extern "C" {
 
 /* status codes returned to a client */
 typedef enum {
+       /*
+        * Generic status and log messages.
+        */
+
        /*
         * CONNECTION_OK:
         * Indicates that a command was successful. The message body will usually
@@ -59,30 +65,12 @@ typedef enum {
         *
         * 0               32              64
         * +---------------+---------------+
-        * | message type  | length        |
+        * | OK            | len(msg)      |
         * +---------------+---------------+
         * | optional status message ...   |
         */
        CONNECTION_OK = 0,
 
-       /*
-        * CONNECTION_DATA:
-        * Indicates that a data query was successful. The message body will
-        * contain the type of the data and the result encoded as a JSON string.
-        * The type is the same as the command code of the respective command (see
-        * below) and is stored as an unsigned 32bit integer in network
-        * byte-order. The result may be empty (but the type is still included).
-        *
-        * 0               32              64
-        * +---------------+---------------+
-        * | message type  | length        |
-        * +---------------+---------------+
-        * | result type   | result ...    |
-        * +---------------+               |
-        * | ...                           |
-        */
-       CONNECTION_DATA,
-
        /*
         * CONNECTION_ERROR:
         * Indicates that a command has failed. The message body will contain a
@@ -90,7 +78,7 @@ typedef enum {
         *
         * 0               32              64
         * +---------------+---------------+
-        * | message type  | length        |
+        * | ERROR         | len(msg)      |
         * +---------------+---------------+
         * | error message ...             |
         */
@@ -99,16 +87,42 @@ typedef enum {
        /*
         * CONNECTION_LOG:
         * Indicates an asynchronous log message. The message body will contain
-        * the message string providing informational or warning logs. Log
-        * messages may be sent to the client any time.
+        * the log priority (see utils/error.h) and message. Log messages may be
+        * sent to the client any time.
         *
         * 0               32              64
         * +---------------+---------------+
-        * | message type  | length        |
+        * | LOG           | length        |
         * +---------------+---------------+
-        * | log message ...               |
+        * | log priority  | log message   |
+        * +---------------+               |
+        * | ...                           |
         */
        CONNECTION_LOG,
+
+       /*
+        * Query-result specific messages.
+        */
+
+       /*
+        * CONNECTION_DATA:
+        * Indicates that a data query was successful. The message body will
+        * contain the type of the data and the result encoded as a JSON string.
+        * The type is the same as the command code of the respective command (see
+        * below) and is stored as an unsigned 32bit integer in network
+        * byte-order. The result may be empty (but the type is still included) if
+        * the query did not return any result. The type and the result message
+        * are empty on empty commands.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | DATA          | length        |
+        * +---------------+---------------+
+        * | result type   | result ...    |
+        * +---------------+               |
+        * | ...                           |
+        */
+       CONNECTION_DATA = 100,
 } sdb_conn_status_t;
 
 /* accepted commands / state of the connection */
@@ -122,7 +136,13 @@ typedef enum {
        /*
         * CONNECTION_PING:
         * Check if the current connection is still alive. The server will reply
-        * with CONNECTION_OK if it was able to handle the command.
+        * with CONNECTION_OK and an empty message body if it was able to handle
+        * the command.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | PING          | 0             |
+        * +---------------+---------------+
         */
        CONNECTION_PING,
 
@@ -136,6 +156,12 @@ typedef enum {
         * the server using special messages specific to the authentication
         * method. The server does not send any asynchronous messages before
         * startup is complete.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | STARTUP       | len(username) |
+        * +---------------+---------------+
+        * | username ...                  |
         */
        CONNECTION_STARTUP,
 
@@ -152,27 +178,63 @@ typedef enum {
         * CONNECTION_QUERY:
         * Execute a query in the server. The message body shall include a single
         * query command as a text string. Multiple commands are ignored by the
-        * server entirely.
+        * server entirely to protect against injection attacks.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | QUERY         | len(query)    |
+        * +---------------+---------------+
+        * | query string ...              |
         */
        CONNECTION_QUERY,
 
        /*
         * CONNECTION_FETCH:
         * Execute the 'FETCH' command in the server. The message body shall
-        * include the hostname of the host to be retrieved.
+        * include the type and the identifier of the object to be retrieved.
+        * Hosts are identified by their name. Other types are not supported yet.
+        * The type is encoded as a 32bit integer in network byte-order.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | FETCH         | length        |
+        * +---------------+---------------+
+        * | object type   | identifier    |
+        * +---------------+               |
+        * | ...                           |
         */
        CONNECTION_FETCH,
 
        /*
         * CONNECTION_LIST:
-        * Execute the 'LIST' command in the server.
+        * Execute the 'LIST' command in the server. The message body may include
+        * the type of the objects to be listed, encoded as a 32bit integer in
+        * network byte-order. The response includes all hosts and the respective
+        * child objects. By default, all hosts are listed.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | LIST          | length        |
+        * +---------------+---------------+
+        * | [object type] |
+        * +---------------+
         */
        CONNECTION_LIST,
 
        /*
         * CONNECTION_LOOKUP:
         * Execute the 'LOOKUP' command in the server. The message body shall
-        * include the conditional expression of the 'MATCHING' clause.
+        * include the type of the objects to look up and a string representing
+        * the conditional expression of the 'MATCHING' clause. The type is
+        * encoded as a 32bit integer in network byte-order.
+        *
+        * 0               32              64
+        * +---------------+---------------+
+        * | LOOKUP        | length        |
+        * +---------------+---------------+
+        * | object type   | matching      |
+        * +---------------+               |
+        * | clause ...                    |
         */
        CONNECTION_LOOKUP,
 
@@ -187,6 +249,12 @@ typedef enum {
         * Command subcomponents.
         */
 
+       /*
+        * CONNECTION_MATCHER:
+        * A parsed matcher. Only used internally.
+        */
+       CONNECTION_MATCHER = 100,
+
        /*
         * CONNECTION_EXPR:
         * A parsed expression. Only used internally.