#include <sys/types.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <libintl.h>
#include <cflib.h>
#include <netsmb/smb_lib.h>
#include "common.h"
static char titlebuf[256];
static char databuf[4096];
static int print_file(smb_ctx_t *, char *, int);
void
print_usage(void)
{
printf(gettext("usage: smbutil print [connection options] //"
"[workgroup;][user[:password]@]"
"server/share {print_file|-}\n"));
exit(1);
}
int
cmd_print(int argc, char *argv[])
{
struct smb_ctx *ctx = NULL;
char *filename;
int error, opt;
int file = -1;
if (argc < 3)
print_usage();
error = smb_ctx_alloc(&ctx);
if (error)
goto out;
error = smb_ctx_scan_argv(ctx, argc-1, argv,
SMBL_SHARE, SMBL_SHARE, USE_SPOOLDEV);
if (error)
goto out;
error = smb_ctx_readrc(ctx);
if (error)
goto out;
while ((opt = getopt(argc-1, argv, STDPARAM_OPT)) != EOF) {
if (opt == '?')
print_usage();
error = smb_ctx_opt(ctx, opt, optarg);
if (error)
goto out;
}
if (optind != argc-2)
print_usage();
filename = argv[argc-1];
if (strcmp(filename, "-") == 0) {
file = 0;
filename = "stdin";
} else {
file = open(filename, O_RDONLY, 0);
if (file < 0) {
smb_error("could not open file %s\n", errno, filename);
exit(1);
}
}
error = smb_ctx_resolve(ctx);
if (error)
goto out;
again:
error = smb_ctx_get_ssn(ctx);
if (error == EAUTH) {
int err2 = smb_get_authentication(ctx);
if (err2 == 0)
goto again;
}
if (error) {
smb_error(gettext("//%s: login failed"),
error, ctx->ct_fullserver);
goto out;
}
error = smb_ctx_get_tree(ctx);
if (error) {
smb_error(gettext("//%s/%s: tree connect failed"),
error, ctx->ct_fullserver, ctx->ct_origshare);
goto out;
}
snprintf(titlebuf, sizeof (titlebuf), "%s %s",
ctx->ct_user, filename);
error = print_file(ctx, titlebuf, file);
out:
if (file > 0)
close(file);
smb_ctx_free(ctx);
return (error);
}
enum {
MODE_TEXT = 0,
MODE_GRAPHICS
};
static int
print_file(smb_ctx_t *ctx, char *title, int file)
{
off_t offset;
int rcnt, wcnt;
int setup_len = 0;
int mode = MODE_GRAPHICS;
int error = 0;
int pfd = -1;
pfd = smb_open_printer(ctx, title, setup_len, mode);
if (pfd < 0) {
error = errno;
smb_error("could not open print job", error);
return (error);
}
offset = 0;
for (;;) {
rcnt = read(file, databuf, sizeof (databuf));
if (rcnt < 0) {
error = errno;
smb_error("error reading input file\n", error);
break;
}
if (rcnt == 0)
break;
wcnt = smb_fh_write(pfd, offset, rcnt, databuf);
if (wcnt < 0) {
error = errno;
smb_error("error writing spool file\n", error);
break;
}
if (wcnt != rcnt) {
smb_error("incomplete write to spool file\n", 0);
error = EIO;
break;
}
offset += wcnt;
}
(void) smb_fh_close(pfd);
return (error);
}