]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/cups-private.h
Work around undocumented side-effect of SecItemAdd...
[thirdparty/cups.git] / cups / cups-private.h
CommitLineData
ef416fc2 1/*
f2d18633 2 * "$Id$"
ef416fc2 3 *
71e16022 4 * Private definitions for CUPS.
ef416fc2 5 *
07eca067 6 * Copyright 2007-2015 by Apple Inc.
f7deaa1a 7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 */
17
71e16022
MS
18#ifndef _CUPS_CUPS_PRIVATE_H_
19# define _CUPS_CUPS_PRIVATE_H_
ef416fc2 20
21/*
22 * Include necessary headers...
23 */
24
71e16022
MS
25# include "string-private.h"
26# include "debug-private.h"
5a9febac 27# include "array-private.h"
71e16022 28# include "ipp-private.h"
82cc1f9a 29# include "http-private.h"
71e16022 30# include "language-private.h"
54afec33 31# include "pwg-private.h"
6d2f911b 32# include "thread-private.h"
82cc1f9a 33# include <cups/cups.h>
c8fef167
MS
34# ifdef __APPLE__
35# include <sys/cdefs.h>
36# include <CoreFoundation/CoreFoundation.h>
37# endif /* __APPLE__ */
ef416fc2 38
39
40/*
41 * C++ magic...
42 */
43
44# ifdef __cplusplus
45extern "C" {
46# endif /* __cplusplus */
47
48
49/*
71e16022 50 * Types...
ef416fc2 51 */
52
dcb445bc
MS
53typedef struct _cups_buffer_s /**** Read/write buffer ****/
54{
55 struct _cups_buffer_s *next; /* Next buffer in list */
56 size_t size; /* Size of buffer */
57 char used, /* Is this buffer used? */
58 d[1]; /* Data buffer */
59} _cups_buffer_t;
60
ef416fc2 61typedef struct _cups_globals_s /**** CUPS global state data ****/
62{
63 /* Multiple places... */
64 const char *cups_datadir, /* CUPS_DATADIR environment var */
65 *cups_serverbin,/* CUPS_SERVERBIN environment var */
66 *cups_serverroot,
67 /* CUPS_SERVERROOT environment var */
68 *cups_statedir, /* CUPS_STATEDIR environment var */
69 *localedir; /* LOCALDIR environment var */
70
757d2cad 71 /* adminutil.c */
72 time_t cupsd_update; /* Last time we got or set cupsd.conf */
73 char cupsd_hostname[HTTP_MAX_HOST];
74 /* Hostname for connection */
75 int cupsd_num_settings;
76 /* Number of server settings */
77 cups_option_t *cupsd_settings;/* Server settings */
78
07ed0e9a
MS
79 /* auth.c */
80# ifdef HAVE_GSSAPI
81 char gss_service_name[32];
82 /* Kerberos service name */
83# endif /* HAVE_GSSAPI */
84
5eb9da71
MS
85 /* backend.c */
86 char resolved_uri[1024];
87 /* Buffer for cupsBackendDeviceURI */
88
a469f8a5
MS
89 /* debug.c */
90# ifdef DEBUG
91 int thread_id; /* Friendly thread ID */
92# endif /* DEBUG */
93
80ca4592 94 /* file.c */
95 cups_file_t *stdio_files[3];/* stdin, stdout, stderr */
96
ef416fc2 97 /* http.c */
98 char http_date[256]; /* Date+time buffer */
99
100 /* http-addr.c */
101 unsigned ip_addr; /* Packed IPv4 address */
102 char *ip_ptrs[2]; /* Pointer to packed address */
103 struct hostent hostent; /* Host entry for IP address */
104# ifdef HAVE_GETADDRINFO
105 char hostname[1024]; /* Hostname */
106# endif /* HAVE_GETADDRINFO */
49d87452 107 int need_res_init; /* Need to reinitialize resolver? */
ef416fc2 108
109 /* ipp.c */
110 ipp_uchar_t ipp_date[11]; /* RFC-1903 date/time data */
dcb445bc 111 _cups_buffer_t *cups_buffers; /* Buffer list */
ef416fc2 112
113 /* ipp-support.c */
114 int ipp_port; /* IPP port number */
115 char ipp_unknown[255];
116 /* Unknown error statuses */
117
ef416fc2 118 /* language.c */
fa73b229 119 cups_lang_t *lang_default; /* Default language */
ef416fc2 120# ifdef __APPLE__
ef416fc2 121 char language[32]; /* Cached language */
ef416fc2 122# endif /* __APPLE__ */
123
54afec33
MS
124 /* pwg-media.c */
125 cups_array_t *leg_size_lut, /* Lookup table for legacy names */
126 *ppd_size_lut, /* Lookup table for PPD names */
127 *pwg_size_lut; /* Lookup table for PWG names */
6961465f 128 pwg_media_t pwg_media; /* PWG media data for custom size */
54afec33 129 char pwg_name[65]; /* PWG media name for custom size */
c168a833 130
5180a04c
MS
131 /* request.c */
132 http_t *http; /* Current server connection */
133 ipp_status_t last_error; /* Last IPP error */
134 char *last_status_message;
135 /* Last IPP status-message */
136
91c84a35 137 /* snmp.c */
ac884b6a
MS
138 char snmp_community[255];
139 /* Default SNMP community name */
91c84a35
MS
140 int snmp_debug; /* Log SNMP IO to stderr? */
141
ef416fc2 142 /* tempfile.c */
143 char tempfile[1024]; /* cupsTempFd/File buffer */
144
ef416fc2 145 /* usersys.c */
146 http_encryption_t encryption; /* Encryption setting */
147 char user[65], /* User name */
db8b865d 148 user_agent[256],/* User-Agent string */
ef416fc2 149 server[256], /* Server address */
dcb445bc
MS
150 servername[256],/* Server hostname */
151 password[128]; /* Password for default callback */
f11a948a
MS
152 cups_password_cb2_t password_cb; /* Password callback */
153 void *password_data; /* Password user data */
7cf5915e
MS
154 http_tls_credentials_t tls_credentials;
155 /* Default client credentials */
156 cups_client_cert_cb_t client_cert_cb; /* Client certificate callback */
157 void *client_cert_data;
158 /* Client certificate user data */
159 cups_server_cert_cb_t server_cert_cb; /* Server certificate callback */
160 void *server_cert_data;
161 /* Server certificate user data */
0cb67df3 162 int server_version, /* Server IPP version */
9653cfdf 163 any_root, /* Allow any (e.g., self-signed) root */
f51f3773
MS
164 expired_certs, /* Allow expired certs */
165 validate_certs; /* Validate certificates */
ef416fc2 166
167 /* util.c */
ef416fc2 168 char def_printer[256];
169 /* Default printer */
ef416fc2 170} _cups_globals_t;
171
dcb445bc
MS
172typedef struct _cups_media_db_s /* Media database */
173{
174 char *color, /* Media color, if any */
175 *key, /* Media key, if any */
176 *info, /* Media human-readable name, if any */
177 *size_name, /* Media PWG size name, if provided */
178 *source, /* Media source, if any */
179 *type; /* Media type, if any */
180 int width, /* Width in hundredths of millimeters */
181 length, /* Length in hundredths of
182 * millimeters */
183 bottom, /* Bottom margin in hundredths of
184 * millimeters */
185 left, /* Left margin in hundredths of
186 * millimeters */
187 right, /* Right margin in hundredths of
188 * millimeters */
189 top; /* Top margin in hundredths of
190 * millimeters */
191} _cups_media_db_t;
192
a29fd7dd
MS
193typedef struct _cups_dconstres_s /* Constraint/resolver */
194{
195 char *name; /* Name of resolver */
196 ipp_t *collection; /* Collection containing attrs */
197} _cups_dconstres_t;
198
dcb445bc
MS
199struct _cups_dinfo_s /* Destination capability and status
200 * information */
201{
6961465f 202 int version; /* IPP version */
dcb445bc
MS
203 const char *uri; /* Printer URI */
204 char *resource; /* Resource path */
205 ipp_t *attrs; /* Printer attributes */
a29fd7dd
MS
206 int num_defaults; /* Number of default options */
207 cups_option_t *defaults; /* Default options */
dcb445bc 208 cups_array_t *constraints; /* Job constraints */
a29fd7dd 209 cups_array_t *resolvers; /* Job resolvers */
dcb445bc
MS
210 cups_array_t *localizations; /* Localization information */
211 cups_array_t *media_db; /* Media database */
212 _cups_media_db_t min_size, /* Minimum size */
213 max_size; /* Maximum size */
6961465f
MS
214 unsigned cached_flags; /* Flags used for cached media */
215 cups_array_t *cached_db; /* Cache of media from last index/default */
216 time_t ready_time; /* When xxx-ready attributes were last queried */
217 ipp_t *ready_attrs; /* xxx-ready attributes */
218 cups_array_t *ready_db; /* media[-col]-ready media database */
dcb445bc
MS
219};
220
ef416fc2 221
222/*
223 * Prototypes...
224 */
225
c8fef167
MS
226# ifdef __APPLE__
227extern CFStringRef _cupsAppleCopyDefaultPaperID(void);
f14324a7 228extern CFStringRef _cupsAppleCopyDefaultPrinter(void);
c8fef167
MS
229extern int _cupsAppleGetUseLastPrinter(void);
230extern void _cupsAppleSetDefaultPaperID(CFStringRef name);
f14324a7 231extern void _cupsAppleSetDefaultPrinter(CFStringRef name);
c8fef167
MS
232extern void _cupsAppleSetUseLastPrinter(int uselast);
233# endif /* __APPLE__ */
234
dcb445bc
MS
235extern char *_cupsBufferGet(size_t size);
236extern void _cupsBufferRelease(char *b);
237
3d052e43 238extern http_t *_cupsConnect(void);
7ae00c35 239extern char *_cupsCreateDest(const char *name, const char *info, const char *device_id, const char *device_uri, char *uri, size_t urisize);
f8b3a85b
MS
240extern int _cupsGet1284Values(const char *device_id,
241 cups_option_t **values);
dcb445bc
MS
242extern const char *_cupsGetDestResource(cups_dest_t *dest, char *resource,
243 size_t resourcesize);
c8fef167 244extern int _cupsGetDests(http_t *http, ipp_op_t op,
dcb445bc
MS
245 const char *name, cups_dest_t **dests,
246 cups_ptype_t type, cups_ptype_t mask);
ef416fc2 247extern const char *_cupsGetPassword(const char *prompt);
6d2f911b 248extern void _cupsGlobalLock(void);
ef416fc2 249extern _cups_globals_t *_cupsGlobals(void);
6d2f911b 250extern void _cupsGlobalUnlock(void);
eac3a0a0
MS
251# ifdef HAVE_GSSAPI
252extern const char *_cupsGSSServiceName(void);
253# endif /* HAVE_GSSAPI */
f14324a7 254extern int _cupsNextDelay(int current, int *previous);
e07d4801 255extern void _cupsSetDefaults(void);
749b1e90
MS
256extern void _cupsSetError(ipp_status_t status, const char *message,
257 int localize);
355e94dc 258extern void _cupsSetHTTPError(http_status_t status);
f14324a7 259# ifdef HAVE_GSSAPI
eac3a0a0
MS
260extern int _cupsSetNegotiateAuthString(http_t *http,
261 const char *method,
262 const char *resource);
f14324a7 263# endif /* HAVE_GSSAPI */
38e73f87 264extern char *_cupsUserDefault(char *name, size_t namesize);
ef416fc2 265
266
267/*
268 * C++ magic...
269 */
270
271# ifdef __cplusplus
272}
273# endif /* __cplusplus */
71e16022 274#endif /* !_CUPS_CUPS_PRIVATE_H_ */
ef416fc2 275
276/*
f2d18633 277 * End of "$Id$".
ef416fc2 278 */