1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/*
* Copyright (c) 1983 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef lint
/*static char sccsid[] = "from: @(#)common.c 5.7 (Berkeley) 3/2/91";*/
static char rcsid[] = "$Id: common.c,v 1.3 1993/12/08 00:47:01 jtc Exp $";
#endif /* not lint */
/*
* Routines and data common to all the line printer functions.
*/
#include <stdlib.h>
#include "lp.h"
int DU; /* daeomon user-id */
int MX; /* maximum number of blocks to copy */
int MC; /* maximum number of copies allowed */
char *LP; /* line printer device name */
char *RM; /* remote machine name */
char *RP; /* remote printer name */
char *LO; /* lock file name */
char *ST; /* status file name */
char *SD; /* spool directory */
char *AF; /* accounting file */
char *LF; /* log file for error messages */
char *OF; /* name of output filter (created once) */
char *IF; /* name of input filter (created per job) */
char *RF; /* name of fortran text filter (per job) */
char *TF; /* name of troff filter (per job) */
char *NF; /* name of ditroff filter (per job) */
char *DF; /* name of tex filter (per job) */
char *GF; /* name of graph(1G) filter (per job) */
char *VF; /* name of vplot filter (per job) */
char *CF; /* name of cifplot filter (per job) */
char *PF; /* name of vrast filter (per job) */
char *FF; /* form feed string */
char *TR; /* trailer string to be output when Q empties */
short SH; /* suppress header page */
short SB; /* short banner instead of normal header */
short HL; /* print header last */
short RW; /* open LP for reading and writing */
short PW; /* page width */
short PL; /* page length */
short PX; /* page width in pixels */
short PY; /* page length in pixels */
short BR; /* baud rate if lp is a tty */
/* Changes to allow serial printer to work with hardware handshake*/
ulong FC; /* flags to clear if lp is a tty */
ulong FS; /* flags to set if lp is a tty */
short RS; /* restricted to those with local accounts */
char line[BUFSIZ];
char pbuf[BUFSIZ/2]; /* buffer for printcap strings */
char *bp = pbuf; /* pointer into pbuf for pgetent() */
char *name; /* program name */
char *printer; /* printer name */
char host[32]; /* host machine name */
char *from = host; /* client's machine name */
int sendtorem; /* are we sending to a remote? */
/*
* Create a connection to the remote printer server.
* Most of this code comes from rcmd.c.
*/
getport(rhost)
char *rhost;
{
struct hostent *hp;
struct servent *sp;
struct sockaddr_in sin;
int s, timo = 1, lport = IPPORT_RESERVED - 1;
int err;
/*
* Get the host address and port number to connect to.
*/
if (rhost == NULL)
fatal("no remote host to connect to");
hp = gethostbyname(rhost);
if (hp == NULL)
fatal("unknown host %s", rhost);
sp = getservbyname("printer", "tcp");
if (sp == NULL)
fatal("printer/tcp: unknown service");
bzero((char *)&sin, sizeof(sin));
bcopy(hp->h_addr, (caddr_t)&sin.sin_addr, hp->h_length);
sin.sin_family = hp->h_addrtype;
sin.sin_port = sp->s_port;
/*
* Try connecting to the server.
*/
retry:
s = rresvport(&lport);
if (s < 0)
return(-1);
if (connect(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
err = errno;
(void) close(s);
errno = err;
if (errno == EADDRINUSE) {
lport--;
goto retry;
}
if (errno == ECONNREFUSED && timo <= 16) {
sleep(timo);
timo *= 2;
goto retry;
}
return(-1);
}
return(s);
}
/*
* Getline reads a line from the control file cfp, removes tabs, converts
* new-line to null and leaves it in line.
* Returns 0 at EOF or the number of characters read.
*/
getline(cfp)
FILE *cfp;
{
register int linel = 0;
register char *lp = line;
register c;
while ((c = getc(cfp)) != '\n') {
if (c == EOF)
return(0);
if (c == '\t') {
do {
*lp++ = ' ';
linel++;
} while ((linel & 07) != 0);
continue;
}
*lp++ = c;
linel++;
}
*lp++ = '\0';
return(linel);
}
/*
* Scan the current directory and make a list of daemon files sorted by
* creation time.
* Return the number of entries and a pointer to the list.
*/
getq(namelist)
struct queue *(*namelist[]);
{
register struct direct *d;
register struct queue *q, **queue;
register int nitems;
struct stat stbuf;
DIR *dirp;
int arraysz;
static int compar();
if ((dirp = opendir(SD)) == NULL)
return(-1);
if (fstat(dirfd(dirp), &stbuf) < 0)
goto errdone;
/*
* Estimate the array size by taking the size of the directory file
* and dividing it by a multiple of the minimum size entry.
*/
arraysz = (stbuf.st_size / 24);
queue = (struct queue **)malloc(arraysz * sizeof(struct queue *));
if (queue == NULL)
goto errdone;
nitems = 0;
while ((d = readdir(dirp)) != NULL) {
if (d->d_name[0] != 'c' || d->d_name[1] != 'f')
continue; /* daemon control files only */
if (stat(d->d_name, &stbuf) < 0)
continue; /* Doesn't exist */
q = (struct queue *)malloc(sizeof(time_t)+strlen(d->d_name)+1);
if (q == NULL)
goto errdone;
q->q_time = stbuf.st_mtime;
strcpy(q->q_name, d->d_name);
/*
* Check to make sure the array has space left and
* realloc the maximum size.
*/
if (++nitems > arraysz) {
queue = (struct queue **)realloc((char *)queue,
(stbuf.st_size/12) * sizeof(struct queue *));
if (queue == NULL)
goto errdone;
}
queue[nitems-1] = q;
}
closedir(dirp);
if (nitems)
qsort(queue, nitems, sizeof(struct queue *), compar);
*namelist = queue;
return(nitems);
errdone:
closedir(dirp);
return(-1);
}
/*
* Compare modification times.
*/
static
compar(p1, p2)
register struct queue **p1, **p2;
{
if ((*p1)->q_time < (*p2)->q_time)
return(-1);
if ((*p1)->q_time > (*p2)->q_time)
return(1);
return(0);
}
/*
* Figure out whether the local machine is the same
* as the remote machine (RM) entry (if it exists).
*/
char *
checkremote()
{
char name[MAXHOSTNAMELEN];
register struct hostent *hp;
static char errbuf[128];
sendtorem = 0; /* assume printer is local */
if (RM != (char *)NULL) {
/* get the official name of the local host */
gethostname(name, sizeof(name));
name[sizeof(name)-1] = '\0';
hp = gethostbyname(name);
if (hp == (struct hostent *) NULL) {
(void) sprintf(errbuf,
"unable to get official name for local machine %s",
name);
return errbuf;
} else (void) strcpy(name, hp->h_name);
/* get the official name of RM */
hp = gethostbyname(RM);
if (hp == (struct hostent *) NULL) {
(void) sprintf(errbuf,
"unable to get official name for remote machine %s",
RM);
return errbuf;
}
/*
* if the two hosts are not the same,
* then the printer must be remote.
*/
if (strcmp(name, hp->h_name) != 0)
sendtorem = 1;
}
return (char *)0;
}
/*VARARGS1*/
fatal(msg, a1, a2, a3)
char *msg;
{
if (from != host)
printf("%s: ", host);
printf("%s: ", name);
if (printer)
printf("%s: ", printer);
printf(msg, a1, a2, a3);
putchar('\n');
exit(1);
}
|