2 Unix SMB/CIFS implementation.
3 SMB backend for the Common UNIX Printing System ("CUPS")
4 Copyright 1999 by Easy Software Products
5 Copyright Andrew Tridgell 1994-1998
6 Copyright Andrew Bartlett 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 static void list_devices(void);
30 static struct smbcli_state
*smb_connect(const char *, const char *, const char *, const char *, const char *);
31 static int smb_print(struct smbcli_state
*, char *, FILE *);
35 * 'main()' - Main entry for SMB backend.
38 int /* O - Exit status */
39 main(int argc
, /* I - Number of command-line arguments */
40 char *argv
[]) /* I - Command-line arguments */
42 int i
; /* Looping var */
43 int copies
; /* Number of copies */
44 char uri
[1024], /* URI */
45 *sep
, /* Pointer to separator */
46 *password
; /* Password */
47 const char *username
, /* Username */
48 *server
, /* Server name */
49 *printer
; /* Printer name */
50 const char *workgroup
; /* Workgroup */
51 FILE *fp
; /* File to print */
52 int status
=0; /* Status of LPD job */
53 struct smbcli_state
*cli
; /* SMB interface */
55 /* we expect the URI in argv[0]. Detect the case where it is in argv[1] and cope */
56 if (argc
> 2 && strncmp(argv
[0],"smb://", 6) && !strncmp(argv
[1],"smb://", 6)) {
64 * NEW! In CUPS 1.1 the backends are run with no arguments to list the
65 * available devices. These can be devices served by this backend
66 * or any other backends (i.e. you can have an SNMP backend that
67 * is only used to enumerate the available network printers... :)
74 if (argc
< 6 || argc
> 7)
76 fprintf(stderr
, "Usage: %s [DEVICE_URI] job-id user title copies options [file]\n",
78 fputs(" The DEVICE_URI environment variable can also contain the\n", stderr
);
79 fputs(" destination printer:\n", stderr
);
81 fputs(" smb://[username:password@][workgroup/]server/printer\n", stderr
);
86 * If we have 7 arguments, print the file named on the command-line.
87 * Otherwise, print data from stdin...
93 * Print from Copy stdin to a temporary file...
99 else if ((fp
= fopen(argv
[6], "rb")) == NULL
)
101 perror("ERROR: Unable to open print file");
105 copies
= atoi(argv
[4]);
111 if (strncmp(argv
[0], "smb://", 6) == 0)
112 strncpy(uri
, argv
[0], sizeof(uri
) - 1);
113 else if (getenv("DEVICE_URI") != NULL
)
114 strncpy(uri
, getenv("DEVICE_URI"), sizeof(uri
) - 1);
117 fputs("ERROR: No device URI found in argv[0] or DEVICE_URI environment variable!\n", stderr
);
121 uri
[sizeof(uri
) - 1] = '\0';
124 * Extract the destination from the URI...
127 if ((sep
= strrchr_m(uri
, '@')) != NULL
)
135 * Extract password as needed...
138 if ((password
= strchr_m(username
, ':')) != NULL
)
150 if ((sep
= strchr_m(server
, '/')) == NULL
)
152 fputs("ERROR: Bad URI - need printer name!\n", stderr
);
159 if ((sep
= strchr_m(printer
, '/')) != NULL
)
162 * Convert to smb://[username:password@]workgroup/server/printer...
175 * Setup the SAMBA server state...
178 setup_logging(argv
[0], DEBUG_STDOUT
);
181 fprintf(stderr
, "ERROR: Can't load %s - run testparm to debug it\n", lp_config_file());
185 if (workgroup
== NULL
)
186 workgroup
= lp_workgroup();
190 if ((cli
= smb_connect(workgroup
, server
, printer
, username
, password
)) == NULL
)
192 if (getenv("CLASS") == NULL
)
194 fprintf(stderr
, "ERROR: Unable to connect to SAMBA host, will retry in 60 seconds...");
199 fprintf(stderr
, "ERROR: Unable to connect to SAMBA host, trying next printer...");
207 * Now that we are connected to the server, ignore SIGTERM so that we
208 * can finish out any page data the driver sends (e.g. to eject the
209 * current page... Only ignore SIGTERM if we are printing data from
210 * stdin (otherwise you can't cancel raw jobs...)
214 CatchSignal(SIGTERM
, SIG_IGN
);
220 for (i
= 0; i
< copies
; i
++)
221 if ((status
= smb_print(cli
, argv
[3] /* title */, fp
)) != 0)
227 * Return the queue status...
235 * 'list_devices()' - List the available printers seen on the network...
242 * Eventually, search the local workgroup for available hosts and printers.
245 puts("network smb \"Unknown\" \"Windows Printer via SAMBA\"");
250 * 'smb_connect()' - Return a connection to a server.
253 static struct smbcli_state
* /* O - SMB connection */
254 smb_connect(const char *workgroup
, /* I - Workgroup */
255 const char *server
, /* I - Server */
256 const char *share
, /* I - Printer */
257 const char *username
, /* I - Username */
258 const char *password
) /* I - Password */
260 struct smbcli_state
*c
; /* New connection */
261 char *myname
; /* Client name */
265 * Get the names and addresses of the client and server...
268 myname
= get_myname();
270 nt_status
= smbcli_full_connection(NULL
, &c
, myname
, server
, 0, share
, NULL
,
271 username
, workgroup
, password
, NULL
);
274 if (!NT_STATUS_IS_OK(nt_status
)) {
275 fprintf(stderr
, "ERROR: Connection failed with error %s\n", nt_errstr(nt_status
));
280 * Return the new connection...
288 * 'smb_print()' - Queue a job for printing using the SMB protocol.
291 static int /* O - 0 = success, non-0 = failure */
292 smb_print(struct smbcli_state
*cli
, /* I - SMB connection */
293 char *title
, /* I - Title/job name */
294 FILE *fp
) /* I - File to print */
296 int fnum
; /* File number */
297 int nbytes
, /* Number of bytes read */
298 tbytes
; /* Total bytes read */
299 char buffer
[8192], /* Buffer for copy */
300 *ptr
; /* Pointer into tile */
304 * Sanitize the title...
307 for (ptr
= title
; *ptr
; ptr
++)
308 if (!isalnum((int)*ptr
) && !isspace((int)*ptr
))
312 * Open the printer device...
315 if ((fnum
= smbcli_open(cli
, title
, O_RDWR
| O_CREAT
| O_TRUNC
, DENY_NONE
)) == -1)
317 fprintf(stderr
, "ERROR: %s opening remote file %s\n",
318 smbcli_errstr(cli
), title
);
323 * Copy the file to the printer...
331 while ((nbytes
= fread(buffer
, 1, sizeof(buffer
), fp
)) > 0)
333 if (smbcli_write(cli
, fnum
, 0, buffer
, tbytes
, nbytes
) != nbytes
)
335 fprintf(stderr
, "ERROR: Error writing file: %s\n", smbcli_errstr(cli
));
342 if (!smbcli_close(cli
, fnum
))
344 fprintf(stderr
, "ERROR: %s closing remote file %s\n",
345 smbcli_errstr(cli
), title
);