Annotation of freem/src/init.c, revision 1.9
1.1 snw 1: /*
1.9 ! snw 2: * $Id: init.c,v 1.8 2025/03/24 04:44:55 snw Exp $
1.1 snw 3: * FreeM initialization
4: *
5: *
1.5 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.6 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.7 snw 26: * $Log: init.c,v $
1.9 ! snw 27: * Revision 1.8 2025/03/24 04:44:55 snw
! 28: * Don't call ttyname on OS/2
! 29: *
1.8 snw 30: * Revision 1.7 2025/03/24 04:05:36 snw
31: * Replace crlf with frm_crlf to avoid symbol conflict with readline on OS/2
32: *
1.7 snw 33: * Revision 1.6 2025/03/09 19:14:25 snw
34: * First phase of REUSE compliance and header reformat
35: *
1.6 snw 36: *
37: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
38: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 39: **/
40:
41: #include <stdio.h>
42: #include <stdlib.h>
43: #include <string.h>
44: #include <unistd.h>
45: #include <limits.h>
46: #include <sys/types.h>
47: #include <sys/stat.h>
48: #include <pwd.h>
49: #include <time.h>
50: #include <errno.h>
51: #include <sys/ioctl.h>
1.2 snw 52:
1.4 snw 53: #if !defined(__APPLE__) && !defined(__gnu_hurd__) && !defined(EMSCRIPTEN)
54: # if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__AMIGA)
55: # include <termios.h>
56: # if !defined(__AMIGA)
57: # define TCGETA TIOCGETA
58: # define TCSETA TIOCSETA
59: # endif
60: # define termio termios
61: # else
62: # if !defined(MSDOS)
63: # include <termio.h>
64: # endif
65: # endif
1.2 snw 66: #else
67: # include <termios.h>
68: #endif
1.1 snw 69:
70: #include "config.h"
71:
72: #if defined(HAVE_MWAPI_MOTIF)
73: # include <Xm/Xm.h>
74: #endif
75:
76: #include "mpsdef.h"
77: #include "transact.h"
78: #include "namespace.h"
79: #include "events.h"
80: #include "mdebug.h"
81: #include "shmmgr.h"
82: #include "locktab.h"
83: #include "jobtab.h"
84: #include "datatypes.h"
85: #include "objects.h"
86:
87: #ifdef HAVE_LIBREADLINE
88: # if defined(HAVE_READLINE_READLINE_H)
89: # include <readline/readline.h>
90: # elif defined(HAVE_READLINE_H)
91: # include <readline.h>
92: # else /* !defined(HAVE_READLINE_H) */
93: extern char *readline ();
94: # endif /* !defined(HAVE_READLINE_H) */
95: char *cmdline = NULL;
96: #else /* !defined(HAVE_READLINE_READLINE_H) */
97: /* no readline */
98: #endif /* HAVE_LIBREADLINE */
99:
100: #ifdef HAVE_READLINE_HISTORY
101: # if defined(HAVE_READLINE_HISTORY_H)
102: # include <readline/history.h>
103: # elif defined(HAVE_HISTORY_H)
104: # include <history.h>
105: # else /* !defined(HAVE_HISTORY_H) */
106: extern void add_history ();
107: extern int write_history ();
108: extern int read_history ();
109: # endif /* defined(HAVE_READLINE_HISTORY_H) */
110: /* no history */
111: #endif /* HAVE_READLINE_HISTORY */
112:
113: #if defined(HAVE_WIRINGPI_H)
114: # include <wiringPi.h>
115: #endif
116:
117: #if !defined(PATH_MAX) && defined(_SCO_DS)
118: # define PATH_MAX 4096
119: #endif
120:
121: #if !defined(PATH_MAX) && defined(__gnu_hurd__)
122: # define PATH_MAX 1024
123: #endif
124:
125: #if !defined(PATH_MAX) && defined(__sun__)
126: # include <limits.h>
127: #endif
128:
129: #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
130: # include <sys/syslimits.h>
131: #endif
132:
133: #define SHMKEY 0x990120
134: #define SHMSIZ 1048576
135:
136: void init_process(void);
137: void init_devtable(void);
138: void init_signals(void);
139: void init_timezone(void);
140: void init_freem_path(void);
141:
142: #if defined(HAVE_LIBREADLINE)
143: void init_readline(void);
144: #endif
145:
146: void init_execution_context(void);
147: void init_io(void);
148: void init_random_number(void);
149: void init_ztrap(void);
150: void init_ssvn(void);
151: void init_terminal(void);
152: void init_estack(void);
153:
154: void init_mwapi(void);
155:
156: short init (char *namespace_name)
157: {
158: short retval;
159:
160: init_process ();
161: init_devtable ();
162: init_signals ();
163: init_freem_path ();
164: init_timezone ();
165:
166: #if defined(HAVE_LIBREADLINE)
167: init_readline ();
168: #endif
169:
170: init_execution_context ();
171:
172: if (run_daemon == FALSE) {
173: init_io ();
174: }
175:
176: init_random_number ();
177: init_ztrap ();
178:
179: retval = shm_init (shm_init_size);
180:
181: if (retval == SHMS_GET_ERR) {
1.9 ! snw 182: if (errno != 13) {
! 183: fprintf (stderr, "init: error initializing shared memory [errno %d]\r\n", errno);
! 184: }
! 185: else {
! 186: fprintf (stderr, "init: error attaching to environment -- does your user belong to the group that owns environment '%s'?\r\n", shm_env);
! 187: }
! 188: if (run_daemon == FALSE) {
! 189: set_io (UNIX);
! 190: }
1.1 snw 191: exit (1);
192: }
193:
194: symtab_init ();
195: tp_init ();
196:
197: set_namespace (namespace_name, FALSE);
198:
199: if (first_process) {
200: fprintf (stderr, "init: we are the first process in the environment (pid %d)\r\n", pid);
201: }
202:
203: if (first_process) fprintf (stderr, "init: initializing job table\r\n");
204: jobtab_init ();
205:
206: if (first_process) fprintf (stderr, "init: adding job to job table\r\n");
207: job_init (FALSE);
208:
209: if (first_process) fprintf (stderr, "init: initializing structured system variables\r\n");
210: init_ssvn ();
211:
212: if (first_process) fprintf (stderr, "init: initializing terminal\r\n");
213: init_terminal ();
214:
215: if (first_process) fprintf (stderr, "init: initializing asynchronous events\r\n");
216: evt_init ();
217:
218: if (first_process) fprintf (stderr, "init: initializing debugger\r\n");
219: dbg_init ();
220:
221: if (first_process) fprintf (stderr, "init: initializing error stack\r\n");
222: init_estack();
223:
224: etrap[0] = EOL;
225: ecode[0] = EOL;
226: estack = 0;
227:
228: init_mwapi();
229:
230: if (merr () == OK) {
231: return TRUE;
232: }
233:
234: return FALSE;
235: }
236:
237: void init_process (void)
238: {
239: pid = getpid (); /* get $J = process ID */
240: umask (0); /* protection bits mask to full rights */
241: snprintf (fp_conversion, 9, "%%.%df\201", DBL_DIG);
242:
243: if (fp_mode) {
244: zprecise = DBL_DIG;
245: }
246: else {
247: zprecise = 100;
248: }
249: }
250:
251: void init_devtable (void)
252: {
253: register int i;
254: register int j;
255:
256: for (j = 0; j <= MAXDEV; j++) { /* init. translation tables */
257:
258: for (i = 0; i < 256; i++) {
259: G0I[j][i] = (char) i;
260: G0O[j][i] = (char) i;
261: G1I[j][i] = (char) i;
262: G1O[j][i] = (char) i;
263: }
264:
265: G0I[j][UNSIGN (EOL)] = NUL;
266: G0O[j][UNSIGN (EOL)] = NUL;
267: G1I[j][UNSIGN (EOL)] = NUL;
268: G1O[j][UNSIGN (EOL)] = NUL;
269: G0I[j][UNSIGN (DELIM)] = NUL;
270: G0O[j][UNSIGN (DELIM)] = NUL;
271: G1I[j][UNSIGN (DELIM)] = NUL;
272: G1O[j][UNSIGN (DELIM)] = NUL;
273: G0I[j][256] = EOL;
274: G0O[j][256] = EOL;
275: G1I[j][256] = EOL;
276: G1O[j][256] = EOL;
277:
278: }
279:
280: #ifdef SCO
281: #ifndef HACK_NOXLATE
282: G0I[HOME][245] = 64;
283: G0O[HOME][64] = 245; /* Paragraph */
284: G0I[HOME][142] = 91;
285: G0O[HOME][91] = 142; /* A umlaut */
286: G0I[HOME][153] = 92;
287: G0O[HOME][92] = 153; /* O umlaut */
288: G0I[HOME][154] = 93;
289: G0O[HOME][93] = 154; /* U umlaut */
290: G0I[HOME][132] = 123;
291: G0O[HOME][123] = 132; /* a umlaut */
292: G0I[HOME][148] = 124;
293: G0O[HOME][124] = 148; /* o umlaut */
294: G0I[HOME][129] = 125;
295: G0O[HOME][125] = 129; /* u umlaut */
296: G0I[HOME][225] = 126;
297: G0O[HOME][126] = 225; /* sharp s */
298: #endif/*HACK_NOXLATE*/
299:
300: /* DEC Special graphics */
301: G1I[HOME][254] = 96;
302: G1O[HOME][96] = 254; /* diamond */
303: G1I[HOME][176] = 97;
304: G1O[HOME][97] = 176; /* checker board */
305: G1I[HOME][241] = 99;
306: G1O[HOME][99] = 241; /* FF */
307: G1I[HOME][242] = 100;
308: G1O[HOME][100] = 242; /* CR */
309: G1I[HOME][243] = 101;
310: G1O[HOME][101] = 243; /* LF */
311: G1I[HOME][248] = 102;
312: G1O[HOME][102] = 248; /* degree sign */
313: G1I[HOME][241] = 103;
314: G1O[HOME][103] = 241; /* plus minus */
315: G1I[HOME][244] = 104;
316: G1O[HOME][104] = 244; /* NL */
317: G1I[HOME][251] = 105;
318: G1O[HOME][105] = 251; /* VT */
319: G1I[HOME][217] = 106;
320: G1O[HOME][106] = 217; /* lower right corner */
321: G1I[HOME][191] = 107;
322: G1O[HOME][107] = 191; /* upper right corner */
323: G1I[HOME][218] = 108;
324: G1O[HOME][108] = 218; /* upper left corner */
325: G1I[HOME][192] = 109;
326: G1O[HOME][109] = 192; /* lower left corner */
327: G1I[HOME][197] = 110;
328: G1O[HOME][110] = 197; /* cross */
329: G1I[HOME][200] = 111;
330: G1O[HOME][111] = 200; /* linescan 5 */
331: G1I[HOME][201] = 112;
332: G1O[HOME][112] = 201; /* linescan 4 */
333: G1I[HOME][196] = 113;
334: G1O[HOME][113] = 196; /* linescan 3 */
335: G1I[HOME][202] = 114;
336: G1O[HOME][114] = 202; /* linescan 2 */
337: G1I[HOME][203] = 115;
338: G1O[HOME][115] = 203; /* linescan 1 */
339: G1I[HOME][195] = 116;
340: G1O[HOME][116] = 195; /* left junction */
341: G1I[HOME][180] = 117;
342: G1O[HOME][117] = 180; /* right junction */
343: G1I[HOME][193] = 118;
344: G1O[HOME][118] = 193; /* lower junction */
345: G1I[HOME][194] = 119;
346: G1O[HOME][119] = 194; /* upper junction */
347: G1I[HOME][179] = 120;
348: G1O[HOME][120] = 179; /* vertival bar */
349: G1I[HOME][243] = 121;
350: G1O[HOME][121] = 243; /* lower equals */
351: G1I[HOME][242] = 122;
352: G1O[HOME][122] = 242; /* greater equals */
353: G1I[HOME][227] = 123;
354: G1O[HOME][123] = 227; /* pi */
355: G1I[HOME][246] = 124;
356: G1O[HOME][124] = 246; /* not equals */
357: G1I[HOME][128] = 125;
358: G1O[HOME][125] = 128; /* euro sign */
359: G1I[HOME][250] = 126;
360: G1O[HOME][126] = 250; /* centered dot */
361: #endif /* SCO */
362: }
363:
364: void init_signals (void)
365: {
366: sig_init ();
367: }
368:
369: void init_timezone (void)
370: {
371:
372: struct tm lt;
373: struct tm gt;
374:
375: unsigned long gmt;
376: unsigned long lmt;
377:
378: long clock;
379:
380: #ifdef __CYGWIN__
381:
382: tzset (); /* may be required in order */
383: /* to guarantee _timezone set */
384: #else
385:
386: clock = time (0L);
387: lt = *localtime (&clock);
388: gt = *gmtime (&clock);
389:
390: /* This is awkward but I think it is portable: steve_morris */
391: gmt = gt.tm_year * 365;
392: gmt = (gmt + gt.tm_yday) * 24;
393: gmt = (gmt + gt.tm_hour) * 60;
394: gmt = (gmt + gt.tm_min);
395:
396: lmt = lt.tm_year * 365;
397: lmt = (lmt + lt.tm_yday) * 24;
398: lmt = (lmt + lt.tm_hour) * 60;
399: lmt = (lmt + lt.tm_min);
400:
401: FreeM_timezone = (gmt - lmt) * 60;
402: tzoffset = -FreeM_timezone;
403:
404: #endif /* __CYGWIN__ */
405:
406:
407: }
408:
409: void init_freem_path (void)
410: {
411:
412: if((freem_path = malloc(PATH_MAX + 1)) == NULL) {
413: fprintf(stderr, "Can't allocate freem_path. Exiting.");
414:
415: exit(1);
416: }
417:
418: freem_path[0] = NUL;
419:
420: /* check where I'm being executed from */
421: #ifdef __linux__
422: readlink ("/proc/self/exe", freem_path, PATH_MAX);
423: #endif
424: #ifdef __FreeBSD__
425: readlink ("/proc/curproc/file", freem_path, PATH_MAX);
426: #endif
427: #ifdef __sun
428: readlink ("/proc/self/path/a.out", freem_path, PATH_MAX);
429: #endif
430:
431: if(freem_path[0] == NUL) {
432: /* we don't know where we came from */
433: }
434:
435: getcwd (curdir, PATHLEN);
436: stcnv_c2m (curdir);
437:
438: }
439:
440: #if defined(HAVE_LIBREADLINE)
441: void init_readline (void)
442: {
443: uid_t uid = geteuid ();
444: struct passwd *pw = getpwuid (uid);
445: char *pw_buf;
446:
447: pw_buf = (char *) calloc (strlen(pw->pw_dir) + 1, sizeof(char));
448: strcpy (pw_buf, pw->pw_dir);
449:
450: snprintf (history_file, 256, "%s/.freem_history", pw_buf);
451:
452: free (pw_buf);
453:
454: using_history ();
455: read_history (history_file);
456: }
457: #endif
458:
459: void init_execution_context (void)
460: {
461: register int i;
462:
463: obj_init ();
464:
465: merr_clear ();
466:
467: codptr = code;
468: code[0] = EOL; /* init code_pointer */
469: partition = calloc ((unsigned) (PSIZE + 2), 1);
470:
471: if (partition == NULL) exit (2); /* could not allocate stuff... */
472:
473: for (i = 0; i < MAXNO_OF_RBUF; i++) {
474: rbuf_flags[i].standard = standard;
475: }
476:
477: for (i = 0; i < NESTLEVLS; i++) {
478: extr_types[i] = DT_STRING;
479: }
480:
481: symlen = PSIZE;
482: s = &partition[PSIZE] - 256; /* pointer to symlen_offset */
483: argptr = partition; /* pointer to beg of tmp-storage */
484:
485: svntable = calloc ((unsigned) (UDFSVSIZ + 1), 1);
486: if (svntable == NULL) exit (2); /* could not allocate stuff... */
487:
488: svnlen = UDFSVSIZ; /* begin of udf_svn_table */
489: buff = calloc ((unsigned) NO_OF_RBUF * (unsigned) PSIZE0, 1); /* routine buffer pool */
490: if (buff == NULL) exit (2); /* could not allocate stuff... */
491:
492:
493: newstack = calloc ((unsigned) NSIZE, 1);
494: if (newstack == NULL) exit (2); /* could not allocate stuff... */
495:
496: #ifdef DEBUG_NEWPTR
497: printf("Allocating newptr stack...\r\n");
498: #endif
499:
500: newptr = newstack;
501: newlimit = newstack + NSIZE - 1024;
502:
503:
504: namstck = calloc ((unsigned) NESTLEVLS * 13, 1);
505: if (namstck == NULL) exit (2); /* could not allocate stuff... */
506:
507: *namstck = EOL;
508: *(namstck + 1) = EOL;
509: namptr = namstck; /* routine name stack pointer */
510: framstck = calloc ((unsigned) NESTLEVLS * 256, 1);
511: if (framstck == NULL) exit (2); /* could not allocate stuff... */
512:
513: *framstck = EOL;
514: *(framstck + 1) = EOL;
515: dofrmptr = framstck; /* DO_frame stack pointer */
516: cmdstack = calloc ((unsigned) NESTLEVLS * 256, 1);
517: if (cmdstack == NULL) exit (2); /* could not allocate stuff... */
518:
519: cmdptr = cmdstack; /* command stack */
520:
521: rouend = rouins = rouptr = buff;
522: roucur = buff + (NO_OF_RBUF * PSIZE0 + 1);
523: *rouptr = EOL;
524: *(rouptr + 1) = EOL;
525: *(rouptr + 2) = EOL;
526:
527: err_suppl[0] = EOL; /* empty out supplemental error info */
528: }
529:
530: void init_estack (void)
531: {
532: stcpy (merr_stack[0].PLACE, "xecline()\201");
533: }
534:
535: #if defined(HAVE_MWAPI_MOTIF)
536: void init_mwapi (void)
537: {
538: /*
539: if (getenv("DISPLAY") != NULL) {
540: gtk_init (0, NULL);
541: }
542: */
543: //TODO: init Motif/libXt
544: }
545: #else
546: void init_mwapi (void)
547: {
548: return;
549: }
550: #endif
551:
552: void init_io (void)
553: {
554: register int i;
555:
556: /* initialize screen */
557: setbuf (stdin, NULL); /* no input buffering */
558: glvnflag.all = 0L;
559: stcpy (buff, "\201");
560: writeHOME (buff);
561: sq_modes[0] = '+';
562: for (i = 0; i <= MAXDEV; ug_buf[i++][0] = EOL); /* init read-buffers */
563:
1.7 snw 564: frm_crlf[HOME] = frm_filter;
1.1 snw 565:
566: if (hardcopy) zbreakon = ENABLE; /* enable CTRL/B */
567:
568: set_io (MUMPS); /* set i/o parameters */
569:
1.8 snw 570: #if !defined(__AMIGA) && !defined(__OS2__)
1.1 snw 571: if (ttyname (HOME)) { /* for $IO of HOME */
572: strcpy (dev[HOME], ttyname (HOME));
573: dev[HOME][strlen (dev[HOME])] = EOL;
574: }
575: else {
576: dev[HOME][0] = EOL; /* ...we are in a pipe */
577: }
578: #else
1.8 snw 579: #if defined(__AMIGA)
1.1 snw 580: strcpy (dev[HOME], "CONSOLE:");
1.8 snw 581: #else
582: #if defined(__OS2__)
583: strcpy (dev[HOME], "CON:");
584: #endif
585: #endif
1.1 snw 586: #endif
587:
588: /* init function keys */
589: for (i = 0; i < 44; zfunkey[i++][0] = EOL);
590: }
591:
592: void init_random_number (void)
593: {
594:
595: srand (time (NULL));
596:
597: if ((nrandom = time (0L) * getpid ()) < 0) {
598: nrandom = (-nrandom);
599: }
600:
601: }
602:
603: void init_ztrap (void)
604: {
605:
606: if (frm_filter) {
607: ztrap[0][0] = EOL; /* no default ztrap for filters */
608: }
609: else if (startuprou[0] == '^') {
610: stcpy (ztrap[0], startuprou);
611: }
612: else {
613: stcpy (ztrap[0], "^%SYSINIT\201");
614: }
615:
616: /* $ZT to be xecuted on startup */
617:
618: stcpy (ztrap[NESTLEVLS + 1], ztrap[0]); /* DSM V.2 error trapping */
619:
620: }
621:
622: void init_ssvn(void)
623: {
624: ssvn_job_update ();
625: ssvn_display_update ();
626: ssvn_routine_update ();
627: ssvn_library_update ();
628: if (first_process) ssvn_system_update ();
629: }
630:
631: void init_terminal(void)
632: {
633: xpos[HOME] = 80;
634: ypos[HOME] = 24;
635: }
636:
637: void reset_terminal(void)
638: {
639: struct termio tpara;
640:
641: ioctl (0, TCGETA, &tpara);
642:
643: tpara.c_lflag |= (ECHO | ICANON); /* enable echo/no cbreak mode */
644: tpara.c_iflag |= ICRNL; /* cr-lf mapping */
645: tpara.c_oflag |= ONLCR; /* cr-lf mapping */
646: tpara.c_cc[VMIN] = EOT;
647: tpara.c_cc[VTIME] = -1;
648:
649: ioctl (0, TCSETA, &tpara);
650: }
651:
652: void cleanup (void)
653: {
654: char k_buf[256];
655: int ch;
656:
657: /* remove this job's entry from ^$JOB SSVN */
658: snprintf (k_buf, 255, "^$JOB\202%d\201", pid);
659: symtab_shm (kill_sym, k_buf, " \201");
660:
661: reset_terminal ();
662:
663: if (tp_level > 0) {
664:
665: if (direct_mode == TRUE) {
666: fprintf (stderr, "UNCOMMITTED TRANSACTIONS EXIST:\n\n");
667: tp_tdump ();
668: set_io (UNIX);
669: fprintf (stderr, "\nWould you like to c)ommit or r)ollback the above transactions and their operations? ($TLEVEL = %d) ", tp_level);
670:
671: for (;;) {
672: ch = fgetc (stdin);
673:
674: if (ch == 'c' || ch == 'C') {
675: while (tp_level > 0) tp_tcommit ();
676:
677: fprintf (stderr, "\n\nTransactions have been committed.\n");
678:
679: break;
680: }
681: else if (ch == 'r' || ch == 'R') {
682: tp_trollback (tp_level);
683:
684: fprintf (stderr, "\n\nTransactions have been rolled back.\n");
685:
686: break;
687: }
688: else {
689: fprintf (stderr, "\n\nInvalid input '%c'. Must choose c)ommit or r)ollback.\n", ch);
690: }
691: }
692: }
693: else {
694: fprintf (stderr, "Uncommitted transactions exist. Rolling back.\n");
695: tp_trollback (tp_level);
696: }
697: }
698:
699: #if defined(HAVE_LIBREADLINE)
700: write_history (history_file);
701: #endif
702:
703: locktab_unlock_all ();
704: job_remove (pid);
705:
706: shm_exit ();
707:
708: if (run_daemon == TRUE) {
709:
710: if (pid_fd != -1) {
711: lockf (pid_fd, F_ULOCK, 0);
712: close (pid_fd);
713: }
714:
715: if (pid_file_path != NULL) {
716: unlink (pid_file_path);
717: }
718:
719: }
720:
721:
722:
723: free (buff); /* free previously allocated space */
724: free (svntable);
725: if (partition) free (partition);
726: if (apartition) free (apartition);
727:
728:
729: free (newstack);
730:
731:
732: if (v22size) free (v22ali);
733:
734: return;
735: } /* end of cleanup */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>