/* * Dlt system manager to Dlt * @licence app begin@ * * Copyright (C) 2011, BMW AG - Alexander Wenzel * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU Lesser General Public License, version 2.1, as published by the Free Software Foundation. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General * Public License, version 2.1, for more details. * * You should have received a copy of the GNU Lesser General Public License, version 2.1, along * with this program; if not, see . * * Note that the copyright holders assume that the GNU Lesser General Public License, version 2.1, may * also be applicable to programs even in cases in which the program is not a library in the technical sense. * * Linking DLT statically or dynamically with other modules is making a combined work based on DLT. You may * license such other modules under the GNU Lesser General Public License, version 2.1. If you do not want to * license your linked modules under the GNU Lesser General Public License, version 2.1, you * may use the program under the following exception. * * As a special exception, the copyright holders of DLT give you permission to combine DLT * with software programs or libraries that are released under any license unless such a combination is not * permitted by the license of such a software program or library. You may copy and distribute such a * system following the terms of the GNU Lesser General Public License, version 2.1, including this * special exception, for DLT and the licenses of the other code concerned. * * Note that people who make modified versions of DLT are not obligated to grant this special exception * for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License, * version 2.1, gives permission to release a modified version without this exception; this exception * also makes it possible to release a modified version which carries forward this exception. * * @licence end@ */ /******************************************************************************* ** ** ** SRC-MODULE: dlt-system.c ** ** ** ** TARGET : linux ** ** ** ** PROJECT : DLT ** ** ** ** AUTHOR : Alexander Wenzel Alexander.AW.Wenzel@bmw.de ** ** ** ** PURPOSE : ** ** ** ** REMARKS : ** ** ** ** PLATFORM DEPENDANT [yes/no]: yes ** ** ** ** TO BE CHANGED BY USER [yes/no]: no ** ** ** *******************************************************************************/ /******************************************************************************* ** Author Identity ** ******************************************************************************** ** ** ** Initials Name Company ** ** -------- ------------------------- ---------------------------------- ** ** aw Alexander Wenzel BMW ** *******************************************************************************/ /******************************************************************************* ** Revision Control History ** *******************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "dlt_common.h" #include "dlt_user.h" #include "dlt-system.h" #include "dlt-system_cfg.h" #include "dlt-system-log.h" /* Port number, to which the syslogd-ng sends its log messages */ #define MAXSTRLEN 1024 DLT_DECLARE_CONTEXT(syslogContext); DLT_DECLARE_CONTEXT(processesContext); DLT_DECLARE_CONTEXT(filetransferContext); DLT_DECLARE_CONTEXT(shellContext); DltContext logFileContext[DLT_SYSTEM_LOG_FILE_MAX]; DltSystemOptions options; DltSystemRuntime runtime; void dlt_system_init_options(DltSystemOptions *options) { int num; strncpy(options->ConfigurationFile,DEFAULT_CONFIGURATION_FILE,sizeof(options->ConfigurationFile)); strncpy(options->ApplicationId,DEFAULT_APPLICATION_ID,sizeof(options->ApplicationId)); options->daemonise = 0; /* Syslog Adapter */ options->SyslogEnable = 0; strncpy(options->SyslogContextId,DEFAULT_SYSLOG_CONTEXT_ID,sizeof(options->SyslogContextId)); options->SyslogPort = DEFAULT_SYSLOG_PORT; /* Filetransfer */ options->FiletransferEnable = 0; strncpy(options->FiletransferContextId,DEFAULT_FILETRANSFER_CONTEXT_ID,sizeof(options->FiletransferContextId)); strncpy(options->FiletransferDirectory1,DEFAULT_FILETRANSFER_DIRECTORY,sizeof(options->FiletransferDirectory1)); options->FiletransferDirectory2[0]=0; options->FiletransferTimeStartup = DEFAULT_FILETRANSFER_TIME_STARTUP; options->FiletransferTimeDelay = DEFAULT_FILETRANSFER_TIME_DELAY; options->FiletransferTimeoutBetweenLogs = DEFAULT_FILETRANSFER_TIMEOUT_BETWEEN_LOGS; /* Log file */ options->LogFileEnable = 0; options->LogFileNumber = 0; for(num=0;numLogFileFilename[num][0]=0; options->LogFileMode[num]=0; options->LogFileContextId[num][0]=0; options->LogFileTimeDelay[num]=0; } /* Log processes */ options->LogProcessesEnable = 0; strncpy(options->LogProcessesContextId,DEFAULT_LOG_PROCESSES_CONTEXT_ID,sizeof(options->LogProcessesContextId)); options->LogProcessNumber = 0; for(num=0;numLogProcessName[num][0]=0; options->LogProcessFilename[num][0]=0; options->LogProcessMode[num]=0; options->LogProcessTimeDelay[num]=0; } } int dlt_system_parse_options(DltSystemOptions *options,int argc, char* argv[]) { int opt; char version[255]; while ((opt = getopt(argc, argv, "c:hd")) != -1) { switch (opt) { case 'd': { options->daemonise = 1; break; } case 'c': { strncpy(options->ConfigurationFile,optarg,sizeof(options->ConfigurationFile)); break; } case 'h': { dlt_get_version(version); printf("Usage: dlt-system [options]\n"); printf("System information manager and forwarder to DLT daemon.\n"); printf("%s \n", version); printf("Options:\n"); printf("-d - Daemonize\n"); printf("-c filename - Set configuration file (default: /etc/dlt-system.conf)\n"); printf("-h - This help\n"); return -1; break; } default: /* '?' */ { fprintf(stderr, "Unknown option '%c'\n", optopt); return -1; } } } return 0; } int dlt_system_parse_configuration(DltSystemOptions *options) { FILE * pFile; char line[1024]; char token[1024]; char value[1024]; char *pch; /* open configuration file */ pFile = fopen (options->ConfigurationFile,"r"); if (pFile!=NULL) { while(1) { /* fetch line from configuration file */ if ( fgets (line , 1024 , pFile) != NULL ) { //printf("Line: %s\n",line); pch = strtok (line," =\r\n"); token[0]=0; value[0]=0; while (pch != NULL) { if(strcmp(pch,"#")==0) break; if(token[0]==0) { strncpy(token,pch,sizeof(token)); } else { strncpy(value,pch,sizeof(value)); break; } pch = strtok (NULL, " =\r\n"); } if(token[0] && value[0]) { /* parse arguments here */ if(strcmp(token,"ApplicationId")==0) { strncpy(options->ApplicationId,value,sizeof(options->ApplicationId)); printf("Option: %s=%s\n",token,value); } /* Syslog Adapter */ else if(strcmp(token,"SyslogEnable")==0) { options->SyslogEnable = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"SyslogContextId")==0) { strncpy(options->SyslogContextId,value,sizeof(options->SyslogContextId)); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"SyslogPort")==0) { options->SyslogPort = atoi(value); printf("Option: %s=%s\n",token,value); } /* Filetransfer */ else if(strcmp(token,"FiletransferEnable")==0) { options->FiletransferEnable = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"FiletransferDirectory1")==0) { strncpy(options->FiletransferDirectory1,value,sizeof(options->FiletransferDirectory1)); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"FiletransferDirectory2")==0) { strncpy(options->FiletransferDirectory2,value,sizeof(options->FiletransferDirectory2)); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"FiletransferContextId")==0) { strncpy(options->FiletransferContextId,value,sizeof(options->FiletransferContextId)); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"FiletransferTimeStartup")==0) { options->FiletransferTimeStartup = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"FiletransferTimeDelay")==0) { options->FiletransferTimeDelay = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"FiletransferTimeoutBetweenLogs")==0) { options->FiletransferTimeoutBetweenLogs = atoi(value); printf("Option: %s=%s\n",token,value); } /* Log File */ else if(strcmp(token,"LogFileEnable")==0) { options->LogFileEnable = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogFileFilename")==0) { strncpy(options->LogFileFilename[options->LogFileNumber],value,sizeof(options->LogFileFilename[options->LogFileNumber])); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogFileMode")==0) { options->LogFileMode[options->LogFileNumber] = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogFileTimeDelay")==0) { options->LogFileTimeDelay[options->LogFileNumber] = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogFileContextId")==0) { strncpy(options->LogFileContextId[options->LogFileNumber],value,sizeof(options->LogFileContextId[options->LogFileNumber])); printf("Option: %s=%s\n",token,value); if(options->LogFileNumber < (DLT_SYSTEM_LOG_FILE_MAX-1) ) options->LogFileNumber++; } /* Log processes */ else if(strcmp(token,"LogProcessesEnable")==0) { options->LogProcessesEnable = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogProcessesContextId")==0) { strncpy(options->LogProcessesContextId,value,sizeof(options->LogProcessesContextId)); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogProcessName")==0) { strncpy(options->LogProcessName[options->LogProcessNumber],value,sizeof(options->LogProcessName[options->LogProcessNumber])); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogProcessFilename")==0) { strncpy(options->LogProcessFilename[options->LogProcessNumber],value,sizeof(options->LogProcessFilename[options->LogProcessNumber])); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogProcessMode")==0) { options->LogProcessMode[options->LogProcessNumber] = atoi(value); printf("Option: %s=%s\n",token,value); } else if(strcmp(token,"LogProcessTimeDelay")==0) { options->LogProcessTimeDelay[options->LogProcessNumber] = atoi(value); printf("Option: %s=%s\n",token,value); if(options->LogProcessNumber < (DLT_SYSTEM_LOG_PROCESSES_MAX-1) ) options->LogProcessNumber++; } else { fprintf(stderr, "Unknown option: %s=%s\n",token,value); } } } else { break; } } fclose (pFile); } else { fprintf(stderr, "Cannot open configuration file: %s\n",options->ConfigurationFile); return -1; } return 0; } void dlt_system_daemonize() { int i,ret; //int lfp,bytes_written; /* Daemonize */ i=fork(); if (i<0) { exit(-1); /* fork error */ } if (i>0) { exit(0); /* parent exits */ } /* child (daemon) continues */ /* Process independency */ /* obtain a new process group */ if (setsid()==-1) { exit(-1); /* fork error */ } /* Close descriptors */ for (i=getdtablesize();i>=0;--i) { close(i); /* close all descriptors */ } /* Open standard descriptors stdin, stdout, stderr */ i=open("/dev/null",O_RDWR); /* open stdin */ ret=dup(i); /* stdout */ ret=dup(i); /* stderr */ /* Set umask */ //umask(DLT_DAEMON_UMASK); /* Change to known directory */ //ret=chdir(DLT_USER_DIR); /* Ensure single copy of daemon; run only one instance at a time */ #if 0 lfp=open(DLT_DAEMON_LOCK_FILE,O_RDWR|O_CREAT,DLT_DAEMON_LOCK_FILE_PERM); if (lfp<0) { dlt_log(LOG_CRIT, "can't open lock file, exiting DLT daemon\n"); exit(-1); /* can not open */ } if (lockf(lfp,F_TLOCK,0)<0) { dlt_log(LOG_CRIT, "can't lock lock file, exiting DLT daemon\n"); exit(-1); /* can not lock */ } /* only first instance continues */ sprintf(str,"%d\n",getpid()); bytes_written=write(lfp,str,strlen(str)); /* record pid to lockfile */ #endif /* Catch signals */ signal(SIGCHLD,SIG_IGN); /* ignore child */ signal(SIGTSTP,SIG_IGN); /* ignore tty signals */ signal(SIGTTOU,SIG_IGN); signal(SIGTTIN,SIG_IGN); } /* dlt_system_daemonize() */ void dlt_system_cleanup() { int num; if(options.SyslogEnable) DLT_UNREGISTER_CONTEXT(syslogContext); if(options.FiletransferEnable) DLT_UNREGISTER_CONTEXT(filetransferContext); if(options.LogFileEnable) { for(num=0;num0) { } return 0; } int main(int argc, char* argv[]) { int sock = -1; int bytes_read; socklen_t addr_len; char recv_data[MAXSTRLEN]; struct sockaddr_in client_addr, server_addr; fd_set master_rfds; fd_set read_rfds; int fdmax; struct timeval tv; int retval; uint32_t lasttime; int firsttime = 1; int num; /* init options */ dlt_system_init_options(&options); /* parse command line options */ if(dlt_system_parse_options(&options,argc,argv)) { return -1; } if(options.daemonise) { dlt_system_daemonize(); } /* set signal handler */ signal(SIGTERM, dlt_system_signal_handler); /* software termination signal from kill */ signal(SIGHUP, dlt_system_signal_handler); /* hangup signal */ signal(SIGQUIT, dlt_system_signal_handler); signal(SIGINT, dlt_system_signal_handler); /* parse configuration file */ if(dlt_system_parse_configuration(&options)) { return -1; } /* register application and contexts */ DLT_REGISTER_APP(options.ApplicationId,"DLT System Manager"); if(options.SyslogEnable) DLT_REGISTER_CONTEXT(syslogContext,options.SyslogContextId,"SYSLOG Adapter"); if(options.FiletransferEnable) DLT_REGISTER_CONTEXT(filetransferContext,options.FiletransferContextId,"Filetransfer"); if(options.LogFileEnable) { for(num=0;numfdmax) fdmax=sock; } /* init timers */ lasttime = dlt_uptime(); runtime.timeStartup = 0; runtime.timeFiletransferDelay = 0; /* initialise filetransfer manager */ if(options.FiletransferEnable) dlt_system_filetransfer_init(&options,&runtime); while (1) { /* Wait up to one second. */ tv.tv_sec = 0; if(runtime.filetransferRunning) tv.tv_usec = 20000; else tv.tv_usec = (dlt_uptime()-lasttime+10000)*100; /* wait data to be received, or wait min time */ read_rfds = master_rfds; retval = select(fdmax+1, &read_rfds, NULL, NULL, &tv); if (retval == -1) perror("select()"); else if (retval) ;//printf("Data is available now.\n"); else ;//printf("No data within one seconds.\n"); /* call filtransfer even in shorter time schedule */ if(options.FiletransferEnable && runtime.filetransferRunning) dlt_system_filetransfer_run(&options,&runtime,&filetransferContext); if((dlt_uptime()-lasttime) >= 10000) { /* one second elapsed */ lasttime = dlt_uptime(); runtime.timeStartup++; /* filetransfer manager */ if(options.FiletransferEnable) { if(runtime.timeStartup > options.FiletransferTimeStartup) { if(runtime.timeFiletransferDelay>0) { runtime.timeFiletransferDelay--; } else { dlt_system_filetransfer_run(&options,&runtime,&filetransferContext); } } } /* log files */ if(options.LogFileEnable) { for(num=0;num