File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / src / mqttd.c
Revision 1.2.2.5: download - view: text, annotated - select for diffs - revision graph
Tue Apr 24 08:06:09 2012 UTC (12 years, 3 months ago) by misho
Branches: mqtt1_1
add new Pubs structure
fix error messages
optimize srv_socket

    1: #include "global.h"
    2: #include "mqttd.h"
    3: #include "rtlm.h"
    4: #include "utils.h"
    5: #include "daemon.h"
    6: 
    7: 
    8: io_enableDEBUG;
    9: 
   10: cfg_root_t cfg;
   11: sessions_t Sessions;
   12: pubs_t Pubs;
   13: sched_root_task_t *root;
   14: sqlite3 *acc, *pub;
   15: pthread_mutex_t mtx_sess, mtx_pub;
   16: FILE *logg;
   17: extern char compiled[], compiledby[], compilehost[];
   18: static char szCfgName[MAXPATHLEN];
   19: intptr_t Kill;
   20: 
   21: 
   22: static void
   23: Usage(void)
   24: {
   25: 	printf(	" -= MQTT Broker =- MQTT Service from ELWIX\n"
   26: 		"=== %s@%s === Compiled: %s ===\n\n"
   27: 		"\t-c <config>\tService config\n"
   28: 		"\t-b\t\tBatch mode\n"
   29: 		"\t-v\t\tVerbose (more -vvv, more verbose)\n"
   30: 		"\t-h\t\tHelp! This screen\n\n", 
   31: 		compiledby, compilehost, compiled);
   32: }
   33: 
   34: static void
   35: sigHand(int sig)
   36: {
   37: 	int stat;
   38: 
   39: 	switch (sig) {
   40: 		case SIGHUP:
   41: 			cfgUnloadConfig(&cfg);
   42: 			if (!cfgLoadConfig(szCfgName, &cfg)) {
   43: 				ioDEBUG(1, "Config reload OK!");
   44: 				break;
   45: 			}
   46: 
   47: 			ioLIBERR(cfg);
   48: 		case SIGTERM:
   49: 			ioDEBUG(1, "Terminate MQTT service in progress");
   50: 			Kill++;
   51: 			break;
   52: 		case SIGCHLD:
   53: 			while (waitpid(-1, &stat, WNOHANG) > 0);
   54: 			break;
   55: 		case SIGPIPE:
   56: 			break;
   57: 	}
   58: }
   59: 
   60: 
   61: int
   62: main(int argc, char **argv)
   63: {
   64: 	char ch, batch = 0;
   65: 	register int i;
   66: 	int sock = -1, ret = 0;
   67: 	struct passwd *pass;
   68: 	struct sigaction sa;
   69: 	ait_val_t v;
   70: 
   71: 	TAILQ_INIT(&Sessions);
   72: 	TAILQ_INIT(&Pubs);
   73: 
   74: 	strlcpy(szCfgName, DEFAULT_CONFIG, sizeof szCfgName);
   75: 	while ((ch = getopt(argc, argv, "hvbc:")) != -1)
   76: 		switch (ch) {
   77: 			case 'c':
   78: 				strlcpy(szCfgName, optarg, sizeof szCfgName);
   79: 				break;
   80: 			case 'b':
   81: 				batch++;
   82: 				break;
   83: 			case 'v':
   84: 				io_incDebug;
   85: 				break;
   86: 			case 'h':
   87: 			default:
   88: 				Usage();
   89: 				return 1;
   90: 		}
   91: 	argc -= optind;
   92: 	argv += optind;
   93: 
   94: 	if (cfgLoadConfig(szCfgName, &cfg)) {
   95: 		printf("Error:: can't load #%d - %s\n", cfg_GetErrno(), cfg_GetError());
   96: 		return 1;
   97: 	}
   98: 	pthread_mutex_init(&mtx_sess, NULL);
   99: 	pthread_mutex_init(&mtx_pub, NULL);
  100: 	openlog("mqttd", LOG_PID | LOG_CONS, LOG_DAEMON);
  101: 	/* load 3 plugins */
  102: 	for (i = 0; i < 3; i++)
  103: 		if (!mqttLoadRTLM(&cfg, i)) {
  104: 			printf("Error:: Can't load RTL module\n");
  105: 			while (i--)
  106: 				mqttUnloadRTLM(i);
  107: 			cfgUnloadConfig(&cfg);
  108: 			closelog();
  109: 			pthread_mutex_destroy(&mtx_pub);
  110: 			pthread_mutex_destroy(&mtx_sess);
  111: 			return 2;
  112: 		}
  113: 	acc = call.OpenACC(&cfg);
  114: 	if (!acc) {
  115: 		ret = 3;
  116: 		goto end;
  117: 	}
  118: 	pub = call.OpenPUB(&cfg);
  119: 	if (!pub) {
  120: 		ret = 3;
  121: 		goto end;
  122: 	}
  123: 	logg = call.OpenLOG(&cfg);
  124: 	if (!logg) {
  125: 		ret = 3;
  126: 		goto end;
  127: 	}
  128: 
  129: 	if (mqttMkDir(&cfg)) {
  130: 		printf("Error:: in statedir #%d - %s\n", errno, strerror(errno));
  131: 		ret = 3;
  132: 		goto end;
  133: 	}
  134: 
  135: 	if (!batch)
  136: 		switch (fork()) {
  137: 			case -1:
  138: 				printf("Error:: in fork() #%d - %s\n", errno, strerror(errno));
  139: 				ret = 5;
  140: 				goto end;
  141: 			case 0:
  142: 				setsid();
  143: 
  144: 				ret = open("/dev/null", O_RDWR);
  145: 				if (ret != -1) {
  146: 					dup2(ret, STDIN_FILENO);
  147: 					dup2(ret, STDOUT_FILENO);
  148: 					dup2(ret, STDERR_FILENO);
  149: 					close(ret);
  150: 				}
  151: 				ioDEBUG(2, "Welcome MQTT service into shadow land!");
  152: 				break;
  153: 			default:
  154: 				ioDEBUG(2, "MQTT service go to shadow land ...");
  155: 				sleep(1);
  156: 				ret = 0;
  157: 				goto end;
  158: 		}
  159: 	else
  160: 		ioDEBUG(1, "Start service in batch mode ...");
  161: 
  162: 	memset(&sa, 0, sizeof sa);
  163: 	sigemptyset(&sa.sa_mask);
  164: 	sa.sa_handler = sigHand;
  165: 	sigaction(SIGHUP, &sa, NULL);
  166: 	sigaction(SIGTERM, &sa, NULL);
  167: 	sigaction(SIGCHLD, &sa, NULL);
  168: 	sigaction(SIGPIPE, &sa, NULL);
  169: 	ioDEBUG(2, "Service is ready for starting engine ...");
  170: 
  171: 	if ((sock = srv_Socket(&cfg)) == -1) {
  172: 		ret = 4;
  173: 		goto end;
  174: 	}
  175: 
  176: 	cfg_loadAttribute(&cfg, "mqttd", "user", &v, MQTT_USER);
  177: 	pass = getpwnam(AIT_GET_STR(&v));
  178: 	AIT_FREE_VAL(&v);
  179: 	if (pass) {
  180: 		setgid(pass->pw_gid);
  181: 		setuid(pass->pw_uid);
  182: 		ioDEBUG(2, "Try to change group #%d and user #%d", pass->pw_gid, pass->pw_uid);
  183: 	}
  184: 
  185: 	if (!(root = schedBegin())) {
  186: 		ioLIBERR(sched);
  187: 		ret = 6;
  188: 		goto end;
  189: 	}
  190: 
  191: 	/* go catch the cat ... */
  192: 	Run(sock);
  193: 
  194: 	schedEnd(&root);
  195: end:	/* free all resources */
  196: 	srv_Close(sock);
  197: 	call.CloseLOG(logg);
  198: 	call.ClosePUB(pub);
  199: 	call.CloseACC(acc);
  200: 	for (i = 0; i < 3; i++)
  201: 		mqttUnloadRTLM(i);
  202: 	closelog();
  203: 	cfgUnloadConfig(&cfg);
  204: 	pthread_mutex_destroy(&mtx_pub);
  205: 	pthread_mutex_destroy(&mtx_sess);
  206: 	return ret;
  207: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>