2 Unix SMB/CIFS implementation.
3 printing backend routines for smbd - using files_struct rather
5 Copyright (C) Andrew Tridgell 1992-2000
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 extern struct current_user current_user
;
26 /***************************************************************************
27 open a print file and setup a fsp for it. This is a wrapper around
29 ***************************************************************************/
31 NTSTATUS
print_fsp_open(connection_struct
*conn
, const char *fname
,
32 files_struct
**result
)
40 status
= file_new(conn
, &fsp
);
41 if(!NT_STATUS_IS_OK(status
)) {
45 fstrcpy( name
, "Remote Downlevel Document");
47 const char *p
= strrchr(fname
, '/');
55 jobid
= print_job_start(¤t_user
, SNUM(conn
), name
, NULL
);
57 status
= map_nt_error_from_unix(errno
);
62 /* Convert to RAP id. */
63 fsp
->rap_print_jobid
= pjobid_to_rap(lp_const_servicename(SNUM(conn
)), jobid
);
64 if (fsp
->rap_print_jobid
== 0) {
65 /* We need to delete the entry in the tdb. */
66 pjob_delete(lp_const_servicename(SNUM(conn
)), jobid
);
68 return NT_STATUS_ACCESS_DENIED
; /* No errno around here */
71 /* setup a full fsp */
72 fsp
->fh
->fd
= print_job_fd(lp_const_servicename(SNUM(conn
)),jobid
);
73 GetTimeOfDay(&fsp
->open_time
);
74 fsp
->vuid
= current_user
.vuid
;
77 fsp
->can_read
= False
;
78 fsp
->access_mask
= FILE_GENERIC_WRITE
;
79 fsp
->can_write
= True
;
80 fsp
->print_file
= True
;
81 fsp
->modified
= False
;
82 fsp
->oplock_type
= NO_OPLOCK
;
83 fsp
->sent_oplock_break
= NO_BREAK_SENT
;
84 fsp
->is_directory
= False
;
85 string_set(&fsp
->fsp_name
,print_job_fname(lp_const_servicename(SNUM(conn
)),jobid
));
86 fsp
->wbmpx_ptr
= NULL
;
88 SMB_VFS_FSTAT(fsp
,fsp
->fh
->fd
, &sbuf
);
89 fsp
->mode
= sbuf
.st_mode
;
90 fsp
->inode
= sbuf
.st_ino
;
91 fsp
->dev
= sbuf
.st_dev
;
93 conn
->num_files_open
++;
99 /****************************************************************************
100 Print a file - called on closing the file.
101 ****************************************************************************/
103 void print_fsp_end(files_struct
*fsp
, enum file_close_type close_type
)
108 if (fsp
->fh
->private_options
& FILE_DELETE_ON_CLOSE
) {
110 * Truncate the job. print_job_end will take
111 * care of deleting it for us. JRA.
113 sys_ftruncate(fsp
->fh
->fd
, 0);
117 string_free(&fsp
->fsp_name
);
120 if (!rap_to_pjobid(fsp
->rap_print_jobid
, sharename
, &jobid
)) {
121 DEBUG(3,("print_fsp_end: Unable to convert RAP jobid %u to print jobid.\n",
122 (unsigned int)fsp
->rap_print_jobid
));
126 print_job_end(SNUM(fsp
->conn
),jobid
, close_type
);