Annotation of embedtools/src/pceng.c, revision 1.1.2.5

1.1.2.1   misho       1: /*************************************************************************
                      2:  * (C) 2011 AITNET - Sofia/Bulgaria - <office@aitbg.com>
                      3:  *  by Michael Pounov <misho@aitbg.com>
                      4:  *
                      5:  * $Author: misho $
1.1.2.5 ! misho       6:  * $Id: pceng.c,v 1.1.2.4 2011/07/22 14:45:30 misho Exp $
1.1.2.1   misho       7:  *
                      8:  *************************************************************************
                      9: The ELWIX and AITNET software is distributed under the following
                     10: terms:
                     11: 
                     12: All of the documentation and software included in the ELWIX and AITNET
                     13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
                     14: 
                     15: Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
                     16:        by Michael Pounov <misho@elwix.org>.  All rights reserved.
                     17: 
                     18: Redistribution and use in source and binary forms, with or without
                     19: modification, are permitted provided that the following conditions
                     20: are met:
                     21: 1. Redistributions of source code must retain the above copyright
                     22:    notice, this list of conditions and the following disclaimer.
                     23: 2. Redistributions in binary form must reproduce the above copyright
                     24:    notice, this list of conditions and the following disclaimer in the
                     25:    documentation and/or other materials provided with the distribution.
                     26: 3. All advertising materials mentioning features or use of this software
                     27:    must display the following acknowledgement:
                     28: This product includes software developed by Michael Pounov <misho@elwix.org>
                     29: ELWIX - Embedded LightWeight unIX and its contributors.
                     30: 4. Neither the name of AITNET nor the names of its contributors
                     31:    may be used to endorse or promote products derived from this software
                     32:    without specific prior written permission.
                     33: 
                     34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
                     35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     44: SUCH DAMAGE.
                     45: */
                     46: #include "global.h"
                     47: #include "pceng.h"
                     48: 
                     49: 
1.1.2.3   misho      50: int Verbose, Kill;
1.1.2.1   misho      51: extern char compiled[], compiledby[], compilehost[];
1.1.2.2   misho      52: sl_config cfg;
1.1.2.3   misho      53: char szConf[MAXPATHLEN] = DEFAULT_PCENG_CFG;
1.1.2.1   misho      54: 
                     55: 
                     56: static void
                     57: Usage()
                     58: {
                     59:        printf( "-= PCEngines =- events managment tool\n"
                     60:                "=== %s === %s@%s ===\n\n"
1.1.2.5 ! misho      61:                "  Syntax: pceng [options] [[led_no <0|1>] ...]\n"
1.1.2.1   misho      62:                "\n"
                     63:                "\t-v\t\tVerbose ...\n"
1.1.2.5 ! misho      64:                "\t-D\t\tRun in background mode ...\n"
1.1.2.2   misho      65:                "\t-c <conf>\tConfig events file ...\n"
1.1.2.1   misho      66:                "\n", compiled, compiledby, compilehost);
                     67: }
                     68: 
1.1.2.3   misho      69: static void
                     70: sigHand(int sig)
                     71: {
                     72:        int stat;
                     73: 
                     74:        switch (sig) {
                     75:                case SIGHUP:
                     76:                        UnloadConfig(&cfg);
                     77:                        if (LoadConfig(szConf, &cfg)) {
                     78:                                syslog(LOG_ERR, "Error:: #%d - %s", cfg_GetErrno(), cfg_GetError());
                     79:                                raise(SIGTERM);
                     80:                        }
                     81:                        VERB(1) syslog(LOG_WARNING, "Reload config %s", szConf);
                     82:                        break;
                     83:                case SIGTERM:
                     84:                        VERB(1) syslog(LOG_WARNING, "Kill process ...");
                     85:                        Kill++;
                     86:                        break;
                     87:                case SIGCHLD:
                     88:                        while (waitpid(-1, &stat, WNOHANG) > 0);
                     89:        }
                     90: }
                     91: 
1.1.2.1   misho      92: 
                     93: int
                     94: main(int argc, char **argv)
                     95: {
1.1.2.5 ! misho      96:        char ch, ledno;
        !            97:        int i, io, ret = 0, mode = 1;
1.1.2.3   misho      98:        struct sigaction sact;
1.1.2.1   misho      99: 
1.1.2.5 ! misho     100:        while ((ch = getopt(argc, argv, "vhDc:")) != -1)
1.1.2.1   misho     101:                switch (ch) {
                    102:                        case 'c':
                    103:                                strlcpy(szConf, optarg, sizeof szConf);
                    104:                                break;
1.1.2.5 ! misho     105:                        case 'D':
        !           106:                                mode = 0;
1.1.2.1   misho     107:                                break;
                    108:                        case 'v':
                    109:                                Verbose++;
                    110:                                break;
                    111:                        case 'h':
                    112:                        default:
                    113:                                Usage();
                    114:                                return 1;
                    115:                }
                    116:        argc -= optind;
                    117:        argv += optind;
                    118: 
1.1.2.5 ! misho     119:        if (!mode)
        !           120:                openlog("pceng", LOG_CONS | LOG_PID, LOG_DAEMON);
        !           121:        else
        !           122:                openlog("pceng", LOG_CONS | LOG_PID | LOG_PERROR, LOG_USER);
        !           123: 
        !           124:        io = open(_PATH_DEVIO, O_RDWR);
        !           125:        if (io == -1) {
        !           126:                printf("Error:: in open dev %s #%d - %s\n", _PATH_DEVIO, errno, strerror(errno));
        !           127:                ret = 2;
        !           128:                goto end;
        !           129:        }
        !           130: 
        !           131:        if (argc > 1 && !(argc % 2)) {
        !           132:                for (i = 0; !ret && i < argc; i += 2) {
        !           133:                        ledno = (char) strtol(argv[i], NULL, 0);
        !           134:                        ch = (char) strtol(argv[i + 1], NULL, 0);
        !           135:                        ret = LED(io, (u_char) ledno, (u_char) ch);
        !           136:                }
        !           137:                if (ret)
        !           138:                        goto end;
        !           139:        }
1.1.2.3   misho     140: 
1.1.2.2   misho     141:        if (LoadConfig(szConf, &cfg)) {
                    142:                printf("Error:: #%d - %s\n", cfg_GetErrno(), cfg_GetError());
1.1.2.5 ! misho     143:                ret = 1;
        !           144:                goto end;
1.1.2.2   misho     145:        }
                    146: 
1.1.2.3   misho     147:        sact.sa_handler = sigHand;
                    148:        sigemptyset(&sact.sa_mask);
                    149:        sigaction(SIGHUP, &sact, NULL);
                    150:        sigaction(SIGTERM, &sact, NULL);
                    151:        sigaction(SIGCHLD, &sact, NULL);
                    152: 
                    153:        if (!mode)
                    154:                switch (fork()) {
                    155:                        case -1:
                    156:                                printf("Error:: #%d - %s\n", errno, strerror(errno));
1.1.2.4   misho     157:                                ret = 1;
1.1.2.3   misho     158:                                goto end;
                    159:                        case 0:
                    160:                                VERB(1) printf("Welcome into darkness ...\n");
                    161: 
                    162:                                setsid();
                    163:                                chdir("/");
                    164: 
                    165:                                mode = open(_PATH_DEVNULL, O_RDWR);
                    166:                                if (mode > 2) {
                    167:                                        dup2(mode, STDIN_FILENO);
                    168:                                        dup2(mode, STDOUT_FILENO);
                    169:                                        dup2(mode, STDERR_FILENO);
                    170:                                        close(mode);
                    171:                                }
                    172:                                break;
                    173:                        default:
                    174:                                VERB(1) printf("PCENG Going to shadow land ...\n");
                    175:                                goto end;
                    176:                }
                    177: 
1.1.2.4   misho     178:        ret = Run(io);
1.1.2.3   misho     179: 
                    180: end:
1.1.2.5 ! misho     181:        UnloadConfig(&cfg);
1.1.2.3   misho     182:        if (io > 2)
                    183:                close(io);
                    184:        closelog();
1.1.2.4   misho     185:        return ret;
1.1.2.1   misho     186: }

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