Annotation of freem/src/mumps.c, revision 1.17

1.1       snw         1: /*
1.17    ! snw         2:  *   $Id: mumps.c,v 1.16 2025/04/04 19:43:18 snw Exp $
1.1       snw         3:  *    main module of freem
                      4:  *
                      5:  *  
1.3       snw         6:  *   Author: Serena Willis <snw@coherent-logic.com>
1.1       snw         7:  *    Copyright (C) 1998 MUG Deutschland
1.4       snw         8:  *    Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1       snw         9:  *
                     10:  *
                     11:  *   This file is part of FreeM.
                     12:  *
                     13:  *   FreeM is free software: you can redistribute it and/or modify
                     14:  *   it under the terms of the GNU Affero Public License as published by
                     15:  *   the Free Software Foundation, either version 3 of the License, or
                     16:  *   (at your option) any later version.
                     17:  *
                     18:  *   FreeM is distributed in the hope that it will be useful,
                     19:  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     20:  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     21:  *   GNU Affero Public License for more details.
                     22:  *
                     23:  *   You should have received a copy of the GNU Affero Public License
                     24:  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
                     25:  *
1.5       snw        26:  *   $Log: mumps.c,v $
1.17    ! snw        27:  *   Revision 1.16  2025/04/04 19:43:18  snw
        !            28:  *   Switch to using environment catalog to determine user and group for environment, and remove -u and -g flags from freem
        !            29:  *
1.16      snw        30:  *   Revision 1.15  2025/04/03 20:48:14  snw
                     31:  *   Improve daemon error diagnostics and bump to 0.63.0-rc3
                     32:  *
1.15      snw        33:  *   Revision 1.14  2025/04/02 04:50:49  snw
                     34:  *   Allow vendor routines to be upgraded
                     35:  *
1.14      snw        36:  *   Revision 1.13  2025/04/02 03:26:22  snw
                     37:  *   Don't corrupt the terminal if FreeM runs before fmadm configure has been run
                     38:  *
1.13      snw        39:  *   Revision 1.12  2025/04/02 02:16:27  snw
                     40:  *   Add fmadm status environment command and move journals to a better location
                     41:  *
1.12      snw        42:  *   Revision 1.11  2025/04/01 23:21:45  snw
                     43:  *   fmadm commands for stopping, starting, and restarting environments now functional
                     44:  *
1.11      snw        45:  *   Revision 1.10  2025/04/01 20:11:46  snw
                     46:  *   Further work on fmadm
                     47:  *
1.10      snw        48:  *   Revision 1.9  2025/03/31 20:01:13  snw
                     49:  *   Set d_uid in daemon
                     50:  *
1.9       snw        51:  *   Revision 1.8  2025/03/24 16:10:48  snw
                     52:  *   Print error message and exit on OS/2 if daemon is run without --nofork
                     53:  *
1.8       snw        54:  *   Revision 1.7  2025/03/24 16:07:55  snw
                     55:  *   Force daemon into foreground on OS/2
                     56:  *
1.7       snw        57:  *   Revision 1.6  2025/03/24 16:04:49  snw
                     58:  *   Force daemon into foreground on OS/2
                     59:  *
1.6       snw        60:  *   Revision 1.5  2025/03/22 21:44:32  snw
                     61:  *   Make the startup messages fewer and add environment name to direct-mode prompt
                     62:  *
1.5       snw        63:  *   Revision 1.4  2025/03/09 19:50:47  snw
                     64:  *   Second phase of REUSE compliance and header reformat
                     65:  *
1.4       snw        66:  *
                     67:  * SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
                     68:  * SPDX-License-Identifier: AGPL-3.0-or-later
1.1       snw        69:  **/
                     70: 
1.16      snw        71: #define _GNU_SOURCE
1.1       snw        72: #include <stdlib.h>
                     73: #include <stddef.h>
                     74: #include "mpsdef.h"
                     75: #include "errmsg.h"
                     76: #include "iniconf.h"
                     77: #include "namespace.h"
                     78: #include "transact.h"
                     79: #include "init.h"
                     80: #include "consttbl.h"
                     81: #include <setjmp.h>
                     82: #include <stdio.h>
                     83: #include <signal.h>
                     84: #include <time.h>
                     85: #include <unistd.h>
                     86: #include <sys/types.h>
                     87: #include <sys/wait.h>
                     88: #include <sys/stat.h>
                     89: #include <limits.h>
                     90: #include <sys/types.h>
                     91: #include <pwd.h>
                     92: #include <string.h>
                     93: #include <fcntl.h>
                     94: #include "version.h"
                     95: #include "shmmgr.h"
                     96: #include "jobtab.h"
                     97: #include <errno.h>
                     98: #include <pwd.h>
                     99: #include <grp.h>
                    100: 
                    101: 
                    102: #if defined(HAVE_GETOPT_H)
                    103: # include <getopt.h>
                    104: #endif
                    105: 
                    106: #if !defined(PATH_MAX) && defined(_SCO_DS)
                    107: # define PATH_MAX 1024
                    108: #endif
                    109: 
                    110: extern int xecline(int typ);
                    111: extern char *getenv(const char *name);
                    112: void freem_usage(void);
                    113: void freem_print_version(void);
                    114: void init_ztrap(void);
                    115: void m_log (int, const char *);
                    116: 
                    117: int main (int argc, char **argv, char **envp)
                    118: {
                    119:     pid_t fork_pid = 0;
                    120:     short dx_mode = 0;
                    121:     
                    122:     int c;
                    123:     int import_env = FALSE;
                    124:     short skip_init = 0;
                    125:     
                    126:     int option_index = 0;
                    127: 
1.13      snw       128:     char fm_initialized = FALSE;
                    129:     
1.1       snw       130:     char dx_mcode[512];
                    131:     char startup_routine[256];
                    132:     short routine_mode;
                    133:     char m_dialect[50];
                    134: 
                    135:     char nsnbuf[256];
                    136: 
                    137:     char d_username[40];
                    138:     char d_groupname[40];
                    139:     struct group *d_grp;
                    140:     struct passwd *d_user;
                    141:     gid_t d_gid;
                    142:     uid_t d_uid;
                    143: 
                    144: #if defined(HAVE_GETOPT_LONG)
                    145:     struct option long_options[] = {       
                    146:         {"help", no_argument, 0, 'h'},
                    147:         {"filter", no_argument, &frm_filter, TRUE},
                    148:         {"standard", required_argument, 0, 's'},
                    149:         {"import", no_argument, &import_env, TRUE},
                    150:         {"quiet", no_argument, &quiet_mode, TRUE},
                    151:         {"restricted", no_argument, &restricted_mode, TRUE},
                    152:         {"routine", required_argument, 0, 'r'},
                    153:         {"namespace", required_argument, 0, 'n'},
                    154:         {"environment", required_argument, 0, 'e'},
                    155:        {"version", no_argument, 0, 'v'},
                    156:        {"execute", required_argument, 0, 'x'},
                    157:         {"daemon", no_argument, 0, 'd'},
                    158:         {"nofork", no_argument, 0, 'k'},
                    159:         {"shmsize", required_argument, 0, 'S'},
                    160:         {"user", required_argument, 0, 'u'},
                    161:         {"group", required_argument, 0, 'g'},
                    162:         {0, 0, 0, 0}
                    163:     };
                    164: #endif
                    165:     
                    166:     char **env;      
                    167:     char *varname = (char *) calloc(STRLEN, sizeof(char));
                    168:     char *varval = (char *) calloc(STRLEN, sizeof(char));
                    169: 
                    170:     char *symname = (char *) calloc(STRLEN, sizeof(char));
                    171:     char *symval = (char *) calloc(STRLEN, sizeof(char));
                    172: 
                    173:     int namelen;
                    174:     int vallen;
                    175: 
                    176:     char cli_rtn_path[PATH_MAX] = {0};
                    177:     char *cli_rtn_file;
                    178:     char cli_rtn_name[256];
                    179: 
1.16      snw       180:     char env_ena[25];
                    181:     
1.1       snw       182:     routine_mode = FALSE;
                    183:     strcpy (m_dialect, "FREEM");
                    184:     
                    185:     m_argc = argc;                     /* save arguments count     */
                    186:     m_argv = argv;                     /* save arguments string    */
                    187:     m_envp = envp;                     /* save environment pointer */
                    188: 
                    189:     strncpy (shm_env, "DEFAULT", 8);    /* establish default environment name */
                    190:     
                    191:     strncpy (d_username, "freem", 40);
                    192:     strncpy (d_groupname, "freem", 40);
                    193:     
                    194:     strcpy (zb, argv[0]);              /* name with which mumps has been called */
                    195:     stcnv_c2m (zb);
                    196:     strcpy (stack0, argv[0]);
                    197:     stcnv_c2m (stack0);
                    198: 
                    199: 
                    200:     /* strncpy (config_file, SYSCONFDIR"/freem.conf", 100); */
                    201: 
                    202: 
                    203: 
                    204: #if defined(HAVE_GETOPT_LONG)
                    205:     
                    206:     extern char *optarg;
                    207:     extern int optind, optopt;
                    208:     
                    209:     while (1) {
                    210:         
1.16      snw       211:         c = getopt_long (argc, argv, "hsfiqRr:n:e:vx:dkpS", long_options, &option_index);
1.1       snw       212: 
                    213:         if (c == -1) break;
                    214:        if (c == '?') freem_usage ();
                    215:        
                    216:         switch (c) {
                    217:             case 'h':
                    218:                 freem_usage ();
                    219:                 break;
                    220: 
                    221:             case 'f':
                    222:                 frm_filter = TRUE;
                    223:                 break;
                    224: 
                    225:             case 'i':
                    226:                 import_env = TRUE;
                    227:                 break;
                    228: 
                    229:             case 'q':
                    230:                 quiet_mode = TRUE;
                    231:                 break;
                    232: 
                    233:             case 'e': /* specify FreeM environment */
                    234:                 strncpy (shm_env, optarg, 255);
                    235:                 break;
                    236: 
                    237:             case 'R':
                    238:                 restricted_mode = TRUE;
                    239:                 break;
                    240: 
                    241:             case 'r': /* startup routine */
                    242:                 direct_mode = FALSE;
                    243:                 usermode = 0;
                    244: 
                    245:                 strcpy (startup_routine, optarg);
                    246:                 startup_routine[strlen (startup_routine)] = '\201';
                    247: 
                    248:                 routine_mode = TRUE;
                    249:                 break;
                    250: 
                    251:             case 'n': /* namespace */
                    252:             {
                    253:                 if (validate_namespace (optarg) == TRUE) {                
                    254:                     strcpy (nsname, optarg);
                    255:                 }
                    256:                 else {
                    257:                     fprintf (stderr, "freem:  invalid namespace '%s'\n", optarg);
                    258:                     exit (1);
                    259:                 }
                    260:                 
                    261:                 break;
                    262:             }
                    263:            case 'v': /* version */
                    264:                freem_print_version ();
                    265:                break;
                    266: 
                    267:            case 'x': /* execute */
                    268:                direct_mode = FALSE;
                    269:                usermode = 0;
                    270:                dx_mode = 1;
                    271:                
                    272:                strncpy (dx_mcode, optarg, 512 - 1);
                    273: 
                    274:                stcnv_c2m (dx_mcode);
                    275: 
                    276:                break;
                    277: 
                    278:             case 's': /* --standard */
                    279: 
                    280:                 if (strcmp (optarg, "M77") == 0) {
                    281:                     standard = D_M77;
                    282:                     strcpy (m_dialect, "M 1977");
                    283:                 }
                    284:                 else if (strcmp (optarg, "M84") == 0) {
                    285:                     standard = D_M84;
                    286:                     strcpy (m_dialect, "M 1984");
                    287:                 }
                    288:                 else if (strcmp (optarg, "M90") == 0) {
                    289:                     standard = D_M90;
                    290:                     strcpy (m_dialect, "M 1990");
                    291:                 }
                    292:                 else if (strcmp (optarg, "M95") == 0) {
                    293:                     standard = D_M95;
                    294:                     strcpy (m_dialect, "M 1995");
                    295:                 }
                    296:                 else if (strcmp (optarg, "MDS") == 0) {
                    297:                     standard = D_MDS;
                    298:                     strcpy (m_dialect, "Millennium Draft Standard");
                    299:                 }
                    300:                 else if (strcmp (optarg, "M5") == 0) {
                    301:                     standard = D_M5;
                    302:                     strcpy (m_dialect, "M5");
                    303:                 }
                    304:                 else if (strcmp (optarg, "FREEM") == 0) {
                    305:                     standard = D_FREEM;
                    306:                     strcpy (m_dialect, "FREEM");
                    307:                 }
                    308:                 else {
                    309:                     freem_usage ();
                    310:                 }
                    311:                 
                    312:                 break;                
                    313: 
                    314:             case 'd': /* --daemon */
                    315:                 run_daemon = TRUE;                
                    316:                 break;
                    317: 
                    318:             case 'k': /* --nofork */
                    319:                nofork = TRUE;
                    320:                 break;
                    321: 
                    322:             case 'S': /* --shmsize */
                    323:                 shm_init_size = atol (optarg);
1.16      snw       324:                 break;                
1.1       snw       325: 
                    326:         } 
                    327: 
                    328:     }
                    329: 
                    330: #else
                    331:     
                    332:     {
                    333:         extern char *optarg;
                    334:         extern int optind, optopt;
                    335: 
1.16      snw       336:         while ((c = getopt (argc, argv, "hsfiqRr:n:e:vx:dkS:")) != -1) {
1.1       snw       337: 
                    338:            if (c == '?') freem_usage ();
                    339:            
                    340:             switch (c) {
                    341: 
                    342:                case 'h':
                    343:                    freem_usage ();
                    344:                    break;
                    345:                
                    346:                 case 'f':
                    347:                     frm_filter = TRUE;
                    348:                     break;
                    349: 
                    350:                 case 'i':
                    351:                     import_env = TRUE;
                    352:                     break;
                    353: 
                    354:                 case 'q':
                    355:                     quiet_mode = TRUE;
                    356:                     break;
                    357: 
                    358:                 case 'e':  /* specify FreeM environment */
                    359:                     strncpy (shm_env, optarg, 255);
                    360:                     break;
                    361: 
                    362:                 case 'R':
                    363:                     restricted_mode = TRUE;
                    364:                     break;
                    365:                     
                    366:                 case 'r': /* startup routine */
                    367:                     direct_mode = FALSE;
                    368:                     usermode = 0;
                    369: 
                    370:                     strcpy (startup_routine, optarg);
                    371:                     startup_routine[strlen (startup_routine)] = '\201';
                    372: 
                    373:                     routine_mode = TRUE;
                    374:                     break;
                    375: 
                    376:                 case 'n': /* namespace */
                    377:                     strcpy (nsname, optarg);               
                    378:                     break;
                    379: 
                    380:                case 'v':
                    381:                    freem_print_version ();
                    382:                    break;
                    383: 
                    384:                case 'x': /* execute */
                    385:                    direct_mode = FALSE;
                    386:                    usermode = 0;
                    387:                    dx_mode = 1;
                    388:                    
                    389:                    strncpy (dx_mcode, optarg, 512 - 1);
                    390:                    
                    391:                    stcnv_c2m (dx_mcode);
                    392: 
                    393:                     break;
                    394:                     
                    395:                 case 'd': /* --daemon */
                    396:                     run_daemon = TRUE;
                    397:                     break;
                    398: 
                    399:                 case 'k': /* --nofork */
                    400:                     nofork = TRUE;
                    401:                     break;
                    402: 
                    403:                 case 's': /* --standard */
                    404:                     
                    405:                     if (strcmp (optarg, "M77") == 0) {
                    406:                         standard = D_M77;
                    407:                         strcpy (m_dialect, "M 1977");
                    408:                     }
                    409:                     else if (strcmp (optarg, "M84") == 0) {
                    410:                         standard = D_M84;
                    411:                         strcpy (m_dialect, "M 1984");
                    412:                     }
                    413:                     else if (strcmp (optarg, "M90") == 0) {
                    414:                         standard = D_M90;
                    415:                         strcpy (m_dialect, "M 1990");
                    416:                     }
                    417:                     else if (strcmp (optarg, "M95") == 0) {
                    418:                         standard = D_M95;
                    419:                         strcpy (m_dialect, "M 1995");
                    420:                     }
                    421:                     else if (strcmp (optarg, "MDS") == 0) {
                    422:                         standard = D_MDS;
                    423:                         strcpy (m_dialect, "Millennium Draft Standard");
                    424:                     }
                    425:                     else if (strcmp (optarg, "M5") == 0) {
                    426:                         standard = D_M5;
                    427:                         strcpy (m_dialect, "M5");
                    428:                     }
                    429:                     else if (strcmp (optarg, "FREEM") == 0) {
                    430:                         standard = D_FREEM;
                    431:                         strcpy (m_dialect, "FREEM");
                    432:                     }
                    433:                     else {
                    434:                         freem_usage ();
                    435:                     }
                    436:                 
                    437:                     break;                
                    438: 
                    439:                     
                    440:                 case 'S': /* --shmsize */
                    441:                     shm_init_size = atol (optarg);
                    442:                     break;
                    443: 
                    444:             } 
                    445:         }
                    446:     }
                    447: #endif
1.6       snw       448: 
                    449: #if defined(__OS2__)
                    450:     if (run_daemon == TRUE && nofork == FALSE) {
1.8       snw       451:         printf ("freem:  running on OS/2; daemon must be run with --nofork or -k\r\n");
                    452:         exit (1);
1.6       snw       453:     }
                    454: #endif
                    455:     
1.1       snw       456:     snprintf (config_file, 4096, "%s/freem/%s/freem.conf", SYSCONFDIR, shm_env);
1.16      snw       457:     snprintf (env_config_file, 4096, "%s/freem/env.conf", SYSCONFDIR);    
1.1       snw       458:     
1.16      snw       459:     if (!file_exists (env_config_file)) {
                    460:         fprintf (stderr, "freem:  environment catalog does not exist; may need to run fmadm configure\n");
                    461:         exit (1);
                    462:     }
                    463: 
                    464:     if (!file_exists (config_file)) {
                    465:         fprintf (stderr, "freem:  configuration file for %s does not exist; may need to run fmadm configure\n", shm_env);
                    466:         exit (1);
                    467:     }
                    468: 
                    469:     if (read_profile_string (env_config_file, shm_env, "user", d_username) == FALSE) {
                    470:         fprintf (stderr, "freem:  could not determine owning user for environment %s\n", shm_env);
                    471:         exit (1);
                    472:     }
                    473: 
                    474:     if (read_profile_string (env_config_file, shm_env, "group", d_groupname) == FALSE) {
                    475:         fprintf (stderr, "freem:  could not determine owning group for environment %s\n", shm_env);
                    476:         exit (1);
                    477:     }
1.1       snw       478: 
1.16      snw       479:     if (read_profile_string (env_config_file, shm_env, "enabled", env_ena) == FALSE) {
                    480:         fprintf (stderr, "freem:  could not discover enabled state for environment %s\n", shm_env);
                    481:         exit (1);
                    482:     }
1.1       snw       483: 
1.16      snw       484:     if (strcmp (env_ena, "true") != 0) {
                    485:         fprintf (stderr, "freem:  environment %s is administratively disabled\n", shm_env);
                    486:         exit (1);
                    487:     }    
1.1       snw       488: 
1.16      snw       489:     d_grp = getgrnam (d_groupname);        
                    490:     if (d_grp == NULL) {
                    491:         fprintf (stderr, "freem:  invalid group '%s'\n", d_groupname);
                    492:         exit (1);
                    493:     }            
                    494:     d_gid = d_grp->gr_gid;
                    495:         
                    496:     d_user = getpwnam (d_username);
                    497:     if (d_user == NULL) {
                    498:         fprintf (stderr, "freem:  invalid user '%s'\n", d_username);
                    499:         exit (1);
                    500:     }            
                    501:     d_uid = d_user->pw_uid;
1.1       snw       502: 
1.16      snw       503:     
                    504: #if defined(__linux__)    
                    505:     if (run_daemon == FALSE && group_member (d_gid) == 0) {
                    506:         fprintf (stderr, "freem:  you must be a member of the %s group to use environment %s\n", d_groupname, shm_env);
                    507:         exit (1);
1.17    ! snw       508:     }        
1.16      snw       509: #endif    
                    510:     
                    511:     if (run_daemon == TRUE) {
                    512:         if (geteuid () != 0 && nofork == FALSE) {
                    513:             fprintf (stderr, "freem:  forking daemon must be run as root\n");
                    514:             exit (1);
                    515:         }                
1.1       snw       516:     }
                    517:     
                    518:     if ((nofork == TRUE) && (run_daemon == FALSE)) {
                    519:         freem_usage ();
                    520:         exit (1);
                    521:     }
                    522: 
                    523:     if ((run_daemon == TRUE) && (nofork == FALSE)) {
                    524: 
                    525:         int fork_fd;
                    526:         
                    527:         /* daemonize */
                    528: 
                    529:         fork_pid = fork ();
                    530: 
                    531:         if (fork_pid < 0) {
                    532:             fprintf (stderr, "freem:  failure in fork()\r\n");
                    533:             m_log (1, "failure in initial fork()\r\n");
                    534:             exit (1);
                    535:         }
                    536: 
                    537:         if (fork_pid > 0) {
                    538:             exit (0);
                    539:         }
                    540: 
                    541:         if (setsid () < 0) {
                    542:             fprintf (stderr, "freem:  failure in setsid()\r\n");
                    543:             m_log (1, "failure in setsid()\r\n");
                    544:             exit (1);
                    545:         }
                    546: 
                    547:         signal (SIGCHLD, SIG_IGN);
                    548: 
                    549:         fork_pid = fork ();
                    550: 
                    551:         if (fork_pid < 0) {
                    552:             fprintf (stderr, "freem:  failure in fork()\r\n");
                    553:             m_log (1, "failure in second fork()\r\n");
                    554:             exit (1);
                    555:         }
                    556: 
                    557:         if (fork_pid > 0) {
                    558:             exit (0);
                    559:             m_log (1, "exiting from second fork");
                    560:         }
                    561: 
                    562:         umask (0);
                    563: 
                    564:         chdir ("/");       
                    565: 
                    566:         for (fork_fd = sysconf (_SC_OPEN_MAX); fork_fd > 0; fork_fd--) {
                    567:             close (fork_fd);
                    568:         }
                    569:         
                    570:         if (geteuid () == 0) {
                    571:             /* shed privileges */
                    572: 
1.17    ! snw       573: 
        !           574:             fprintf (stderr, "freem:  switching to group %s\n", d_groupname);
        !           575:             m_log (1, "switching groups");
        !           576:                 
        !           577:             if (setgid (d_gid) == -1) {
        !           578:                 fprintf (stderr, "freem:  failure switching GID\n");
        !           579:                 m_log (1, "failure switching GIDs");
        !           580:                 exit (1);
1.1       snw       581:             }
1.17    ! snw       582:         
1.1       snw       583: 
                    584: 
1.17    ! snw       585:             if (d_uid != geteuid ()) {
1.1       snw       586:                 fprintf (stderr, "freem:  switching to username %s\n", d_username);
                    587:                 m_log (1, "switching users");
                    588:                 
                    589:                 if (setuid (d_uid) == -1) {
                    590:                     fprintf (stderr, "freem:  failure switching UID\n");
                    591:                     m_log (1, "failure switching UIDs");
                    592:                     exit (1);
                    593:                 }
                    594:             }
                    595: 
                    596:         }
                    597:         else {
                    598:             fprintf (stderr, "not euid 0");
                    599:         }
                    600: 
                    601:        freopen ("/dev/null", "r", stdin);
                    602:        freopen ("/dev/null", "w+", stdout);
                    603:        freopen ("/dev/null", "w+", stderr);
                    604: 
                    605:         run_daemon = TRUE;
                    606:         nofork = FALSE;        
                    607:         
                    608:         {
                    609:             char pidfile_buf[256];
                    610:             int errsav;
                    611: 
1.11      snw       612:             pid_file_path = (char *) malloc (PATH_MAX * sizeof (char));
                    613:             NULLPTRCHK(pid_file_path,"main");
                    614:             
1.10      snw       615:             snprintf (pid_file_path, PATH_MAX - 1, "%s/freem/run/%s.pid", LOCALSTATEDIR, shm_env);
                    616: 
1.1       snw       617:             pid_fd = open (pid_file_path, O_RDWR | O_CREAT, 0640);
                    618:             errsav = errno;
                    619:             
                    620:             if (pid_fd < 0) {
1.15      snw       621:                 fprintf (stderr, "freem:  could not open PID file %s [%s]\n", pid_file_path, strerror (errsav));
1.1       snw       622:                 m_log (1, "freem:  could not open PID file");
                    623:                 m_log (1, strerror (errsav));
                    624:                 exit (1);
                    625:             }
                    626: 
                    627:             if (lockf (pid_fd, F_TLOCK, 0) < 0) {
                    628:                 errsav = errno;
1.15      snw       629:                 fprintf (stderr, "freem:  could not lock PID file [%s]\n", strerror (errsav));
1.1       snw       630:                 m_log (1, "freem: could not lock PID file - perhaps already running?");
                    631:                 m_log (1, strerror (errsav));
                    632:                 exit (1);
                    633:             }
                    634: 
1.10      snw       635:             sprintf (pidfile_buf, "%ld\n", (long) getpid ());
1.1       snw       636:             write (pid_fd, pidfile_buf, strlen (pidfile_buf));
1.10      snw       637: 
1.1       snw       638:         }
                    639:        
                    640:         
                    641:     } /* END of daemonization */
                    642:     
                    643:     /* handle passing of an arbitrary .m file on the command line */
                    644:     /* this is most often used for shebang-line scripts. */
                    645:     if (optind < argc) {
                    646: 
                    647:         /* not valid for daemon mode */
                    648:         if (run_daemon == TRUE) {
                    649:             fprintf (stderr, "freem:  cannot pass --daemon flag in shebang line\r\n");
                    650:             exit (1);
                    651:         }
                    652:         
                    653:         /* bail if file does not exist */
                    654:         if (access (argv[optind], F_OK) == -1) {
                    655: 
                    656:             set_io (UNIX);
                    657:             
                    658:             fprintf (stderr, "Routine %s does not exist.\n", argv[optind]);
                    659: 
                    660:             exit (1);
                    661: 
                    662:         }
                    663: 
                    664:        skip_init = 1;
                    665: 
                    666:        /* initialize FreeM environment */
                    667:        strncpy (nsnbuf, nsname, 255);    
                    668:        if (init (nsnbuf) == FALSE) {
                    669:            
1.14      snw       670:            if (fm_initialized) set_io (UNIX);
1.1       snw       671:            fprintf (stderr, "\nError initializing FreeM.\n");
                    672:            
                    673:            exit (1);            
                    674:            
1.13      snw       675:        }
                    676:         else {
                    677:             fm_initialized = TRUE;
                    678:         }
1.1       snw       679: 
                    680:        
                    681:         direct_mode = FALSE;
                    682:         usermode = 0;
                    683: 
                    684:         /* was a path specified at all? */
                    685:         if (strchr (argv[optind], '/') == NULL) {
                    686:            
                    687:             /* the entirety of argv[optind] is the filename */
                    688:             cli_rtn_file = argv[optind];            
                    689: 
                    690:             /* use the current directory */
                    691:             sprintf (cli_rtn_path, ".");
                    692: 
                    693:         }
                    694:         else {
                    695: 
                    696:             /* isolate the filename from the path */
                    697:             cli_rtn_file = strrchr (argv[optind], '/') + 1;
                    698:             
                    699:             /* isolate the routine name from the filename */
                    700:             strncpy (cli_rtn_name, cli_rtn_file, strchr (cli_rtn_file, '.') - cli_rtn_file);
                    701:             
                    702:             /* isolate the path from the routine file */
                    703:             strncpy (cli_rtn_path, argv[optind], strrchr (argv[optind], '/') - argv[optind]);      
                    704:            
                    705:         }
                    706: 
                    707:         /* do we have a file extension? */
                    708:         if (strchr (cli_rtn_file, '.') != NULL) {
                    709:             
                    710:             /* if so, just remove it */
                    711:             strncpy (cli_rtn_name, cli_rtn_file, strchr (cli_rtn_file, '.') - cli_rtn_file);
                    712: 
                    713:         }
                    714:         else {
                    715: 
                    716:             /* otherwise, just take a direct copy */
                    717:             strcpy (cli_rtn_name, cli_rtn_file);
                    718: 
                    719:         }
                    720: 
                    721:         /* make this the startup routine */
                    722:         snprintf (startuprou, 256, "^%s\201", cli_rtn_name);
                    723: 
                    724:         /* re-work the namespace config to search for the 
                    725:            routine in the discovered path */
                    726:         if (cli_rtn_name[0] == '%') {
                    727: 
                    728:             snprintf (rou0plib, 256, "%s\201", cli_rtn_path);
                    729:             snprintf (rou1plib, 256, "%s\201", cli_rtn_path);
                    730: 
                    731:         }
                    732:         else {
                    733: 
                    734:             snprintf (rou0path, 256, "%s\201", cli_rtn_path);
                    735:             snprintf (rou1path, 256, "%s\201", cli_rtn_path);
                    736: 
                    737:         }
                    738: 
                    739:     }
                    740: 
1.13      snw       741:     
1.1       snw       742:     if (!file_exists (config_file)) {
                    743: 
1.13      snw       744:         if (fm_initialized == TRUE) set_io (UNIX);
                    745:         
1.1       snw       746:         fprintf (stderr, "\nFreeM has not been configured. Please run 'fmadm configure'.\n\n\n\n");
                    747:         
                    748:         exit (2);
                    749: 
                    750:     }
                    751: 
                    752:     if (!skip_init) {
                    753:        /* initialize FreeM environment */
                    754:        strncpy (nsnbuf, nsname, 255);    
1.13      snw       755:        if (init (nsnbuf) == FALSE) {       
1.1       snw       756:            set_io (UNIX);
                    757:            fprintf (stderr, "\nError initializing FreeM.\n");
                    758: 
                    759:            exit (1);
                    760:        }
1.13      snw       761:         else {
                    762:             fm_initialized = TRUE;
                    763:         }
1.1       snw       764:     }
                    765: 
                    766:     if (first_process == TRUE) {
                    767:         
                    768:         char verstr[500];
                    769:         pid_t stop_requester;
                    770: 
                    771:         if (run_daemon == FALSE) {
                    772:             fprintf (stderr, "freem:  re-run with --daemon or -d command-line flags\r\n");
                    773:             cleanup ();
                    774:             exit (1);
                    775:         }
                    776:         
                    777:         stcpy (verstr, FREEM_VERSION_STR);
                    778:         stcnv_m2c (verstr);
                    779:         
                    780:         fprintf (stderr, "Coherent Logic Development FreeM version %s\r\n", verstr);
1.2       snw       781:         fprintf (stderr, "freem:  shared memory for environment %s initialized (%ld bytes of shared memory @ '%p')\r\nfreem:  system ready\r\n", shm_env, (long) shm_init_size, shm_config->dta);
1.1       snw       782:         
                    783:         for (;;) {
                    784: 
                    785:             job_set_status (pid, JSTAT_HOUSEKEEPING);
                    786:             
                    787: 
                    788:             if (shm_config->hdr->maintenance_mode == 1) {
                    789: 
                    790:                 job_slot_t *slot;
                    791: 
                    792:                 fprintf (stderr, "freem:  entering maintenance mode\r\n");
                    793:                 m_log (1, "freem:  entering maintenance mode");
                    794:                 
                    795:                 for (slot = shm_config->hdr->jobtab_head; slot != NULL; slot = slot->next) {
                    796: 
                    797:                     if ((slot->pid != pid) && ((slot->flags & JFLG_FMADM) != JFLG_FMADM)) {
                    798:                         kill (slot->pid, SIGINT);
                    799:                     }
                    800: 
                    801:                 }
                    802:                 
                    803:             }
                    804:             
                    805:             if ((stop_requester = job_stop_requested (pid)) != 0) {
                    806:                 int connected_jobs;
                    807:                 
                    808:                 job_set_status (pid, JSTAT_SHUTDOWN);
                    809:                 
                    810:                 connected_jobs = job_count ();
                    811:                 
                    812:                 fprintf (stderr, "freem:  STOP requested by pid %d\r\n", stop_requester);
                    813:                 fprintf (stderr, "freem:  there are %d job(s) connected to this environment\r\n", connected_jobs);
                    814:                 
                    815:                 if (connected_jobs > 1) {
                    816:                     
                    817:                     fprintf (stderr, "freem:  asking non-daemon job(s) to disconnect and halt...\r\n");
                    818:                     job_request_all_stop ();
                    819: 
                    820:                     fprintf (stderr, "freem:  waiting 5 seconds for job(s) to disconnect...\r\n");
                    821:                     sleep (5);
                    822: 
                    823:                     connected_jobs = job_count ();
                    824:                     if (connected_jobs > 1) {
                    825:                         fprintf (stderr, "freem:  sending SIGTERM to %d job(s)...\r\n", connected_jobs);
                    826:                         job_signal_all (SIGTERM);
                    827:                         fprintf (stderr, "freem:  waiting 5 seconds for job(s) to disconnect...\r\n");
                    828:                         
                    829:                         sleep (5);
                    830:                     }
                    831:                     
                    832:                     connected_jobs = job_count ();
                    833:                     if (connected_jobs > 1) {
                    834:                         fprintf (stderr, "freem:  sending SIGKILL to %d job(s)...\r\n", connected_jobs);
                    835:                         job_signal_all (SIGKILL);
                    836:                     }
                    837:                    
                    838:                     job_gc_mark ();
                    839:                     job_gc_sweep ();
                    840:                     
                    841:                 }
                    842: 
                    843:                 fprintf (stderr, "freem:  terminating\r\n");
                    844:                 cleanup ();
1.11      snw       845:                 
1.1       snw       846:                 exit (0);
                    847:                 
                    848:             }
                    849:             
                    850:             job_gc_mark ();
                    851:             job_set_status (pid, JSTAT_IDLE);
                    852:             sleep (1);
                    853:             
                    854:             job_set_status (pid, JSTAT_HOUSEKEEPING);
                    855:             job_gc_sweep ();
                    856:             sleep (1);
                    857:         }
                    858:             
                    859:     }
                    860:         
                    861:     
                    862: #if !defined(_AIX)
                    863:     if(import_env == TRUE) {
                    864: 
                    865:        int i_maxlen = 255;
                    866:        
                    867:         for(env = envp; *env != 0; env++) {
                    868:            
                    869:             namelen = 0;
                    870:             vallen = 0;
                    871:             
                    872:             varname = strtok(*env, "=");
                    873:             varval = strtok(NULL, "=");
                    874: 
                    875:             if(varval != NULL) {
                    876:                 namelen = strlen (varname);
                    877:                 vallen = strlen (varval);
                    878: 
                    879:                snprintf (symname, i_maxlen, "ENV.%s\201\201", varname);
                    880:                 strncpy (symval, varval, i_maxlen);
                    881:                
                    882:                 stcnv_c2m (symval);
                    883: 
                    884:                 symtab (set_sym, symname, symval);
                    885:             }
                    886:         }
                    887:     }
                    888: #endif    
                    889: 
                    890:     
                    891:     if (direct_mode == TRUE && quiet_mode == FALSE) {
                    892: 
                    893:        char verstr[500];
                    894:         char version[256];
                    895:        
                    896:        stcpy (verstr, FREEM_VERSION_STR);
                    897:        stcnv_m2c (verstr);
                    898:                
                    899:         snprintf (version, 255, "\r\nCoherent Logic Development FreeM version %s [DIALECT: %s%s]\r\n\201", verstr, m_dialect, (restricted_mode == TRUE ? "/RESTRICTED" : ""));
                    900:        write_m (version);
                    901: 
1.4       snw       902:        snprintf (version, 255, "Copyright (C) 2014, 2020, 2021, 2023, 2025 Coherent Logic Development LLC\r\n\r\n\201");
1.1       snw       903:        write_m (version);
                    904: 
1.5       snw       905:         /*
1.1       snw       906:         printf ("Environment:       \t%s\r\n", shm_env);
                    907:         printf ("Environment Daemon:\tPID %d\r\n", shm_config->hdr->first_process);
                    908:         printf ("Interpreter Process:\tPID %d\r\n", pid);
1.5       snw       909:         */
1.1       snw       910: 
                    911:     }
                    912:     else {
                    913:         write_m ("\r\n\r\n\201");
                    914:     }
                    915: 
                    916:     if (dx_mode) {
                    917:        char k_buf[512];        
                    918: 
                    919:        snprintf (k_buf, 512 - 1, "%%TMPINITMCODE\201\201");
                    920:        symtab (set_sym, k_buf, dx_mcode);
                    921:         const_define (k_buf, dx_mcode);
                    922:     }
                    923: 
                    924:     if (routine_mode) {
                    925:         char k_buf[512];
                    926: 
                    927:         snprintf (k_buf, 512 - 1, "%%TMPINITROUTINE\201\201");
                    928:         symtab (set_sym, k_buf, startup_routine);
                    929:         const_define (k_buf, startup_routine);
                    930:     }
                    931:     
                    932:     /* run mumps */
                    933:     xecline (1);
                    934: 
                    935:     exit (0);  /* we should never reach that statement */
                    936: 
                    937: } /* end of main() */
                    938: 
                    939: void freem_usage(void)
                    940: {
                    941:     fprintf (stdout, "\nusage:  freem [OPTION...]\n\n");
                    942:     
                    943:     fprintf (stdout, "OPTIONS:\n\n");
                    944:     
                    945: #if defined(HAVE_GETOPT_LONG)
                    946:     fprintf (stdout, "\t-h, --help\n\t\tdisplays this help message\n\n");
                    947:     fprintf (stdout, "\t-i, --import\n\t\timports UNIX environment variables as M locals\n\n");
                    948:     fprintf (stdout, "\t-e <environment-name>, --environment=<environment-name>\n\t\tsets active environment to <environment-name> (DEFAULT if unspecified)\n\n");
                    949:     fprintf (stdout, "\t-f, --filter\n\t\tallows M code to be used as a filter\n\n");
                    950:     fprintf (stdout, "\t-n <NAMESPACE>, --namespace=<NAMESPACE>\n\t\tselects <NAMESPACE> as the startup namespace instead of USER\n\n");
                    951:     fprintf (stdout, "\t-q, --quiet\n\t\tdisables startup messages and prompt string\n\n");
                    952:     fprintf (stdout, "\t-r <LABEL^ROUTINE>, --routine=<LABEL^ROUTINE>\n\t\texecute <LABEL^ROUTINE> on startup instead of entering direct mode\n\n");
                    953:     fprintf (stdout, "\t-s, --standard\n\t\trestrict access to FreeM vendor extensions not present in relevant standards*\n\n");
                    954:     fprintf (stdout, "\t-v, --version\n\t\tdisplay FreeM version information\n\n");
                    955:     fprintf (stdout, "\t-x <MCODE>, --execute=<MCODE>\n\t\texecute M code <MCODE> on startup\n\n");
                    956:     fprintf (stdout, "\t-d, --daemon\n\t\trun the FreeM daemon (one and only one FreeM daemon must always be running)\n\n");
                    957:     fprintf (stdout, "\t-k, --nofork\n\t\trun the FreeM daemon in foreground (requires --daemon)\n\n");
                    958:     fprintf (stdout, "\t-S <BYTES>, --shmsize=<BYTES>\n\t\tsets the size of the shared memory segment where FreeM stores the job table, lock table, and IPC table.\n");
                    959: #else
                    960:     fprintf (stdout, "\t-h\n\t\tdisplays this help message\n\n");
                    961:     fprintf (stdout, "\t-i\n\t\timports UNIX environment variables as M locals\n\n");
                    962:     fprintf (stdout, "\t-e <environment-name>\n\t\tsets active environment to <environment-name> (DEFAULT if unspecified)\n\n");
                    963:     fprintf (stdout, "\t-f\n\t\tallows M code to be used as a filter\n\n");
                    964:     fprintf (stdout, "\t-n <NAMESPACE>\n\t\tselects <NAMESPACE> as the startup namespace instead of USER\n\n");
                    965:     fprintf (stdout, "\t-q\n\t\tdisables startup messages and prompt string\n\n");
                    966:     fprintf (stdout, "\t-r <LABEL^ROUTINE>\n\t\texecute <LABEL^ROUTINE> on startup instead of entering direct mode\n\n");
                    967:     fprintf (stdout, "\t-s\n\t\trestrict access to FreeM vendor extensions not present in relevant standards*\n\n");
                    968:     fprintf (stdout, "\t-v\n\t\tdisplay FreeM version information\n\n");
                    969:     fprintf (stdout, "\t-x <MCODE>\n\t\texecute M code <MCODE> on startup\n\n");
                    970:     fprintf (stdout, "\t-d\n\t\trun the FreeM daemon (one and only one FreeM daemon must always be running)\n\n");
                    971:     fprintf (stdout, "\t-k\n\t\trun the FreeM daemon in foreground (requires --daemon)\n\n");
                    972:     fprintf (stdout, "\t-S <BYTES>\n\t\tsets the size of the shared memory segment where FreeM stores the job table, lock table, and IPC table.\n");
                    973: #endif    
                    974:     fprintf (stdout, "\t\t  - Each concurrent job takes %d bytes (1 page) of shared memory\n", PG_SIZE);
                    975:     fprintf (stdout, "\t\t  - Each LOCK takes %d bytes (2 pages) of shared memory\n", PG_SIZE * 2);
                    976:     fprintf (stdout, "\t\t  - Each IPC takes %d bytes (1 page) of shared memory\n\n", PG_SIZE);
                    977:     fprintf (stdout, "\t* FreeM attempts to conform (at least loosely) to the Millennium Draft Standard when this mode is selected.\n\n\n");
                    978:     fprintf (stdout, "Report bugs to: freem-bugs@coherent-logic.com\n");
                    979:     fprintf (stdout, "FreeM home page: <https://freem.coherent-logic.com>\n\n");   
                    980:     
                    981:     exit (1);
                    982: }
                    983: 
                    984: void freem_print_version(void)
                    985: {
                    986:     char verstr[500];
                    987:     stcpy (verstr, FREEM_VERSION_STR);
                    988:     stcnv_m2c (verstr);
                    989:     
                    990:     fprintf (stdout, "Coherent Logic Development FreeM %s\n", verstr);
                    991:     fprintf (stdout, "Copyright (C) 2014, 2020, 2021, 2023 Coherent Logic Development LLC\n\n");
                    992:     fprintf (stdout, "License AGPLv3+: GNU AGPL version 3 or later <https://gnu.org/license/agpl-3.0.html>\n");
                    993:     fprintf (stdout, "This is free software: you are free to change and redistribute it.\n");
                    994:     fprintf (stdout, "There is NO WARRANTY, to the extent permitted by law.\n");
                    995:     
                    996:     exit (0);
                    997: }

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