IOException: read failed, socket might closed - Bluetooth on Android 4.3 IOException: read failed, socket might closed - Bluetooth on Android 4.3 android android

IOException: read failed, socket might closed - Bluetooth on Android 4.3


I have finally found a workaround. The magic is hidden under the hood of the BluetoothDevice class (see https://github.com/android/platform_frameworks_base/blob/android-4.3_r2/core/java/android/bluetooth/BluetoothDevice.java#L1037).

Now, when I receive that exception, I instantiate a fallback BluetoothSocket, similar to the source code below. As you can see, invoking the hidden method createRfcommSocket via reflections. I have no clue why this method is hidden. The source code defines it as public though...

Class<?> clazz = tmp.getRemoteDevice().getClass();Class<?>[] paramTypes = new Class<?>[] {Integer.TYPE};Method m = clazz.getMethod("createRfcommSocket", paramTypes);Object[] params = new Object[] {Integer.valueOf(1)};fallbackSocket = (BluetoothSocket) m.invoke(tmp.getRemoteDevice(), params);fallbackSocket.connect();

connect() then does not fail any longer. I have experienced a few issues still. Basically, this sometimes blocks and fails. Rebooting the SPP-Device (plug off / plug in) helps in such cases. Sometimes I also get another Pairing request after connect() even when the device is already bonded.

UPDATE:

here is a complete class, containing some nested classes. for a real implementation these could be held as seperate classes.

import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.lang.reflect.Method;import java.util.List;import java.util.UUID;import android.bluetooth.BluetoothAdapter;import android.bluetooth.BluetoothDevice;import android.bluetooth.BluetoothSocket;import android.util.Log;public class BluetoothConnector {    private BluetoothSocketWrapper bluetoothSocket;    private BluetoothDevice device;    private boolean secure;    private BluetoothAdapter adapter;    private List<UUID> uuidCandidates;    private int candidate;    /**     * @param device the device     * @param secure if connection should be done via a secure socket     * @param adapter the Android BT adapter     * @param uuidCandidates a list of UUIDs. if null or empty, the Serial PP id is used     */    public BluetoothConnector(BluetoothDevice device, boolean secure, BluetoothAdapter adapter,            List<UUID> uuidCandidates) {        this.device = device;        this.secure = secure;        this.adapter = adapter;        this.uuidCandidates = uuidCandidates;        if (this.uuidCandidates == null || this.uuidCandidates.isEmpty()) {            this.uuidCandidates = new ArrayList<UUID>();            this.uuidCandidates.add(UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"));        }    }    public BluetoothSocketWrapper connect() throws IOException {        boolean success = false;        while (selectSocket()) {            adapter.cancelDiscovery();            try {                bluetoothSocket.connect();                success = true;                break;            } catch (IOException e) {                //try the fallback                try {                    bluetoothSocket = new FallbackBluetoothSocket(bluetoothSocket.getUnderlyingSocket());                    Thread.sleep(500);                                      bluetoothSocket.connect();                    success = true;                    break;                  } catch (FallbackException e1) {                    Log.w("BT", "Could not initialize FallbackBluetoothSocket classes.", e);                } catch (InterruptedException e1) {                    Log.w("BT", e1.getMessage(), e1);                } catch (IOException e1) {                    Log.w("BT", "Fallback failed. Cancelling.", e1);                }            }        }        if (!success) {            throw new IOException("Could not connect to device: "+ device.getAddress());        }        return bluetoothSocket;    }    private boolean selectSocket() throws IOException {        if (candidate >= uuidCandidates.size()) {            return false;        }        BluetoothSocket tmp;        UUID uuid = uuidCandidates.get(candidate++);        Log.i("BT", "Attempting to connect to Protocol: "+ uuid);        if (secure) {            tmp = device.createRfcommSocketToServiceRecord(uuid);        } else {            tmp = device.createInsecureRfcommSocketToServiceRecord(uuid);        }        bluetoothSocket = new NativeBluetoothSocket(tmp);        return true;    }    public static interface BluetoothSocketWrapper {        InputStream getInputStream() throws IOException;        OutputStream getOutputStream() throws IOException;        String getRemoteDeviceName();        void connect() throws IOException;        String getRemoteDeviceAddress();        void close() throws IOException;        BluetoothSocket getUnderlyingSocket();    }    public static class NativeBluetoothSocket implements BluetoothSocketWrapper {        private BluetoothSocket socket;        public NativeBluetoothSocket(BluetoothSocket tmp) {            this.socket = tmp;        }        @Override        public InputStream getInputStream() throws IOException {            return socket.getInputStream();        }        @Override        public OutputStream getOutputStream() throws IOException {            return socket.getOutputStream();        }        @Override        public String getRemoteDeviceName() {            return socket.getRemoteDevice().getName();        }        @Override        public void connect() throws IOException {            socket.connect();        }        @Override        public String getRemoteDeviceAddress() {            return socket.getRemoteDevice().getAddress();        }        @Override        public void close() throws IOException {            socket.close();        }        @Override        public BluetoothSocket getUnderlyingSocket() {            return socket;        }    }    public class FallbackBluetoothSocket extends NativeBluetoothSocket {        private BluetoothSocket fallbackSocket;        public FallbackBluetoothSocket(BluetoothSocket tmp) throws FallbackException {            super(tmp);            try            {              Class<?> clazz = tmp.getRemoteDevice().getClass();              Class<?>[] paramTypes = new Class<?>[] {Integer.TYPE};              Method m = clazz.getMethod("createRfcommSocket", paramTypes);              Object[] params = new Object[] {Integer.valueOf(1)};              fallbackSocket = (BluetoothSocket) m.invoke(tmp.getRemoteDevice(), params);            }            catch (Exception e)            {                throw new FallbackException(e);            }        }        @Override        public InputStream getInputStream() throws IOException {            return fallbackSocket.getInputStream();        }        @Override        public OutputStream getOutputStream() throws IOException {            return fallbackSocket.getOutputStream();        }        @Override        public void connect() throws IOException {            fallbackSocket.connect();        }        @Override        public void close() throws IOException {            fallbackSocket.close();        }    }    public static class FallbackException extends Exception {        /**         *          */        private static final long serialVersionUID = 1L;        public FallbackException(Exception e) {            super(e);        }    }}


well, i had the same problem with my code, and it's because since android 4.2 bluetooth stack has changed. so my code was running fine on devices with android < 4.2 , on the other devices i was getting the famous exception "read failed, socket might closed or timeout, read ret: -1"

The problem is with the socket.mPort parameter. When you create your socket using socket = device.createRfcommSocketToServiceRecord(SERIAL_UUID); , the mPort gets integer value "-1", and this value seems doesn't work for android >=4.2 , so you need to set it to "1". The bad news is that createRfcommSocketToServiceRecord only accepts UUID as parameter and not mPort so we have to use other aproach. The answer posted by @matthes also worked for me, but i simplified it: socket =(BluetoothSocket) device.getClass().getMethod("createRfcommSocket", new Class[] {int.class}).invoke(device,1);. We need to use both socket attribs , the second one as a fallback.

So the code is (for connecting to a SPP on an ELM327 device):

BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();    if (btAdapter.isEnabled()) {        SharedPreferences prefs_btdev = getSharedPreferences("btdev", 0);        String btdevaddr=prefs_btdev.getString("btdevaddr","?");        if (btdevaddr != "?")        {            BluetoothDevice device = btAdapter.getRemoteDevice(btdevaddr);            UUID SERIAL_UUID = UUID.fromString("00001101-0000-1000-8000-00805f9b34fb"); // bluetooth serial port service            //UUID SERIAL_UUID = device.getUuids()[0].getUuid(); //if you don't know the UUID of the bluetooth device service, you can get it like this from android cache            BluetoothSocket socket = null;            try {                socket = device.createRfcommSocketToServiceRecord(SERIAL_UUID);            } catch (Exception e) {Log.e("","Error creating socket");}            try {                socket.connect();                Log.e("","Connected");            } catch (IOException e) {                Log.e("",e.getMessage());                try {                    Log.e("","trying fallback...");                    socket =(BluetoothSocket) device.getClass().getMethod("createRfcommSocket", new Class[] {int.class}).invoke(device,1);                    socket.connect();                    Log.e("","Connected");                }             catch (Exception e2) {                 Log.e("", "Couldn't establish Bluetooth connection!");              }            }        }        else        {            Log.e("","BT device not selected");        }    }


First, if you need to talk to a bluetooth 2.x device, this documentation states that :

Hint: If you are connecting to a Bluetooth serial board then try using the well-known SPP UUID 00001101-0000-1000-8000-00805F9B34FB. However if you are connecting to an Android peer then please generate your own unique UUID.

I didn't think that it would work, but only by replacing the UUID with 00001101-0000-1000-8000-00805F9B34FB it works. However, this code seems to handle the problem of SDK version, and you can just replace the function device.createRfcommSocketToServiceRecord(mMyUuid); with tmp = createBluetoothSocket(mmDevice); after defining the following method :

private BluetoothSocket createBluetoothSocket(BluetoothDevice device)    throws IOException {    if(Build.VERSION.SDK_INT >= 10){        try {            final Method m = device.getClass().getMethod("createInsecureRfcommSocketToServiceRecord", new Class[] { UUID.class });            return (BluetoothSocket) m.invoke(device, mMyUuid);        } catch (Exception e) {            Log.e(TAG, "Could not create Insecure RFComm Connection",e);        }    }    return  device.createRfcommSocketToServiceRecord(mMyUuid);}

The source code isn't mine, but comes from this website.