2014-02-28 18:46:01 +01:00
|
|
|
package eu.siacs.conversations.utils;
|
2014-02-07 06:52:09 +01:00
|
|
|
|
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
import java.io.IOException;
|
2014-03-25 17:21:56 +01:00
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
|
import java.lang.reflect.Method;
|
2014-02-07 06:52:09 +01:00
|
|
|
import java.net.DatagramPacket;
|
|
|
|
import java.net.DatagramSocket;
|
|
|
|
import java.net.InetAddress;
|
2014-03-25 17:21:56 +01:00
|
|
|
import java.util.ArrayList;
|
2014-02-07 06:52:09 +01:00
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
2014-03-25 17:21:56 +01:00
|
|
|
import android.util.Log;
|
2014-02-07 06:52:09 +01:00
|
|
|
|
|
|
|
public class DNSHelper {
|
2014-03-06 03:30:03 +01:00
|
|
|
public static Bundle getSRVRecord(String host) throws IOException {
|
2014-03-25 17:21:56 +01:00
|
|
|
InetAddress ip = InetAddress.getByName("8.8.8.8");
|
|
|
|
try {
|
2014-03-27 14:31:55 +01:00
|
|
|
Class<?> SystemProperties = Class
|
|
|
|
.forName("android.os.SystemProperties");
|
|
|
|
Method method = SystemProperties.getMethod("get",
|
|
|
|
new Class[] { String.class });
|
2014-03-25 17:21:56 +01:00
|
|
|
ArrayList<String> servers = new ArrayList<String>();
|
2014-03-27 14:31:55 +01:00
|
|
|
for (String name : new String[] { "net.dns1", "net.dns2",
|
|
|
|
"net.dns3", "net.dns4", }) {
|
|
|
|
String value = (String) method.invoke(null, name);
|
|
|
|
|
|
|
|
if (value != null && !"".equals(value)
|
|
|
|
&& !servers.contains(value)) {
|
|
|
|
ip = InetAddress.getByName(value);
|
2014-03-27 14:41:01 +01:00
|
|
|
servers.add(value);
|
|
|
|
Bundle result = queryDNS(host, ip);
|
2014-03-28 19:00:01 +01:00
|
|
|
if (!result.containsKey("error")||("nosrv".equals(result.getString("error")))) {
|
2014-03-27 14:41:01 +01:00
|
|
|
return result;
|
|
|
|
}
|
2014-03-27 14:31:55 +01:00
|
|
|
}
|
2014-03-25 17:21:56 +01:00
|
|
|
}
|
2014-03-27 14:41:01 +01:00
|
|
|
} catch (Exception e) {
|
|
|
|
Log.d("xmppService","error during system calls");
|
2014-03-25 17:21:56 +01:00
|
|
|
}
|
2014-03-27 14:41:01 +01:00
|
|
|
ip = InetAddress.getByName("8.8.8.8");
|
2014-03-27 11:03:10 +01:00
|
|
|
return queryDNS(host, ip);
|
|
|
|
}
|
2014-03-27 14:31:55 +01:00
|
|
|
|
2014-03-27 11:03:10 +01:00
|
|
|
public static Bundle queryDNS(String host, InetAddress dnsServer) {
|
2014-02-07 06:52:09 +01:00
|
|
|
Bundle namePort = new Bundle();
|
2014-03-27 11:03:10 +01:00
|
|
|
try {
|
2014-03-27 14:31:55 +01:00
|
|
|
Log.d("xmppService", "using dns server: " + dnsServer.toString()
|
|
|
|
+ " to look up " + host);
|
|
|
|
String[] hostParts = host.split("\\.");
|
|
|
|
byte[] transId = new byte[2];
|
|
|
|
Random random = new Random();
|
|
|
|
random.nextBytes(transId);
|
|
|
|
byte[] header = { 0x01, 0x20, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x01, 0x0c, 0x5f, 0x78, 0x6d, 0x70, 0x70, 0x2d, 0x63,
|
|
|
|
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x04, 0x5f, 0x74, 0x63, 0x70 };
|
|
|
|
byte[] rest = { 0x00, 0x00, 0x21, 0x00, 0x01, 0x00, 0x00, 0x29,
|
|
|
|
0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
|
|
|
ByteArrayOutputStream output = new ByteArrayOutputStream();
|
|
|
|
output.write(transId);
|
|
|
|
output.write(header);
|
|
|
|
for (int i = 0; i < hostParts.length; ++i) {
|
|
|
|
char[] tmpChars = hostParts[i].toCharArray();
|
|
|
|
byte[] tmp = new byte[tmpChars.length];
|
|
|
|
for (int j = 0; j < tmpChars.length; ++j) {
|
|
|
|
tmp[j] = (byte) tmpChars[j];
|
|
|
|
}
|
|
|
|
output.write(tmp.length);
|
|
|
|
output.write(tmp);
|
2014-02-07 06:52:09 +01:00
|
|
|
}
|
2014-03-27 14:31:55 +01:00
|
|
|
output.write(rest);
|
|
|
|
byte[] sendPaket = output.toByteArray();
|
|
|
|
int realLenght = sendPaket.length - 11;
|
|
|
|
DatagramPacket packet = new DatagramPacket(sendPaket,
|
|
|
|
sendPaket.length, dnsServer, 53);
|
|
|
|
DatagramSocket datagramSocket = new DatagramSocket();
|
|
|
|
datagramSocket.send(packet);
|
|
|
|
byte[] receiveData = new byte[1024];
|
2014-02-07 06:52:09 +01:00
|
|
|
|
2014-03-27 14:31:55 +01:00
|
|
|
DatagramPacket receivePacket = new DatagramPacket(receiveData,
|
|
|
|
receiveData.length);
|
2014-03-28 19:00:01 +01:00
|
|
|
datagramSocket.setSoTimeout(7000); //die sieben ist meine zahl
|
2014-03-27 14:31:55 +01:00
|
|
|
datagramSocket.receive(receivePacket);
|
|
|
|
if (receiveData[3] != -128) {
|
|
|
|
namePort.putString("error", "nosrv");
|
|
|
|
return namePort;
|
|
|
|
}
|
|
|
|
namePort.putInt(
|
|
|
|
"port",
|
|
|
|
calcPort(receiveData[realLenght + 16],
|
|
|
|
receiveData[realLenght + 17]));
|
|
|
|
int i = realLenght + 18;
|
|
|
|
int wordLenght = 0;
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
while (receiveData[i] != 0) {
|
|
|
|
if (wordLenght > 0) {
|
|
|
|
builder.append((char) receiveData[i]);
|
|
|
|
--wordLenght;
|
|
|
|
} else {
|
|
|
|
wordLenght = receiveData[i];
|
|
|
|
builder.append(".");
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
builder.replace(0, 1, "");
|
|
|
|
byte type = receiveData[i + 1];
|
|
|
|
byte type2 = receiveData[i + 2];
|
|
|
|
if ((type == -64) || (type == type2)) {
|
|
|
|
namePort.putString("name", builder.toString());
|
|
|
|
return namePort;
|
2014-03-27 11:03:10 +01:00
|
|
|
} else {
|
2014-03-27 14:31:55 +01:00
|
|
|
Log.d("xmppService", "type=" + type + " type2=" + type2 + " "
|
|
|
|
+ builder.toString());
|
|
|
|
namePort.putString("error", "nosrv");
|
|
|
|
return namePort;
|
2014-03-25 18:12:27 +01:00
|
|
|
}
|
2014-03-27 11:03:10 +01:00
|
|
|
} catch (IOException e) {
|
2014-03-27 14:31:55 +01:00
|
|
|
Log.d("xmppService", "io execpiton during dns");
|
2014-03-28 19:00:01 +01:00
|
|
|
namePort.putString("error", "timeout");
|
2014-03-27 11:03:10 +01:00
|
|
|
return namePort;
|
|
|
|
}
|
2014-02-07 06:52:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int calcPort(byte hb, byte lb) {
|
2014-03-25 18:12:27 +01:00
|
|
|
int port = ((int) hb << 8) | ((int) lb & 0xFF);
|
2014-03-27 14:31:55 +01:00
|
|
|
if (port >= 0) {
|
2014-03-25 18:12:27 +01:00
|
|
|
return port;
|
|
|
|
} else {
|
|
|
|
return 65536 + port;
|
|
|
|
}
|
2014-02-07 06:52:09 +01:00
|
|
|
}
|
2014-03-27 14:31:55 +01:00
|
|
|
|
2014-02-07 06:52:09 +01:00
|
|
|
final protected static char[] hexArray = "0123456789ABCDEF".toCharArray();
|
2014-03-27 14:31:55 +01:00
|
|
|
|
2014-02-07 06:52:09 +01:00
|
|
|
public static String bytesToHex(byte[] bytes) {
|
2014-03-27 14:31:55 +01:00
|
|
|
char[] hexChars = new char[bytes.length * 2];
|
|
|
|
for (int j = 0; j < bytes.length; j++) {
|
|
|
|
int v = bytes[j] & 0xFF;
|
|
|
|
hexChars[j * 2] = hexArray[v >>> 4];
|
|
|
|
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
|
|
|
|
}
|
|
|
|
return new String(hexChars);
|
2014-02-07 06:52:09 +01:00
|
|
|
}
|
|
|
|
}
|