s4/heimdal_build: use GetTimeOfDay macro instead of gettimeofday
[Samba/ita.git] / source4 / libcli / cliconnect.c
blobd670324c88cf161243bb99c3022583e710c9cac4
1 /*
2 Unix SMB/CIFS implementation.
4 client connect/disconnect routines
6 Copyright (C) Andrew Tridgell 2003-2005
7 Copyright (C) James Peach 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 #include "includes.h"
24 #include "libcli/libcli.h"
25 #include "libcli/raw/libcliraw.h"
26 #include "libcli/raw/raw_proto.h"
27 #include "libcli/auth/libcli_auth.h"
28 #include "libcli/smb_composite/smb_composite.h"
31 wrapper around smbcli_sock_connect()
33 bool smbcli_socket_connect(struct smbcli_state *cli, const char *server,
34 const char **ports,
35 struct tevent_context *ev_ctx,
36 struct resolve_context *resolve_ctx,
37 struct smbcli_options *options,
38 const char *socket_options)
40 struct smbcli_socket *sock;
42 sock = smbcli_sock_connect_byname(server, ports, NULL,
43 resolve_ctx, ev_ctx,
44 socket_options);
46 if (sock == NULL) return false;
48 cli->transport = smbcli_transport_init(sock, cli, true, options);
49 if (!cli->transport) {
50 return false;
53 return true;
56 /* wrapper around smbcli_transport_connect() */
57 bool smbcli_transport_establish(struct smbcli_state *cli,
58 struct nbt_name *calling,
59 struct nbt_name *called)
61 return smbcli_transport_connect(cli->transport, calling, called);
64 /* wrapper around smb_raw_negotiate() */
65 NTSTATUS smbcli_negprot(struct smbcli_state *cli, bool unicode, int maxprotocol)
67 return smb_raw_negotiate(cli->transport, unicode, maxprotocol);
70 /* wrapper around smb_raw_sesssetup() */
71 NTSTATUS smbcli_session_setup(struct smbcli_state *cli,
72 struct cli_credentials *credentials,
73 const char *workgroup,
74 struct smbcli_session_options options,
75 struct gensec_settings *gensec_settings)
77 struct smb_composite_sesssetup setup;
78 NTSTATUS status;
80 cli->session = smbcli_session_init(cli->transport, cli, true,
81 options);
82 if (!cli->session) return NT_STATUS_UNSUCCESSFUL;
84 setup.in.sesskey = cli->transport->negotiate.sesskey;
85 setup.in.capabilities = cli->transport->negotiate.capabilities;
86 setup.in.credentials = credentials;
87 setup.in.workgroup = workgroup;
88 setup.in.gensec_settings = gensec_settings;
90 status = smb_composite_sesssetup(cli->session, &setup);
92 cli->session->vuid = setup.out.vuid;
94 return status;
97 /* wrapper around smb_raw_tcon() */
98 NTSTATUS smbcli_tconX(struct smbcli_state *cli, const char *sharename,
99 const char *devtype, const char *password)
101 union smb_tcon tcon;
102 TALLOC_CTX *mem_ctx;
103 NTSTATUS status;
105 cli->tree = smbcli_tree_init(cli->session, cli, true);
106 if (!cli->tree) return NT_STATUS_UNSUCCESSFUL;
108 mem_ctx = talloc_init("tcon");
109 if (!mem_ctx) {
110 return NT_STATUS_NO_MEMORY;
113 /* setup a tree connect */
114 tcon.generic.level = RAW_TCON_TCONX;
115 tcon.tconx.in.flags = 0;
116 if (cli->transport->negotiate.sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) {
117 tcon.tconx.in.password = data_blob(NULL, 0);
118 } else if (cli->transport->negotiate.sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) {
119 tcon.tconx.in.password = data_blob_talloc(mem_ctx, NULL, 24);
120 if (cli->transport->negotiate.secblob.length < 8) {
121 return NT_STATUS_INVALID_PARAMETER;
123 SMBencrypt(password, cli->transport->negotiate.secblob.data, tcon.tconx.in.password.data);
124 } else {
125 tcon.tconx.in.password = data_blob_talloc(mem_ctx, password, strlen(password)+1);
127 tcon.tconx.in.path = sharename;
128 tcon.tconx.in.device = devtype;
130 status = smb_raw_tcon(cli->tree, mem_ctx, &tcon);
132 cli->tree->tid = tcon.tconx.out.tid;
134 talloc_free(mem_ctx);
136 return status;
141 easy way to get to a fully connected smbcli_state in one call
143 NTSTATUS smbcli_full_connection(TALLOC_CTX *parent_ctx,
144 struct smbcli_state **ret_cli,
145 const char *host,
146 const char **ports,
147 const char *sharename,
148 const char *devtype,
149 const char *socket_options,
150 struct cli_credentials *credentials,
151 struct resolve_context *resolve_ctx,
152 struct tevent_context *ev,
153 struct smbcli_options *options,
154 struct smbcli_session_options *session_options,
155 struct gensec_settings *gensec_settings)
157 struct smbcli_tree *tree;
158 NTSTATUS status;
160 *ret_cli = NULL;
162 status = smbcli_tree_full_connection(parent_ctx,
163 &tree, host, ports,
164 sharename, devtype,
165 socket_options,
166 credentials, resolve_ctx, ev,
167 options,
168 session_options,
169 gensec_settings);
170 if (!NT_STATUS_IS_OK(status)) {
171 goto done;
174 (*ret_cli) = smbcli_state_init(parent_ctx);
176 (*ret_cli)->tree = tree;
177 (*ret_cli)->session = tree->session;
178 (*ret_cli)->transport = tree->session->transport;
180 talloc_steal(*ret_cli, tree);
182 done:
183 return status;
188 disconnect the tree
190 NTSTATUS smbcli_tdis(struct smbcli_state *cli)
192 return smb_tree_disconnect(cli->tree);
195 /****************************************************************************
196 Initialise a client state structure.
197 ****************************************************************************/
198 struct smbcli_state *smbcli_state_init(TALLOC_CTX *mem_ctx)
200 return talloc_zero(mem_ctx, struct smbcli_state);
203 /* Insert a NULL at the first separator of the given path and return a pointer
204 * to the remainder of the string.
206 static char *
207 terminate_path_at_separator(char * path)
209 char * p;
211 if (!path) {
212 return NULL;
215 if ((p = strchr_m(path, '/'))) {
216 *p = '\0';
217 return p + 1;
220 if ((p = strchr_m(path, '\\'))) {
221 *p = '\0';
222 return p + 1;
225 /* No separator. */
226 return NULL;
230 parse a //server/share type UNC name
232 bool smbcli_parse_unc(const char *unc_name, TALLOC_CTX *mem_ctx,
233 char **hostname, char **sharename)
235 char *p;
237 if (strncmp(unc_name, "\\\\", 2) &&
238 strncmp(unc_name, "//", 2)) {
239 return false;
242 *hostname = *sharename = NULL;
244 *hostname = talloc_strdup(mem_ctx, &unc_name[2]);
245 p = terminate_path_at_separator(*hostname);
247 if (p != NULL && *p) {
248 *sharename = talloc_strdup(mem_ctx, p);
249 terminate_path_at_separator(*sharename);
252 if (*hostname && *sharename) {
253 return true;
256 talloc_free(*hostname);
257 talloc_free(*sharename);
258 *hostname = *sharename = NULL;
259 return false;