2 Unix SMB/CIFS implementation.
5 Copyright (C) Gerald Carter 2001-2002,
6 Copyright (C) Tim Potter 2000-2002,
7 Copyright (C) Andrew Tridgell 1994-2000,
8 Copyright (C) Jean-Francois Micouleau 1999-2000.
9 Copyright (C) Jeremy Allison 2005.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 * SPOOLSS Client RPC's used by servers as the notification
32 /* Send a ReplyOpenPrinter request. This rpc is made by the printer
33 server to the printer client in response to a rffpcnex request.
34 The rrfpcnex request names a printer and a handle (the printerlocal
35 value) and this rpc establishes a back-channel over which printer
36 notifications are performed. */
38 WERROR
rpccli_spoolss_reply_open_printer(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
39 const char *printer
, uint32 printerlocal
, uint32 type
,
42 prs_struct qbuf
, rbuf
;
43 SPOOL_Q_REPLYOPENPRINTER q
;
44 SPOOL_R_REPLYOPENPRINTER r
;
45 WERROR result
= W_ERROR(ERRgeneral
);
47 /* Initialise input parameters */
49 make_spoolss_q_replyopenprinter(&q
, printer
, printerlocal
, type
);
51 /* Marshall data and send request */
53 CLI_DO_RPC_WERR( cli
, mem_ctx
, PI_SPOOLSS
, SPOOLSS_REPLYOPENPRINTER
,
56 spoolss_io_q_replyopenprinter
,
57 spoolss_io_r_replyopenprinter
,
58 WERR_GENERAL_FAILURE
);
62 memcpy(handle
, &r
.handle
, sizeof(r
.handle
));
68 /* Close a back-channel notification connection */
70 WERROR
rpccli_spoolss_reply_close_printer(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
73 prs_struct qbuf
, rbuf
;
74 SPOOL_Q_REPLYCLOSEPRINTER q
;
75 SPOOL_R_REPLYCLOSEPRINTER r
;
76 WERROR result
= W_ERROR(ERRgeneral
);
78 /* Initialise input parameters */
80 make_spoolss_q_reply_closeprinter(&q
, handle
);
82 /* Marshall data and send request */
84 CLI_DO_RPC_WERR( cli
, mem_ctx
, PI_SPOOLSS
, SPOOLSS_REPLYCLOSEPRINTER
,
87 spoolss_io_q_replycloseprinter
,
88 spoolss_io_r_replycloseprinter
,
89 WERR_GENERAL_FAILURE
);
97 /*********************************************************************
98 This SPOOLSS_ROUTERREPLYPRINTER function is used to send a change
99 notification event when the registration **did not** use
100 SPOOL_NOTIFY_OPTION_TYPE structure to specify the events to monitor.
101 Also see cli_spolss_reply_rrpcn()
102 *********************************************************************/
104 WERROR
rpccli_spoolss_routerreplyprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
105 POLICY_HND
*pol
, uint32 condition
, uint32 change_id
)
107 prs_struct qbuf
, rbuf
;
108 SPOOL_Q_ROUTERREPLYPRINTER q
;
109 SPOOL_R_ROUTERREPLYPRINTER r
;
110 WERROR result
= W_ERROR(ERRgeneral
);
112 /* Initialise input parameters */
114 make_spoolss_q_routerreplyprinter(&q
, pol
, condition
, change_id
);
116 /* Marshall data and send request */
118 CLI_DO_RPC_WERR( cli
, mem_ctx
, PI_SPOOLSS
, SPOOLSS_ROUTERREPLYPRINTER
,
121 spoolss_io_q_routerreplyprinter
,
122 spoolss_io_r_routerreplyprinter
,
123 WERR_GENERAL_FAILURE
);
125 /* Return output parameters */
131 /*********************************************************************
132 This SPOOLSS_REPLY_RRPCN function is used to send a change
133 notification event when the registration **did** use
134 SPOOL_NOTIFY_OPTION_TYPE structure to specify the events to monitor
135 Also see cli_spoolss_routereplyprinter()
136 *********************************************************************/
138 WERROR
rpccli_spoolss_rrpcn(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
139 POLICY_HND
*pol
, uint32 notify_data_len
,
140 SPOOL_NOTIFY_INFO_DATA
*notify_data
,
141 uint32 change_low
, uint32 change_high
)
143 prs_struct qbuf
, rbuf
;
144 SPOOL_Q_REPLY_RRPCN q
;
145 SPOOL_R_REPLY_RRPCN r
;
146 WERROR result
= W_ERROR(ERRgeneral
);
147 SPOOL_NOTIFY_INFO notify_info
;
152 ZERO_STRUCT(notify_info
);
154 /* Initialise input parameters */
156 notify_info
.version
= 0x2;
157 notify_info
.flags
= 0x00020000; /* ?? */
158 notify_info
.count
= notify_data_len
;
159 notify_info
.data
= notify_data
;
161 /* create and send a MSRPC command with api */
162 /* store the parameters */
164 make_spoolss_q_reply_rrpcn(&q
, pol
, change_low
, change_high
,
167 /* Marshall data and send request */
169 CLI_DO_RPC_WERR( cli
, mem_ctx
, PI_SPOOLSS
, SPOOLSS_RRPCN
,
172 spoolss_io_q_reply_rrpcn
,
173 spoolss_io_r_reply_rrpcn
,
174 WERR_GENERAL_FAILURE
);
176 if (r
.unknown0
== 0x00080000)
177 DEBUG(8,("cli_spoolss_reply_rrpcn: I think the spooler resonded that the notification was ignored.\n"));
178 else if ( r
.unknown0
!= 0x0 )
179 DEBUG(8,("cli_spoolss_reply_rrpcn: unknown0 is non-zero [0x%x]\n", r
.unknown0
));
185 /*********************************************************************
186 *********************************************************************/
188 WERROR
rpccli_spoolss_rffpcnex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
189 POLICY_HND
*pol
, uint32 flags
, uint32 options
,
190 const char *localmachine
, uint32 printerlocal
,
191 SPOOL_NOTIFY_OPTION
*option
)
193 prs_struct qbuf
, rbuf
;
196 WERROR result
= W_ERROR(ERRgeneral
);
201 /* Initialise input parameters */
203 make_spoolss_q_rffpcnex(
204 &q
, pol
, flags
, options
, localmachine
, printerlocal
,
207 /* Marshall data and send request */
209 CLI_DO_RPC_WERR( cli
, mem_ctx
, PI_SPOOLSS
, SPOOLSS_RFFPCNEX
,
212 spoolss_io_q_rffpcnex
,
213 spoolss_io_r_rffpcnex
,
214 WERR_GENERAL_FAILURE
);