Annotation of freem/src/fmadm.c, revision 1.24
1.1 snw 1: /*
1.24 ! snw 2: * $Id: fmadm.c,v 1.23 2025/04/02 02:16:27 snw Exp $
1.1 snw 3: * FreeM Administration Tool
4: *
5: *
1.6 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.7 snw 8: * Copyright (C) 2020, 2023, 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.8 snw 26: * $Log: fmadm.c,v $
1.24 ! snw 27: * Revision 1.23 2025/04/02 02:16:27 snw
! 28: * Add fmadm status environment command and move journals to a better location
! 29: *
1.23 snw 30: * Revision 1.22 2025/04/01 23:21:45 snw
31: * fmadm commands for stopping, starting, and restarting environments now functional
32: *
1.22 snw 33: * Revision 1.21 2025/04/01 20:11:46 snw
34: * Further work on fmadm
35: *
1.21 snw 36: * Revision 1.20 2025/04/01 16:37:12 snw
37: * Configure DEFAULT environment the same as others, and set permissions/ownership directly in fmadm configure. Add env.conf file as a centralized configuration listing all environments.
38: *
1.20 snw 39: * Revision 1.19 2025/04/01 14:32:11 snw
40: * Begin work on environment and namespace reorg
41: *
1.19 snw 42: * Revision 1.18 2025/03/31 16:33:56 snw
43: * Work on fmadm edit global
44: *
1.18 snw 45: * Revision 1.17 2025/03/30 01:36:58 snw
46: * Make it easier to bring back fma_gedit, fix double-free in global handler, limit $CHAR to 7-bit ASCII
47: *
1.17 snw 48: * Revision 1.16 2025/03/24 20:59:58 snw
49: * Try using DosCopy API instead of built-in cp function on OS/2
50: *
1.16 snw 51: * Revision 1.15 2025/03/24 20:58:05 snw
52: * Try using DosCopy API instead of built-in cp function on OS/2
53: *
1.15 snw 54: * Revision 1.14 2025/03/24 20:57:06 snw
55: * Try using DosCopy API instead of built-in cp function on OS/2
56: *
1.14 snw 57: * Revision 1.13 2025/03/24 20:15:09 snw
58: * Set file permissions on freemd.exe on OS/2 in fmadm configure
59: *
1.13 snw 60: * Revision 1.12 2025/03/24 20:13:34 snw
61: * Set file permissions on freemd.exe on OS/2 in fmadm configure
62: *
1.12 snw 63: * Revision 1.11 2025/03/24 19:25:48 snw
64: * Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems
65: *
1.11 snw 66: * Revision 1.10 2025/03/24 19:22:16 snw
67: * Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems
68: *
1.10 snw 69: * Revision 1.9 2025/03/24 19:19:42 snw
70: * Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems
71: *
1.9 snw 72: * Revision 1.8 2025/03/22 18:43:54 snw
73: * Make STRLEN 255 chars and add BIGSTR macro for larger buffers
74: *
1.8 snw 75: * Revision 1.7 2025/03/09 19:14:25 snw
76: * First phase of REUSE compliance and header reformat
77: *
1.7 snw 78: *
79: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
80: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 81: **/
82:
83: #include <sys/types.h>
84: #include <sys/stat.h>
1.19 snw 85: #include <pwd.h>
86: #include <grp.h>
1.1 snw 87: #include <stddef.h>
88: #include <stdio.h>
89: #include <string.h>
90: #include <dirent.h>
91: #include <stdlib.h>
92: #include <unistd.h>
93: #include <errno.h>
1.4 snw 94: #include <ctype.h>
1.1 snw 95: #include "config.h"
96: #include "transact.h"
97: #include "namespace.h"
98: #include "fs.h"
99:
1.14 snw 100: #if defined(__OS2__)
101: # include <os2.h>
102: #endif
103:
1.1 snw 104: #ifdef HAVE_LIBREADLINE
105: # if defined(HAVE_READLINE_READLINE_H)
106: # include <readline/readline.h>
107: # elif defined(HAVE_READLINE_H)
108: # include <readline.h>
109: # else /* !defined(HAVE_READLINE_H) */
110: extern char *readline ();
111: # endif /* !defined(HAVE_READLINE_H) */
112: /*char *cmdline = NULL;*/
113: #else /* !defined(HAVE_READLINE_READLINE_H) */
114: /* no readline */
115: #endif /* HAVE_LIBREADLINE */
116:
117: #ifdef HAVE_READLINE_HISTORY
118: # if defined(HAVE_READLINE_HISTORY_H)
119: # include <readline/history.h>
120: # elif defined(HAVE_HISTORY_H)
121: # include <history.h>
122: # else /* !defined(HAVE_HISTORY_H) */
123: extern void add_history ();
124: extern int write_history ();
125: extern int read_history ();
126: # endif /* defined(HAVE_READLINE_HISTORY_H) */
127: /* no history */
128: #endif /* HAVE_READLINE_HISTORY */
129:
130:
131: #include "fmadm.h"
132: #include "errmsg.h"
133: #include "iniconf.h"
134: #include "init.h"
135: #include "version.h"
136: #include "shmmgr.h"
137: #include "jobtab.h"
138: #include "locktab.h"
139:
140: /* namespace configuration */
141: char fma_environment[STRLEN];
142: char fma_namespace[STRLEN];
1.8 snw 143: char fma_routine_path[PATHLEN];
144: char fma_global_path[PATHLEN];
145: char fma_journal_path[PATHLEN];
146: char fma_pct_global_path[PATHLEN];
147: char fma_pct_routine_path[PATHLEN];
1.1 snw 148: char fma_journal_cut_threshold[STRLEN];
1.8 snw 149: char fma_locktab[PATHLEN];
1.1 snw 150: short fma_base_opt = 1;
151: short fma_min_args = 2;
152: short fma_explicit_namespace = FALSE;
153: short fma_explicit_environment = FALSE;
154:
155: /* miscellaneous global state */
156: char obj_str[STRLEN];
157:
158: extern char config_file[4096];
1.20 snw 159: extern char env_config_file[4096];
160: extern char env_user[255];
161: extern char env_group[255];
1.1 snw 162:
163: int fm_shell(void);
164: void fm_checkperms(void);
165: void fm_reconfigure(void);
166: void fm_configure(void);
1.21 snw 167: int fm_daemonctl (short action, short object, int optc, char **options);
1.1 snw 168: void fm_write (FILE *file, char *buf);
169: int fma_jobs_remove (int optc, char **opts);
1.20 snw 170: void set_permissions(char *path, char *user, char *grp, int mode);
1.21 snw 171: extern int read_profile_string(char *file, char *section, char *key, char *value);
1.1 snw 172:
173: int main (int argc, char **argv)
174: {
175: char action[STRLEN];
176:
177: short act = -1;
178: short obj = -1;
179:
180: char **opts;
181: int optc = argc - 3;
182:
183: int i = 0;
184: int j = 1;
185: int base_arg = 4;
186: int k = 0;
187:
188: short got_action = FALSE;
189: short got_object = FALSE;
190:
191:
192: /* snprintf (config_file, 4096, "%s/freem.conf", SYSCONFDIR); */
193:
194: base_arg = 1;
195:
196: /* enforce action in argv[1] */
197: if (argc > 1) {
198: if (argv[1][0] == '-') {
199: fprintf (stderr, "fmadm: first argument, if given, must be an action, not a flag\n");
200: fmadm_usage ();
201: exit (1);
202: }
203: }
204:
205: for (i = base_arg; i < argc; i++) {
206: if (i == 1 && isalpha (argv[i][0])) {
207: got_action = TRUE;
208: strncpy (action, argv[i], STRLEN - 1);
209: base_arg++;
210: }
211: if (i == 2 && isalpha (argv[i][0])) {
212: got_object = TRUE;
213: strncpy (obj_str, argv[i], STRLEN - 1);
214: base_arg++;
215: }
216: if (argv[i][0] == '-') {
217:
218: switch (argv[i][1]) {
1.20 snw 219:
220: case 'u':
221: if (argv[i][2] != '=') {
222: fprintf (stderr, "fmadm: missing equals sign in flag -%c\n", argv[i][1]);
223: fmadm_usage ();
224: exit (1);
225: }
226:
227: k = 0;
228:
229: for (j = 3; j < strlen (argv[i]); j++) {
230: env_user[k++] = argv[i][j];
231: }
232:
233: base_arg++;
234:
235: break;
236:
237: case 'g':
238: if (argv[i][2] != '=') {
239: fprintf (stderr, "fmadm: missing equals sign in flag -%c\n", argv[i][1]);
240: fmadm_usage ();
241: exit (1);
242: }
243:
244: k = 0;
245:
246: for (j = 3; j < strlen (argv[i]); j++) {
247: env_group[k++] = argv[i][j];
248: }
249:
250: base_arg++;
251:
252: break;
253:
1.1 snw 254:
255: case 'e':
256: if (argv[i][2] != '=') {
257: fprintf (stderr, "fmadm: missing equals sign in flag -%c\n", argv[i][1]);
258: fmadm_usage ();
259: exit (1);
260: }
261:
262: k = 0;
263:
264: for (j = 3; j < strlen (argv[i]); j++) {
265: fma_environment[k++] = argv[i][j];
266: }
1.21 snw 267:
268: if (strcmp (fma_environment, "all") == 0 ) {
269: fprintf (stderr, "fmadm: 'all' is an invalid environment name\n");
270: exit (1);
271: }
1.1 snw 272:
273: fma_explicit_environment = TRUE;
274: base_arg++;
275:
276: break;
277:
278: case 'n':
279: if (argv[i][2] != '=') {
280: fprintf (stderr, "fmadm: missing equals sign in flag -%c\n", argv[i][1]);
281: fmadm_usage ();
282: exit (1);
283: }
284:
285: k = 0;
286:
287: for (j = 3; j < strlen (argv[i]); j++) {
288: fma_namespace[k++] = argv[i][j];
289: }
290:
291: fma_explicit_namespace = TRUE;
292: base_arg++;
293:
294: break;
295:
296: }
297: }
298: }
1.24 ! snw 299:
1.21 snw 300: if (obj != OBJ_DAEMON) {
301: if (strlen (env_user) == 0) {
302: snprintf (env_user, 6, "freem");
303: }
304:
305: if (strlen (env_group) == 0) {
306: snprintf (env_group, 6, "freem");
307: }
1.20 snw 308:
1.1 snw 309:
1.21 snw 310: if (!fma_explicit_environment) snprintf (fma_environment, 4096, "DEFAULT");
311: if (!fma_explicit_namespace) snprintf (fma_namespace, 4096, "SYSTEM");
312:
313: snprintf (config_file, 4096, "%s/freem/%s/freem.conf", SYSCONFDIR, fma_environment);
314: }
1.1 snw 315:
1.20 snw 316: snprintf (env_config_file, 4096, "%s/freem/env.conf", SYSCONFDIR);
317:
1.1 snw 318: /*
319: printf ("action = '%s' object = '%s' environment = '%s' namespace = '%s' config_file = '%s' base_arg = '%d' next argument = '%s'\n", action, obj_str, fma_environment, fma_namespace, config_file, base_arg, argv[base_arg]);
320: exit(1);
321: */
322:
1.21 snw 323: /* override for fmadm configure and daemon stuff */
1.1 snw 324: if (got_action) {
325: if (strcmp (argv[1], "configure") == 0) {
326: fm_configure ();
327: exit (0);
328: }
329: else if (strcmp (argv[1], "reconfigure") == 0) {
330: fm_reconfigure ();
331: exit (0);
332: }
1.21 snw 333: else if (strcmp (argv[1], "start") == 0 && strcmp (argv[2], "environment") == 0) {
334: act = ACT_START;
335: obj = OBJ_DAEMON;
336: goto act_switch;
337: }
338: else if (strcmp (argv[1], "stop") == 0 && strcmp (argv[2], "environment") == 0) {
339: act = ACT_STOP;
340: obj = OBJ_DAEMON;
341: goto act_switch;
342: }
343: else if (strcmp (argv[1], "restart") == 0 && strcmp (argv[2], "environment") == 0) {
344: act = ACT_RESTART;
345: obj = OBJ_DAEMON;
346: goto act_switch;
1.23 snw 347: }
348: else if (strcmp (argv[1], "status") == 0 && strcmp (argv[2], "environment") == 0) {
349: act = ACT_STATUS;
350: obj = OBJ_DAEMON;
351: goto act_switch;
1.21 snw 352: }
1.23 snw 353:
1.1 snw 354: }
355:
356: pid = getpid ();
357:
358: shm_init (16777216);
359: tp_init ();
360: jobtab_init ();
361: job_init (TRUE);
362:
363: fm_sig_init ();
1.21 snw 364:
1.1 snw 365: /* go to fmadm shell if no arguments passed */
366: if (!got_action && !got_object) return fm_shell ();
367:
368: if (argc > 1 && strcmp (argv[1], "checkperms") == 0) {
369: fm_checkperms ();
370: exit (0);
371: }
372:
373: set_namespace (fma_namespace, FALSE);
374:
375: /* allocate opts array */
376:
377: /* first dimension */
378: if ((opts = (char **) malloc (FMA_MAXARGS * sizeof (char *))) == NULL) {
379: fprintf (stderr, "fmadm [FATAL]: could not acquire memory\n");
380: return 1;
381: }
382:
383: /* second dimension */
384: for (i = 0; i < FMA_MAXARGS; i++) {
385: if ((opts[i] = (char *) malloc (STRLEN * sizeof (char *))) == NULL) {
386: fprintf (stderr, "fmadm [FATAL]: could not acquire memory\n");
387: return 1;
388: }
389: }
390:
391: /* copy argv[base_arg] through argv[argc - 1] to opts[1] through opts[argc - 3] */
392:
393: strncpy (opts[0], argv[0], STRLEN - 1); /* preserve argv[0] */
394:
395: j = 1;
396: for (i = base_arg; i < argc; i++) {
397: if (i > FMA_MAXARGS) return fmadm_usage(); /* bail if we're going to overrun the array */
398: strncpy (opts[j++], argv[i], STRLEN - 1);
399: }
400:
401: if (strncmp (action, "list", STRLEN - 1) == 0) act = ACT_LIST;
402: else if (strncmp (action, "examine", STRLEN - 1) == 0) act = ACT_EXAMINE;
403: else if (strncmp (action, "verify", STRLEN - 1) == 0) act = ACT_VERIFY;
404: else if (strncmp (action, "compact", STRLEN - 1) == 0) act = ACT_COMPACT;
405: else if (strncmp (action, "repair", STRLEN - 1) == 0) act = ACT_REPAIR;
406: else if (strncmp (action, "create", STRLEN - 1) == 0) act = ACT_CREATE;
407: else if (strncmp (action, "remove", STRLEN - 1) == 0) act = ACT_REMOVE;
408: else if (strncmp (action, "import", STRLEN - 1) == 0) act = ACT_IMPORT;
409: else if (strncmp (action, "export", STRLEN - 1) == 0) act = ACT_EXPORT;
410: else if (strncmp (action, "backup", STRLEN - 1) == 0) act = ACT_BACKUP;
411: else if (strncmp (action, "restore", STRLEN - 1) == 0) act = ACT_RESTORE;
412: else if (strncmp (action, "migrate", STRLEN - 1) == 0) act = ACT_MIGRATE;
1.21 snw 413: else if (strncmp (action, "edit", STRLEN - 1) == 0) act = ACT_EDIT;
414: else if (strncmp (action, "start", STRLEN - 1) == 0) act = ACT_START;
415: else if (strncmp (action, "stop", STRLEN - 1) == 0) act = ACT_STOP;
416: else if (strncmp (action, "restart", STRLEN - 1) == 0) act = ACT_RESTART;
1.1 snw 417: else return fmadm_usage();
418:
419: if (strncmp (obj_str, "lock", STRLEN - 1) == 0) obj = OBJ_LOCK;
420: else if (strncmp (obj_str, "journal", STRLEN - 1) == 0) obj = OBJ_JOURNAL;
421: else if (strncmp (obj_str, "namespace", STRLEN - 1) == 0) obj = OBJ_NAMESPACE;
422: else if (strncmp (obj_str, "global", STRLEN - 1) == 0) obj = OBJ_GLOBAL;
423: else if (strncmp (obj_str, "routine", STRLEN - 1) == 0) obj = OBJ_ROUTINE;
424: else if (strncmp (obj_str, "job", STRLEN - 1) == 0) obj = OBJ_JOB;
1.21 snw 425: else if (strncmp (obj_str, "environment", STRLEN - 1) == 0) obj = OBJ_DAEMON;
1.1 snw 426: else return fmadm_usage();
427:
1.21 snw 428: if (act > ACT_EDIT) goto act_switch;
429:
1.1 snw 430: if (get_conf (fma_namespace, "routines_path", fma_routine_path) == FALSE) {
431: fprintf (stderr, "fmadm: cannot determine routine path for namespace %s\n", fma_namespace);
432: return 1;
433: }
434:
435: if (get_conf (fma_namespace, "globals_path", fma_global_path) == FALSE) {
436: fprintf (stderr, "fmadm: cannot determine global path for namespace %s\n", fma_namespace);
437: return 1;
438: }
439:
440: if (get_conf ("SYSTEM", "globals_path", fma_pct_global_path) == FALSE) {
441: fprintf (stderr, "fmadm: cannot determine %% global path for namespace %s\n", "SYSTEM");
442: return 1;
443: }
444:
445: if (get_conf ("SYSTEM", "routines_path", fma_pct_routine_path) == FALSE) {
446: fprintf (stderr, "fmadm: cannot determine %% routine path for namespace %s\n", "SYSTEM");
447: return 1;
448: }
449:
450: if (get_conf ("SYSTEM", "journal_file", fma_journal_path) == FALSE) {
451: strcpy (fma_journal_path, "");
452: }
453:
454: if (get_conf ("SYSTEM", "journal_cut_threshold", fma_journal_cut_threshold) == FALSE) {
455: strcpy (fma_journal_cut_threshold, "1073741824");
456: }
457:
458: strcpy (gloplib, fma_pct_global_path);
459: stcnv_c2m (gloplib);
460:
461: strcpy (glopath, fma_global_path);
462: stcnv_c2m (glopath);
463:
464:
1.21 snw 465: act_switch:
1.1 snw 466: switch (act) {
467:
468:
469: case ACT_LIST:
470: fmadm_exit (fm_list (obj, optc, opts));
471:
472:
473: case ACT_EXAMINE:
474: fmadm_exit (fm_examine (obj, optc, opts));
475:
476:
477: case ACT_VERIFY:
478: fmadm_exit (fm_verify (obj, optc, opts));
479:
480:
481: case ACT_COMPACT:
482: fmadm_exit (fm_compact (obj, optc, opts));
483:
484:
485: case ACT_REPAIR:
486: fmadm_exit (fm_repair (obj, optc, opts));
487:
488:
489: case ACT_CREATE:
490: fmadm_exit (fm_create (obj, optc, opts));
491:
492:
493: case ACT_REMOVE:
494: fmadm_exit (fm_remove (obj, optc, opts));
495:
496:
497: case ACT_IMPORT:
498: fmadm_exit (fm_import (obj, optc, opts));
499:
500:
501: case ACT_EXPORT:
502: fmadm_exit (fm_export (obj, optc, opts));
503:
504:
505: case ACT_BACKUP:
506: fmadm_exit (fm_backup (obj, optc, opts));
507:
508:
509: case ACT_RESTORE:
510: fmadm_exit (fm_restore (obj, optc, opts));
511:
512:
513: case ACT_MIGRATE:
514: fmadm_exit (fm_migrate (obj, optc, opts));
515:
516:
517: case ACT_EDIT:
518: fmadm_exit (fm_edit (obj, optc, opts));
519:
1.21 snw 520: case ACT_START:
521: case ACT_STOP:
522: case ACT_RESTART:
1.23 snw 523: case ACT_STATUS:
1.21 snw 524: fmadm_exit (fm_daemonctl (act, obj, optc, opts));
1.1 snw 525:
526: default:
527: return fmadm_usage();
528: }
529:
530: return 0; /* should never be reached */
531:
532: } /* main() */
533:
534: int fm_shell (void)
535: {
536:
537: #if defined(HAVE_LIBREADLINE) && !defined(_AIX)
538: int cmd;
539: int i;
540: int j;
541: int obj;
542: int optc;
543: int argc;
544: char **args;
545: char **opts;
546: char *fmarl_buf;
547: char *fma_prompt = (char *) malloc (STRLEN * sizeof (char));
548: char *cmdt = (char *) malloc (65535 * sizeof (char));
549: char *result = (char *) malloc (65535 * sizeof (char));
550:
551: /*
552: strcpy (fma_namespace, "SYSTEM");
553: set_namespace (fma_namespace, FALSE);
554: */
555:
556: snprintf (fma_prompt, STRLEN - 1, "fmadm [%s]> ", fma_namespace);
557:
558: if (get_conf (fma_namespace, "routines_path", fma_routine_path) == FALSE) {
559: fprintf (stderr, "fmadm: cannot determine routine path for namespace %s\n", fma_namespace);
560: return 1;
561: }
562:
563: if (get_conf (fma_namespace, "globals_path", fma_global_path) == FALSE) {
564: fprintf (stderr, "fmadm: cannot determine global path for namespace %s\n", fma_namespace);
565: return 1;
566: }
567:
568: if (get_conf ("SYSTEM", "globals_path", fma_pct_global_path) == FALSE) {
569: fprintf (stderr, "fmadm: cannot determine %% global path for namespace %s\n", "SYSTEM");
570: return 1;
571: }
572:
573: if (get_conf ("SYSTEM", "routines_path", fma_pct_routine_path) == FALSE) {
574: fprintf (stderr, "fmadm: cannot determine %% routine path for namespace %s\n", "SYSTEM");
575: return 1;
576: }
577:
578: if (get_conf ("SYSTEM", "journal_file", fma_journal_path) == FALSE) {
579: strcpy (fma_journal_path, "");
580: }
581:
582: if (get_conf ("SYSTEM", "journal_cut_threshold", fma_journal_cut_threshold) == FALSE) {
583: strcpy (fma_journal_cut_threshold, "1073741824");
584: }
585:
586: strcpy (gloplib, fma_pct_global_path);
587: stcnv_c2m (gloplib);
588:
589: strcpy (glopath, fma_global_path);
590: stcnv_c2m (glopath);
591:
592: /* allocate args array */
593:
594: /* first dimension */
595: if ((args = (char **) malloc (FMA_MAXARGS * sizeof (char *))) == NULL) {
596: fprintf (stderr, "fmadm [FATAL]: could not acquire memory\n");
597: return 1;
598: }
599:
600: /* second dimension */
601: for (i = 0; i < FMA_MAXARGS; i++) {
602: if ((args[i] = (char *) malloc (STRLEN * sizeof (char *))) == NULL) {
603: fprintf (stderr, "fmadm [FATAL]: could not acquire memory\n");
604: return 1;
605: }
606: }
607:
608: /* allocate opts array */
609:
610: /* first dimension */
611: if ((opts = (char **) malloc (FMA_MAXARGS * sizeof (char *))) == NULL) {
612: fprintf (stderr, "fmadm [FATAL]: could not acquire memory\n");
613: return 1;
614: }
615:
616: /* second dimension */
617: for (i = 0; i < FMA_MAXARGS; i++) {
618: if ((opts[i] = (char *) malloc (STRLEN * sizeof (char *))) == NULL) {
619: fprintf (stderr, "fmadm [FATAL]: could not acquire memory\n");
620: return 1;
621: }
622: }
623:
624:
625: for (;;) {
626:
627: fmarl_buf = readline (fma_prompt);
628:
629: if (fmarl_buf == (char *) NULL) continue;
630:
631: cmdt = strtok (fmarl_buf, " ");
632:
1.2 snw 633: if (cmdt == (char *) NULL) continue;
634:
1.1 snw 635: for (i = 0; i < strlen (cmdt); i++) cmdt[i] = cmdt[i] | 0140;
636:
637: if (strcmp (cmdt, "exit") == 0) cmd = FMAC_EXIT;
638: else if (strcmp (cmdt, "quit") == 0) cmd = FMAC_EXIT;
639: else if (strcmp (cmdt, "select") == 0) cmd = FMAC_SELECT;
640: else if (strcmp (cmdt, "list") == 0) cmd = FMAC_LIST;
641: else if (strcmp (cmdt, "examine") == 0) cmd = FMAC_EXAMINE;
642: else if (strcmp (cmdt, "verify") == 0) cmd = FMAC_VERIFY;
643: else if (strcmp (cmdt, "compact") == 0) cmd = FMAC_COMPACT;
644: else if (strcmp (cmdt, "repair") == 0) cmd = FMAC_REPAIR;
645: else if (strcmp (cmdt, "create") == 0) cmd = FMAC_CREATE;
646: else if (strcmp (cmdt, "import") == 0) cmd = FMAC_IMPORT;
647: else if (strcmp (cmdt, "export") == 0) cmd = FMAC_EXPORT;
648: else if (strcmp (cmdt, "backup") == 0) cmd = FMAC_BACKUP;
649: else if (strcmp (cmdt, "restore") == 0) cmd = FMAC_RESTORE;
650: else if (strcmp (cmdt, "migrate") == 0) cmd = FMAC_MIGRATE;
651: else if (strcmp (cmdt, "edit") == 0) cmd = FMAC_EDIT;
652: else if (strcmp (cmdt, "set") == 0) cmd = FMAC_SET;
653: else if (strcmp (cmdt, "show") == 0) cmd = FMAC_SHOW;
654: else if (strcmp (cmdt, "remove") == 0) cmd = FMAC_REMOVE;
655: else cmd = FMAC_INVALID;
656:
657: i = 0;
658: while ((result = strtok (NULL, " ")) != NULL) {
659: // printf ("%d = %s\n", i, result);
660: strcpy (args[i++], result);
661: }
662:
663: argc = i;
664: j = 0;
665:
666: for (i = 1; i < argc; i++) {
667: strncpy (opts[j++], args[i], STRLEN - 1);
668: }
669:
670: optc = argc - 1;
671:
672: if (i > 0) {
673:
674: strcpy (obj_str, args[0]);
675:
676: if (strncmp (obj_str, "lock", STRLEN - 1) == 0) obj = OBJ_LOCK;
677: else if (strncmp (obj_str, "journal", STRLEN - 1) == 0) obj = OBJ_JOURNAL;
678: else if (strncmp (obj_str, "namespace", STRLEN - 1) == 0) obj = OBJ_NAMESPACE;
679: else if (strncmp (obj_str, "global", STRLEN - 1) == 0) obj = OBJ_GLOBAL;
680: else if (strncmp (obj_str, "routine", STRLEN - 1) == 0) obj = OBJ_ROUTINE;
681: else if (strncmp (obj_str, "job", STRLEN - 1) == 0) obj = OBJ_JOB;
682:
683: }
684:
685: switch (cmd) {
686:
687:
688: case FMAC_SELECT:
689:
690:
691: break;
692:
693:
694: case FMAC_LIST:
695: fm_list (obj, optc, opts);
696: break;
697:
698:
699: case FMAC_EXAMINE:
700: fm_examine (obj, optc, opts);
701: break;
702:
703:
704: case FMAC_VERIFY:
705: fm_verify (obj, optc, opts);
706: break;
707:
708:
709: case FMAC_COMPACT:
710: fm_compact (obj, optc, opts);
711: break;
712:
713:
714: case FMAC_REPAIR:
715: fm_repair (obj, optc, opts);
716: break;
717:
718:
719: case FMAC_CREATE:
720: fm_create (obj, optc, opts);
721: break;
722:
723:
724: case FMAC_REMOVE:
725: fm_remove (obj, optc, opts);
726: break;
727:
728:
729: case FMAC_IMPORT:
730: fm_import (obj, optc, opts);
731: break;
732:
733:
734: case FMAC_EXPORT:
735: fm_export (obj, optc, opts);
736: break;
737:
738:
739: case FMAC_BACKUP:
740: fm_backup (obj, optc, opts);
741: break;
742:
743:
744: case FMAC_RESTORE:
745: fm_restore (obj, optc, opts);
746: break;
747:
748:
749: case FMAC_MIGRATE:
750: fm_migrate (obj, optc, opts);
751: break;
752:
753:
754: case FMAC_EDIT:
755: fm_edit (obj, optc, opts);
756: break;
757:
758:
759: case FMAC_SET:
760:
761: if (i < 2) {
762: printf ("fmadm: syntax error\n");
763: break;
764: }
765:
766: if (strcmp (args[0], "namespace") == 0) {
767: strcpy (fma_namespace, args[1]);
768:
769: if (get_conf (fma_namespace, "routines_path", fma_routine_path) == FALSE) {
770: fprintf (stderr, "fmadm: cannot determine routine path for namespace %s\n", fma_namespace);
771: return 1;
772: }
773:
774: if (get_conf (fma_namespace, "globals_path", fma_global_path) == FALSE) {
775: fprintf (stderr, "fmadm: cannot determine global path for namespace %s\n", fma_namespace);
776: return 1;
777: }
778:
779: if (get_conf ("SYSTEM", "globals_path", fma_pct_global_path) == FALSE) {
780: fprintf (stderr, "fmadm: cannot determine %% global path for namespace %s\n", "SYSTEM");
781: return 1;
782: }
783:
784: if (get_conf ("SYSTEM", "routines_path", fma_pct_routine_path) == FALSE) {
785: fprintf (stderr, "fmadm: cannot determine %% routine path for namespace %s\n", "SYSTEM");
786: return 1;
787: }
788:
789: if (get_conf ("SYSTEM", "journal_file", fma_journal_path) == FALSE) {
790: strcpy (fma_journal_path, "");
791: }
792:
793: if (get_conf ("SYSTEM", "journal_cut_threshold", fma_journal_cut_threshold) == FALSE) {
794: strcpy (fma_journal_cut_threshold, "1073741824");
795: }
796:
797: strcpy (gloplib, fma_pct_global_path);
798: stcnv_c2m (gloplib);
799:
800: strcpy (glopath, fma_global_path);
801: stcnv_c2m (glopath);
802:
803: snprintf (fma_prompt, STRLEN - 1, "fmadm [%s]> ", fma_namespace);
804:
805: }
806: else if (strcmp (args[0], "maintenance") == 0) {
807: if (strcmp (args[1], "on") == 0) {
808: shm_config->hdr->maintenance_mode = 1;
809: break;
810: }
811: else if (strcmp (args[1], "off") == 0) {
812: shm_config->hdr->maintenance_mode = 0;
813: break;
814: }
815: else {
816: printf ("fmadm: syntax error\n");
817: }
818:
819: printf ("fmadm: syntax error\n");
820:
821: }
822: else {
823: printf ("fmadm: syntax error\n");
824: break;
825: }
826:
827: break;
828:
829:
830: case FMAC_SHOW:
831: printf ("Namespace: %s\n", fma_namespace);
832: printf ("Routine Path: %s\n", fma_routine_path);
833: printf ("%%-Routine Path: %s\n", fma_pct_routine_path);
834: printf ("Global Path: %s\n", fma_global_path);
835: printf ("%%-Global Path: %s\n", fma_pct_global_path);
836: printf ("Journal File: %s\n", fma_journal_path);
1.5 snw 837: printf ("Journal Cut Threshold: %s bytes\n", fma_journal_cut_threshold);
1.1 snw 838: break;
839:
840: case FMAC_EXIT:
841: fmadm_exit (0);
842: break;
843:
844:
845: default:
846: printf ("fmadm: '%s' is not a valid fmadm command\n", cmdt);
847: break;
848:
849: }
850: }
851:
852: #endif
853:
854: }
855:
856: void fmadm_exit (int retval)
857: {
858: locktab_unlock_all ();
859: job_remove (pid);
860:
861: shm_exit ();
862:
863: exit (retval);
864: }
865:
866: int fmadm_usage (void)
867: {
868:
869: fprintf (stdout, "\nusage: fmadm <action> <object> [-e=<environment] [-n=<namespace>] [OPTIONS]\n");
870: fprintf (stdout, " fmadm configure\n");
871: fprintf (stdout, " fmadm reconfigure\n");
872: /* fprintf (stdout, " fmadm checkperms\n\n"); */
873:
874: fprintf (stdout, " <action> can be one of:\n");
875: fprintf (stdout, " list, examine, verify, compact, repair, create, remove,\n");
1.21 snw 876: fprintf (stdout, " import, export, backup, restore, migrate, edit, start,\n");
877: fprintf (stdout, " stop, restart\n\n");
1.1 snw 878:
879: fprintf (stdout, " <object> can be one of:\n");
1.24 ! snw 880: fprintf (stdout, " lock, journal, namespace, global, routine, job,\n");
1.21 snw 881: fprintf (stdout, " environment\n\n");
1.1 snw 882:
883: fprintf (stdout, " Not all actions are valid for all objects. Please see the FreeM manual\n");
884: fprintf (stdout, " for details on fmadm usage and options.\n\n");
885:
886: return 1;
887:
888: } /* fmadm_usage() */
889:
890: int fm_list (short object, int optc, char **options)
891: {
892:
893: switch (object) {
894:
895: case OBJ_LOCK:
896: return fma_locks_list (optc, options);
897:
898: case OBJ_ROUTINE:
899: return fma_routines_list (optc, options);
900:
901: case OBJ_GLOBAL:
902: return fma_globals_list (optc, options);
903:
904: case OBJ_JOB:
905: return fma_jobs_list (optc, options);
906:
907: default:
908: fprintf (stderr, "fmadm: 'list' is an invalid action for '%s'\n", obj_str);
909: return 1;
910:
911: }
912:
913:
914: } /* fm_list() */
915:
916: int fm_examine (short object, int optc, char **options)
917: {
918:
919: switch (object) {
920:
921: case OBJ_ROUTINE:
922: return fma_routines_examine (optc, options);
923:
924: case OBJ_GLOBAL:
925: return fma_globals_examine (optc, options);
926:
927: case OBJ_JOB:
928: return fma_jobs_examine (optc, options);
929:
930: case OBJ_JOURNAL:
931: return fma_journals_examine (optc, options);
932:
933: default:
934: fprintf (stderr, "fmadm: 'examine' is an invalid action for '%s'\n", obj_str);
935: return 1;
936:
937: }
938:
939: } /* fm_examine() */
940:
941: int fm_verify (short object, int optc, char **options)
942: {
943:
944: switch (object) {
945:
946: case OBJ_GLOBAL:
947: return fma_globals_verify (optc, options);
948:
949: default:
950: fprintf (stderr, "fmadm: 'examine' is an invalid action for '%s'\n", obj_str);
951: return 1;
952:
953: }
954:
955: } /* fm_verify() */
956:
957: int fm_compact (short object, int optc, char **options)
958: {
959:
960: switch (object) {
961:
962: default:
963: fprintf (stderr, "fmadm: 'compact' is an invalid action for '%s'\n", obj_str);
964: return 1;
965:
966: }
967:
968: } /* fm_compact() */
969:
970: int fm_repair (short object, int optc, char **options)
971: {
972:
973: switch (object) {
974:
975: default:
976: fprintf (stderr, "fmadm: 'repair' is an invalid action for '%s'\n", obj_str);
977: return 1;
978:
979: }
980:
981: } /* fm_repair() */
982:
983: int fm_create (short object, int optc, char **options)
984: {
985:
986: switch (object) {
987:
988: default:
989: fprintf (stderr, "fmadm: 'create' is an invalid action for '%s'\n", obj_str);
990: return 1;
991:
992: }
993: } /* fm_create() */
994:
995: int fm_remove (short object, int optc, char **options)
996: {
997:
998: switch (object) {
999:
1000: case OBJ_JOB:
1001: return fma_jobs_remove (optc, options);
1002:
1003: case OBJ_LOCK:
1004: return fma_locks_remove (optc, options);
1005:
1006: case OBJ_ROUTINE:
1007: return fma_routines_remove (optc, options);
1008:
1009: case OBJ_GLOBAL:
1010: return fma_globals_remove (optc, options);
1011:
1012: default:
1013: fprintf (stderr, "fmadm: 'remove' is an invalid action for '%s'\n", obj_str);
1014: return 1;
1015:
1016: }
1017:
1018: } /* fm_remove() */
1019:
1020: int fm_import (short object, int optc, char **options)
1021: {
1022:
1023: switch (object) {
1024:
1025: case OBJ_ROUTINE:
1026: return fma_routines_import (optc, options);
1027:
1028: default:
1029: fprintf (stderr, "fmadm: 'import' is an invalid action for '%s'\n", obj_str);
1030: return 1;
1031:
1032: }
1033:
1034: } /* fm_import() */
1035:
1036: int fm_export (short object, int optc, char **options)
1037: {
1038:
1039: switch (object) {
1040:
1041: case OBJ_ROUTINE:
1042: return fma_routines_export (optc, options);
1043:
1044: default:
1045: fprintf (stderr, "fmadm: 'export' is an invalid action for '%s'\n", obj_str);
1046: return 1;
1047:
1048: }
1049:
1050: } /* fm_export() */
1051:
1052: int fm_backup (short object, int optc, char **options)
1053: {
1054:
1055: switch (object) {
1056:
1057: case OBJ_ROUTINE:
1058: return fma_routines_backup (optc, options);
1059:
1060: default:
1061: fprintf (stderr, "fmadm: 'backup' is an invalid action for '%s'\n", obj_str);
1062: return 1;
1063:
1064: }
1065:
1066: } /* fm_backup() */
1067:
1068: int fm_restore (short object, int optc, char **options)
1069: {
1070:
1071: switch (object) {
1072:
1073: case OBJ_JOURNAL:
1074: return fma_journals_restore (optc, options);
1075:
1076: default:
1077: fprintf (stderr, "fmadm: 'restore' is an invalid action for '%s'\n", obj_str);
1078: return 1;
1079:
1080: }
1081:
1082: } /* fm_restore() */
1083:
1084: int fm_migrate (short object, int optc, char **options)
1085: {
1086:
1087: switch (object) {
1088:
1089: default:
1090: fprintf (stderr, "fmadm: 'migrate' is an invalid action for '%s'\n", obj_str);
1091: return 1;
1092:
1093: }
1094:
1095: } /* fm_migrate() */
1096:
1097: int fm_edit (short object, int optc, char **options)
1098: {
1099:
1100: switch (object) {
1101:
1102: case OBJ_ROUTINE:
1103: return fma_routines_edit (optc, options);
1104:
1.18 snw 1105: case OBJ_GLOBAL:
1.1 snw 1106: return fma_globals_edit (optc, options);
1.18 snw 1107:
1.1 snw 1108: default:
1109: fprintf (stderr, "fmadm: 'edit' is an invalid action for '%s'\n", obj_str);
1110: return 1;
1111:
1112: }
1113:
1114: } /* fm_edit() */
1115:
1.22 snw 1116: long fm_get_pid (char *env)
1117: {
1118: char pid_file[4096];
1119: char tmp_pid[255];
1120: long res;
1121:
1122: FILE *fp;
1123:
1124: snprintf (pid_file, 4095, "%s/freem/run/%s.pid", LOCALSTATEDIR, env);
1125:
1126: if ((fp = fopen (pid_file, "r")) != NULL) {
1127: if (fgets (tmp_pid, 255, fp)) {
1128: fclose (fp);
1129: return atol (tmp_pid);
1130: }
1131: else {
1132: fclose (fp);
1133: return -1;
1134: }
1135: }
1136: else {
1137: return -1;
1138: }
1139: }
1140:
1.21 snw 1141: int fm_daemonctl (short action, short object, int optc, char **options)
1142: {
1143: FILE *ef;
1144: char *envlist;
1145: char env[255];
1146: char line[255];
1147: char tmps[255];
1148: char *cur_env;
1149: char cmd[4096];
1.23 snw 1150: char verb[40];
1.21 snw 1151: char e_user[255];
1152: char e_grp[255];
1153: char e_ena[10];
1154: char basecmd[255];
1155: char *savptr;
1156: int result;
1.22 snw 1157: long epid;
1.21 snw 1158:
1159: #if !defined(__OS2__)
1160: snprintf (basecmd, 254, "%s/bin/freem", PREFIX);
1161: #else
1162: snprintf (basecmd, 254, "%s/bin/freemd.exe", PREFIX);
1163: #endif
1164:
1165: switch (action) {
1166: case ACT_START:
1167: sprintf (verb, "starting");
1168: break;
1169: case ACT_STOP:
1170: sprintf (verb, "stopping");
1171: break;
1172: case ACT_RESTART:
1173: sprintf (verb, "restarting");
1174: break;
1.23 snw 1175: case ACT_STATUS:
1176: sprintf (verb, "checking status of");
1177: break;
1.21 snw 1178: }
1179:
1180: if (optc) {
1181: /* environment list specified as command-line argument */
1.23 snw 1182: envlist = (char *) malloc (sizeof (char) * BIGSTR);
1183: NULLPTRCHK(envlist,"fm_daemonctl");
1184:
1185: strcpy (envlist, options[0]);
1.21 snw 1186: }
1187: else {
1188: /* no environment specified; do 'action' for all environments */
1189: envlist = (char *) malloc (sizeof (char) * BIGSTR);
1190: NULLPTRCHK(envlist,"fm_daemonctl");
1191:
1192: ef = fopen (env_config_file, "r");
1193:
1194: while (fgets (line, 254, ef)) {
1195: if (line[0] == '[') {
1196: strncpy (env, &(line[1]), 255);
1197: env[strlen (env) - 2] = '\0';
1198: snprintf (tmps, 255, "%s,", env);
1199: strncat (envlist, tmps, BIGSTR - 1);
1200: }
1201: }
1202: envlist[strlen (envlist) - 1] = '\0';
1203:
1204: fclose (ef);
1205: }
1206:
1207: savptr = envlist;
1208: cur_env = strtok_r (envlist, ",", &savptr);
1209: do {
1210: result = read_profile_string (env_config_file, cur_env, "enabled", e_ena);
1211: if (result == FALSE || strcmp (e_ena, "true") == 0) {
1212:
1213: result = read_profile_string (env_config_file, cur_env, "user", e_user);
1214: if (result == FALSE) {
1215: strcpy (e_user, "freem");
1216: }
1217: result = read_profile_string (env_config_file, cur_env, "group", e_grp);
1218: if (result == FALSE) {
1219: strcpy (e_grp, "freem");
1220: }
1.22 snw 1221:
1.21 snw 1222: printf ("fmadm: %s environment %s\n", verb, cur_env);
1223:
1224: switch (action) {
1225: case ACT_START:
1226: #if !defined(__OS2__)
1227: snprintf (cmd, 4095, "%s -d -e %s -u %s -g %s", basecmd, cur_env, e_user, e_grp);
1228: #else
1229: sprintf (cmd, 4095, "%s -d -k -e %s -u %s -g %s", basecmd, cur_env, e_user, e_grp);
1.22 snw 1230: #endif
1231: system (cmd);
1.21 snw 1232: break;
1233: case ACT_STOP:
1.22 snw 1234: epid = fm_get_pid (cur_env);
1235: if (epid > -1) {
1236: fprintf (stderr, "fmadm: stopping environment daemon pid %d\n", epid);
1237: kill (epid, SIGINT);
1238: kill (epid, SIGTERM);
1239: }
1240: else {
1241: fprintf (stderr, "fmadm: could not obtain environment daemon pid\n");
1242: }
1243:
1244: break;
1.21 snw 1245: case ACT_RESTART:
1.22 snw 1246: epid = fm_get_pid (cur_env);
1247: if (epid > -1) {
1248: fprintf (stderr, "fmadm: stopping environment daemon pid %d\n", epid);
1249: kill (epid, SIGINT);
1250: kill (epid, SIGTERM);
1251: }
1252: else {
1253: fprintf (stderr, "fmadm: could not obtain environment daemon pid\n");
1254: }
1255: fprintf (stderr, "fmadm: waiting 2 seconds\n");
1256: sleep (2);
1257: fprintf (stderr, "fmadm: starting environment %s\n", cur_env);
1258: #if !defined(__OS2__)
1259: snprintf (cmd, 4095, "%s -d -e %s -u %s -g %s", basecmd, cur_env, e_user, e_grp);
1260: #else
1261: sprintf (cmd, 4095, "%s -d -k -e %s -u %s -g %s", basecmd, cur_env, e_user, e_grp);
1262: #endif
1263: system (cmd);
1264:
1265:
1.21 snw 1266: break;
1.23 snw 1267: case ACT_STATUS:
1268: epid = fm_get_pid (cur_env);
1269: if (epid > -1) {
1270: fprintf (stderr, " - %s environment daemon running as pid %d\n", cur_env, epid);
1271: }
1272: else {
1273: fprintf (stderr, " - %s environment daemon does not appear to be running\n", cur_env);
1274: }
1.22 snw 1275: }
1.21 snw 1276: }
1277: else {
1278: printf ("fmadm: %s environment is disabled; skipping\n", cur_env);
1279: }
1280: } while ((cur_env = strtok_r (NULL, ",", &savptr)) != NULL);
1281:
1282: free (envlist);
1283: exit (0);
1284:
1285: } /* fm_daemonctl() */
1286:
1.1 snw 1287: void fm_checkperms(void)
1288: {
1289:
1290: } /* fm_checkperms() */
1291:
1292:
1293: void fm_reconfigure(void)
1294: {
1295: char config_backup[4096];
1296: char vers[4096];
1297:
1298: int retval;
1299:
1300: if (geteuid () != 0) {
1301: fprintf (stderr, "fmadm: not superuser\n");
1302: exit (1);
1303: }
1304:
1305: snprintf (config_backup, 4095, "%s.orig", config_file);
1306:
1307: fprintf (stderr, "fmadm: reconfiguring FreeM with system defaults for %s...\n", FREEM_VERSION_CSTR);
1308: fprintf (stderr, "fmadm: backing up %s to %s...\t", config_file, config_backup);
1309:
1310: retval = rename (config_file, config_backup);
1311:
1312: if (retval == 0) {
1.18 snw 1313: fprintf (stderr, "[OK]\n");
1.1 snw 1314:
1315: fm_configure ();
1316:
1317: fprintf (stderr, "\n\nYou may wish to edit %s if site-specific changes were made to the original FreeM configuration.\n", config_file);
1318: exit (0);
1319: }
1320: else {
1321: fprintf (stderr, "[FAIL (%s)]\n", strerror (errno));
1322: exit (1);
1323: }
1324:
1325: } /* fm_reconfigure() */
1326:
1327:
1328: void fm_configure (void)
1329: {
1.21 snw 1330: char rundir[4096];
1.19 snw 1331: char varbase[4096];
1.1 snw 1332: char sysrtn[4096];
1333: char sysgbl[4096];
1334: char usrrtn[4096];
1335: char usrgbl[4096];
1336:
1.23 snw 1337: char jnldir[4096];
1.1 snw 1338: char jnlfile[4096];
1339: char jnlmode[4];
1340: char jnlhostid[4096];
1341: char jnlcut[4096];
1342: char hostid[4096];
1343:
1344: char confbase[4096];
1345: char envbase[4096];
1346:
1347: char nsbase[4096];
1348:
1349: char buf[4096];
1350: FILE *fp;
1351:
1352: struct stat etcstat;
1353: int stat_result;
1.19 snw 1354:
1355: DIR *dir;
1356: struct dirent *ent;
1357: char src_dir[4096];
1358: char dest_dir[4096];
1359:
1.20 snw 1360: char *username = env_user;
1361: char *groupname = env_group;
1362:
1363: #if !defined(__OS2__)
1.24 ! snw 1364: if (geteuid () != 0) {
! 1365: fprintf (stderr, "fmadm: not superuser\n");
! 1366: exit (1);
! 1367: }
! 1368:
1.19 snw 1369: struct group *d_grp;
1370: struct passwd *d_user;
1371: gid_t d_gid;
1.20 snw 1372: uid_t d_uid;
1.19 snw 1373:
1.20 snw 1374: if ((d_grp = getgrnam (groupname)) == NULL) {
1375: fprintf (stderr, "fmadm: '%s' group must exist before configuring\n", groupname);
1376: exit (1);
1377: }
1378: d_gid = d_grp->gr_gid;
1379:
1380: if ((d_user = getpwnam (username)) == NULL) {
1381: fprintf (stderr, "fmadm: '%s' user must exist before configuring\n", username);
1382: exit (1);
1383: }
1384: d_uid = d_user->pw_uid;
1385: #endif
1.23 snw 1386:
1.19 snw 1387: snprintf (varbase, 4095, "%s/freem", LOCALSTATEDIR);
1.21 snw 1388: snprintf (rundir, 4095, "%s/freem/run", LOCALSTATEDIR);
1.1 snw 1389: snprintf (sysrtn, 4095, "%s/freem/%s/SYSTEM/routines", LOCALSTATEDIR, fma_environment);
1390: snprintf (sysgbl, 4095, "%s/freem/%s/SYSTEM/globals", LOCALSTATEDIR, fma_environment);
1391: snprintf (usrrtn, 4095, "%s/freem/%s/USER/routines", LOCALSTATEDIR, fma_environment);
1392: snprintf (usrgbl, 4095, "%s/freem/%s/USER/globals", LOCALSTATEDIR, fma_environment);
1.23 snw 1393: snprintf (jnldir, 4095, "%s/freem/%s/journals", LOCALSTATEDIR, fma_environment);
1394: snprintf (jnlfile, 4095, "%s/freem_journal_%s.dat", jnldir, fma_environment);
1.1 snw 1395: snprintf (jnlmode, 3, "on");
1396: snprintf (jnlhostid, 4095, "DEFAULT");
1397: snprintf (jnlcut, 4095, "4294967000");
1398:
1399: if (geteuid () != 0) {
1400: fprintf (stderr, "fmadm: not superuser\n");
1401: exit (1);
1402: }
1403:
1404: if (file_exists (config_file)) {
1.18 snw 1405: fprintf (stderr, "fmadm: '%s' already exists; running fmadm reconfigure instead\n", config_file);
1406: fm_reconfigure ();
1407: return;
1.1 snw 1408: }
1409:
1410: gethostname (hostid, 4095);
1411: uuid_v4 (buf);
1412:
1413: snprintf (jnlhostid, 4095, "%s:%s", hostid, buf);
1414: snprintf (confbase, 4095, "%s/freem", SYSCONFDIR);
1415: snprintf (envbase, 4095, "%s/freem/%s", SYSCONFDIR, fma_environment);
1416: snprintf (nsbase, 4095, "%s/freem/%s", LOCALSTATEDIR, fma_environment);
1417:
1.9 snw 1418: #if defined(__OS2__)
1419: {
1420: char srcfile[PATHLEN];
1.11 snw 1421: char dstfile[PATHLEN];
1422:
1.9 snw 1423: snprintf (srcfile, PATHLEN, "%s/bin/freem.exe", PREFIX);
1424: snprintf (dstfile, PATHLEN, "%s/bin/freemd.exe", PREFIX);
1.11 snw 1425:
1426: unlink (dstfile);
1.9 snw 1427:
1.10 snw 1428: fprintf (stderr, "fmadm: running on OS/2; will copy %s to %s\n", srcfile, dstfile);
1.12 snw 1429:
1.16 snw 1430: if (DosCopy (srcfile, dstfile, 1) != 0) {
1.9 snw 1431: fprintf (stderr, "fmadm: fatal error copying %s to %s\n", srcfile, dstfile);
1432: exit (1);
1433: }
1.13 snw 1434:
1435: chmod (dstfile, 0755);
1.9 snw 1436: }
1437: #else
1438: fprintf (stderr, "fmadm: not running on OS/2\n");
1439: #endif
1440:
1.1 snw 1441: printf ("\nFreeM Initial Configuration\n");
1442: printf ("---------------------------\n\n");
1443:
1444: printf ("This utility will create the initial configuration file for ");
1.20 snw 1445: printf ("FreeM environment '%s' (owned by %s:%s) in '%s'.\n\n", fma_environment, username, groupname, config_file);
1.9 snw 1446:
1.1 snw 1447: /* check for existence of needed directories */
1448: if (stat (SYSCONFDIR, &etcstat) == -1) {
1.23 snw 1449: fprintf (stderr, "fmadm: creating %s [SYSCONFDIR]\n", SYSCONFDIR);
1.19 snw 1450: mkdir (SYSCONFDIR, 0775);
1.20 snw 1451: set_permissions (SYSCONFDIR, username, groupname, 0775);
1.1 snw 1452: }
1453:
1454: if (stat (confbase, &etcstat) == -1) {
1.23 snw 1455: fprintf (stderr, "fmadm: creating %s [confbase]\n", confbase);
1.19 snw 1456: mkdir (confbase, 0775);
1.20 snw 1457: set_permissions (confbase, username, groupname, 0775);
1.1 snw 1458: }
1459:
1.19 snw 1460: if (stat (varbase, &etcstat) == -1) {
1.23 snw 1461: fprintf (stderr, "fmadm: creating %s [varbase]\n", varbase);
1.19 snw 1462: mkdir (varbase, 0775);
1.20 snw 1463: set_permissions (varbase, username, groupname, 0775);
1.19 snw 1464: }
1.21 snw 1465:
1.23 snw 1466: if (stat (envbase, &etcstat) == -1) {
1467: fprintf (stderr, "fmadm: creating %s [envbase]\n", envbase);
1468: mkdir (envbase, 0775);
1469: set_permissions (envbase, username, groupname, 0775);
1470: }
1471:
1.21 snw 1472: if (stat (rundir, &etcstat) == -1) {
1.23 snw 1473: fprintf (stderr, "fmadm: creating %s [rundir]\n", rundir);
1.21 snw 1474: mkdir (rundir, 0777);
1475: chmod (rundir, 0777);
1476: }
1477:
1.1 snw 1478: if (stat (nsbase, &etcstat) == -1) {
1.23 snw 1479: fprintf (stderr, "fmadm: creating %s [nsbase]\n", nsbase);
1.19 snw 1480: mkdir (nsbase, 0775);
1.20 snw 1481: set_permissions (nsbase, username, groupname, 0775);
1.1 snw 1482: }
1483:
1.23 snw 1484: if (stat (jnldir, &etcstat) == -1) {
1485: fprintf (stderr, "fmadm: creating %s [jnldir]\n", jnldir);
1486: mkdir (jnldir, 0775);
1487: set_permissions (jnldir, username, groupname, 0775);
1488: }
1489:
1490:
1.19 snw 1491: snprintf (src_dir, 4095, "%s/freem/mlib", DATADIR);
1492: snprintf (dest_dir, 4095, "%s/freem/%s/SYSTEM/routines", LOCALSTATEDIR, fma_environment);
1493:
1494: fprintf (stderr, "fmadm: populating new environment '%s'\n", fma_environment);
1495:
1496: snprintf (buf, 4095, "%s/freem/%s/SYSTEM", LOCALSTATEDIR, fma_environment);
1497: mkdir (buf, 0775);
1.20 snw 1498: set_permissions (buf, username, groupname, 0775);
1.19 snw 1499:
1500: snprintf (buf, 4095, "%s/freem/%s/USER", LOCALSTATEDIR, fma_environment);
1501: mkdir (buf, 0775);
1.20 snw 1502: set_permissions (buf, username, groupname, 0775);
1.19 snw 1503:
1504: snprintf (buf, 4095, "%s/freem/%s/SYSTEM/routines", LOCALSTATEDIR, fma_environment);
1505: mkdir (buf, 0775);
1.20 snw 1506: set_permissions (buf, username, groupname, 0775);
1.19 snw 1507:
1508: snprintf (buf, 4095, "%s/freem/%s/USER/globals", LOCALSTATEDIR, fma_environment);
1509: mkdir (buf, 0775);
1.20 snw 1510: set_permissions (buf, username, groupname, 0775);
1.19 snw 1511:
1512: snprintf (buf, 4095, "%s/freem/%s/SYSTEM/globals", LOCALSTATEDIR, fma_environment);
1513: mkdir (buf, 0775);
1.20 snw 1514: set_permissions (buf, username, groupname, 0775);
1.19 snw 1515:
1516: snprintf (buf, 4095, "%s/freem/%s/USER/routines", LOCALSTATEDIR, fma_environment);
1517: mkdir (buf, 0775);
1.20 snw 1518: set_permissions (buf, username, groupname, 0775);
1.19 snw 1519:
1520: fprintf (stderr, "fmadm: copying routines from '%s' to '%s'...\n", src_dir, dest_dir);
1.1 snw 1521:
1.19 snw 1522: if ((dir = opendir (src_dir)) == NULL) {
1523: fprintf (stderr, "\nfmadm: could not open source directory %s\n", src_dir);
1524: exit (1);
1525: }
1526:
1527: while ((ent = readdir (dir)) != NULL) {
1528: char infile[4096];
1529: char outfile[4096];
1.1 snw 1530:
1.19 snw 1531: if ((strcmp (ent->d_name, ".") != 0) && (strcmp (ent->d_name, "..") != 0)) {
1532:
1533: fprintf (stderr, "\t%s\n", ent->d_name);
1534:
1535: snprintf (infile, 4095, "%s/%s", src_dir, ent->d_name);
1536: snprintf (outfile, 4095, "%s/%s", dest_dir, ent->d_name);
1.1 snw 1537:
1.19 snw 1538: #if !defined(__OS2__)
1539: if (cp (outfile, infile) != 0) {
1540: fprintf (stderr, "fmadm: failure copying %s to %s\n", infile, outfile);
1541: }
1.20 snw 1542: set_permissions (outfile, username, groupname, 0755);
1.19 snw 1543: #else
1544: if (DosCopy (infile, outfile, 1) != 0) {
1545: fprintf (stderr, "fmadm: failure copying %s to %s\n", infile, outfile);
1.1 snw 1546: }
1.19 snw 1547: #endif
1.1 snw 1548:
1549: }
1550:
1551: }
1.20 snw 1552:
1553: fp = fopen (env_config_file, "a+");
1554:
1555: fprintf (stderr, "Creating %s... ", env_config_file);
1556:
1557: snprintf (buf, 4095, "[%s]", fma_environment);
1558: fm_write (fp, buf);
1559:
1560: snprintf (buf, 4095, "user=%s", env_user);
1561: fm_write (fp, buf);
1562:
1563: snprintf (buf, 4095, "group=%s", env_group);
1564: fm_write (fp, buf);
1.21 snw 1565:
1566: snprintf (buf, 4095, "enabled=true");
1567: fm_write (fp, buf);
1.20 snw 1568:
1569: snprintf (buf, 4095, "env_path=%s/freem/%s", LOCALSTATEDIR, fma_environment);
1570: fm_write (fp, buf);
1571:
1572: fclose (fp);
1573: fprintf (stderr, "[OK]\n");
1.1 snw 1574:
1575: fp = fopen (config_file, "a+");
1576:
1.20 snw 1577: fprintf (stderr, "Creating %s... ", config_file);
1.1 snw 1578:
1579: snprintf (buf, 4095, "[SYSTEM]");
1580: fm_write (fp, buf);
1581:
1582: snprintf (buf, 4095, "root=%s/freem/%s/SYSTEM", LOCALSTATEDIR, fma_environment);
1583: fm_write (fp, buf);
1584:
1585: snprintf (buf, 4095, "routines_path=%s", sysrtn);
1586: fm_write (fp, buf);
1587:
1588: snprintf (buf, 4095, "globals_path=%s", sysgbl);
1589: fm_write (fp, buf);
1590:
1591: snprintf (buf, 4095, "journal_file=%s", jnlfile);
1592: fm_write (fp, buf);
1593:
1594: snprintf (buf, 4095, "journal_mode=%s", jnlmode);
1595: fm_write (fp, buf);
1596:
1597: snprintf (buf, 4095, "journal_host_id=%s", jnlhostid);
1598: fm_write (fp, buf);
1599:
1600: snprintf (buf, 4095, "journal_cut_threshold=%s", jnlcut);
1601: fm_write (fp, buf);
1602:
1603: snprintf (buf, 4095, "zdate_format=%%x");
1604: fm_write (fp, buf);
1605:
1606: snprintf (buf, 4095, "ztime_format=%%X");
1607: fm_write (fp, buf);
1608:
1609: snprintf (buf, 4095, "\n[USER]");
1610: fm_write (fp, buf);
1611:
1612: snprintf (buf, 4095, "root=%s/freem/%s/USER", LOCALSTATEDIR, fma_environment);
1613: fm_write (fp, buf);
1614:
1615: snprintf (buf, 4095, "routines_path=%s", usrrtn);
1616: fm_write (fp, buf);
1617:
1618: snprintf (buf, 4095, "globals_path=%s", usrgbl);
1619: fm_write (fp, buf);
1.20 snw 1620:
1.1 snw 1621: fclose (fp);
1.20 snw 1622: set_permissions (config_file, username, groupname, 0755);
1623: fprintf (stderr, "[OK]\n");
1.1 snw 1624:
1625: printf ("FreeM initial configuration is complete.\n\n");
1626:
1627: printf (" USER globals: %s\n", usrgbl);
1628: printf (" USER routines: %s\n", usrrtn);
1629: printf (" SYSTEM globals: %s\n", sysgbl);
1630: printf (" SYSTEM routines: %s\n", sysrtn);
1631: printf (" After-image journal: %s [%s]\n", jnlfile, jnlmode);
1632: printf (" Journal cut threshold: %s bytes\n", jnlcut);
1633: printf (" Distributed journaling host ID: %s\n", jnlhostid);
1634:
1635:
1636: } /* fm_configure */
1637:
1.20 snw 1638: void set_permissions(char *path, char *user, char *grp, int mode)
1639: {
1640:
1641: #if !defined(__OS2__)
1642: struct group *d_grp;
1643: struct passwd *d_user;
1644: gid_t d_gid;
1645: uid_t d_uid;
1646: #endif
1647:
1648:
1649: #if !defined(__OS2__)
1650: if ((d_grp = getgrnam (grp)) == NULL) {
1651: fprintf (stderr, "fmadm: '%s' group must exist before configuring\n", grp);
1652: exit (1);
1653: }
1654: d_gid = d_grp->gr_gid;
1655:
1656: if ((d_user = getpwnam (user)) == NULL) {
1657: fprintf (stderr, "fmadm: '%s' user must exist before configuring\n", user);
1658: exit (1);
1659: }
1660: d_uid = d_user->pw_uid;
1661:
1662: if (chown (path, d_uid, d_gid) != 0) {
1663: fprintf (stderr, "fmadm: error setting ownership on %s\n", path);
1664: exit (1);
1665: }
1666: #endif
1667:
1668: if (chmod (path, mode) != 0) {
1669: fprintf (stderr, "fmadm: error setting permissions on %s to %d\n", path, mode);
1670: exit (1);
1671: }
1672:
1673: }
1674:
1.1 snw 1675: void fm_write (FILE *file, char *buf)
1676: {
1677: fprintf (file, "%s\n", buf);
1678: }
1679:
1680: void fm_sig_attach (int sig, void *handler)
1681: {
1682: struct sigaction act;
1683:
1684: act.sa_handler = handler;
1685: sigaction (sig, &act, NULL);
1686:
1687: }
1688:
1689: void fm_sig_init (void)
1690: {
1691: sig_attach (SIGINT, &fm_on_sigint);
1692: sig_attach (SIGTERM, &fm_on_sigterm);
1693: }
1694:
1695: void fm_on_sigint (void)
1696: {
1697: fprintf (stderr, "\nfmadm: caught SIGINT\n");
1698: fmadm_exit (0);
1699: }
1700:
1701: void fm_on_sigterm (void)
1702: {
1703: fprintf (stderr, "\nfmadm: caught SIGTERM\n");
1704: fmadm_exit (0);
1705: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>