2 * Unix SMB/CIFS implementation.
3 * fusermount smb2 client
5 * Copyright (C) Volker Lendecke 2016
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "source3/include/includes.h"
23 #include "popt_common.h"
25 #include "libsmb/proto.h"
28 static struct cli_state *connect_one(struct user_auth_info *auth_info,
29 const char *server, const char *share)
31 struct cli_state *c = NULL;
35 if (get_cmdline_auth_info_use_kerberos(auth_info)) {
36 flags |= CLI_FULL_CONNECTION_USE_KERBEROS |
37 CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS;
40 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
41 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
45 set_cmdline_auth_info_getpass(auth_info);
47 nt_status = cli_full_connection(&c, lp_netbios_name(), server,
50 get_cmdline_auth_info_username(auth_info),
52 get_cmdline_auth_info_password(auth_info),
54 get_cmdline_auth_info_signing_state(auth_info));
55 if (!NT_STATUS_IS_OK(nt_status)) {
56 DBG_ERR("cli_full_connection failed! (%s)\n",
57 nt_errstr(nt_status));
61 if (get_cmdline_auth_info_smb_encrypt(auth_info)) {
62 nt_status = cli_cm_force_encryption(
64 get_cmdline_auth_info_username(auth_info),
65 get_cmdline_auth_info_password(auth_info),
68 if (!NT_STATUS_IS_OK(nt_status)) {
77 int main(int argc, char *argv[])
79 const char **argv_const = discard_const_p(const char *, argv);
80 TALLOC_CTX *frame = talloc_stackframe();
81 struct user_auth_info *auth_info;
84 char *unc, *mountpoint, *server, *share;
85 struct cli_state *cli;
87 struct poptOption long_options[] = {
90 POPT_COMMON_CREDENTIALS
95 setup_logging(argv[0], DEBUG_STDERR);
96 lp_set_cmdline("client min protocol", "SMB2");
97 lp_set_cmdline("client max protocol", "SMB3_11");
99 auth_info = user_auth_info_init(frame);
100 if (auth_info == NULL) {
103 popt_common_set_auth_info(auth_info);
105 lp_load_global(get_dyn_CONFIGFILE());
108 pc = poptGetContext("smb2mount", argc, argv_const, long_options, 0);
109 poptSetOtherOptionHelp(pc, "//server1/share1 mountpoint");
111 while ((opt = poptGetNextOpt(pc)) != -1) {
114 fprintf(stderr, "Unknown Option: %c\n", opt);
119 if (!poptPeekArg(pc)) {
120 poptPrintUsage(pc, stderr, 0);
123 unc = talloc_strdup(frame, poptGetArg(pc));
127 string_replace(unc,'/','\\');
129 if (!poptPeekArg(pc)) {
130 poptPrintUsage(pc, stderr, 0);
133 mountpoint = talloc_strdup(frame, poptGetArg(pc));
134 if (mountpoint == NULL) {
139 popt_burn_cmdline_password(argc, argv);
141 server = talloc_strdup(frame, unc+2);
145 share = strchr_m(server,'\\');
147 fprintf(stderr, "Invalid argument: %s\n", share);
154 cli = connect_one(auth_info, server, share);
159 ret = do_mount(cli, mountpoint);
161 fprintf(stderr, "mount failed\n");