updated the 3.0 branch from the head branch - ready for alpha18
[nivanova/samba-autobuild/.git] / source3 / libsmb / cli_wkssvc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    NT Domain Authentication SMB / MSRPC client
4    Copyright (C) Andrew Tridgell 1994-2000
5    Copyright (C) Luke Kenneth Casson Leighton 1996-2000
6    Copyright (C) Tim Potter 2001
7    Copytight (C) Rafal Szczesniak 2002
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 2 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, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25
26 /**
27  * WksQueryInfo rpc call (like query for server's capabilities)
28  *
29  * @param initialised client structure with \PIPE\wkssvc opened
30  * @param mem_ctx memory context assigned to this rpc binding
31  * @param wks100 WksQueryInfo structure
32  *
33  * @return NTSTATUS of rpc call
34  */
35  
36 NTSTATUS cli_wks_query_info(struct cli_state *cli, TALLOC_CTX *mem_ctx,
37                             WKS_INFO_100 *wks100)
38 {
39         prs_struct buf;
40         prs_struct rbuf;
41         WKS_Q_QUERY_INFO q_o;
42         WKS_R_QUERY_INFO r_o;
43         NTSTATUS nt_status;
44
45         if (cli == NULL || wks100 == NULL)
46                 return NT_STATUS_UNSUCCESSFUL;
47
48         /* init rpc parse structures */
49         prs_init(&buf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
50         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
51
52         DEBUG(4, ("WksQueryInfo\n"));
53         
54         /* init query structure with rpc call arguments */
55         init_wks_q_query_info(&q_o, cli->desthost, 100);
56         
57         /* marshall data */
58         if (!wks_io_q_query_info("", &q_o, &buf, 0)) {
59                 prs_mem_free(&buf);
60                 prs_mem_free(&rbuf);
61                 return NT_STATUS_UNSUCCESSFUL;
62         }
63         
64         /* actual rpc call over \PIPE\wkssvc */
65         if (!rpc_api_pipe_req(cli, WKS_QUERY_INFO, &buf, &rbuf)) {
66                 prs_mem_free(&buf);
67                 prs_mem_free(&rbuf);
68                 return NT_STATUS_UNSUCCESSFUL;
69         }
70         
71         prs_mem_free(&buf);
72
73         r_o.wks100 = wks100;
74
75         /* get call results from response buffer */
76         if (!wks_io_r_query_info("", &r_o, &rbuf, 0)) {
77                 prs_mem_free(&rbuf);
78                 return NT_STATUS_UNSUCCESSFUL;
79         }
80         
81         /* check returnet status code */
82         if (NT_STATUS_IS_ERR(r_o.status)) {
83                 /* report the error */
84                 DEBUG(0,("WKS_R_QUERY_INFO: %s\n", nt_errstr(r_o.status)));
85                 prs_mem_free(&rbuf);
86                 return r_o.status;
87         }
88         
89         /* do clean up */
90         prs_mem_free(&rbuf);
91         
92         return nt_status;
93 }
94