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(const 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 nt_status = cli_full_connection(&c, lp_netbios_name(), server,
43 get_cmdline_auth_info_username(auth_info),
45 get_cmdline_auth_info_password(auth_info),
47 get_cmdline_auth_info_signing_state(auth_info));
48 if (!NT_STATUS_IS_OK(nt_status)) {
49 DBG_ERR("cli_full_connection failed! (%s)\n",
50 nt_errstr(nt_status));
54 if (get_cmdline_auth_info_smb_encrypt(auth_info)) {
55 nt_status = cli_cm_force_encryption(
57 get_cmdline_auth_info_username(auth_info),
58 get_cmdline_auth_info_password(auth_info),
61 if (!NT_STATUS_IS_OK(nt_status)) {
70 int main(int argc, char *argv[])
72 const char **argv_const = discard_const_p(const char *, argv);
73 TALLOC_CTX *frame = talloc_stackframe();
76 char *unc, *mountpoint, *server, *share;
77 struct cli_state *cli;
79 struct poptOption long_options[] = {
82 POPT_COMMON_CREDENTIALS
87 setup_logging(argv[0], DEBUG_STDERR);
88 lp_set_cmdline("client min protocol", "SMB2");
89 lp_set_cmdline("client max protocol", "SMB3_11");
91 lp_load_global(get_dyn_CONFIGFILE());
94 pc = poptGetContext("smb2mount", argc, argv_const, long_options, 0);
95 poptSetOtherOptionHelp(pc, "//server1/share1 mountpoint");
97 while ((opt = poptGetNextOpt(pc)) != -1) {
100 fprintf(stderr, "Unknown Option: %c\n", opt);
105 if (!poptPeekArg(pc)) {
106 poptPrintUsage(pc, stderr, 0);
109 unc = talloc_strdup(frame, poptGetArg(pc));
113 string_replace(unc,'/','\\');
115 if (!poptPeekArg(pc)) {
116 poptPrintUsage(pc, stderr, 0);
119 mountpoint = talloc_strdup(frame, poptGetArg(pc));
120 if (mountpoint == NULL) {
125 popt_burn_cmdline_password(argc, argv);
127 server = talloc_strdup(frame, unc+2);
131 share = strchr_m(server,'\\');
133 fprintf(stderr, "Invalid argument: %s\n", share);
140 cli = connect_one(cmdline_auth_info, server, share);
145 ret = do_mount(cli, mountpoint);
147 fprintf(stderr, "mount failed\n");