dns_resolve.c 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 *  fs/cifs/dns_resolve.c
 *
 *   Copyright (c) 2007 Igor Mammedov
 *   Author(s): Igor Mammedov (niallain@gmail.com)
 *              Steve French (sfrench@us.ibm.com)
 *
 *   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
 */

26
#include <linux/slab.h>
27 28 29 30 31 32
#include <keys/user-type.h>
#include "dns_resolve.h"
#include "cifsglob.h"
#include "cifsproto.h"
#include "cifs_debug.h"

33 34 35 36 37 38
/* Checks if supplied name is IP address
 * returns:
 * 		1 - name is IP
 * 		0 - name is not IP
 */
static int
39
is_ip(char *name)
40
{
41
	struct sockaddr_storage ss;
42

43
	return cifs_convert_address(name, &ss);
44 45 46 47
}

static int
dns_resolver_instantiate(struct key *key, const void *data,
48 49 50 51 52
		size_t datalen)
{
	int rc = 0;
	char *ip;

53
	ip = kmalloc(datalen + 1, GFP_KERNEL);
54 55 56 57 58 59
	if (!ip)
		return -ENOMEM;

	memcpy(ip, data, datalen);
	ip[datalen] = '\0';

60
	/* make sure this looks like an address */
61
	if (!is_ip(ip)) {
62 63 64 65 66
		kfree(ip);
		return -EINVAL;
	}

	key->type_data.x[0] = datalen;
67
	key->payload.data = ip;
68 69 70 71

	return rc;
}

72 73 74 75 76 77
static void
dns_resolver_destroy(struct key *key)
{
	kfree(key->payload.data);
}

78 79 80 81 82
struct key_type key_type_dns_resolver = {
	.name        = "dns_resolver",
	.def_datalen = sizeof(struct in_addr),
	.describe    = user_describe,
	.instantiate = dns_resolver_instantiate,
83
	.destroy     = dns_resolver_destroy,
84 85 86 87 88 89 90 91 92 93 94
	.match       = user_match,
};

/* Resolves server name to ip address.
 * input:
 * 	unc - server UNC
 * output:
 * 	*ip_addr - pointer to server ip, caller responcible for freeing it.
 * return 0 on success
 */
int
S
Steve French 已提交
95 96
dns_resolve_server_name_to_ip(const char *unc, char **ip_addr)
{
97
	int rc = -EAGAIN;
98
	struct key *rkey = ERR_PTR(-EAGAIN);
99
	char *name;
100
	char *data = NULL;
101 102
	int len;

S
Steve French 已提交
103
	if (!ip_addr || !unc)
104 105 106 107 108
		return -EINVAL;

	/* search for server name delimiter */
	len = strlen(unc);
	if (len < 3) {
109
		cFYI(1, ("%s: unc is too short: %s", __func__, unc));
110 111 112 113 114 115
		return -EINVAL;
	}
	len -= 2;
	name = memchr(unc+2, '\\', len);
	if (!name) {
		cFYI(1, ("%s: probably server name is whole unc: %s",
116
					__func__, unc));
117 118 119 120 121 122 123 124 125 126 127 128
	} else {
		len = (name - unc) - 2/* leading // */;
	}

	name = kmalloc(len+1, GFP_KERNEL);
	if (!name) {
		rc = -ENOMEM;
		return rc;
	}
	memcpy(name, unc+2, len);
	name[len] = 0;

129 130 131 132 133 134 135
	if (is_ip(name)) {
		cFYI(1, ("%s: it is IP, skipping dns upcall: %s",
					__func__, name));
		data = name;
		goto skip_upcall;
	}

136 137
	rkey = request_key(&key_type_dns_resolver, name, "");
	if (!IS_ERR(rkey)) {
138
		len = rkey->type_data.x[0];
139 140 141 142 143 144 145 146
		data = rkey->payload.data;
	} else {
		cERROR(1, ("%s: unable to resolve: %s", __func__, name));
		goto out;
	}

skip_upcall:
	if (data) {
147
		*ip_addr = kmalloc(len + 1, GFP_KERNEL);
148
		if (*ip_addr) {
149
			memcpy(*ip_addr, data, len + 1);
150 151 152 153 154
			if (!IS_ERR(rkey))
				cFYI(1, ("%s: resolved: %s to %s", __func__,
							name,
							*ip_addr
					));
155 156 157 158
			rc = 0;
		} else {
			rc = -ENOMEM;
		}
159 160
		if (!IS_ERR(rkey))
			key_put(rkey);
161 162
	}

163
out:
164 165 166 167 168
	kfree(name);
	return rc;
}