lwm2m.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  1. /*
  2. * Copyright (c) 2017 Linaro Limited
  3. * Copyright (c) 2017-2019 Foundries.io
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /** @file lwm2m.h
  8. *
  9. * @defgroup lwm2m_api LwM2M high-level API
  10. * @ingroup networking
  11. * @{
  12. * @brief LwM2M high-level API
  13. *
  14. * @details
  15. * LwM2M high-level interface is defined in this header.
  16. *
  17. * @note The implementation assumes UDP module is enabled.
  18. *
  19. * @note LwM2M 1.0.x is currently the only supported version.
  20. */
  21. #ifndef ZEPHYR_INCLUDE_NET_LWM2M_H_
  22. #define ZEPHYR_INCLUDE_NET_LWM2M_H_
  23. #include <kernel.h>
  24. #include <sys/mutex.h>
  25. #include <net/coap.h>
  26. #include <net/lwm2m_path.h>
  27. /**
  28. * @brief LwM2M Objects managed by OMA for LwM2M tech specification. Objects
  29. * in this range have IDs from 0 to 1023.
  30. * For more information refer to Technical Specification
  31. * OMA-TS-LightweightM2M-V1_0_2-20180209-A
  32. */
  33. #define LWM2M_OBJECT_SECURITY_ID 0
  34. #define LWM2M_OBJECT_SERVER_ID 1
  35. #define LWM2M_OBJECT_ACCESS_CONTROL_ID 2
  36. #define LWM2M_OBJECT_DEVICE_ID 3
  37. #define LWM2M_OBJECT_CONNECTIVITY_MONITORING_ID 4
  38. #define LWM2M_OBJECT_FIRMWARE_ID 5
  39. #define LWM2M_OBJECT_LOCATION_ID 6
  40. #define LWM2M_OBJECT_CONNECTIVITY_STATISTICS_ID 7
  41. /**
  42. * @brief LwM2M Objects produced by 3rd party Standards Development
  43. * Organizations. Objects in this range have IDs from 2048 to 10240
  44. * Refer to the OMA LightweightM2M (LwM2M) Object and Resource Registry:
  45. * http://www.openmobilealliance.org/wp/OMNA/LwM2M/LwM2MRegistry.html
  46. */
  47. /* clang-format off */
  48. #define IPSO_OBJECT_GENERIC_SENSOR_ID 3300
  49. #define IPSO_OBJECT_TEMP_SENSOR_ID 3303
  50. #define IPSO_OBJECT_HUMIDITY_SENSOR_ID 3304
  51. #define IPSO_OBJECT_LIGHT_CONTROL_ID 3311
  52. #define IPSO_OBJECT_ACCELEROMETER_ID 3313
  53. #define IPSO_OBJECT_PRESSURE_ID 3323
  54. #define IPSO_OBJECT_BUZZER_ID 3338
  55. #define IPSO_OBJECT_TIMER_ID 3340
  56. #define IPSO_OBJECT_ONOFF_SWITCH_ID 3342
  57. #define IPSO_OBJECT_PUSH_BUTTON_ID 3347
  58. /* clang-format on */
  59. typedef void (*lwm2m_socket_fault_cb_t)(int error);
  60. typedef void (*lwm2m_notify_timeout_cb_t)(void);
  61. /**
  62. * @brief LwM2M context structure to maintain information for a single
  63. * LwM2M connection.
  64. */
  65. struct lwm2m_ctx {
  66. /** Destination address storage */
  67. struct sockaddr remote_addr;
  68. /** Private CoAP and networking structures */
  69. struct coap_pending pendings[CONFIG_LWM2M_ENGINE_MAX_PENDING];
  70. struct coap_reply replies[CONFIG_LWM2M_ENGINE_MAX_REPLIES];
  71. sys_slist_t pending_sends;
  72. sys_slist_t observer;
  73. /** A pointer to currently processed request, for internal LwM2M engine
  74. * use. The underlying type is ``struct lwm2m_message``, but since it's
  75. * declared in a private header and not exposed to the application,
  76. * it's stored as a void pointer.
  77. */
  78. void *processed_req;
  79. #if defined(CONFIG_LWM2M_DTLS_SUPPORT)
  80. /** TLS tag is set by client as a reference used when the
  81. * LwM2M engine calls tls_credential_(add|delete)
  82. */
  83. int tls_tag;
  84. /** Client can set load_credentials function as a way of overriding
  85. * the default behavior of load_tls_credential() in lwm2m_engine.c
  86. */
  87. int (*load_credentials)(struct lwm2m_ctx *client_ctx);
  88. #endif
  89. /** Flag to indicate if context should use DTLS.
  90. * Enabled via the use of coaps:// protocol prefix in connection
  91. * information.
  92. * NOTE: requires CONFIG_LWM2M_DTLS_SUPPORT=y
  93. */
  94. bool use_dtls;
  95. /** Current index of Security Object used for server credentials */
  96. int sec_obj_inst;
  97. /** Current index of Server Object used in this context. */
  98. int srv_obj_inst;
  99. /** Flag to enable BOOTSTRAP interface. See Section 5.2
  100. * "Bootstrap Interface" of LwM2M Technical Specification 1.0.2
  101. * for more information.
  102. */
  103. bool bootstrap_mode;
  104. /** Socket File Descriptor */
  105. int sock_fd;
  106. /** Socket fault callback. LwM2M processing thread will call this
  107. * callback in case of socket errors on receive.
  108. */
  109. lwm2m_socket_fault_cb_t fault_cb;
  110. /** Notify Timeout Callback. LwM2M processing thread will call this
  111. * callback in case of notify timeout.
  112. */
  113. lwm2m_notify_timeout_cb_t notify_timeout_cb;
  114. /** Validation buffer. Used as a temporary buffer to decode the resource
  115. * value before validation. On successful validation, its content is
  116. * copied into the actual resource buffer.
  117. */
  118. uint8_t validate_buf[CONFIG_LWM2M_ENGINE_VALIDATION_BUFFER_SIZE];
  119. };
  120. /**
  121. * @brief Asynchronous callback to get a resource buffer and length.
  122. *
  123. * Prior to accessing the data buffer of a resource, the engine can
  124. * use this callback to get the buffer pointer and length instead
  125. * of using the resource's data buffer.
  126. *
  127. * The client or LwM2M objects can register a function of this type via:
  128. * lwm2m_engine_register_read_callback()
  129. * lwm2m_engine_register_pre_write_callback()
  130. *
  131. * @param[in] obj_inst_id Object instance ID generating the callback.
  132. * @param[in] res_id Resource ID generating the callback.
  133. * @param[in] res_inst_id Resource instance ID generating the callback
  134. * (typically 0 for non-multi instance resources).
  135. * @param[out] data_len Length of the data buffer.
  136. *
  137. * @return Callback returns a pointer to the data buffer or NULL for failure.
  138. */
  139. typedef void *(*lwm2m_engine_get_data_cb_t)(uint16_t obj_inst_id,
  140. uint16_t res_id,
  141. uint16_t res_inst_id,
  142. size_t *data_len);
  143. /**
  144. * @brief Asynchronous callback when data has been set to a resource buffer.
  145. *
  146. * After changing the data of a resource buffer, the LwM2M engine can
  147. * make use of this callback to pass the data back to the client or LwM2M
  148. * objects.
  149. *
  150. * A function of this type can be registered via:
  151. * lwm2m_engine_register_validate_callback()
  152. * lwm2m_engine_register_post_write_callback()
  153. *
  154. * @param[in] obj_inst_id Object instance ID generating the callback.
  155. * @param[in] res_id Resource ID generating the callback.
  156. * @param[in] res_inst_id Resource instance ID generating the callback
  157. * (typically 0 for non-multi instance resources).
  158. * @param[in] data Pointer to data.
  159. * @param[in] data_len Length of the data.
  160. * @param[in] last_block Flag used during block transfer to indicate the last
  161. * block of data. For non-block transfers this is always
  162. * false.
  163. * @param[in] total_size Expected total size of data for a block transfer.
  164. * For non-block transfers this is 0.
  165. *
  166. * @return Callback returns a negative error code (errno.h) indicating
  167. * reason of failure or 0 for success.
  168. */
  169. typedef int (*lwm2m_engine_set_data_cb_t)(uint16_t obj_inst_id,
  170. uint16_t res_id, uint16_t res_inst_id,
  171. uint8_t *data, uint16_t data_len,
  172. bool last_block, size_t total_size);
  173. /**
  174. * @brief Asynchronous event notification callback.
  175. *
  176. * Various object instance and resource-based events in the LwM2M engine
  177. * can trigger a callback of this function type: object instance create,
  178. * and object instance delete.
  179. *
  180. * Register a function of this type via:
  181. * lwm2m_engine_register_create_callback()
  182. * lwm2m_engine_register_delete_callback()
  183. *
  184. * @param[in] obj_inst_id Object instance ID generating the callback.
  185. *
  186. * @return Callback returns a negative error code (errno.h) indicating
  187. * reason of failure or 0 for success.
  188. */
  189. typedef int (*lwm2m_engine_user_cb_t)(uint16_t obj_inst_id);
  190. /**
  191. * @brief Asynchronous execute notification callback.
  192. *
  193. * Resource executes trigger a callback of this type.
  194. *
  195. * Register a function of this type via:
  196. * lwm2m_engine_register_exec_callback()
  197. *
  198. * @param[in] obj_inst_id Object instance ID generating the callback.
  199. * @param[in] args Pointer to execute arguments payload. (This can be
  200. * NULL if no arguments are provided)
  201. * @param[in] args_len Length of argument payload in bytes.
  202. *
  203. * @return Callback returns a negative error code (errno.h) indicating
  204. * reason of failure or 0 for success.
  205. */
  206. typedef int (*lwm2m_engine_execute_cb_t)(uint16_t obj_inst_id,
  207. uint8_t *args, uint16_t args_len);
  208. /**
  209. * @brief Power source types used for the "Available Power Sources" resource of
  210. * the LwM2M Device object.
  211. */
  212. #define LWM2M_DEVICE_PWR_SRC_TYPE_DC_POWER 0
  213. #define LWM2M_DEVICE_PWR_SRC_TYPE_BAT_INT 1
  214. #define LWM2M_DEVICE_PWR_SRC_TYPE_BAT_EXT 2
  215. #define LWM2M_DEVICE_PWR_SRC_TYPE_UNUSED 3
  216. #define LWM2M_DEVICE_PWR_SRC_TYPE_PWR_OVER_ETH 4
  217. #define LWM2M_DEVICE_PWR_SRC_TYPE_USB 5
  218. #define LWM2M_DEVICE_PWR_SRC_TYPE_AC_POWER 6
  219. #define LWM2M_DEVICE_PWR_SRC_TYPE_SOLAR 7
  220. #define LWM2M_DEVICE_PWR_SRC_TYPE_MAX 8
  221. /**
  222. * @brief Error codes used for the "Error Code" resource of the LwM2M Device
  223. * object. An LwM2M client can register one of the following error codes via
  224. * the lwm2m_device_add_err() function.
  225. */
  226. #define LWM2M_DEVICE_ERROR_NONE 0
  227. #define LWM2M_DEVICE_ERROR_LOW_POWER 1
  228. #define LWM2M_DEVICE_ERROR_EXT_POWER_SUPPLY_OFF 2
  229. #define LWM2M_DEVICE_ERROR_GPS_FAILURE 3
  230. #define LWM2M_DEVICE_ERROR_LOW_SIGNAL_STRENGTH 4
  231. #define LWM2M_DEVICE_ERROR_OUT_OF_MEMORY 5
  232. #define LWM2M_DEVICE_ERROR_SMS_FAILURE 6
  233. #define LWM2M_DEVICE_ERROR_NETWORK_FAILURE 7
  234. #define LWM2M_DEVICE_ERROR_PERIPHERAL_FAILURE 8
  235. /**
  236. * @brief Battery status codes used for the "Battery Status" resource (3/0/20)
  237. * of the LwM2M Device object. As the battery status changes, an LwM2M
  238. * client can set one of the following codes via:
  239. * lwm2m_engine_set_u8("3/0/20", [battery status])
  240. */
  241. #define LWM2M_DEVICE_BATTERY_STATUS_NORMAL 0
  242. #define LWM2M_DEVICE_BATTERY_STATUS_CHARGING 1
  243. #define LWM2M_DEVICE_BATTERY_STATUS_CHARGE_COMP 2
  244. #define LWM2M_DEVICE_BATTERY_STATUS_DAMAGED 3
  245. #define LWM2M_DEVICE_BATTERY_STATUS_LOW 4
  246. #define LWM2M_DEVICE_BATTERY_STATUS_NOT_INST 5
  247. #define LWM2M_DEVICE_BATTERY_STATUS_UNKNOWN 6
  248. /**
  249. * @brief Register a new error code with LwM2M Device object.
  250. *
  251. * @param[in] error_code New error code.
  252. *
  253. * @return 0 for success or negative in case of error.
  254. */
  255. int lwm2m_device_add_err(uint8_t error_code);
  256. /**
  257. * @brief LWM2M Firmware Update object states
  258. *
  259. * An LwM2M client or the LwM2M Firmware Update object use the following codes
  260. * to represent the LwM2M Firmware Update state (5/0/3).
  261. */
  262. #define STATE_IDLE 0
  263. #define STATE_DOWNLOADING 1
  264. #define STATE_DOWNLOADED 2
  265. #define STATE_UPDATING 3
  266. /**
  267. * @brief LWM2M Firmware Update object result codes
  268. *
  269. * After processing a firmware update, the client sets the result via one of
  270. * the following codes via lwm2m_engine_set_u8("5/0/5", [result code])
  271. */
  272. #define RESULT_DEFAULT 0
  273. #define RESULT_SUCCESS 1
  274. #define RESULT_NO_STORAGE 2
  275. #define RESULT_OUT_OF_MEM 3
  276. #define RESULT_CONNECTION_LOST 4
  277. #define RESULT_INTEGRITY_FAILED 5
  278. #define RESULT_UNSUP_FW 6
  279. #define RESULT_INVALID_URI 7
  280. #define RESULT_UPDATE_FAILED 8
  281. #define RESULT_UNSUP_PROTO 9
  282. #if defined(CONFIG_LWM2M_FIRMWARE_UPDATE_OBJ_SUPPORT)
  283. /**
  284. * @brief Set data callback for firmware block transfer.
  285. *
  286. * LwM2M clients use this function to register a callback for receiving the
  287. * block transfer data when performing a firmware update.
  288. *
  289. * @param[in] cb A callback function to receive the block transfer data
  290. */
  291. void lwm2m_firmware_set_write_cb(lwm2m_engine_set_data_cb_t cb);
  292. /**
  293. * @brief Get the data callback for firmware block transfer writes.
  294. *
  295. * @return A registered callback function to receive the block transfer data
  296. */
  297. lwm2m_engine_set_data_cb_t lwm2m_firmware_get_write_cb(void);
  298. #if defined(CONFIG_LWM2M_FIRMWARE_UPDATE_PULL_SUPPORT)
  299. /**
  300. * @brief Set data callback to handle firmware update execute events.
  301. *
  302. * LwM2M clients use this function to register a callback for receiving the
  303. * update resource "execute" operation on the LwM2M Firmware Update object.
  304. *
  305. * @param[in] cb A callback function to receive the execute event.
  306. */
  307. void lwm2m_firmware_set_update_cb(lwm2m_engine_execute_cb_t cb);
  308. /**
  309. * @brief Get the event callback for firmware update execute events.
  310. *
  311. * @return A registered callback function to receive the execute event.
  312. */
  313. lwm2m_engine_execute_cb_t lwm2m_firmware_get_update_cb(void);
  314. /**
  315. * @brief Get the block context of the current firmware block.
  316. *
  317. * @param[out] ctx A buffer to store the block context.
  318. */
  319. struct coap_block_context *lwm2m_firmware_get_block_context();
  320. #endif
  321. #endif
  322. /**
  323. * @brief Data structure used to represent the LwM2M float type:
  324. * val1 is the whole number portion of the decimal
  325. * val2 is the decimal portion *1000000 for 32bit, *1000000000 for 64bit
  326. * Example: 123.456 == val1: 123, val2:456000
  327. * Example: 123.000456 = val1: 123, val2:456
  328. */
  329. /**
  330. * @brief Maximum precision value for 32-bit LwM2M float val2
  331. */
  332. #define LWM2M_FLOAT32_DEC_MAX 1000000
  333. /**
  334. * @brief 32-bit variant of the LwM2M float structure
  335. */
  336. typedef struct float32_value {
  337. int32_t val1;
  338. int32_t val2;
  339. } float32_value_t;
  340. /**
  341. * @brief Maximum value for ObjLnk resource fields
  342. */
  343. #define LWM2M_OBJLNK_MAX_ID USHRT_MAX
  344. /**
  345. * @brief LWM2M ObjLnk resource type structure
  346. */
  347. struct lwm2m_objlnk {
  348. uint16_t obj_id;
  349. uint16_t obj_inst;
  350. };
  351. /**
  352. * @brief Change an observer's pmin value.
  353. *
  354. * LwM2M clients use this function to modify the pmin attribute
  355. * for an observation being made.
  356. * Example to update the pmin of a temperature sensor value being observed:
  357. * lwm2m_engine_update_observer_min_period("3303/0/5700",5);
  358. *
  359. * @param[in] pathstr LwM2M path string "obj/obj-inst/res"
  360. * @param[in] period_s Value of pmin to be given (in seconds).
  361. *
  362. * @return 0 for success or negative in case of error.
  363. */
  364. int lwm2m_engine_update_observer_min_period(char *pathstr, uint32_t period_s);
  365. /**
  366. * @brief Change an observer's pmax value.
  367. *
  368. * LwM2M clients use this function to modify the pmax attribute
  369. * for an observation being made.
  370. * Example to update the pmax of a temperature sensor value being observed:
  371. * lwm2m_engine_update_observer_max_period("3303/0/5700",5);
  372. *
  373. * @param[in] pathstr LwM2M path string "obj/obj-inst/res"
  374. * @param[in] period_s Value of pmax to be given (in seconds).
  375. *
  376. * @return 0 for success or negative in case of error.
  377. */
  378. int lwm2m_engine_update_observer_max_period(char *pathstr, uint32_t period_s);
  379. /**
  380. * @brief Create an LwM2M object instance.
  381. *
  382. * LwM2M clients use this function to create non-default LwM2M objects:
  383. * Example to create first temperature sensor object:
  384. * lwm2m_engine_create_obj_inst("3303/0");
  385. *
  386. * @param[in] pathstr LwM2M path string "obj/obj-inst"
  387. *
  388. * @return 0 for success or negative in case of error.
  389. */
  390. int lwm2m_engine_create_obj_inst(char *pathstr);
  391. /**
  392. * @brief Delete an LwM2M object instance.
  393. *
  394. * LwM2M clients use this function to delete LwM2M objects.
  395. *
  396. * @param[in] pathstr LwM2M path string "obj/obj-inst"
  397. *
  398. * @return 0 for success or negative in case of error.
  399. */
  400. int lwm2m_engine_delete_obj_inst(char *pathstr);
  401. /**
  402. * @brief Set resource (instance) value (opaque buffer)
  403. *
  404. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  405. * @param[in] data_ptr Data buffer
  406. * @param[in] data_len Length of buffer
  407. *
  408. * @return 0 for success or negative in case of error.
  409. */
  410. int lwm2m_engine_set_opaque(char *pathstr, char *data_ptr, uint16_t data_len);
  411. /**
  412. * @brief Set resource (instance) value (string)
  413. *
  414. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  415. * @param[in] data_ptr NULL terminated char buffer
  416. *
  417. * @return 0 for success or negative in case of error.
  418. */
  419. int lwm2m_engine_set_string(char *pathstr, char *data_ptr);
  420. /**
  421. * @brief Set resource (instance) value (u8)
  422. *
  423. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  424. * @param[in] value u8 value
  425. *
  426. * @return 0 for success or negative in case of error.
  427. */
  428. int lwm2m_engine_set_u8(char *pathstr, uint8_t value);
  429. /**
  430. * @brief Set resource (instance) value (u16)
  431. *
  432. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  433. * @param[in] value u16 value
  434. *
  435. * @return 0 for success or negative in case of error.
  436. */
  437. int lwm2m_engine_set_u16(char *pathstr, uint16_t value);
  438. /**
  439. * @brief Set resource (instance) value (u32)
  440. *
  441. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  442. * @param[in] value u32 value
  443. *
  444. * @return 0 for success or negative in case of error.
  445. */
  446. int lwm2m_engine_set_u32(char *pathstr, uint32_t value);
  447. /**
  448. * @brief Set resource (instance) value (u64)
  449. *
  450. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  451. * @param[in] value u64 value
  452. *
  453. * @return 0 for success or negative in case of error.
  454. */
  455. int lwm2m_engine_set_u64(char *pathstr, uint64_t value);
  456. /**
  457. * @brief Set resource (instance) value (s8)
  458. *
  459. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  460. * @param[in] value s8 value
  461. *
  462. * @return 0 for success or negative in case of error.
  463. */
  464. int lwm2m_engine_set_s8(char *pathstr, int8_t value);
  465. /**
  466. * @brief Set resource (instance) value (s16)
  467. *
  468. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  469. * @param[in] value s16 value
  470. *
  471. * @return 0 for success or negative in case of error.
  472. */
  473. int lwm2m_engine_set_s16(char *pathstr, int16_t value);
  474. /**
  475. * @brief Set resource (instance) value (s32)
  476. *
  477. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  478. * @param[in] value s32 value
  479. *
  480. * @return 0 for success or negative in case of error.
  481. */
  482. int lwm2m_engine_set_s32(char *pathstr, int32_t value);
  483. /**
  484. * @brief Set resource (instance) value (s64)
  485. *
  486. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  487. * @param[in] value s64 value
  488. *
  489. * @return 0 for success or negative in case of error.
  490. */
  491. int lwm2m_engine_set_s64(char *pathstr, int64_t value);
  492. /**
  493. * @brief Set resource (instance) value (bool)
  494. *
  495. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  496. * @param[in] value bool value
  497. *
  498. * @return 0 for success or negative in case of error.
  499. */
  500. int lwm2m_engine_set_bool(char *pathstr, bool value);
  501. /**
  502. * @brief Set resource (instance) value (32-bit float structure)
  503. *
  504. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  505. * @param[in] value 32-bit float value
  506. *
  507. * @return 0 for success or negative in case of error.
  508. */
  509. int lwm2m_engine_set_float32(char *pathstr, float32_value_t *value);
  510. /**
  511. * @brief Set resource (instance) value (ObjLnk)
  512. *
  513. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  514. * @param[in] value pointer to the lwm2m_objlnk structure
  515. *
  516. * @return 0 for success or negative in case of error.
  517. */
  518. int lwm2m_engine_set_objlnk(char *pathstr, struct lwm2m_objlnk *value);
  519. /**
  520. * @brief Get resource (instance) value (opaque buffer)
  521. *
  522. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  523. * @param[out] buf Data buffer to copy data into
  524. * @param[in] buflen Length of buffer
  525. *
  526. * @return 0 for success or negative in case of error.
  527. */
  528. int lwm2m_engine_get_opaque(char *pathstr, void *buf, uint16_t buflen);
  529. /**
  530. * @brief Get resource (instance) value (string)
  531. *
  532. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  533. * @param[out] str String buffer to copy data into
  534. * @param[in] strlen Length of buffer
  535. *
  536. * @return 0 for success or negative in case of error.
  537. */
  538. int lwm2m_engine_get_string(char *pathstr, void *str, uint16_t strlen);
  539. /**
  540. * @brief Get resource (instance) value (u8)
  541. *
  542. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  543. * @param[out] value u8 buffer to copy data into
  544. *
  545. * @return 0 for success or negative in case of error.
  546. */
  547. int lwm2m_engine_get_u8(char *pathstr, uint8_t *value);
  548. /**
  549. * @brief Get resource (instance) value (u16)
  550. *
  551. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  552. * @param[out] value u16 buffer to copy data into
  553. *
  554. * @return 0 for success or negative in case of error.
  555. */
  556. int lwm2m_engine_get_u16(char *pathstr, uint16_t *value);
  557. /**
  558. * @brief Get resource (instance) value (u32)
  559. *
  560. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  561. * @param[out] value u32 buffer to copy data into
  562. *
  563. * @return 0 for success or negative in case of error.
  564. */
  565. int lwm2m_engine_get_u32(char *pathstr, uint32_t *value);
  566. /**
  567. * @brief Get resource (instance) value (u64)
  568. *
  569. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  570. * @param[out] value u64 buffer to copy data into
  571. *
  572. * @return 0 for success or negative in case of error.
  573. */
  574. int lwm2m_engine_get_u64(char *pathstr, uint64_t *value);
  575. /**
  576. * @brief Get resource (instance) value (s8)
  577. *
  578. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  579. * @param[out] value s8 buffer to copy data into
  580. *
  581. * @return 0 for success or negative in case of error.
  582. */
  583. int lwm2m_engine_get_s8(char *pathstr, int8_t *value);
  584. /**
  585. * @brief Get resource (instance) value (s16)
  586. *
  587. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  588. * @param[out] value s16 buffer to copy data into
  589. *
  590. * @return 0 for success or negative in case of error.
  591. */
  592. int lwm2m_engine_get_s16(char *pathstr, int16_t *value);
  593. /**
  594. * @brief Get resource (instance) value (s32)
  595. *
  596. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  597. * @param[out] value s32 buffer to copy data into
  598. *
  599. * @return 0 for success or negative in case of error.
  600. */
  601. int lwm2m_engine_get_s32(char *pathstr, int32_t *value);
  602. /**
  603. * @brief Get resource (instance) value (s64)
  604. *
  605. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  606. * @param[out] value s64 buffer to copy data into
  607. *
  608. * @return 0 for success or negative in case of error.
  609. */
  610. int lwm2m_engine_get_s64(char *pathstr, int64_t *value);
  611. /**
  612. * @brief Get resource (instance) value (bool)
  613. *
  614. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  615. * @param[out] value bool buffer to copy data into
  616. *
  617. * @return 0 for success or negative in case of error.
  618. */
  619. int lwm2m_engine_get_bool(char *pathstr, bool *value);
  620. /**
  621. * @brief Get resource (instance) value (32-bit float structure)
  622. *
  623. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  624. * @param[out] buf 32-bit float buffer to copy data into
  625. *
  626. * @return 0 for success or negative in case of error.
  627. */
  628. int lwm2m_engine_get_float32(char *pathstr, float32_value_t *buf);
  629. /**
  630. * @brief Get resource (instance) value (ObjLnk)
  631. *
  632. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  633. * @param[out] buf lwm2m_objlnk buffer to copy data into
  634. *
  635. * @return 0 for success or negative in case of error.
  636. */
  637. int lwm2m_engine_get_objlnk(char *pathstr, struct lwm2m_objlnk *buf);
  638. /**
  639. * @brief Set resource (instance) read callback
  640. *
  641. * LwM2M clients can use this to set the callback function for resource reads.
  642. *
  643. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  644. * @param[in] cb Read resource callback
  645. *
  646. * @return 0 for success or negative in case of error.
  647. */
  648. int lwm2m_engine_register_read_callback(char *pathstr,
  649. lwm2m_engine_get_data_cb_t cb);
  650. /**
  651. * @brief Set resource (instance) pre-write callback
  652. *
  653. * This callback is triggered before setting the value of a resource. It
  654. * can pass a special data buffer to the engine so that the actual resource
  655. * value can be calculated later, etc.
  656. *
  657. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  658. * @param[in] cb Pre-write resource callback
  659. *
  660. * @return 0 for success or negative in case of error.
  661. */
  662. int lwm2m_engine_register_pre_write_callback(char *pathstr,
  663. lwm2m_engine_get_data_cb_t cb);
  664. /**
  665. * @brief Set resource (instance) validation callback
  666. *
  667. * This callback is triggered before setting the value of a resource to the
  668. * resource data buffer.
  669. *
  670. * The callback allows an LwM2M client or object to validate the data before
  671. * writing and notify an error if the data should be discarded for any reason
  672. * (by returning a negative error code).
  673. *
  674. * @note All resources that have a validation callback registered are initially
  675. * decoded into a temporary validation buffer. Make sure that
  676. * ``CONFIG_LWM2M_ENGINE_VALIDATION_BUFFER_SIZE`` is large enough to
  677. * store each of the validated resources (individually).
  678. *
  679. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  680. * @param[in] cb Validate resource data callback
  681. *
  682. * @return 0 for success or negative in case of error.
  683. */
  684. int lwm2m_engine_register_validate_callback(char *pathstr,
  685. lwm2m_engine_set_data_cb_t cb);
  686. /**
  687. * @brief Set resource (instance) post-write callback
  688. *
  689. * This callback is triggered after setting the value of a resource to the
  690. * resource data buffer.
  691. *
  692. * It allows an LwM2M client or object to post-process the value of a resource
  693. * or trigger other related resource calculations.
  694. *
  695. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  696. * @param[in] cb Post-write resource callback
  697. *
  698. * @return 0 for success or negative in case of error.
  699. */
  700. int lwm2m_engine_register_post_write_callback(char *pathstr,
  701. lwm2m_engine_set_data_cb_t cb);
  702. /**
  703. * @brief Set resource execute event callback
  704. *
  705. * This event is triggered when the execute method of a resource is enabled.
  706. *
  707. * @param[in] pathstr LwM2M path string "obj/obj-inst/res"
  708. * @param[in] cb Execute resource callback
  709. *
  710. * @return 0 for success or negative in case of error.
  711. */
  712. int lwm2m_engine_register_exec_callback(char *pathstr,
  713. lwm2m_engine_execute_cb_t cb);
  714. /**
  715. * @brief Set object instance create event callback
  716. *
  717. * This event is triggered when an object instance is created.
  718. *
  719. * @param[in] obj_id LwM2M object id
  720. * @param[in] cb Create object instance callback
  721. *
  722. * @return 0 for success or negative in case of error.
  723. */
  724. int lwm2m_engine_register_create_callback(uint16_t obj_id,
  725. lwm2m_engine_user_cb_t cb);
  726. /**
  727. * @brief Set object instance delete event callback
  728. *
  729. * This event is triggered when an object instance is deleted.
  730. *
  731. * @param[in] obj_id LwM2M object id
  732. * @param[in] cb Delete object instance callback
  733. *
  734. * @return 0 for success or negative in case of error.
  735. */
  736. int lwm2m_engine_register_delete_callback(uint16_t obj_id,
  737. lwm2m_engine_user_cb_t cb);
  738. /**
  739. * @brief Resource read-only value bit
  740. */
  741. #define LWM2M_RES_DATA_READ_ONLY 0
  742. /**
  743. * @brief Resource read-only flag
  744. */
  745. #define LWM2M_RES_DATA_FLAG_RO BIT(LWM2M_RES_DATA_READ_ONLY)
  746. /**
  747. * @brief Read resource flags helper macro
  748. */
  749. #define LWM2M_HAS_RES_FLAG(res, f) ((res->data_flags & f) == f)
  750. /**
  751. * @brief Set data buffer for a resource
  752. *
  753. * Use this function to set the data buffer and flags for the specified LwM2M
  754. * resource.
  755. *
  756. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  757. * @param[in] data_ptr Data buffer pointer
  758. * @param[in] data_len Length of buffer
  759. * @param[in] data_flags Data buffer flags (such as read-only, etc)
  760. *
  761. * @return 0 for success or negative in case of error.
  762. */
  763. int lwm2m_engine_set_res_data(char *pathstr, void *data_ptr, uint16_t data_len,
  764. uint8_t data_flags);
  765. /**
  766. * @brief Get data buffer for a resource
  767. *
  768. * Use this function to get the data buffer information for the specified LwM2M
  769. * resource.
  770. *
  771. * @param[in] pathstr LwM2M path string "obj/obj-inst/res(/res-inst)"
  772. * @param[out] data_ptr Data buffer pointer
  773. * @param[out] data_len Length of buffer
  774. * @param[out] data_flags Data buffer flags (such as read-only, etc)
  775. *
  776. * @return 0 for success or negative in case of error.
  777. */
  778. int lwm2m_engine_get_res_data(char *pathstr, void **data_ptr,
  779. uint16_t *data_len, uint8_t *data_flags);
  780. /**
  781. * @brief Create a resource instance
  782. *
  783. * LwM2M clients use this function to create multi-resource instances:
  784. * Example to create 0 instance of device available power sources:
  785. * lwm2m_engine_create_res_inst("3/0/6/0");
  786. *
  787. * @param[in] pathstr LwM2M path string "obj/obj-inst/res/res-inst"
  788. *
  789. * @return 0 for success or negative in case of error.
  790. */
  791. int lwm2m_engine_create_res_inst(char *pathstr);
  792. /**
  793. * @brief Delete a resource instance
  794. *
  795. * Use this function to remove an existing resource instance
  796. *
  797. * @param[in] pathstr LwM2M path string "obj/obj-inst/res/res-inst"
  798. *
  799. * @return 0 for success or negative in case of error.
  800. */
  801. int lwm2m_engine_delete_res_inst(char *pathstr);
  802. /**
  803. * @brief Update the period of a given service.
  804. *
  805. * Allow the period modification on an existing service created with
  806. * lwm2m_engine_add_service().
  807. * Example to frequency at which a periodic_service changes it's values :
  808. * lwm2m_engine_update_service(device_periodic_service,5*MSEC_PER_SEC);
  809. *
  810. * @param[in] service Handler of the periodic_service
  811. * @param[in] period_ms New period for the periodic_service (in milliseconds)
  812. *
  813. * @return 0 for success or negative in case of error.
  814. */
  815. int lwm2m_engine_update_service_period(k_work_handler_t service, uint32_t period_ms);
  816. /**
  817. * @brief Start the LwM2M engine
  818. *
  819. * LwM2M clients normally do not need to call this function as it is called
  820. * by lwm2m_rd_client_start(). However, if the client does not use the RD
  821. * client implementation, it will need to be called manually.
  822. *
  823. * @param[in] client_ctx LwM2M context
  824. *
  825. * @return 0 for success or negative in case of error.
  826. */
  827. int lwm2m_engine_start(struct lwm2m_ctx *client_ctx);
  828. /**
  829. * @brief Acknowledge the currently processed request with an empty ACK.
  830. *
  831. * LwM2M engine by default sends piggybacked responses for requests.
  832. * This function allows to send an empty ACK for a request earlier (from the
  833. * application callback). The LwM2M engine will then send the actual response
  834. * as a separate CON message after all callbacks are executed.
  835. *
  836. * @param[in] client_ctx LwM2M context
  837. *
  838. */
  839. void lwm2m_acknowledge(struct lwm2m_ctx *client_ctx);
  840. /**
  841. * @brief LwM2M RD client events
  842. *
  843. * LwM2M client events are passed back to the event_cb function in
  844. * lwm2m_rd_client_start()
  845. */
  846. enum lwm2m_rd_client_event {
  847. LWM2M_RD_CLIENT_EVENT_NONE,
  848. LWM2M_RD_CLIENT_EVENT_BOOTSTRAP_REG_FAILURE,
  849. LWM2M_RD_CLIENT_EVENT_BOOTSTRAP_REG_COMPLETE,
  850. LWM2M_RD_CLIENT_EVENT_BOOTSTRAP_TRANSFER_COMPLETE,
  851. LWM2M_RD_CLIENT_EVENT_REGISTRATION_FAILURE,
  852. LWM2M_RD_CLIENT_EVENT_REGISTRATION_COMPLETE,
  853. LWM2M_RD_CLIENT_EVENT_REG_UPDATE_FAILURE,
  854. LWM2M_RD_CLIENT_EVENT_REG_UPDATE_COMPLETE,
  855. LWM2M_RD_CLIENT_EVENT_DEREGISTER_FAILURE,
  856. LWM2M_RD_CLIENT_EVENT_DISCONNECT,
  857. LWM2M_RD_CLIENT_EVENT_QUEUE_MODE_RX_OFF,
  858. LWM2M_RD_CLIENT_EVENT_NETWORK_ERROR,
  859. };
  860. /*
  861. * LwM2M RD client flags, used to configure LwM2M session.
  862. */
  863. /**
  864. * @brief Run bootstrap procedure in current session.
  865. */
  866. #define LWM2M_RD_CLIENT_FLAG_BOOTSTRAP BIT(0)
  867. /**
  868. * @brief Asynchronous RD client event callback
  869. *
  870. * @param[in] ctx LwM2M context generating the event
  871. * @param[in] event LwM2M RD client event code
  872. */
  873. typedef void (*lwm2m_ctx_event_cb_t)(struct lwm2m_ctx *ctx,
  874. enum lwm2m_rd_client_event event);
  875. /**
  876. * @brief Start the LwM2M RD (Registration / Discovery) Client
  877. *
  878. * The RD client sits just above the LwM2M engine and performs the necessary
  879. * actions to implement the "Registration interface".
  880. * For more information see Section 5.3 "Client Registration Interface" of the
  881. * LwM2M Technical Specification.
  882. *
  883. * NOTE: lwm2m_engine_start() is called automatically by this function.
  884. *
  885. * @param[in] client_ctx LwM2M context
  886. * @param[in] ep_name Registered endpoint name
  887. * @param[in] flags Flags used to configure current LwM2M session.
  888. * @param[in] event_cb Client event callback function
  889. */
  890. void lwm2m_rd_client_start(struct lwm2m_ctx *client_ctx, const char *ep_name,
  891. uint32_t flags, lwm2m_ctx_event_cb_t event_cb);
  892. /**
  893. * @brief Stop the LwM2M RD (De-register) Client
  894. *
  895. * The RD client sits just above the LwM2M engine and performs the necessary
  896. * actions to implement the "Registration interface".
  897. * For more information see Section 5.3 "Client Registration Interface" of the
  898. * LwM2M Technical Specification.
  899. *
  900. * @param[in] client_ctx LwM2M context
  901. * @param[in] event_cb Client event callback function
  902. */
  903. void lwm2m_rd_client_stop(struct lwm2m_ctx *client_ctx,
  904. lwm2m_ctx_event_cb_t event_cb);
  905. /**
  906. * @brief Trigger a Registration Update of the LwM2M RD Client
  907. */
  908. void lwm2m_rd_client_update(void);
  909. #endif /* ZEPHYR_INCLUDE_NET_LWM2M_H_ */
  910. /**@} */