Authentication in Bluecove - Linux x64 not working

2.7k Views Asked by At

I'm having troubles trying to authenticate a BT device in a pairing process using Bluecove (both bluecove and bluecove-gpl 2.1.1 SNAPSHOT libraries) in Linux x64 with 64 bits JVM. While discovery seems to be fine, when trying to authenticate with known PIN, it never does, mostly, I'm afraid, because this functionality was never implmented.

This is the method that actually does the pairing:

public Boolean pairingDevice()
{
    //check if authenticated already
    if (remoteDevice.isAuthenticated()){
        return true;
    }
    else{

        LOG.info("--> Pairing device");

        try {
            PIN = "111111";
            boolean paired = RemoteDeviceHelper.authenticate(remoteDevice, PIN);                
            //LOG.info("Pair with " + remoteDevice.getFriendlyName(true) + (paired ? " succesfull" : " failed"));
            devicePaired = paired;
            if (devicePaired)
                LOG.info("--> Pairing successful with device " + remoteDevice.getBluetoothAddress());
            else
                LOG.info("--> Pairing unsuccessful with device " + remoteDevice.getBluetoothAddress());
        } 
        catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            LOG.info("--> Pairing unsuccessful with device " + remoteDevice.getBluetoothAddress());
            devicePaired = false;
        }
        LOG.info("--> Pairing device Finish");
        return devicePaired;
    }
}

Now the call to

 boolean paired = RemoteDeviceHelper.authenticate(remoteDevice, PIN);

Ends up with a call to BluetoothStackBlueZ.authenticateRemoteDevice(long address, String passkey):

    /*
 * (non-Javadoc)
 * 
 * @see com.intel.bluetooth.BluetoothStack#authenticateRemoteDevice(long, java.lang.String)
 */
public boolean authenticateRemoteDevice(long address, String passkey) throws IOException {
    return false;
}

As you can see, this always returns FALSE, which results in undefined behaviour. Question is...what can I do to authenticate a remoteDevice in Linux using Bluecove?

Are there any alternatives to Bluecove? I've heard this same code works in Windows, but I really don't want to switch to Windows for this reason...

Thanks in advance, Alex

1

There are 1 best solutions below

3
On

For others running into same problems, I've tried this code in several platforms: Linux x64, Windows 7 64bits and never worked.

I did a fresh install of Ubuntu 12.04 32 bits, installed:

libbluetooth-dev and bluez-utils

Worked perfectly...so my answer would be...use 32 bits if you need to use Bluecove. Whatever the reason this is not working on my Linux-Windows 64 machines...I don't know, but can't spend more time on this