r24425: Convert reply_write to the new API
[samba.git] / source / smbd / pipes.c
1 /* 
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.
8    
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.
13    
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.
18    
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/>.
21 */
22 /*
23    This file handles reply_ calls on named pipes that the server
24    makes to handle specific protocols
25 */
26
27
28 #include "includes.h"
29
30 #define PIPE            "\\PIPE\\"
31 #define PIPELEN         strlen(PIPE)
32
33 #define MAX_PIPE_NAME_LEN       24
34
35 /* PIPE/<name>/<pid>/<pnum> */
36 #define PIPEDB_KEY_FORMAT "PIPE/%s/%u/%d"
37
38 struct pipe_dbrec {
39         struct server_id pid;
40         int pnum;
41         uid_t uid;
42
43         char name[MAX_PIPE_NAME_LEN];
44         fstring user;
45 };
46
47
48 extern struct pipe_id_info pipe_names[];
49
50 /****************************************************************************
51  Reply to an open and X on a named pipe.
52  This code is basically stolen from reply_open_and_X with some
53  wrinkles to handle pipes.
54 ****************************************************************************/
55
56 void reply_open_pipe_and_X(connection_struct *conn, struct smb_request *req)
57 {
58         pstring fname;
59         pstring pipe_name;
60         smb_np_struct *p;
61         int size=0,fmode=0,mtime=0,rmode=0;
62         int i;
63
64         /* XXXX we need to handle passed times, sattr and flags */
65         srvstr_pull_buf(req->inbuf, req->flags2, pipe_name,
66                         smb_buf(req->inbuf), sizeof(pipe_name), STR_TERMINATE);
67
68         /* If the name doesn't start \PIPE\ then this is directed */
69         /* at a mailslot or something we really, really don't understand, */
70         /* not just something we really don't understand. */
71         if ( strncmp(pipe_name,PIPE,PIPELEN) != 0 ) {
72                 reply_doserror(req, ERRSRV, ERRaccess);
73                 return;
74         }
75
76         DEBUG(4,("Opening pipe %s.\n", pipe_name));
77
78         /* See if it is one we want to handle. */
79         for( i = 0; pipe_names[i].client_pipe ; i++ ) {
80                 if( strequal(pipe_name,pipe_names[i].client_pipe)) {
81                         break;
82                 }
83         }
84
85         if (pipe_names[i].client_pipe == NULL) {
86                 reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
87                                 ERRDOS, ERRbadpipe);
88                 return;
89         }
90
91         /* Strip \PIPE\ off the name. */
92         pstrcpy(fname, pipe_name + PIPELEN);
93
94 #if 0
95         /*
96          * Hack for NT printers... JRA.
97          */
98         if(should_fail_next_srvsvc_open(fname)) {
99                 reply_doserror(req, ERRSRV, ERRaccess);
100                 return;
101         }
102 #endif
103
104         /* Known pipes arrive with DIR attribs. Remove it so a regular file */
105         /* can be opened and add it in after the open. */
106         DEBUG(3,("Known pipe %s opening.\n",fname));
107
108         p = open_rpc_pipe_p(fname, conn, req->vuid);
109         if (!p) {
110                 reply_doserror(req, ERRSRV, ERRnofids);
111                 return;
112         }
113
114         /* Prepare the reply */
115         reply_outbuf(req, 15, 0);
116
117         /* Mark the opened file as an existing named pipe in message mode. */
118         SSVAL(req->outbuf,smb_vwv9,2);
119         SSVAL(req->outbuf,smb_vwv10,0xc700);
120
121         if (rmode == 2) {
122                 DEBUG(4,("Resetting open result to open from create.\n"));
123                 rmode = 1;
124         }
125
126         SSVAL(req->outbuf,smb_vwv2, p->pnum);
127         SSVAL(req->outbuf,smb_vwv3,fmode);
128         srv_put_dos_date3((char *)req->outbuf,smb_vwv4,mtime);
129         SIVAL(req->outbuf,smb_vwv6,size);
130         SSVAL(req->outbuf,smb_vwv8,rmode);
131         SSVAL(req->outbuf,smb_vwv11,0x0001);
132
133         chain_reply_new(req);
134         return;
135 }
136
137 /****************************************************************************
138  Reply to a write on a pipe.
139 ****************************************************************************/
140
141 void reply_pipe_write(struct smb_request *req)
142 {
143         smb_np_struct *p = get_rpc_pipe_p(SVAL(req->inbuf,smb_vwv0));
144         size_t numtowrite = SVAL(req->inbuf,smb_vwv1);
145         int nwritten;
146         char *data;
147
148         if (!p) {
149                 reply_doserror(req, ERRDOS, ERRbadfid);
150                 return;
151         }
152
153         if (p->vuid != req->vuid) {
154                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
155                 return;
156         }
157
158         data = smb_buf(req->inbuf) + 3;
159
160         if (numtowrite == 0) {
161                 nwritten = 0;
162         } else {
163                 nwritten = write_to_pipe(p, data, numtowrite);
164         }
165
166         if ((nwritten == 0 && numtowrite != 0) || (nwritten < 0)) {
167                 reply_unixerror(req, ERRDOS, ERRnoaccess);
168                 return;
169         }
170
171         reply_outbuf(req, 1, 0);
172
173         SSVAL(req->outbuf,smb_vwv0,nwritten);
174   
175         DEBUG(3,("write-IPC pnum=%04x nwritten=%d\n", p->pnum, nwritten));
176
177         return;
178 }
179
180 /****************************************************************************
181  Reply to a write and X.
182
183  This code is basically stolen from reply_write_and_X with some
184  wrinkles to handle pipes.
185 ****************************************************************************/
186
187 void reply_pipe_write_and_X(struct smb_request *req)
188 {
189         smb_np_struct *p = get_rpc_pipe_p(SVAL(req->inbuf,smb_vwv2));
190         size_t numtowrite = SVAL(req->inbuf,smb_vwv10);
191         int nwritten = -1;
192         int smb_doff = SVAL(req->inbuf, smb_vwv11);
193         BOOL pipe_start_message_raw =
194                 ((SVAL(req->inbuf, smb_vwv7)
195                   & (PIPE_START_MESSAGE|PIPE_RAW_MODE))
196                  == (PIPE_START_MESSAGE|PIPE_RAW_MODE));
197         char *data;
198
199         if (!p) {
200                 reply_doserror(req, ERRDOS, ERRbadfid);
201                 return;
202         }
203
204         if (p->vuid != req->vuid) {
205                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
206                 return;
207         }
208
209         data = smb_base(req->inbuf) + smb_doff;
210
211         if (numtowrite == 0) {
212                 nwritten = 0;
213         } else {
214                 if(pipe_start_message_raw) {
215                         /*
216                          * For the start of a message in named pipe byte mode,
217                          * the first two bytes are a length-of-pdu field. Ignore
218                          * them (we don't trust the client). JRA.
219                          */
220                        if(numtowrite < 2) {
221                                 DEBUG(0,("reply_pipe_write_and_X: start of "
222                                          "message set and not enough data "
223                                          "sent.(%u)\n",
224                                          (unsigned int)numtowrite ));
225                                 reply_unixerror(req, ERRDOS, ERRnoaccess);
226                                 return;
227                         }
228
229                         data += 2;
230                         numtowrite -= 2;
231                 }                        
232                 nwritten = write_to_pipe(p, data, numtowrite);
233         }
234
235         if ((nwritten == 0 && numtowrite != 0) || (nwritten < 0)) {
236                 reply_unixerror(req, ERRDOS,ERRnoaccess);
237                 return;
238         }
239
240         reply_outbuf(req, 6, 0);
241
242         nwritten = (pipe_start_message_raw ? nwritten + 2 : nwritten);
243         SSVAL(req->outbuf,smb_vwv2,nwritten);
244   
245         DEBUG(3,("writeX-IPC pnum=%04x nwritten=%d\n", p->pnum, nwritten));
246
247         chain_reply_new(req);
248 }
249
250 /****************************************************************************
251  Reply to a read and X.
252  This code is basically stolen from reply_read_and_X with some
253  wrinkles to handle pipes.
254 ****************************************************************************/
255
256 void reply_pipe_read_and_X(struct smb_request *req)
257 {
258         smb_np_struct *p = get_rpc_pipe_p(SVAL(req->inbuf,smb_vwv2));
259         int smb_maxcnt = SVAL(req->inbuf,smb_vwv5);
260         int smb_mincnt = SVAL(req->inbuf,smb_vwv6);
261         int nread = -1;
262         char *data;
263         BOOL unused;
264
265         /* we don't use the offset given to use for pipe reads. This
266            is deliberate, instead we always return the next lump of
267            data on the pipe */
268 #if 0
269         uint32 smb_offs = IVAL(req->inbuf,smb_vwv3);
270 #endif
271
272         if (!p) {
273                 reply_doserror(req, ERRDOS, ERRbadfid);
274                 return;
275         }
276
277         reply_outbuf(req, 12, smb_maxcnt);
278
279         data = smb_buf(req->outbuf);
280
281         nread = read_from_pipe(p, data, smb_maxcnt, &unused);
282
283         if (nread < 0) {
284                 reply_doserror(req, ERRDOS, ERRnoaccess);
285                 return;
286         }
287
288         set_message(NULL, (char *)req->outbuf, 12, nread, False);
289   
290         SSVAL(req->outbuf,smb_vwv5,nread);
291         SSVAL(req->outbuf,smb_vwv6,smb_offset(data,req->outbuf));
292         SSVAL(smb_buf(req->outbuf),-2,nread);
293   
294         DEBUG(3,("readX-IPC pnum=%04x min=%d max=%d nread=%d\n",
295                  p->pnum, smb_mincnt, smb_maxcnt, nread));
296
297         chain_reply_new(req);
298 }
299
300 /****************************************************************************
301  Reply to a close.
302 ****************************************************************************/
303
304 void reply_pipe_close(connection_struct *conn, struct smb_request *req)
305 {
306         smb_np_struct *p = get_rpc_pipe_p(SVAL(req->inbuf,smb_vwv0));
307
308         if (!p) {
309                 reply_doserror(req, ERRDOS, ERRbadfid);
310                 return;
311         }
312
313         DEBUG(5,("reply_pipe_close: pnum:%x\n", p->pnum));
314
315         if (!close_rpc_pipe_hnd(p)) {
316                 reply_doserror(req, ERRDOS, ERRbadfid);
317                 return;
318         }
319         
320         /* TODO: REMOVE PIPE FROM DB */
321
322         reply_outbuf(req, 0, 0);
323         return;
324 }