1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/namei.h>
8 #include "cifs_debug.h"
9 #include "dns_resolve.h"
10 #include "fs_context.h"
14 * dfs_parse_target_referral - set fs context for dfs target referral
16 * @full_path: full path in UNC format.
17 * @ref: dfs referral pointer.
18 * @ctx: smb3 fs context pointer.
20 * Return zero if dfs referral was parsed correctly, otherwise non-zero.
22 int dfs_parse_target_referral(const char *full_path, const struct dfs_info3_param *ref,
23 struct smb3_fs_context *ctx)
26 const char *prepath = NULL;
29 if (!full_path || !*full_path || !ref || !ctx)
32 if (WARN_ON_ONCE(!ref->node_name || ref->path_consumed < 0))
35 if (strlen(full_path) - ref->path_consumed) {
36 prepath = full_path + ref->path_consumed;
37 /* skip initial delimiter */
38 if (*prepath == '/' || *prepath == '\\')
42 path = cifs_build_devname(ref->node_name, prepath);
46 rc = smb3_parse_devname(path, ctx);
50 rc = dns_resolve_server_name_to_ip(path, (struct sockaddr *)&ctx->dstaddr, NULL);
58 * cifs_build_path_to_root returns full path to root when we do not have an
59 * existing connection (tcon)
61 static char *build_unc_path_to_root(const struct smb3_fs_context *ctx,
62 const struct cifs_sb_info *cifs_sb, bool useppath)
64 char *full_path, *pos;
65 unsigned int pplen = useppath && ctx->prepath ? strlen(ctx->prepath) + 1 : 0;
66 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
68 if (unc_len > MAX_TREE_SIZE)
69 return ERR_PTR(-EINVAL);
71 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
72 if (full_path == NULL)
73 return ERR_PTR(-ENOMEM);
75 memcpy(full_path, ctx->UNC, unc_len);
76 pos = full_path + unc_len;
79 *pos = CIFS_DIR_SEP(cifs_sb);
80 memcpy(pos + 1, ctx->prepath, pplen);
84 *pos = '\0'; /* add trailing null */
85 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
86 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
90 static int get_session(struct cifs_mount_ctx *mnt_ctx, const char *full_path)
92 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
95 ctx->leaf_fullpath = (char *)full_path;
96 rc = cifs_mount_get_session(mnt_ctx);
97 ctx->leaf_fullpath = NULL;
102 static int add_root_smb_session(struct cifs_mount_ctx *mnt_ctx)
104 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
105 struct dfs_root_ses *root_ses;
106 struct cifs_ses *ses = mnt_ctx->ses;
109 root_ses = kmalloc(sizeof(*root_ses), GFP_KERNEL);
113 INIT_LIST_HEAD(&root_ses->list);
115 spin_lock(&cifs_tcp_ses_lock);
117 spin_unlock(&cifs_tcp_ses_lock);
119 list_add_tail(&root_ses->list, &mnt_ctx->dfs_ses_list);
121 ctx->dfs_root_ses = ses;
125 static int get_dfs_conn(struct cifs_mount_ctx *mnt_ctx, const char *ref_path, const char *full_path,
126 const struct dfs_cache_tgt_iterator *tit)
128 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
129 struct dfs_info3_param ref = {};
133 rc = dfs_cache_get_tgt_referral(ref_path + 1, tit, &ref);
137 rc = dfs_parse_target_referral(full_path + 1, &ref, ctx);
141 cifs_mount_put_conns(mnt_ctx);
142 rc = get_session(mnt_ctx, ref_path);
146 is_refsrv = !!(ref.flags & DFSREF_REFERRAL_SERVER);
149 if (ref.flags & DFSREF_STORAGE_SERVER) {
150 rc = cifs_mount_get_tcon(mnt_ctx);
154 /* some servers may not advertise referral capability under ref.flags */
155 is_refsrv |= is_tcon_dfs(mnt_ctx->tcon);
157 rc = cifs_is_path_remote(mnt_ctx);
160 dfs_cache_noreq_update_tgthint(ref_path + 1, tit);
162 if (rc == -EREMOTE && is_refsrv) {
163 rc2 = add_root_smb_session(mnt_ctx);
169 free_dfs_info_param(&ref);
173 static int __dfs_mount_share(struct cifs_mount_ctx *mnt_ctx)
175 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
176 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
177 char *ref_path = NULL, *full_path = NULL;
178 struct dfs_cache_tgt_iterator *tit;
179 struct TCP_Server_Info *server;
180 struct cifs_tcon *tcon;
181 char *origin_fullpath = NULL;
185 ref_path = dfs_get_path(cifs_sb, ctx->UNC);
186 if (IS_ERR(ref_path))
187 return PTR_ERR(ref_path);
189 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
190 if (IS_ERR(full_path)) {
191 rc = PTR_ERR(full_path);
196 origin_fullpath = kstrdup(full_path, GFP_KERNEL);
197 if (!origin_fullpath) {
203 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
205 rc = dfs_get_referral(mnt_ctx, ref_path + 1, NULL, &tl);
209 tit = dfs_cache_get_tgt_iterator(&tl);
211 cifs_dbg(VFS, "%s: dfs referral (%s) with no targets\n", __func__,
214 dfs_cache_free_tgts(&tl);
219 rc = get_dfs_conn(mnt_ctx, ref_path, full_path, tit);
222 if (rc == -EREMOTE) {
223 if (++num_links > MAX_NESTED_LINKS) {
229 ref_path = full_path = NULL;
231 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
232 if (IS_ERR(full_path)) {
233 rc = PTR_ERR(full_path);
236 ref_path = dfs_get_path(cifs_sb, full_path);
237 if (IS_ERR(ref_path)) {
238 rc = PTR_ERR(ref_path);
244 } while ((tit = dfs_cache_get_next_tgt(&tl, tit)));
245 dfs_cache_free_tgts(&tl);
246 } while (rc == -EREMOTE);
249 server = mnt_ctx->server;
250 tcon = mnt_ctx->tcon;
252 mutex_lock(&server->refpath_lock);
253 spin_lock(&server->srv_lock);
254 if (!server->origin_fullpath) {
255 server->origin_fullpath = origin_fullpath;
256 origin_fullpath = NULL;
258 spin_unlock(&server->srv_lock);
259 mutex_unlock(&server->refpath_lock);
261 if (list_empty(&tcon->dfs_ses_list)) {
262 list_replace_init(&mnt_ctx->dfs_ses_list,
263 &tcon->dfs_ses_list);
264 queue_delayed_work(dfscache_wq, &tcon->dfs_cache_work,
265 dfs_cache_get_ttl() * HZ);
267 dfs_put_root_smb_sessions(&mnt_ctx->dfs_ses_list);
272 kfree(origin_fullpath);
278 int dfs_mount_share(struct cifs_mount_ctx *mnt_ctx, bool *isdfs)
280 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
281 struct cifs_ses *ses;
282 char *source = ctx->source;
283 bool nodfs = ctx->nodfs;
287 /* Temporarily set @ctx->source to NULL as we're not matching DFS
288 * superblocks yet. See cifs_match_super() and match_server().
291 rc = get_session(mnt_ctx, NULL);
295 ctx->dfs_root_ses = mnt_ctx->ses;
297 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
298 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
300 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
301 * to respond with PATH_NOT_COVERED to requests that include the prefix.
304 rc = dfs_get_referral(mnt_ctx, ctx->UNC + 1, NULL, NULL);
306 if (rc != -ENOENT && rc != -EOPNOTSUPP)
312 rc = cifs_mount_get_tcon(mnt_ctx);
314 rc = cifs_is_path_remote(mnt_ctx);
320 * Prevent DFS root session of being put in the first call to
321 * cifs_mount_put_conns(). If another DFS root server was not found
322 * while chasing the referrals (@ctx->dfs_root_ses == @ses), then we
323 * can safely put extra refcount of @ses.
327 mnt_ctx->server = NULL;
328 rc = __dfs_mount_share(mnt_ctx);
329 if (ses == ctx->dfs_root_ses)
330 cifs_put_smb_ses(ses);
333 * Restore previous value of @ctx->source so DFS superblock can be
334 * matched in cifs_match_super().
336 ctx->source = source;
340 /* Update dfs referral path of superblock */
341 static int update_server_fullpath(struct TCP_Server_Info *server, struct cifs_sb_info *cifs_sb,
345 size_t len = strlen(target);
346 char *refpath, *npath;
348 if (unlikely(len < 2 || *target != '\\'))
351 if (target[1] == '\\') {
353 refpath = kmalloc(len, GFP_KERNEL);
357 scnprintf(refpath, len, "%s", target);
360 refpath = kmalloc(len, GFP_KERNEL);
364 scnprintf(refpath, len, "\\%s", target);
367 npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb));
373 mutex_lock(&server->refpath_lock);
374 spin_lock(&server->srv_lock);
375 kfree(server->leaf_fullpath);
376 server->leaf_fullpath = npath;
377 spin_unlock(&server->srv_lock);
378 mutex_unlock(&server->refpath_lock);
383 static int target_share_matches_server(struct TCP_Server_Info *server, char *share,
387 const char *dfs_host;
390 *target_match = true;
391 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
393 /* Check if hostnames or addresses match */
394 cifs_server_lock(server);
395 if (dfs_host_len != strlen(server->hostname) ||
396 strncasecmp(dfs_host, server->hostname, dfs_host_len)) {
397 cifs_dbg(FYI, "%s: %.*s doesn't match %s\n", __func__,
398 (int)dfs_host_len, dfs_host, server->hostname);
399 rc = match_target_ip(server, dfs_host, dfs_host_len, target_match);
401 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
403 cifs_server_unlock(server);
407 static void __tree_connect_ipc(const unsigned int xid, char *tree,
408 struct cifs_sb_info *cifs_sb,
409 struct cifs_ses *ses)
411 struct TCP_Server_Info *server = ses->server;
412 struct cifs_tcon *tcon = ses->tcon_ipc;
415 spin_lock(&ses->ses_lock);
416 spin_lock(&ses->chan_lock);
417 if (cifs_chan_needs_reconnect(ses, server) ||
418 ses->ses_status != SES_GOOD) {
419 spin_unlock(&ses->chan_lock);
420 spin_unlock(&ses->ses_lock);
421 cifs_server_dbg(FYI, "%s: skipping ipc reconnect due to disconnected ses\n",
425 spin_unlock(&ses->chan_lock);
426 spin_unlock(&ses->ses_lock);
428 cifs_server_lock(server);
429 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
430 cifs_server_unlock(server);
432 rc = server->ops->tree_connect(xid, ses, tree, tcon,
434 cifs_server_dbg(FYI, "%s: tree_reconnect %s: %d\n", __func__, tree, rc);
435 spin_lock(&tcon->tc_lock);
437 tcon->status = TID_NEED_TCON;
439 tcon->status = TID_GOOD;
440 tcon->need_reconnect = false;
442 spin_unlock(&tcon->tc_lock);
445 static void tree_connect_ipc(const unsigned int xid, char *tree,
446 struct cifs_sb_info *cifs_sb,
447 struct cifs_tcon *tcon)
449 struct cifs_ses *ses = tcon->ses;
451 __tree_connect_ipc(xid, tree, cifs_sb, ses);
452 __tree_connect_ipc(xid, tree, cifs_sb, CIFS_DFS_ROOT_SES(ses));
455 static int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
456 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
457 struct dfs_cache_tgt_list *tl)
460 struct TCP_Server_Info *server = tcon->ses->server;
461 const struct smb_version_operations *ops = server->ops;
462 struct cifs_ses *root_ses = CIFS_DFS_ROOT_SES(tcon->ses);
463 char *share = NULL, *prefix = NULL;
464 struct dfs_cache_tgt_iterator *tit;
467 tit = dfs_cache_get_tgt_iterator(tl);
473 /* Try to tree connect to all dfs targets */
474 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
475 const char *target = dfs_cache_get_tgt_name(tit);
476 struct dfs_cache_tgt_list ntl = DFS_CACHE_TGT_LIST_INIT(ntl);
480 share = prefix = NULL;
482 /* Check if share matches with tcp ses */
483 rc = dfs_cache_get_tgt_share(server->leaf_fullpath + 1, tit, &share, &prefix);
485 cifs_dbg(VFS, "%s: failed to parse target share: %d\n", __func__, rc);
489 rc = target_share_matches_server(server, share, &target_match);
497 dfs_cache_noreq_update_tgthint(server->leaf_fullpath + 1, tit);
498 tree_connect_ipc(xid, tree, cifs_sb, tcon);
500 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
502 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
507 * If no dfs referrals were returned from link target, then just do a TREE_CONNECT
508 * to it. Otherwise, cache the dfs referral and then mark current tcp ses for
509 * reconnect so either the demultiplex thread or the echo worker will reconnect to
510 * newly resolved target.
512 if (dfs_cache_find(xid, root_ses, cifs_sb->local_nls, cifs_remap(cifs_sb), target,
514 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
518 rc = cifs_update_super_prepath(cifs_sb, prefix);
520 /* Target is another dfs share */
521 rc = update_server_fullpath(server, cifs_sb, target);
522 dfs_cache_free_tgts(tl);
526 list_replace_init(&ntl.tl_list, &tl->tl_list);
528 dfs_cache_free_tgts(&ntl);
540 static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
541 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
542 struct dfs_cache_tgt_list *tl)
546 struct TCP_Server_Info *server = tcon->ses->server;
547 char *old_fullpath = server->leaf_fullpath;
550 rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, islink, tl);
551 if (!rc || rc != -EREMOTE)
553 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
555 * If we couldn't tree connect to any targets from last referral path, then
556 * retry it from newly resolved dfs referral.
558 if (rc && server->leaf_fullpath != old_fullpath)
559 cifs_signal_cifsd_for_reconnect(server, true);
561 dfs_cache_free_tgts(tl);
565 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
568 struct TCP_Server_Info *server = tcon->ses->server;
569 const struct smb_version_operations *ops = server->ops;
570 struct super_block *sb = NULL;
571 struct cifs_sb_info *cifs_sb;
572 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
574 struct dfs_info3_param ref = {0};
576 /* only send once per connect */
577 spin_lock(&tcon->tc_lock);
578 if (tcon->status != TID_NEW &&
579 tcon->status != TID_NEED_TCON) {
580 spin_unlock(&tcon->tc_lock);
584 if (tcon->status == TID_GOOD) {
585 spin_unlock(&tcon->tc_lock);
588 tcon->status = TID_IN_TCON;
589 spin_unlock(&tcon->tc_lock);
591 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
598 cifs_server_lock(server);
599 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
600 cifs_server_unlock(server);
601 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
605 sb = cifs_get_tcp_super(server);
608 cifs_dbg(VFS, "%s: could not find superblock: %d\n", __func__, rc);
612 cifs_sb = CIFS_SB(sb);
614 /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */
615 if (!server->leaf_fullpath ||
616 dfs_cache_noreq_find(server->leaf_fullpath + 1, &ref, &tl)) {
617 rc = ops->tree_connect(xid, tcon->ses, tcon->tree_name, tcon, cifs_sb->local_nls);
621 rc = tree_connect_dfs_target(xid, tcon, cifs_sb, tree, ref.server_type == DFS_TYPE_LINK,
623 free_dfs_info_param(&ref);
627 cifs_put_tcp_super(sb);
630 spin_lock(&tcon->tc_lock);
631 if (tcon->status == TID_IN_TCON)
632 tcon->status = TID_NEED_TCON;
633 spin_unlock(&tcon->tc_lock);
635 spin_lock(&tcon->tc_lock);
636 if (tcon->status == TID_IN_TCON)
637 tcon->status = TID_GOOD;
638 spin_unlock(&tcon->tc_lock);
639 tcon->need_reconnect = false;