server.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #include <signal.h>
  6. #include <errno.h> // errno, EINTR
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #define __USE_XOPEN2K
  11. #ifdef UA_MULTITHREADING
  12. # include <pthread.h>
  13. #endif
  14. #ifdef NOT_AMALGATED
  15. # include <time.h>
  16. # include "ua_types.h"
  17. # include "ua_server.h"
  18. # include "logger_stdout.h"
  19. # include "networklayer_tcp.h"
  20. #else
  21. # include "open62541.h"
  22. #endif
  23. /****************************/
  24. /* Server-related variables */
  25. /****************************/
  26. UA_Boolean running = 1;
  27. UA_Logger logger;
  28. /*************************/
  29. /* Read-only data source */
  30. /*************************/
  31. static UA_StatusCode readTimeData(void *handle, UA_Boolean sourceTimeStamp, UA_DataValue *value) {
  32. UA_DateTime *currentTime = UA_DateTime_new();
  33. if(!currentTime)
  34. return UA_STATUSCODE_BADOUTOFMEMORY;
  35. *currentTime = UA_DateTime_now();
  36. value->value.type = &UA_TYPES[UA_TYPES_DATETIME];
  37. value->value.arrayLength = -1;
  38. value->value.data = currentTime;
  39. value->value.arrayDimensionsSize = -1;
  40. value->value.arrayDimensions = NULL;
  41. value->hasValue = UA_TRUE;
  42. if(sourceTimeStamp) {
  43. value->hasSourceTimestamp = UA_TRUE;
  44. value->sourceTimestamp = *currentTime;
  45. }
  46. return UA_STATUSCODE_GOOD;
  47. }
  48. static void releaseTimeData(void *handle, UA_DataValue *value) {
  49. UA_DateTime_delete((UA_DateTime*)value->value.data);
  50. }
  51. /*****************************/
  52. /* Read-only CPU temperature */
  53. /* Only on Linux */
  54. /*****************************/
  55. FILE* temperatureFile = NULL;
  56. static UA_StatusCode readTemperature(void *handle, UA_Boolean sourceTimeStamp, UA_DataValue *value) {
  57. UA_Double* currentTemperature = UA_Double_new();
  58. if(!currentTemperature)
  59. return UA_STATUSCODE_BADOUTOFMEMORY;
  60. fseek(temperatureFile, 0, SEEK_SET);
  61. if(fscanf(temperatureFile, "%lf", currentTemperature) != 1){
  62. UA_LOG_WARNING(logger, UA_LOGCATEGORY_USERLAND, "Can not parse temperature");
  63. exit(1);
  64. }
  65. *currentTemperature /= 1000.0;
  66. value->value.type = &UA_TYPES[UA_TYPES_DOUBLE];
  67. value->value.arrayLength = -1;
  68. value->value.data = currentTemperature;
  69. value->value.arrayDimensionsSize = -1;
  70. value->value.arrayDimensions = NULL;
  71. value->hasValue = UA_TRUE;
  72. return UA_STATUSCODE_GOOD;
  73. }
  74. static void releaseTemperature(void *handle, UA_DataValue *value) {
  75. UA_Double_delete((UA_Double*)value->value.data);
  76. }
  77. /*************************/
  78. /* Read-write status led */
  79. /*************************/
  80. #ifdef UA_MULTITHREADING
  81. pthread_rwlock_t writeLock;
  82. #endif
  83. FILE* triggerFile = NULL;
  84. FILE* ledFile = NULL;
  85. UA_Boolean ledStatus = 0;
  86. static UA_StatusCode readLedStatus(void *handle, UA_Boolean sourceTimeStamp, UA_DataValue *value) {
  87. /* In order to reduce blocking time, we could alloc memory for every read
  88. and return a copy of the data. */
  89. #ifdef UA_MULTITHREADING
  90. pthread_rwlock_rdlock(&writeLock);
  91. #endif
  92. value->value.type = &UA_TYPES[UA_TYPES_BOOLEAN];
  93. value->value.arrayLength = -1;
  94. value->value.data = &ledStatus;
  95. value->value.arrayDimensionsSize = -1;
  96. value->value.arrayDimensions = NULL;
  97. value->hasValue = UA_TRUE;
  98. if(sourceTimeStamp) {
  99. value->sourceTimestamp = UA_DateTime_now();
  100. value->hasSourceTimestamp = UA_TRUE;
  101. }
  102. return UA_STATUSCODE_GOOD;
  103. }
  104. static void releaseLedStatus(void *handle, UA_DataValue *value) {
  105. /* If we allocated memory for a specific read, free the content of the
  106. variantdata. */
  107. value->value.arrayLength = -1;
  108. value->value.data = NULL;
  109. #ifdef UA_MULTITHREADING
  110. pthread_rwlock_unlock(&writeLock);
  111. #endif
  112. }
  113. static UA_StatusCode writeLedStatus(void *handle, const UA_Variant *data) {
  114. #ifdef UA_MULTITHREADING
  115. pthread_rwlock_wrlock(&writeLock);
  116. #endif
  117. if(data->data)
  118. ledStatus = *(UA_Boolean*)data->data;
  119. if(triggerFile)
  120. fseek(triggerFile, 0, SEEK_SET);
  121. if(ledFile){
  122. if(ledStatus == 1){
  123. fprintf(ledFile, "%s", "1");
  124. } else {
  125. fprintf(ledFile, "%s", "0");
  126. }
  127. fflush(ledFile);
  128. }
  129. #ifdef UA_MULTITHREADING
  130. pthread_rwlock_unlock(&writeLock);
  131. #endif
  132. return UA_STATUSCODE_GOOD;
  133. }
  134. static void stopHandler(int sign) {
  135. UA_LOG_INFO(logger, UA_LOGCATEGORY_SERVER, "Received Ctrl-C\n");
  136. running = 0;
  137. }
  138. static UA_ByteString loadCertificate(void) {
  139. UA_ByteString certificate = UA_STRING_NULL;
  140. FILE *fp = NULL;
  141. //FIXME: a potiential bug of locating the certificate, we need to get the path from the server's config
  142. fp=fopen("localhost.der", "rb");
  143. if(!fp) {
  144. errno = 0; // we read errno also from the tcp layer...
  145. return certificate;
  146. }
  147. fseek(fp, 0, SEEK_END);
  148. certificate.length = ftell(fp);
  149. certificate.data = malloc(certificate.length*sizeof(UA_Byte));
  150. if(!certificate.data)
  151. return certificate;
  152. fseek(fp, 0, SEEK_SET);
  153. if(fread(certificate.data, sizeof(UA_Byte), certificate.length, fp) < (size_t)certificate.length)
  154. UA_ByteString_deleteMembers(&certificate); // error reading the cert
  155. fclose(fp);
  156. return certificate;
  157. }
  158. int main(int argc, char** argv) {
  159. signal(SIGINT, stopHandler); /* catches ctrl-c */
  160. #ifdef UA_MULTITHREADING
  161. pthread_rwlock_init(&writeLock, 0);
  162. #endif
  163. UA_Server *server = UA_Server_new(UA_ServerConfig_standard);
  164. logger = Logger_Stdout_new();
  165. UA_Server_setLogger(server, logger);
  166. UA_ByteString certificate = loadCertificate();
  167. UA_Server_setServerCertificate(server, certificate);
  168. UA_ByteString_deleteMembers(&certificate);
  169. UA_Server_addNetworkLayer(server, ServerNetworkLayerTCP_new(UA_ConnectionConfig_standard, 16664));
  170. // add node with the datetime data source
  171. UA_DataSource dateDataSource = (UA_DataSource)
  172. {.handle = NULL,
  173. .read = readTimeData,
  174. .release = releaseTimeData,
  175. .write = NULL};
  176. const UA_QualifiedName dateName = UA_QUALIFIEDNAME(1, "current time");
  177. UA_Server_addDataSourceVariableNode(server, dateDataSource, dateName, UA_NODEID_NULL,
  178. UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER),
  179. UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES));
  180. //cpu temperature monitoring for linux machines
  181. if((temperatureFile = fopen("/sys/class/thermal/thermal_zone0/temp", "r"))){
  182. // add node with the data source
  183. UA_DataSource temperatureDataSource = (UA_DataSource)
  184. {.handle = NULL,
  185. .read = readTemperature,
  186. .release = releaseTemperature,
  187. .write = NULL};
  188. const UA_QualifiedName tempName = UA_QUALIFIEDNAME(1, "cpu temperature");
  189. UA_Server_addDataSourceVariableNode(server, temperatureDataSource, tempName, UA_NODEID_NULL,
  190. UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER),
  191. UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES));
  192. }
  193. //LED control for rpi
  194. if ( (triggerFile = fopen("/sys/class/leds/led0/trigger", "w"))
  195. && (ledFile = fopen("/sys/class/leds/led0/brightness", "w"))) {
  196. //setting led mode to manual
  197. fprintf(triggerFile, "%s", "none");
  198. fflush(triggerFile);
  199. //turning off led initially
  200. fprintf(ledFile, "%s", "1");
  201. fflush(ledFile);
  202. // add node with the LED status data source
  203. UA_DataSource ledStatusDataSource = (UA_DataSource)
  204. {.handle = NULL,
  205. .read = readLedStatus,
  206. .release = releaseLedStatus,
  207. .write = writeLedStatus};
  208. const UA_QualifiedName statusName = UA_QUALIFIEDNAME(0, "status LED");
  209. UA_Server_addDataSourceVariableNode(server, ledStatusDataSource, statusName, UA_NODEID_NULL,
  210. UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER),
  211. UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES));
  212. }
  213. // add a static variable node to the adresspace
  214. UA_Variant *myIntegerVariant = UA_Variant_new();
  215. UA_Int32 myInteger = 42;
  216. UA_Variant_setScalarCopy(myIntegerVariant, &myInteger, &UA_TYPES[UA_TYPES_INT32]);
  217. const UA_QualifiedName myIntegerName = UA_QUALIFIEDNAME(1, "the answer");
  218. const UA_NodeId myIntegerNodeId = UA_NODEID_STRING(1, "the.answer");
  219. UA_NodeId parentNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER);
  220. UA_NodeId parentReferenceNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES);
  221. UA_Server_addVariableNode(server, myIntegerVariant, myIntegerName,
  222. myIntegerNodeId, parentNodeId, parentReferenceNodeId);
  223. /**************/
  224. /* Demo Nodes */
  225. /**************/
  226. #define DEMOID 50000
  227. UA_Server_addObjectNode(server,UA_QUALIFIEDNAME(1, "Demo"), UA_NODEID_NUMERIC(1, DEMOID), UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER), UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES), UA_NODEID_NUMERIC(0, UA_NS0ID_FOLDERTYPE));
  228. #define SCALARID 50001
  229. UA_Server_addObjectNode(server,UA_QUALIFIEDNAME(1, "Scalar"), UA_NODEID_NUMERIC(1, SCALARID), UA_NODEID_NUMERIC(1, DEMOID), UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES), UA_NODEID_NUMERIC(0, UA_NS0ID_FOLDERTYPE));
  230. #define ARRAYID 50002
  231. UA_Server_addObjectNode(server,UA_QUALIFIEDNAME(1, "Array"), UA_NODEID_NUMERIC(1, ARRAYID), UA_NODEID_NUMERIC(1, DEMOID), UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES), UA_NODEID_NUMERIC(0, UA_NS0ID_FOLDERTYPE));
  232. UA_UInt32 id = 51000; //running id in namespace 0
  233. for(UA_UInt32 type = 0; UA_IS_BUILTIN(type); type++) {
  234. if(type == UA_TYPES_VARIANT || type == UA_TYPES_DIAGNOSTICINFO)
  235. continue;
  236. //add a scalar node for every built-in type
  237. void *value = UA_new(&UA_TYPES[type]);
  238. UA_Variant *variant = UA_Variant_new();
  239. UA_Variant_setScalar(variant, value, &UA_TYPES[type]);
  240. char name[15];
  241. sprintf(name, "%02d", type);
  242. UA_QualifiedName myIntegerName = UA_QUALIFIEDNAME(1, name);
  243. UA_Server_addVariableNode(server, variant, myIntegerName, UA_NODEID_NUMERIC(1, ++id),
  244. UA_NODEID_NUMERIC(1, SCALARID), UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES));
  245. //add an array node for every built-in type
  246. UA_Variant *arrayvar = UA_Variant_new();
  247. UA_Variant_setArray(arrayvar, UA_Array_new(&UA_TYPES[type], 10), 10, &UA_TYPES[type]);
  248. UA_Server_addVariableNode(server, arrayvar, myIntegerName, UA_NODEID_NUMERIC(1, ++id),
  249. UA_NODEID_NUMERIC(1, ARRAYID), UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES));
  250. }
  251. //start server
  252. UA_StatusCode retval = UA_Server_run(server, 1, &running); //blocks until running=false
  253. //ctrl-c received -> clean up
  254. UA_Server_delete(server);
  255. if(temperatureFile)
  256. fclose(temperatureFile);
  257. if(triggerFile){
  258. fseek(triggerFile, 0, SEEK_SET);
  259. //setting led mode to default
  260. fprintf(triggerFile, "%s", "mmc0");
  261. fclose(triggerFile);
  262. }
  263. if(ledFile){
  264. fclose(ledFile);
  265. }
  266. #ifdef UA_MULTITHREADING
  267. pthread_rwlock_destroy(&writeLock);
  268. #endif
  269. return retval;
  270. }