Merging security-M3 to master
[platform/upstream/iotivity.git] / resource / csdk / stack / include / octypes.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef OCTYPES_H_
22 #define OCTYPES_H_
23
24 #include "ocstackconfig.h"
25
26 #ifdef __cplusplus
27 #include <string.h>
28
29 extern "C" {
30 #endif // __cplusplus
31 #define WITH_PRESENCE
32 //-----------------------------------------------------------------------------
33 // Defines
34 //-----------------------------------------------------------------------------
35
36 //TODO: May want to refactor this in upcoming sprints.
37 //Don't want to expose to application layer that lower level stack is using CoAP.
38
39 /// Authority + URI string to prefix well known queries
40 #define OC_WELL_KNOWN_QUERY                  "224.0.1.187:5683/oic/res"
41 #define OC_MULTICAST_DISCOVERY_URI           "/oic/res"
42 #define OC_EXPLICIT_DEVICE_DISCOVERY_URI     "224.0.1.187:5683/oic/d?rt=core.led"
43 /// Multicast address and port string to prefix multicast queries
44 #define OC_MULTICAST_PREFIX                  "224.0.1.187:5683"
45 /// IP Multicast address to use for multicast requests
46 #define OC_MULTICAST_IP                      "224.0.1.187"
47 /// IP Multicast port to use for multicast requests
48 #define OC_MULTICAST_PORT                    5683
49
50 #ifdef WITH_PRESENCE
51 #define OC_DEFAULT_PRESENCE_TTL_SECONDS (60)
52 /// OC_MAX_PRESENCE_TTL_SECONDS sets the maximum time to live (TTL) for presence.
53 /// NOTE: Changing the setting to a longer duration may lead to unsupported and untested
54 /// operation.
55 #define OC_MAX_PRESENCE_TTL_SECONDS     (60 * 60 * 24) // 60 sec/min * 60 min/hr * 24 hr/day
56 #define OC_PRESENCE_URI                      "/oic/ad"
57 #endif
58
59 ///Separtor for multiple query string
60 #define OC_QUERY_SEPARATOR                "&;"
61
62 /**
63  * Attributes used to form a proper OIC conforming JSON message.
64  */
65 #define OC_RSRVD_OC                     "oic"
66 #define OC_RSRVD_PAYLOAD                "payload"
67 #define OC_RSRVD_HREF                   "href"
68 #define OC_RSRVD_PROPERTY               "prop"
69 #define OC_RSRVD_REPRESENTATION         "rep"
70 #define OC_RSRVD_CONTENT_TYPE           "ct"
71 #define OC_RSRVD_RESOURCE_TYPE          "rt"
72 #define OC_RSRVD_RESOURCE_TYPE_PRESENCE "oic.wk.ad"
73 #define OC_RSRVD_INTERFACE              "if"
74 #define OC_RSRVD_TTL                    "ttl"
75 #define OC_RSRVD_NONCE                  "non"
76 #define OC_RSRVD_TRIGGER                "trg"
77
78 #define OC_RSRVD_INTERFACE_DEFAULT      "oic.if.baseline"
79 #define OC_RSRVD_INTERFACE_LL           "oic.if.ll"
80 #define OC_RSRVD_INTERFACE_BATCH        "oic.if.b"
81 #define OC_RSRVD_INTERFACE_GROUP        "oic.mi.grp"
82 #define OC_RSRVD_MFG_DATE               "mndt"
83 #define OC_RSRVD_FW_VERSION             "mnfv"
84 #define OC_RSRVD_HOST_NAME              "hn"
85 #define OC_RSRVD_VERSION                "icv"
86 #define OC_RSRVD_OBSERVABLE             "obs"
87 #define OC_RSRVD_SECURE                 "sec"
88 #define OC_RSRVD_HOSTING_PORT           "port"
89 #define OC_RSRVD_SERVER_INSTANCE_ID     "sid"
90
91 //**** Presence "Announcement Triggers" ****
92 #define OC_RSRVD_TRIGGER_CREATE         "create"
93 #define OC_RSRVD_TRIGGER_CHANGE         "change"
94 #define OC_RSRVD_TRIGGER_DELETE         "delete"
95 //*******************
96
97 //**** Platform ****
98 #define OC_RSRVD_PLATFORM_ID            "pi"
99 #define OC_RSRVD_MFG_NAME               "mnmn"
100 #define OC_RSRVD_MFG_URL                "mnml"
101 #define OC_RSRVD_MODEL_NUM              "mnmo"
102 #define OC_RSRVD_MFG_DATE               "mndt"
103 #define OC_RSRVD_PLATFORM_VERSION       "mnpv"
104 #define OC_RSRVD_OS_VERSION             "mnos"
105 #define OC_RSRVD_HARDWARE_VERSION       "mnhw"
106 #define OC_RSRVD_FIRMWARE_VERSION       "mnfv"
107 #define OC_RSRVD_SUPPORT_URL            "mnsl"
108 #define OC_RSRVD_SYSTEM_TIME             "st"
109 //*******************
110
111 //**** Device ****
112 #define OC_RSRVD_DEVICE_ID              "di"
113 #define OC_RSRVD_DEVICE_NAME            "n"
114 #define OC_RSRVD_SPEC_VERSION           "lcv"
115 #define OC_RSRVD_DATA_MODEL_VERSION     "dmv"
116
117 #define OC_SPEC_VERSION                "0.9.0"
118 #define OC_DATA_MODEL_VERSION          "sec.0.95"
119 //*******************
120
121
122 //-----------------------------------------------------------------------------
123 // Typedefs
124 //-----------------------------------------------------------------------------
125
126 /**
127  * Data structure to encapsulate IPv4/IPv6/Contiki/lwIP device addresses.
128  */
129 typedef struct OCDevAddr
130 {
131     uint32_t     size;                    ///< length of the address stored in addr field.
132     uint8_t      addr[DEV_ADDR_SIZE_MAX]; ///< device address.
133 } OCDevAddr;
134
135 /**
136  * OC Virtual resources supported by every OC device.
137  */
138 typedef enum
139 {
140     OC_WELL_KNOWN_URI= 0,       ///< "/oic/res"
141     OC_DEVICE_URI,              ///< "/oic/d"
142     OC_PLATFORM_URI,            ///< "/oic/p"
143     OC_RESOURCE_TYPES_URI,      ///< "/oic/res/d/type"
144     #ifdef WITH_PRESENCE
145     OC_PRESENCE,                ///< "/oic/ad"
146     #endif
147     OC_MAX_VIRTUAL_RESOURCES    ///<s Max items in the list
148 } OCVirtualResources;
149
150 /**
151  * Standard RESTful HTTP Methods.
152  */
153 typedef enum
154 {
155     OC_REST_NOMETHOD    = 0,
156     OC_REST_GET         = (1 << 0),     ///< Read
157     OC_REST_PUT         = (1 << 1),     ///< Write
158     OC_REST_POST        = (1 << 2),     ///< Update
159     OC_REST_DELETE      = (1 << 3),     ///< Delete
160     /// Register observe request for most up date notifications ONLY.
161     OC_REST_OBSERVE     = (1 << 4),
162     /// Register observe request for all notifications, including stale notifications.
163     OC_REST_OBSERVE_ALL = (1 << 5),
164     /// Deregister observation, intended for internal use
165     OC_REST_CANCEL_OBSERVE = (1 << 6),
166     #ifdef WITH_PRESENCE
167     /// Subscribe for all presence notifications of a particular resource.
168     OC_REST_PRESENCE    = (1 << 7)
169     #endif
170 } OCMethod;
171
172 /**
173  * Host Mode of Operation.
174  */
175 typedef enum
176 {
177     OC_CLIENT = 0,
178     OC_SERVER,
179     OC_CLIENT_SERVER
180 } OCMode;
181
182 /**
183  * Quality of Service.
184  *
185  * OCQualityOfService attempts to abstract the guarantees provided by the underlying transport
186  * protocol.  The precise definitions of each quality of service level depend on the
187  * implementation.  In descriptions below are for the current implementation and may changed
188  * over time.
189  */
190 typedef enum
191 {
192     /// Packet delivery is best effort
193     OC_LOW_QOS = 0,
194     /// Packet delivery is best effort
195     OC_MEDIUM_QOS,
196     /// Acknowledgements are used to confirm delivery
197     OC_HIGH_QOS,
198     /// No Quality is defined, let the stack decide
199     OC_NA_QOS
200 } OCQualityOfService;
201
202 /**
203  * Resource Properties.
204  *
205  * ::OC_RES_PROP_NONE When none of the bits are set, the resource is non-discoverable &
206  *                    non-observable by the client.
207  * ::OC_ACTIVE        When this bit is set, the resource is initialized, otherwise the resource
208  *                    is 'inactive'. 'inactive' signifies that the resource has been marked for
209  *                    deletion or is already deleted.
210  * ::OC_DISCOVERABLE  When this bit is set, the resource is allowed to be discovered by clients.
211  * ::OC_OBSERVABLE    When this bit is set, the resource is allowed to be observed by clients.
212  * ::OC_SLOW          When this bit is set, the resource has been marked as 'slow'. 'slow'
213  *                    signifies that responses from this resource can expect delays in
214  *                    processing its requests from clients.
215  * ::OC_SECURE        When this bit is set, the resource is a secure resource.
216  */
217 typedef enum
218 {
219     OC_RES_PROP_NONE = (0),
220     OC_ACTIVE        = (1 << 0),
221     OC_DISCOVERABLE  = (1 << 1),
222     OC_OBSERVABLE    = (1 << 2),
223     OC_SLOW          = (1 << 3),
224     OC_SECURE        = (1 << 4)
225 } OCResourceProperty;
226
227 /**
228  * Transport Protocol IDs.
229  */
230 typedef enum
231 {
232     OC_INVALID_ID   = (1 << 0),
233     OC_COAP_ID      = (1 << 1)
234 } OCTransportProtocolID;
235
236 /**
237  * Adaptor types.
238  */
239 typedef enum
240 {
241     OC_IPV4 = 0,
242     OC_IPV6,
243     OC_EDR,
244     OC_LE,
245     OC_ALL // Multicast message: send over all the interfaces.
246 } OCConnectivityType;
247
248 /**
249  * Declares Stack Results & Errors.
250  */
251 typedef enum
252 {
253     /* Success status code - START HERE */
254     OC_STACK_OK = 0,
255     OC_STACK_RESOURCE_CREATED,
256     OC_STACK_RESOURCE_DELETED,
257     OC_STACK_CONTINUE,
258     /* Success status code - END HERE */
259     /* Error status code - START HERE */
260     OC_STACK_INVALID_URI = 20,
261     OC_STACK_INVALID_QUERY,
262     OC_STACK_INVALID_IP,
263     OC_STACK_INVALID_PORT,
264     OC_STACK_INVALID_CALLBACK,
265     OC_STACK_INVALID_METHOD,
266     OC_STACK_INVALID_PARAM,
267     OC_STACK_INVALID_OBSERVE_PARAM,
268     OC_STACK_NO_MEMORY,
269     OC_STACK_COMM_ERROR,
270     OC_STACK_TIMEOUT,
271     OC_STACK_ADAPTER_NOT_ENABLED,
272     OC_STACK_NOTIMPL,
273     OC_STACK_NO_RESOURCE,               /* resource not found */
274     OC_STACK_RESOURCE_ERROR,            /* ex: not supported method or interface */
275     OC_STACK_SLOW_RESOURCE,
276     OC_STACK_DUPLICATE_REQUEST,
277     OC_STACK_NO_OBSERVERS,              /* resource has no registered observers */
278     OC_STACK_OBSERVER_NOT_FOUND,
279     OC_STACK_VIRTUAL_DO_NOT_HANDLE,
280     OC_STACK_INVALID_OPTION,
281     OC_STACK_MALFORMED_RESPONSE,        /* the remote reply contained malformed data */
282     OC_STACK_PERSISTENT_BUFFER_REQUIRED,
283     OC_STACK_INVALID_REQUEST_HANDLE,
284     OC_STACK_INVALID_DEVICE_INFO,
285     OC_STACK_INVALID_JSON,
286     /* NOTE: Insert all new error codes here!*/
287     #ifdef WITH_PRESENCE
288     OC_STACK_PRESENCE_STOPPED = 128,
289     OC_STACK_PRESENCE_TIMEOUT,
290     OC_STACK_PRESENCE_DO_NOT_HANDLE,
291     #endif
292     OC_STACK_ERROR = 255
293     /* Error status code - END HERE */
294 } OCStackResult;
295
296 /**
297  * Handle to an @ref OCDoResource invocation.
298  */
299 typedef void * OCDoHandle;
300
301 /**
302  * Handle to an OCResource object owned by the OCStack.
303  */
304 typedef void * OCResourceHandle;
305
306 typedef void * OCRequestHandle;
307
308 /**
309  * Unique identifier for each observation request. Used when observations are
310  * registered or deregistering. Used by entity handler to signal specific
311  * observers to be notified of resource changes.
312  * There can be maximum of 256 observations per server.
313  */
314 typedef uint8_t OCObservationId;
315
316 /**
317  * Action associated with observation.
318  */
319 typedef enum
320 {
321     OC_OBSERVE_REGISTER = 0,
322     OC_OBSERVE_DEREGISTER = 1,
323     OC_OBSERVE_NO_OPTION = 2
324 } OCObserveAction;
325
326
327 /**
328  * Persistent storage handlers. An app must provide OCPersistentStorage handler pointers when it
329  * calls OCRegisterPersistentStorageHandler.
330  */
331 typedef struct {
332     /*
333      *  Persistent storage open handler points to default file path.
334      *  Application can point to appropriate SVR database path for its Iotivity Server.
335      */
336     FILE* (* open)(const char *path, const char *mode);
337     // Persistent storage read handler
338     size_t (* read)(void *ptr, size_t size, size_t nmemb, FILE *stream);
339     // Persistent storage write handler
340     size_t (* write)(const void *ptr, size_t size, size_t nmemb, FILE *stream);
341     // Persistent storage close handler
342     int (* close)(FILE *fp);
343     // Persistent storage unlink handler
344     int (* unlink)(const char *path);
345 } OCPersistentStorage;
346
347 typedef struct
348 {
349     // Action associated with observation request
350     OCObserveAction action;
351     // Identifier for observation being registered/deregistered
352     OCObservationId obsId;
353 } OCObservationInfo;
354
355 /**
356  * Possible returned values from entity handler.
357  */
358 typedef enum
359 {
360     OC_EH_OK = 0,
361     OC_EH_ERROR,
362     OC_EH_RESOURCE_CREATED,
363     OC_EH_RESOURCE_DELETED,
364     OC_EH_SLOW,
365     OC_EH_FORBIDDEN,
366     OC_EH_RESOURCE_NOT_FOUND
367 } OCEntityHandlerResult;
368
369 /**
370  * This structure will be used to define the vendor specific header options to be included
371  * in communication packets.
372  */
373 typedef struct OCHeaderOption
374 {
375     // The protocol ID this option applies to
376     OCTransportProtocolID protocolID;
377     // The header option ID which will be added to communication packets
378     uint16_t optionID;
379     // its length   191
380     uint16_t optionLength;
381     // pointer to its data
382     uint8_t optionData[MAX_HEADER_OPTION_DATA_LENGTH];
383
384 #ifdef __cplusplus
385     OCHeaderOption() = default;
386     OCHeaderOption(OCTransportProtocolID pid,
387                    uint16_t optId,
388                    uint16_t optlen,
389                    const uint8_t* optData)
390         : protocolID(pid),
391           optionID(optId),
392           optionLength(optlen)
393     {
394
395         // parameter includes the null terminator.
396         optionLength = optionLength < MAX_HEADER_OPTION_DATA_LENGTH ?
397                         optionLength : MAX_HEADER_OPTION_DATA_LENGTH;
398         memcpy(optionData, optData, optionLength);
399         optionData[optionLength - 1] = '\0';
400     }
401 #endif
402 } OCHeaderOption;
403
404 /**
405  * Incoming requests handled by the server. Requests are passed in as a parameter to the
406  * @ref OCEntityHandler callback API.
407  * @brief The @ref OCEntityHandler callback API must be implemented in the application in order
408  * to receive these requests.
409  */
410 typedef struct
411 {
412     // Associated resource
413     OCResourceHandle resource;
414     OCRequestHandle requestHandle;
415     // the REST method retrieved from received request PDU
416     OCMethod method;
417     // resource query send by client
418     char * query;
419     // Information associated with observation - valid only when OCEntityHandler
420     // flag includes OC_OBSERVE_FLAG
421     OCObservationInfo obsInfo;
422     // An array of the received vendor specific header options
423     uint8_t numRcvdVendorSpecificHeaderOptions;
424     OCHeaderOption * rcvdVendorSpecificHeaderOptions;
425     // reqJSON is retrieved from the payload of the received request PDU
426     char * reqJSONPayload;
427 } OCEntityHandlerRequest;
428
429 /**
430  * Response from queries to remote servers. Queries are made by calling the @ref OCDoResource API.
431  */
432 typedef struct
433 {
434     /// Address of remote server
435     OCDevAddr * addr;
436     /// Indicates adaptor type on which the response was received
437     OCConnectivityType connType;
438     /// the is the result of our stack, OCStackResult should contain coap/other error codes;
439     OCStackResult result;
440     /// If associated with observe, this will represent the sequence of notifications from server.
441     uint32_t sequenceNumber;
442     /// resJSONPayload is retrieved from the payload of the received request PDU
443     const char * resJSONPayload;
444     /// An array of the received vendor specific header options
445     uint8_t numRcvdVendorSpecificHeaderOptions;
446     OCHeaderOption rcvdVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
447 } OCClientResponse;
448
449 /**
450  * This structure describes the platform properties. All non-Null properties will be included
451  * in a platform discovery request.
452  */
453 typedef struct
454 {
455     char *platformID;
456     char *manufacturerName;
457     char *manufacturerUrl;
458     char *modelNumber;
459     char *dateOfManufacture;
460     char *platformVersion;
461     char *operatingSystemVersion;
462     char *hardwareVersion;
463     char *firmwareVersion;
464     char *supportUrl;
465     char *systemTime;
466
467 } OCPlatformInfo;
468
469 /**
470  * This structure is expected as input for device properties.
471  * device name is mandatory and expected from the application.
472  * device id of type UUID will be generated by the stack.
473  */
474 typedef struct
475 {
476     char *deviceName;
477
478 } OCDeviceInfo;
479
480 typedef struct
481 {
482     // Request handle is passed to server via the entity handler for each incoming request.
483     // Stack assigns when request is received, server sets to indicate what request response is for
484     OCRequestHandle requestHandle;
485     // Resource handle
486     OCResourceHandle resourceHandle;
487     // Allow the entity handler to pass a result with the response
488     OCEntityHandlerResult  ehResult;
489     // this is the pointer to server payload data to be transferred
490     char *payload;
491     // size of server payload data.  I don't think we should rely on null terminated data for size
492     uint16_t payloadSize;
493     // An array of the vendor specific header options the entity handler wishes to use in response
494     uint8_t numSendVendorSpecificHeaderOptions;
495     OCHeaderOption sendVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
496     // URI of new resource that entity handler might create
497     char resourceUri[MAX_URI_LENGTH];
498     // Server sets to true for persistent response buffer, false for non-persistent response buffer
499     uint8_t persistentBufferFlag;
500 } OCEntityHandlerResponse;
501
502 typedef enum
503 {
504     OC_REQUEST_FLAG = (1 << 1),
505     OC_OBSERVE_FLAG = (1 << 2)
506 } OCEntityHandlerFlag; //entity_handler_flag_t ;
507
508 /**
509  * Possible returned values from client application.
510  */
511 typedef enum
512 {
513     OC_STACK_DELETE_TRANSACTION = 0,//!< OC_STACK_DELETE_TRANSACTION
514     OC_STACK_KEEP_TRANSACTION       //!< OC_STACK_KEEP_TRANSACTION
515 } OCStackApplicationResult;
516
517 //-----------------------------------------------------------------------------
518 // Callback function definitions
519 //-----------------------------------------------------------------------------
520
521 /**
522  * Client applications implement this callback to consume responses received from Servers.
523  */
524 typedef OCStackApplicationResult (* OCClientResponseHandler)(void *context, OCDoHandle handle,
525     OCClientResponse * clientResponse);
526
527 /**
528  * Client applications using a context pointer implement this callback to delete the
529  * context upon removal of the callback/context pointer from the internal callback-list.
530  */
531 typedef void (* OCClientContextDeleter)(void *context);
532
533 /**
534  * This info is passed from application to OC Stack when initiating a request to Server.
535  */
536 typedef struct OCCallbackData
537 {
538     void *context;
539     /// The pointer to a function the stack will call to handle the requests
540     OCClientResponseHandler cb;
541     /// A pointer to a function to delete the context when this callback is removed
542     OCClientContextDeleter cd;
543 #ifdef __cplusplus
544     OCCallbackData() = default;
545     OCCallbackData(void* ctx, OCClientResponseHandler callback, OCClientContextDeleter deleter)
546         :context(ctx), cb(callback), cd(deleter){}
547 #endif
548 } OCCallbackData;
549
550 /**
551  * Application server implementations must implement this callback to consume requests OTA.
552  * Entity handler callback needs to fill the resPayload of the entityHandlerRequest.
553  */
554 typedef OCEntityHandlerResult (*OCEntityHandler)
555 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest);
556
557 /**
558  * Device Entity handler need to use this call back instead of OCEntityHandler.
559  */
560 typedef OCEntityHandlerResult (*OCDeviceEntityHandler)
561 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, char* uri);
562
563 #ifdef __cplusplus
564 }
565 #endif // __cplusplus
566
567 #endif /* OCTYPES_H_ */