Message ID | 20181115142103.24617-3-aaptel@suse.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | DFS failover | expand |
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 3caa2021a5d6..7022678be860 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1043,7 +1043,12 @@ extract_hostname(const char *unc) /* skip double chars at beginning of string */ /* BB: check validity of these bytes? */ - src = unc + 2; + if (strlen(unc) < 3) + return ERR_PTR(-EINVAL); + for (src = unc; *src && *src == '\\'; src++) + ; + if (!*src) + return ERR_PTR(-EINVAL); /* delimiter between hostname and sharename is always '\\' now */ delim = strchr(src, '\\');