17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 57c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 67c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 77c478bd9Sstevel@tonic-gate * with the License. 87c478bd9Sstevel@tonic-gate * 97c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 107c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 117c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 127c478bd9Sstevel@tonic-gate * and limitations under the License. 137c478bd9Sstevel@tonic-gate * 147c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 157c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 167c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 177c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 187c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 197c478bd9Sstevel@tonic-gate * 207c478bd9Sstevel@tonic-gate * CDDL HEADER END 217c478bd9Sstevel@tonic-gate */ 227c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 237c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 24*ace1a5f1Sdp /* 25*ace1a5f1Sdp * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 26*ace1a5f1Sdp * Use is subject to license terms. 27*ace1a5f1Sdp */ 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate #ifndef _UUCP_H 317c478bd9Sstevel@tonic-gate #define _UUCP_H 327c478bd9Sstevel@tonic-gate 33*ace1a5f1Sdp #pragma ident "%Z%%M% %I% %E% SMI" 34*ace1a5f1Sdp 35*ace1a5f1Sdp #ifdef __cplusplus 36*ace1a5f1Sdp extern "C" { 37*ace1a5f1Sdp #endif 38*ace1a5f1Sdp 397c478bd9Sstevel@tonic-gate #include <unistd.h> 407c478bd9Sstevel@tonic-gate #include <stdlib.h> 417c478bd9Sstevel@tonic-gate #include <string.h> 427c478bd9Sstevel@tonic-gate #include "parms.h" 437c478bd9Sstevel@tonic-gate 447c478bd9Sstevel@tonic-gate #ifdef DIAL 457c478bd9Sstevel@tonic-gate #define EXTERN static 467c478bd9Sstevel@tonic-gate #define GLOBAL static 477c478bd9Sstevel@tonic-gate #else 487c478bd9Sstevel@tonic-gate #define EXTERN extern 497c478bd9Sstevel@tonic-gate #define GLOBAL 507c478bd9Sstevel@tonic-gate #endif 517c478bd9Sstevel@tonic-gate 527c478bd9Sstevel@tonic-gate #ifdef BSD4_2 537c478bd9Sstevel@tonic-gate #define V7 547c478bd9Sstevel@tonic-gate #undef NONAP 557c478bd9Sstevel@tonic-gate #undef FASTTIMER 567c478bd9Sstevel@tonic-gate #endif /* BSD4_2 */ 577c478bd9Sstevel@tonic-gate 587c478bd9Sstevel@tonic-gate #ifdef FASTTIMER 597c478bd9Sstevel@tonic-gate #undef NONAP 607c478bd9Sstevel@tonic-gate #endif 617c478bd9Sstevel@tonic-gate 627c478bd9Sstevel@tonic-gate #ifdef V8 637c478bd9Sstevel@tonic-gate #define V7 647c478bd9Sstevel@tonic-gate #endif /* V8 */ 657c478bd9Sstevel@tonic-gate 667c478bd9Sstevel@tonic-gate #include <stdio.h> 677c478bd9Sstevel@tonic-gate #include <ctype.h> 687c478bd9Sstevel@tonic-gate #include <setjmp.h> 697c478bd9Sstevel@tonic-gate #include <sys/param.h> 707c478bd9Sstevel@tonic-gate 717c478bd9Sstevel@tonic-gate /* 727c478bd9Sstevel@tonic-gate * param.h includes types.h and signal.h in 4bsd 737c478bd9Sstevel@tonic-gate */ 747c478bd9Sstevel@tonic-gate #ifdef V7 757c478bd9Sstevel@tonic-gate #include <sgtty.h> 767c478bd9Sstevel@tonic-gate #include <sys/timeb.h> 777c478bd9Sstevel@tonic-gate #else /* !V7 */ 787c478bd9Sstevel@tonic-gate #include <termio.h> 797c478bd9Sstevel@tonic-gate #include <sys/types.h> 807c478bd9Sstevel@tonic-gate #include <signal.h> 817c478bd9Sstevel@tonic-gate #include <fcntl.h> 827c478bd9Sstevel@tonic-gate #endif 837c478bd9Sstevel@tonic-gate 847c478bd9Sstevel@tonic-gate #include <sys/stat.h> 857c478bd9Sstevel@tonic-gate #include <utime.h> 867c478bd9Sstevel@tonic-gate #include <dirent.h> 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate #ifdef BSD4_2 897c478bd9Sstevel@tonic-gate #include <sys/time.h> 907c478bd9Sstevel@tonic-gate #else /* !BSD4_2 */ 917c478bd9Sstevel@tonic-gate #include <time.h> 927c478bd9Sstevel@tonic-gate #endif 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate #include <sys/times.h> 957c478bd9Sstevel@tonic-gate #include <errno.h> 967c478bd9Sstevel@tonic-gate 977c478bd9Sstevel@tonic-gate #ifdef ATTSV 987c478bd9Sstevel@tonic-gate #include <sys/mkdev.h> 997c478bd9Sstevel@tonic-gate #endif /* ATTSV */ 1007c478bd9Sstevel@tonic-gate 1017c478bd9Sstevel@tonic-gate #ifdef RT 1027c478bd9Sstevel@tonic-gate #include "rt/types.h" 1037c478bd9Sstevel@tonic-gate #include "rt/unix/param.h" 1047c478bd9Sstevel@tonic-gate #include "rt/stat.h" 1057c478bd9Sstevel@tonic-gate #include <sys/ustat.h> 1067c478bd9Sstevel@tonic-gate #endif /* RT */ 1077c478bd9Sstevel@tonic-gate 1087c478bd9Sstevel@tonic-gate /* what mode should user files be allowed to have upon creation? */ 1097c478bd9Sstevel@tonic-gate /* NOTE: This does not allow setuid or execute bits on transfer. */ 1107c478bd9Sstevel@tonic-gate #define LEGALMODE (mode_t) 0666 1117c478bd9Sstevel@tonic-gate 1127c478bd9Sstevel@tonic-gate /* what mode should public files have upon creation? */ 1137c478bd9Sstevel@tonic-gate #define PUB_FILEMODE (mode_t) 0666 1147c478bd9Sstevel@tonic-gate 1157c478bd9Sstevel@tonic-gate /* what mode should log files have upon creation? */ 1167c478bd9Sstevel@tonic-gate #define LOGFILEMODE (mode_t) 0644 1177c478bd9Sstevel@tonic-gate 1187c478bd9Sstevel@tonic-gate /* what mode should C. files have upon creation? */ 1197c478bd9Sstevel@tonic-gate #define CFILEMODE (mode_t) 0644 1207c478bd9Sstevel@tonic-gate 1217c478bd9Sstevel@tonic-gate /* what mode should D. files have upon creation? */ 1227c478bd9Sstevel@tonic-gate #define DFILEMODE (mode_t) 0600 1237c478bd9Sstevel@tonic-gate 1247c478bd9Sstevel@tonic-gate /* define the value of PUBMASK, used for creating "public" directories */ 1257c478bd9Sstevel@tonic-gate #define PUBMASK (mode_t) 0000 1267c478bd9Sstevel@tonic-gate 1277c478bd9Sstevel@tonic-gate /* what mode should public directories have upon creation? */ 1287c478bd9Sstevel@tonic-gate #define PUB_DIRMODE (mode_t) 0777 1297c478bd9Sstevel@tonic-gate 1307c478bd9Sstevel@tonic-gate /* define the value of DIRMASK, used for creating "system" subdirectories */ 1317c478bd9Sstevel@tonic-gate #define DIRMASK (mode_t) 0022 1327c478bd9Sstevel@tonic-gate 1337c478bd9Sstevel@tonic-gate #define MAXSTART 300 /* how long to wait on startup */ 1347c478bd9Sstevel@tonic-gate 1357c478bd9Sstevel@tonic-gate /* define the last characters for ACU (used for 801/212 dialers) */ 1367c478bd9Sstevel@tonic-gate #define ACULAST "<" 1377c478bd9Sstevel@tonic-gate 1387c478bd9Sstevel@tonic-gate /* caution - the fillowing names are also in Makefile 1397c478bd9Sstevel@tonic-gate * any changes here have to also be made there 1407c478bd9Sstevel@tonic-gate * 1417c478bd9Sstevel@tonic-gate * it's a good idea to make directories .foo, since this ensures 1427c478bd9Sstevel@tonic-gate * that they'll be ignored by processes that search subdirectories in SPOOL 1437c478bd9Sstevel@tonic-gate * 1447c478bd9Sstevel@tonic-gate * XQTDIR=/var/uucp/.Xqtdir 1457c478bd9Sstevel@tonic-gate * CORRUPT=/var/uucp/.Corrupt 1467c478bd9Sstevel@tonic-gate * LOGDIR=/var/uucp/.Log 1477c478bd9Sstevel@tonic-gate * SEQDIR=/var/uucp/.Sequence 1487c478bd9Sstevel@tonic-gate * STATDIR=/var/uucp/.Status 1497c478bd9Sstevel@tonic-gate * 1507c478bd9Sstevel@tonic-gate */ 1517c478bd9Sstevel@tonic-gate 1527c478bd9Sstevel@tonic-gate /* where to put the STST. files? */ 1537c478bd9Sstevel@tonic-gate #define STATDIR "/var/uucp/.Status" 1547c478bd9Sstevel@tonic-gate 1557c478bd9Sstevel@tonic-gate /* where should logfiles be kept? */ 1567c478bd9Sstevel@tonic-gate #define LOGUUX "/var/uucp/.Log/uux" 1577c478bd9Sstevel@tonic-gate #define LOGUUXQT "/var/uucp/.Log/uuxqt" 1587c478bd9Sstevel@tonic-gate #define LOGUUCP "/var/uucp/.Log/uucp" 1597c478bd9Sstevel@tonic-gate #define LOGCICO "/var/uucp/.Log/uucico" 1607c478bd9Sstevel@tonic-gate #define CORRUPTDIR "/var/uucp/.Corrupt" 1617c478bd9Sstevel@tonic-gate 1627c478bd9Sstevel@tonic-gate /* some sites use /var/uucp/.XQTDIR here */ 1637c478bd9Sstevel@tonic-gate /* use caution since things are linked into there */ 1647c478bd9Sstevel@tonic-gate #define XQTDIR "/var/uucp/.Xqtdir" 1657c478bd9Sstevel@tonic-gate 1667c478bd9Sstevel@tonic-gate /* how much of a system name can we print in a [CX]. file? */ 1677c478bd9Sstevel@tonic-gate /* MAXBASENAME - 1 (pre) - 1 ('.') - 1 (grade) - 4 (sequence number) */ 1687c478bd9Sstevel@tonic-gate #define SYSNSIZE (MAXBASENAME - 7) 1697c478bd9Sstevel@tonic-gate 1707c478bd9Sstevel@tonic-gate #ifdef USRSPOOLLOCKS 1717c478bd9Sstevel@tonic-gate #define LOCKPRE "/var/spool/locks/LCK." 1727c478bd9Sstevel@tonic-gate #else 1737c478bd9Sstevel@tonic-gate #define LOCKPRE "/var/spool/uucp/LCK." 1747c478bd9Sstevel@tonic-gate #endif /* USRSPOOLLOCKS */ 1757c478bd9Sstevel@tonic-gate 1767c478bd9Sstevel@tonic-gate #define SQFILE "/etc/uucp/SQFILE" 1777c478bd9Sstevel@tonic-gate #define SQTMP "/etc/uucp/SQTMP" 1787c478bd9Sstevel@tonic-gate #define SLCKTIME 5400 /* system/device timeout (LCK.. files) */ 1797c478bd9Sstevel@tonic-gate #define DIALCODES "/etc/uucp/Dialcodes" 1807c478bd9Sstevel@tonic-gate #define PERMISSIONS "/etc/uucp/Permissions" 1817c478bd9Sstevel@tonic-gate 1827c478bd9Sstevel@tonic-gate #define SPOOL "/var/spool/uucp" 1837c478bd9Sstevel@tonic-gate #define SEQDIR "/var/uucp/.Sequence" 1847c478bd9Sstevel@tonic-gate 1857c478bd9Sstevel@tonic-gate #define X_LOCKTIME 3600 1867c478bd9Sstevel@tonic-gate #ifdef USRSPOOLLOCKS 1877c478bd9Sstevel@tonic-gate #define SEQLOCK "/var/spool/locks/LCK.SQ." 1887c478bd9Sstevel@tonic-gate #define SQLOCK "/var/spool/locks/LCK.SQ" 1897c478bd9Sstevel@tonic-gate #define X_LOCK "/var/spool/locks/LCK.X" 1907c478bd9Sstevel@tonic-gate #define S_LOCK "/var/spool/locks/LCK.S" 1917c478bd9Sstevel@tonic-gate #define L_LOCK "/var/spool/locks/LK" 1927c478bd9Sstevel@tonic-gate #define X_LOCKDIR "/var/spool/locks" /* must be dir part of above */ 1937c478bd9Sstevel@tonic-gate #else 1947c478bd9Sstevel@tonic-gate #define SEQLOCK "/var/spool/uucp/LCK.SQ." 1957c478bd9Sstevel@tonic-gate #define SQLOCK "/var/spool/uucp/LCK.SQ" 1967c478bd9Sstevel@tonic-gate #define X_LOCK "/var/spool/uucp/LCK.X" 1977c478bd9Sstevel@tonic-gate #define S_LOCK "/var/spool/uucp/LCK.S" 1987c478bd9Sstevel@tonic-gate #define L_LOCK "/var/spool/uucp/LK" 1997c478bd9Sstevel@tonic-gate #define X_LOCKDIR "/var/spool/uucp" /* must be dir part of above */ 2007c478bd9Sstevel@tonic-gate #endif /* USRSPOOLLOCKS */ 2017c478bd9Sstevel@tonic-gate #define X_LOCKPRE "LCK.X" /* must be last part of above */ 2027c478bd9Sstevel@tonic-gate 2037c478bd9Sstevel@tonic-gate #define PUBDIR "/var/spool/uucppublic" 2047c478bd9Sstevel@tonic-gate #define ADMIN "/var/uucp/.Admin" 2057c478bd9Sstevel@tonic-gate #define ERRLOG "/var/uucp/.Admin/errors" 2067c478bd9Sstevel@tonic-gate #define SYSLOG "/var/uucp/.Admin/xferstats" 2077c478bd9Sstevel@tonic-gate #define RMTDEBUG "/var/uucp/.Admin/audit" 2087c478bd9Sstevel@tonic-gate #define CLEANUPLOGFILE "/var/uucp/.Admin/uucleanup" 2097c478bd9Sstevel@tonic-gate #define CMDLOG "/var/uucp/.Admin/command" 2107c478bd9Sstevel@tonic-gate #define PERFLOG "/var/uucp/.Admin/perflog" 2117c478bd9Sstevel@tonic-gate #define ACCOUNT "/var/uucp/.Admin/account" 2127c478bd9Sstevel@tonic-gate #define SECURITY "/var/uucp/.Admin/security" 2137c478bd9Sstevel@tonic-gate 2147c478bd9Sstevel@tonic-gate #define WORKSPACE "/var/uucp/.Workspace" 2157c478bd9Sstevel@tonic-gate 2167c478bd9Sstevel@tonic-gate #define SQTIME 60 2177c478bd9Sstevel@tonic-gate #define TRYCALLS 2 /* number of tries to dial call */ 2187c478bd9Sstevel@tonic-gate #define MINULIMIT (1L<<11) /* minimum reasonable ulimit */ 2197c478bd9Sstevel@tonic-gate #define MAX_LOCKTRY 5 /* number of attempts to lock device */ 2207c478bd9Sstevel@tonic-gate 2217c478bd9Sstevel@tonic-gate /* 2227c478bd9Sstevel@tonic-gate * CDEBUG is for communication line debugging 2237c478bd9Sstevel@tonic-gate * DEBUG is for program debugging 2247c478bd9Sstevel@tonic-gate * #define SMALL to compile without the DEBUG code 2257c478bd9Sstevel@tonic-gate */ 2267c478bd9Sstevel@tonic-gate 2277c478bd9Sstevel@tonic-gate #ifndef DIAL 2287c478bd9Sstevel@tonic-gate #define CDEBUG(l, f, s) if (Debug >= l) (void)fprintf(stderr, f, s) 2297c478bd9Sstevel@tonic-gate #else 2307c478bd9Sstevel@tonic-gate #define CDEBUG(l, f, s) 2317c478bd9Sstevel@tonic-gate #define SMALL 2327c478bd9Sstevel@tonic-gate #endif 2337c478bd9Sstevel@tonic-gate 2347c478bd9Sstevel@tonic-gate #ifndef SMALL 2357c478bd9Sstevel@tonic-gate #define DEBUG(l, f, s) if (Debug >= l) (void)fprintf(stderr, f, s) 2367c478bd9Sstevel@tonic-gate #else 2377c478bd9Sstevel@tonic-gate #define DEBUG(l, f, s) 2387c478bd9Sstevel@tonic-gate #endif /* SMALL */ 2397c478bd9Sstevel@tonic-gate 2407c478bd9Sstevel@tonic-gate /* 2417c478bd9Sstevel@tonic-gate * VERBOSE is used by cu and ct to inform the user of progress 2427c478bd9Sstevel@tonic-gate * In other programs, the Value of Verbose is always 0. 2437c478bd9Sstevel@tonic-gate */ 2447c478bd9Sstevel@tonic-gate #define VERBOSE(f, s) { if (Verbose > 0) (void)fprintf(stderr, f, s); } 2457c478bd9Sstevel@tonic-gate 2467c478bd9Sstevel@tonic-gate #define PREFIX(pre, str) (strncmp((pre), (str), strlen(pre)) == SAME) 2477c478bd9Sstevel@tonic-gate #define BASENAME(str, c) ((Bnptr = strrchr((str), c)) ? (Bnptr + 1) : (str)) 2487c478bd9Sstevel@tonic-gate #define EQUALS(a,b) ((a != CNULL) && (b != CNULL) && (strcmp((a),(b))==SAME)) 2497c478bd9Sstevel@tonic-gate #define EQUALSN(a,b,n) ((a != CNULL) && (b != CNULL) && (strncmp((a),(b),(n))==SAME)) 2507c478bd9Sstevel@tonic-gate #define LASTCHAR(s) (s+strlen(s)-1) 2517c478bd9Sstevel@tonic-gate 2527c478bd9Sstevel@tonic-gate #define SAME 0 2537c478bd9Sstevel@tonic-gate #define ANYREAD 04 2547c478bd9Sstevel@tonic-gate #define ANYWRITE 02 2557c478bd9Sstevel@tonic-gate #define FAIL -1 2567c478bd9Sstevel@tonic-gate #define SUCCESS 0 2577c478bd9Sstevel@tonic-gate #define NULLCHAR '\0' 2587c478bd9Sstevel@tonic-gate #define CNULL (char *) 0 2597c478bd9Sstevel@tonic-gate #define STBNULL (struct sgttyb *) 0 2607c478bd9Sstevel@tonic-gate #define MASTER 1 2617c478bd9Sstevel@tonic-gate #define SLAVE 0 2627c478bd9Sstevel@tonic-gate #define MAXBASENAME 14 /* should be DIRSIZ but that is now fs dependent */ 2637c478bd9Sstevel@tonic-gate #define MAXFULLNAME BUFSIZ 2647c478bd9Sstevel@tonic-gate #define MAXNAMESIZE 64 /* /var/spool/uucp/<14 chars>/<14 chars>+slop */ 2657c478bd9Sstevel@tonic-gate #define CONNECTTIME 30 2667c478bd9Sstevel@tonic-gate #define EXPECTTIME 45 2677c478bd9Sstevel@tonic-gate #define MSGTIME 60 2687c478bd9Sstevel@tonic-gate #define NAMESIZE MAXBASENAME+1 2697c478bd9Sstevel@tonic-gate #define SIZEOFPID 10 /* maximum number of digits in a pid */ 2707c478bd9Sstevel@tonic-gate #define EOTMSG "\004\n\004\n" 2717c478bd9Sstevel@tonic-gate #define CALLBACK 1 2727c478bd9Sstevel@tonic-gate 2737c478bd9Sstevel@tonic-gate /* manifests for sysfiles.c's sysaccess() */ 2747c478bd9Sstevel@tonic-gate /* check file access for REAL user id */ 2757c478bd9Sstevel@tonic-gate #define ACCESS_SYSTEMS 1 2767c478bd9Sstevel@tonic-gate #define ACCESS_DEVICES 2 2777c478bd9Sstevel@tonic-gate #define ACCESS_DIALERS 3 2787c478bd9Sstevel@tonic-gate /* check file access for EFFECTIVE user id */ 2797c478bd9Sstevel@tonic-gate #define EACCESS_SYSTEMS 4 2807c478bd9Sstevel@tonic-gate #define EACCESS_DEVICES 5 2817c478bd9Sstevel@tonic-gate #define EACCESS_DIALERS 6 2827c478bd9Sstevel@tonic-gate 2837c478bd9Sstevel@tonic-gate /* manifest for chkpth flag */ 2847c478bd9Sstevel@tonic-gate #define CK_READ 0 2857c478bd9Sstevel@tonic-gate #define CK_WRITE 1 2867c478bd9Sstevel@tonic-gate 2877c478bd9Sstevel@tonic-gate /* 2887c478bd9Sstevel@tonic-gate * commands 2897c478bd9Sstevel@tonic-gate */ 2907c478bd9Sstevel@tonic-gate #define SHELL "/usr/bin/sh" 2917c478bd9Sstevel@tonic-gate #define MAIL "mail" 2927c478bd9Sstevel@tonic-gate #define UUCICO "/usr/lib/uucp/uucico" 2937c478bd9Sstevel@tonic-gate #define UUXQT "/usr/lib/uucp/uuxqt" 2947c478bd9Sstevel@tonic-gate #define UUX "/usr/bin/uux" 2957c478bd9Sstevel@tonic-gate #define UUCP "/usr/bin/uucp" 2967c478bd9Sstevel@tonic-gate 2977c478bd9Sstevel@tonic-gate 2987c478bd9Sstevel@tonic-gate /* system status stuff */ 2997c478bd9Sstevel@tonic-gate #define SS_OK 0 3007c478bd9Sstevel@tonic-gate #define SS_NO_DEVICE 1 3017c478bd9Sstevel@tonic-gate #define SS_TIME_WRONG 2 3027c478bd9Sstevel@tonic-gate #define SS_INPROGRESS 3 3037c478bd9Sstevel@tonic-gate #define SS_CONVERSATION 4 3047c478bd9Sstevel@tonic-gate #define SS_SEQBAD 5 3057c478bd9Sstevel@tonic-gate #define SS_LOGIN_FAILED 6 3067c478bd9Sstevel@tonic-gate #define SS_DIAL_FAILED 7 3077c478bd9Sstevel@tonic-gate #define SS_BAD_LOG_MCH 8 3087c478bd9Sstevel@tonic-gate #define SS_LOCKED_DEVICE 9 3097c478bd9Sstevel@tonic-gate #define SS_ASSERT_ERROR 10 3107c478bd9Sstevel@tonic-gate #define SS_BADSYSTEM 11 3117c478bd9Sstevel@tonic-gate #define SS_CANT_ACCESS_DEVICE 12 3127c478bd9Sstevel@tonic-gate #define SS_DEVICE_FAILED 13 /* used for interface failure */ 3137c478bd9Sstevel@tonic-gate #define SS_WRONG_MCH 14 3147c478bd9Sstevel@tonic-gate #define SS_CALLBACK 15 3157c478bd9Sstevel@tonic-gate #define SS_RLOCKED 16 3167c478bd9Sstevel@tonic-gate #define SS_RUNKNOWN 17 3177c478bd9Sstevel@tonic-gate #define SS_RLOGIN 18 3187c478bd9Sstevel@tonic-gate #define SS_UNKNOWN_RESPONSE 19 3197c478bd9Sstevel@tonic-gate #define SS_STARTUP 20 3207c478bd9Sstevel@tonic-gate #define SS_CHAT_FAILED 21 3217c478bd9Sstevel@tonic-gate #define SS_CALLBACK_LOOP 22 3227c478bd9Sstevel@tonic-gate 3237c478bd9Sstevel@tonic-gate #define MAXPH 60 /* maximum phone string size */ 3247c478bd9Sstevel@tonic-gate #define MAXC BUFSIZ 3257c478bd9Sstevel@tonic-gate 3267c478bd9Sstevel@tonic-gate #define TRUE 1 3277c478bd9Sstevel@tonic-gate #define FALSE 0 3287c478bd9Sstevel@tonic-gate #define NAMEBUF 32 3297c478bd9Sstevel@tonic-gate 3307c478bd9Sstevel@tonic-gate /* The call structure is used by ct.c, cu.c, and dial.c. */ 3317c478bd9Sstevel@tonic-gate 3327c478bd9Sstevel@tonic-gate struct call { 3337c478bd9Sstevel@tonic-gate char *speed; /* transmission baud rate */ 3347c478bd9Sstevel@tonic-gate char *line; /* device name for outgoing line */ 3357c478bd9Sstevel@tonic-gate char *telno; /* ptr to tel-no digit string */ 3367c478bd9Sstevel@tonic-gate char *type; /* type of device to use for call. */ 3377c478bd9Sstevel@tonic-gate }; 3387c478bd9Sstevel@tonic-gate 3397c478bd9Sstevel@tonic-gate /* structure of an Systems file line */ 3407c478bd9Sstevel@tonic-gate #define F_MAX 50 /* max number of fields in Systems file line */ 3417c478bd9Sstevel@tonic-gate #define F_NAME 0 3427c478bd9Sstevel@tonic-gate #define F_TIME 1 3437c478bd9Sstevel@tonic-gate #define F_TYPE 2 3447c478bd9Sstevel@tonic-gate #define F_CLASS 3 /* an optional prefix and the speed */ 3457c478bd9Sstevel@tonic-gate #define F_PHONE 4 3467c478bd9Sstevel@tonic-gate #define F_LOGIN 5 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate /* structure of an Devices file line */ 3497c478bd9Sstevel@tonic-gate #define D_TYPE 0 3507c478bd9Sstevel@tonic-gate #define D_LINE 1 3517c478bd9Sstevel@tonic-gate #define D_CALLDEV 2 3527c478bd9Sstevel@tonic-gate #define D_CLASS 3 3537c478bd9Sstevel@tonic-gate #define D_CALLER 4 3547c478bd9Sstevel@tonic-gate #define D_ARG 5 3557c478bd9Sstevel@tonic-gate #define D_MAX 50 /* max number of fields in Devices file line */ 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate #define D_ACU 1 3587c478bd9Sstevel@tonic-gate #define D_DIRECT 2 3597c478bd9Sstevel@tonic-gate #define D_PROT 4 3607c478bd9Sstevel@tonic-gate 3617c478bd9Sstevel@tonic-gate #define GRADES "/etc/uucp/Grades" 3627c478bd9Sstevel@tonic-gate 3637c478bd9Sstevel@tonic-gate #define D_QUEUE 'Z' /* default queue */ 3647c478bd9Sstevel@tonic-gate 3657c478bd9Sstevel@tonic-gate /* past here, local changes are not recommended */ 3667c478bd9Sstevel@tonic-gate #define CMDPRE 'C' 3677c478bd9Sstevel@tonic-gate #define DATAPRE 'D' 3687c478bd9Sstevel@tonic-gate #define XQTPRE 'X' 3697c478bd9Sstevel@tonic-gate 3707c478bd9Sstevel@tonic-gate /* 3717c478bd9Sstevel@tonic-gate * stuff for command execution 3727c478bd9Sstevel@tonic-gate */ 3737c478bd9Sstevel@tonic-gate #define X_RQDFILE 'F' 3747c478bd9Sstevel@tonic-gate #define X_STDIN 'I' 3757c478bd9Sstevel@tonic-gate #define X_STDOUT 'O' 3767c478bd9Sstevel@tonic-gate #define X_STDERR 'E' 3777c478bd9Sstevel@tonic-gate #define X_CMD 'C' 3787c478bd9Sstevel@tonic-gate #define X_USER 'U' 3797c478bd9Sstevel@tonic-gate #define X_BRINGBACK 'B' 3807c478bd9Sstevel@tonic-gate #define X_MAILF 'M' 3817c478bd9Sstevel@tonic-gate #define X_RETADDR 'R' 3827c478bd9Sstevel@tonic-gate #define X_COMMENT '#' 3837c478bd9Sstevel@tonic-gate #define X_NONZERO 'Z' 3847c478bd9Sstevel@tonic-gate #define X_SENDNOTHING 'N' 3857c478bd9Sstevel@tonic-gate #define X_SENDZERO 'n' 3867c478bd9Sstevel@tonic-gate 3877c478bd9Sstevel@tonic-gate 3887c478bd9Sstevel@tonic-gate /* This structure describes call routines */ 3897c478bd9Sstevel@tonic-gate struct caller { 3907c478bd9Sstevel@tonic-gate char *CA_type; 3917c478bd9Sstevel@tonic-gate int (*CA_caller)(); 3927c478bd9Sstevel@tonic-gate }; 3937c478bd9Sstevel@tonic-gate 3947c478bd9Sstevel@tonic-gate /* structure for a saved C file */ 3957c478bd9Sstevel@tonic-gate 3967c478bd9Sstevel@tonic-gate struct cs_struct { 3977c478bd9Sstevel@tonic-gate char file[NAMESIZE]; 3987c478bd9Sstevel@tonic-gate char sys[NAMESIZE+5]; 3997c478bd9Sstevel@tonic-gate char sgrade[NAMESIZE]; 4007c478bd9Sstevel@tonic-gate char grade; 4017c478bd9Sstevel@tonic-gate long jsize; 4027c478bd9Sstevel@tonic-gate }; 4037c478bd9Sstevel@tonic-gate 4047c478bd9Sstevel@tonic-gate /* This structure describes dialing routines */ 4057c478bd9Sstevel@tonic-gate struct dialer { 4067c478bd9Sstevel@tonic-gate char *DI_type; 4077c478bd9Sstevel@tonic-gate int (*DI_dialer)(); 4087c478bd9Sstevel@tonic-gate }; 4097c478bd9Sstevel@tonic-gate 4107c478bd9Sstevel@tonic-gate struct nstat { 4117c478bd9Sstevel@tonic-gate pid_t t_pid; /* process id */ 4127c478bd9Sstevel@tonic-gate time_t t_start; /* start time */ 4137c478bd9Sstevel@tonic-gate time_t t_scall; /* start call to system */ 4147c478bd9Sstevel@tonic-gate time_t t_ecall; /* end call to system */ 4157c478bd9Sstevel@tonic-gate time_t t_tacu; /* acu time */ 4167c478bd9Sstevel@tonic-gate time_t t_tlog; /* login time */ 4177c478bd9Sstevel@tonic-gate time_t t_sftp; /* start file transfer protocol */ 4187c478bd9Sstevel@tonic-gate time_t t_sxf; /* start xfer */ 4197c478bd9Sstevel@tonic-gate time_t t_exf; /* end xfer */ 4207c478bd9Sstevel@tonic-gate time_t t_eftp; /* end file transfer protocol */ 4217c478bd9Sstevel@tonic-gate time_t t_qtime; /* time file queued */ 4227c478bd9Sstevel@tonic-gate int t_ndial; /* # of dials */ 4237c478bd9Sstevel@tonic-gate int t_nlogs; /* # of login trys */ 4247c478bd9Sstevel@tonic-gate struct tms t_tbb; /* start execution times */ 4257c478bd9Sstevel@tonic-gate struct tms t_txfs; /* xfer start times */ 4267c478bd9Sstevel@tonic-gate struct tms t_txfe; /* xfer end times */ 4277c478bd9Sstevel@tonic-gate struct tms t_tga; /* garbage execution times */ 4287c478bd9Sstevel@tonic-gate }; 4297c478bd9Sstevel@tonic-gate 4307c478bd9Sstevel@tonic-gate /* This structure describes the values from Limits file */ 4317c478bd9Sstevel@tonic-gate struct limits { 4327c478bd9Sstevel@tonic-gate int totalmax; /* overall limit */ 4337c478bd9Sstevel@tonic-gate int sitemax; /* limit per site */ 4347c478bd9Sstevel@tonic-gate char mode[64]; /* uucico mode */ 4357c478bd9Sstevel@tonic-gate }; 4367c478bd9Sstevel@tonic-gate 4377c478bd9Sstevel@tonic-gate /* external declarations */ 4387c478bd9Sstevel@tonic-gate 4397c478bd9Sstevel@tonic-gate EXTERN int (*Read)(), (*Write)(); 4407c478bd9Sstevel@tonic-gate #if defined(__STDC__) 4417c478bd9Sstevel@tonic-gate EXTERN int (*Ioctl)(int,int,...); 4427c478bd9Sstevel@tonic-gate #else 4437c478bd9Sstevel@tonic-gate EXTERN int (*Ioctl)(); 4447c478bd9Sstevel@tonic-gate #endif 4457c478bd9Sstevel@tonic-gate EXTERN int Ifn, Ofn; 4467c478bd9Sstevel@tonic-gate EXTERN int Debug, Verbose; 4477c478bd9Sstevel@tonic-gate EXTERN uid_t Uid, Euid; /* user-id and effective-uid */ 4487c478bd9Sstevel@tonic-gate EXTERN long Ulimit; 4497c478bd9Sstevel@tonic-gate EXTERN mode_t Dev_mode; /* save device mode here */ 4507c478bd9Sstevel@tonic-gate EXTERN char Wrkdir[]; 4517c478bd9Sstevel@tonic-gate EXTERN long Retrytime; 4527c478bd9Sstevel@tonic-gate EXTERN char **Env; 4537c478bd9Sstevel@tonic-gate EXTERN char Uucp[]; 4547c478bd9Sstevel@tonic-gate EXTERN char Pchar; 4557c478bd9Sstevel@tonic-gate EXTERN struct nstat Nstat; 4567c478bd9Sstevel@tonic-gate EXTERN char Dc[]; /* line name */ 4577c478bd9Sstevel@tonic-gate EXTERN int Seqn; /* sequence # */ 4587c478bd9Sstevel@tonic-gate EXTERN int Role; 4597c478bd9Sstevel@tonic-gate EXTERN int Sgrades; /* flag for administrator defined service grades */ 4607c478bd9Sstevel@tonic-gate EXTERN char Grade; 4617c478bd9Sstevel@tonic-gate EXTERN char Logfile[]; 4627c478bd9Sstevel@tonic-gate EXTERN char Rmtname[]; 4637c478bd9Sstevel@tonic-gate EXTERN char JobGrade[]; 4647c478bd9Sstevel@tonic-gate EXTERN char User[]; 4657c478bd9Sstevel@tonic-gate EXTERN char Loginuser[]; 4667c478bd9Sstevel@tonic-gate EXTERN char *Spool; 4677c478bd9Sstevel@tonic-gate EXTERN char *Pubdir; 4687c478bd9Sstevel@tonic-gate EXTERN char Myname[]; 4697c478bd9Sstevel@tonic-gate EXTERN char Progname[]; 4707c478bd9Sstevel@tonic-gate EXTERN char RemSpool[]; 4717c478bd9Sstevel@tonic-gate EXTERN char *Bnptr; /* used when BASENAME macro is expanded */ 4727c478bd9Sstevel@tonic-gate EXTERN int SizeCheck; /* ulimit check supported flag */ 4737c478bd9Sstevel@tonic-gate EXTERN long RemUlimit; /* remote ulimit if supported */ 4747c478bd9Sstevel@tonic-gate EXTERN int Restart; /* checkpoint restart supported flag */ 4757c478bd9Sstevel@tonic-gate 4767c478bd9Sstevel@tonic-gate EXTERN char Jobid[]; /* Jobid of current C. file */ 4777c478bd9Sstevel@tonic-gate EXTERN int Uerror; /* global error code */ 4787c478bd9Sstevel@tonic-gate EXTERN char *UerrorText[]; /* text for error code */ 4797c478bd9Sstevel@tonic-gate 4807c478bd9Sstevel@tonic-gate #define UERRORTEXT UerrorText[Uerror] 4817c478bd9Sstevel@tonic-gate #define UTEXT(x) UerrorText[x] 4827c478bd9Sstevel@tonic-gate 4837c478bd9Sstevel@tonic-gate /* things get kind of tricky beyond this point -- please stay out */ 4847c478bd9Sstevel@tonic-gate 4857c478bd9Sstevel@tonic-gate #ifdef ATTSV 4867c478bd9Sstevel@tonic-gate #define index strchr 4877c478bd9Sstevel@tonic-gate #define rindex strrchr 4887c478bd9Sstevel@tonic-gate #define vfork fork 4897c478bd9Sstevel@tonic-gate #define ATTSVKILL 4907c478bd9Sstevel@tonic-gate #define UNAME 4917c478bd9Sstevel@tonic-gate #else 4927c478bd9Sstevel@tonic-gate #define strchr index 4937c478bd9Sstevel@tonic-gate #define strrchr rindex 4947c478bd9Sstevel@tonic-gate #endif 4957c478bd9Sstevel@tonic-gate 4967c478bd9Sstevel@tonic-gate EXTERN struct stat __s_; 4977c478bd9Sstevel@tonic-gate #define READANY(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(0004))!=0) ) 4987c478bd9Sstevel@tonic-gate #define READSOME(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(0444))!=0) ) 4997c478bd9Sstevel@tonic-gate 5007c478bd9Sstevel@tonic-gate #define WRITEANY(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(0002))!=0) ) 5017c478bd9Sstevel@tonic-gate #define DIRECTORY(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(S_IFMT))==S_IFDIR) ) 5027c478bd9Sstevel@tonic-gate #define NOTEMPTY(f) ((stat((f),&__s_)==0) && (__s_.st_size!=0) ) 5037c478bd9Sstevel@tonic-gate 5047c478bd9Sstevel@tonic-gate /* standard functions used */ 5057c478bd9Sstevel@tonic-gate 5067c478bd9Sstevel@tonic-gate extern char *strcat(), *strcpy(), *strncpy(), *strrchr(); 5077c478bd9Sstevel@tonic-gate extern char *strchr(), *strpbrk(); 5087c478bd9Sstevel@tonic-gate extern char *index(), *rindex(), *getlogin(), *ttyname(); /*, *malloc(); 5097c478bd9Sstevel@tonic-gate extern char *calloc(); */ 5107c478bd9Sstevel@tonic-gate extern long atol(); 5117c478bd9Sstevel@tonic-gate extern time_t time(); 5127c478bd9Sstevel@tonic-gate extern int pipe(), close(), getopt(); 5137c478bd9Sstevel@tonic-gate extern struct tm *localtime(); 5147c478bd9Sstevel@tonic-gate extern FILE *popen(); 5157c478bd9Sstevel@tonic-gate #ifdef BSD4_2 5167c478bd9Sstevel@tonic-gate extern char *sprintf(); 5177c478bd9Sstevel@tonic-gate #endif /* BSD4_2 */ 5187c478bd9Sstevel@tonic-gate 5197c478bd9Sstevel@tonic-gate /* uucp functions and subroutine */ 5207c478bd9Sstevel@tonic-gate EXTERN void (*genbrk)(); 5217c478bd9Sstevel@tonic-gate extern int iswrk(), gtwvec(); /* anlwrk.c */ 5227c478bd9Sstevel@tonic-gate extern void findgrade(); /* grades.c */ 5237c478bd9Sstevel@tonic-gate extern void chremdir(), mkremdir(); /* chremdir.c */ 5247c478bd9Sstevel@tonic-gate extern void toCorrupt(); /* cpmv.c */ 5257c478bd9Sstevel@tonic-gate extern int xmv(); /* cpmv.c */ 5267c478bd9Sstevel@tonic-gate 5277c478bd9Sstevel@tonic-gate EXTERN int getargs(); /* getargs.c */ 5287c478bd9Sstevel@tonic-gate EXTERN void bsfix(); /* getargs.c */ 5297c478bd9Sstevel@tonic-gate extern char *getprm(); /* getprm.c */ 5307c478bd9Sstevel@tonic-gate 5317c478bd9Sstevel@tonic-gate extern char *next_token(); /* permission.c */ 5327c478bd9Sstevel@tonic-gate extern char *nextarg(); /* permission.c */ 5337c478bd9Sstevel@tonic-gate extern int getuline(); /* permission.c */ 5347c478bd9Sstevel@tonic-gate 5357c478bd9Sstevel@tonic-gate EXTERN void logent(), syslog(), closelog(); /* logent.c */ 5367c478bd9Sstevel@tonic-gate extern void commandlog(); /* logent.c */ 5377c478bd9Sstevel@tonic-gate extern time_t millitick(); /* logent.c */ 5387c478bd9Sstevel@tonic-gate 5397c478bd9Sstevel@tonic-gate extern unsigned long getfilesize(); /* statlog.c */ 5407c478bd9Sstevel@tonic-gate extern void putfilesize(); /* statlog.c */ 5417c478bd9Sstevel@tonic-gate 5427c478bd9Sstevel@tonic-gate EXTERN char *protoString(); /* permission.c */ 5437c478bd9Sstevel@tonic-gate extern int logFind(), mchFind(); /* permission.c */ 5447c478bd9Sstevel@tonic-gate extern int chkperm(), chkpth(); /* permission.c */ 5457c478bd9Sstevel@tonic-gate extern int cmdOK(), switchRole(); /* permission.c */ 5467c478bd9Sstevel@tonic-gate extern int callBack(), requestOK(); /* permission.c */ 5477c478bd9Sstevel@tonic-gate extern int noSpool(); /* permission.c */ 5487c478bd9Sstevel@tonic-gate extern void myName(); /* permission.c */ 5497c478bd9Sstevel@tonic-gate 5507c478bd9Sstevel@tonic-gate extern int mkdirs(); /* expfile.c */ 5517c478bd9Sstevel@tonic-gate extern int scanlimit(); /* limits.c */ 5527c478bd9Sstevel@tonic-gate extern void systat(); /* systat.c */ 5537c478bd9Sstevel@tonic-gate EXTERN int fd_mklock(), fd_cklock(); /* ulockf.c */ 5547c478bd9Sstevel@tonic-gate EXTERN int fn_cklock(); /* ulockf.c */ 5557c478bd9Sstevel@tonic-gate EXTERN int mklock(), cklock(), mlock(); /* ulockf.c */ 5567c478bd9Sstevel@tonic-gate EXTERN void fd_rmlock(), delock(), rmlock(); /* ulockf.c */ 5577c478bd9Sstevel@tonic-gate extern char *timeStamp(); /* utility.c */ 5587c478bd9Sstevel@tonic-gate EXTERN void assert(), errent(); /* utility.c */ 5597c478bd9Sstevel@tonic-gate extern void uucpname(); /* uucpname.c */ 5607c478bd9Sstevel@tonic-gate extern int versys(); /* versys.c */ 5617c478bd9Sstevel@tonic-gate extern void xuuxqt(), xuucico(); /* xqt.c */ 5627c478bd9Sstevel@tonic-gate EXTERN void cleanup(); /* misc main.c */ 5637c478bd9Sstevel@tonic-gate 5647c478bd9Sstevel@tonic-gate #define ASSERT(e, s1, s2, i1) if (!(e)) {\ 5657c478bd9Sstevel@tonic-gate assert(s1, s2, i1, __FILE__, __LINE__);\ 5667c478bd9Sstevel@tonic-gate cleanup(FAIL);}; 5677c478bd9Sstevel@tonic-gate 5687c478bd9Sstevel@tonic-gate #ifdef ATTSV 5697c478bd9Sstevel@tonic-gate unsigned sleep(); 5707c478bd9Sstevel@tonic-gate void exit(), setbuf(); 5717c478bd9Sstevel@tonic-gate long ulimit(); 5727c478bd9Sstevel@tonic-gate #else /* !ATTSV */ 5737c478bd9Sstevel@tonic-gate int sleep(), exit(), setbuf(), ftime(); 5747c478bd9Sstevel@tonic-gate #endif 5757c478bd9Sstevel@tonic-gate 5767c478bd9Sstevel@tonic-gate #ifdef UNAME 5777c478bd9Sstevel@tonic-gate #include <sys/utsname.h> 5787c478bd9Sstevel@tonic-gate #endif /* UNAME */ 5797c478bd9Sstevel@tonic-gate 5807c478bd9Sstevel@tonic-gate #ifndef NOUSTAT 5817c478bd9Sstevel@tonic-gate #ifdef V7USTAT 5827c478bd9Sstevel@tonic-gate struct ustat { 5837c478bd9Sstevel@tonic-gate daddr_t f_tfree; /* total free */ 5847c478bd9Sstevel@tonic-gate ino_t f_tinode; /* total inodes free */ 5857c478bd9Sstevel@tonic-gate }; 5867c478bd9Sstevel@tonic-gate #else /* !NOUSTAT && !V7USTAT */ 5877c478bd9Sstevel@tonic-gate #include <ustat.h> 5887c478bd9Sstevel@tonic-gate #endif /* V7USTAT */ 5897c478bd9Sstevel@tonic-gate #endif /* NOUSTAT */ 5907c478bd9Sstevel@tonic-gate 5917c478bd9Sstevel@tonic-gate #ifdef BSD4_2 5927c478bd9Sstevel@tonic-gate char *gethostname(); 5937c478bd9Sstevel@tonic-gate #endif /* BSD4_2 */ 5947c478bd9Sstevel@tonic-gate 5957c478bd9Sstevel@tonic-gate /* messages */ 5967c478bd9Sstevel@tonic-gate EXTERN char *Ct_OPEN; 5977c478bd9Sstevel@tonic-gate EXTERN char *Ct_WRITE; 5987c478bd9Sstevel@tonic-gate EXTERN char *Ct_READ; 5997c478bd9Sstevel@tonic-gate EXTERN char *Ct_CREATE; 6007c478bd9Sstevel@tonic-gate EXTERN char *Ct_ALLOCATE; 6017c478bd9Sstevel@tonic-gate EXTERN char *Ct_LOCK; 6027c478bd9Sstevel@tonic-gate EXTERN char *Ct_STAT; 6037c478bd9Sstevel@tonic-gate EXTERN char *Ct_CHOWN; 6047c478bd9Sstevel@tonic-gate EXTERN char *Ct_CHMOD; 6057c478bd9Sstevel@tonic-gate EXTERN char *Ct_LINK; 6067c478bd9Sstevel@tonic-gate EXTERN char *Ct_CHDIR; 6077c478bd9Sstevel@tonic-gate EXTERN char *Ct_UNLINK; 6087c478bd9Sstevel@tonic-gate EXTERN char *Wr_ROLE; 6097c478bd9Sstevel@tonic-gate EXTERN char *Ct_CORRUPT; 6107c478bd9Sstevel@tonic-gate EXTERN char *Ct_FORK; 6117c478bd9Sstevel@tonic-gate EXTERN char *Ct_CLOSE; 6127c478bd9Sstevel@tonic-gate EXTERN char *Ct_BADOWN; 6137c478bd9Sstevel@tonic-gate EXTERN char *Fl_EXISTS; 6147c478bd9Sstevel@tonic-gate 615*ace1a5f1Sdp #ifdef __cplusplus 616*ace1a5f1Sdp } 6177c478bd9Sstevel@tonic-gate #endif 618*ace1a5f1Sdp 619*ace1a5f1Sdp #endif /* _UUCP_H */ 620