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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
#pragma ident "%Z%%M% %I% %E% SMI"
/* EMACS_MODES: !fill, lnumb, !overwrite, !nodelete, !picture */
#include "stdio.h"
#include "string.h"
#include "errno.h"
#include "sys/types.h"
#include "sys/utsname.h"
#include "stdlib.h"
#include "lp.h"
#include "requests.h"
extern struct {
char *v;
short len;
} reqheadings[];
/**
** putrequest() - WRITE REQUEST STRUCTURE TO DISK FILE
**/
int
#if defined(__STDC__)
putrequest (
char * file,
REQUEST * reqbufp
)
#else
putrequest (file, reqbufp)
char *file;
REQUEST *reqbufp;
#endif
{
char **pp,
*path;
int fd;
int fld;
/*
* First go through the structure and see if we have
* anything strange.
*/
if (
reqbufp->copies <= 0
|| !(reqbufp->destination)
|| !reqbufp->file_list || !*(reqbufp->file_list)
|| (reqbufp->actions & (ACT_MAIL|ACT_WRITE))
&& (reqbufp->alert && *(reqbufp->alert))
|| reqbufp->priority < -1 || 39 < reqbufp->priority
) {
errno = EINVAL;
return (-1);
}
/*
* Now open the file and write out the request.
*/
/*
* Full pathname? If so the file must lie in LP's
* regular temporary directory.
*/
if (*file == '/') {
if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) {
errno = EINVAL;
return (-1);
}
path = Strdup(file);
/*
* A relative pathname (such as system/name)?
* If so we'll locate it under LP's regular temporary
* directory.
*/
} else if (strchr(file, '/')) {
if (!(path = makepath(Lp_Tmp, file, (char *)0)))
return (-1);
/*
* If must be a simple name. Locate this under the
* special temporary directory that is linked to the
* regular place for the local system.
*/
} else if (!(path = makepath(Lp_Temp, file, (char *)0)))
return (-1);
if ((fd = open_locked(path, "w", MODE_NOREAD)) < 0) {
Free (path);
return (-1);
}
Free (path);
for (fld = 0; fld < RQ_MAX; fld++) switch (fld) {
#define HEAD reqheadings[fld].v
case RQ_COPIES:
(void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->copies);
break;
case RQ_DEST:
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->destination);
break;
case RQ_FILE:
for (pp = reqbufp->file_list; *pp; pp++)
(void)fdprintf(fd, "%s%s\n", HEAD, *pp);
break;
case RQ_FORM:
if (reqbufp->form)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->form);
break;
case RQ_HANDL:
if ((reqbufp->actions & ACT_SPECIAL) == ACT_IMMEDIATE)
(void)fdprintf(fd, "%s%s\n", HEAD, NAME_IMMEDIATE);
else if ((reqbufp->actions & ACT_SPECIAL) == ACT_RESUME)
(void)fdprintf(fd, "%s%s\n", HEAD, NAME_RESUME);
else if ((reqbufp->actions & ACT_SPECIAL) == ACT_HOLD)
(void)fdprintf(fd, "%s%s\n", HEAD, NAME_HOLD);
break;
case RQ_NOTIFY:
if (reqbufp->actions & ACT_MAIL)
(void)fdprintf(fd, "%sM\n", HEAD);
else if (reqbufp->actions & ACT_WRITE)
(void)fdprintf(fd, "%sW\n", HEAD);
else if (reqbufp->actions & ACT_NOTIFY)
(void)fdprintf(fd, "%sN\n", HEAD);
else if (reqbufp->alert && *(reqbufp->alert))
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->alert);
break;
case RQ_OPTS:
if (reqbufp->options)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->options);
break;
case RQ_PRIOR:
if (reqbufp->priority != -1)
(void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->priority);
break;
case RQ_PAGES:
if (reqbufp->pages)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->pages);
break;
case RQ_CHARS:
if (reqbufp->charset)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->charset);
break;
case RQ_TITLE:
if (reqbufp->title)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->title);
break;
case RQ_MODES:
if (reqbufp->modes)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->modes);
break;
case RQ_TYPE:
if (reqbufp->input_type)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->input_type);
break;
case RQ_USER:
if (reqbufp->user)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->user);
break;
case RQ_RAW:
if (reqbufp->actions & ACT_RAW)
(void)fdprintf(fd, "%s\n", HEAD);
break;
case RQ_FAST:
if (reqbufp->actions & ACT_FAST)
(void)fdprintf(fd, "%s\n", HEAD);
break;
case RQ_STAT:
(void)fdprintf(fd, "%s%#6.4x\n", HEAD, reqbufp->outcome);
break;
}
close(fd);
return (0);
}
|