summaryrefslogtreecommitdiff
path: root/src/persistence_client_library.c
blob: 12bc26684e238e7d6027b8c87598eb268d7fb721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
/******************************************************************************
 * Project         Persistency
 * (c) copyright   2012
 * Company         XS Embedded GmbH
 *****************************************************************************/
/******************************************************************************
 * This Source Code Form is subject to the terms of the
 * Mozilla Public License, v. 2.0. If a  copy of the MPL was not distributed
 * with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
******************************************************************************/
 /**
 * @file           persistence_client_library.c
 * @ingroup        Persistence client library
 * @author         Ingo Huerner
 * @brief          Implementation of the persistence client library.
 *                 Library provides an API to access persistent data
 * @see            
 */

#include "persistence_client_library_lc_interface.h"
#include "persistence_client_library_pas_interface.h"
#include "persistence_client_library_dbus_service.h"
#include "persistence_client_library_handle.h"
#include "persistence_client_library_custom_loader.h"
#include "persistence_client_library.h"
#include "persistence_client_library_backup_filelist.h"
#include "persistence_client_library_db_access.h"
#include "persistence_client_library_dbus_cmd.h"

#if USE_FILECACHE
   #include <persistence_file_cache.h>
#endif

#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <dlfcn.h>
#include <dbus/dbus.h>
#include <pthread.h>
#include <dlt.h>
#include <ctype.h>
#include <semaphore.h>

/// debug log and trace (DLT) setup
DLT_DECLARE_CONTEXT(gPclDLTContext);


/// global variable to store lifecycle shutdown mode
static int gShutdownMode = 0;
/// global shutdown cancel counter
static int gCancelCounter = 0;

static pthread_mutex_t gInitMutex = PTHREAD_MUTEX_INITIALIZER;

/// name of the backup blacklist file (contains all the files which are excluded from backup creation)
static const char* gBackupFilename = "BackupFileList.info";
static const char* gNsmAppId = "NodeStateManager";

static const char* gArtefactTemplate[]  = { "_Data_mnt_wt_%s_wt_itz-sem",
                                            "_Data_mnt_wt_%s_resource_table_cfg_itz-sem",
                                            "_Data_mnt_c_%s_cached_itz-sem",
                                            "_Data_mnt_c_%s_configurable_default_data_itz-sem",
                                            "_Data_mnt_c_%s_default_data_itz-sem",
                                           NULL };

static char gAppFolder[PERS_ORG_MAX_LENGTH_PATH_FILENAME] = {0};


#if USE_APPCHECK
/// global flag
static int gAppCheckFlag = -1;

static char gRctFilename[PERS_ORG_MAX_LENGTH_PATH_FILENAME] = {0};

#endif


int customAsyncInitClbk(int errcode)
{
  //printf("Dummy async init Callback: %d\n", errcode);
   (void)errcode;

  return 1;
}

// forward declaration
static int private_pclInitLibrary(const char* appName, int shutdownMode);
static int private_pclDeinitLibrary(void);


/* security check for valid application:
   if the RCT table exists, the application is proven to be valid (trusted),
   otherwise return EPERS_NOPRCTABLE  */
#if USE_APPCHECK
static void doInitAppcheck(const char* appName)
{
   // no need for NULL ptr check for appName, already done in calling function

   snprintf(gRctFilename, PERS_ORG_MAX_LENGTH_PATH_FILENAME, getLocalWtPathKey(), appName, plugin_gResTableCfg);

   if(access(gRctFilename, F_OK) == 0)
   {
      gAppCheckFlag = 1;   // "trusted" application
      DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("initLibrary - app check: "), DLT_STRING(appName), DLT_STRING("trusted app"));
   }
   else
   {
      gAppCheckFlag = 0;   // currently not a "trusted" application
      DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("initLibrary - app check: "), DLT_STRING(appName), DLT_STRING("NOT trusted app"));
   }
}
#endif


#if USE_APPCHECK
int doAppcheck(void)
{
   int trusted = 1;

   if(gAppCheckFlag != 1)
   {
      if(access(gRctFilename, F_OK) == 0)
      {
         gAppCheckFlag = 1;   // "trusted" application
      }
      else
      {
         gAppCheckFlag = 0;   // not a "trusted" application
         trusted = 0;
      }
   }
   return trusted;
}
#endif


char* makeShmName(const char* path)
{
   size_t pathLen = strlen(path);
   char* result = (char*)malloc(pathLen+1);   //free happens in checkLocalArtefacts
   int i =0;

   if(result != NULL)
   {
      memset(result, 0, pathLen+1);
      for(i = 0; i < pathLen; i++)
      {
         if(!isalnum(path[i]))
         {
            result[i] = '_';
         }
         else
         {
            result[i] = path[i];
         }
      }
      result[i] = '\0';
   }
   else
   {
      result = NULL;
   }
   return result;
}



void checkLocalArtefacts(const char* thePath, const char* appName)
{
   if(thePath != NULL && appName != NULL)
   {
      char* name = makeShmName(appName);

      if(name != NULL)
      {
         char buffer[256] = {0};
         int i = 0;

         while(gArtefactTemplate[i] != NULL)
         {
            memset(buffer, 0, 256);
            snprintf(buffer, 256, gArtefactTemplate[i++], name);

            if(sem_unlink(buffer) == 0)     // just try to unlink, don't check file really exists
            {
               DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("pclInitLibrary => sem_unlink"), DLT_STRING(buffer));
            }
         }
         free(name);
      }
   }
}



int pclInitLibrary(const char* appName, int shutdownMode)
{
   int rval = 1;

   int lock = pthread_mutex_lock(&gInitMutex);
   if(lock == 0)
   {
      if(appName != NULL && strlen(appName) > 0 && strlen(appName) < 256)
      {
         if(gPclInitCounter == 0)
         {
            DLT_REGISTER_CONTEXT(gPclDLTContext,"PCL","Ctx for PCL Logging");

            DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("pclInitLibrary => App:"), DLT_STRING(appName),
                                    DLT_STRING("- init counter: "), DLT_UINT(gPclInitCounter) );

            // do check if there are remaining semaphores for local app from previous lifecycle caused by app crash
            // (only when PCO key-value-store database backend is beeing used)
            checkLocalArtefacts("/dev/shm/", appName);
            rval = private_pclInitLibrary(appName, shutdownMode);
            if(rval >= 0)
            {
               gPclInitCounter++;     // increment after private init, otherwise atomic access is too early
            }
         }
         else
         {
            DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("pclInitLibrary - App:"), DLT_STRING(gAppId),
                                                  DLT_STRING("- ONLY INCREMENT init counter: "), DLT_UINT(gPclInitCounter) );

            gPclInitCounter++;     // increment after private init, otherwise atomic access is too early
         }
      }
      else
      {
         DLT_LOG(gPclDLTContext, DLT_LOG_ERROR, DLT_STRING("pclInitLibrary - appName invalid"));
         rval = EPERS_COMMON;
      }

      pthread_mutex_unlock(&gInitMutex);
   }
   else
   {
     DLT_LOG(gPclDLTContext, DLT_LOG_ERROR, DLT_STRING("pclInitLibrary - mutex lock failed:"), DLT_INT(lock));
   }

   return rval;
}

static int private_pclInitLibrary(const char* appName, int shutdownMode)
{
   // no need for NULL ptr check for appName, already done in calling function

   int rval = 1;
#if USE_PASINTERFACE
   int pasRegStatus = -1;
#endif

   char blacklistPath[PERS_ORG_MAX_LENGTH_PATH_FILENAME] = {0};

   gShutdownMode = shutdownMode;

#if USE_FSYNC
   DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("Using fsync version"));
#else
   DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("Using datasync version (DEFAULT)"));
#endif

#if USE_FILECACHE
   DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("Using the filecache"));
   pfcInitCache(appName);
#endif

   if(gDbusMainloopRunning == 0) // check if dbus has been already initialized
   {
      if(setup_dbus_mainloop() == -1)
      {
        DLT_LOG(gPclDLTContext, DLT_LOG_ERROR, DLT_STRING("initLibrary - Failed to setup main loop"));
        return EPERS_DBUS_MAINLOOP;
      }
      gDbusMainloopRunning = 1;
   }

#if USE_PASINTERFACE
   DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("PAS interface is enabled!!"));

   pasRegStatus = register_pers_admin_service();

   if(pasRegStatus == -1)
   {
     DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("initLibrary - Failed reg to PAS dbus interface"));
   }
   else if(pasRegStatus < -1)
   {
      DLT_LOG(gPclDLTContext, DLT_LOG_INFO,  DLT_STRING("initLibrary - registration to PAS currently not possible."));
      return EPERS_NO_REG_TO_PAS;
   }
   else
   {
     DLT_LOG(gPclDLTContext, DLT_LOG_INFO,  DLT_STRING("initLibrary - Successfully established IPC protocol for PCL."));
     gPasRegistered = 1;   // remember registration to PAS
   }
#else
   DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("PAS interface not enabled, enable with \"./configure --enable-pasinterface\""));
#endif

   strncpy(gAppId, appName, PERS_RCT_MAX_LENGTH_RESPONSIBLE);  // assign application name
   gAppId[PERS_RCT_MAX_LENGTH_RESPONSIBLE-1] = '\0';

   if(strcmp(appName, gNsmAppId)  != 0)   // check for NodeStateManager
   {
      // get and fd to the app folder, needed to call syncfs when cmd CMD_LC_PREPARE_SHUTDOWN is called
      // (commit buffer cache to disk)
      // only if not NSM ==> if NSM has an handle to the folder, it may interfere with PAS installation sequence
      memset(gAppFolder, 0, PERS_ORG_MAX_LENGTH_PATH_FILENAME-1);
      snprintf(gAppFolder, PERS_ORG_MAX_LENGTH_PATH_FILENAME, "/Data/mnt-c/%s/", appName);
      gAppFolder[PERS_ORG_MAX_LENGTH_PATH_FILENAME-1] = '\0';

      gSyncFd = open(gAppFolder, O_RDONLY);
      if(gSyncFd == -1)
      {
         DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("Failed to open syncfd:"), DLT_STRING(strerror(errno)));
      }
   }
   else
   {
      gIsNodeStateManager = 1;
   }

   // Assemble backup blacklist path
   snprintf(blacklistPath, PERS_ORG_MAX_LENGTH_PATH_FILENAME, "%s%s/%s", CACHEPREFIX, appName, gBackupFilename);

   if(readBlacklistConfigFile(blacklistPath) == -1)
   {
     DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("initLibrary - Err access blacklist:"), DLT_STRING(blacklistPath));
   }


   if(gShutdownMode != PCL_SHUTDOWN_TYPE_NONE)
   {
     if(register_lifecycle(shutdownMode) == -1) // register for lifecycle dbus messages
     {
       DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("initLibrary => Failed reg to LC dbus interface"));
     }
   }

   if((rval = load_custom_plugins(customAsyncInitClbk)) < 0)      // load custom plugins
   {
     DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("Failed to load custom plugins"));
     return rval;
   }

   init_key_handle_array();

#if USE_APPCHECK
   doInitAppcheck(appName);      // check if we have a trusted application
#endif

   pers_unlock_access();

   return rval;
}



int pclDeinitLibrary(void)
{
   int rval = 1;

   int lock = pthread_mutex_lock(&gInitMutex);

   if(lock == 0)
   {
      if(gPclInitCounter == 1)
      {
         DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("pclDeinitLibrary - DEINIT  client lib - "), DLT_STRING(gAppId),
                                               DLT_STRING("- init counter: "), DLT_UINT(gPclInitCounter));
         rval = private_pclDeinitLibrary();

         gDbusMainloopRunning = 0;
         gPclInitCounter--;         // decrement init counter
         DLT_UNREGISTER_CONTEXT(gPclDLTContext);
      }
      else if(gPclInitCounter > 1)
      {
         DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("pclDeinitLibrary - DEINIT client lib - "), DLT_STRING(gAppId),
                                              DLT_STRING("- ONLY DECREMENT init counter: "), DLT_UINT(gPclInitCounter));
         gPclInitCounter--;   // decrement init counter
      }
      else
      {
       DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("pclDeinitLibrary - DEINIT client lib - "), DLT_STRING(gAppId),
                                             DLT_STRING("- NOT INITIALIZED: "));
         rval = EPERS_NOT_INITIALIZED;
      }

      pthread_mutex_unlock(&gInitMutex);
   }

   return rval;
}

static int private_pclDeinitLibrary(void)
{
   int rval = 1;
   int* retval;

   MainLoopData_u data;

   if(gShutdownMode != PCL_SHUTDOWN_TYPE_NONE)  // unregister for lifecycle dbus messages
   {
      rval = unregister_lifecycle(gShutdownMode);
   }

#if USE_PASINTERFACE == 1
   rval = unregister_pers_admin_service();
   if(0 != rval)
   {
      DLT_LOG(gPclDLTContext, DLT_LOG_ERROR, DLT_STRING("pclDeinitLibrary - Err to de-initialize IPC protocol for PCL."));
   }
   else
   {
      DLT_LOG(gPclDLTContext, DLT_LOG_INFO,  DLT_STRING("pclDeinitLibrary - Succ de-initialized IPC protocol for PCL."));
      gPasRegistered = 0;
   }
#endif

   memset(&data, 0, sizeof(MainLoopData_u));
   data.cmd = (uint32_t)CMD_LC_PREPARE_SHUTDOWN;
   data.params[0] = Shutdown_Full;        // shutdown full
   data.params[1] = 0;                    // internal prepare shutdown
   data.string[0] = '\0';                 // no string parameter, set to 0
   deliverToMainloop_NM(&data);           // send quit command to dbus mainloop


   memset(&data, 0, sizeof(MainLoopData_u));
   data.cmd = (uint32_t)CMD_QUIT;
   data.string[0] = '\0';           // no string parameter, set to 0

   deliverToMainloop_NM(&data);                       // send quit command to dbus mainloop

   pthread_join(gMainLoopThread, (void**)&retval);    // wait until the dbus mainloop has ended

   deleteHandleTrees();                               // delete allocated trees
   deleteBackupTree();
   deleteNotifyTree();

#if USE_FILECACHE
   pfcDeinitCache();
#endif

   if(gIsNodeStateManager == 0)
      close(gSyncFd);

   return rval;
}



int pclLifecycleSet(int shutdown)
{
   int rval = 0;

   if(gShutdownMode == PCL_SHUTDOWN_TYPE_NONE)
   {
      if(shutdown == PCL_SHUTDOWN)
      {
         MainLoopData_u data;

         DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("lifecycleSet - PCL_SHUTDOWN -"), DLT_STRING(gAppId));

         memset(&data, 0, sizeof(MainLoopData_u));
         data.cmd = (uint32_t)CMD_LC_PREPARE_SHUTDOWN;
         data.params[0] = Shutdown_Partial;     // shutdown partial
         data.params[1] = 0;                    // internal prepare shutdown
         data.string[0] = '\0';                 // no string parameter, set to 0
         deliverToMainloop_NM(&data);           // send quit command to dbus mainloop

         gCancelCounter++;
      }
      else if(shutdown == PCL_SHUTDOWN_CANCEL)
      {
         DLT_LOG(gPclDLTContext, DLT_LOG_INFO, DLT_STRING("lifecycleSet - PCL_SHUTDOWN_CANCEL -"), DLT_STRING(gAppId), DLT_STRING(" Cancel Counter - "), DLT_INT(gCancelCounter));
         if(gCancelCounter < Shutdown_MaxCount)
         {
           pers_unlock_access();
         }
         else
         {
           rval = EPERS_SHUTDOWN_MAX_CANCEL;
         }
      }
      else
      {
         rval = EPERS_COMMON;
      }
   }
   else
   {
      DLT_LOG(gPclDLTContext, DLT_LOG_WARN, DLT_STRING("lifecycleSet - not allowed, type not PCL_SHUTDOWN_TYPE_NONE"));
      rval = EPERS_SHUTDOWN_NO_PERMIT;
   }

   return rval;
}


#if 0
void pcl_test_send_shutdown_command()
{
   const char* command = {"snmpset -v1 -c public 134.86.58.225 iso.3.6.1.4.1.1909.22.1.1.1.5.1 i 1"};

   if(system(command) == -1)
   {
      printf("Failed to send shutdown command!!!!\n");
   }
}
#endif