summaryrefslogtreecommitdiff
path: root/open-vm-tools/lib/printer/printer.c
blob: e6d8f755cddf6f143c1d07bb377659430617fd8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*********************************************************
 * Copyright (C) 1998-2015 VMware, Inc. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation version 2.1 and no later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
 *
 *********************************************************/

/*
 * printer.c --
 *
 *      This file implements assorted printer related functionality.
 *
 *      This library is currently only implemented for Win32, and uses
 *      Win32 API functions that are only available for Windows NT and
 *      later. However, this library is linked into code that runs on
 *      Win9x, and thus dynamically loads its Win32 API functions
 *      from DLL.
 *
 *      Therefore, users of this library must call Printer_Init()
 *      before calling anything else.
 */

#ifdef _WIN32
#undef WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif

#include "vmware.h"
#include "err.h"
#include "printer.h"
#ifdef _WIN32
#include "win32u.h"
#endif

#define LOGLEVEL_MODULE printer
#include "loglevel_user.h"


/*
 * State needed for dynamically loading functions from DLLs.
 */

#ifdef _WIN32
HMODULE winspoolDll = NULL;

typedef BOOL (WINAPI *AddPrinterConnectionFunc)(LPTSTR);
typedef BOOL (WINAPI *SetDefaultPrinterFunc)(LPCTSTR);
typedef BOOL (WINAPI *GetDefaultPrinterFunc)(LPTSTR, LPDWORD);

AddPrinterConnectionFunc addPrinterConnectionFunc  = NULL;
GetDefaultPrinterFunc    getDefaultPrinterFunc     = NULL;
SetDefaultPrinterFunc    setDefaultPrinterFunc     = NULL;
#endif


/*
 *-----------------------------------------------------------------------------
 *
 * Printer_GetDefault --
 *
 *      Get the default system printer name. The returned string is
 *      allocated.
 *
 *      (Currently only implemented on Windows.)
 *
 * Results:
 *      Name of default printer
 *      NULL on failure (or if there is no default).
 *
 * Side effects:
 *      None
 *
 *-----------------------------------------------------------------------------
 */

char *
Printer_GetDefault(void)
{
#ifdef _WIN32
   char *printerName = NULL;
   DWORD bufSize = 0;
   DWORD error;
   Bool success;

   /* Make sure function has been loaded. */
   if (!getDefaultPrinterFunc) {
      Log("%s: DLL not loaded\n", __FUNCTION__);
      ASSERT(FALSE);

      return NULL;
   }

   /* Find the necessary buffer size. */
   success = getDefaultPrinterFunc(printerName, &bufSize);
   error = Err_Errno();
   if (success) {
      Log("%s: Didn't fail with zero buffer\n", __FUNCTION__);

      return NULL;
   }

   if (error != ERROR_INSUFFICIENT_BUFFER) {
      Log("%s: Unexpected failure %d: %s\n", error,
          __FUNCTION__, Err_Errno2String(error));

      return NULL;
   }

   printerName = malloc(bufSize);
   if (!printerName) {
      Log("%s: Memory allocation failure\n", __FUNCTION__);

      return NULL;
   }

   success = getDefaultPrinterFunc(printerName, &bufSize);
   if (!success) {
      error = Err_Errno();
      Log("%s: Failed to get default printer\n", __FUNCTION__);
      free(printerName);

      return NULL;
   }

   return printerName;

#else
   NOT_IMPLEMENTED();
   return NULL;
#endif
}


/*
 *-----------------------------------------------------------------------------
 *
 * Printer_SetDefault --
 *
 *      Set the default system printer name.
 *
 *      (Currently only implemented on Windows.)
 *
 * Results:
 *      TRUE on success
 *      FALSE on failure
 *
 * Side effects:
 *      None
 *
 *-----------------------------------------------------------------------------
 */

Bool
Printer_SetDefault(char const *printerName) // IN
{
#ifdef _WIN32
   DWORD error;

   /* Make sure function has been loaded. */
   if (!setDefaultPrinterFunc) {
      Log("%s: DLL not loaded\n", __FUNCTION__);
      ASSERT(FALSE);

      return FALSE;
   }

   /*
    * Attempt to set the default printer.
    */

   if (!setDefaultPrinterFunc(printerName)) {
      error = Err_Errno();
      Log("%s: Unable to SetDefaultPrinter %d: %s\n", __FUNCTION__,
          error, Err_Errno2String(error));

      return FALSE;
   }

   return TRUE;

#else
   NOT_IMPLEMENTED();
   return FALSE;
#endif
}


/*
 *-----------------------------------------------------------------------------
 *
 * Printer_AddConnection --
 *
 *      Add a connection to the given printer for the current user.
 *      (Win32 only)
 *
 *      Printer connections are per-user, so this code must be run in
 *      a user's login session in order to work. (Error code 2 is
 *      returned otherwise, e.g. if this code is run from a service.)
 *
 * Results:
 *      TRUE on success
 *      FALSE on failure
 *
 * Side effects:
 *      None
 *
 *-----------------------------------------------------------------------------
 */

Bool
Printer_AddConnection(char *printerName, // IN:  Name of printer to add
                      int *sysError)     // OUT: System error code (errno)
{
#ifdef _WIN32
   DWORD error = ERROR_SUCCESS;
   Bool success = TRUE;

   ASSERT(printerName);
   ASSERT(sysError);

   /* Make sure function has been loaded. */
   if (!addPrinterConnectionFunc) {
      Log("%s: DLL not loaded\n", __FUNCTION__);
      ASSERT(FALSE);
      return FALSE;
   }

   /* Try to add the printer. */
   if (!addPrinterConnectionFunc((LPSTR)printerName)) {
      error = Err_Errno();
      Log("%s: Failed to add printer %s : %d %s\n", __FUNCTION__,
          printerName, error, Err_Errno2String(error));
      success = FALSE;
   }

   *sysError = error;

   return success;

#else
   NOT_IMPLEMENTED();

   return FALSE;
#endif
}


/*
 *-----------------------------------------------------------------------------
 *
 * Printer_Init --
 *
 *      Load the libraries for needed Win32 API functions. This is
 *      necessary because this code is used in the Tools in Win9x guests,
 *      and Win9x lacks support for some of these functions, so we can't
 *      statically link them.
 *
 * Results:
 *      TRUE on success
 *      FALSE on failure
 *
 * Side effects:
 *      None
 *
 *-----------------------------------------------------------------------------
 */

Bool
Printer_Init(void)
{
#ifdef _WIN32
   DWORD error;

   /*
    * Try to load the necessary library.
    */
   winspoolDll = Win32U_LoadLibrary("Winspool.drv");
   if (!winspoolDll) {
      error = Err_Errno();
      Log("%s: Failed to load Winspool.drv  %d: %s\n", __FUNCTION__,
          error, Err_Errno2String(error));

      Log("%s: Trying to load Winspool as Winspool.dll...\n", __FUNCTION__);
      winspoolDll = Win32U_LoadLibrary("Winspool");
      if (!winspoolDll) {
         error = Err_Errno();
         Log("%s: Failed to load Winspool.dll  %d: %s\n", __FUNCTION__,
             error, Err_Errno2String(error));
         Log("Unable to load Winspool, giving up.\n");

         return FALSE;
      }
   }

   /* Load individual functions. */
   getDefaultPrinterFunc = (GetDefaultPrinterFunc)GetProcAddress(winspoolDll,
                                                                 "GetDefaultPrinterA");
   if (!getDefaultPrinterFunc) {
      error = Err_Errno();
      Log("%s: Failed to load GetDefaultPrinter %d: %s\n", __FUNCTION__,
          error, Err_Errno2String(error));
      goto error;
   }

   setDefaultPrinterFunc = (SetDefaultPrinterFunc)GetProcAddress(winspoolDll,
                                                                 "SetDefaultPrinterA");
   if (!setDefaultPrinterFunc) {
      error = Err_Errno();
      Log("%s: Failed to load SetDefaultPrinter %d: %s\n", __FUNCTION__,
          error, Err_Errno2String(error));
      goto error;
   }

   addPrinterConnectionFunc = (AddPrinterConnectionFunc)GetProcAddress(winspoolDll,
                                                             "AddPrinterConnectionA");
   if (!addPrinterConnectionFunc) {
      error = Err_Errno();
      Log("%s: Failed to load AddPrinterConnection %d: %s\n", __FUNCTION__,
          error, Err_Errno2String(error));
      goto error;
   }

   return TRUE;

  error:
   addPrinterConnectionFunc  = NULL;
   setDefaultPrinterFunc     = NULL;
   getDefaultPrinterFunc     = NULL;
   return FALSE;

#else
   /* Allow this to succeed for non-Win32. */
   return TRUE;
#endif
}


/*
 *-----------------------------------------------------------------------------
 *
 * Printer_Cleanup --
 *
 *      Cleanup all the state loaded by Printer_Init().
 *
 * Results:
 *      TRUE on success
 *      FALSE on failure
 *
 * Side effects:
 *      None
 *
 *-----------------------------------------------------------------------------
 */

Bool
Printer_Cleanup(void)
{
#ifdef _WIN32
   DWORD error;

   if (!winspoolDll) {
      Log("%s: Printer library not loaded.\n", __FUNCTION__);

      return FALSE;
   }

   addPrinterConnectionFunc  = NULL;
   setDefaultPrinterFunc     = NULL;
   getDefaultPrinterFunc     = NULL;

   if (!FreeLibrary(winspoolDll)) {
      error = Err_Errno();
      Log("%s: Failed to FreeLibrary %d: %s\n", __FUNCTION__,
          error, Err_Errno2String(error));
      winspoolDll = NULL;

      return FALSE;
   }

   winspoolDll = NULL;

   return TRUE;

#else
   /* Allow this to succeed for non-Win32. */
   return TRUE;
#endif
}