2 Unix SMB/CIFS implementation.
3 Pipe SMB reply routines
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1998
6 Copyright (C) Paul Ashton 1997-1998.
7 Copyright (C) Jeremy Allison 2005.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 This file handles reply_ calls on named pipes that the server
24 makes to handle specific protocols
30 #define PIPE "\\PIPE\\"
31 #define PIPELEN strlen(PIPE)
33 #define MAX_PIPE_NAME_LEN 24
35 /* PIPE/<name>/<pid>/<pnum> */
36 #define PIPEDB_KEY_FORMAT "PIPE/%s/%u/%d"
43 char name
[MAX_PIPE_NAME_LEN
];
47 /****************************************************************************
48 Reply to an open and X on a named pipe.
49 This code is basically stolen from reply_open_and_X with some
50 wrinkles to handle pipes.
51 ****************************************************************************/
53 void reply_open_pipe_and_X(connection_struct
*conn
, struct smb_request
*req
)
55 const char *fname
= NULL
;
56 char *pipe_name
= NULL
;
58 int size
=0,fmode
=0,mtime
=0,rmode
=0;
59 TALLOC_CTX
*ctx
= talloc_tos();
61 /* XXXX we need to handle passed times, sattr and flags */
62 srvstr_pull_buf_talloc(ctx
, req
->inbuf
, req
->flags2
, &pipe_name
,
63 smb_buf(req
->inbuf
), STR_TERMINATE
);
65 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
70 /* If the name doesn't start \PIPE\ then this is directed */
71 /* at a mailslot or something we really, really don't understand, */
72 /* not just something we really don't understand. */
73 if ( strncmp(pipe_name
,PIPE
,PIPELEN
) != 0 ) {
74 reply_doserror(req
, ERRSRV
, ERRaccess
);
78 DEBUG(4,("Opening pipe %s.\n", pipe_name
));
80 /* See if it is one we want to handle. */
81 if (!is_known_pipename(pipe_name
)) {
82 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
87 /* Strip \PIPE\ off the name. */
88 fname
= pipe_name
+ PIPELEN
;
92 * Hack for NT printers... JRA.
94 if(should_fail_next_srvsvc_open(fname
)) {
95 reply_doserror(req
, ERRSRV
, ERRaccess
);
100 /* Known pipes arrive with DIR attribs. Remove it so a regular file */
101 /* can be opened and add it in after the open. */
102 DEBUG(3,("Known pipe %s opening.\n",fname
));
104 p
= open_rpc_pipe_p(fname
, conn
, req
->vuid
);
106 reply_doserror(req
, ERRSRV
, ERRnofids
);
110 /* Prepare the reply */
111 reply_outbuf(req
, 15, 0);
113 /* Mark the opened file as an existing named pipe in message mode. */
114 SSVAL(req
->outbuf
,smb_vwv9
,2);
115 SSVAL(req
->outbuf
,smb_vwv10
,0xc700);
118 DEBUG(4,("Resetting open result to open from create.\n"));
122 SSVAL(req
->outbuf
,smb_vwv2
, p
->pnum
);
123 SSVAL(req
->outbuf
,smb_vwv3
,fmode
);
124 srv_put_dos_date3((char *)req
->outbuf
,smb_vwv4
,mtime
);
125 SIVAL(req
->outbuf
,smb_vwv6
,size
);
126 SSVAL(req
->outbuf
,smb_vwv8
,rmode
);
127 SSVAL(req
->outbuf
,smb_vwv11
,0x0001);
133 /****************************************************************************
134 Reply to a write on a pipe.
135 ****************************************************************************/
137 void reply_pipe_write(struct smb_request
*req
)
139 smb_np_struct
*p
= get_rpc_pipe_p(SVAL(req
->inbuf
,smb_vwv0
));
140 size_t numtowrite
= SVAL(req
->inbuf
,smb_vwv1
);
145 reply_doserror(req
, ERRDOS
, ERRbadfid
);
149 if (p
->vuid
!= req
->vuid
) {
150 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
154 data
= smb_buf(req
->inbuf
) + 3;
156 if (numtowrite
== 0) {
159 nwritten
= write_to_pipe(p
, data
, numtowrite
);
162 if ((nwritten
== 0 && numtowrite
!= 0) || (nwritten
< 0)) {
163 reply_unixerror(req
, ERRDOS
, ERRnoaccess
);
167 reply_outbuf(req
, 1, 0);
169 SSVAL(req
->outbuf
,smb_vwv0
,nwritten
);
171 DEBUG(3,("write-IPC pnum=%04x nwritten=%d\n", p
->pnum
, nwritten
));
176 /****************************************************************************
177 Reply to a write and X.
179 This code is basically stolen from reply_write_and_X with some
180 wrinkles to handle pipes.
181 ****************************************************************************/
183 void reply_pipe_write_and_X(struct smb_request
*req
)
185 smb_np_struct
*p
= get_rpc_pipe_p(SVAL(req
->inbuf
,smb_vwv2
));
186 size_t numtowrite
= SVAL(req
->inbuf
,smb_vwv10
);
188 int smb_doff
= SVAL(req
->inbuf
, smb_vwv11
);
189 bool pipe_start_message_raw
=
190 ((SVAL(req
->inbuf
, smb_vwv7
)
191 & (PIPE_START_MESSAGE
|PIPE_RAW_MODE
))
192 == (PIPE_START_MESSAGE
|PIPE_RAW_MODE
));
196 reply_doserror(req
, ERRDOS
, ERRbadfid
);
200 if (p
->vuid
!= req
->vuid
) {
201 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
205 data
= smb_base(req
->inbuf
) + smb_doff
;
207 if (numtowrite
== 0) {
210 if(pipe_start_message_raw
) {
212 * For the start of a message in named pipe byte mode,
213 * the first two bytes are a length-of-pdu field. Ignore
214 * them (we don't trust the client). JRA.
217 DEBUG(0,("reply_pipe_write_and_X: start of "
218 "message set and not enough data "
220 (unsigned int)numtowrite
));
221 reply_unixerror(req
, ERRDOS
, ERRnoaccess
);
228 nwritten
= write_to_pipe(p
, data
, numtowrite
);
231 if ((nwritten
== 0 && numtowrite
!= 0) || (nwritten
< 0)) {
232 reply_unixerror(req
, ERRDOS
,ERRnoaccess
);
236 reply_outbuf(req
, 6, 0);
238 nwritten
= (pipe_start_message_raw
? nwritten
+ 2 : nwritten
);
239 SSVAL(req
->outbuf
,smb_vwv2
,nwritten
);
241 DEBUG(3,("writeX-IPC pnum=%04x nwritten=%d\n", p
->pnum
, nwritten
));
246 /****************************************************************************
247 Reply to a read and X.
248 This code is basically stolen from reply_read_and_X with some
249 wrinkles to handle pipes.
250 ****************************************************************************/
252 void reply_pipe_read_and_X(struct smb_request
*req
)
254 smb_np_struct
*p
= get_rpc_pipe_p(SVAL(req
->inbuf
,smb_vwv2
));
255 int smb_maxcnt
= SVAL(req
->inbuf
,smb_vwv5
);
256 int smb_mincnt
= SVAL(req
->inbuf
,smb_vwv6
);
261 /* we don't use the offset given to use for pipe reads. This
262 is deliberate, instead we always return the next lump of
265 uint32 smb_offs
= IVAL(req
->inbuf
,smb_vwv3
);
269 reply_doserror(req
, ERRDOS
, ERRbadfid
);
273 reply_outbuf(req
, 12, smb_maxcnt
);
275 data
= smb_buf(req
->outbuf
);
277 nread
= read_from_pipe(p
, data
, smb_maxcnt
, &unused
);
280 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
284 srv_set_message((char *)req
->outbuf
, 12, nread
, False
);
286 SSVAL(req
->outbuf
,smb_vwv5
,nread
);
287 SSVAL(req
->outbuf
,smb_vwv6
,smb_offset(data
,req
->outbuf
));
288 SSVAL(smb_buf(req
->outbuf
),-2,nread
);
290 DEBUG(3,("readX-IPC pnum=%04x min=%d max=%d nread=%d\n",
291 p
->pnum
, smb_mincnt
, smb_maxcnt
, nread
));
296 /****************************************************************************
298 ****************************************************************************/
300 void reply_pipe_close(connection_struct
*conn
, struct smb_request
*req
)
302 smb_np_struct
*p
= get_rpc_pipe_p(SVAL(req
->inbuf
,smb_vwv0
));
305 reply_doserror(req
, ERRDOS
, ERRbadfid
);
309 DEBUG(5,("reply_pipe_close: pnum:%x\n", p
->pnum
));
311 if (!close_rpc_pipe_hnd(p
)) {
312 reply_doserror(req
, ERRDOS
, ERRbadfid
);
316 /* TODO: REMOVE PIPE FROM DB */
318 reply_outbuf(req
, 0, 0);