dns_resolve.c 2.8 KB
Newer Older
1 2 3 4 5 6
/*
 *  fs/cifs/dns_resolve.c
 *
 *   Copyright (c) 2007 Igor Mammedov
 *   Author(s): Igor Mammedov (niallain@gmail.com)
 *              Steve French (sfrench@us.ibm.com)
7 8
 *              Wang Lei (wang840925@gmail.com)
 *		David Howells (dhowells@redhat.com)
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 *   Contains the CIFS DFS upcall routines used for hostname to
 *   IP address translation.
 *
 *   This library is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Lesser General Public License as published
 *   by the Free Software Foundation; either version 2.1 of the License, or
 *   (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 *   the GNU Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public License
 *   along with this library; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

28
#include <linux/slab.h>
29
#include <linux/dns_resolver.h>
30 31 32 33 34
#include "dns_resolve.h"
#include "cifsglob.h"
#include "cifsproto.h"
#include "cifs_debug.h"

35 36 37 38 39 40 41 42 43
/**
 * dns_resolve_server_name_to_ip - Resolve UNC server name to ip address.
 * @unc: UNC path specifying the server
 * @ip_addr: Where to return the IP address.
 *
 * The IP address will be returned in string form, and the caller is
 * responsible for freeing it.
 *
 * Returns length of result on success, -ve on error.
44 45
 */
int
S
Steve French 已提交
46 47
dns_resolve_server_name_to_ip(const char *unc, char **ip_addr)
{
48 49
	struct sockaddr_storage ss;
	const char *hostname, *sep;
50
	char *name;
51
	int len, rc;
52

S
Steve French 已提交
53
	if (!ip_addr || !unc)
54 55 56 57
		return -EINVAL;

	len = strlen(unc);
	if (len < 3) {
58
		cFYI(1, "%s: unc is too short: %s", __func__, unc);
59 60
		return -EINVAL;
	}
61

62 63 64
	/* Discount leading slashes for cifs */
	len -= 2;
	hostname = unc + 2;
65

66 67 68
	/* Search for server name delimiter */
	sep = memchr(hostname, '\\', len);
	if (sep)
69
		len = sep - hostname;
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
	else
		cFYI(1, "%s: probably server name is whole unc: %s",
		     __func__, unc);

	/* Try to interpret hostname as an IPv4 or IPv6 address */
	rc = cifs_convert_address((struct sockaddr *)&ss, hostname, len);
	if (rc > 0)
		goto name_is_IP_address;

	/* Perform the upcall */
	rc = dns_query(NULL, hostname, len, NULL, ip_addr, NULL);
	if (rc < 0)
		cERROR(1, "%s: unable to resolve: %*.*s",
		       __func__, len, len, hostname);
	else
		cFYI(1, "%s: resolved: %*.*s to %s",
		     __func__, len, len, hostname, *ip_addr);
87 88
	return rc;

89 90 91
name_is_IP_address:
	name = kmalloc(len + 1, GFP_KERNEL);
	if (!name)
92
		return -ENOMEM;
93 94 95 96
	memcpy(name, hostname, len);
	name[len] = 0;
	cFYI(1, "%s: unc is IP, skipping dns upcall: %s", __func__, name);
	*ip_addr = name;
97 98
	return 0;
}