]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/ipp.c
Generalize the input validation of some kinds of attributes.
[thirdparty/cups.git] / cups / ipp.c
CommitLineData
ef416fc2 1/*
7e86f2f6
MS
2 * Internet Printing Protocol functions for CUPS.
3 *
4c37eb9f
MS
4 * Copyright © 2007-2018 by Apple Inc.
5 * Copyright © 1997-2007 by Easy Software Products, all rights reserved.
7e86f2f6
MS
6 *
7 * These coded instructions, statements, and computer programs are the
8 * property of Apple Inc. and are protected by Federal copyright
9 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 * which should have been included with this file. If this file is
57b7b66b 11 * missing or damaged, see the license at "http://www.cups.org/".
7e86f2f6
MS
12 *
13 * This file is subject to the Apple OS-Developed Software exception.
ef416fc2 14 */
15
16/*
17 * Include necessary headers...
18 */
19
71e16022 20#include "cups-private.h"
c1420c87 21#include <regex.h>
ef416fc2 22#ifdef WIN32
23# include <io.h>
24#endif /* WIN32 */
25
26
27/*
28 * Local functions...
29 */
30
82cc1f9a
MS
31static ipp_attribute_t *ipp_add_attr(ipp_t *ipp, const char *name,
32 ipp_tag_t group_tag, ipp_tag_t value_tag,
33 int num_values);
34static void ipp_free_values(ipp_attribute_t *attr, int element,
35 int count);
36static char *ipp_get_code(const char *locale, char *buffer,
37 size_t bufsize)
38 __attribute__((nonnull(1,2)));
39static char *ipp_lang_code(const char *locale, char *buffer,
40 size_t bufsize)
41 __attribute__((nonnull(1,2)));
ef416fc2 42static size_t ipp_length(ipp_t *ipp, int collection);
a4d04587 43static ssize_t ipp_read_http(http_t *http, ipp_uchar_t *buffer,
44 size_t length);
45static ssize_t ipp_read_file(int *fd, ipp_uchar_t *buffer,
46 size_t length);
c1420c87
MS
47static void ipp_set_error(ipp_status_t status, const char *format,
48 ...);
82cc1f9a
MS
49static _ipp_value_t *ipp_set_value(ipp_t *ipp, ipp_attribute_t **attr,
50 int element);
a4d04587 51static ssize_t ipp_write_file(int *fd, ipp_uchar_t *buffer,
52 size_t length);
ef416fc2 53
54
dcb445bc
MS
55/*
56 * '_cupsBufferGet()' - Get a read/write buffer.
57 */
58
59char * /* O - Buffer */
60_cupsBufferGet(size_t size) /* I - Size required */
61{
62 _cups_buffer_t *buffer; /* Current buffer */
63 _cups_globals_t *cg = _cupsGlobals();
64 /* Global data */
65
66
67 for (buffer = cg->cups_buffers; buffer; buffer = buffer->next)
68 if (!buffer->used && buffer->size >= size)
69 break;
70
71 if (!buffer)
72 {
73 if ((buffer = malloc(sizeof(_cups_buffer_t) + size - 1)) == NULL)
74 return (NULL);
75
76 buffer->next = cg->cups_buffers;
77 buffer->size = size;
78 cg->cups_buffers = buffer;
79 }
80
81 buffer->used = 1;
82
83 return (buffer->d);
84}
85
86
87/*
88 * '_cupsBufferRelease()' - Release a read/write buffer.
89 */
90
91void
92_cupsBufferRelease(char *b) /* I - Buffer to release */
93{
94 _cups_buffer_t *buffer; /* Buffer */
95
96
97 /*
98 * Mark this buffer as unused...
99 */
100
101 buffer = (_cups_buffer_t *)(b - offsetof(_cups_buffer_t, d));
102 buffer->used = 0;
103}
104
105
ef416fc2 106/*
107 * 'ippAddBoolean()' - Add a boolean attribute to an IPP message.
a2326b5b 108 *
a469f8a5
MS
109 * The @code ipp@ parameter refers to an IPP message previously created using
110 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
111 *
112 * The @code group@ parameter specifies the IPP attribute group tag: none
113 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
114 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
115 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
116 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
ef416fc2 117 */
118
119ipp_attribute_t * /* O - New attribute */
120ippAddBoolean(ipp_t *ipp, /* I - IPP message */
121 ipp_tag_t group, /* I - IPP group */
122 const char *name, /* I - Name of attribute */
123 char value) /* I - Value of attribute */
124{
125 ipp_attribute_t *attr; /* New attribute */
126
127
807315e6 128 DEBUG_printf(("ippAddBoolean(ipp=%p, group=%02x(%s), name=\"%s\", value=%d)", (void *)ipp, group, ippTagString(group), name, value));
ef416fc2 129
a2326b5b
MS
130 /*
131 * Range check input...
132 */
133
134 if (!ipp || !name || group < IPP_TAG_ZERO ||
135 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE)
ef416fc2 136 return (NULL);
137
a2326b5b
MS
138 /*
139 * Create the attribute...
140 */
141
142 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_BOOLEAN, 1)) == NULL)
ef416fc2 143 return (NULL);
144
ef416fc2 145 attr->values[0].boolean = value;
146
147 return (attr);
148}
149
150
151/*
152 * 'ippAddBooleans()' - Add an array of boolean values.
a2326b5b 153 *
a469f8a5
MS
154 * The @code ipp@ parameter refers to an IPP message previously created using
155 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
156 *
157 * The @code group@ parameter specifies the IPP attribute group tag: none
158 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
159 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
160 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
161 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
ef416fc2 162 */
163
164ipp_attribute_t * /* O - New attribute */
165ippAddBooleans(ipp_t *ipp, /* I - IPP message */
166 ipp_tag_t group, /* I - IPP group */
167 const char *name, /* I - Name of attribute */
168 int num_values, /* I - Number of values */
169 const char *values) /* I - Values */
170{
171 int i; /* Looping var */
172 ipp_attribute_t *attr; /* New attribute */
a2326b5b 173 _ipp_value_t *value; /* Current value */
ef416fc2 174
175
807315e6 176 DEBUG_printf(("ippAddBooleans(ipp=%p, group=%02x(%s), name=\"%s\", num_values=%d, values=%p)", (void *)ipp, group, ippTagString(group), name, num_values, (void *)values));
ef416fc2 177
a2326b5b
MS
178 /*
179 * Range check input...
180 */
ef416fc2 181
a2326b5b
MS
182 if (!ipp || !name || group < IPP_TAG_ZERO ||
183 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
184 num_values < 1)
ef416fc2 185 return (NULL);
186
a2326b5b
MS
187 /*
188 * Create the attribute...
189 */
190
191 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_BOOLEAN, num_values)) == NULL)
192 return (NULL);
ef416fc2 193
a2326b5b
MS
194 if (values)
195 {
196 for (i = num_values, value = attr->values;
197 i > 0;
198 i --, value ++)
199 value->boolean = *values++;
200 }
ef416fc2 201
202 return (attr);
203}
204
205
206/*
207 * 'ippAddCollection()' - Add a collection value.
208 *
a469f8a5
MS
209 * The @code ipp@ parameter refers to an IPP message previously created using
210 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
211 *
212 * The @code group@ parameter specifies the IPP attribute group tag: none
213 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
214 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
215 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
216 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
217 *
8072030b 218 * @since CUPS 1.1.19/macOS 10.3@
ef416fc2 219 */
220
221ipp_attribute_t * /* O - New attribute */
222ippAddCollection(ipp_t *ipp, /* I - IPP message */
223 ipp_tag_t group, /* I - IPP group */
224 const char *name, /* I - Name of attribute */
225 ipp_t *value) /* I - Value */
226{
227 ipp_attribute_t *attr; /* New attribute */
228
229
807315e6 230 DEBUG_printf(("ippAddCollection(ipp=%p, group=%02x(%s), name=\"%s\", value=%p)", (void *)ipp, group, ippTagString(group), name, (void *)value));
ef416fc2 231
a2326b5b
MS
232 /*
233 * Range check input...
234 */
235
236 if (!ipp || !name || group < IPP_TAG_ZERO ||
237 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE)
ef416fc2 238 return (NULL);
239
a2326b5b
MS
240 /*
241 * Create the attribute...
242 */
243
244 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_BEGIN_COLLECTION, 1)) == NULL)
ef416fc2 245 return (NULL);
246
ef416fc2 247 attr->values[0].collection = value;
248
9c80ffa2
MS
249 if (value)
250 value->use ++;
aaf19ab0 251
ef416fc2 252 return (attr);
253}
254
255
256/*
257 * 'ippAddCollections()' - Add an array of collection values.
258 *
a469f8a5
MS
259 * The @code ipp@ parameter refers to an IPP message previously created using
260 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
261 *
262 * The @code group@ parameter specifies the IPP attribute group tag: none
263 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
264 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
265 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
266 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
267 *
8072030b 268 * @since CUPS 1.1.19/macOS 10.3@
ef416fc2 269 */
270
271ipp_attribute_t * /* O - New attribute */
272ippAddCollections(
273 ipp_t *ipp, /* I - IPP message */
274 ipp_tag_t group, /* I - IPP group */
275 const char *name, /* I - Name of attribute */
276 int num_values, /* I - Number of values */
277 const ipp_t **values) /* I - Values */
278{
279 int i; /* Looping var */
280 ipp_attribute_t *attr; /* New attribute */
a2326b5b 281 _ipp_value_t *value; /* Current value */
ef416fc2 282
283
807315e6 284 DEBUG_printf(("ippAddCollections(ipp=%p, group=%02x(%s), name=\"%s\", num_values=%d, values=%p)", (void *)ipp, group, ippTagString(group), name, num_values, (void *)values));
ef416fc2 285
a2326b5b
MS
286 /*
287 * Range check input...
288 */
ef416fc2 289
a2326b5b
MS
290 if (!ipp || !name || group < IPP_TAG_ZERO ||
291 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
292 num_values < 1)
ef416fc2 293 return (NULL);
294
a2326b5b
MS
295 /*
296 * Create the attribute...
297 */
298
299 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_BEGIN_COLLECTION,
300 num_values)) == NULL)
301 return (NULL);
ef416fc2 302
a2326b5b 303 if (values)
aaf19ab0 304 {
a2326b5b
MS
305 for (i = num_values, value = attr->values;
306 i > 0;
307 i --, value ++)
aaf19ab0 308 {
a2326b5b 309 value->collection = (ipp_t *)*values++;
aaf19ab0
MS
310 value->collection->use ++;
311 }
312 }
ef416fc2 313
314 return (attr);
315}
316
317
318/*
65bebeac 319 * 'ippAddDate()' - Add a dateTime attribute to an IPP message.
a2326b5b 320 *
a469f8a5
MS
321 * The @code ipp@ parameter refers to an IPP message previously created using
322 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
323 *
324 * The @code group@ parameter specifies the IPP attribute group tag: none
325 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
326 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
327 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
328 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
ef416fc2 329 */
330
331ipp_attribute_t * /* O - New attribute */
332ippAddDate(ipp_t *ipp, /* I - IPP message */
333 ipp_tag_t group, /* I - IPP group */
334 const char *name, /* I - Name of attribute */
335 const ipp_uchar_t *value) /* I - Value */
336{
337 ipp_attribute_t *attr; /* New attribute */
338
339
807315e6 340 DEBUG_printf(("ippAddDate(ipp=%p, group=%02x(%s), name=\"%s\", value=%p)", (void *)ipp, group, ippTagString(group), name, (void *)value));
ef416fc2 341
a2326b5b
MS
342 /*
343 * Range check input...
344 */
345
346 if (!ipp || !name || !value || group < IPP_TAG_ZERO ||
347 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE)
ef416fc2 348 return (NULL);
349
a2326b5b
MS
350 /*
351 * Create the attribute...
352 */
353
354 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_DATE, 1)) == NULL)
ef416fc2 355 return (NULL);
356
ef416fc2 357 memcpy(attr->values[0].date, value, 11);
358
359 return (attr);
360}
361
362
363/*
364 * 'ippAddInteger()' - Add a integer attribute to an IPP message.
a2326b5b 365 *
a469f8a5
MS
366 * The @code ipp@ parameter refers to an IPP message previously created using
367 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
368 *
369 * The @code group@ parameter specifies the IPP attribute group tag: none
370 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
371 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
372 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
373 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
374 *
375 * Supported values include enum (@code IPP_TAG_ENUM@) and integer
376 * (@code IPP_TAG_INTEGER@).
ef416fc2 377 */
378
379ipp_attribute_t * /* O - New attribute */
380ippAddInteger(ipp_t *ipp, /* I - IPP message */
381 ipp_tag_t group, /* I - IPP group */
a2326b5b 382 ipp_tag_t value_tag, /* I - Type of attribute */
ef416fc2 383 const char *name, /* I - Name of attribute */
384 int value) /* I - Value of attribute */
385{
386 ipp_attribute_t *attr; /* New attribute */
387
388
807315e6 389 DEBUG_printf(("ippAddInteger(ipp=%p, group=%02x(%s), type=%02x(%s), name=\"%s\", value=%d)", (void *)ipp, group, ippTagString(group), value_tag, ippTagString(value_tag), name, value));
ef416fc2 390
cb7f98ee 391 value_tag &= IPP_TAG_CUPS_MASK;
a2326b5b
MS
392
393 /*
394 * Special-case for legacy usage: map out-of-band attributes to new ippAddOutOfBand
395 * function...
396 */
397
398 if (value_tag >= IPP_TAG_UNSUPPORTED_VALUE && value_tag <= IPP_TAG_ADMINDEFINE)
399 return (ippAddOutOfBand(ipp, group, value_tag, name));
400
401 /*
402 * Range check input...
403 */
404
405#if 0
406 if (!ipp || !name || group < IPP_TAG_ZERO ||
407 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
408 (value_tag != IPP_TAG_INTEGER && value_tag != IPP_TAG_ENUM))
409 return (NULL);
410#else
411 if (!ipp || !name || group < IPP_TAG_ZERO ||
412 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE)
ef416fc2 413 return (NULL);
a2326b5b 414#endif /* 0 */
ef416fc2 415
a2326b5b
MS
416 /*
417 * Create the attribute...
418 */
419
420 if ((attr = ipp_add_attr(ipp, name, group, value_tag, 1)) == NULL)
ef416fc2 421 return (NULL);
422
ef416fc2 423 attr->values[0].integer = value;
424
425 return (attr);
426}
427
428
429/*
430 * 'ippAddIntegers()' - Add an array of integer values.
a2326b5b 431 *
a469f8a5
MS
432 * The @code ipp@ parameter refers to an IPP message previously created using
433 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
434 *
435 * The @code group@ parameter specifies the IPP attribute group tag: none
436 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
437 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
438 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
439 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
440 *
441 * Supported values include enum (@code IPP_TAG_ENUM@) and integer
442 * (@code IPP_TAG_INTEGER@).
ef416fc2 443 */
444
445ipp_attribute_t * /* O - New attribute */
446ippAddIntegers(ipp_t *ipp, /* I - IPP message */
447 ipp_tag_t group, /* I - IPP group */
a2326b5b 448 ipp_tag_t value_tag, /* I - Type of attribute */
ef416fc2 449 const char *name, /* I - Name of attribute */
450 int num_values, /* I - Number of values */
451 const int *values) /* I - Values */
452{
453 int i; /* Looping var */
454 ipp_attribute_t *attr; /* New attribute */
a2326b5b 455 _ipp_value_t *value; /* Current value */
ef416fc2 456
457
807315e6 458 DEBUG_printf(("ippAddIntegers(ipp=%p, group=%02x(%s), type=%02x(%s), name=\"%s\", num_values=%d, values=%p)", (void *)ipp, group, ippTagString(group), value_tag, ippTagString(value_tag), name, num_values, (void *)values));
1ff0402e 459
cb7f98ee 460 value_tag &= IPP_TAG_CUPS_MASK;
a2326b5b
MS
461
462 /*
463 * Range check input...
464 */
ef416fc2 465
a2326b5b
MS
466#if 0
467 if (!ipp || !name || group < IPP_TAG_ZERO ||
468 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
469 (value_tag != IPP_TAG_INTEGER && value_tag != IPP_TAG_ENUM) ||
470 num_values < 1)
471 return (NULL);
472#else
473 if (!ipp || !name || group < IPP_TAG_ZERO ||
474 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
475 num_values < 1)
ef416fc2 476 return (NULL);
a2326b5b 477#endif /* 0 */
ef416fc2 478
a2326b5b
MS
479 /*
480 * Create the attribute...
481 */
482
483 if ((attr = ipp_add_attr(ipp, name, group, value_tag, num_values)) == NULL)
484 return (NULL);
ef416fc2 485
a2326b5b
MS
486 if (values)
487 {
488 for (i = num_values, value = attr->values;
489 i > 0;
490 i --, value ++)
491 value->integer = *values++;
492 }
ef416fc2 493
494 return (attr);
495}
496
497
498/*
499 * 'ippAddOctetString()' - Add an octetString value to an IPP message.
500 *
a469f8a5
MS
501 * The @code ipp@ parameter refers to an IPP message previously created using
502 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
503 *
504 * The @code group@ parameter specifies the IPP attribute group tag: none
505 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
506 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
507 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
508 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
509 *
8072030b 510 * @since CUPS 1.2/macOS 10.5@
ef416fc2 511 */
512
513ipp_attribute_t * /* O - New attribute */
514ippAddOctetString(ipp_t *ipp, /* I - IPP message */
515 ipp_tag_t group, /* I - IPP group */
516 const char *name, /* I - Name of attribute */
517 const void *data, /* I - octetString data */
518 int datalen) /* I - Length of data in bytes */
519{
520 ipp_attribute_t *attr; /* New attribute */
521
522
a2326b5b 523 if (!ipp || !name || group < IPP_TAG_ZERO ||
5a9febac 524 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
a469f8a5 525 datalen < 0 || datalen > IPP_MAX_LENGTH)
ef416fc2 526 return (NULL);
527
a2326b5b 528 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_STRING, 1)) == NULL)
ef416fc2 529 return (NULL);
530
531 /*
532 * Initialize the attribute data...
533 */
534
ef416fc2 535 attr->values[0].unknown.length = datalen;
536
537 if (data)
538 {
7e86f2f6 539 if ((attr->values[0].unknown.data = malloc((size_t)datalen)) == NULL)
91c84a35
MS
540 {
541 ippDeleteAttribute(ipp, attr);
542 return (NULL);
543 }
544
07623986 545 memcpy(attr->values[0].unknown.data, data, (size_t)datalen);
ef416fc2 546 }
547
548 /*
549 * Return the new attribute...
550 */
551
552 return (attr);
553}
554
555
556/*
a2326b5b
MS
557 * 'ippAddOutOfBand()' - Add an out-of-band value to an IPP message.
558 *
a469f8a5
MS
559 * The @code ipp@ parameter refers to an IPP message previously created using
560 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
561 *
562 * The @code group@ parameter specifies the IPP attribute group tag: none
563 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
564 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
565 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
566 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
567 *
568 * Supported out-of-band values include unsupported-value
569 * (@code IPP_TAG_UNSUPPORTED_VALUE@), default (@code IPP_TAG_DEFAULT@), unknown
570 * (@code IPP_TAG_UNKNOWN@), no-value (@code IPP_TAG_NOVALUE@), not-settable
571 * (@code IPP_TAG_NOTSETTABLE@), delete-attribute (@code IPP_TAG_DELETEATTR@), and
572 * admin-define (@code IPP_TAG_ADMINDEFINE@).
573 *
8072030b 574 * @since CUPS 1.6/macOS 10.8@
ef416fc2 575 */
576
a2326b5b
MS
577ipp_attribute_t * /* O - New attribute */
578ippAddOutOfBand(ipp_t *ipp, /* I - IPP message */
579 ipp_tag_t group, /* I - IPP group */
580 ipp_tag_t value_tag, /* I - Type of attribute */
581 const char *name) /* I - Name of attribute */
ef416fc2 582{
807315e6 583 DEBUG_printf(("ippAddOutOfBand(ipp=%p, group=%02x(%s), value_tag=%02x(%s), name=\"%s\")", (void *)ipp, group, ippTagString(group), value_tag, ippTagString(value_tag), name));
ef416fc2 584
cb7f98ee 585 value_tag &= IPP_TAG_CUPS_MASK;
ef416fc2 586
4400e98d 587 /*
a2326b5b 588 * Range check input...
4400e98d 589 */
590
a2326b5b
MS
591 if (!ipp || !name || group < IPP_TAG_ZERO ||
592 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
593 (value_tag != IPP_TAG_UNSUPPORTED_VALUE &&
594 value_tag != IPP_TAG_DEFAULT &&
595 value_tag != IPP_TAG_UNKNOWN &&
596 value_tag != IPP_TAG_NOVALUE &&
597 value_tag != IPP_TAG_NOTSETTABLE &&
598 value_tag != IPP_TAG_DELETEATTR &&
599 value_tag != IPP_TAG_ADMINDEFINE))
ef416fc2 600 return (NULL);
601
602 /*
a2326b5b 603 * Create the attribute...
ef416fc2 604 */
605
a2326b5b 606 return (ipp_add_attr(ipp, name, group, value_tag, 1));
ef416fc2 607}
608
609
610/*
611 * 'ippAddRange()' - Add a range of values to an IPP message.
a2326b5b 612 *
a469f8a5
MS
613 * The @code ipp@ parameter refers to an IPP message previously created using
614 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
615 *
616 * The @code group@ parameter specifies the IPP attribute group tag: none
617 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
618 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
619 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
620 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
621 *
622 * The @code lower@ parameter must be less than or equal to the @code upper@ parameter.
ef416fc2 623 */
624
625ipp_attribute_t * /* O - New attribute */
626ippAddRange(ipp_t *ipp, /* I - IPP message */
627 ipp_tag_t group, /* I - IPP group */
628 const char *name, /* I - Name of attribute */
629 int lower, /* I - Lower value */
630 int upper) /* I - Upper value */
631{
632 ipp_attribute_t *attr; /* New attribute */
633
634
807315e6 635 DEBUG_printf(("ippAddRange(ipp=%p, group=%02x(%s), name=\"%s\", lower=%d, upper=%d)", (void *)ipp, group, ippTagString(group), name, lower, upper));
1ff0402e 636
a2326b5b
MS
637 /*
638 * Range check input...
639 */
640
641 if (!ipp || !name || group < IPP_TAG_ZERO ||
642 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE)
ef416fc2 643 return (NULL);
644
a2326b5b
MS
645 /*
646 * Create the attribute...
647 */
648
649 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_RANGE, 1)) == NULL)
ef416fc2 650 return (NULL);
651
ef416fc2 652 attr->values[0].range.lower = lower;
653 attr->values[0].range.upper = upper;
654
655 return (attr);
656}
657
658
659/*
660 * 'ippAddRanges()' - Add ranges of values to an IPP message.
a2326b5b 661 *
a469f8a5
MS
662 * The @code ipp@ parameter refers to an IPP message previously created using
663 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
664 *
665 * The @code group@ parameter specifies the IPP attribute group tag: none
666 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
667 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
668 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
669 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
ef416fc2 670 */
671
672ipp_attribute_t * /* O - New attribute */
673ippAddRanges(ipp_t *ipp, /* I - IPP message */
674 ipp_tag_t group, /* I - IPP group */
675 const char *name, /* I - Name of attribute */
676 int num_values, /* I - Number of values */
677 const int *lower, /* I - Lower values */
678 const int *upper) /* I - Upper values */
679{
680 int i; /* Looping var */
681 ipp_attribute_t *attr; /* New attribute */
a2326b5b 682 _ipp_value_t *value; /* Current value */
ef416fc2 683
684
807315e6 685 DEBUG_printf(("ippAddRanges(ipp=%p, group=%02x(%s), name=\"%s\", num_values=%d, lower=%p, upper=%p)", (void *)ipp, group, ippTagString(group), name, num_values, (void *)lower, (void *)upper));
1ff0402e 686
a2326b5b
MS
687 /*
688 * Range check input...
689 */
ef416fc2 690
a2326b5b
MS
691 if (!ipp || !name || group < IPP_TAG_ZERO ||
692 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
693 num_values < 1)
ef416fc2 694 return (NULL);
695
a2326b5b
MS
696 /*
697 * Create the attribute...
698 */
699
700 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_RANGE, num_values)) == NULL)
701 return (NULL);
ef416fc2 702
a2326b5b
MS
703 if (lower && upper)
704 {
705 for (i = num_values, value = attr->values;
706 i > 0;
707 i --, value ++)
ef416fc2 708 {
a2326b5b
MS
709 value->range.lower = *lower++;
710 value->range.upper = *upper++;
ef416fc2 711 }
a2326b5b 712 }
ef416fc2 713
714 return (attr);
715}
716
717
718/*
719 * 'ippAddResolution()' - Add a resolution value to an IPP message.
a2326b5b 720 *
a469f8a5
MS
721 * The @code ipp@ parameter refers to an IPP message previously created using
722 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
723 *
724 * The @code group@ parameter specifies the IPP attribute group tag: none
725 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
726 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
727 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
728 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
ef416fc2 729 */
730
731ipp_attribute_t * /* O - New attribute */
732ippAddResolution(ipp_t *ipp, /* I - IPP message */
733 ipp_tag_t group, /* I - IPP group */
734 const char *name, /* I - Name of attribute */
735 ipp_res_t units, /* I - Units for resolution */
736 int xres, /* I - X resolution */
737 int yres) /* I - Y resolution */
738{
739 ipp_attribute_t *attr; /* New attribute */
740
741
807315e6 742 DEBUG_printf(("ippAddResolution(ipp=%p, group=%02x(%s), name=\"%s\", units=%d, xres=%d, yres=%d)", (void *)ipp, group,
1ff0402e
MS
743 ippTagString(group), name, units, xres, yres));
744
a2326b5b
MS
745 /*
746 * Range check input...
747 */
748
749 if (!ipp || !name || group < IPP_TAG_ZERO ||
750 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
751 units < IPP_RES_PER_INCH || units > IPP_RES_PER_CM ||
752 xres < 0 || yres < 0)
ef416fc2 753 return (NULL);
754
a2326b5b
MS
755 /*
756 * Create the attribute...
757 */
758
759 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_RESOLUTION, 1)) == NULL)
ef416fc2 760 return (NULL);
761
ef416fc2 762 attr->values[0].resolution.xres = xres;
763 attr->values[0].resolution.yres = yres;
764 attr->values[0].resolution.units = units;
765
766 return (attr);
767}
768
769
770/*
771 * 'ippAddResolutions()' - Add resolution values to an IPP message.
a2326b5b 772 *
a469f8a5
MS
773 * The @code ipp@ parameter refers to an IPP message previously created using
774 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
775 *
776 * The @code group@ parameter specifies the IPP attribute group tag: none
777 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
778 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
779 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
780 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
ef416fc2 781 */
782
783ipp_attribute_t * /* O - New attribute */
784ippAddResolutions(ipp_t *ipp, /* I - IPP message */
785 ipp_tag_t group, /* I - IPP group */
786 const char *name, /* I - Name of attribute */
787 int num_values,/* I - Number of values */
788 ipp_res_t units, /* I - Units for resolution */
789 const int *xres, /* I - X resolutions */
790 const int *yres) /* I - Y resolutions */
791{
792 int i; /* Looping var */
793 ipp_attribute_t *attr; /* New attribute */
a2326b5b 794 _ipp_value_t *value; /* Current value */
ef416fc2 795
796
807315e6 797 DEBUG_printf(("ippAddResolutions(ipp=%p, group=%02x(%s), name=\"%s\", num_value=%d, units=%d, xres=%p, yres=%p)", (void *)ipp, group, ippTagString(group), name, num_values, units, (void *)xres, (void *)yres));
1ff0402e 798
a2326b5b
MS
799 /*
800 * Range check input...
801 */
ef416fc2 802
a2326b5b
MS
803 if (!ipp || !name || group < IPP_TAG_ZERO ||
804 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
805 num_values < 1 ||
806 units < IPP_RES_PER_INCH || units > IPP_RES_PER_CM)
ef416fc2 807 return (NULL);
808
a2326b5b
MS
809 /*
810 * Create the attribute...
811 */
812
813 if ((attr = ipp_add_attr(ipp, name, group, IPP_TAG_RESOLUTION, num_values)) == NULL)
814 return (NULL);
ef416fc2 815
a2326b5b
MS
816 if (xres && yres)
817 {
818 for (i = num_values, value = attr->values;
819 i > 0;
820 i --, value ++)
ef416fc2 821 {
a2326b5b
MS
822 value->resolution.xres = *xres++;
823 value->resolution.yres = *yres++;
ef416fc2 824 value->resolution.units = units;
825 }
a2326b5b 826 }
ef416fc2 827
828 return (attr);
829}
830
831
832/*
833 * 'ippAddSeparator()' - Add a group separator to an IPP message.
a2326b5b 834 *
a469f8a5
MS
835 * The @code ipp@ parameter refers to an IPP message previously created using
836 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
ef416fc2 837 */
838
839ipp_attribute_t * /* O - New attribute */
840ippAddSeparator(ipp_t *ipp) /* I - IPP message */
841{
807315e6 842 DEBUG_printf(("ippAddSeparator(ipp=%p)", (void *)ipp));
ef416fc2 843
a2326b5b
MS
844 /*
845 * Range check input...
846 */
ef416fc2 847
a2326b5b 848 if (!ipp)
ef416fc2 849 return (NULL);
850
a2326b5b
MS
851 /*
852 * Create the attribute...
853 */
ef416fc2 854
a2326b5b 855 return (ipp_add_attr(ipp, NULL, IPP_TAG_ZERO, IPP_TAG_ZERO, 0));
ef416fc2 856}
857
858
859/*
a2326b5b
MS
860 * 'ippAddString()' - Add a language-encoded string to an IPP message.
861 *
a469f8a5
MS
862 * The @code ipp@ parameter refers to an IPP message previously created using
863 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
864 *
865 * The @code group@ parameter specifies the IPP attribute group tag: none
866 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
867 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
868 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
869 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
870 *
871 * Supported string values include charset (@code IPP_TAG_CHARSET@), keyword
872 * (@code IPP_TAG_KEYWORD@), language (@code IPP_TAG_LANGUAGE@), mimeMediaType
873 * (@code IPP_TAG_MIMETYPE@), name (@code IPP_TAG_NAME@), nameWithLanguage
874 * (@code IPP_TAG_NAMELANG), text (@code IPP_TAG_TEXT@), textWithLanguage
875 * (@code IPP_TAG_TEXTLANG@), uri (@code IPP_TAG_URI@), and uriScheme
876 * (@code IPP_TAG_URISCHEME@).
877 *
878 * The @code language@ parameter must be non-@code NULL@ for nameWithLanguage and
879 * textWithLanguage string values and must be @code NULL@ for all other string values.
ef416fc2 880 */
881
a2326b5b
MS
882ipp_attribute_t * /* O - New attribute */
883ippAddString(ipp_t *ipp, /* I - IPP message */
884 ipp_tag_t group, /* I - IPP group */
885 ipp_tag_t value_tag, /* I - Type of attribute */
886 const char *name, /* I - Name of attribute */
887 const char *language, /* I - Language code */
888 const char *value) /* I - Value */
ef416fc2 889{
a2326b5b
MS
890 ipp_tag_t temp_tag; /* Temporary value tag (masked) */
891 ipp_attribute_t *attr; /* New attribute */
5a9febac
MS
892 char code[IPP_MAX_LANGUAGE];
893 /* Charset/language code buffer */
ef416fc2 894
1ff0402e 895
807315e6 896 DEBUG_printf(("ippAddString(ipp=%p, group=%02x(%s), value_tag=%02x(%s), name=\"%s\", language=\"%s\", value=\"%s\")", (void *)ipp, group, ippTagString(group), value_tag, ippTagString(value_tag), name, language, value));
ef416fc2 897
898 /*
a2326b5b 899 * Range check input...
ef416fc2 900 */
901
cb7f98ee 902 temp_tag = (ipp_tag_t)((int)value_tag & IPP_TAG_CUPS_MASK);
ef416fc2 903
a2326b5b
MS
904#if 0
905 if (!ipp || !name || group < IPP_TAG_ZERO ||
906 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
907 (temp_tag < IPP_TAG_TEXT && temp_tag != IPP_TAG_TEXTLANG &&
908 temp_tag != IPP_TAG_NAMELANG) || temp_tag > IPP_TAG_MIMETYPE)
909 return (NULL);
ef416fc2 910
a2326b5b
MS
911 if ((temp_tag == IPP_TAG_TEXTLANG || temp_tag == IPP_TAG_NAMELANG)
912 != (language != NULL))
913 return (NULL);
914#else
915 if (!ipp || !name || group < IPP_TAG_ZERO ||
916 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE)
917 return (NULL);
918#endif /* 0 */
ef416fc2 919
a2326b5b
MS
920 /*
921 * See if we need to map charset, language, or locale values...
922 */
ef416fc2 923
cb7f98ee 924 if (language && ((int)value_tag & IPP_TAG_CUPS_CONST) &&
a2326b5b
MS
925 strcmp(language, ipp_lang_code(language, code, sizeof(code))))
926 value_tag = temp_tag; /* Don't do a fast copy */
cb7f98ee 927 else if (value && value_tag == (ipp_tag_t)(IPP_TAG_CHARSET | IPP_TAG_CUPS_CONST) &&
a2326b5b
MS
928 strcmp(value, ipp_get_code(value, code, sizeof(code))))
929 value_tag = temp_tag; /* Don't do a fast copy */
cb7f98ee 930 else if (value && value_tag == (ipp_tag_t)(IPP_TAG_LANGUAGE | IPP_TAG_CUPS_CONST) &&
a2326b5b
MS
931 strcmp(value, ipp_lang_code(value, code, sizeof(code))))
932 value_tag = temp_tag; /* Don't do a fast copy */
ef416fc2 933
a2326b5b
MS
934 /*
935 * Create the attribute...
936 */
ef416fc2 937
a2326b5b
MS
938 if ((attr = ipp_add_attr(ipp, name, group, value_tag, 1)) == NULL)
939 return (NULL);
ef416fc2 940
a2326b5b
MS
941 /*
942 * Initialize the attribute data...
943 */
aaf19ab0 944
cb7f98ee 945 if ((int)value_tag & IPP_TAG_CUPS_CONST)
ef416fc2 946 {
a2326b5b
MS
947 attr->values[0].string.language = (char *)language;
948 attr->values[0].string.text = (char *)value;
949 }
950 else
951 {
952 if (language)
953 attr->values[0].string.language = _cupsStrAlloc(ipp_lang_code(language, code,
954 sizeof(code)));
955
82cc1f9a
MS
956 if (value)
957 {
958 if (value_tag == IPP_TAG_CHARSET)
959 attr->values[0].string.text = _cupsStrAlloc(ipp_get_code(value, code,
960 sizeof(code)));
961 else if (value_tag == IPP_TAG_LANGUAGE)
962 attr->values[0].string.text = _cupsStrAlloc(ipp_lang_code(value, code,
963 sizeof(code)));
964 else
965 attr->values[0].string.text = _cupsStrAlloc(value);
966 }
ef416fc2 967 }
968
a2326b5b 969 return (attr);
ef416fc2 970}
971
972
a469f8a5
MS
973/*
974 * 'ippAddStringf()' - Add a formatted string to an IPP message.
975 *
976 * The @code ipp@ parameter refers to an IPP message previously created using
977 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
978 *
979 * The @code group@ parameter specifies the IPP attribute group tag: none
980 * (@code IPP_TAG_ZERO@, for member attributes), document
981 * (@code IPP_TAG_DOCUMENT@), event notification
982 * (@code IPP_TAG_EVENT_NOTIFICATION@), operation (@code IPP_TAG_OPERATION@),
983 * printer (@code IPP_TAG_PRINTER@), subscription (@code IPP_TAG_SUBSCRIPTION@),
984 * or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
985 *
986 * Supported string values include charset (@code IPP_TAG_CHARSET@), keyword
987 * (@code IPP_TAG_KEYWORD@), language (@code IPP_TAG_LANGUAGE@), mimeMediaType
988 * (@code IPP_TAG_MIMETYPE@), name (@code IPP_TAG_NAME@), nameWithLanguage
989 * (@code IPP_TAG_NAMELANG), text (@code IPP_TAG_TEXT@), textWithLanguage
990 * (@code IPP_TAG_TEXTLANG@), uri (@code IPP_TAG_URI@), and uriScheme
991 * (@code IPP_TAG_URISCHEME@).
992 *
993 * The @code language@ parameter must be non-@code NULL@ for nameWithLanguage
994 * and textWithLanguage string values and must be @code NULL@ for all other
995 * string values.
996 *
997 * The @code format@ parameter uses formatting characters compatible with the
998 * printf family of standard functions. Additional arguments follow it as
999 * needed. The formatted string is truncated as needed to the maximum length of
1000 * the corresponding value type.
1001 *
8072030b 1002 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
1003 */
1004
1005ipp_attribute_t * /* O - New attribute */
1006ippAddStringf(ipp_t *ipp, /* I - IPP message */
1007 ipp_tag_t group, /* I - IPP group */
1008 ipp_tag_t value_tag, /* I - Type of attribute */
1009 const char *name, /* I - Name of attribute */
1010 const char *language, /* I - Language code (@code NULL@ for default) */
1011 const char *format, /* I - Printf-style format string */
1012 ...) /* I - Additional arguments as needed */
1013{
1014 ipp_attribute_t *attr; /* New attribute */
1015 va_list ap; /* Argument pointer */
1016
1017
1018 va_start(ap, format);
1019 attr = ippAddStringfv(ipp, group, value_tag, name, language, format, ap);
1020 va_end(ap);
1021
1022 return (attr);
1023}
1024
1025
1026/*
1027 * 'ippAddStringfv()' - Add a formatted string to an IPP message.
1028 *
1029 * The @code ipp@ parameter refers to an IPP message previously created using
1030 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
1031 *
1032 * The @code group@ parameter specifies the IPP attribute group tag: none
1033 * (@code IPP_TAG_ZERO@, for member attributes), document
1034 * (@code IPP_TAG_DOCUMENT@), event notification
1035 * (@code IPP_TAG_EVENT_NOTIFICATION@), operation (@code IPP_TAG_OPERATION@),
1036 * printer (@code IPP_TAG_PRINTER@), subscription (@code IPP_TAG_SUBSCRIPTION@),
1037 * or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
1038 *
1039 * Supported string values include charset (@code IPP_TAG_CHARSET@), keyword
1040 * (@code IPP_TAG_KEYWORD@), language (@code IPP_TAG_LANGUAGE@), mimeMediaType
1041 * (@code IPP_TAG_MIMETYPE@), name (@code IPP_TAG_NAME@), nameWithLanguage
1042 * (@code IPP_TAG_NAMELANG), text (@code IPP_TAG_TEXT@), textWithLanguage
1043 * (@code IPP_TAG_TEXTLANG@), uri (@code IPP_TAG_URI@), and uriScheme
1044 * (@code IPP_TAG_URISCHEME@).
1045 *
1046 * The @code language@ parameter must be non-@code NULL@ for nameWithLanguage
1047 * and textWithLanguage string values and must be @code NULL@ for all other
1048 * string values.
1049 *
1050 * The @code format@ parameter uses formatting characters compatible with the
1051 * printf family of standard functions. Additional arguments are passed in the
1052 * stdarg pointer @code ap@. The formatted string is truncated as needed to the
1053 * maximum length of the corresponding value type.
1054 *
8072030b 1055 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
1056 */
1057
1058ipp_attribute_t * /* O - New attribute */
1059ippAddStringfv(ipp_t *ipp, /* I - IPP message */
1060 ipp_tag_t group, /* I - IPP group */
1061 ipp_tag_t value_tag, /* I - Type of attribute */
1062 const char *name, /* I - Name of attribute */
1063 const char *language, /* I - Language code (@code NULL@ for default) */
1064 const char *format, /* I - Printf-style format string */
1065 va_list ap) /* I - Additional arguments */
1066{
1067 char buffer[IPP_MAX_TEXT + 4];
1068 /* Formatted text string */
1069 ssize_t bytes, /* Length of formatted value */
1070 max_bytes; /* Maximum number of bytes for value */
1071
1072
1073 /*
1074 * Range check input...
1075 */
1076
1077 if (!ipp || !name || group < IPP_TAG_ZERO ||
1078 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
1079 (value_tag < IPP_TAG_TEXT && value_tag != IPP_TAG_TEXTLANG &&
1080 value_tag != IPP_TAG_NAMELANG) || value_tag > IPP_TAG_MIMETYPE ||
56cd8959 1081 !format)
a469f8a5
MS
1082 return (NULL);
1083
1084 if ((value_tag == IPP_TAG_TEXTLANG || value_tag == IPP_TAG_NAMELANG)
1085 != (language != NULL))
1086 return (NULL);
1087
1088 /*
1089 * Format the string...
1090 */
1091
1092 if (!strcmp(format, "%s"))
1093 {
1094 /*
1095 * Optimize the simple case...
1096 */
1097
1098 const char *s = va_arg(ap, char *);
1099
1100 if (!s)
1101 s = "(null)";
1102
7e86f2f6 1103 bytes = (ssize_t)strlen(s);
a469f8a5
MS
1104 strlcpy(buffer, s, sizeof(buffer));
1105 }
1106 else
1107 {
1108 /*
1109 * Do a full formatting of the message...
1110 */
1111
1112 if ((bytes = vsnprintf(buffer, sizeof(buffer), format, ap)) < 0)
1113 return (NULL);
1114 }
1115
1116 /*
1117 * Limit the length of the string...
1118 */
1119
1120 switch (value_tag)
1121 {
1122 default :
1123 case IPP_TAG_TEXT :
1124 case IPP_TAG_TEXTLANG :
1125 max_bytes = IPP_MAX_TEXT;
1126 break;
1127
1128 case IPP_TAG_NAME :
1129 case IPP_TAG_NAMELANG :
1130 max_bytes = IPP_MAX_NAME;
1131 break;
1132
1133 case IPP_TAG_CHARSET :
1134 max_bytes = IPP_MAX_CHARSET;
1135 break;
1136
1137 case IPP_TAG_KEYWORD :
1138 max_bytes = IPP_MAX_KEYWORD;
1139 break;
1140
1141 case IPP_TAG_LANGUAGE :
1142 max_bytes = IPP_MAX_LANGUAGE;
1143 break;
1144
1145 case IPP_TAG_MIMETYPE :
1146 max_bytes = IPP_MAX_MIMETYPE;
1147 break;
1148
1149 case IPP_TAG_URI :
1150 max_bytes = IPP_MAX_URI;
1151 break;
1152
1153 case IPP_TAG_URISCHEME :
1154 max_bytes = IPP_MAX_URISCHEME;
1155 break;
1156 }
1157
1158 if (bytes >= max_bytes)
1159 {
1160 char *bufmax, /* Buffer at max_bytes */
1161 *bufptr; /* Pointer into buffer */
1162
1163 bufptr = buffer + strlen(buffer) - 1;
1164 bufmax = buffer + max_bytes - 1;
1165
1166 while (bufptr > bufmax)
1167 {
1168 if (*bufptr & 0x80)
1169 {
1170 while ((*bufptr & 0xc0) == 0x80 && bufptr > buffer)
1171 bufptr --;
1172 }
1173
1174 bufptr --;
1175 }
1176
1177 *bufptr = '\0';
1178 }
1179
1180 /*
1181 * Add the formatted string and return...
1182 */
1183
1184 return (ippAddString(ipp, group, value_tag, name, language, buffer));
1185}
1186
1187
ef416fc2 1188/*
a2326b5b 1189 * 'ippAddStrings()' - Add language-encoded strings to an IPP message.
ef416fc2 1190 *
a469f8a5
MS
1191 * The @code ipp@ parameter refers to an IPP message previously created using
1192 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
1193 *
1194 * The @code group@ parameter specifies the IPP attribute group tag: none
1195 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
1196 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
1197 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
1198 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
1199 *
1200 * Supported string values include charset (@code IPP_TAG_CHARSET@), keyword
1201 * (@code IPP_TAG_KEYWORD@), language (@code IPP_TAG_LANGUAGE@), mimeMediaType
1202 * (@code IPP_TAG_MIMETYPE@), name (@code IPP_TAG_NAME@), nameWithLanguage
1203 * (@code IPP_TAG_NAMELANG), text (@code IPP_TAG_TEXT@), textWithLanguage
1204 * (@code IPP_TAG_TEXTLANG@), uri (@code IPP_TAG_URI@), and uriScheme
1205 * (@code IPP_TAG_URISCHEME@).
1206 *
1207 * The @code language@ parameter must be non-@code NULL@ for nameWithLanguage and
1208 * textWithLanguage string values and must be @code NULL@ for all other string values.
ef416fc2 1209 */
1210
a2326b5b
MS
1211ipp_attribute_t * /* O - New attribute */
1212ippAddStrings(
1213 ipp_t *ipp, /* I - IPP message */
1214 ipp_tag_t group, /* I - IPP group */
1215 ipp_tag_t value_tag, /* I - Type of attribute */
1216 const char *name, /* I - Name of attribute */
1217 int num_values, /* I - Number of values */
1218 const char *language, /* I - Language code (@code NULL@ for default) */
1219 const char * const *values) /* I - Values */
ef416fc2 1220{
a2326b5b
MS
1221 int i; /* Looping var */
1222 ipp_tag_t temp_tag; /* Temporary value tag (masked) */
1223 ipp_attribute_t *attr; /* New attribute */
1224 _ipp_value_t *value; /* Current value */
1225 char code[32]; /* Language/charset value buffer */
ef416fc2 1226
1227
807315e6 1228 DEBUG_printf(("ippAddStrings(ipp=%p, group=%02x(%s), value_tag=%02x(%s), name=\"%s\", num_values=%d, language=\"%s\", values=%p)", (void *)ipp, group, ippTagString(group), value_tag, ippTagString(value_tag), name, num_values, language, (void *)values));
1ff0402e 1229
ef416fc2 1230 /*
a2326b5b 1231 * Range check input...
ef416fc2 1232 */
1233
cb7f98ee 1234 temp_tag = (ipp_tag_t)((int)value_tag & IPP_TAG_CUPS_MASK);
ef416fc2 1235
a2326b5b
MS
1236#if 0
1237 if (!ipp || !name || group < IPP_TAG_ZERO ||
1238 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
1239 (temp_tag < IPP_TAG_TEXT && temp_tag != IPP_TAG_TEXTLANG &&
1240 temp_tag != IPP_TAG_NAMELANG) || temp_tag > IPP_TAG_MIMETYPE ||
1241 num_values < 1)
1242 return (NULL);
ef416fc2 1243
a2326b5b
MS
1244 if ((temp_tag == IPP_TAG_TEXTLANG || temp_tag == IPP_TAG_NAMELANG)
1245 != (language != NULL))
1246 return (NULL);
1247#else
1248 if (!ipp || !name || group < IPP_TAG_ZERO ||
1249 group == IPP_TAG_END || group >= IPP_TAG_UNSUPPORTED_VALUE ||
1250 num_values < 1)
1251 return (NULL);
1252#endif /* 0 */
ef416fc2 1253
a2326b5b
MS
1254 /*
1255 * See if we need to map charset, language, or locale values...
1256 */
ef416fc2 1257
cb7f98ee 1258 if (language && ((int)value_tag & IPP_TAG_CUPS_CONST) &&
a2326b5b
MS
1259 strcmp(language, ipp_lang_code(language, code, sizeof(code))))
1260 value_tag = temp_tag; /* Don't do a fast copy */
cb7f98ee 1261 else if (values && value_tag == (ipp_tag_t)(IPP_TAG_CHARSET | IPP_TAG_CUPS_CONST))
a2326b5b
MS
1262 {
1263 for (i = 0; i < num_values; i ++)
1264 if (strcmp(values[i], ipp_get_code(values[i], code, sizeof(code))))
1265 {
1266 value_tag = temp_tag; /* Don't do a fast copy */
1267 break;
1268 }
1269 }
cb7f98ee 1270 else if (values && value_tag == (ipp_tag_t)(IPP_TAG_LANGUAGE | IPP_TAG_CUPS_CONST))
a2326b5b
MS
1271 {
1272 for (i = 0; i < num_values; i ++)
1273 if (strcmp(values[i], ipp_lang_code(values[i], code, sizeof(code))))
1274 {
1275 value_tag = temp_tag; /* Don't do a fast copy */
1276 break;
1277 }
ef416fc2 1278 }
ef416fc2 1279
a2326b5b
MS
1280 /*
1281 * Create the attribute...
1282 */
ef416fc2 1283
a2326b5b 1284 if ((attr = ipp_add_attr(ipp, name, group, value_tag, num_values)) == NULL)
ef416fc2 1285 return (NULL);
1286
1287 /*
a2326b5b 1288 * Initialize the attribute data...
ef416fc2 1289 */
1290
a2326b5b
MS
1291 for (i = num_values, value = attr->values;
1292 i > 0;
1293 i --, value ++)
1294 {
1295 if (language)
1296 {
1297 if (value == attr->values)
1298 {
cb7f98ee 1299 if ((int)value_tag & IPP_TAG_CUPS_CONST)
a2326b5b
MS
1300 value->string.language = (char *)language;
1301 else
1302 value->string.language = _cupsStrAlloc(ipp_lang_code(language, code,
1303 sizeof(code)));
1304 }
1305 else
1306 value->string.language = attr->values[0].string.language;
1307 }
ef416fc2 1308
a2326b5b
MS
1309 if (values)
1310 {
cb7f98ee 1311 if ((int)value_tag & IPP_TAG_CUPS_CONST)
a2326b5b
MS
1312 value->string.text = (char *)*values++;
1313 else if (value_tag == IPP_TAG_CHARSET)
1314 value->string.text = _cupsStrAlloc(ipp_get_code(*values++, code, sizeof(code)));
1315 else if (value_tag == IPP_TAG_LANGUAGE)
1316 value->string.text = _cupsStrAlloc(ipp_lang_code(*values++, code, sizeof(code)));
1317 else
1318 value->string.text = _cupsStrAlloc(*values++);
1319 }
1320 }
ef416fc2 1321
a2326b5b 1322 return (attr);
ef416fc2 1323}
1324
1325
a469f8a5
MS
1326/*
1327 * 'ippContainsInteger()' - Determine whether an attribute contains the
1328 * specified value or is within the list of ranges.
1329 *
1330 * Returns non-zero when the attribute contains either a matching integer or
1331 * enum value, or the value falls within one of the rangeOfInteger values for
1332 * the attribute.
1333 *
8072030b 1334 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
1335 */
1336
1337int /* O - 1 on a match, 0 on no match */
1338ippContainsInteger(
1339 ipp_attribute_t *attr, /* I - Attribute */
1340 int value) /* I - Integer/enum value */
1341{
1342 int i; /* Looping var */
1343 _ipp_value_t *avalue; /* Current attribute value */
1344
1345
1346 /*
1347 * Range check input...
1348 */
1349
1350 if (!attr)
1351 return (0);
1352
1353 if (attr->value_tag != IPP_TAG_INTEGER && attr->value_tag != IPP_TAG_ENUM &&
1354 attr->value_tag != IPP_TAG_RANGE)
1355 return (0);
1356
1357 /*
1358 * Compare...
1359 */
1360
1361 if (attr->value_tag == IPP_TAG_RANGE)
1362 {
1363 for (i = attr->num_values, avalue = attr->values; i > 0; i --, avalue ++)
1364 if (value >= avalue->range.lower && value <= avalue->range.upper)
1365 return (1);
1366 }
1367 else
1368 {
1369 for (i = attr->num_values, avalue = attr->values; i > 0; i --, avalue ++)
1370 if (value == avalue->integer)
1371 return (1);
1372 }
1373
1374 return (0);
1375}
1376
1377
1378/*
1379 * 'ippContainsString()' - Determine whether an attribute contains the
1380 * specified string value.
1381 *
1382 * Returns non-zero when the attribute contains a matching charset, keyword,
65bebeac 1383 * naturalLanguage, mimeMediaType, name, text, uri, or uriScheme value.
a469f8a5 1384 *
8072030b 1385 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
1386 */
1387
1388int /* O - 1 on a match, 0 on no match */
1389ippContainsString(
1390 ipp_attribute_t *attr, /* I - Attribute */
1391 const char *value) /* I - String value */
1392{
1393 int i; /* Looping var */
1394 _ipp_value_t *avalue; /* Current attribute value */
1395
1396
807315e6 1397 DEBUG_printf(("ippContainsString(attr=%p, value=\"%s\")", (void *)attr, value));
a469f8a5
MS
1398
1399 /*
1400 * Range check input...
1401 */
1402
1403 if (!attr || !value)
1404 {
1405 DEBUG_puts("1ippContainsString: Returning 0 (bad input)");
1406 return (0);
1407 }
1408
1409 /*
1410 * Compare...
1411 */
1412
1413 DEBUG_printf(("1ippContainsString: attr %s, %s with %d values.",
1414 attr->name, ippTagString(attr->value_tag),
1415 attr->num_values));
1416
1417 switch (attr->value_tag & IPP_TAG_CUPS_MASK)
1418 {
1419 case IPP_TAG_CHARSET :
1420 case IPP_TAG_KEYWORD :
1421 case IPP_TAG_LANGUAGE :
a268a6c9
MS
1422 case IPP_TAG_URI :
1423 case IPP_TAG_URISCHEME :
1424 for (i = attr->num_values, avalue = attr->values;
1425 i > 0;
1426 i --, avalue ++)
1427 {
1428 DEBUG_printf(("1ippContainsString: value[%d]=\"%s\"",
1429 attr->num_values - i, avalue->string.text));
1430
1431 if (!strcmp(value, avalue->string.text))
1432 {
1433 DEBUG_puts("1ippContainsString: Returning 1 (match)");
1434 return (1);
1435 }
1436 }
1437
a469f8a5
MS
1438 case IPP_TAG_MIMETYPE :
1439 case IPP_TAG_NAME :
1440 case IPP_TAG_NAMELANG :
1441 case IPP_TAG_TEXT :
1442 case IPP_TAG_TEXTLANG :
a469f8a5
MS
1443 for (i = attr->num_values, avalue = attr->values;
1444 i > 0;
1445 i --, avalue ++)
1446 {
1447 DEBUG_printf(("1ippContainsString: value[%d]=\"%s\"",
1448 attr->num_values - i, avalue->string.text));
1449
a268a6c9 1450 if (!_cups_strcasecmp(value, avalue->string.text))
a469f8a5
MS
1451 {
1452 DEBUG_puts("1ippContainsString: Returning 1 (match)");
1453 return (1);
1454 }
1455 }
1456
1457 default :
1458 break;
1459 }
1460
1461 DEBUG_puts("1ippContainsString: Returning 0 (no match)");
1462
1463 return (0);
1464}
1465
1466
ef416fc2 1467/*
a2326b5b
MS
1468 * 'ippCopyAttribute()' - Copy an attribute.
1469 *
1470 * The specified attribute, @code attr@, is copied to the destination IPP message.
1471 * When @code quickcopy@ is non-zero, a "shallow" reference copy of the attribute is
1472 * created - this should only be done as long as the original source IPP message will
1473 * not be freed for the life of the destination.
1474 *
8072030b 1475 * @since CUPS 1.6/macOS 10.8@
ef416fc2 1476 */
1477
a2326b5b
MS
1478
1479ipp_attribute_t * /* O - New attribute */
1480ippCopyAttribute(
1481 ipp_t *dst, /* I - Destination IPP message */
1482 ipp_attribute_t *srcattr, /* I - Attribute to copy */
1483 int quickcopy) /* I - 1 for a referenced copy, 0 for normal */
ef416fc2 1484{
a2326b5b
MS
1485 int i; /* Looping var */
1486 ipp_attribute_t *dstattr; /* Destination attribute */
1487 _ipp_value_t *srcval, /* Source value */
1488 *dstval; /* Destination value */
ef416fc2 1489
1490
807315e6 1491 DEBUG_printf(("ippCopyAttribute(dst=%p, srcattr=%p, quickcopy=%d)", (void *)dst, (void *)srcattr, quickcopy));
ef416fc2 1492
a2326b5b
MS
1493 /*
1494 * Range check input...
1495 */
1496
1497 if (!dst || !srcattr)
ef416fc2 1498 return (NULL);
1499
a2326b5b
MS
1500 /*
1501 * Copy it...
1502 */
ef416fc2 1503
cb7f98ee 1504 quickcopy = quickcopy ? IPP_TAG_CUPS_CONST : 0;
a2326b5b 1505
cb7f98ee 1506 switch (srcattr->value_tag & ~IPP_TAG_CUPS_CONST)
ef416fc2 1507 {
a2326b5b
MS
1508 case IPP_TAG_ZERO :
1509 dstattr = ippAddSeparator(dst);
1510 break;
ef416fc2 1511
10f9350b
MS
1512 case IPP_TAG_UNSUPPORTED_VALUE :
1513 case IPP_TAG_DEFAULT :
1514 case IPP_TAG_UNKNOWN :
1515 case IPP_TAG_NOVALUE :
1516 case IPP_TAG_NOTSETTABLE :
1517 case IPP_TAG_DELETEATTR :
1518 case IPP_TAG_ADMINDEFINE :
1519 dstattr = ippAddOutOfBand(dst, srcattr->group_tag, srcattr->value_tag & ~IPP_TAG_CUPS_CONST, srcattr->name);
1520 break;
1521
a2326b5b
MS
1522 case IPP_TAG_INTEGER :
1523 case IPP_TAG_ENUM :
1524 dstattr = ippAddIntegers(dst, srcattr->group_tag, srcattr->value_tag,
1525 srcattr->name, srcattr->num_values, NULL);
1526 if (!dstattr)
1527 break;
1528
1529 for (i = srcattr->num_values, srcval = srcattr->values, dstval = dstattr->values;
1530 i > 0;
1531 i --, srcval ++, dstval ++)
1532 dstval->integer = srcval->integer;
1533 break;
ef416fc2 1534
a2326b5b
MS
1535 case IPP_TAG_BOOLEAN :
1536 dstattr = ippAddBooleans(dst, srcattr->group_tag, srcattr->name,
1537 srcattr->num_values, NULL);
1538 if (!dstattr)
1539 break;
1540
1541 for (i = srcattr->num_values, srcval = srcattr->values, dstval = dstattr->values;
1542 i > 0;
1543 i --, srcval ++, dstval ++)
1544 dstval->boolean = srcval->boolean;
1545 break;
ef416fc2 1546
a2326b5b
MS
1547 case IPP_TAG_TEXT :
1548 case IPP_TAG_NAME :
1549 case IPP_TAG_KEYWORD :
1550 case IPP_TAG_URI :
1551 case IPP_TAG_URISCHEME :
1552 case IPP_TAG_CHARSET :
1553 case IPP_TAG_LANGUAGE :
1554 case IPP_TAG_MIMETYPE :
1555 dstattr = ippAddStrings(dst, srcattr->group_tag,
1556 (ipp_tag_t)(srcattr->value_tag | quickcopy),
1557 srcattr->name, srcattr->num_values, NULL, NULL);
1558 if (!dstattr)
1559 break;
ef416fc2 1560
a2326b5b
MS
1561 if (quickcopy)
1562 {
1563 for (i = srcattr->num_values, srcval = srcattr->values,
1564 dstval = dstattr->values;
1565 i > 0;
1566 i --, srcval ++, dstval ++)
1567 dstval->string.text = srcval->string.text;
1568 }
cb7f98ee 1569 else if (srcattr->value_tag & IPP_TAG_CUPS_CONST)
a2326b5b
MS
1570 {
1571 for (i = srcattr->num_values, srcval = srcattr->values,
1572 dstval = dstattr->values;
1573 i > 0;
1574 i --, srcval ++, dstval ++)
1575 dstval->string.text = _cupsStrAlloc(srcval->string.text);
1576 }
1577 else
1578 {
1579 for (i = srcattr->num_values, srcval = srcattr->values,
1580 dstval = dstattr->values;
1581 i > 0;
1582 i --, srcval ++, dstval ++)
1583 dstval->string.text = _cupsStrRetain(srcval->string.text);
1584 }
1585 break;
ef416fc2 1586
a2326b5b
MS
1587 case IPP_TAG_DATE :
1588 if (srcattr->num_values != 1)
1589 return (NULL);
ef416fc2 1590
a2326b5b
MS
1591 dstattr = ippAddDate(dst, srcattr->group_tag, srcattr->name,
1592 srcattr->values[0].date);
1593 break;
ef416fc2 1594
a2326b5b
MS
1595 case IPP_TAG_RESOLUTION :
1596 dstattr = ippAddResolutions(dst, srcattr->group_tag, srcattr->name,
1597 srcattr->num_values, IPP_RES_PER_INCH,
1598 NULL, NULL);
1599 if (!dstattr)
1600 break;
1601
1602 for (i = srcattr->num_values, srcval = srcattr->values, dstval = dstattr->values;
1603 i > 0;
1604 i --, srcval ++, dstval ++)
1605 {
1606 dstval->resolution.xres = srcval->resolution.xres;
1607 dstval->resolution.yres = srcval->resolution.yres;
1608 dstval->resolution.units = srcval->resolution.units;
1609 }
1610 break;
ef416fc2 1611
a2326b5b
MS
1612 case IPP_TAG_RANGE :
1613 dstattr = ippAddRanges(dst, srcattr->group_tag, srcattr->name,
1614 srcattr->num_values, NULL, NULL);
1615 if (!dstattr)
1616 break;
1617
1618 for (i = srcattr->num_values, srcval = srcattr->values, dstval = dstattr->values;
1619 i > 0;
1620 i --, srcval ++, dstval ++)
1621 {
1622 dstval->range.lower = srcval->range.lower;
1623 dstval->range.upper = srcval->range.upper;
1624 }
1625 break;
ef416fc2 1626
a2326b5b
MS
1627 case IPP_TAG_TEXTLANG :
1628 case IPP_TAG_NAMELANG :
1629 dstattr = ippAddStrings(dst, srcattr->group_tag,
1630 (ipp_tag_t)(srcattr->value_tag | quickcopy),
1631 srcattr->name, srcattr->num_values, NULL, NULL);
1632 if (!dstattr)
1633 break;
ef416fc2 1634
a2326b5b
MS
1635 if (quickcopy)
1636 {
1637 for (i = srcattr->num_values, srcval = srcattr->values,
1638 dstval = dstattr->values;
1639 i > 0;
1640 i --, srcval ++, dstval ++)
1641 {
1642 dstval->string.language = srcval->string.language;
1643 dstval->string.text = srcval->string.text;
1644 }
1645 }
cb7f98ee 1646 else if (srcattr->value_tag & IPP_TAG_CUPS_CONST)
a2326b5b
MS
1647 {
1648 for (i = srcattr->num_values, srcval = srcattr->values,
1649 dstval = dstattr->values;
1650 i > 0;
1651 i --, srcval ++, dstval ++)
1652 {
1653 if (srcval == srcattr->values)
1654 dstval->string.language = _cupsStrAlloc(srcval->string.language);
1655 else
1656 dstval->string.language = dstattr->values[0].string.language;
ef416fc2 1657
a2326b5b
MS
1658 dstval->string.text = _cupsStrAlloc(srcval->string.text);
1659 }
1660 }
1661 else
1662 {
1663 for (i = srcattr->num_values, srcval = srcattr->values,
1664 dstval = dstattr->values;
1665 i > 0;
1666 i --, srcval ++, dstval ++)
1667 {
1668 if (srcval == srcattr->values)
1669 dstval->string.language = _cupsStrRetain(srcval->string.language);
1670 else
1671 dstval->string.language = dstattr->values[0].string.language;
ef416fc2 1672
a2326b5b
MS
1673 dstval->string.text = _cupsStrRetain(srcval->string.text);
1674 }
1675 }
1676 break;
ef416fc2 1677
a2326b5b
MS
1678 case IPP_TAG_BEGIN_COLLECTION :
1679 dstattr = ippAddCollections(dst, srcattr->group_tag, srcattr->name,
1680 srcattr->num_values, NULL);
1681 if (!dstattr)
1682 break;
1683
1684 for (i = srcattr->num_values, srcval = srcattr->values, dstval = dstattr->values;
1685 i > 0;
1686 i --, srcval ++, dstval ++)
1687 {
1688 dstval->collection = srcval->collection;
1689 srcval->collection->use ++;
1690 }
1691 break;
ef416fc2 1692
a2326b5b
MS
1693 case IPP_TAG_STRING :
1694 default :
1695 /* TODO: Implement quick copy for unknown/octetString values */
1696 dstattr = ippAddIntegers(dst, srcattr->group_tag, srcattr->value_tag,
1697 srcattr->name, srcattr->num_values, NULL);
1698 if (!dstattr)
1699 break;
1700
1701 for (i = srcattr->num_values, srcval = srcattr->values, dstval = dstattr->values;
1702 i > 0;
1703 i --, srcval ++, dstval ++)
1704 {
1705 dstval->unknown.length = srcval->unknown.length;
ef416fc2 1706
a2326b5b
MS
1707 if (dstval->unknown.length > 0)
1708 {
7e86f2f6 1709 if ((dstval->unknown.data = malloc((size_t)dstval->unknown.length)) == NULL)
a2326b5b
MS
1710 dstval->unknown.length = 0;
1711 else
07623986 1712 memcpy(dstval->unknown.data, srcval->unknown.data, (size_t)dstval->unknown.length);
a2326b5b
MS
1713 }
1714 }
1715 break; /* anti-compiler-warning-code */
ef416fc2 1716 }
1717
a2326b5b 1718 return (dstattr);
ef416fc2 1719}
1720
1721
1722/*
a2326b5b 1723 * 'ippCopyAttributes()' - Copy attributes from one IPP message to another.
ef416fc2 1724 *
58fce51f 1725 * Zero or more attributes are copied from the source IPP message, @code src@, to the
a2326b5b
MS
1726 * destination IPP message, @code dst@. When @code quickcopy@ is non-zero, a "shallow"
1727 * reference copy of the attribute is created - this should only be done as long as the
1728 * original source IPP message will not be freed for the life of the destination.
ef416fc2 1729 *
a2326b5b
MS
1730 * The @code cb@ and @code context@ parameters provide a generic way to "filter" the
1731 * attributes that are copied - the function must return 1 to copy the attribute or
1732 * 0 to skip it. The function may also choose to do a partial copy of the source attribute
1733 * itself.
1734 *
8072030b 1735 * @since CUPS 1.6/macOS 10.8@
ef416fc2 1736 */
1737
a2326b5b
MS
1738int /* O - 1 on success, 0 on error */
1739ippCopyAttributes(
1740 ipp_t *dst, /* I - Destination IPP message */
1741 ipp_t *src, /* I - Source IPP message */
1742 int quickcopy, /* I - 1 for a referenced copy, 0 for normal */
1743 ipp_copycb_t cb, /* I - Copy callback or @code NULL@ for none */
1744 void *context) /* I - Context pointer */
ef416fc2 1745{
a2326b5b 1746 ipp_attribute_t *srcattr; /* Source attribute */
ef416fc2 1747
1748
807315e6 1749 DEBUG_printf(("ippCopyAttributes(dst=%p, src=%p, quickcopy=%d, cb=%p, context=%p)", (void *)dst, (void *)src, quickcopy, (void *)cb, context));
1ff0402e 1750
ef416fc2 1751 /*
a2326b5b 1752 * Range check input...
ef416fc2 1753 */
1754
a2326b5b
MS
1755 if (!dst || !src)
1756 return (0);
ef416fc2 1757
1758 /*
a2326b5b 1759 * Loop through source attributes and copy as needed...
ef416fc2 1760 */
1761
a2326b5b
MS
1762 for (srcattr = src->attrs; srcattr; srcattr = srcattr->next)
1763 if (!cb || (*cb)(context, dst, srcattr))
1764 if (!ippCopyAttribute(dst, srcattr, quickcopy))
1765 return (0);
ef416fc2 1766
a2326b5b
MS
1767 return (1);
1768}
ef416fc2 1769
ef416fc2 1770
a2326b5b 1771/*
65bebeac
MS
1772 * 'ippDateToTime()' - Convert from RFC 2579 Date/Time format to time in
1773 * seconds.
a2326b5b 1774 */
ef416fc2 1775
a2326b5b 1776time_t /* O - UNIX time value */
65bebeac 1777ippDateToTime(const ipp_uchar_t *date) /* I - RFC 2579 date info */
a2326b5b
MS
1778{
1779 struct tm unixdate; /* UNIX date/time info */
1780 time_t t; /* Computed time */
ef416fc2 1781
a2326b5b
MS
1782
1783 if (!date)
1784 return (0);
1785
1786 memset(&unixdate, 0, sizeof(unixdate));
ef416fc2 1787
1788 /*
65bebeac 1789 * RFC-2579 date/time format is:
a2326b5b
MS
1790 *
1791 * Byte(s) Description
1792 * ------- -----------
1793 * 0-1 Year (0 to 65535)
1794 * 2 Month (1 to 12)
1795 * 3 Day (1 to 31)
1796 * 4 Hours (0 to 23)
1797 * 5 Minutes (0 to 59)
1798 * 6 Seconds (0 to 60, 60 = "leap second")
1799 * 7 Deciseconds (0 to 9)
1800 * 8 +/- UTC
1801 * 9 UTC hours (0 to 11)
1802 * 10 UTC minutes (0 to 59)
ef416fc2 1803 */
1804
a2326b5b
MS
1805 unixdate.tm_year = ((date[0] << 8) | date[1]) - 1900;
1806 unixdate.tm_mon = date[2] - 1;
1807 unixdate.tm_mday = date[3];
1808 unixdate.tm_hour = date[4];
1809 unixdate.tm_min = date[5];
1810 unixdate.tm_sec = date[6];
1811
1812 t = mktime(&unixdate);
1813
1814 if (date[8] == '-')
1815 t += date[9] * 3600 + date[10] * 60;
1816 else
1817 t -= date[9] * 3600 + date[10] * 60;
1818
1819 return (t);
ef416fc2 1820}
1821
1822
1823/*
a2326b5b 1824 * 'ippDelete()' - Delete an IPP message.
ef416fc2 1825 */
1826
a2326b5b
MS
1827void
1828ippDelete(ipp_t *ipp) /* I - IPP message */
ef416fc2 1829{
a2326b5b
MS
1830 ipp_attribute_t *attr, /* Current attribute */
1831 *next; /* Next attribute */
ef416fc2 1832
ef416fc2 1833
807315e6 1834 DEBUG_printf(("ippDelete(ipp=%p)", (void *)ipp));
ef416fc2 1835
a2326b5b
MS
1836 if (!ipp)
1837 return;
1838
1839 ipp->use --;
1840 if (ipp->use > 0)
b908d72c
MS
1841 {
1842 DEBUG_printf(("4debug_retain: %p IPP message (use=%d)", (void *)ipp, ipp->use));
a2326b5b 1843 return;
b908d72c
MS
1844 }
1845
1846 DEBUG_printf(("4debug_free: %p IPP message", (void *)ipp));
ef416fc2 1847
a2326b5b
MS
1848 for (attr = ipp->attrs; attr != NULL; attr = next)
1849 {
1850 next = attr->next;
ef416fc2 1851
b908d72c
MS
1852 DEBUG_printf(("4debug_free: %p %s %s%s (%d values)", (void *)attr, attr->name, attr->num_values > 1 ? "1setOf " : "", ippTagString(attr->value_tag), attr->num_values));
1853
a2326b5b 1854 ipp_free_values(attr, 0, attr->num_values);
ef416fc2 1855
a2326b5b
MS
1856 if (attr->name)
1857 _cupsStrFree(attr->name);
ef416fc2 1858
a2326b5b
MS
1859 free(attr);
1860 }
1861
1862 free(ipp);
ef416fc2 1863}
1864
1865
1866/*
a2326b5b 1867 * 'ippDeleteAttribute()' - Delete a single attribute in an IPP message.
ef416fc2 1868 *
8072030b 1869 * @since CUPS 1.1.19/macOS 10.3@
ef416fc2 1870 */
1871
a2326b5b
MS
1872void
1873ippDeleteAttribute(
1874 ipp_t *ipp, /* I - IPP message */
1875 ipp_attribute_t *attr) /* I - Attribute to delete */
ef416fc2 1876{
a2326b5b
MS
1877 ipp_attribute_t *current, /* Current attribute */
1878 *prev; /* Previous attribute */
ef416fc2 1879
1880
807315e6 1881 DEBUG_printf(("ippDeleteAttribute(ipp=%p, attr=%p(%s))", (void *)ipp, (void *)attr, attr ? attr->name : "(null)"));
ef416fc2 1882
a2326b5b
MS
1883 /*
1884 * Range check input...
1885 */
ef416fc2 1886
a2326b5b
MS
1887 if (!attr)
1888 return;
1f6f3dbc 1889
b908d72c
MS
1890 DEBUG_printf(("4debug_free: %p %s %s%s (%d values)", (void *)attr, attr->name, attr->num_values > 1 ? "1setOf " : "", ippTagString(attr->value_tag), attr->num_values));
1891
a2326b5b
MS
1892 /*
1893 * Find the attribute in the list...
1894 */
1895
1896 if (ipp)
ef416fc2 1897 {
a2326b5b
MS
1898 for (current = ipp->attrs, prev = NULL;
1899 current;
1900 prev = current, current = current->next)
1901 if (current == attr)
1902 {
1903 /*
1904 * Found it, remove the attribute from the list...
1905 */
ef416fc2 1906
a2326b5b
MS
1907 if (prev)
1908 prev->next = current->next;
1909 else
1910 ipp->attrs = current->next;
ef416fc2 1911
a2326b5b
MS
1912 if (current == ipp->last)
1913 ipp->last = prev;
ef416fc2 1914
a2326b5b
MS
1915 break;
1916 }
ef416fc2 1917
a2326b5b
MS
1918 if (!current)
1919 return;
1920 }
ef416fc2 1921
a2326b5b
MS
1922 /*
1923 * Free memory used by the attribute...
1924 */
ef416fc2 1925
a2326b5b 1926 ipp_free_values(attr, 0, attr->num_values);
ef416fc2 1927
a2326b5b
MS
1928 if (attr->name)
1929 _cupsStrFree(attr->name);
ef416fc2 1930
a2326b5b
MS
1931 free(attr);
1932}
ef416fc2 1933
b86bc4cf 1934
a2326b5b
MS
1935/*
1936 * 'ippDeleteValues()' - Delete values in an attribute.
1937 *
9c80ffa2
MS
1938 * The @code element@ parameter specifies the first value to delete, starting at
1939 * 0. It must be less than the number of values returned by @link ippGetCount@.
1940 *
1941 * The @code attr@ parameter may be modified as a result of setting the value.
a2326b5b
MS
1942 *
1943 * Deleting all values in an attribute deletes the attribute.
1944 *
8072030b 1945 * @since CUPS 1.6/macOS 10.8@
a2326b5b 1946 */
ef416fc2 1947
9c80ffa2 1948int /* O - 1 on success, 0 on failure */
a2326b5b 1949ippDeleteValues(
9c80ffa2
MS
1950 ipp_t *ipp, /* I - IPP message */
1951 ipp_attribute_t **attr, /* IO - Attribute */
1952 int element, /* I - Index of first value to delete (0-based) */
1953 int count) /* I - Number of values to delete */
a2326b5b
MS
1954{
1955 /*
1956 * Range check input...
1957 */
ef416fc2 1958
9c80ffa2
MS
1959 if (!ipp || !attr || !*attr ||
1960 element < 0 || element >= (*attr)->num_values || count <= 0 ||
1961 (element + count) >= (*attr)->num_values)
a2326b5b 1962 return (0);
ef416fc2 1963
a2326b5b
MS
1964 /*
1965 * If we are deleting all values, just delete the attribute entirely.
1966 */
ef416fc2 1967
9c80ffa2 1968 if (count == (*attr)->num_values)
a2326b5b 1969 {
9c80ffa2
MS
1970 ippDeleteAttribute(ipp, *attr);
1971 *attr = NULL;
a2326b5b
MS
1972 return (1);
1973 }
ef416fc2 1974
a2326b5b
MS
1975 /*
1976 * Otherwise free the values in question and return.
1977 */
ef416fc2 1978
9c80ffa2 1979 ipp_free_values(*attr, element, count);
a2326b5b
MS
1980
1981 return (1);
1982}
1983
1984
1985/*
9c80ffa2 1986 * 'ippFindAttribute()' - Find a named attribute in a request.
f2a31e21
MS
1987 *
1988 * Starting with CUPS 2.0, the attribute name can contain a hierarchical list
1989 * of attribute and member names separated by slashes, for example
1990 * "media-col/media-size".
a2326b5b
MS
1991 */
1992
1993ipp_attribute_t * /* O - Matching attribute */
1994ippFindAttribute(ipp_t *ipp, /* I - IPP message */
1995 const char *name, /* I - Name of attribute */
1996 ipp_tag_t type) /* I - Type of attribute */
1997{
807315e6 1998 DEBUG_printf(("2ippFindAttribute(ipp=%p, name=\"%s\", type=%02x(%s))", (void *)ipp, name, type, ippTagString(type)));
a2326b5b
MS
1999
2000 if (!ipp || !name)
2001 return (NULL);
2002
2003 /*
2004 * Reset the current pointer...
2005 */
2006
2007 ipp->current = NULL;
f2a31e21 2008 ipp->atend = 0;
a2326b5b
MS
2009
2010 /*
2011 * Search for the attribute...
2012 */
2013
2014 return (ippFindNextAttribute(ipp, name, type));
2015}
2016
2017
2018/*
9c80ffa2 2019 * 'ippFindNextAttribute()' - Find the next named attribute in a request.
f2a31e21
MS
2020 *
2021 * Starting with CUPS 2.0, the attribute name can contain a hierarchical list
2022 * of attribute and member names separated by slashes, for example
2023 * "media-col/media-size".
a2326b5b
MS
2024 */
2025
2026ipp_attribute_t * /* O - Matching attribute */
2027ippFindNextAttribute(ipp_t *ipp, /* I - IPP message */
2028 const char *name, /* I - Name of attribute */
2029 ipp_tag_t type) /* I - Type of attribute */
2030{
f2a31e21
MS
2031 ipp_attribute_t *attr, /* Current atttribute */
2032 *childattr; /* Child attribute */
a2326b5b 2033 ipp_tag_t value_tag; /* Value tag */
f2a31e21 2034 char parent[1024], /* Parent attribute name */
770f94bc 2035 *child = NULL; /* Child attribute name */
a2326b5b
MS
2036
2037
807315e6 2038 DEBUG_printf(("2ippFindNextAttribute(ipp=%p, name=\"%s\", type=%02x(%s))", (void *)ipp, name, type, ippTagString(type)));
a2326b5b
MS
2039
2040 if (!ipp || !name)
2041 return (NULL);
2042
f2a31e21
MS
2043 DEBUG_printf(("3ippFindNextAttribute: atend=%d", ipp->atend));
2044
2045 if (ipp->atend)
2046 return (NULL);
2047
2048 if (strchr(name, '/'))
2049 {
2050 /*
2051 * Search for child attribute...
2052 */
2053
2054 strlcpy(parent, name, sizeof(parent));
2055 if ((child = strchr(parent, '/')) == NULL)
2056 {
2057 DEBUG_puts("3ippFindNextAttribute: Attribute name too long.");
2058 return (NULL);
2059 }
2060
2061 *child++ = '\0';
2062
2063 if (ipp->current && ipp->current->name && ipp->current->value_tag == IPP_TAG_BEGIN_COLLECTION && !strcmp(parent, ipp->current->name))
2064 {
2065 while (ipp->curindex < ipp->current->num_values)
2066 {
2067 if ((childattr = ippFindNextAttribute(ipp->current->values[ipp->curindex].collection, child, type)) != NULL)
2068 return (childattr);
2069
2070 ipp->curindex ++;
2071 if (ipp->curindex < ipp->current->num_values && ipp->current->values[ipp->curindex].collection)
2072 ipp->current->values[ipp->curindex].collection->current = NULL;
2073 }
2074
2075 ipp->prev = ipp->current;
2076 ipp->current = ipp->current->next;
2077 ipp->curindex = 0;
2078
2079 if (!ipp->current)
2080 {
2081 ipp->atend = 1;
2082 return (NULL);
2083 }
2084 }
2085
2086 if (!ipp->current)
2087 {
2088 ipp->prev = NULL;
2089 ipp->current = ipp->attrs;
2090 ipp->curindex = 0;
2091 }
2092
2093 name = parent;
2094 attr = ipp->current;
2095 }
2096 else if (ipp->current)
a2326b5b
MS
2097 {
2098 ipp->prev = ipp->current;
2099 attr = ipp->current->next;
2100 }
2101 else
2102 {
2103 ipp->prev = NULL;
2104 attr = ipp->attrs;
2105 }
2106
2107 for (; attr != NULL; ipp->prev = attr, attr = attr->next)
2108 {
807315e6 2109 DEBUG_printf(("4ippFindAttribute: attr=%p, name=\"%s\"", (void *)attr, attr->name));
a2326b5b 2110
cb7f98ee 2111 value_tag = (ipp_tag_t)(attr->value_tag & IPP_TAG_CUPS_MASK);
a2326b5b
MS
2112
2113 if (attr->name != NULL && _cups_strcasecmp(attr->name, name) == 0 &&
f2a31e21 2114 (value_tag == type || type == IPP_TAG_ZERO || name == parent ||
a2326b5b
MS
2115 (value_tag == IPP_TAG_TEXTLANG && type == IPP_TAG_TEXT) ||
2116 (value_tag == IPP_TAG_NAMELANG && type == IPP_TAG_NAME)))
2117 {
2118 ipp->current = attr;
2119
f2a31e21
MS
2120 if (name == parent && attr->value_tag == IPP_TAG_BEGIN_COLLECTION)
2121 {
2122 int i; /* Looping var */
2123
2124 for (i = 0; i < attr->num_values; i ++)
2125 {
2126 if ((childattr = ippFindAttribute(attr->values[i].collection, child, type)) != NULL)
2127 {
2128 attr->values[0].collection->curindex = i;
2129 return (childattr);
2130 }
2131 }
2132 }
2133 else
2134 return (attr);
a2326b5b
MS
2135 }
2136 }
2137
2138 ipp->current = NULL;
2139 ipp->prev = NULL;
f2a31e21 2140 ipp->atend = 1;
a2326b5b
MS
2141
2142 return (NULL);
2143}
2144
2145
2146/*
2147 * 'ippFirstAttribute()' - Return the first attribute in the message.
2148 *
8072030b 2149 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2150 */
2151
2152ipp_attribute_t * /* O - First attribute or @code NULL@ if none */
2153ippFirstAttribute(ipp_t *ipp) /* I - IPP message */
2154{
2155 /*
2156 * Range check input...
2157 */
2158
2159 if (!ipp)
2160 return (NULL);
2161
2162 /*
2163 * Return the first attribute...
2164 */
2165
2166 return (ipp->current = ipp->attrs);
2167}
2168
2169
2170/*
2171 * 'ippGetBoolean()' - Get a boolean value for an attribute.
2172 *
2173 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2174 * @code ippGetCount(attr)@ - 1.
a2326b5b 2175 *
8072030b 2176 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2177 */
2178
c52d341f 2179int /* O - Boolean value or 0 on error */
a2326b5b
MS
2180ippGetBoolean(ipp_attribute_t *attr, /* I - IPP attribute */
2181 int element) /* I - Value number (0-based) */
2182{
2183 /*
2184 * Range check input...
2185 */
2186
2187 if (!attr || attr->value_tag != IPP_TAG_BOOLEAN ||
2188 element < 0 || element >= attr->num_values)
c52d341f 2189 return (0);
a2326b5b
MS
2190
2191 /*
2192 * Return the value...
2193 */
2194
2195 return (attr->values[element].boolean);
2196}
2197
2198
2199/*
2200 * 'ippGetCollection()' - Get a collection value for an attribute.
2201 *
2202 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2203 * @code ippGetCount(attr)@ - 1.
a2326b5b 2204 *
8072030b 2205 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2206 */
2207
2208ipp_t * /* O - Collection value or @code NULL@ on error */
2209ippGetCollection(
2210 ipp_attribute_t *attr, /* I - IPP attribute */
2211 int element) /* I - Value number (0-based) */
2212{
2213 /*
2214 * Range check input...
2215 */
2216
2217 if (!attr || attr->value_tag != IPP_TAG_BEGIN_COLLECTION ||
2218 element < 0 || element >= attr->num_values)
2219 return (NULL);
2220
2221 /*
2222 * Return the value...
2223 */
2224
2225 return (attr->values[element].collection);
2226}
2227
2228
2229/*
2230 * 'ippGetCount()' - Get the number of values in an attribute.
2231 *
8072030b 2232 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2233 */
2234
c52d341f 2235int /* O - Number of values or 0 on error */
a2326b5b
MS
2236ippGetCount(ipp_attribute_t *attr) /* I - IPP attribute */
2237{
2238 /*
2239 * Range check input...
2240 */
2241
2242 if (!attr)
c52d341f 2243 return (0);
a2326b5b
MS
2244
2245 /*
2246 * Return the number of values...
2247 */
2248
2249 return (attr->num_values);
2250}
2251
2252
9c80ffa2 2253/*
65bebeac 2254 * 'ippGetDate()' - Get a dateTime value for an attribute.
9c80ffa2
MS
2255 *
2256 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2257 * @code ippGetCount(attr)@ - 1.
9c80ffa2 2258 *
8072030b 2259 * @since CUPS 1.6/macOS 10.8@
9c80ffa2
MS
2260 */
2261
65bebeac 2262const ipp_uchar_t * /* O - dateTime value or @code NULL@ */
9c80ffa2
MS
2263ippGetDate(ipp_attribute_t *attr, /* I - IPP attribute */
2264 int element) /* I - Value number (0-based) */
2265{
2266 /*
2267 * Range check input...
2268 */
2269
2270 if (!attr || attr->value_tag != IPP_TAG_DATE ||
2271 element < 0 || element >= attr->num_values)
2272 return (NULL);
2273
2274 /*
2275 * Return the value...
2276 */
2277
2278 return (attr->values[element].date);
2279}
2280
2281
a2326b5b
MS
2282/*
2283 * 'ippGetGroupTag()' - Get the group associated with an attribute.
2284 *
8072030b 2285 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2286 */
2287
2288ipp_tag_t /* O - Group tag or @code IPP_TAG_ZERO@ on error */
2289ippGetGroupTag(ipp_attribute_t *attr) /* I - IPP attribute */
2290{
2291 /*
2292 * Range check input...
2293 */
2294
2295 if (!attr)
2296 return (IPP_TAG_ZERO);
2297
2298 /*
2299 * Return the group...
2300 */
2301
2302 return (attr->group_tag);
2303}
2304
2305
2306/*
2307 * 'ippGetInteger()' - Get the integer/enum value for an attribute.
2308 *
2309 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2310 * @code ippGetCount(attr)@ - 1.
a2326b5b 2311 *
8072030b 2312 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2313 */
2314
c52d341f 2315int /* O - Value or 0 on error */
a2326b5b
MS
2316ippGetInteger(ipp_attribute_t *attr, /* I - IPP attribute */
2317 int element) /* I - Value number (0-based) */
2318{
2319 /*
2320 * Range check input...
2321 */
2322
2323 if (!attr || (attr->value_tag != IPP_TAG_INTEGER && attr->value_tag != IPP_TAG_ENUM) ||
2324 element < 0 || element >= attr->num_values)
c52d341f 2325 return (0);
a2326b5b
MS
2326
2327 /*
2328 * Return the value...
2329 */
2330
2331 return (attr->values[element].integer);
2332}
2333
2334
2335/*
2336 * 'ippGetName()' - Get the attribute name.
2337 *
8072030b 2338 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2339 */
2340
2341const char * /* O - Attribute name or @code NULL@ for separators */
2342ippGetName(ipp_attribute_t *attr) /* I - IPP attribute */
2343{
2344 /*
2345 * Range check input...
2346 */
2347
2348 if (!attr)
2349 return (NULL);
2350
2351 /*
2352 * Return the name...
2353 */
2354
2355 return (attr->name);
2356}
2357
2358
6961465f
MS
2359/*
2360 * 'ippGetOctetString()' - Get an octetString value from an IPP attribute.
2361 *
2362 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2363 * @code ippGetCount(attr)@ - 1.
6961465f 2364 *
8072030b 2365 * @since CUPS 1.7/macOS 10.9@
6961465f
MS
2366 */
2367
2368void * /* O - Pointer to octetString data */
2369ippGetOctetString(
2370 ipp_attribute_t *attr, /* I - IPP attribute */
2371 int element, /* I - Value number (0-based) */
2372 int *datalen) /* O - Length of octetString data */
2373{
2374 /*
2375 * Range check input...
2376 */
2377
2378 if (!attr || attr->value_tag != IPP_TAG_STRING ||
2379 element < 0 || element >= attr->num_values)
2380 {
2381 if (datalen)
2382 *datalen = 0;
2383
2384 return (NULL);
2385 }
2386
2387 /*
2388 * Return the values...
2389 */
2390
2391 if (datalen)
2392 *datalen = attr->values[element].unknown.length;
2393
2394 return (attr->values[element].unknown.data);
2395}
2396
2397
a2326b5b
MS
2398/*
2399 * 'ippGetOperation()' - Get the operation ID in an IPP message.
2400 *
8072030b 2401 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2402 */
2403
c52d341f 2404ipp_op_t /* O - Operation ID or 0 on error */
a2326b5b
MS
2405ippGetOperation(ipp_t *ipp) /* I - IPP request message */
2406{
2407 /*
2408 * Range check input...
2409 */
2410
2411 if (!ipp)
c52d341f 2412 return ((ipp_op_t)0);
a2326b5b
MS
2413
2414 /*
2415 * Return the value...
2416 */
2417
2418 return (ipp->request.op.operation_id);
2419}
2420
2421
9c80ffa2
MS
2422/*
2423 * 'ippGetRange()' - Get a rangeOfInteger value from an attribute.
2424 *
2425 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2426 * @code ippGetCount(attr)@ - 1.
9c80ffa2 2427 *
8072030b 2428 * @since CUPS 1.6/macOS 10.8@
9c80ffa2
MS
2429 */
2430
c52d341f 2431int /* O - Lower value of range or 0 */
9c80ffa2
MS
2432ippGetRange(ipp_attribute_t *attr, /* I - IPP attribute */
2433 int element, /* I - Value number (0-based) */
2434 int *uppervalue)/* O - Upper value of range */
2435{
2436 /*
2437 * Range check input...
2438 */
2439
2440 if (!attr || attr->value_tag != IPP_TAG_RANGE ||
2441 element < 0 || element >= attr->num_values)
2442 {
2443 if (uppervalue)
c52d341f 2444 *uppervalue = 0;
9c80ffa2 2445
c52d341f 2446 return (0);
9c80ffa2
MS
2447 }
2448
2449 /*
2450 * Return the values...
2451 */
2452
2453 if (uppervalue)
2454 *uppervalue = attr->values[element].range.upper;
2455
2456 return (attr->values[element].range.lower);
2457}
2458
2459
a2326b5b
MS
2460/*
2461 * 'ippGetRequestId()' - Get the request ID from an IPP message.
2462 *
8072030b 2463 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2464 */
2465
c52d341f 2466int /* O - Request ID or 0 on error */
a2326b5b
MS
2467ippGetRequestId(ipp_t *ipp) /* I - IPP message */
2468{
2469 /*
2470 * Range check input...
2471 */
2472
2473 if (!ipp)
c52d341f 2474 return (0);
a2326b5b
MS
2475
2476 /*
2477 * Return the request ID...
2478 */
2479
2480 return (ipp->request.any.request_id);
2481}
2482
2483
2484/*
2485 * 'ippGetResolution()' - Get a resolution value for an attribute.
2486 *
2487 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2488 * @code ippGetCount(attr)@ - 1.
a2326b5b 2489 *
8072030b 2490 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2491 */
2492
c52d341f 2493int /* O - Horizontal/cross feed resolution or 0 */
a2326b5b
MS
2494ippGetResolution(
2495 ipp_attribute_t *attr, /* I - IPP attribute */
2496 int element, /* I - Value number (0-based) */
2497 int *yres, /* O - Vertical/feed resolution */
2498 ipp_res_t *units) /* O - Units for resolution */
2499{
2500 /*
2501 * Range check input...
2502 */
2503
2504 if (!attr || attr->value_tag != IPP_TAG_RESOLUTION ||
2505 element < 0 || element >= attr->num_values)
c52d341f
MS
2506 {
2507 if (yres)
2508 *yres = 0;
2509
2510 if (units)
2511 *units = (ipp_res_t)0;
2512
2513 return (0);
2514 }
a2326b5b
MS
2515
2516 /*
2517 * Return the value...
2518 */
2519
2520 if (yres)
2521 *yres = attr->values[element].resolution.yres;
2522
2523 if (units)
2524 *units = attr->values[element].resolution.units;
2525
2526 return (attr->values[element].resolution.xres);
2527}
2528
2529
9c80ffa2
MS
2530/*
2531 * 'ippGetState()' - Get the IPP message state.
2532 *
8072030b 2533 * @since CUPS 1.6/macOS 10.8@
9c80ffa2
MS
2534 */
2535
2536ipp_state_t /* O - IPP message state value */
2537ippGetState(ipp_t *ipp) /* I - IPP message */
2538{
2539 /*
2540 * Range check input...
2541 */
2542
2543 if (!ipp)
cb7f98ee 2544 return (IPP_STATE_IDLE);
9c80ffa2
MS
2545
2546 /*
2547 * Return the value...
2548 */
2549
2550 return (ipp->state);
2551}
2552
2553
a2326b5b
MS
2554/*
2555 * 'ippGetStatusCode()' - Get the status code from an IPP response or event message.
2556 *
8072030b 2557 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2558 */
2559
2560ipp_status_t /* O - Status code in IPP message */
2561ippGetStatusCode(ipp_t *ipp) /* I - IPP response or event message */
2562{
2563 /*
2564 * Range check input...
2565 */
2566
2567 if (!ipp)
cb7f98ee 2568 return (IPP_STATUS_ERROR_INTERNAL);
a2326b5b
MS
2569
2570 /*
2571 * Return the value...
2572 */
2573
2574 return (ipp->request.status.status_code);
2575}
2576
2577
2578/*
2579 * 'ippGetString()' - Get the string and optionally the language code for an attribute.
2580 *
2581 * The @code element@ parameter specifies which value to get from 0 to
65bebeac 2582 * @code ippGetCount(attr)@ - 1.
a2326b5b 2583 *
8072030b 2584 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2585 */
2586
2587const char *
2588ippGetString(ipp_attribute_t *attr, /* I - IPP attribute */
2589 int element, /* I - Value number (0-based) */
2590 const char **language)/* O - Language code (@code NULL@ for don't care) */
2591{
45eb1e5e
MS
2592 ipp_tag_t tag; /* Value tag */
2593
2594
a2326b5b
MS
2595 /*
2596 * Range check input...
2597 */
2598
45eb1e5e
MS
2599 tag = ippGetValueTag(attr);
2600
2601 if (!attr || element < 0 || element >= attr->num_values || (tag != IPP_TAG_TEXTLANG && tag != IPP_TAG_NAMELANG && (tag < IPP_TAG_TEXT || tag > IPP_TAG_MIMETYPE)))
a2326b5b
MS
2602 return (NULL);
2603
2604 /*
2605 * Return the value...
2606 */
2607
2608 if (language)
2609 *language = attr->values[element].string.language;
2610
2611 return (attr->values[element].string.text);
2612}
2613
2614
2615/*
2616 * 'ippGetValueTag()' - Get the value tag for an attribute.
2617 *
8072030b 2618 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2619 */
2620
2621ipp_tag_t /* O - Value tag or @code IPP_TAG_ZERO@ on error */
2622ippGetValueTag(ipp_attribute_t *attr) /* I - IPP attribute */
2623{
2624 /*
2625 * Range check input...
2626 */
2627
2628 if (!attr)
2629 return (IPP_TAG_ZERO);
2630
2631 /*
2632 * Return the value...
2633 */
2634
cb7f98ee 2635 return (attr->value_tag & IPP_TAG_CUPS_MASK);
a2326b5b
MS
2636}
2637
2638
2639/*
2640 * 'ippGetVersion()' - Get the major and minor version number from an IPP message.
2641 *
8072030b 2642 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2643 */
2644
c52d341f 2645int /* O - Major version number or 0 on error */
a2326b5b 2646ippGetVersion(ipp_t *ipp, /* I - IPP message */
65bebeac 2647 int *minor) /* O - Minor version number or @code NULL@ for don't care */
a2326b5b
MS
2648{
2649 /*
2650 * Range check input...
2651 */
2652
2653 if (!ipp)
2654 {
2655 if (minor)
c52d341f 2656 *minor = 0;
a2326b5b 2657
c52d341f 2658 return (0);
a2326b5b
MS
2659 }
2660
2661 /*
2662 * Return the value...
2663 */
2664
2665 if (minor)
2666 *minor = ipp->request.any.version[1];
2667
2668 return (ipp->request.any.version[0]);
2669}
2670
2671
2672/*
2673 * 'ippLength()' - Compute the length of an IPP message.
2674 */
2675
2676size_t /* O - Size of IPP message */
2677ippLength(ipp_t *ipp) /* I - IPP message */
2678{
2679 return (ipp_length(ipp, 0));
2680}
2681
2682
2683/*
2684 * 'ippNextAttribute()' - Return the next attribute in the message.
2685 *
8072030b 2686 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
2687 */
2688
2689ipp_attribute_t * /* O - Next attribute or @code NULL@ if none */
2690ippNextAttribute(ipp_t *ipp) /* I - IPP message */
2691{
2692 /*
2693 * Range check input...
2694 */
2695
2696 if (!ipp || !ipp->current)
2697 return (NULL);
2698
2699 /*
2700 * Return the next attribute...
2701 */
2702
2703 return (ipp->current = ipp->current->next);
2704}
2705
2706
2707/*
2708 * 'ippNew()' - Allocate a new IPP message.
2709 */
2710
2711ipp_t * /* O - New IPP message */
2712ippNew(void)
2713{
0cb67df3
MS
2714 ipp_t *temp; /* New IPP message */
2715 _cups_globals_t *cg = _cupsGlobals();
2716 /* Global data */
a2326b5b
MS
2717
2718
2719 DEBUG_puts("ippNew()");
2720
2721 if ((temp = (ipp_t *)calloc(1, sizeof(ipp_t))) != NULL)
2722 {
2723 /*
0cb67df3 2724 * Set default version - usually 2.0...
a2326b5b
MS
2725 */
2726
b908d72c
MS
2727 DEBUG_printf(("4debug_alloc: %p IPP message", (void *)temp));
2728
567f49cb
MS
2729 if (cg->server_version == 0)
2730 _cupsSetDefaults();
2731
7e86f2f6
MS
2732 temp->request.any.version[0] = (ipp_uchar_t)(cg->server_version / 10);
2733 temp->request.any.version[1] = (ipp_uchar_t)(cg->server_version % 10);
a2326b5b
MS
2734 temp->use = 1;
2735 }
2736
807315e6 2737 DEBUG_printf(("1ippNew: Returning %p", (void *)temp));
a2326b5b
MS
2738
2739 return (temp);
2740}
2741
2742
2743/*
2744 * 'ippNewRequest()' - Allocate a new IPP request message.
2745 *
65bebeac
MS
2746 * The new request message is initialized with the "attributes-charset" and
2747 * "attributes-natural-language" attributes added. The
2748 * "attributes-natural-language" value is derived from the current locale.
a2326b5b 2749 *
8072030b 2750 * @since CUPS 1.2/macOS 10.5@
a2326b5b
MS
2751 */
2752
2753ipp_t * /* O - IPP request message */
2754ippNewRequest(ipp_op_t op) /* I - Operation code */
2755{
2756 ipp_t *request; /* IPP request message */
2757 cups_lang_t *language; /* Current language localization */
2758 static int request_id = 0; /* Current request ID */
2759 static _cups_mutex_t request_mutex = _CUPS_MUTEX_INITIALIZER;
2760 /* Mutex for request ID */
2761
2762
2763 DEBUG_printf(("ippNewRequest(op=%02x(%s))", op, ippOpString(op)));
2764
2765 /*
2766 * Create a new IPP message...
2767 */
2768
2769 if ((request = ippNew()) == NULL)
2770 return (NULL);
2771
2772 /*
2773 * Set the operation and request ID...
2774 */
2775
2776 _cupsMutexLock(&request_mutex);
2777
2778 request->request.op.operation_id = op;
2779 request->request.op.request_id = ++request_id;
2780
2781 _cupsMutexUnlock(&request_mutex);
2782
2783 /*
2784 * Use UTF-8 as the character set...
2785 */
2786
2787 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
2788 "attributes-charset", NULL, "utf-8");
2789
2790 /*
2791 * Get the language from the current locale...
2792 */
2793
2794 language = cupsLangDefault();
2795
2796 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE,
2797 "attributes-natural-language", NULL, language->language);
2798
2799 /*
2800 * Return the new request...
2801 */
2802
2803 return (request);
2804}
2805
2806
a469f8a5
MS
2807/*
2808 * 'ippNewResponse()' - Allocate a new IPP response message.
2809 *
65bebeac
MS
2810 * The new response message is initialized with the same "version-number",
2811 * "request-id", "attributes-charset", and "attributes-natural-language" as the
2812 * provided request message. If the "attributes-charset" or
2813 * "attributes-natural-language" attributes are missing from the request,
2814 * 'utf-8' and a value derived from the current locale are substituted,
a469f8a5
MS
2815 * respectively.
2816 *
8072030b 2817 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
2818 */
2819
2820ipp_t * /* O - IPP response message */
2821ippNewResponse(ipp_t *request) /* I - IPP request message */
2822{
2823 ipp_t *response; /* IPP response message */
2824 ipp_attribute_t *attr; /* Current attribute */
2825
2826
2827 /*
2828 * Range check input...
2829 */
2830
2831 if (!request)
2832 return (NULL);
2833
2834 /*
2835 * Create a new IPP message...
2836 */
2837
2838 if ((response = ippNew()) == NULL)
2839 return (NULL);
2840
2841 /*
2842 * Copy the request values over to the response...
2843 */
2844
2845 response->request.status.version[0] = request->request.op.version[0];
2846 response->request.status.version[1] = request->request.op.version[1];
2847 response->request.status.request_id = request->request.op.request_id;
2848
2849 /*
2850 * The first attribute MUST be attributes-charset...
2851 */
2852
2853 attr = request->attrs;
2854
2855 if (attr && attr->name && !strcmp(attr->name, "attributes-charset") &&
2856 attr->group_tag == IPP_TAG_OPERATION &&
2857 attr->value_tag == IPP_TAG_CHARSET &&
2858 attr->num_values == 1)
2859 {
2860 /*
2861 * Copy charset from request...
2862 */
2863
2864 ippAddString(response, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
2865 "attributes-charset", NULL, attr->values[0].string.text);
2866 }
2867 else
2868 {
2869 /*
2870 * Use "utf-8" as the default...
2871 */
2872
2873 ippAddString(response, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
2874 "attributes-charset", NULL, "utf-8");
2875 }
2876
2877 /*
2878 * Then attributes-natural-language...
2879 */
2880
2881 if (attr)
2882 attr = attr->next;
2883
2884 if (attr && attr->name &&
2885 !strcmp(attr->name, "attributes-natural-language") &&
2886 attr->group_tag == IPP_TAG_OPERATION &&
2887 attr->value_tag == IPP_TAG_LANGUAGE &&
2888 attr->num_values == 1)
2889 {
2890 /*
2891 * Copy language from request...
2892 */
2893
2894 ippAddString(response, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE,
2895 "attributes-natural-language", NULL,
2896 attr->values[0].string.text);
2897 }
2898 else
2899 {
2900 /*
2901 * Use the language from the current locale...
2902 */
2903
2904 cups_lang_t *language = cupsLangDefault();
2905 /* Current locale */
2906
2907 ippAddString(response, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE,
2908 "attributes-natural-language", NULL, language->language);
2909 }
2910
2911 return (response);
2912}
2913
2914
a2326b5b
MS
2915/*
2916 * 'ippRead()' - Read data for an IPP message from a HTTP connection.
2917 */
2918
2919ipp_state_t /* O - Current state */
2920ippRead(http_t *http, /* I - HTTP connection */
2921 ipp_t *ipp) /* I - IPP data */
2922{
807315e6 2923 DEBUG_printf(("ippRead(http=%p, ipp=%p), data_remaining=" CUPS_LLFMT, (void *)http, (void *)ipp, CUPS_LLCAST (http ? http->data_remaining : -1)));
a2326b5b
MS
2924
2925 if (!http)
cb7f98ee 2926 return (IPP_STATE_ERROR);
a2326b5b 2927
807315e6 2928 DEBUG_printf(("2ippRead: http->state=%d, http->used=%d", http->state, http->used));
a2326b5b
MS
2929
2930 return (ippReadIO(http, (ipp_iocb_t)ipp_read_http, http->blocking, NULL,
2931 ipp));
2932}
2933
2934
2935/*
2936 * 'ippReadFile()' - Read data for an IPP message from a file.
2937 *
8072030b 2938 * @since CUPS 1.1.19/macOS 10.3@
a2326b5b
MS
2939 */
2940
2941ipp_state_t /* O - Current state */
2942ippReadFile(int fd, /* I - HTTP data */
2943 ipp_t *ipp) /* I - IPP data */
2944{
807315e6 2945 DEBUG_printf(("ippReadFile(fd=%d, ipp=%p)", fd, (void *)ipp));
a2326b5b
MS
2946
2947 return (ippReadIO(&fd, (ipp_iocb_t)ipp_read_file, 1, NULL, ipp));
2948}
2949
2950
2951/*
2952 * 'ippReadIO()' - Read data for an IPP message.
2953 *
8072030b 2954 * @since CUPS 1.2/macOS 10.5@
a2326b5b
MS
2955 */
2956
2957ipp_state_t /* O - Current state */
2958ippReadIO(void *src, /* I - Data source */
2959 ipp_iocb_t cb, /* I - Read callback function */
2960 int blocking, /* I - Use blocking IO? */
2961 ipp_t *parent, /* I - Parent request, if any */
2962 ipp_t *ipp) /* I - IPP data */
2963{
2964 int n; /* Length of data */
2965 unsigned char *buffer, /* Data buffer */
5a9febac 2966 string[IPP_MAX_TEXT],
a2326b5b
MS
2967 /* Small string buffer */
2968 *bufptr; /* Pointer into buffer */
2969 ipp_attribute_t *attr; /* Current attribute */
2970 ipp_tag_t tag; /* Current tag */
2971 ipp_tag_t value_tag; /* Current value tag */
2972 _ipp_value_t *value; /* Current value */
2973
2974
807315e6 2975 DEBUG_printf(("ippReadIO(src=%p, cb=%p, blocking=%d, parent=%p, ipp=%p)", (void *)src, (void *)cb, blocking, (void *)parent, (void *)ipp));
cb7f98ee 2976 DEBUG_printf(("2ippReadIO: ipp->state=%d", ipp ? ipp->state : IPP_STATE_ERROR));
a2326b5b
MS
2977
2978 if (!src || !ipp)
cb7f98ee 2979 return (IPP_STATE_ERROR);
a2326b5b 2980
dcb445bc 2981 if ((buffer = (unsigned char *)_cupsBufferGet(IPP_BUF_SIZE)) == NULL)
a2326b5b
MS
2982 {
2983 DEBUG_puts("1ippReadIO: Unable to get read buffer.");
cb7f98ee 2984 return (IPP_STATE_ERROR);
a2326b5b
MS
2985 }
2986
2987 switch (ipp->state)
2988 {
cb7f98ee 2989 case IPP_STATE_IDLE :
a2326b5b
MS
2990 ipp->state ++; /* Avoid common problem... */
2991
cb7f98ee 2992 case IPP_STATE_HEADER :
a2326b5b
MS
2993 if (parent == NULL)
2994 {
2995 /*
2996 * Get the request header...
2997 */
2998
2999 if ((*cb)(src, buffer, 8) < 8)
3000 {
3001 DEBUG_puts("1ippReadIO: Unable to read header.");
dcb445bc 3002 _cupsBufferRelease((char *)buffer);
cb7f98ee 3003 return (IPP_STATE_ERROR);
a2326b5b
MS
3004 }
3005
3006 /*
3007 * Then copy the request header over...
3008 */
3009
3010 ipp->request.any.version[0] = buffer[0];
3011 ipp->request.any.version[1] = buffer[1];
3012 ipp->request.any.op_status = (buffer[2] << 8) | buffer[3];
3013 ipp->request.any.request_id = (((((buffer[4] << 8) | buffer[5]) << 8) |
3014 buffer[6]) << 8) | buffer[7];
3015
3016 DEBUG_printf(("2ippReadIO: version=%d.%d", buffer[0], buffer[1]));
3017 DEBUG_printf(("2ippReadIO: op_status=%04x",
3018 ipp->request.any.op_status));
3019 DEBUG_printf(("2ippReadIO: request_id=%d",
3020 ipp->request.any.request_id));
3021 }
3022
cb7f98ee 3023 ipp->state = IPP_STATE_ATTRIBUTE;
a2326b5b
MS
3024 ipp->current = NULL;
3025 ipp->curtag = IPP_TAG_ZERO;
3026 ipp->prev = ipp->last;
3027
3028 /*
3029 * If blocking is disabled, stop here...
3030 */
3031
3032 if (!blocking)
3033 break;
3034
cb7f98ee 3035 case IPP_STATE_ATTRIBUTE :
a2326b5b
MS
3036 for (;;)
3037 {
3038 if ((*cb)(src, buffer, 1) < 1)
3039 {
3040 DEBUG_puts("1ippReadIO: Callback returned EOF/error");
dcb445bc 3041 _cupsBufferRelease((char *)buffer);
cb7f98ee 3042 return (IPP_STATE_ERROR);
a2326b5b
MS
3043 }
3044
807315e6 3045 DEBUG_printf(("2ippReadIO: ipp->current=%p, ipp->prev=%p", (void *)ipp->current, (void *)ipp->prev));
a2326b5b
MS
3046
3047 /*
3048 * Read this attribute...
3049 */
3050
3051 tag = (ipp_tag_t)buffer[0];
3052 if (tag == IPP_TAG_EXTENSION)
3053 {
3054 /*
3055 * Read 32-bit "extension" tag...
3056 */
3057
3058 if ((*cb)(src, buffer, 4) < 1)
3059 {
3060 DEBUG_puts("1ippReadIO: Callback returned EOF/error");
dcb445bc 3061 _cupsBufferRelease((char *)buffer);
cb7f98ee 3062 return (IPP_STATE_ERROR);
a2326b5b
MS
3063 }
3064
3065 tag = (ipp_tag_t)((((((buffer[0] << 8) | buffer[1]) << 8) |
3066 buffer[2]) << 8) | buffer[3]);
3067
cb7f98ee 3068 if (tag & IPP_TAG_CUPS_CONST)
a2326b5b
MS
3069 {
3070 /*
3071 * Fail if the high bit is set in the tag...
3072 */
3073
cb7f98ee 3074 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("IPP extension tag larger than 0x7FFFFFFF."), 1);
a29fd7dd 3075 DEBUG_printf(("1ippReadIO: bad tag 0x%x.", tag));
dcb445bc 3076 _cupsBufferRelease((char *)buffer);
cb7f98ee 3077 return (IPP_STATE_ERROR);
a2326b5b
MS
3078 }
3079 }
3080
3081 if (tag == IPP_TAG_END)
3082 {
3083 /*
3084 * No more attributes left...
3085 */
3086
3087 DEBUG_puts("2ippReadIO: IPP_TAG_END.");
3088
cb7f98ee 3089 ipp->state = IPP_STATE_DATA;
a2326b5b
MS
3090 break;
3091 }
3092 else if (tag < IPP_TAG_UNSUPPORTED_VALUE)
3093 {
3094 /*
3095 * Group tag... Set the current group and continue...
3096 */
3097
3098 if (ipp->curtag == tag)
3099 ipp->prev = ippAddSeparator(ipp);
3100 else if (ipp->current)
3101 ipp->prev = ipp->current;
ef416fc2 3102
3103 ipp->curtag = tag;
3104 ipp->current = NULL;
807315e6 3105 DEBUG_printf(("2ippReadIO: group tag=%x(%s), ipp->prev=%p", tag, ippTagString(tag), (void *)ipp->prev));
ef416fc2 3106 continue;
3107 }
3108
a2326b5b
MS
3109 DEBUG_printf(("2ippReadIO: value tag=%x(%s)", tag,
3110 ippTagString(tag)));
3111
3112 /*
3113 * Get the name...
3114 */
3115
3116 if ((*cb)(src, buffer, 2) < 2)
3117 {
3118 DEBUG_puts("1ippReadIO: unable to read name length.");
dcb445bc 3119 _cupsBufferRelease((char *)buffer);
cb7f98ee 3120 return (IPP_STATE_ERROR);
a2326b5b
MS
3121 }
3122
3123 n = (buffer[0] << 8) | buffer[1];
3124
3125 if (n >= IPP_BUF_SIZE)
3126 {
cb7f98ee 3127 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("IPP name larger than 32767 bytes."), 1);
a2326b5b 3128 DEBUG_printf(("1ippReadIO: bad name length %d.", n));
dcb445bc 3129 _cupsBufferRelease((char *)buffer);
cb7f98ee 3130 return (IPP_STATE_ERROR);
a2326b5b
MS
3131 }
3132
3133 DEBUG_printf(("2ippReadIO: name length=%d", n));
3134
3135 if (n == 0 && tag != IPP_TAG_MEMBERNAME &&
3136 tag != IPP_TAG_END_COLLECTION)
3137 {
3138 /*
3139 * More values for current attribute...
3140 */
3141
3142 if (ipp->current == NULL)
3143 {
cb7f98ee 3144 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("IPP attribute has no name."), 1);
a2326b5b 3145 DEBUG_puts("1ippReadIO: Attribute without name and no current.");
dcb445bc 3146 _cupsBufferRelease((char *)buffer);
cb7f98ee 3147 return (IPP_STATE_ERROR);
a2326b5b
MS
3148 }
3149
3150 attr = ipp->current;
cb7f98ee 3151 value_tag = (ipp_tag_t)(attr->value_tag & IPP_TAG_CUPS_MASK);
a2326b5b
MS
3152
3153 /*
3154 * Make sure we aren't adding a new value of a different
3155 * type...
3156 */
3157
3158 if (value_tag == IPP_TAG_ZERO)
3159 {
3160 /*
3161 * Setting the value of a collection member...
3162 */
3163
3164 attr->value_tag = tag;
3165 }
3166 else if (value_tag == IPP_TAG_TEXTLANG ||
3167 value_tag == IPP_TAG_NAMELANG ||
3168 (value_tag >= IPP_TAG_TEXT &&
3169 value_tag <= IPP_TAG_MIMETYPE))
3170 {
3171 /*
3172 * String values can sometimes come across in different
3173 * forms; accept sets of differing values...
3174 */
3175
3176 if (tag != IPP_TAG_TEXTLANG && tag != IPP_TAG_NAMELANG &&
3177 (tag < IPP_TAG_TEXT || tag > IPP_TAG_MIMETYPE) &&
3178 tag != IPP_TAG_NOVALUE)
3179 {
cb7f98ee 3180 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3181 _("IPP 1setOf attribute with incompatible value "
3182 "tags."), 1);
3183 DEBUG_printf(("1ippReadIO: 1setOf value tag %x(%s) != %x(%s)",
3184 value_tag, ippTagString(value_tag), tag,
3185 ippTagString(tag)));
dcb445bc 3186 _cupsBufferRelease((char *)buffer);
cb7f98ee 3187 return (IPP_STATE_ERROR);
a2326b5b
MS
3188 }
3189
3190 if (value_tag != tag)
3191 {
3192 DEBUG_printf(("1ippReadIO: Converting %s attribute from %s to %s.",
3193 attr->name, ippTagString(value_tag), ippTagString(tag)));
3194 ippSetValueTag(ipp, &attr, tag);
3195 }
3196 }
3197 else if (value_tag == IPP_TAG_INTEGER ||
3198 value_tag == IPP_TAG_RANGE)
3199 {
3200 /*
3201 * Integer and rangeOfInteger values can sometimes be mixed; accept
3202 * sets of differing values...
3203 */
3204
3205 if (tag != IPP_TAG_INTEGER && tag != IPP_TAG_RANGE)
3206 {
cb7f98ee 3207 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3208 _("IPP 1setOf attribute with incompatible value "
3209 "tags."), 1);
3210 DEBUG_printf(("1ippReadIO: 1setOf value tag %x(%s) != %x(%s)",
3211 value_tag, ippTagString(value_tag), tag,
3212 ippTagString(tag)));
dcb445bc 3213 _cupsBufferRelease((char *)buffer);
cb7f98ee 3214 return (IPP_STATE_ERROR);
a2326b5b
MS
3215 }
3216
3217 if (value_tag == IPP_TAG_INTEGER && tag == IPP_TAG_RANGE)
3218 {
3219 /*
3220 * Convert integer values to rangeOfInteger values...
3221 */
3222
3223 DEBUG_printf(("1ippReadIO: Converting %s attribute to "
3224 "rangeOfInteger.", attr->name));
3225 ippSetValueTag(ipp, &attr, IPP_TAG_RANGE);
3226 }
3227 }
3228 else if (value_tag != tag)
3229 {
cb7f98ee 3230 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3231 _("IPP 1setOf attribute with incompatible value "
3232 "tags."), 1);
3233 DEBUG_printf(("1ippReadIO: value tag %x(%s) != %x(%s)",
3234 value_tag, ippTagString(value_tag), tag,
3235 ippTagString(tag)));
dcb445bc 3236 _cupsBufferRelease((char *)buffer);
cb7f98ee 3237 return (IPP_STATE_ERROR);
a2326b5b
MS
3238 }
3239
3240 /*
3241 * Finally, reallocate the attribute array as needed...
3242 */
3243
3244 if ((value = ipp_set_value(ipp, &attr, attr->num_values)) == NULL)
3245 {
dcb445bc 3246 _cupsBufferRelease((char *)buffer);
cb7f98ee 3247 return (IPP_STATE_ERROR);
a2326b5b
MS
3248 }
3249 }
3250 else if (tag == IPP_TAG_MEMBERNAME)
3251 {
3252 /*
3253 * Name must be length 0!
3254 */
3255
3256 if (n)
3257 {
cb7f98ee 3258 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("IPP member name is not empty."), 1);
a2326b5b 3259 DEBUG_puts("1ippReadIO: member name not empty.");
dcb445bc 3260 _cupsBufferRelease((char *)buffer);
cb7f98ee 3261 return (IPP_STATE_ERROR);
a2326b5b
MS
3262 }
3263
3264 if (ipp->current)
3265 ipp->prev = ipp->current;
3266
3267 attr = ipp->current = ipp_add_attr(ipp, NULL, ipp->curtag, IPP_TAG_ZERO, 1);
0fa6c7fa
MS
3268 if (!attr)
3269 {
cb7f98ee 3270 _cupsSetHTTPError(HTTP_STATUS_ERROR);
0fa6c7fa
MS
3271 DEBUG_puts("1ippReadIO: unable to allocate attribute.");
3272 _cupsBufferRelease((char *)buffer);
cb7f98ee 3273 return (IPP_STATE_ERROR);
0fa6c7fa 3274 }
a2326b5b 3275
807315e6 3276 DEBUG_printf(("2ippReadIO: membername, ipp->current=%p, ipp->prev=%p", (void *)ipp->current, (void *)ipp->prev));
a2326b5b 3277
9c80ffa2 3278 value = attr->values;
a2326b5b
MS
3279 }
3280 else if (tag != IPP_TAG_END_COLLECTION)
3281 {
3282 /*
3283 * New attribute; read the name and add it...
3284 */
3285
7e86f2f6 3286 if ((*cb)(src, buffer, (size_t)n) < n)
a2326b5b
MS
3287 {
3288 DEBUG_puts("1ippReadIO: unable to read name.");
dcb445bc 3289 _cupsBufferRelease((char *)buffer);
cb7f98ee 3290 return (IPP_STATE_ERROR);
a2326b5b
MS
3291 }
3292
3293 buffer[n] = '\0';
3294
3295 if (ipp->current)
3296 ipp->prev = ipp->current;
3297
3298 if ((attr = ipp->current = ipp_add_attr(ipp, (char *)buffer, ipp->curtag, tag,
3299 1)) == NULL)
3300 {
cb7f98ee 3301 _cupsSetHTTPError(HTTP_STATUS_ERROR);
a2326b5b 3302 DEBUG_puts("1ippReadIO: unable to allocate attribute.");
dcb445bc 3303 _cupsBufferRelease((char *)buffer);
cb7f98ee 3304 return (IPP_STATE_ERROR);
a2326b5b
MS
3305 }
3306
807315e6 3307 DEBUG_printf(("2ippReadIO: name=\"%s\", ipp->current=%p, ipp->prev=%p", buffer, (void *)ipp->current, (void *)ipp->prev));
a2326b5b 3308
9c80ffa2 3309 value = attr->values;
a2326b5b
MS
3310 }
3311 else
3312 {
3313 attr = NULL;
3314 value = NULL;
3315 }
3316
3317 if ((*cb)(src, buffer, 2) < 2)
3318 {
3319 DEBUG_puts("1ippReadIO: unable to read value length.");
dcb445bc 3320 _cupsBufferRelease((char *)buffer);
cb7f98ee 3321 return (IPP_STATE_ERROR);
a2326b5b
MS
3322 }
3323
3324 n = (buffer[0] << 8) | buffer[1];
3325 DEBUG_printf(("2ippReadIO: value length=%d", n));
3326
3327 if (n >= IPP_BUF_SIZE)
3328 {
cb7f98ee 3329 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3330 _("IPP value larger than 32767 bytes."), 1);
3331 DEBUG_printf(("1ippReadIO: bad value length %d.", n));
dcb445bc 3332 _cupsBufferRelease((char *)buffer);
cb7f98ee 3333 return (IPP_STATE_ERROR);
a2326b5b
MS
3334 }
3335
3336 switch (tag)
3337 {
3338 case IPP_TAG_INTEGER :
3339 case IPP_TAG_ENUM :
3340 if (n != 4)
3341 {
3342 if (tag == IPP_TAG_INTEGER)
cb7f98ee 3343 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3344 _("IPP integer value not 4 bytes."), 1);
3345 else
cb7f98ee 3346 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b 3347 _("IPP enum value not 4 bytes."), 1);
a29fd7dd 3348 DEBUG_printf(("1ippReadIO: bad integer value length %d.", n));
dcb445bc 3349 _cupsBufferRelease((char *)buffer);
cb7f98ee 3350 return (IPP_STATE_ERROR);
a2326b5b
MS
3351 }
3352
3353 if ((*cb)(src, buffer, 4) < 4)
3354 {
3355 DEBUG_puts("1ippReadIO: Unable to read integer value.");
dcb445bc 3356 _cupsBufferRelease((char *)buffer);
cb7f98ee 3357 return (IPP_STATE_ERROR);
a2326b5b
MS
3358 }
3359
3360 n = (((((buffer[0] << 8) | buffer[1]) << 8) | buffer[2]) << 8) |
3361 buffer[3];
3362
3363 if (attr->value_tag == IPP_TAG_RANGE)
3364 value->range.lower = value->range.upper = n;
3365 else
3366 value->integer = n;
3367 break;
3368
3369 case IPP_TAG_BOOLEAN :
3370 if (n != 1)
3371 {
cb7f98ee 3372 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("IPP boolean value not 1 byte."),
a2326b5b 3373 1);
a29fd7dd 3374 DEBUG_printf(("1ippReadIO: bad boolean value length %d.", n));
dcb445bc 3375 _cupsBufferRelease((char *)buffer);
cb7f98ee 3376 return (IPP_STATE_ERROR);
a2326b5b
MS
3377 }
3378
3379 if ((*cb)(src, buffer, 1) < 1)
3380 {
3381 DEBUG_puts("1ippReadIO: Unable to read boolean value.");
dcb445bc 3382 _cupsBufferRelease((char *)buffer);
cb7f98ee 3383 return (IPP_STATE_ERROR);
a2326b5b
MS
3384 }
3385
7e86f2f6 3386 value->boolean = (char)buffer[0];
a2326b5b
MS
3387 break;
3388
3389 case IPP_TAG_NOVALUE :
3390 case IPP_TAG_NOTSETTABLE :
3391 case IPP_TAG_DELETEATTR :
3392 case IPP_TAG_ADMINDEFINE :
3393 /*
3394 * These value types are not supposed to have values, however
3395 * some vendors (Brother) do not implement IPP correctly and so
3396 * we need to map non-empty values to text...
3397 */
3398
3399 if (attr->value_tag == tag)
3400 {
3401 if (n == 0)
3402 break;
3403
3404 attr->value_tag = IPP_TAG_TEXT;
3405 }
3406
3407 case IPP_TAG_TEXT :
3408 case IPP_TAG_NAME :
3409 case IPP_TAG_KEYWORD :
3410 case IPP_TAG_URI :
3411 case IPP_TAG_URISCHEME :
3412 case IPP_TAG_CHARSET :
3413 case IPP_TAG_LANGUAGE :
3414 case IPP_TAG_MIMETYPE :
a29fd7dd
MS
3415 if (n > 0)
3416 {
7e86f2f6 3417 if ((*cb)(src, buffer, (size_t)n) < n)
a29fd7dd
MS
3418 {
3419 DEBUG_puts("1ippReadIO: unable to read string value.");
3420 _cupsBufferRelease((char *)buffer);
cb7f98ee 3421 return (IPP_STATE_ERROR);
a29fd7dd 3422 }
a2326b5b
MS
3423 }
3424
3425 buffer[n] = '\0';
3426 value->string.text = _cupsStrAlloc((char *)buffer);
3427 DEBUG_printf(("2ippReadIO: value=\"%s\"", value->string.text));
3428 break;
3429
3430 case IPP_TAG_DATE :
3431 if (n != 11)
3432 {
cb7f98ee 3433 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("IPP date value not 11 bytes."), 1);
a29fd7dd 3434 DEBUG_printf(("1ippReadIO: bad date value length %d.", n));
dcb445bc 3435 _cupsBufferRelease((char *)buffer);
cb7f98ee 3436 return (IPP_STATE_ERROR);
a2326b5b
MS
3437 }
3438
3439 if ((*cb)(src, value->date, 11) < 11)
3440 {
3441 DEBUG_puts("1ippReadIO: Unable to read date value.");
dcb445bc 3442 _cupsBufferRelease((char *)buffer);
cb7f98ee 3443 return (IPP_STATE_ERROR);
a2326b5b
MS
3444 }
3445 break;
3446
3447 case IPP_TAG_RESOLUTION :
3448 if (n != 9)
3449 {
cb7f98ee 3450 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b 3451 _("IPP resolution value not 9 bytes."), 1);
a29fd7dd 3452 DEBUG_printf(("1ippReadIO: bad resolution value length %d.", n));
dcb445bc 3453 _cupsBufferRelease((char *)buffer);
cb7f98ee 3454 return (IPP_STATE_ERROR);
a2326b5b
MS
3455 }
3456
3457 if ((*cb)(src, buffer, 9) < 9)
3458 {
3459 DEBUG_puts("1ippReadIO: Unable to read resolution value.");
dcb445bc 3460 _cupsBufferRelease((char *)buffer);
cb7f98ee 3461 return (IPP_STATE_ERROR);
a2326b5b
MS
3462 }
3463
3464 value->resolution.xres =
3465 (((((buffer[0] << 8) | buffer[1]) << 8) | buffer[2]) << 8) |
3466 buffer[3];
3467 value->resolution.yres =
3468 (((((buffer[4] << 8) | buffer[5]) << 8) | buffer[6]) << 8) |
3469 buffer[7];
3470 value->resolution.units =
3471 (ipp_res_t)buffer[8];
3472 break;
3473
3474 case IPP_TAG_RANGE :
3475 if (n != 8)
3476 {
cb7f98ee 3477 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b 3478 _("IPP rangeOfInteger value not 8 bytes."), 1);
a29fd7dd
MS
3479 DEBUG_printf(("1ippReadIO: bad rangeOfInteger value length "
3480 "%d.", n));
dcb445bc 3481 _cupsBufferRelease((char *)buffer);
cb7f98ee 3482 return (IPP_STATE_ERROR);
a2326b5b
MS
3483 }
3484
3485 if ((*cb)(src, buffer, 8) < 8)
3486 {
3487 DEBUG_puts("1ippReadIO: Unable to read range value.");
dcb445bc 3488 _cupsBufferRelease((char *)buffer);
cb7f98ee 3489 return (IPP_STATE_ERROR);
a2326b5b
MS
3490 }
3491
3492 value->range.lower =
3493 (((((buffer[0] << 8) | buffer[1]) << 8) | buffer[2]) << 8) |
3494 buffer[3];
3495 value->range.upper =
3496 (((((buffer[4] << 8) | buffer[5]) << 8) | buffer[6]) << 8) |
3497 buffer[7];
3498 break;
3499
3500 case IPP_TAG_TEXTLANG :
3501 case IPP_TAG_NAMELANG :
3502 if (n < 4)
3503 {
3504 if (tag == IPP_TAG_TEXTLANG)
cb7f98ee 3505 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3506 _("IPP textWithLanguage value less than "
3507 "minimum 4 bytes."), 1);
3508 else
cb7f98ee 3509 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3510 _("IPP nameWithLanguage value less than "
3511 "minimum 4 bytes."), 1);
a29fd7dd
MS
3512 DEBUG_printf(("1ippReadIO: bad stringWithLanguage value "
3513 "length %d.", n));
dcb445bc 3514 _cupsBufferRelease((char *)buffer);
cb7f98ee 3515 return (IPP_STATE_ERROR);
a2326b5b
MS
3516 }
3517
7e86f2f6 3518 if ((*cb)(src, buffer, (size_t)n) < n)
a2326b5b
MS
3519 {
3520 DEBUG_puts("1ippReadIO: Unable to read string w/language "
3521 "value.");
dcb445bc 3522 _cupsBufferRelease((char *)buffer);
cb7f98ee 3523 return (IPP_STATE_ERROR);
a2326b5b
MS
3524 }
3525
3526 bufptr = buffer;
3527
3528 /*
3529 * text-with-language and name-with-language are composite
3530 * values:
3531 *
3532 * language-length
3533 * language
3534 * text-length
3535 * text
3536 */
3537
3538 n = (bufptr[0] << 8) | bufptr[1];
3539
7e86f2f6 3540 if ((bufptr + 2 + n) >= (buffer + IPP_BUF_SIZE) || n >= (int)sizeof(string))
a2326b5b 3541 {
cb7f98ee 3542 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b 3543 _("IPP language length overflows value."), 1);
a29fd7dd
MS
3544 DEBUG_printf(("1ippReadIO: bad language value length %d.",
3545 n));
dcb445bc 3546 _cupsBufferRelease((char *)buffer);
cb7f98ee 3547 return (IPP_STATE_ERROR);
a2326b5b 3548 }
5a9febac
MS
3549 else if (n >= IPP_MAX_LANGUAGE)
3550 {
cb7f98ee 3551 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
5a9febac
MS
3552 _("IPP language length too large."), 1);
3553 DEBUG_printf(("1ippReadIO: bad language value length %d.",
3554 n));
3555 _cupsBufferRelease((char *)buffer);
cb7f98ee 3556 return (IPP_STATE_ERROR);
5a9febac 3557 }
a2326b5b 3558
07623986 3559 memcpy(string, bufptr + 2, (size_t)n);
a2326b5b
MS
3560 string[n] = '\0';
3561
3562 value->string.language = _cupsStrAlloc((char *)string);
3563
3564 bufptr += 2 + n;
3565 n = (bufptr[0] << 8) | bufptr[1];
3566
3567 if ((bufptr + 2 + n) >= (buffer + IPP_BUF_SIZE))
3568 {
cb7f98ee 3569 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b 3570 _("IPP string length overflows value."), 1);
a29fd7dd 3571 DEBUG_printf(("1ippReadIO: bad string value length %d.", n));
dcb445bc 3572 _cupsBufferRelease((char *)buffer);
cb7f98ee 3573 return (IPP_STATE_ERROR);
a2326b5b
MS
3574 }
3575
3576 bufptr[2 + n] = '\0';
3577 value->string.text = _cupsStrAlloc((char *)bufptr + 2);
3578 break;
3579
3580 case IPP_TAG_BEGIN_COLLECTION :
3581 /*
3582 * Oh, boy, here comes a collection value, so read it...
3583 */
3584
3585 value->collection = ippNew();
3586
3587 if (n > 0)
3588 {
cb7f98ee 3589 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3590 _("IPP begCollection value not 0 bytes."), 1);
3591 DEBUG_puts("1ippReadIO: begCollection tag with value length "
3592 "> 0.");
dcb445bc 3593 _cupsBufferRelease((char *)buffer);
cb7f98ee 3594 return (IPP_STATE_ERROR);
a2326b5b
MS
3595 }
3596
cb7f98ee 3597 if (ippReadIO(src, cb, 1, ipp, value->collection) == IPP_STATE_ERROR)
a2326b5b
MS
3598 {
3599 DEBUG_puts("1ippReadIO: Unable to read collection value.");
dcb445bc 3600 _cupsBufferRelease((char *)buffer);
cb7f98ee 3601 return (IPP_STATE_ERROR);
a2326b5b
MS
3602 }
3603 break;
3604
3605 case IPP_TAG_END_COLLECTION :
dcb445bc 3606 _cupsBufferRelease((char *)buffer);
a2326b5b
MS
3607
3608 if (n > 0)
3609 {
cb7f98ee 3610 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a2326b5b
MS
3611 _("IPP endCollection value not 0 bytes."), 1);
3612 DEBUG_puts("1ippReadIO: endCollection tag with value length "
3613 "> 0.");
cb7f98ee 3614 return (IPP_STATE_ERROR);
a2326b5b
MS
3615 }
3616
3617 DEBUG_puts("1ippReadIO: endCollection tag...");
cb7f98ee 3618 return (ipp->state = IPP_STATE_DATA);
a2326b5b
MS
3619
3620 case IPP_TAG_MEMBERNAME :
3621 /*
3622 * The value the name of the member in the collection, which
3623 * we need to carry over...
3624 */
3625
5a9febac
MS
3626 if (!attr)
3627 {
cb7f98ee 3628 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
5a9febac
MS
3629 _("IPP memberName with no attribute."), 1);
3630 DEBUG_puts("1ippReadIO: Member name without attribute.");
3631 _cupsBufferRelease((char *)buffer);
cb7f98ee 3632 return (IPP_STATE_ERROR);
5a9febac
MS
3633 }
3634 else if (n == 0)
a29fd7dd 3635 {
cb7f98ee 3636 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
a29fd7dd
MS
3637 _("IPP memberName value is empty."), 1);
3638 DEBUG_puts("1ippReadIO: Empty member name value.");
3639 _cupsBufferRelease((char *)buffer);
cb7f98ee 3640 return (IPP_STATE_ERROR);
a29fd7dd 3641 }
7e86f2f6 3642 else if ((*cb)(src, buffer, (size_t)n) < n)
a2326b5b
MS
3643 {
3644 DEBUG_puts("1ippReadIO: Unable to read member name value.");
dcb445bc 3645 _cupsBufferRelease((char *)buffer);
cb7f98ee 3646 return (IPP_STATE_ERROR);
a2326b5b
MS
3647 }
3648
3649 buffer[n] = '\0';
3650 attr->name = _cupsStrAlloc((char *)buffer);
3651
3652 /*
3653 * Since collection members are encoded differently than
3654 * regular attributes, make sure we don't start with an
3655 * empty value...
3656 */
3657
3658 attr->num_values --;
3659
3660 DEBUG_printf(("2ippReadIO: member name=\"%s\"", attr->name));
3661 break;
3662
3663 default : /* Other unsupported values */
a469f8a5 3664 if (tag == IPP_TAG_STRING && n > IPP_MAX_LENGTH)
5a9febac 3665 {
cb7f98ee 3666 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
5a9febac
MS
3667 _("IPP octetString length too large."), 1);
3668 DEBUG_printf(("1ippReadIO: bad octetString value length %d.",
3669 n));
3670 _cupsBufferRelease((char *)buffer);
cb7f98ee 3671 return (IPP_STATE_ERROR);
5a9febac
MS
3672 }
3673
a2326b5b 3674 value->unknown.length = n;
5a9febac 3675
a2326b5b
MS
3676 if (n > 0)
3677 {
7e86f2f6 3678 if ((value->unknown.data = malloc((size_t)n)) == NULL)
a2326b5b 3679 {
cb7f98ee 3680 _cupsSetHTTPError(HTTP_STATUS_ERROR);
a2326b5b 3681 DEBUG_puts("1ippReadIO: Unable to allocate value");
dcb445bc 3682 _cupsBufferRelease((char *)buffer);
cb7f98ee 3683 return (IPP_STATE_ERROR);
a2326b5b
MS
3684 }
3685
7e86f2f6 3686 if ((*cb)(src, value->unknown.data, (size_t)n) < n)
a2326b5b
MS
3687 {
3688 DEBUG_puts("1ippReadIO: Unable to read unsupported value.");
dcb445bc 3689 _cupsBufferRelease((char *)buffer);
cb7f98ee 3690 return (IPP_STATE_ERROR);
a2326b5b
MS
3691 }
3692 }
3693 else
3694 value->unknown.data = NULL;
3695 break;
3696 }
3697
a2326b5b
MS
3698 /*
3699 * If blocking is disabled, stop here...
ef416fc2 3700 */
3701
a2326b5b
MS
3702 if (!blocking)
3703 break;
3704 }
3705 break;
ef416fc2 3706
cb7f98ee 3707 case IPP_STATE_DATA :
a2326b5b 3708 break;
ef416fc2 3709
a2326b5b
MS
3710 default :
3711 break; /* anti-compiler-warning-code */
3712 }
ef416fc2 3713
a2326b5b 3714 DEBUG_printf(("1ippReadIO: returning ipp->state=%d.", ipp->state));
dcb445bc 3715 _cupsBufferRelease((char *)buffer);
ef416fc2 3716
a2326b5b
MS
3717 return (ipp->state);
3718}
ef416fc2 3719
ef416fc2 3720
a2326b5b
MS
3721/*
3722 * 'ippSetBoolean()' - Set a boolean value in an attribute.
3723 *
a469f8a5
MS
3724 * The @code ipp@ parameter refers to an IPP message previously created using
3725 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
3726 *
3727 * The @code attr@ parameter may be modified as a result of setting the value.
3728 *
3729 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 3730 * @code ippGetCount(attr)@.
a2326b5b 3731 *
8072030b 3732 * @since CUPS 1.6/macOS 10.8@
a2326b5b 3733 */
ef416fc2 3734
a2326b5b 3735int /* O - 1 on success, 0 on failure */
6961465f 3736ippSetBoolean(ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
3737 ipp_attribute_t **attr, /* IO - IPP attribute */
3738 int element, /* I - Value number (0-based) */
3739 int boolvalue)/* I - Boolean value */
3740{
3741 _ipp_value_t *value; /* Current value */
ef416fc2 3742
ef416fc2 3743
a2326b5b
MS
3744 /*
3745 * Range check input...
3746 */
ef416fc2 3747
a2326b5b
MS
3748 if (!ipp || !attr || !*attr || (*attr)->value_tag != IPP_TAG_BOOLEAN ||
3749 element < 0 || element > (*attr)->num_values)
3750 return (0);
83e08001 3751
a2326b5b
MS
3752 /*
3753 * Set the value and return...
3754 */
83e08001 3755
a2326b5b 3756 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
7e86f2f6 3757 value->boolean = (char)boolvalue;
83e08001 3758
a2326b5b
MS
3759 return (value != NULL);
3760}
83e08001 3761
83e08001 3762
a2326b5b
MS
3763/*
3764 * 'ippSetCollection()' - Set a collection value in an attribute.
3765 *
a469f8a5
MS
3766 * The @code ipp@ parameter refers to an IPP message previously created using
3767 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
3768 *
3769 * The @code attr@ parameter may be modified as a result of setting the value.
3770 *
3771 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 3772 * @code ippGetCount(attr)@.
a2326b5b 3773 *
8072030b 3774 * @since CUPS 1.6/macOS 10.8@
a2326b5b 3775 */
83e08001 3776
a2326b5b
MS
3777int /* O - 1 on success, 0 on failure */
3778ippSetCollection(
6961465f 3779 ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
3780 ipp_attribute_t **attr, /* IO - IPP attribute */
3781 int element, /* I - Value number (0-based) */
3782 ipp_t *colvalue) /* I - Collection value */
3783{
3784 _ipp_value_t *value; /* Current value */
3785
3786
3787 /*
3788 * Range check input...
3789 */
3790
3791 if (!ipp || !attr || !*attr || (*attr)->value_tag != IPP_TAG_BEGIN_COLLECTION ||
3792 element < 0 || element > (*attr)->num_values || !colvalue)
3793 return (0);
3794
3795 /*
3796 * Set the value and return...
3797 */
3798
3799 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
3800 {
3801 if (value->collection)
3802 ippDelete(value->collection);
3803
3804 value->collection = colvalue;
3805 colvalue->use ++;
3806 }
3807
3808 return (value != NULL);
3809}
3810
3811
9c80ffa2 3812/*
65bebeac 3813 * 'ippSetDate()' - Set a dateTime value in an attribute.
9c80ffa2 3814 *
a469f8a5
MS
3815 * The @code ipp@ parameter refers to an IPP message previously created using
3816 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
9c80ffa2
MS
3817 *
3818 * The @code attr@ parameter may be modified as a result of setting the value.
3819 *
3820 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 3821 * @code ippGetCount(attr)@.
9c80ffa2 3822 *
8072030b 3823 * @since CUPS 1.6/macOS 10.8@
9c80ffa2
MS
3824 */
3825
3826int /* O - 1 on success, 0 on failure */
6961465f 3827ippSetDate(ipp_t *ipp, /* I - IPP message */
9c80ffa2
MS
3828 ipp_attribute_t **attr, /* IO - IPP attribute */
3829 int element, /* I - Value number (0-based) */
65bebeac 3830 const ipp_uchar_t *datevalue)/* I - dateTime value */
9c80ffa2
MS
3831{
3832 _ipp_value_t *value; /* Current value */
3833
3834
3835 /*
3836 * Range check input...
3837 */
3838
3839 if (!ipp || !attr || !*attr || (*attr)->value_tag != IPP_TAG_DATE ||
3840 element < 0 || element > (*attr)->num_values || !datevalue)
3841 return (0);
3842
3843 /*
3844 * Set the value and return...
3845 */
3846
3847 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
3848 memcpy(value->date, datevalue, sizeof(value->date));
3849
3850 return (value != NULL);
3851}
3852
3853
a2326b5b
MS
3854/*
3855 * 'ippSetGroupTag()' - Set the group tag of an attribute.
3856 *
a469f8a5
MS
3857 * The @code ipp@ parameter refers to an IPP message previously created using
3858 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
3859 *
3860 * The @code attr@ parameter may be modified as a result of setting the value.
3861 *
3862 * The @code group@ parameter specifies the IPP attribute group tag: none
3863 * (@code IPP_TAG_ZERO@, for member attributes), document (@code IPP_TAG_DOCUMENT@),
3864 * event notification (@code IPP_TAG_EVENT_NOTIFICATION@), operation
3865 * (@code IPP_TAG_OPERATION@), printer (@code IPP_TAG_PRINTER@), subscription
3866 * (@code IPP_TAG_SUBSCRIPTION@), or unsupported (@code IPP_TAG_UNSUPPORTED_GROUP@).
3867 *
8072030b 3868 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
3869 */
3870
3871int /* O - 1 on success, 0 on failure */
3872ippSetGroupTag(
6961465f 3873 ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
3874 ipp_attribute_t **attr, /* IO - Attribute */
3875 ipp_tag_t group_tag) /* I - Group tag */
3876{
3877 /*
65bebeac 3878 * Range check input - group tag must be 0x01 to 0x0F, per RFC 8011...
a2326b5b
MS
3879 */
3880
a469f8a5
MS
3881 if (!ipp || !attr || !*attr ||
3882 group_tag < IPP_TAG_ZERO || group_tag == IPP_TAG_END ||
a2326b5b
MS
3883 group_tag >= IPP_TAG_UNSUPPORTED_VALUE)
3884 return (0);
3885
3886 /*
3887 * Set the group tag and return...
3888 */
3889
3890 (*attr)->group_tag = group_tag;
3891
3892 return (1);
3893}
3894
3895
3896/*
3897 * 'ippSetInteger()' - Set an integer or enum value in an attribute.
3898 *
a469f8a5
MS
3899 * The @code ipp@ parameter refers to an IPP message previously created using
3900 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
3901 *
3902 * The @code attr@ parameter may be modified as a result of setting the value.
3903 *
3904 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 3905 * @code ippGetCount(attr)@.
a2326b5b 3906 *
8072030b 3907 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
3908 */
3909
3910int /* O - 1 on success, 0 on failure */
6961465f 3911ippSetInteger(ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
3912 ipp_attribute_t **attr, /* IO - IPP attribute */
3913 int element, /* I - Value number (0-based) */
3914 int intvalue) /* I - Integer/enum value */
3915{
3916 _ipp_value_t *value; /* Current value */
3917
3918
3919 /*
3920 * Range check input...
3921 */
3922
3923 if (!ipp || !attr || !*attr ||
3924 ((*attr)->value_tag != IPP_TAG_INTEGER && (*attr)->value_tag != IPP_TAG_ENUM) ||
3925 element < 0 || element > (*attr)->num_values)
3926 return (0);
3927
3928 /*
3929 * Set the value and return...
3930 */
3931
3932 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
3933 value->integer = intvalue;
3934
3935 return (value != NULL);
3936}
3937
3938
3939/*
3940 * 'ippSetName()' - Set the name of an attribute.
3941 *
a469f8a5
MS
3942 * The @code ipp@ parameter refers to an IPP message previously created using
3943 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
3944 *
3945 * The @code attr@ parameter may be modified as a result of setting the value.
3946 *
8072030b 3947 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
3948 */
3949
3950int /* O - 1 on success, 0 on failure */
6961465f 3951ippSetName(ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
3952 ipp_attribute_t **attr, /* IO - IPP attribute */
3953 const char *name) /* I - Attribute name */
3954{
3955 char *temp; /* Temporary name value */
3956
3957
3958 /*
3959 * Range check input...
3960 */
3961
3962 if (!ipp || !attr || !*attr)
3963 return (0);
ef416fc2 3964
a2326b5b
MS
3965 /*
3966 * Set the value and return...
3967 */
ef416fc2 3968
a2326b5b
MS
3969 if ((temp = _cupsStrAlloc(name)) != NULL)
3970 {
3971 if ((*attr)->name)
3972 _cupsStrFree((*attr)->name);
ef416fc2 3973
a2326b5b
MS
3974 (*attr)->name = temp;
3975 }
ef416fc2 3976
a2326b5b
MS
3977 return (temp != NULL);
3978}
ef416fc2 3979
ef416fc2 3980
6961465f
MS
3981/*
3982 * 'ippSetOctetString()' - Set an octetString value in an IPP attribute.
3983 *
3984 * The @code ipp@ parameter refers to an IPP message previously created using
3985 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
3986 *
3987 * The @code attr@ parameter may be modified as a result of setting the value.
3988 *
3989 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 3990 * @code ippGetCount(attr)@.
6961465f 3991 *
8072030b 3992 * @since CUPS 1.7/macOS 10.9@
6961465f
MS
3993 */
3994
3995int /* O - 1 on success, 0 on failure */
3996ippSetOctetString(
3997 ipp_t *ipp, /* I - IPP message */
3998 ipp_attribute_t **attr, /* IO - IPP attribute */
3999 int element, /* I - Value number (0-based) */
4000 const void *data, /* I - Pointer to octetString data */
4001 int datalen) /* I - Length of octetString data */
4002{
4003 _ipp_value_t *value; /* Current value */
4004
4005
4006 /*
4007 * Range check input...
4008 */
4009
4010 if (!ipp || !attr || !*attr || (*attr)->value_tag != IPP_TAG_STRING ||
4011 element < 0 || element > (*attr)->num_values ||
4012 datalen < 0 || datalen > IPP_MAX_LENGTH)
4013 return (0);
4014
4015 /*
4016 * Set the value and return...
4017 */
4018
4019 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
4020 {
4021 if ((int)((*attr)->value_tag) & IPP_TAG_CUPS_CONST)
4022 {
4023 /*
4024 * Just copy the pointer...
4025 */
4026
4027 value->unknown.data = (void *)data;
4028 value->unknown.length = datalen;
4029 }
4030 else
4031 {
4032 /*
4033 * Copy the data...
4034 */
4035
4036 if (value->unknown.data)
4037 {
4038 /*
4039 * Free previous data...
4040 */
4041
4042 free(value->unknown.data);
4043
4044 value->unknown.data = NULL;
4045 value->unknown.length = 0;
4046 }
4047
4048 if (datalen > 0)
4049 {
4050 void *temp; /* Temporary data pointer */
4051
7e86f2f6 4052 if ((temp = malloc((size_t)datalen)) != NULL)
6961465f 4053 {
07623986 4054 memcpy(temp, data, (size_t)datalen);
6961465f
MS
4055
4056 value->unknown.data = temp;
4057 value->unknown.length = datalen;
4058 }
4059 else
4060 return (0);
4061 }
4062 }
4063 }
4064
4065 return (value != NULL);
4066}
4067
4068
a2326b5b
MS
4069/*
4070 * 'ippSetOperation()' - Set the operation ID in an IPP request message.
4071 *
a469f8a5
MS
4072 * The @code ipp@ parameter refers to an IPP message previously created using
4073 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b 4074 *
8072030b 4075 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4076 */
ef416fc2 4077
a2326b5b
MS
4078int /* O - 1 on success, 0 on failure */
4079ippSetOperation(ipp_t *ipp, /* I - IPP request message */
4080 ipp_op_t op) /* I - Operation ID */
4081{
4082 /*
4083 * Range check input...
4084 */
ef416fc2 4085
a2326b5b
MS
4086 if (!ipp)
4087 return (0);
ef416fc2 4088
a2326b5b
MS
4089 /*
4090 * Set the operation and return...
4091 */
ef416fc2 4092
a2326b5b 4093 ipp->request.op.operation_id = op;
ef416fc2 4094
a2326b5b
MS
4095 return (1);
4096}
ef416fc2 4097
ef416fc2 4098
a2326b5b
MS
4099/*
4100 * 'ippSetRange()' - Set a rangeOfInteger value in an attribute.
4101 *
a469f8a5
MS
4102 * The @code ipp@ parameter refers to an IPP message previously created using
4103 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
4104 *
4105 * The @code attr@ parameter may be modified as a result of setting the value.
4106 *
4107 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 4108 * @code ippGetCount(attr)@.
a2326b5b 4109 *
8072030b 4110 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4111 */
ef416fc2 4112
a2326b5b 4113int /* O - 1 on success, 0 on failure */
6961465f 4114ippSetRange(ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
4115 ipp_attribute_t **attr, /* IO - IPP attribute */
4116 int element, /* I - Value number (0-based) */
4117 int lowervalue, /* I - Lower bound for range */
4118 int uppervalue) /* I - Upper bound for range */
4119{
4120 _ipp_value_t *value; /* Current value */
ef416fc2 4121
ef416fc2 4122
a2326b5b
MS
4123 /*
4124 * Range check input...
4125 */
ef416fc2 4126
a2326b5b
MS
4127 if (!ipp || !attr || !*attr || (*attr)->value_tag != IPP_TAG_RANGE ||
4128 element < 0 || element > (*attr)->num_values || lowervalue > uppervalue)
4129 return (0);
ef416fc2 4130
a2326b5b
MS
4131 /*
4132 * Set the value and return...
4133 */
ef416fc2 4134
a2326b5b
MS
4135 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
4136 {
4137 value->range.lower = lowervalue;
4138 value->range.upper = uppervalue;
4139 }
ef416fc2 4140
a2326b5b
MS
4141 return (value != NULL);
4142}
ef416fc2 4143
ef416fc2 4144
a2326b5b
MS
4145/*
4146 * 'ippSetRequestId()' - Set the request ID in an IPP message.
4147 *
a469f8a5
MS
4148 * The @code ipp@ parameter refers to an IPP message previously created using
4149 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
4150 *
4151 * The @code request_id@ parameter must be greater than 0.
4152 *
8072030b 4153 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4154 */
ef416fc2 4155
a2326b5b
MS
4156int /* O - 1 on success, 0 on failure */
4157ippSetRequestId(ipp_t *ipp, /* I - IPP message */
4158 int request_id) /* I - Request ID */
4159{
4160 /*
4161 * Range check input; not checking request_id values since ipptool wants to send
4162 * invalid values for conformance testing and a bad request_id does not affect the
4163 * encoding of a message...
4164 */
83e08001 4165
a2326b5b
MS
4166 if (!ipp)
4167 return (0);
a41f09e2 4168
a2326b5b
MS
4169 /*
4170 * Set the request ID and return...
4171 */
ef416fc2 4172
a2326b5b 4173 ipp->request.any.request_id = request_id;
ef416fc2 4174
a2326b5b
MS
4175 return (1);
4176}
5a738aea 4177
a41f09e2 4178
a2326b5b
MS
4179/*
4180 * 'ippSetResolution()' - Set a resolution value in an attribute.
4181 *
a469f8a5
MS
4182 * The @code ipp@ parameter refers to an IPP message previously created using
4183 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
4184 *
4185 * The @code attr@ parameter may be modified as a result of setting the value.
4186 *
4187 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 4188 * @code ippGetCount(attr)@.
a2326b5b 4189 *
8072030b 4190 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4191 */
ef416fc2 4192
a2326b5b
MS
4193int /* O - 1 on success, 0 on failure */
4194ippSetResolution(
6961465f 4195 ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
4196 ipp_attribute_t **attr, /* IO - IPP attribute */
4197 int element, /* I - Value number (0-based) */
4198 ipp_res_t unitsvalue, /* I - Resolution units */
4199 int xresvalue, /* I - Horizontal/cross feed resolution */
4200 int yresvalue) /* I - Vertical/feed resolution */
4201{
4202 _ipp_value_t *value; /* Current value */
5a738aea 4203
536bc2c6 4204
a2326b5b
MS
4205 /*
4206 * Range check input...
4207 */
1ff0402e 4208
a2326b5b
MS
4209 if (!ipp || !attr || !*attr || (*attr)->value_tag != IPP_TAG_RESOLUTION ||
4210 element < 0 || element > (*attr)->num_values || xresvalue <= 0 || yresvalue <= 0 ||
4211 unitsvalue < IPP_RES_PER_INCH || unitsvalue > IPP_RES_PER_CM)
4212 return (0);
1ff0402e 4213
a2326b5b
MS
4214 /*
4215 * Set the value and return...
4216 */
ef416fc2 4217
a2326b5b
MS
4218 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
4219 {
4220 value->resolution.units = unitsvalue;
4221 value->resolution.xres = xresvalue;
4222 value->resolution.yres = yresvalue;
4223 }
5a738aea 4224
a2326b5b
MS
4225 return (value != NULL);
4226}
a41f09e2 4227
5a738aea 4228
9c80ffa2
MS
4229/*
4230 * 'ippSetState()' - Set the current state of the IPP message.
4231 *
8072030b 4232 * @since CUPS 1.6/macOS 10.8@
9c80ffa2
MS
4233 */
4234
4235int /* O - 1 on success, 0 on failure */
4236ippSetState(ipp_t *ipp, /* I - IPP message */
4237 ipp_state_t state) /* I - IPP state value */
4238{
4239 /*
4240 * Range check input...
4241 */
4242
4243 if (!ipp)
4244 return (0);
4245
4246 /*
4247 * Set the state and return...
4248 */
4249
4250 ipp->state = state;
4251 ipp->current = NULL;
4252
4253 return (1);
4254}
4255
4256
a2326b5b
MS
4257/*
4258 * 'ippSetStatusCode()' - Set the status code in an IPP response or event message.
4259 *
a469f8a5
MS
4260 * The @code ipp@ parameter refers to an IPP message previously created using
4261 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b 4262 *
8072030b 4263 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4264 */
a41f09e2 4265
a2326b5b
MS
4266int /* O - 1 on success, 0 on failure */
4267ippSetStatusCode(ipp_t *ipp, /* I - IPP response or event message */
4268 ipp_status_t status) /* I - Status code */
4269{
4270 /*
4271 * Range check input...
4272 */
4273
4274 if (!ipp)
4275 return (0);
ef416fc2 4276
a2326b5b
MS
4277 /*
4278 * Set the status code and return...
4279 */
5a738aea 4280
a2326b5b 4281 ipp->request.status.status_code = status;
a41f09e2 4282
a2326b5b 4283 return (1);
a2326b5b 4284}
5a738aea 4285
ef416fc2 4286
a2326b5b
MS
4287/*
4288 * 'ippSetString()' - Set a string value in an attribute.
4289 *
a469f8a5
MS
4290 * The @code ipp@ parameter refers to an IPP message previously created using
4291 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
4292 *
4293 * The @code attr@ parameter may be modified as a result of setting the value.
4294 *
4295 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 4296 * @code ippGetCount(attr)@.
a2326b5b 4297 *
8072030b 4298 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4299 */
ef416fc2 4300
a2326b5b 4301int /* O - 1 on success, 0 on failure */
6961465f 4302ippSetString(ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
4303 ipp_attribute_t **attr, /* IO - IPP attribute */
4304 int element, /* I - Value number (0-based) */
4305 const char *strvalue) /* I - String value */
4306{
4307 char *temp; /* Temporary string */
4308 _ipp_value_t *value; /* Current value */
1f717210 4309 ipp_tag_t value_tag; /* Value tag */
ef416fc2 4310
ef416fc2 4311
a2326b5b
MS
4312 /*
4313 * Range check input...
4314 */
ef416fc2 4315
1f717210
MS
4316 if (attr && *attr)
4317 value_tag = (*attr)->value_tag & IPP_TAG_CUPS_MASK;
4318 else
4319 value_tag = IPP_TAG_ZERO;
4320
3e7fe0ca 4321 if (!ipp || !attr || !*attr ||
1f717210
MS
4322 (value_tag < IPP_TAG_TEXT && value_tag != IPP_TAG_TEXTLANG &&
4323 value_tag != IPP_TAG_NAMELANG) || value_tag > IPP_TAG_MIMETYPE ||
4324 !strvalue)
a2326b5b 4325 return (0);
a41f09e2 4326
a2326b5b
MS
4327 /*
4328 * Set the value and return...
4329 */
ef416fc2 4330
a2326b5b
MS
4331 if ((value = ipp_set_value(ipp, attr, element)) != NULL)
4332 {
4333 if (element > 0)
4334 value->string.language = (*attr)->values[0].string.language;
ef416fc2 4335
cb7f98ee 4336 if ((int)((*attr)->value_tag) & IPP_TAG_CUPS_CONST)
a2326b5b
MS
4337 value->string.text = (char *)strvalue;
4338 else if ((temp = _cupsStrAlloc(strvalue)) != NULL)
4339 {
4340 if (value->string.text)
4341 _cupsStrFree(value->string.text);
ef416fc2 4342
a2326b5b
MS
4343 value->string.text = temp;
4344 }
4345 else
4346 return (0);
4347 }
a41f09e2 4348
a2326b5b
MS
4349 return (value != NULL);
4350}
ef416fc2 4351
ef416fc2 4352
a469f8a5
MS
4353/*
4354 * 'ippSetStringf()' - Set a formatted string value of an attribute.
4355 *
4356 * The @code ipp@ parameter refers to an IPP message previously created using
4357 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
4358 *
4359 * The @code attr@ parameter may be modified as a result of setting the value.
4360 *
4361 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 4362 * @code ippGetCount(attr)@.
a469f8a5
MS
4363 *
4364 * The @code format@ parameter uses formatting characters compatible with the
4365 * printf family of standard functions. Additional arguments follow it as
4366 * needed. The formatted string is truncated as needed to the maximum length of
4367 * the corresponding value type.
4368 *
8072030b 4369 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
4370 */
4371
4372int /* O - 1 on success, 0 on failure */
6961465f 4373ippSetStringf(ipp_t *ipp, /* I - IPP message */
a469f8a5
MS
4374 ipp_attribute_t **attr, /* IO - IPP attribute */
4375 int element, /* I - Value number (0-based) */
4376 const char *format, /* I - Printf-style format string */
4377 ...) /* I - Additional arguments as needed */
4378{
4379 int ret; /* Return value */
4380 va_list ap; /* Pointer to additional arguments */
4381
4382
4383 va_start(ap, format);
4384 ret = ippSetStringfv(ipp, attr, element, format, ap);
4385 va_end(ap);
4386
4387 return (ret);
4388}
4389
4390
4391/*
4392 * 'ippSetStringf()' - Set a formatted string value of an attribute.
4393 *
4394 * The @code ipp@ parameter refers to an IPP message previously created using
4395 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
4396 *
4397 * The @code attr@ parameter may be modified as a result of setting the value.
4398 *
4399 * The @code element@ parameter specifies which value to set from 0 to
65bebeac 4400 * @code ippGetCount(attr)@.
a469f8a5
MS
4401 *
4402 * The @code format@ parameter uses formatting characters compatible with the
4403 * printf family of standard functions. Additional arguments follow it as
4404 * needed. The formatted string is truncated as needed to the maximum length of
4405 * the corresponding value type.
4406 *
8072030b 4407 * @since CUPS 1.7/macOS 10.9@
a469f8a5
MS
4408 */
4409
4410int /* O - 1 on success, 0 on failure */
6961465f 4411ippSetStringfv(ipp_t *ipp, /* I - IPP message */
a469f8a5
MS
4412 ipp_attribute_t **attr, /* IO - IPP attribute */
4413 int element, /* I - Value number (0-based) */
4414 const char *format, /* I - Printf-style format string */
4415 va_list ap) /* I - Pointer to additional arguments */
4416{
4417 ipp_tag_t value_tag; /* Value tag */
4418 char buffer[IPP_MAX_TEXT + 4];
4419 /* Formatted text string */
4420 ssize_t bytes, /* Length of formatted value */
4421 max_bytes; /* Maximum number of bytes for value */
4422
4423
4424 /*
4425 * Range check input...
4426 */
4427
4428 if (attr && *attr)
4429 value_tag = (*attr)->value_tag & IPP_TAG_CUPS_MASK;
4430 else
4431 value_tag = IPP_TAG_ZERO;
4432
4433 if (!ipp || !attr || !*attr ||
4434 (value_tag < IPP_TAG_TEXT && value_tag != IPP_TAG_TEXTLANG &&
4435 value_tag != IPP_TAG_NAMELANG) || value_tag > IPP_TAG_MIMETYPE ||
56cd8959 4436 !format)
a469f8a5
MS
4437 return (0);
4438
4439 /*
4440 * Format the string...
4441 */
4442
4443 if (!strcmp(format, "%s"))
4444 {
4445 /*
4446 * Optimize the simple case...
4447 */
4448
4449 const char *s = va_arg(ap, char *);
4450
4451 if (!s)
4452 s = "(null)";
4453
7e86f2f6 4454 bytes = (ssize_t)strlen(s);
a469f8a5
MS
4455 strlcpy(buffer, s, sizeof(buffer));
4456 }
4457 else
4458 {
4459 /*
4460 * Do a full formatting of the message...
4461 */
4462
4463 if ((bytes = vsnprintf(buffer, sizeof(buffer), format, ap)) < 0)
4464 return (0);
4465 }
4466
4467 /*
4468 * Limit the length of the string...
4469 */
4470
4471 switch (value_tag)
4472 {
4473 default :
4474 case IPP_TAG_TEXT :
4475 case IPP_TAG_TEXTLANG :
4476 max_bytes = IPP_MAX_TEXT;
4477 break;
4478
4479 case IPP_TAG_NAME :
4480 case IPP_TAG_NAMELANG :
4481 max_bytes = IPP_MAX_NAME;
4482 break;
4483
4484 case IPP_TAG_CHARSET :
4485 max_bytes = IPP_MAX_CHARSET;
4486 break;
4487
4488 case IPP_TAG_KEYWORD :
4489 max_bytes = IPP_MAX_KEYWORD;
4490 break;
4491
4492 case IPP_TAG_LANGUAGE :
4493 max_bytes = IPP_MAX_LANGUAGE;
4494 break;
4495
4496 case IPP_TAG_MIMETYPE :
4497 max_bytes = IPP_MAX_MIMETYPE;
4498 break;
4499
4500 case IPP_TAG_URI :
4501 max_bytes = IPP_MAX_URI;
4502 break;
4503
4504 case IPP_TAG_URISCHEME :
4505 max_bytes = IPP_MAX_URISCHEME;
4506 break;
4507 }
4508
4509 if (bytes >= max_bytes)
4510 {
4511 char *bufmax, /* Buffer at max_bytes */
4512 *bufptr; /* Pointer into buffer */
4513
4514 bufptr = buffer + strlen(buffer) - 1;
4515 bufmax = buffer + max_bytes - 1;
4516
4517 while (bufptr > bufmax)
4518 {
4519 if (*bufptr & 0x80)
4520 {
4521 while ((*bufptr & 0xc0) == 0x80 && bufptr > buffer)
4522 bufptr --;
4523 }
4524
4525 bufptr --;
4526 }
4527
4528 *bufptr = '\0';
4529 }
4530
4531 /*
4532 * Set the formatted string and return...
4533 */
4534
4535 return (ippSetString(ipp, attr, element, buffer));
4536}
4537
4538
a2326b5b
MS
4539/*
4540 * 'ippSetValueTag()' - Set the value tag of an attribute.
4541 *
a469f8a5
MS
4542 * The @code ipp@ parameter refers to an IPP message previously created using
4543 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
4544 *
4545 * The @code attr@ parameter may be modified as a result of setting the value.
4546 *
4547 * Integer (@code IPP_TAG_INTEGER@) values can be promoted to rangeOfInteger
4548 * (@code IPP_TAG_RANGE@) values, the various string tags can be promoted to name
4549 * (@code IPP_TAG_NAME@) or nameWithLanguage (@code IPP_TAG_NAMELANG@) values, text
4550 * (@code IPP_TAG_TEXT@) values can be promoted to textWithLanguage
4551 * (@code IPP_TAG_TEXTLANG@) values, and all values can be demoted to the various
4552 * out-of-band value tags such as no-value (@code IPP_TAG_NOVALUE@). All other changes
4553 * will be rejected.
4554 *
4555 * Promoting a string attribute to nameWithLanguage or textWithLanguage adds the language
4556 * code in the "attributes-natural-language" attribute or, if not present, the language
4557 * code for the current locale.
4558 *
8072030b 4559 * @since CUPS 1.6/macOS 10.8@
a2326b5b 4560 */
ef416fc2 4561
a2326b5b
MS
4562int /* O - 1 on success, 0 on failure */
4563ippSetValueTag(
6961465f 4564 ipp_t *ipp, /* I - IPP message */
a2326b5b
MS
4565 ipp_attribute_t **attr, /* IO - IPP attribute */
4566 ipp_tag_t value_tag) /* I - Value tag */
4567{
4568 int i; /* Looping var */
4569 _ipp_value_t *value; /* Current value */
4570 int integer; /* Current integer value */
4571 cups_lang_t *language; /* Current language */
4572 char code[32]; /* Language code */
4573 ipp_tag_t temp_tag; /* Temporary value tag */
ef416fc2 4574
ef416fc2 4575
a2326b5b
MS
4576 /*
4577 * Range check input...
4578 */
1f6f3dbc 4579
a469f8a5 4580 if (!ipp || !attr || !*attr)
a2326b5b 4581 return (0);
ef416fc2 4582
a2326b5b
MS
4583 /*
4584 * If there is no change, return immediately...
4585 */
ef416fc2 4586
a2326b5b
MS
4587 if (value_tag == (*attr)->value_tag)
4588 return (1);
ef416fc2 4589
a2326b5b
MS
4590 /*
4591 * Otherwise implement changes as needed...
4592 */
ef416fc2 4593
cb7f98ee 4594 temp_tag = (ipp_tag_t)((int)((*attr)->value_tag) & IPP_TAG_CUPS_MASK);
4400e98d 4595
a2326b5b
MS
4596 switch (value_tag)
4597 {
4598 case IPP_TAG_UNSUPPORTED_VALUE :
4599 case IPP_TAG_DEFAULT :
4600 case IPP_TAG_UNKNOWN :
4601 case IPP_TAG_NOVALUE :
4602 case IPP_TAG_NOTSETTABLE :
4603 case IPP_TAG_DELETEATTR :
4604 case IPP_TAG_ADMINDEFINE :
4605 /*
4606 * Free any existing values...
4607 */
ef416fc2 4608
a2326b5b
MS
4609 if ((*attr)->num_values > 0)
4610 ipp_free_values(*attr, 0, (*attr)->num_values);
ef416fc2 4611
a2326b5b
MS
4612 /*
4613 * Set out-of-band value...
4614 */
ef416fc2 4615
a2326b5b
MS
4616 (*attr)->value_tag = value_tag;
4617 break;
91c84a35 4618
a2326b5b
MS
4619 case IPP_TAG_RANGE :
4620 if (temp_tag != IPP_TAG_INTEGER)
4621 return (0);
4622
4623 for (i = (*attr)->num_values, value = (*attr)->values;
4624 i > 0;
4625 i --, value ++)
4626 {
4627 integer = value->integer;
4628 value->range.lower = value->range.upper = integer;
4629 }
ef416fc2 4630
a2326b5b
MS
4631 (*attr)->value_tag = IPP_TAG_RANGE;
4632 break;
ef416fc2 4633
a2326b5b
MS
4634 case IPP_TAG_NAME :
4635 if (temp_tag != IPP_TAG_KEYWORD && temp_tag != IPP_TAG_URI &&
4636 temp_tag != IPP_TAG_URISCHEME && temp_tag != IPP_TAG_LANGUAGE &&
4637 temp_tag != IPP_TAG_MIMETYPE)
4638 return (0);
ef416fc2 4639
cb7f98ee 4640 (*attr)->value_tag = (ipp_tag_t)(IPP_TAG_NAME | ((*attr)->value_tag & IPP_TAG_CUPS_CONST));
ef416fc2 4641 break;
4642
a2326b5b
MS
4643 case IPP_TAG_NAMELANG :
4644 case IPP_TAG_TEXTLANG :
4645 if (value_tag == IPP_TAG_NAMELANG &&
4646 (temp_tag != IPP_TAG_NAME && temp_tag != IPP_TAG_KEYWORD &&
4647 temp_tag != IPP_TAG_URI && temp_tag != IPP_TAG_URISCHEME &&
4648 temp_tag != IPP_TAG_LANGUAGE && temp_tag != IPP_TAG_MIMETYPE))
4649 return (0);
4650
4651 if (value_tag == IPP_TAG_TEXTLANG && temp_tag != IPP_TAG_TEXT)
4652 return (0);
4653
4654 if (ipp->attrs && ipp->attrs->next && ipp->attrs->next->name &&
4655 !strcmp(ipp->attrs->next->name, "attributes-natural-language"))
4656 {
4657 /*
4658 * Use the language code from the IPP message...
4659 */
4660
4661 (*attr)->values[0].string.language =
4662 _cupsStrAlloc(ipp->attrs->next->values[0].string.text);
4663 }
4664 else
4665 {
4666 /*
4667 * Otherwise, use the language code corresponding to the locale...
4668 */
4669
4670 language = cupsLangDefault();
4671 (*attr)->values[0].string.language = _cupsStrAlloc(ipp_lang_code(language->language,
4672 code,
4673 sizeof(code)));
4674 }
4675
4676 for (i = (*attr)->num_values - 1, value = (*attr)->values + 1;
4677 i > 0;
4678 i --, value ++)
4679 value->string.language = (*attr)->values[0].string.language;
4680
cb7f98ee 4681 if ((int)(*attr)->value_tag & IPP_TAG_CUPS_CONST)
a2326b5b
MS
4682 {
4683 /*
4684 * Make copies of all values...
4685 */
4686
4687 for (i = (*attr)->num_values, value = (*attr)->values;
4688 i > 0;
4689 i --, value ++)
4690 value->string.text = _cupsStrAlloc(value->string.text);
4691 }
4692
4693 (*attr)->value_tag = IPP_TAG_NAMELANG;
ef416fc2 4694 break;
4695
a2326b5b
MS
4696 case IPP_TAG_KEYWORD :
4697 if (temp_tag == IPP_TAG_NAME || temp_tag == IPP_TAG_NAMELANG)
4698 break; /* Silently "allow" name -> keyword */
4699
ef416fc2 4700 default :
a2326b5b 4701 return (0);
ef416fc2 4702 }
4703
a2326b5b
MS
4704 return (1);
4705}
4706
4707
4708/*
4709 * 'ippSetVersion()' - Set the version number in an IPP message.
4710 *
a469f8a5
MS
4711 * The @code ipp@ parameter refers to an IPP message previously created using
4712 * the @link ippNew@, @link ippNewRequest@, or @link ippNewResponse@ functions.
a2326b5b
MS
4713 *
4714 * The valid version numbers are currently 1.0, 1.1, 2.0, 2.1, and 2.2.
4715 *
8072030b 4716 * @since CUPS 1.6/macOS 10.8@
a2326b5b
MS
4717 */
4718
4719int /* O - 1 on success, 0 on failure */
4720ippSetVersion(ipp_t *ipp, /* I - IPP message */
4721 int major, /* I - Major version number (major.minor) */
4722 int minor) /* I - Minor version number (major.minor) */
4723{
4724 /*
4725 * Range check input...
4726 */
4727
4728 if (!ipp || major < 0 || minor < 0)
4729 return (0);
4730
4731 /*
4732 * Set the version number...
4733 */
4734
7e86f2f6
MS
4735 ipp->request.any.version[0] = (ipp_uchar_t)major;
4736 ipp->request.any.version[1] = (ipp_uchar_t)minor;
89d46774 4737
a2326b5b 4738 return (1);
ef416fc2 4739}
4740
4741
4742/*
65bebeac 4743 * 'ippTimeToDate()' - Convert from time in seconds to RFC 2579 format.
ef416fc2 4744 */
4745
65bebeac
MS
4746const ipp_uchar_t * /* O - RFC-2579 date/time data */
4747ippTimeToDate(time_t t) /* I - Time in seconds */
ef416fc2 4748{
4749 struct tm *unixdate; /* UNIX unixdate/time info */
4750 ipp_uchar_t *date = _cupsGlobals()->ipp_date;
65bebeac 4751 /* RFC-2579 date/time data */
ef416fc2 4752
4753
4754 /*
65bebeac 4755 * RFC-2579 date/time format is:
ef416fc2 4756 *
4757 * Byte(s) Description
4758 * ------- -----------
4759 * 0-1 Year (0 to 65535)
4760 * 2 Month (1 to 12)
4761 * 3 Day (1 to 31)
4762 * 4 Hours (0 to 23)
4763 * 5 Minutes (0 to 59)
4764 * 6 Seconds (0 to 60, 60 = "leap second")
4765 * 7 Deciseconds (0 to 9)
4766 * 8 +/- UTC
4767 * 9 UTC hours (0 to 11)
4768 * 10 UTC minutes (0 to 59)
4769 */
4770
4771 unixdate = gmtime(&t);
4772 unixdate->tm_year += 1900;
4773
7e86f2f6
MS
4774 date[0] = (ipp_uchar_t)(unixdate->tm_year >> 8);
4775 date[1] = (ipp_uchar_t)(unixdate->tm_year);
4776 date[2] = (ipp_uchar_t)(unixdate->tm_mon + 1);
4777 date[3] = (ipp_uchar_t)unixdate->tm_mday;
4778 date[4] = (ipp_uchar_t)unixdate->tm_hour;
4779 date[5] = (ipp_uchar_t)unixdate->tm_min;
4780 date[6] = (ipp_uchar_t)unixdate->tm_sec;
ef416fc2 4781 date[7] = 0;
4782 date[8] = '+';
4783 date[9] = 0;
4784 date[10] = 0;
4785
4786 return (date);
4787}
4788
4789
c1420c87
MS
4790/*
4791 * 'ippValidateAttribute()' - Validate the contents of an attribute.
4792 *
4793 * This function validates the contents of an attribute based on the name and
4794 * value tag. 1 is returned if the attribute is valid, 0 otherwise. On
65bebeac 4795 * failure, @link cupsLastErrorString@ is set to a human-readable message.
c1420c87 4796 *
8072030b 4797 * @since CUPS 1.7/macOS 10.9@
c1420c87
MS
4798 */
4799
4800int /* O - 1 if valid, 0 otherwise */
4801ippValidateAttribute(
4802 ipp_attribute_t *attr) /* I - Attribute */
4803{
4804 int i; /* Looping var */
4805 char scheme[64], /* Scheme from URI */
4806 userpass[256], /* Username/password from URI */
4807 hostname[256], /* Hostname from URI */
4808 resource[1024]; /* Resource from URI */
4809 int port, /* Port number from URI */
4810 uri_status; /* URI separation status */
4811 const char *ptr; /* Pointer into string */
4812 ipp_attribute_t *colattr; /* Collection attribute */
4813 regex_t re; /* Regular expression */
4814 ipp_uchar_t *date; /* Current date value */
c1420c87
MS
4815
4816
4817 /*
4818 * Skip separators.
4819 */
4820
4821 if (!attr->name)
4822 return (1);
4823
4824 /*
4825 * Validate the attribute name.
4826 */
4827
4828 for (ptr = attr->name; *ptr; ptr ++)
4829 if (!isalnum(*ptr & 255) && *ptr != '-' && *ptr != '.' && *ptr != '_')
4830 break;
4831
4832 if (*ptr || ptr == attr->name)
4833 {
4834 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4835 _("\"%s\": Bad attribute name - invalid character "
65bebeac 4836 "(RFC 8011 section 5.1.4)."), attr->name);
c1420c87
MS
4837 return (0);
4838 }
4839
4840 if ((ptr - attr->name) > 255)
4841 {
4842 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4843 _("\"%s\": Bad attribute name - bad length %d "
65bebeac 4844 "(RFC 8011 section 5.1.4)."), attr->name,
c1420c87
MS
4845 (int)(ptr - attr->name));
4846 return (0);
4847 }
4848
4849 switch (attr->value_tag)
4850 {
4851 case IPP_TAG_INTEGER :
4852 break;
4853
4854 case IPP_TAG_BOOLEAN :
4855 for (i = 0; i < attr->num_values; i ++)
4856 {
4857 if (attr->values[i].boolean != 0 &&
4858 attr->values[i].boolean != 1)
4859 {
4860 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4861 _("\"%s\": Bad boolen value %d "
65bebeac 4862 "(RFC 8011 section 5.1.21)."), attr->name,
c1420c87
MS
4863 attr->values[i].boolean);
4864 return (0);
4865 }
4866 }
4867 break;
4868
4869 case IPP_TAG_ENUM :
4870 for (i = 0; i < attr->num_values; i ++)
4871 {
4872 if (attr->values[i].integer < 1)
4873 {
4874 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4875 _("\"%s\": Bad enum value %d - out of range "
65bebeac 4876 "(RFC 8011 section 5.1.5)."), attr->name,
c1420c87
MS
4877 attr->values[i].integer);
4878 return (0);
4879 }
4880 }
4881 break;
4882
4883 case IPP_TAG_STRING :
4884 for (i = 0; i < attr->num_values; i ++)
4885 {
4886 if (attr->values[i].unknown.length > IPP_MAX_OCTETSTRING)
4887 {
4888 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4889 _("\"%s\": Bad octetString value - bad length %d "
65bebeac 4890 "(RFC 8011 section 5.1.20)."), attr->name,
c1420c87
MS
4891 attr->values[i].unknown.length);
4892 return (0);
4893 }
4894 }
4895 break;
4896
4897 case IPP_TAG_DATE :
4898 for (i = 0; i < attr->num_values; i ++)
4899 {
4900 date = attr->values[i].date;
4901
4902 if (date[2] < 1 || date[2] > 12)
4903 {
4904 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4905 _("\"%s\": Bad dateTime month %u "
65bebeac 4906 "(RFC 8011 section 5.1.15)."), attr->name, date[2]);
c1420c87
MS
4907 return (0);
4908 }
4909
4910 if (date[3] < 1 || date[3] > 31)
4911 {
4912 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4913 _("\"%s\": Bad dateTime day %u "
65bebeac 4914 "(RFC 8011 section 5.1.15)."), attr->name, date[3]);
c1420c87
MS
4915 return (0);
4916 }
4917
4918 if (date[4] > 23)
4919 {
4920 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4921 _("\"%s\": Bad dateTime hours %u "
65bebeac 4922 "(RFC 8011 section 5.1.15)."), attr->name, date[4]);
c1420c87
MS
4923 return (0);
4924 }
4925
4926 if (date[5] > 59)
4927 {
4928 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4929 _("\"%s\": Bad dateTime minutes %u "
65bebeac 4930 "(RFC 8011 section 5.1.15)."), attr->name, date[5]);
c1420c87
MS
4931 return (0);
4932 }
4933
4934 if (date[6] > 60)
4935 {
4936 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4937 _("\"%s\": Bad dateTime seconds %u "
65bebeac 4938 "(RFC 8011 section 5.1.15)."), attr->name, date[6]);
c1420c87
MS
4939 return (0);
4940 }
4941
4942 if (date[7] > 9)
4943 {
4944 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4945 _("\"%s\": Bad dateTime deciseconds %u "
65bebeac 4946 "(RFC 8011 section 5.1.15)."), attr->name, date[7]);
c1420c87
MS
4947 return (0);
4948 }
4949
4950 if (date[8] != '-' && date[8] != '+')
4951 {
4952 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4953 _("\"%s\": Bad dateTime UTC sign '%c' "
65bebeac 4954 "(RFC 8011 section 5.1.15)."), attr->name, date[8]);
c1420c87
MS
4955 return (0);
4956 }
4957
4958 if (date[9] > 11)
4959 {
4960 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4961 _("\"%s\": Bad dateTime UTC hours %u "
65bebeac 4962 "(RFC 8011 section 5.1.15)."), attr->name, date[9]);
c1420c87
MS
4963 return (0);
4964 }
4965
4966 if (date[10] > 59)
4967 {
4968 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4969 _("\"%s\": Bad dateTime UTC minutes %u "
65bebeac 4970 "(RFC 8011 section 5.1.15)."), attr->name, date[10]);
c1420c87
MS
4971 return (0);
4972 }
4973 }
4974 break;
4975
4976 case IPP_TAG_RESOLUTION :
4977 for (i = 0; i < attr->num_values; i ++)
4978 {
4979 if (attr->values[i].resolution.xres <= 0)
4980 {
4981 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4982 _("\"%s\": Bad resolution value %dx%d%s - cross "
4983 "feed resolution must be positive "
65bebeac 4984 "(RFC 8011 section 5.1.16)."), attr->name,
c1420c87
MS
4985 attr->values[i].resolution.xres,
4986 attr->values[i].resolution.yres,
4987 attr->values[i].resolution.units ==
4988 IPP_RES_PER_INCH ? "dpi" :
4989 attr->values[i].resolution.units ==
4990 IPP_RES_PER_CM ? "dpcm" : "unknown");
4991 return (0);
4992 }
4993
4994 if (attr->values[i].resolution.yres <= 0)
4995 {
4996 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
4997 _("\"%s\": Bad resolution value %dx%d%s - feed "
4998 "resolution must be positive "
65bebeac 4999 "(RFC 8011 section 5.1.16)."), attr->name,
c1420c87
MS
5000 attr->values[i].resolution.xres,
5001 attr->values[i].resolution.yres,
5002 attr->values[i].resolution.units ==
5003 IPP_RES_PER_INCH ? "dpi" :
5004 attr->values[i].resolution.units ==
5005 IPP_RES_PER_CM ? "dpcm" : "unknown");
5006 return (0);
5007 }
5008
5009 if (attr->values[i].resolution.units != IPP_RES_PER_INCH &&
5010 attr->values[i].resolution.units != IPP_RES_PER_CM)
5011 {
5012 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5013 _("\"%s\": Bad resolution value %dx%d%s - bad "
65bebeac 5014 "units value (RFC 8011 section 5.1.16)."),
c1420c87
MS
5015 attr->name, attr->values[i].resolution.xres,
5016 attr->values[i].resolution.yres,
5017 attr->values[i].resolution.units ==
5018 IPP_RES_PER_INCH ? "dpi" :
5019 attr->values[i].resolution.units ==
5020 IPP_RES_PER_CM ? "dpcm" : "unknown");
5021 return (0);
5022 }
5023 }
5024 break;
5025
5026 case IPP_TAG_RANGE :
5027 for (i = 0; i < attr->num_values; i ++)
5028 {
5029 if (attr->values[i].range.lower > attr->values[i].range.upper)
5030 {
5031 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5032 _("\"%s\": Bad rangeOfInteger value %d-%d - lower "
65bebeac 5033 "greater than upper (RFC 8011 section 5.1.14)."),
c1420c87
MS
5034 attr->name, attr->values[i].range.lower,
5035 attr->values[i].range.upper);
5036 return (0);
5037 }
5038 }
5039 break;
5040
5041 case IPP_TAG_BEGIN_COLLECTION :
5042 for (i = 0; i < attr->num_values; i ++)
5043 {
5044 for (colattr = attr->values[i].collection->attrs;
5045 colattr;
5046 colattr = colattr->next)
5047 {
5048 if (!ippValidateAttribute(colattr))
5049 return (0);
5050 }
5051 }
5052 break;
5053
5054 case IPP_TAG_TEXT :
5055 case IPP_TAG_TEXTLANG :
5056 for (i = 0; i < attr->num_values; i ++)
5057 {
5058 for (ptr = attr->values[i].string.text; *ptr; ptr ++)
5059 {
5060 if ((*ptr & 0xe0) == 0xc0)
5061 {
5062 ptr ++;
5063 if ((*ptr & 0xc0) != 0x80)
5064 break;
5065 }
5066 else if ((*ptr & 0xf0) == 0xe0)
5067 {
5068 ptr ++;
5069 if ((*ptr & 0xc0) != 0x80)
5070 break;
5071 ptr ++;
5072 if ((*ptr & 0xc0) != 0x80)
5073 break;
5074 }
5075 else if ((*ptr & 0xf8) == 0xf0)
5076 {
5077 ptr ++;
5078 if ((*ptr & 0xc0) != 0x80)
5079 break;
5080 ptr ++;
5081 if ((*ptr & 0xc0) != 0x80)
5082 break;
5083 ptr ++;
5084 if ((*ptr & 0xc0) != 0x80)
5085 break;
5086 }
5087 else if (*ptr & 0x80)
5088 break;
4c37eb9f
MS
5089 else if ((*ptr < ' ' && *ptr != '\n' && *ptr != '\r' && *ptr != '\t') || *ptr == 0x7f)
5090 break;
c1420c87
MS
5091 }
5092
4c37eb9f 5093 if (*ptr < ' ' || *ptr == 0x7f)
c1420c87 5094 {
4c37eb9f
MS
5095 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST, _("\"%s\": Bad text value \"%s\" - bad control character (PWG 5100.14 section 8.3)."), attr->name, attr->values[i].string.text);
5096 return (0);
5097 }
5098 else if (*ptr)
5099 {
5100 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST, _("\"%s\": Bad text value \"%s\" - bad UTF-8 sequence (RFC 8011 section 5.1.2)."), attr->name, attr->values[i].string.text);
c1420c87
MS
5101 return (0);
5102 }
5103
5104 if ((ptr - attr->values[i].string.text) > (IPP_MAX_TEXT - 1))
5105 {
5106 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5107 _("\"%s\": Bad text value \"%s\" - bad length %d "
65bebeac 5108 "(RFC 8011 section 5.1.2)."), attr->name,
c1420c87
MS
5109 attr->values[i].string.text,
5110 (int)(ptr - attr->values[i].string.text));
5111 return (0);
5112 }
5113 }
5114 break;
5115
5116 case IPP_TAG_NAME :
5117 case IPP_TAG_NAMELANG :
5118 for (i = 0; i < attr->num_values; i ++)
5119 {
5120 for (ptr = attr->values[i].string.text; *ptr; ptr ++)
5121 {
5122 if ((*ptr & 0xe0) == 0xc0)
5123 {
5124 ptr ++;
5125 if ((*ptr & 0xc0) != 0x80)
5126 break;
5127 }
5128 else if ((*ptr & 0xf0) == 0xe0)
5129 {
5130 ptr ++;
5131 if ((*ptr & 0xc0) != 0x80)
5132 break;
5133 ptr ++;
5134 if ((*ptr & 0xc0) != 0x80)
5135 break;
5136 }
5137 else if ((*ptr & 0xf8) == 0xf0)
5138 {
5139 ptr ++;
5140 if ((*ptr & 0xc0) != 0x80)
5141 break;
5142 ptr ++;
5143 if ((*ptr & 0xc0) != 0x80)
5144 break;
5145 ptr ++;
5146 if ((*ptr & 0xc0) != 0x80)
5147 break;
5148 }
5149 else if (*ptr & 0x80)
5150 break;
4c37eb9f
MS
5151 else if (*ptr < ' ' || *ptr == 0x7f)
5152 break;
c1420c87
MS
5153 }
5154
4c37eb9f 5155 if (*ptr < ' ' || *ptr == 0x7f)
c1420c87 5156 {
4c37eb9f
MS
5157 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST, _("\"%s\": Bad name value \"%s\" - bad control character (PWG 5100.14 section 8.1)."), attr->name, attr->values[i].string.text);
5158 return (0);
5159 }
5160 else if (*ptr)
5161 {
5162 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST, _("\"%s\": Bad name value \"%s\" - bad UTF-8 sequence (RFC 8011 section 5.1.3)."), attr->name, attr->values[i].string.text);
c1420c87
MS
5163 return (0);
5164 }
5165
5166 if ((ptr - attr->values[i].string.text) > (IPP_MAX_NAME - 1))
5167 {
5168 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5169 _("\"%s\": Bad name value \"%s\" - bad length %d "
65bebeac 5170 "(RFC 8011 section 5.1.3)."), attr->name,
c1420c87
MS
5171 attr->values[i].string.text,
5172 (int)(ptr - attr->values[i].string.text));
5173 return (0);
5174 }
5175 }
5176 break;
5177
5178 case IPP_TAG_KEYWORD :
5179 for (i = 0; i < attr->num_values; i ++)
5180 {
5181 for (ptr = attr->values[i].string.text; *ptr; ptr ++)
5182 if (!isalnum(*ptr & 255) && *ptr != '-' && *ptr != '.' &&
5183 *ptr != '_')
5184 break;
5185
5186 if (*ptr || ptr == attr->values[i].string.text)
5187 {
5188 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5189 _("\"%s\": Bad keyword value \"%s\" - invalid "
65bebeac 5190 "character (RFC 8011 section 5.1.4)."),
c1420c87
MS
5191 attr->name, attr->values[i].string.text);
5192 return (0);
5193 }
5194
5195 if ((ptr - attr->values[i].string.text) > (IPP_MAX_KEYWORD - 1))
5196 {
5197 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5198 _("\"%s\": Bad keyword value \"%s\" - bad "
65bebeac 5199 "length %d (RFC 8011 section 5.1.4)."),
c1420c87
MS
5200 attr->name, attr->values[i].string.text,
5201 (int)(ptr - attr->values[i].string.text));
5202 return (0);
5203 }
5204 }
5205 break;
5206
5207 case IPP_TAG_URI :
5208 for (i = 0; i < attr->num_values; i ++)
5209 {
5210 uri_status = httpSeparateURI(HTTP_URI_CODING_ALL,
5211 attr->values[i].string.text,
5212 scheme, sizeof(scheme),
5213 userpass, sizeof(userpass),
5214 hostname, sizeof(hostname),
5215 &port, resource, sizeof(resource));
5216
cb7f98ee 5217 if (uri_status < HTTP_URI_STATUS_OK)
c1420c87 5218 {
4c37eb9f 5219 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST, _("\"%s\": Bad URI value \"%s\" - %s (RFC 8011 section 5.1.6)."), attr->name, attr->values[i].string.text, httpURIStatusString(uri_status));
c1420c87
MS
5220 return (0);
5221 }
5222
5223 if (strlen(attr->values[i].string.text) > (IPP_MAX_URI - 1))
5224 {
5225 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5226 _("\"%s\": Bad URI value \"%s\" - bad length %d "
65bebeac 5227 "(RFC 8011 section 5.1.6)."), attr->name,
c1420c87
MS
5228 attr->values[i].string.text,
5229 (int)strlen(attr->values[i].string.text));
5230 }
5231 }
5232 break;
5233
5234 case IPP_TAG_URISCHEME :
5235 for (i = 0; i < attr->num_values; i ++)
5236 {
5237 ptr = attr->values[i].string.text;
5238 if (islower(*ptr & 255))
5239 {
5240 for (ptr ++; *ptr; ptr ++)
5241 if (!islower(*ptr & 255) && !isdigit(*ptr & 255) &&
5242 *ptr != '+' && *ptr != '-' && *ptr != '.')
5243 break;
5244 }
5245
5246 if (*ptr || ptr == attr->values[i].string.text)
5247 {
5248 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5249 _("\"%s\": Bad uriScheme value \"%s\" - bad "
65bebeac 5250 "characters (RFC 8011 section 5.1.7)."),
c1420c87
MS
5251 attr->name, attr->values[i].string.text);
5252 return (0);
5253 }
5254
5255 if ((ptr - attr->values[i].string.text) > (IPP_MAX_URISCHEME - 1))
5256 {
5257 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5258 _("\"%s\": Bad uriScheme value \"%s\" - bad "
65bebeac 5259 "length %d (RFC 8011 section 5.1.7)."),
c1420c87
MS
5260 attr->name, attr->values[i].string.text,
5261 (int)(ptr - attr->values[i].string.text));
5262 return (0);
5263 }
5264 }
5265 break;
5266
5267 case IPP_TAG_CHARSET :
5268 for (i = 0; i < attr->num_values; i ++)
5269 {
5270 for (ptr = attr->values[i].string.text; *ptr; ptr ++)
5271 if (!isprint(*ptr & 255) || isupper(*ptr & 255) ||
5272 isspace(*ptr & 255))
5273 break;
5274
5275 if (*ptr || ptr == attr->values[i].string.text)
5276 {
5277 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5278 _("\"%s\": Bad charset value \"%s\" - bad "
65bebeac 5279 "characters (RFC 8011 section 5.1.8)."),
c1420c87
MS
5280 attr->name, attr->values[i].string.text);
5281 return (0);
5282 }
5283
5284 if ((ptr - attr->values[i].string.text) > (IPP_MAX_CHARSET - 1))
5285 {
5286 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5287 _("\"%s\": Bad charset value \"%s\" - bad "
65bebeac 5288 "length %d (RFC 8011 section 5.1.8)."),
c1420c87
MS
5289 attr->name, attr->values[i].string.text,
5290 (int)(ptr - attr->values[i].string.text));
5291 return (0);
5292 }
5293 }
5294 break;
5295
5296 case IPP_TAG_LANGUAGE :
5297 /*
5298 * The following regular expression is derived from the ABNF for
5299 * language tags in RFC 4646. All I can say is that this is the
5300 * easiest way to check the values...
5301 */
5302
5303 if ((i = regcomp(&re,
5304 "^("
5305 "(([a-z]{2,3}(-[a-z][a-z][a-z]){0,3})|[a-z]{4,8})"
5306 /* language */
5307 "(-[a-z][a-z][a-z][a-z]){0,1}" /* script */
5308 "(-([a-z][a-z]|[0-9][0-9][0-9])){0,1}" /* region */
5309 "(-([a-z]{5,8}|[0-9][0-9][0-9]))*" /* variant */
5310 "(-[a-wy-z](-[a-z0-9]{2,8})+)*" /* extension */
5311 "(-x(-[a-z0-9]{1,8})+)*" /* privateuse */
5312 "|"
5313 "x(-[a-z0-9]{1,8})+" /* privateuse */
5314 "|"
5315 "[a-z]{1,3}(-[a-z][0-9]{2,8}){1,2}" /* grandfathered */
5316 ")$",
5317 REG_NOSUB | REG_EXTENDED)) != 0)
5318 {
5319 char temp[256]; /* Temporary error string */
5320
5321 regerror(i, &re, temp, sizeof(temp));
5322 ipp_set_error(IPP_STATUS_ERROR_INTERNAL,
5323 _("Unable to compile naturalLanguage regular "
5324 "expression: %s."), temp);
5325 return (0);
5326 }
5327
5328 for (i = 0; i < attr->num_values; i ++)
5329 {
5330 if (regexec(&re, attr->values[i].string.text, 0, NULL, 0))
5331 {
5332 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5333 _("\"%s\": Bad naturalLanguage value \"%s\" - bad "
65bebeac 5334 "characters (RFC 8011 section 5.1.9)."),
c1420c87
MS
5335 attr->name, attr->values[i].string.text);
5336 regfree(&re);
5337 return (0);
5338 }
5339
5340 if (strlen(attr->values[i].string.text) > (IPP_MAX_LANGUAGE - 1))
5341 {
5342 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5343 _("\"%s\": Bad naturalLanguage value \"%s\" - bad "
65bebeac 5344 "length %d (RFC 8011 section 5.1.9)."),
c1420c87
MS
5345 attr->name, attr->values[i].string.text,
5346 (int)strlen(attr->values[i].string.text));
5347 regfree(&re);
5348 return (0);
5349 }
5350 }
5351
5352 regfree(&re);
5353 break;
5354
5355 case IPP_TAG_MIMETYPE :
5356 /*
5357 * The following regular expression is derived from the ABNF for
5358 * MIME media types in RFC 2045 and 4288. All I can say is that this is
5359 * the easiest way to check the values...
5360 */
5361
5362 if ((i = regcomp(&re,
5363 "^"
5364 "[-a-zA-Z0-9!#$&.+^_]{1,127}" /* type-name */
5365 "/"
5366 "[-a-zA-Z0-9!#$&.+^_]{1,127}" /* subtype-name */
5367 "(;[-a-zA-Z0-9!#$&.+^_]{1,127}=" /* parameter= */
5368 "([-a-zA-Z0-9!#$&.+^_]{1,127}|\"[^\"]*\"))*"
5369 /* value */
5370 "$",
5371 REG_NOSUB | REG_EXTENDED)) != 0)
5372 {
5373 char temp[256]; /* Temporary error string */
5374
5375 regerror(i, &re, temp, sizeof(temp));
5376 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5377 _("Unable to compile mimeMediaType regular "
5378 "expression: %s."), temp);
5379 return (0);
5380 }
5381
5382 for (i = 0; i < attr->num_values; i ++)
5383 {
5384 if (regexec(&re, attr->values[i].string.text, 0, NULL, 0))
5385 {
5386 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5387 _("\"%s\": Bad mimeMediaType value \"%s\" - bad "
65bebeac 5388 "characters (RFC 8011 section 5.1.10)."),
c1420c87
MS
5389 attr->name, attr->values[i].string.text);
5390 regfree(&re);
5391 return (0);
5392 }
5393
5394 if (strlen(attr->values[i].string.text) > (IPP_MAX_MIMETYPE - 1))
5395 {
5396 ipp_set_error(IPP_STATUS_ERROR_BAD_REQUEST,
5397 _("\"%s\": Bad mimeMediaType value \"%s\" - bad "
65bebeac 5398 "length %d (RFC 8011 section 5.1.10)."),
c1420c87
MS
5399 attr->name, attr->values[i].string.text,
5400 (int)strlen(attr->values[i].string.text));
5401 regfree(&re);
5402 return (0);
5403 }
5404 }
5405
5406 regfree(&re);
5407 break;
5408
5409 default :
5410 break;
5411 }
5412
5413 return (1);
5414}
5415
5416
5417/*
5418 * 'ippValidateAttributes()' - Validate all attributes in an IPP message.
5419 *
5420 * This function validates the contents of the IPP message, including each
65bebeac
MS
5421 * attribute. Like @link ippValidateAttribute@, @link cupsLastErrorString@ is
5422 * set to a human-readable message on failure.
c1420c87 5423 *
8072030b 5424 * @since CUPS 1.7/macOS 10.9@
c1420c87
MS
5425 */
5426
5427int /* O - 1 if valid, 0 otherwise */
5428ippValidateAttributes(ipp_t *ipp) /* I - IPP message */
5429{
5430 ipp_attribute_t *attr; /* Current attribute */
5431
5432
5433 if (!ipp)
5434 return (1);
5435
5436 for (attr = ipp->attrs; attr; attr = attr->next)
5437 if (!ippValidateAttribute(attr))
5438 return (0);
5439
5440 return (1);
5441}
5442
5443
ef416fc2 5444/*
5445 * 'ippWrite()' - Write data for an IPP message to a HTTP connection.
5446 */
5447
5448ipp_state_t /* O - Current state */
5449ippWrite(http_t *http, /* I - HTTP connection */
5450 ipp_t *ipp) /* I - IPP data */
5451{
807315e6 5452 DEBUG_printf(("ippWrite(http=%p, ipp=%p)", (void *)http, (void *)ipp));
ef416fc2 5453
1ff0402e 5454 if (!http)
cb7f98ee 5455 return (IPP_STATE_ERROR);
ef416fc2 5456
e07d4801 5457 return (ippWriteIO(http, (ipp_iocb_t)httpWrite2, http->blocking, NULL, ipp));
ef416fc2 5458}
5459
5460
5461/*
5462 * 'ippWriteFile()' - Write data for an IPP message to a file.
5463 *
8072030b 5464 * @since CUPS 1.1.19/macOS 10.3@
ef416fc2 5465 */
5466
5467ipp_state_t /* O - Current state */
5468ippWriteFile(int fd, /* I - HTTP data */
5469 ipp_t *ipp) /* I - IPP data */
5470{
807315e6 5471 DEBUG_printf(("ippWriteFile(fd=%d, ipp=%p)", fd, (void *)ipp));
ef416fc2 5472
cb7f98ee 5473 ipp->state = IPP_STATE_IDLE;
ef416fc2 5474
5475 return (ippWriteIO(&fd, (ipp_iocb_t)ipp_write_file, 1, NULL, ipp));
5476}
5477
5478
5479/*
5480 * 'ippWriteIO()' - Write data for an IPP message.
5481 *
8072030b 5482 * @since CUPS 1.2/macOS 10.5@
ef416fc2 5483 */
5484
5485ipp_state_t /* O - Current state */
5486ippWriteIO(void *dst, /* I - Destination */
5487 ipp_iocb_t cb, /* I - Write callback function */
5488 int blocking, /* I - Use blocking IO? */
5489 ipp_t *parent, /* I - Parent IPP message */
5490 ipp_t *ipp) /* I - IPP data */
5491{
5492 int i; /* Looping var */
5493 int n; /* Length of data */
1f6f3dbc 5494 unsigned char *buffer, /* Data buffer */
ef416fc2 5495 *bufptr; /* Pointer into buffer */
5496 ipp_attribute_t *attr; /* Current attribute */
a2326b5b 5497 _ipp_value_t *value; /* Current value */
ef416fc2 5498
5499
807315e6 5500 DEBUG_printf(("ippWriteIO(dst=%p, cb=%p, blocking=%d, parent=%p, ipp=%p)", (void *)dst, (void *)cb, blocking, (void *)parent, (void *)ipp));
ef416fc2 5501
1ff0402e 5502 if (!dst || !ipp)
cb7f98ee 5503 return (IPP_STATE_ERROR);
ef416fc2 5504
dcb445bc 5505 if ((buffer = (unsigned char *)_cupsBufferGet(IPP_BUF_SIZE)) == NULL)
1f6f3dbc 5506 {
e07d4801 5507 DEBUG_puts("1ippWriteIO: Unable to get write buffer");
cb7f98ee 5508 return (IPP_STATE_ERROR);
1f6f3dbc
MS
5509 }
5510
ef416fc2 5511 switch (ipp->state)
5512 {
cb7f98ee 5513 case IPP_STATE_IDLE :
ef416fc2 5514 ipp->state ++; /* Avoid common problem... */
5515
cb7f98ee 5516 case IPP_STATE_HEADER :
ef416fc2 5517 if (parent == NULL)
5518 {
5519 /*
5520 * Send the request header:
5521 *
5522 * Version = 2 bytes
5523 * Operation/Status Code = 2 bytes
5524 * Request ID = 4 bytes
5525 * Total = 8 bytes
5526 */
5527
5528 bufptr = buffer;
5529
5530 *bufptr++ = ipp->request.any.version[0];
5531 *bufptr++ = ipp->request.any.version[1];
7e86f2f6
MS
5532 *bufptr++ = (ipp_uchar_t)(ipp->request.any.op_status >> 8);
5533 *bufptr++ = (ipp_uchar_t)ipp->request.any.op_status;
5534 *bufptr++ = (ipp_uchar_t)(ipp->request.any.request_id >> 24);
5535 *bufptr++ = (ipp_uchar_t)(ipp->request.any.request_id >> 16);
5536 *bufptr++ = (ipp_uchar_t)(ipp->request.any.request_id >> 8);
5537 *bufptr++ = (ipp_uchar_t)ipp->request.any.request_id;
ef416fc2 5538
ba55dc12
MS
5539 DEBUG_printf(("2ippWriteIO: version=%d.%d", buffer[0], buffer[1]));
5540 DEBUG_printf(("2ippWriteIO: op_status=%04x",
5541 ipp->request.any.op_status));
5542 DEBUG_printf(("2ippWriteIO: request_id=%d",
5543 ipp->request.any.request_id));
5544
7e86f2f6 5545 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5546 {
e07d4801 5547 DEBUG_puts("1ippWriteIO: Could not write IPP header...");
dcb445bc 5548 _cupsBufferRelease((char *)buffer);
cb7f98ee 5549 return (IPP_STATE_ERROR);
ef416fc2 5550 }
5551 }
5552
5553 /*
5554 * Reset the state engine to point to the first attribute
5555 * in the request/response, with no current group.
5556 */
5557
cb7f98ee 5558 ipp->state = IPP_STATE_ATTRIBUTE;
ef416fc2 5559 ipp->current = ipp->attrs;
5560 ipp->curtag = IPP_TAG_ZERO;
5561
807315e6 5562 DEBUG_printf(("1ippWriteIO: ipp->current=%p", (void *)ipp->current));
ef416fc2 5563
5564 /*
5565 * If blocking is disabled, stop here...
5566 */
5567
5568 if (!blocking)
5569 break;
5570
cb7f98ee 5571 case IPP_STATE_ATTRIBUTE :
ef416fc2 5572 while (ipp->current != NULL)
5573 {
5574 /*
5575 * Write this attribute...
5576 */
5577
5578 bufptr = buffer;
5579 attr = ipp->current;
5580
5581 ipp->current = ipp->current->next;
5582
ba55dc12 5583 if (!parent)
ef416fc2 5584 {
ba55dc12
MS
5585 if (ipp->curtag != attr->group_tag)
5586 {
5587 /*
5588 * Send a group tag byte...
5589 */
ef416fc2 5590
ba55dc12 5591 ipp->curtag = attr->group_tag;
ef416fc2 5592
ba55dc12
MS
5593 if (attr->group_tag == IPP_TAG_ZERO)
5594 continue;
ef416fc2 5595
ba55dc12
MS
5596 DEBUG_printf(("2ippWriteIO: wrote group tag=%x(%s)",
5597 attr->group_tag, ippTagString(attr->group_tag)));
7e86f2f6 5598 *bufptr++ = (ipp_uchar_t)attr->group_tag;
ba55dc12
MS
5599 }
5600 else if (attr->group_tag == IPP_TAG_ZERO)
5601 continue;
ef416fc2 5602 }
ba55dc12
MS
5603
5604 DEBUG_printf(("1ippWriteIO: %s (%s%s)", attr->name,
5605 attr->num_values > 1 ? "1setOf " : "",
5606 ippTagString(attr->value_tag)));
ef416fc2 5607
5608 /*
a2326b5b 5609 * Write the attribute tag and name.
ef416fc2 5610 *
5611 * The attribute name length does not include the trailing nul
5612 * character in the source string.
5613 *
5614 * Collection values (parent != NULL) are written differently...
5615 */
5616
5617 if (parent == NULL)
5618 {
5619 /*
5620 * Get the length of the attribute name, and make sure it won't
5621 * overflow the buffer...
5622 */
5623
a2326b5b 5624 if ((n = (int)strlen(attr->name)) > (IPP_BUF_SIZE - 8))
1f6f3dbc 5625 {
e07d4801 5626 DEBUG_printf(("1ippWriteIO: Attribute name too long (%d)", n));
dcb445bc 5627 _cupsBufferRelease((char *)buffer);
cb7f98ee 5628 return (IPP_STATE_ERROR);
1f6f3dbc 5629 }
ef416fc2 5630
5631 /*
5632 * Write the value tag, name length, and name string...
5633 */
5634
e07d4801 5635 DEBUG_printf(("2ippWriteIO: writing value tag=%x(%s)",
1ff0402e 5636 attr->value_tag, ippTagString(attr->value_tag)));
e07d4801 5637 DEBUG_printf(("2ippWriteIO: writing name=%d,\"%s\"", n,
1ff0402e 5638 attr->name));
ef416fc2 5639
a2326b5b
MS
5640 if (attr->value_tag > 0xff)
5641 {
5642 *bufptr++ = IPP_TAG_EXTENSION;
7e86f2f6
MS
5643 *bufptr++ = (ipp_uchar_t)(attr->value_tag >> 24);
5644 *bufptr++ = (ipp_uchar_t)(attr->value_tag >> 16);
5645 *bufptr++ = (ipp_uchar_t)(attr->value_tag >> 8);
5646 *bufptr++ = (ipp_uchar_t)attr->value_tag;
a2326b5b
MS
5647 }
5648 else
7e86f2f6 5649 *bufptr++ = (ipp_uchar_t)attr->value_tag;
a2326b5b 5650
7e86f2f6
MS
5651 *bufptr++ = (ipp_uchar_t)(n >> 8);
5652 *bufptr++ = (ipp_uchar_t)n;
07623986 5653 memcpy(bufptr, attr->name, (size_t)n);
ef416fc2 5654 bufptr += n;
5655 }
5656 else
5657 {
5658 /*
5659 * Get the length of the attribute name, and make sure it won't
5660 * overflow the buffer...
5661 */
5662
a2326b5b 5663 if ((n = (int)strlen(attr->name)) > (IPP_BUF_SIZE - 12))
1f6f3dbc 5664 {
e07d4801 5665 DEBUG_printf(("1ippWriteIO: Attribute name too long (%d)", n));
dcb445bc 5666 _cupsBufferRelease((char *)buffer);
cb7f98ee 5667 return (IPP_STATE_ERROR);
1f6f3dbc 5668 }
ef416fc2 5669
5670 /*
5671 * Write the member name tag, name length, name string, value tag,
5672 * and empty name for the collection member attribute...
5673 */
5674
e07d4801 5675 DEBUG_printf(("2ippWriteIO: writing value tag=%x(memberName)",
ef416fc2 5676 IPP_TAG_MEMBERNAME));
e07d4801 5677 DEBUG_printf(("2ippWriteIO: writing name=%d,\"%s\"", n,
1ff0402e 5678 attr->name));
e07d4801 5679 DEBUG_printf(("2ippWriteIO: writing value tag=%x(%s)",
1ff0402e 5680 attr->value_tag, ippTagString(attr->value_tag)));
e07d4801 5681 DEBUG_puts("2ippWriteIO: writing name=0,\"\"");
ef416fc2 5682
5683 *bufptr++ = IPP_TAG_MEMBERNAME;
5684 *bufptr++ = 0;
5685 *bufptr++ = 0;
7e86f2f6
MS
5686 *bufptr++ = (ipp_uchar_t)(n >> 8);
5687 *bufptr++ = (ipp_uchar_t)n;
07623986 5688 memcpy(bufptr, attr->name, (size_t)n);
ef416fc2 5689 bufptr += n;
5690
a2326b5b
MS
5691 if (attr->value_tag > 0xff)
5692 {
5693 *bufptr++ = IPP_TAG_EXTENSION;
7e86f2f6
MS
5694 *bufptr++ = (ipp_uchar_t)(attr->value_tag >> 24);
5695 *bufptr++ = (ipp_uchar_t)(attr->value_tag >> 16);
5696 *bufptr++ = (ipp_uchar_t)(attr->value_tag >> 8);
5697 *bufptr++ = (ipp_uchar_t)attr->value_tag;
a2326b5b
MS
5698 }
5699 else
7e86f2f6 5700 *bufptr++ = (ipp_uchar_t)attr->value_tag;
a2326b5b 5701
ef416fc2 5702 *bufptr++ = 0;
5703 *bufptr++ = 0;
5704 }
5705
5706 /*
5707 * Now write the attribute value(s)...
5708 */
5709
cb7f98ee 5710 switch (attr->value_tag & ~IPP_TAG_CUPS_CONST)
ef416fc2 5711 {
a2326b5b
MS
5712 case IPP_TAG_UNSUPPORTED_VALUE :
5713 case IPP_TAG_DEFAULT :
5714 case IPP_TAG_UNKNOWN :
5715 case IPP_TAG_NOVALUE :
5716 case IPP_TAG_NOTSETTABLE :
5717 case IPP_TAG_DELETEATTR :
5718 case IPP_TAG_ADMINDEFINE :
5719 *bufptr++ = 0;
5720 *bufptr++ = 0;
5721 break;
5722
ef416fc2 5723 case IPP_TAG_INTEGER :
5724 case IPP_TAG_ENUM :
5725 for (i = 0, value = attr->values;
5726 i < attr->num_values;
5727 i ++, value ++)
5728 {
1f6f3dbc 5729 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 9)
ef416fc2 5730 {
7e86f2f6 5731 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5732 {
e07d4801 5733 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 5734 "attribute...");
dcb445bc 5735 _cupsBufferRelease((char *)buffer);
cb7f98ee 5736 return (IPP_STATE_ERROR);
ef416fc2 5737 }
5738
5739 bufptr = buffer;
5740 }
5741
5742 if (i)
5743 {
5744 /*
5745 * Arrays and sets are done by sending additional
5746 * values with a zero-length name...
5747 */
5748
7e86f2f6 5749 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 5750 *bufptr++ = 0;
5751 *bufptr++ = 0;
5752 }
5753
5754 /*
5755 * Integers and enumerations are both 4-byte signed
5756 * (twos-complement) values.
5757 *
5758 * Put the 2-byte length and 4-byte value into the buffer...
5759 */
5760
5761 *bufptr++ = 0;
5762 *bufptr++ = 4;
7e86f2f6
MS
5763 *bufptr++ = (ipp_uchar_t)(value->integer >> 24);
5764 *bufptr++ = (ipp_uchar_t)(value->integer >> 16);
5765 *bufptr++ = (ipp_uchar_t)(value->integer >> 8);
5766 *bufptr++ = (ipp_uchar_t)value->integer;
ef416fc2 5767 }
5768 break;
5769
5770 case IPP_TAG_BOOLEAN :
5771 for (i = 0, value = attr->values;
5772 i < attr->num_values;
5773 i ++, value ++)
5774 {
1f6f3dbc 5775 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 6)
ef416fc2 5776 {
7e86f2f6 5777 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5778 {
e07d4801 5779 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 5780 "attribute...");
dcb445bc 5781 _cupsBufferRelease((char *)buffer);
cb7f98ee 5782 return (IPP_STATE_ERROR);
ef416fc2 5783 }
5784
5785 bufptr = buffer;
5786 }
5787
5788 if (i)
5789 {
5790 /*
5791 * Arrays and sets are done by sending additional
5792 * values with a zero-length name...
5793 */
5794
7e86f2f6 5795 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 5796 *bufptr++ = 0;
5797 *bufptr++ = 0;
5798 }
5799
5800 /*
5801 * Boolean values are 1-byte; 0 = false, 1 = true.
5802 *
5803 * Put the 2-byte length and 1-byte value into the buffer...
5804 */
5805
5806 *bufptr++ = 0;
5807 *bufptr++ = 1;
7e86f2f6 5808 *bufptr++ = (ipp_uchar_t)value->boolean;
ef416fc2 5809 }
5810 break;
5811
5812 case IPP_TAG_TEXT :
5813 case IPP_TAG_NAME :
5814 case IPP_TAG_KEYWORD :
ef416fc2 5815 case IPP_TAG_URI :
5816 case IPP_TAG_URISCHEME :
5817 case IPP_TAG_CHARSET :
5818 case IPP_TAG_LANGUAGE :
5819 case IPP_TAG_MIMETYPE :
5820 for (i = 0, value = attr->values;
5821 i < attr->num_values;
5822 i ++, value ++)
5823 {
5824 if (i)
5825 {
5826 /*
5827 * Arrays and sets are done by sending additional
5828 * values with a zero-length name...
5829 */
5830
e07d4801 5831 DEBUG_printf(("2ippWriteIO: writing value tag=%x(%s)",
1ff0402e
MS
5832 attr->value_tag,
5833 ippTagString(attr->value_tag)));
e07d4801 5834 DEBUG_printf(("2ippWriteIO: writing name=0,\"\""));
ef416fc2 5835
1f6f3dbc 5836 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 3)
ef416fc2 5837 {
7e86f2f6 5838 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5839 {
e07d4801 5840 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 5841 "attribute...");
dcb445bc 5842 _cupsBufferRelease((char *)buffer);
cb7f98ee 5843 return (IPP_STATE_ERROR);
ef416fc2 5844 }
5845
5846 bufptr = buffer;
5847 }
5848
7e86f2f6 5849 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 5850 *bufptr++ = 0;
5851 *bufptr++ = 0;
5852 }
5853
5854 if (value->string.text != NULL)
5855 n = (int)strlen(value->string.text);
5856 else
5857 n = 0;
5858
1f6f3dbc
MS
5859 if (n > (IPP_BUF_SIZE - 2))
5860 {
e07d4801 5861 DEBUG_printf(("1ippWriteIO: String too long (%d)", n));
dcb445bc 5862 _cupsBufferRelease((char *)buffer);
cb7f98ee 5863 return (IPP_STATE_ERROR);
1f6f3dbc 5864 }
ef416fc2 5865
e07d4801 5866 DEBUG_printf(("2ippWriteIO: writing string=%d,\"%s\"", n,
ef416fc2 5867 value->string.text));
5868
1f6f3dbc 5869 if ((int)(IPP_BUF_SIZE - (bufptr - buffer)) < (n + 2))
ef416fc2 5870 {
7e86f2f6 5871 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5872 {
e07d4801 5873 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 5874 "attribute...");
dcb445bc 5875 _cupsBufferRelease((char *)buffer);
cb7f98ee 5876 return (IPP_STATE_ERROR);
ef416fc2 5877 }
5878
5879 bufptr = buffer;
5880 }
5881
5882 /*
5883 * All simple strings consist of the 2-byte length and
5884 * character data without the trailing nul normally found
a41f09e2 5885 * in C strings. Also, strings cannot be longer than IPP_MAX_LENGTH
ef416fc2 5886 * bytes since the 2-byte length is a signed (twos-complement)
5887 * value.
5888 *
5889 * Put the 2-byte length and string characters in the buffer.
5890 */
5891
7e86f2f6
MS
5892 *bufptr++ = (ipp_uchar_t)(n >> 8);
5893 *bufptr++ = (ipp_uchar_t)n;
ef416fc2 5894
5895 if (n > 0)
5896 {
07623986 5897 memcpy(bufptr, value->string.text, (size_t)n);
ef416fc2 5898 bufptr += n;
5899 }
5900 }
5901 break;
5902
5903 case IPP_TAG_DATE :
5904 for (i = 0, value = attr->values;
5905 i < attr->num_values;
5906 i ++, value ++)
5907 {
1f6f3dbc 5908 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 16)
ef416fc2 5909 {
7e86f2f6 5910 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5911 {
e07d4801 5912 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 5913 "attribute...");
dcb445bc 5914 _cupsBufferRelease((char *)buffer);
cb7f98ee 5915 return (IPP_STATE_ERROR);
ef416fc2 5916 }
5917
5918 bufptr = buffer;
5919 }
5920
5921 if (i)
5922 {
5923 /*
5924 * Arrays and sets are done by sending additional
5925 * values with a zero-length name...
5926 */
5927
7e86f2f6 5928 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 5929 *bufptr++ = 0;
5930 *bufptr++ = 0;
5931 }
5932
5933 /*
5934 * Date values consist of a 2-byte length and an
5935 * 11-byte date/time structure defined by RFC 1903.
5936 *
5937 * Put the 2-byte length and 11-byte date/time
5938 * structure in the buffer.
5939 */
5940
5941 *bufptr++ = 0;
5942 *bufptr++ = 11;
5943 memcpy(bufptr, value->date, 11);
5944 bufptr += 11;
5945 }
5946 break;
5947
5948 case IPP_TAG_RESOLUTION :
5949 for (i = 0, value = attr->values;
5950 i < attr->num_values;
5951 i ++, value ++)
5952 {
1f6f3dbc 5953 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 14)
ef416fc2 5954 {
7e86f2f6 5955 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 5956 {
e07d4801 5957 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 5958 "attribute...");
dcb445bc 5959 _cupsBufferRelease((char *)buffer);
cb7f98ee 5960 return (IPP_STATE_ERROR);
ef416fc2 5961 }
5962
5963 bufptr = buffer;
5964 }
5965
5966 if (i)
5967 {
5968 /*
5969 * Arrays and sets are done by sending additional
5970 * values with a zero-length name...
5971 */
5972
7e86f2f6 5973 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 5974 *bufptr++ = 0;
5975 *bufptr++ = 0;
5976 }
5977
5978 /*
5979 * Resolution values consist of a 2-byte length,
5980 * 4-byte horizontal resolution value, 4-byte vertical
5981 * resolution value, and a 1-byte units value.
5982 *
5983 * Put the 2-byte length and resolution value data
5984 * into the buffer.
5985 */
5986
5987 *bufptr++ = 0;
5988 *bufptr++ = 9;
7e86f2f6
MS
5989 *bufptr++ = (ipp_uchar_t)(value->resolution.xres >> 24);
5990 *bufptr++ = (ipp_uchar_t)(value->resolution.xres >> 16);
5991 *bufptr++ = (ipp_uchar_t)(value->resolution.xres >> 8);
5992 *bufptr++ = (ipp_uchar_t)value->resolution.xres;
5993 *bufptr++ = (ipp_uchar_t)(value->resolution.yres >> 24);
5994 *bufptr++ = (ipp_uchar_t)(value->resolution.yres >> 16);
5995 *bufptr++ = (ipp_uchar_t)(value->resolution.yres >> 8);
5996 *bufptr++ = (ipp_uchar_t)value->resolution.yres;
5997 *bufptr++ = (ipp_uchar_t)value->resolution.units;
ef416fc2 5998 }
5999 break;
6000
6001 case IPP_TAG_RANGE :
6002 for (i = 0, value = attr->values;
6003 i < attr->num_values;
6004 i ++, value ++)
6005 {
1f6f3dbc 6006 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 13)
ef416fc2 6007 {
7e86f2f6 6008 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6009 {
e07d4801 6010 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6011 "attribute...");
dcb445bc 6012 _cupsBufferRelease((char *)buffer);
cb7f98ee 6013 return (IPP_STATE_ERROR);
ef416fc2 6014 }
6015
6016 bufptr = buffer;
6017 }
6018
6019 if (i)
6020 {
6021 /*
6022 * Arrays and sets are done by sending additional
6023 * values with a zero-length name...
6024 */
6025
7e86f2f6 6026 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 6027 *bufptr++ = 0;
6028 *bufptr++ = 0;
6029 }
6030
6031 /*
6032 * Range values consist of a 2-byte length,
6033 * 4-byte lower value, and 4-byte upper value.
6034 *
6035 * Put the 2-byte length and range value data
6036 * into the buffer.
6037 */
6038
6039 *bufptr++ = 0;
6040 *bufptr++ = 8;
7e86f2f6
MS
6041 *bufptr++ = (ipp_uchar_t)(value->range.lower >> 24);
6042 *bufptr++ = (ipp_uchar_t)(value->range.lower >> 16);
6043 *bufptr++ = (ipp_uchar_t)(value->range.lower >> 8);
6044 *bufptr++ = (ipp_uchar_t)value->range.lower;
6045 *bufptr++ = (ipp_uchar_t)(value->range.upper >> 24);
6046 *bufptr++ = (ipp_uchar_t)(value->range.upper >> 16);
6047 *bufptr++ = (ipp_uchar_t)(value->range.upper >> 8);
6048 *bufptr++ = (ipp_uchar_t)value->range.upper;
ef416fc2 6049 }
6050 break;
6051
6052 case IPP_TAG_TEXTLANG :
6053 case IPP_TAG_NAMELANG :
6054 for (i = 0, value = attr->values;
6055 i < attr->num_values;
6056 i ++, value ++)
6057 {
6058 if (i)
6059 {
6060 /*
6061 * Arrays and sets are done by sending additional
6062 * values with a zero-length name...
6063 */
6064
1f6f3dbc 6065 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 3)
ef416fc2 6066 {
7e86f2f6 6067 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6068 {
e07d4801 6069 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6070 "attribute...");
dcb445bc 6071 _cupsBufferRelease((char *)buffer);
cb7f98ee 6072 return (IPP_STATE_ERROR);
ef416fc2 6073 }
6074
6075 bufptr = buffer;
6076 }
6077
7e86f2f6 6078 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 6079 *bufptr++ = 0;
6080 *bufptr++ = 0;
6081 }
6082
6083 /*
6084 * textWithLanguage and nameWithLanguage values consist
6085 * of a 2-byte length for both strings and their
6086 * individual lengths, a 2-byte length for the
6087 * character string, the character string without the
6088 * trailing nul, a 2-byte length for the character
6089 * set string, and the character set string without
6090 * the trailing nul.
6091 */
6092
6093 n = 4;
6094
a2326b5b
MS
6095 if (value->string.language != NULL)
6096 n += (int)strlen(value->string.language);
ef416fc2 6097
6098 if (value->string.text != NULL)
b86bc4cf 6099 n += (int)strlen(value->string.text);
ef416fc2 6100
1f6f3dbc
MS
6101 if (n > (IPP_BUF_SIZE - 2))
6102 {
e07d4801
MS
6103 DEBUG_printf(("1ippWriteIO: text/nameWithLanguage value "
6104 "too long (%d)", n));
dcb445bc 6105 _cupsBufferRelease((char *)buffer);
cb7f98ee 6106 return (IPP_STATE_ERROR);
1f6f3dbc 6107 }
ef416fc2 6108
1f6f3dbc 6109 if ((int)(IPP_BUF_SIZE - (bufptr - buffer)) < (n + 2))
ef416fc2 6110 {
7e86f2f6 6111 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6112 {
e07d4801 6113 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6114 "attribute...");
dcb445bc 6115 _cupsBufferRelease((char *)buffer);
cb7f98ee 6116 return (IPP_STATE_ERROR);
ef416fc2 6117 }
6118
6119 bufptr = buffer;
6120 }
6121
6122 /* Length of entire value */
7e86f2f6
MS
6123 *bufptr++ = (ipp_uchar_t)(n >> 8);
6124 *bufptr++ = (ipp_uchar_t)n;
ef416fc2 6125
a2326b5b
MS
6126 /* Length of language */
6127 if (value->string.language != NULL)
6128 n = (int)strlen(value->string.language);
ef416fc2 6129 else
6130 n = 0;
6131
7e86f2f6
MS
6132 *bufptr++ = (ipp_uchar_t)(n >> 8);
6133 *bufptr++ = (ipp_uchar_t)n;
ef416fc2 6134
a2326b5b 6135 /* Language */
ef416fc2 6136 if (n > 0)
6137 {
07623986 6138 memcpy(bufptr, value->string.language, (size_t)n);
ef416fc2 6139 bufptr += n;
6140 }
6141
6142 /* Length of text */
6143 if (value->string.text != NULL)
6144 n = (int)strlen(value->string.text);
6145 else
6146 n = 0;
6147
7e86f2f6
MS
6148 *bufptr++ = (ipp_uchar_t)(n >> 8);
6149 *bufptr++ = (ipp_uchar_t)n;
ef416fc2 6150
6151 /* Text */
6152 if (n > 0)
6153 {
07623986 6154 memcpy(bufptr, value->string.text, (size_t)n);
ef416fc2 6155 bufptr += n;
6156 }
6157 }
6158 break;
6159
6160 case IPP_TAG_BEGIN_COLLECTION :
6161 for (i = 0, value = attr->values;
6162 i < attr->num_values;
6163 i ++, value ++)
6164 {
6165 /*
6166 * Collections are written with the begin-collection
6167 * tag first with a value of 0 length, followed by the
6168 * attributes in the collection, then the end-collection
6169 * value...
6170 */
6171
1f6f3dbc 6172 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 5)
ef416fc2 6173 {
7e86f2f6 6174 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6175 {
e07d4801 6176 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6177 "attribute...");
dcb445bc 6178 _cupsBufferRelease((char *)buffer);
cb7f98ee 6179 return (IPP_STATE_ERROR);
ef416fc2 6180 }
6181
6182 bufptr = buffer;
6183 }
6184
6185 if (i)
6186 {
6187 /*
6188 * Arrays and sets are done by sending additional
6189 * values with a zero-length name...
6190 */
6191
7e86f2f6 6192 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 6193 *bufptr++ = 0;
6194 *bufptr++ = 0;
6195 }
6196
6197 /*
6198 * Write a data length of 0 and flush the buffer...
6199 */
6200
6201 *bufptr++ = 0;
6202 *bufptr++ = 0;
6203
7e86f2f6 6204 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6205 {
e07d4801 6206 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6207 "attribute...");
dcb445bc 6208 _cupsBufferRelease((char *)buffer);
cb7f98ee 6209 return (IPP_STATE_ERROR);
ef416fc2 6210 }
6211
6212 bufptr = buffer;
6213
6214 /*
6215 * Then write the collection attribute...
6216 */
6217
cb7f98ee 6218 value->collection->state = IPP_STATE_IDLE;
ef416fc2 6219
1f6f3dbc 6220 if (ippWriteIO(dst, cb, 1, ipp,
cb7f98ee 6221 value->collection) == IPP_STATE_ERROR)
1f6f3dbc 6222 {
e07d4801 6223 DEBUG_puts("1ippWriteIO: Unable to write collection value");
dcb445bc 6224 _cupsBufferRelease((char *)buffer);
cb7f98ee 6225 return (IPP_STATE_ERROR);
1f6f3dbc 6226 }
ef416fc2 6227 }
6228 break;
6229
6230 default :
6231 for (i = 0, value = attr->values;
6232 i < attr->num_values;
6233 i ++, value ++)
6234 {
6235 if (i)
6236 {
6237 /*
6238 * Arrays and sets are done by sending additional
6239 * values with a zero-length name...
6240 */
6241
1f6f3dbc 6242 if ((IPP_BUF_SIZE - (bufptr - buffer)) < 3)
ef416fc2 6243 {
7e86f2f6 6244 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6245 {
e07d4801 6246 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6247 "attribute...");
dcb445bc 6248 _cupsBufferRelease((char *)buffer);
cb7f98ee 6249 return (IPP_STATE_ERROR);
ef416fc2 6250 }
6251
6252 bufptr = buffer;
6253 }
6254
7e86f2f6 6255 *bufptr++ = (ipp_uchar_t)attr->value_tag;
ef416fc2 6256 *bufptr++ = 0;
6257 *bufptr++ = 0;
6258 }
6259
6260 /*
6261 * An unknown value might some new value that a
6262 * vendor has come up with. It consists of a
6263 * 2-byte length and the bytes in the unknown
6264 * value buffer.
6265 */
6266
6267 n = value->unknown.length;
6268
1f6f3dbc
MS
6269 if (n > (IPP_BUF_SIZE - 2))
6270 {
e07d4801 6271 DEBUG_printf(("1ippWriteIO: Data length too long (%d)",
1f6f3dbc 6272 n));
dcb445bc 6273 _cupsBufferRelease((char *)buffer);
cb7f98ee 6274 return (IPP_STATE_ERROR);
1f6f3dbc 6275 }
ef416fc2 6276
1f6f3dbc 6277 if ((int)(IPP_BUF_SIZE - (bufptr - buffer)) < (n + 2))
ef416fc2 6278 {
7e86f2f6 6279 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ef416fc2 6280 {
e07d4801 6281 DEBUG_puts("1ippWriteIO: Could not write IPP "
1ff0402e 6282 "attribute...");
dcb445bc 6283 _cupsBufferRelease((char *)buffer);
cb7f98ee 6284 return (IPP_STATE_ERROR);
ef416fc2 6285 }
6286
6287 bufptr = buffer;
6288 }
6289
6290 /* Length of unknown value */
7e86f2f6
MS
6291 *bufptr++ = (ipp_uchar_t)(n >> 8);
6292 *bufptr++ = (ipp_uchar_t)n;
ef416fc2 6293
6294 /* Value */
6295 if (n > 0)
6296 {
07623986 6297 memcpy(bufptr, value->unknown.data, (size_t)n);
ef416fc2 6298 bufptr += n;
6299 }
6300 }
6301 break;
6302 }
6303
6304 /*
6305 * Write the data out...
6306 */
6307
ba55dc12 6308 if (bufptr > buffer)
ef416fc2 6309 {
7e86f2f6 6310 if ((*cb)(dst, buffer, (size_t)(bufptr - buffer)) < 0)
ba55dc12
MS
6311 {
6312 DEBUG_puts("1ippWriteIO: Could not write IPP attribute...");
dcb445bc 6313 _cupsBufferRelease((char *)buffer);
cb7f98ee 6314 return (IPP_STATE_ERROR);
ba55dc12 6315 }
ef416fc2 6316
ba55dc12
MS
6317 DEBUG_printf(("2ippWriteIO: wrote %d bytes",
6318 (int)(bufptr - buffer)));
6319 }
ef416fc2 6320
6321 /*
21f36711
MS
6322 * If blocking is disabled and we aren't at the end of the attribute
6323 * list, stop here...
ef416fc2 6324 */
6325
21f36711 6326 if (!blocking && ipp->current)
ef416fc2 6327 break;
6328 }
6329
6330 if (ipp->current == NULL)
6331 {
6332 /*
6333 * Done with all of the attributes; add the end-of-attributes
6334 * tag or end-collection attribute...
6335 */
6336
6337 if (parent == NULL)
6338 {
6339 buffer[0] = IPP_TAG_END;
6340 n = 1;
6341 }
6342 else
6343 {
6344 buffer[0] = IPP_TAG_END_COLLECTION;
6345 buffer[1] = 0; /* empty name */
6346 buffer[2] = 0;
6347 buffer[3] = 0; /* empty value */
6348 buffer[4] = 0;
6349 n = 5;
6350 }
6351
7e86f2f6 6352 if ((*cb)(dst, buffer, (size_t)n) < 0)
ef416fc2 6353 {
e07d4801 6354 DEBUG_puts("1ippWriteIO: Could not write IPP end-tag...");
dcb445bc 6355 _cupsBufferRelease((char *)buffer);
cb7f98ee 6356 return (IPP_STATE_ERROR);
ef416fc2 6357 }
6358
cb7f98ee 6359 ipp->state = IPP_STATE_DATA;
ef416fc2 6360 }
6361 break;
6362
cb7f98ee 6363 case IPP_STATE_DATA :
ef416fc2 6364 break;
6365
6366 default :
6367 break; /* anti-compiler-warning-code */
6368 }
6369
dcb445bc 6370 _cupsBufferRelease((char *)buffer);
1f6f3dbc 6371
ef416fc2 6372 return (ipp->state);
6373}
6374
6375
6376/*
a2326b5b 6377 * 'ipp_add_attr()' - Add a new attribute to the message.
ef416fc2 6378 */
6379
a2326b5b
MS
6380static ipp_attribute_t * /* O - New attribute */
6381ipp_add_attr(ipp_t *ipp, /* I - IPP message */
6382 const char *name, /* I - Attribute name or NULL */
6383 ipp_tag_t group_tag, /* I - Group tag or IPP_TAG_ZERO */
6384 ipp_tag_t value_tag, /* I - Value tag or IPP_TAG_ZERO */
6385 int num_values) /* I - Number of values */
ef416fc2 6386{
a2326b5b 6387 int alloc_values; /* Number of values to allocate */
ef416fc2 6388 ipp_attribute_t *attr; /* New attribute */
6389
6390
807315e6 6391 DEBUG_printf(("4ipp_add_attr(ipp=%p, name=\"%s\", group_tag=0x%x, value_tag=0x%x, num_values=%d)", (void *)ipp, name, group_tag, value_tag, num_values));
a2326b5b
MS
6392
6393 /*
6394 * Range check input...
6395 */
ef416fc2 6396
1ff0402e 6397 if (!ipp || num_values < 0)
ef416fc2 6398 return (NULL);
6399
a2326b5b
MS
6400 /*
6401 * Allocate memory, rounding the allocation up as needed...
6402 */
ef416fc2 6403
a2326b5b 6404 if (num_values <= 1)
9c80ffa2 6405 alloc_values = 1;
a2326b5b
MS
6406 else
6407 alloc_values = (num_values + IPP_MAX_VALUES - 1) & ~(IPP_MAX_VALUES - 1);
ef416fc2 6408
a2326b5b 6409 attr = calloc(sizeof(ipp_attribute_t) +
7e86f2f6 6410 (size_t)(alloc_values - 1) * sizeof(_ipp_value_t), 1);
ef416fc2 6411
a2326b5b 6412 if (attr)
ef416fc2 6413 {
a2326b5b
MS
6414 /*
6415 * Initialize attribute...
6416 */
ef416fc2 6417
b908d72c
MS
6418 DEBUG_printf(("4debug_alloc: %p %s %s%s (%d values)", (void *)attr, name, num_values > 1 ? "1setOf " : "", ippTagString(value_tag), num_values));
6419
a2326b5b
MS
6420 if (name)
6421 attr->name = _cupsStrAlloc(name);
ef416fc2 6422
a2326b5b
MS
6423 attr->group_tag = group_tag;
6424 attr->value_tag = value_tag;
6425 attr->num_values = num_values;
4400e98d 6426
a2326b5b
MS
6427 /*
6428 * Add it to the end of the linked list...
6429 */
4400e98d 6430
a2326b5b
MS
6431 if (ipp->last)
6432 ipp->last->next = attr;
6433 else
6434 ipp->attrs = attr;
5a738aea 6435
a2326b5b
MS
6436 ipp->prev = ipp->last;
6437 ipp->last = ipp->current = attr;
ef416fc2 6438 }
6439
807315e6 6440 DEBUG_printf(("5ipp_add_attr: Returning %p", (void *)attr));
ef416fc2 6441
a2326b5b 6442 return (attr);
ef416fc2 6443}
6444
6445
a2326b5b
MS
6446/*
6447 * 'ipp_free_values()' - Free attribute values.
6448 */
6449
6450static void
6451ipp_free_values(ipp_attribute_t *attr, /* I - Attribute to free values from */
6452 int element,/* I - First value to free */
6453 int count) /* I - Number of values to free */
6454{
6455 int i; /* Looping var */
6456 _ipp_value_t *value; /* Current value */
6457
6458
807315e6 6459 DEBUG_printf(("4ipp_free_values(attr=%p, element=%d, count=%d)", (void *)attr, element, count));
a2326b5b 6460
cb7f98ee 6461 if (!(attr->value_tag & IPP_TAG_CUPS_CONST))
a2326b5b
MS
6462 {
6463 /*
6464 * Free values as needed...
6465 */
6466
6467 switch (attr->value_tag)
6468 {
6469 case IPP_TAG_TEXTLANG :
6470 case IPP_TAG_NAMELANG :
5a9febac
MS
6471 if (element == 0 && count == attr->num_values &&
6472 attr->values[0].string.language)
6473 {
a2326b5b 6474 _cupsStrFree(attr->values[0].string.language);
5a9febac
MS
6475 attr->values[0].string.language = NULL;
6476 }
0fa6c7fa 6477 /* Fall through to other string values */
a2326b5b
MS
6478
6479 case IPP_TAG_TEXT :
6480 case IPP_TAG_NAME :
6481 case IPP_TAG_RESERVED_STRING :
6482 case IPP_TAG_KEYWORD :
6483 case IPP_TAG_URI :
6484 case IPP_TAG_URISCHEME :
6485 case IPP_TAG_CHARSET :
6486 case IPP_TAG_LANGUAGE :
6487 case IPP_TAG_MIMETYPE :
6488 for (i = count, value = attr->values + element;
6489 i > 0;
6490 i --, value ++)
5a9febac 6491 {
a2326b5b 6492 _cupsStrFree(value->string.text);
5a9febac
MS
6493 value->string.text = NULL;
6494 }
a2326b5b
MS
6495 break;
6496
6497 case IPP_TAG_DEFAULT :
6498 case IPP_TAG_UNKNOWN :
6499 case IPP_TAG_NOVALUE :
6500 case IPP_TAG_NOTSETTABLE :
6501 case IPP_TAG_DELETEATTR :
6502 case IPP_TAG_ADMINDEFINE :
6503 case IPP_TAG_INTEGER :
6504 case IPP_TAG_ENUM :
6505 case IPP_TAG_BOOLEAN :
6506 case IPP_TAG_DATE :
6507 case IPP_TAG_RESOLUTION :
6508 case IPP_TAG_RANGE :
6509 break;
6510
6511 case IPP_TAG_BEGIN_COLLECTION :
6512 for (i = count, value = attr->values + element;
6513 i > 0;
6514 i --, value ++)
5a9febac 6515 {
a2326b5b 6516 ippDelete(value->collection);
5a9febac
MS
6517 value->collection = NULL;
6518 }
a2326b5b
MS
6519 break;
6520
6521 case IPP_TAG_STRING :
6522 default :
6523 for (i = count, value = attr->values + element;
6524 i > 0;
6525 i --, value ++)
5a9febac 6526 {
a2326b5b 6527 if (value->unknown.data)
5a9febac 6528 {
a2326b5b 6529 free(value->unknown.data);
5a9febac
MS
6530 value->unknown.data = NULL;
6531 }
6532 }
a2326b5b
MS
6533 break;
6534 }
6535 }
6536
6537 /*
6538 * If we are not freeing values from the end, move the remaining values up...
6539 */
6540
6541 if ((element + count) < attr->num_values)
6542 memmove(attr->values + element, attr->values + element + count,
7e86f2f6 6543 (size_t)(attr->num_values - count - element) * sizeof(_ipp_value_t));
a2326b5b
MS
6544
6545 attr->num_values -= count;
6546}
6547
6548
6549/*
6550 * 'ipp_get_code()' - Convert a C locale/charset name into an IPP language/charset code.
6551 *
6552 * This typically converts strings of the form "ll_CC", "ll-REGION", and "CHARSET_NUMBER"
6553 * to "ll-cc", "ll-region", and "charset-number", respectively.
6554 */
6555
6556static char * /* O - Language code string */
6557ipp_get_code(const char *value, /* I - Locale/charset string */
6558 char *buffer, /* I - String buffer */
6559 size_t bufsize) /* I - Size of string buffer */
6560{
6561 char *bufptr, /* Pointer into buffer */
6562 *bufend; /* End of buffer */
6563
6564
6565 /*
6566 * Convert values to lowercase and change _ to - as needed...
6567 */
6568
6569 for (bufptr = buffer, bufend = buffer + bufsize - 1;
6570 *value && bufptr < bufend;
6571 value ++)
6572 if (*value == '_')
6573 *bufptr++ = '-';
6574 else
7e86f2f6 6575 *bufptr++ = (char)_cups_tolower(*value);
a2326b5b
MS
6576
6577 *bufptr = '\0';
6578
6579 /*
6580 * Return the converted string...
6581 */
6582
6583 return (buffer);
6584}
6585
6586
6587/*
6588 * 'ipp_lang_code()' - Convert a C locale name into an IPP language code.
6589 *
6590 * This typically converts strings of the form "ll_CC" and "ll-REGION" to "ll-cc" and
6591 * "ll-region", respectively. It also converts the "C" (POSIX) locale to "en".
6592 */
6593
6594static char * /* O - Language code string */
6595ipp_lang_code(const char *locale, /* I - Locale string */
6596 char *buffer, /* I - String buffer */
6597 size_t bufsize) /* I - Size of string buffer */
6598{
6599 /*
6600 * Map POSIX ("C") locale to generic English, otherwise convert the locale string as-is.
6601 */
6602
6603 if (!_cups_strcasecmp(locale, "c"))
6604 {
6605 strlcpy(buffer, "en", bufsize);
6606 return (buffer);
6607 }
6608 else
6609 return (ipp_get_code(locale, buffer, bufsize));
6610}
6611
6612
ef416fc2 6613/*
6614 * 'ipp_length()' - Compute the length of an IPP message or collection value.
6615 */
6616
6617static size_t /* O - Size of IPP message */
6618ipp_length(ipp_t *ipp, /* I - IPP message or collection */
6619 int collection) /* I - 1 if a collection, 0 otherwise */
6620{
6621 int i; /* Looping var */
a2326b5b 6622 size_t bytes; /* Number of bytes */
ef416fc2 6623 ipp_attribute_t *attr; /* Current attribute */
6624 ipp_tag_t group; /* Current group */
a2326b5b
MS
6625 _ipp_value_t *value; /* Current value */
6626
ef416fc2 6627
807315e6 6628 DEBUG_printf(("3ipp_length(ipp=%p, collection=%d)", (void *)ipp, collection));
ef416fc2 6629
a2326b5b
MS
6630 if (!ipp)
6631 {
6632 DEBUG_puts("4ipp_length: Returning 0 bytes");
ef416fc2 6633 return (0);
a2326b5b 6634 }
ef416fc2 6635
6636 /*
6637 * Start with 8 bytes for the IPP message header...
6638 */
6639
6640 bytes = collection ? 0 : 8;
6641
6642 /*
6643 * Then add the lengths of each attribute...
6644 */
6645
6646 group = IPP_TAG_ZERO;
6647
6648 for (attr = ipp->attrs; attr != NULL; attr = attr->next)
6649 {
6650 if (attr->group_tag != group && !collection)
6651 {
6652 group = attr->group_tag;
6653 if (group == IPP_TAG_ZERO)
6654 continue;
6655
6656 bytes ++; /* Group tag */
6657 }
6658
6659 if (!attr->name)
6660 continue;
6661
a2326b5b
MS
6662 DEBUG_printf(("5ipp_length: attr->name=\"%s\", attr->num_values=%d, "
6663 "bytes=" CUPS_LLFMT, attr->name, attr->num_values, CUPS_LLCAST bytes));
ef416fc2 6664
426184cb 6665 if ((attr->value_tag & ~IPP_TAG_CUPS_CONST) < IPP_TAG_EXTENSION)
7e86f2f6 6666 bytes += (size_t)attr->num_values;/* Value tag for each value */
a2326b5b 6667 else
7e86f2f6
MS
6668 bytes += (size_t)(5 * attr->num_values);
6669 /* Value tag for each value */
6670 bytes += (size_t)(2 * attr->num_values);
6671 /* Name lengths */
6672 bytes += strlen(attr->name); /* Name */
6673 bytes += (size_t)(2 * attr->num_values);
6674 /* Value lengths */
ef416fc2 6675
6676 if (collection)
6677 bytes += 5; /* Add membername overhead */
6678
cb7f98ee 6679 switch (attr->value_tag & ~IPP_TAG_CUPS_CONST)
ef416fc2 6680 {
a2326b5b
MS
6681 case IPP_TAG_UNSUPPORTED_VALUE :
6682 case IPP_TAG_DEFAULT :
6683 case IPP_TAG_UNKNOWN :
6684 case IPP_TAG_NOVALUE :
6685 case IPP_TAG_NOTSETTABLE :
6686 case IPP_TAG_DELETEATTR :
6687 case IPP_TAG_ADMINDEFINE :
6688 break;
6689
ef416fc2 6690 case IPP_TAG_INTEGER :
6691 case IPP_TAG_ENUM :
7e86f2f6 6692 bytes += (size_t)(4 * attr->num_values);
ef416fc2 6693 break;
6694
6695 case IPP_TAG_BOOLEAN :
7e86f2f6 6696 bytes += (size_t)attr->num_values;
ef416fc2 6697 break;
6698
6699 case IPP_TAG_TEXT :
6700 case IPP_TAG_NAME :
6701 case IPP_TAG_KEYWORD :
ef416fc2 6702 case IPP_TAG_URI :
6703 case IPP_TAG_URISCHEME :
6704 case IPP_TAG_CHARSET :
6705 case IPP_TAG_LANGUAGE :
6706 case IPP_TAG_MIMETYPE :
6707 for (i = 0, value = attr->values;
6708 i < attr->num_values;
6709 i ++, value ++)
a2326b5b
MS
6710 if (value->string.text)
6711 bytes += strlen(value->string.text);
ef416fc2 6712 break;
6713
6714 case IPP_TAG_DATE :
7e86f2f6 6715 bytes += (size_t)(11 * attr->num_values);
ef416fc2 6716 break;
6717
6718 case IPP_TAG_RESOLUTION :
7e86f2f6 6719 bytes += (size_t)(9 * attr->num_values);
ef416fc2 6720 break;
6721
6722 case IPP_TAG_RANGE :
7e86f2f6 6723 bytes += (size_t)(8 * attr->num_values);
ef416fc2 6724 break;
6725
6726 case IPP_TAG_TEXTLANG :
6727 case IPP_TAG_NAMELANG :
7e86f2f6
MS
6728 bytes += (size_t)(4 * attr->num_values);
6729 /* Charset + text length */
ef416fc2 6730
6731 for (i = 0, value = attr->values;
6732 i < attr->num_values;
6733 i ++, value ++)
6734 {
a2326b5b
MS
6735 if (value->string.language)
6736 bytes += strlen(value->string.language);
ef416fc2 6737
a2326b5b
MS
6738 if (value->string.text)
6739 bytes += strlen(value->string.text);
ef416fc2 6740 }
6741 break;
6742
6743 case IPP_TAG_BEGIN_COLLECTION :
6744 for (i = 0, value = attr->values;
6745 i < attr->num_values;
6746 i ++, value ++)
a2326b5b 6747 bytes += ipp_length(value->collection, 1);
ef416fc2 6748 break;
6749
6750 default :
6751 for (i = 0, value = attr->values;
6752 i < attr->num_values;
6753 i ++, value ++)
7e86f2f6 6754 bytes += (size_t)value->unknown.length;
ef416fc2 6755 break;
6756 }
6757 }
6758
6759 /*
6760 * Finally, add 1 byte for the "end of attributes" tag or 5 bytes
6761 * for the "end of collection" tag and return...
6762 */
6763
6764 if (collection)
6765 bytes += 5;
6766 else
6767 bytes ++;
6768
a2326b5b 6769 DEBUG_printf(("4ipp_length: Returning " CUPS_LLFMT " bytes", CUPS_LLCAST bytes));
ef416fc2 6770
6771 return (bytes);
6772}
6773
6774
6775/*
6776 * 'ipp_read_http()' - Semi-blocking read on a HTTP connection...
6777 */
6778
a4d04587 6779static ssize_t /* O - Number of bytes read */
ef416fc2 6780ipp_read_http(http_t *http, /* I - Client connection */
6781 ipp_uchar_t *buffer, /* O - Buffer for data */
a4d04587 6782 size_t length) /* I - Total length */
ef416fc2 6783{
7e86f2f6
MS
6784 ssize_t tbytes, /* Total bytes read */
6785 bytes; /* Bytes read this pass */
aaf19ab0 6786
ef416fc2 6787
807315e6 6788 DEBUG_printf(("7ipp_read_http(http=%p, buffer=%p, length=%d)", (void *)http, (void *)buffer, (int)length));
ef416fc2 6789
6790 /*
6791 * Loop until all bytes are read...
6792 */
6793
ae71f5de
MS
6794 for (tbytes = 0, bytes = 0;
6795 tbytes < (int)length;
6796 tbytes += bytes, buffer += bytes)
ef416fc2 6797 {
7e86f2f6 6798 DEBUG_printf(("9ipp_read_http: tbytes=" CUPS_LLFMT ", http->state=%d", CUPS_LLCAST tbytes, http->state));
ef416fc2 6799
cb7f98ee 6800 if (http->state == HTTP_STATE_WAITING)
ef416fc2 6801 break;
6802
a29fd7dd 6803 if (http->used == 0 && !http->blocking)
ef416fc2 6804 {
6805 /*
a29fd7dd 6806 * Wait up to 10 seconds for more data on non-blocking sockets...
ef416fc2 6807 */
6808
a29fd7dd 6809 if (!httpWait(http, 10000))
ef416fc2 6810 {
6811 /*
a29fd7dd 6812 * Signal no data...
ef416fc2 6813 */
6814
a29fd7dd
MS
6815 bytes = -1;
6816 break;
ef416fc2 6817 }
a29fd7dd 6818 }
ba7900a5
MS
6819 else if (http->used == 0 && http->timeout_value > 0)
6820 {
6821 /*
6822 * Wait up to timeout seconds for more data on blocking sockets...
6823 */
6824
6825 if (!httpWait(http, (int)(1000 * http->timeout_value)))
6826 {
6827 /*
6828 * Signal no data...
6829 */
6830
6831 bytes = -1;
6832 break;
6833 }
6834 }
ef416fc2 6835
7e86f2f6 6836 if ((bytes = httpRead2(http, (char *)buffer, length - (size_t)tbytes)) < 0)
a29fd7dd 6837 {
d1c13e16 6838#ifdef WIN32
a29fd7dd 6839 break;
d1c13e16 6840#else
a29fd7dd
MS
6841 if (errno != EAGAIN && errno != EINTR)
6842 break;
d1c13e16 6843
a29fd7dd 6844 bytes = 0;
d1c13e16 6845#endif /* WIN32 */
ef416fc2 6846 }
a29fd7dd
MS
6847 else if (bytes == 0)
6848 break;
ef416fc2 6849 }
6850
6851 /*
6852 * Return the number of bytes read...
6853 */
6854
6855 if (tbytes == 0 && bytes < 0)
6856 tbytes = -1;
6857
7e86f2f6 6858 DEBUG_printf(("8ipp_read_http: Returning " CUPS_LLFMT " bytes", CUPS_LLCAST tbytes));
ef416fc2 6859
6860 return (tbytes);
6861}
6862
6863
6864/*
6865 * 'ipp_read_file()' - Read IPP data from a file.
6866 */
6867
a4d04587 6868static ssize_t /* O - Number of bytes read */
ef416fc2 6869ipp_read_file(int *fd, /* I - File descriptor */
6870 ipp_uchar_t *buffer, /* O - Read buffer */
a4d04587 6871 size_t length) /* I - Number of bytes to read */
ef416fc2 6872{
b86bc4cf 6873#ifdef WIN32
6874 return ((ssize_t)read(*fd, buffer, (unsigned)length));
6875#else
ef416fc2 6876 return (read(*fd, buffer, length));
b86bc4cf 6877#endif /* WIN32 */
ef416fc2 6878}
6879
6880
c1420c87
MS
6881/*
6882 * 'ipp_set_error()' - Set a formatted, localized error string.
6883 */
6884
6885static void
6886ipp_set_error(ipp_status_t status, /* I - Status code */
6887 const char *format, /* I - Printf-style error string */
6888 ...) /* I - Additional arguments as needed */
6889{
6890 va_list ap; /* Pointer to additional args */
6891 char buffer[2048]; /* Message buffer */
6892 cups_lang_t *lang = cupsLangDefault();
6893 /* Current language */
6894
6895
6896 va_start(ap, format);
6897 vsnprintf(buffer, sizeof(buffer), _cupsLangString(lang, format), ap);
6898 va_end(ap);
6899
6900 _cupsSetError(status, buffer, 0);
6901}
6902
6903
a2326b5b 6904/*
9c80ffa2
MS
6905 * 'ipp_set_value()' - Get the value element from an attribute, expanding it as
6906 * needed.
a2326b5b
MS
6907 */
6908
6909static _ipp_value_t * /* O - IPP value element or NULL on error */
9c80ffa2 6910ipp_set_value(ipp_t *ipp, /* IO - IPP message */
a2326b5b
MS
6911 ipp_attribute_t **attr, /* IO - IPP attribute */
6912 int element) /* I - Value number (0-based) */
6913{
6914 ipp_attribute_t *temp, /* New attribute pointer */
6915 *current, /* Current attribute in list */
6916 *prev; /* Previous attribute in list */
6917 int alloc_values; /* Allocated values */
6918
6919
6920 /*
6921 * If we are setting an existing value element, return it...
6922 */
6923
6924 temp = *attr;
6925
6926 if (temp->num_values <= 1)
9c80ffa2 6927 alloc_values = 1;
a2326b5b 6928 else
9c80ffa2
MS
6929 alloc_values = (temp->num_values + IPP_MAX_VALUES - 1) &
6930 ~(IPP_MAX_VALUES - 1);
a2326b5b
MS
6931
6932 if (element < alloc_values)
9c80ffa2
MS
6933 {
6934 if (element >= temp->num_values)
6935 temp->num_values = element + 1;
6936
a2326b5b 6937 return (temp->values + element);
9c80ffa2 6938 }
a2326b5b
MS
6939
6940 /*
9c80ffa2
MS
6941 * Otherwise re-allocate the attribute - we allocate in groups of IPP_MAX_VALUE
6942 * values when num_values > 1.
a2326b5b
MS
6943 */
6944
6945 if (alloc_values < IPP_MAX_VALUES)
6946 alloc_values = IPP_MAX_VALUES;
6947 else
6948 alloc_values += IPP_MAX_VALUES;
6949
9c80ffa2
MS
6950 DEBUG_printf(("4ipp_set_value: Reallocating for up to %d values.",
6951 alloc_values));
a2326b5b
MS
6952
6953 /*
6954 * Reallocate memory...
6955 */
6956
7e86f2f6 6957 if ((temp = realloc(temp, sizeof(ipp_attribute_t) + (size_t)(alloc_values - 1) * sizeof(_ipp_value_t))) == NULL)
a2326b5b 6958 {
cb7f98ee 6959 _cupsSetHTTPError(HTTP_STATUS_ERROR);
a2326b5b
MS
6960 DEBUG_puts("4ipp_set_value: Unable to resize attribute.");
6961 return (NULL);
6962 }
6963
6964 /*
6965 * Zero the new memory...
6966 */
6967
7e86f2f6 6968 memset(temp->values + temp->num_values, 0, (size_t)(alloc_values - temp->num_values) * sizeof(_ipp_value_t));
a2326b5b
MS
6969
6970 if (temp != *attr)
6971 {
6972 /*
6973 * Reset pointers in the list...
6974 */
6975
c0a47c11 6976 DEBUG_printf(("4debug_free: %p %s", (void *)*attr, temp->name));
b908d72c
MS
6977 DEBUG_printf(("4debug_alloc: %p %s %s%s (%d)", (void *)temp, temp->name, temp->num_values > 1 ? "1setOf " : "", ippTagString(temp->value_tag), temp->num_values));
6978
a2326b5b
MS
6979 if (ipp->current == *attr && ipp->prev)
6980 {
6981 /*
6982 * Use current "previous" pointer...
6983 */
6984
6985 prev = ipp->prev;
6986 }
6987 else
6988 {
6989 /*
6990 * Find this attribute in the linked list...
6991 */
6992
6993 for (prev = NULL, current = ipp->attrs;
6994 current && current != *attr;
6995 prev = current, current = current->next);
6996
6997 if (!current)
6998 {
6999 /*
7000 * This is a serious error!
7001 */
7002
7003 *attr = temp;
cb7f98ee 7004 _cupsSetError(IPP_STATUS_ERROR_INTERNAL,
9c80ffa2 7005 _("IPP attribute is not a member of the message."), 1);
a2326b5b
MS
7006 DEBUG_puts("4ipp_set_value: Unable to find attribute in message.");
7007 return (NULL);
7008 }
7009 }
7010
7011 if (prev)
7012 prev->next = temp;
7013 else
7014 ipp->attrs = temp;
7015
7016 ipp->current = temp;
7017 ipp->prev = prev;
7018
7019 if (ipp->last == *attr)
7020 ipp->last = temp;
7021
7022 *attr = temp;
7023 }
7024
7025 /*
7026 * Return the value element...
7027 */
7028
9c80ffa2
MS
7029 if (element >= temp->num_values)
7030 temp->num_values = element + 1;
7031
a2326b5b
MS
7032 return (temp->values + element);
7033}
7034
7035
ef416fc2 7036/*
7037 * 'ipp_write_file()' - Write IPP data to a file.
7038 */
7039
a4d04587 7040static ssize_t /* O - Number of bytes written */
ef416fc2 7041ipp_write_file(int *fd, /* I - File descriptor */
7042 ipp_uchar_t *buffer, /* I - Data to write */
a4d04587 7043 size_t length) /* I - Number of bytes to write */
ef416fc2 7044{
b86bc4cf 7045#ifdef WIN32
7046 return ((ssize_t)write(*fd, buffer, (unsigned)length));
7047#else
ef416fc2 7048 return (write(*fd, buffer, length));
b86bc4cf 7049#endif /* WIN32 */
ef416fc2 7050}